about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--pyhegp/pyhegp.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/pyhegp/pyhegp.py b/pyhegp/pyhegp.py
index 35346c2..650b1f8 100644
--- a/pyhegp/pyhegp.py
+++ b/pyhegp/pyhegp.py
@@ -134,7 +134,6 @@ def pool(pooled_summary_file, summary_files):
     max_snps = max(len(summary.data) for summary in summaries)
     if len(pooled_summary.data) < max_snps:
         dropped_snps = max_snps - len(pooled_summary.data)
-        # TODO: Use logging.
         print(f"Dropped {dropped_snps} SNP(s)")
     write_summary(pooled_summary_file, pooled_summary)
 
@@ -162,7 +161,6 @@ def encrypt(genotype_file, summary_file, key_file, ciphertext_file):
     encrypted_genotype = encrypt_genotype(genotype, key, summary)
     if len(encrypted_genotype) < len(genotype):
         dropped_snps = len(genotype) - len(encrypted_genotype)
-        # TODO: Use logging.
         print(f"Dropped {dropped_snps} SNP(s)")
     write_genotype(ciphertext_file, encrypted_genotype)