Skip to content

Commit

Permalink
fix: fix bug in pindel2vcf wrapper (#433)
Browse files Browse the repository at this point in the history
* fix pindel2vcfwrapper

fix: current implementation is incorrect. It applies join to a string instead of a list.

* Update wrapper.py
  • Loading branch information
Smeds committed Jan 14, 2022
1 parent 16d1795 commit f94b225
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions bio/pindel/pindel2vcf/wrapper.py
Expand Up @@ -15,7 +15,8 @@
"D",
"SI",
"INV",
"INV_final" "TD",
"INV_final",
"TD",
"LI",
"BP",
"CloseEndMapped",
Expand All @@ -26,7 +27,7 @@
def split_file_name(file_parts, file_ending_index):
return (
"_".join(file_parts[:file_ending_index]),
"_".join(file_parts[file_ending_index]),
"_".join(file_parts[file_ending_index:]),
)


Expand Down

0 comments on commit f94b225

Please sign in to comment.