From 0a74dd660c10f7de53dcd4f109ab54278facd85c Mon Sep 17 00:00:00 2001 From: Arun Isaac Date: Mon, 1 Sep 2025 15:31:45 +0100 Subject: Decide to not use logging. Remove comments mentioning logging. Command-line error messages have their own place; they are not the same as logging. --- pyhegp/pyhegp.py | 2 -- 1 file changed, 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) -- cgit 1.4.1