Skip to content

Commit

Permalink
rescue int->str for svlengths
Browse files Browse the repository at this point in the history
  • Loading branch information
yfarjoun committed Sep 9, 2024
1 parent 58a84a9 commit 20d57bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sniffles/vcf.py
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ def write_call(self, call):
infos = {
"SVTYPE": call.svtype,
"SVLEN": call.svlen,
"SVLENGTHS": call.svlens,
"SVLENGTHS": ",".join(str(sv_len) for sv_len in call.svlens),
"END": end,
"SUPPORT": call.support,
"RNAMES": call.rnames if self.config.output_rnames else None,
Expand Down

0 comments on commit 20d57bb

Please sign in to comment.