diff options
-rw-r--r-- | README.md | 6 |
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. ``` |