Skip to content

Commit

Permalink
bug fix for padded section
Browse files Browse the repository at this point in the history
  • Loading branch information
yueyaog committed Jul 3, 2024
1 parent 8b2e677 commit b69663b
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 @@ -131,7 +131,7 @@ task GetPaddedCnvBed {
with open('padded_cnv.bed', 'a') as f:
for interval in padded_cnv_interval_list:
chrom = interval.split(':')[0]
chr = interval.split(':')[0]
start = interval.split(':')[1].split('-')[0]
end = interval.split(':')[1].split('-')[1]
f.write(f"{chr}\t{start}\t{end}" + '\n')
Expand Down

0 comments on commit b69663b

Please sign in to comment.