about summary refs log tree commit diff
diff options
context:
space:
mode:
authorArun Isaac2025-09-05 11:58:03 +0100
committerArun Isaac2025-09-05 11:58:03 +0100
commit6d4ef66d668aafb3796ad019447485c3eba61737 (patch)
treedfba9688bb837cc25f9aa070bcb75afe423650d8
parentd0584dee7bd021b01cd444133878b6852f0ede94 (diff)
downloadpyhegp-6d4ef66d668aafb3796ad019447485c3eba61737.tar.gz
pyhegp-6d4ef66d668aafb3796ad019447485c3eba61737.tar.lz
pyhegp-6d4ef66d668aafb3796ad019447485c3eba61737.zip
Fix typo in comment: tha->that.
-rw-r--r--pyhegp/pyhegp.py2
1 files changed, 1 insertions, 1 deletions
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"))