Skip to content

Commit

Permalink
removing comma at the end onf line in allele_calling_match file
Browse files Browse the repository at this point in the history
  • Loading branch information
luissian committed Mar 23, 2024
1 parent f8516d1 commit fb195f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion taranis/allele_calling.py
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,7 @@ def stats_graphics(stats_folder: str, summary_result: dict) -> None:
for sample, allele_cod in sample_allele_match.items():
fo.write(f"{sample},")
for allele in allele_list:
fo.write(f"{allele_cod[allele]},")
fo.write(f"{allele_cod[allele]}")
fo.write("\n")

with open(sample_allele_detail_file, "w") as fo:
Expand Down

0 comments on commit fb195f6

Please sign in to comment.