Skip to content

Commit 225fba6

Browse files
committed
remove print
1 parent e27a24a commit 225fba6

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

templates/snp_assessment.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,6 @@ def get_snps(paf_file, ref_name, ref_len, sample_id, assembler):
110110
if len(re.findall(r'\\*', cigar)) > 0:
111111
snps_iterator = get_position(start, end, cigar)
112112
for snp in snps_iterator:
113-
print(snp)
114113
tsv_report.write('\\t'.join([str(utils.adjust_reference_coord(snp[0], ref_len)), str(snp[1][0]), str(snp[1][1])]) + '\\n')
115114
snps.append((utils.adjust_reference_coord(snp[0], ref_len), snp[1]))
116115
else:

0 commit comments

Comments
 (0)