Skip to content

Commit 596bc9c

Browse files
authored
Enable gc correction by default in cnv workflows (#5966)
* Enable GC correction by default in somatic and germline cnv panel workflows
1 parent 06df7e8 commit 596bc9c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

scripts/cnv_wdl/germline/cnv_germline_cohort_workflow.wdl

+1-1
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ workflow CNVGermlineCohortWorkflow {
171171
preemptible_attempts = preemptible_attempts
172172
}
173173

174-
if (select_first([do_explicit_gc_correction, false])) {
174+
if (select_first([do_explicit_gc_correction, true])) {
175175
call CNVTasks.AnnotateIntervals {
176176
input:
177177
intervals = PreprocessIntervals.preprocessed_intervals,

scripts/cnv_wdl/somatic/cnv_somatic_panel_workflow.wdl

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ workflow CNVSomaticPanelWorkflow {
105105
preemptible_attempts = preemptible_attempts
106106
}
107107

108-
if (select_first([do_explicit_gc_correction, false])) {
108+
if (select_first([do_explicit_gc_correction, true])) {
109109
call CNVTasks.AnnotateIntervals {
110110
input:
111111
intervals = PreprocessIntervals.preprocessed_intervals,

0 commit comments

Comments
 (0)