From 22b3c268ce789fd1d8c6bb27d4a6122f6602037b Mon Sep 17 00:00:00 2001 From: Arun Isaac Date: Fri, 8 Aug 2025 15:18:51 +0100 Subject: Remove txt extension from summary files. --- README.md | 6 +++--- 1 file 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. ``` -- cgit 1.4.1