Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
yueyaog committed Jul 3, 2024
1 parent adaa808 commit 8b2e677
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CNV-Profiler/CNV-Profiler.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ task GetPaddedCnvBed {
chrom = interval.split(':')[0]
start = interval.split(':')[1].split('-')[0]
end = interval.split(':')[1].split('-')[1]
f.write("{chr}\t{start}\t{end}" + '\n')
f.write(f"{chr}\t{start}\t{end}" + '\n')
CODE
>>>
runtime {
Expand Down

0 comments on commit 8b2e677

Please sign in to comment.