From 8b2e677d5befc359a5bcb5bd4667174935ec02df Mon Sep 17 00:00:00 2001 From: Yueyao Gao Date: Tue, 2 Jul 2024 22:44:48 -0400 Subject: [PATCH] bug fix --- CNV-Profiler/CNV-Profiler.wdl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CNV-Profiler/CNV-Profiler.wdl b/CNV-Profiler/CNV-Profiler.wdl index 808bbdf..26f8272 100644 --- a/CNV-Profiler/CNV-Profiler.wdl +++ b/CNV-Profiler/CNV-Profiler.wdl @@ -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 {