about summary refs log tree commit diff
diff options
context:
space:
mode:
authorArun Isaac2025-08-08 15:18:51 +0100
committerArun Isaac2025-08-08 15:18:51 +0100
commit22b3c268ce789fd1d8c6bb27d4a6122f6602037b (patch)
treee5da86ab14d86782a1fe4491cf060af075999f62
parent5844e4fc3973a71495462e479d3d7022a28bb382 (diff)
downloadpyhegp-22b3c268ce789fd1d8c6bb27d4a6122f6602037b.tar.gz
pyhegp-22b3c268ce789fd1d8c6bb27d4a6122f6602037b.tar.lz
pyhegp-22b3c268ce789fd1d8c6bb27d4a6122f6602037b.zip
Remove txt extension from summary files.
-rw-r--r--README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index f11c76b..728c206 100644
--- a/README.md
+++ b/README.md
@@ -64,15 +64,15 @@ They then send the encrypted data to the researcher. Note that data sharing is c
 
 Data owners generate summary statistics for their data.
 ```
-pyhegp summary genotype.csv -o summary.txt
+pyhegp summary genotype.csv -o summary
 ```
 They share this with the data broker who pools it to compute the summary statistics of the complete dataset.
 ```
-pyhegp pool -o complete-summary.txt summary1.txt summary2.txt ...
+pyhegp pool -o complete-summary summary1 summary2 ...
 ```
 The data broker shares these summary statistics with the data owners. The data owners standardize their data using these summary statistics, and encrypt their data using a random key.
 ```
-pyhegp encrypt -s complete-summary.txt -o encrypted-genotype.csv genotype.csv
+pyhegp encrypt -s complete-summary -o encrypted-genotype.csv genotype.csv
 ```
 Finally, the data owners share the encrypted data with the broker who concatenates it and shares it with all parties.
 ```