From 6d4ef66d668aafb3796ad019447485c3eba61737 Mon Sep 17 00:00:00 2001 From: Arun Isaac Date: Fri, 5 Sep 2025 11:58:03 +0100 Subject: Fix typo in comment: tha->that. --- pyhegp/pyhegp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyhegp/pyhegp.py b/pyhegp/pyhegp.py index 7959841..6df91ec 100644 --- a/pyhegp/pyhegp.py +++ b/pyhegp/pyhegp.py @@ -93,7 +93,7 @@ def pool_summaries(summaries): pooled_summary.data.drop(columns=["reference"])) def encrypt_genotype(genotype, key, summary): - # Drop any SNPs tha are not in both genotype and summary. + # Drop any SNPs that are not in both genotype and summary. common_genotype = pd.merge(genotype, summary.data[["chromosome", "position"]], on=("chromosome", "position")) -- cgit 1.4.1