diff options
author | Arun Isaac | 2025-09-05 11:58:03 +0100 |
---|---|---|
committer | Arun Isaac | 2025-09-05 11:58:03 +0100 |
commit | 6d4ef66d668aafb3796ad019447485c3eba61737 (patch) | |
tree | dfba9688bb837cc25f9aa070bcb75afe423650d8 | |
parent | d0584dee7bd021b01cd444133878b6852f0ede94 (diff) | |
download | pyhegp-6d4ef66d668aafb3796ad019447485c3eba61737.tar.gz pyhegp-6d4ef66d668aafb3796ad019447485c3eba61737.tar.lz pyhegp-6d4ef66d668aafb3796ad019447485c3eba61737.zip |
Fix typo in comment: tha->that.
-rw-r--r-- | pyhegp/pyhegp.py | 2 |
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")) |