From 6b0d54f97c61cacdef9792a388db03bd0216eddf Mon Sep 17 00:00:00 2001 From: Gene Selkov Date: Mon, 11 Dec 2023 11:47:39 -0600 Subject: [PATCH] removed debug print from output --- bin/AssembleJSeq.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bin/AssembleJSeq.py b/bin/AssembleJSeq.py index 311fed6..11264b8 100755 --- a/bin/AssembleJSeq.py +++ b/bin/AssembleJSeq.py @@ -11,6 +11,7 @@ def AssembleJSeq(jseq1_file, jseq2_file): get_ID = lambda seq: seq[0] common_IDs = list(set(map(get_ID, jseq1)) & set(map(get_ID, jseq2))) + #print(common_IDs) jseq1_common = iter(filter(lambda seq: seq[0] in common_IDs, jseq1)) jseq2_common = iter(filter(lambda seq: seq[0] in common_IDs, jseq2)) @@ -53,7 +54,7 @@ def groupby(group_key, sorted_data): else: result_box.append(tmp_box) return result_box - + if __name__ == "__main__":