Skip to content

Commit

Permalink
Enable gc correction by default in cnv workflows (#5966)
Browse files Browse the repository at this point in the history
* Enable GC correction by default in somatic and germline cnv panel workflows
  • Loading branch information
mwalker174 committed Aug 6, 2019
1 parent 06df7e8 commit 596bc9c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/cnv_wdl/germline/cnv_germline_cohort_workflow.wdl
Expand Up @@ -171,7 +171,7 @@ workflow CNVGermlineCohortWorkflow {
preemptible_attempts = preemptible_attempts
}

if (select_first([do_explicit_gc_correction, false])) {
if (select_first([do_explicit_gc_correction, true])) {
call CNVTasks.AnnotateIntervals {
input:
intervals = PreprocessIntervals.preprocessed_intervals,
Expand Down
2 changes: 1 addition & 1 deletion scripts/cnv_wdl/somatic/cnv_somatic_panel_workflow.wdl
Expand Up @@ -105,7 +105,7 @@ workflow CNVSomaticPanelWorkflow {
preemptible_attempts = preemptible_attempts
}

if (select_first([do_explicit_gc_correction, false])) {
if (select_first([do_explicit_gc_correction, true])) {
call CNVTasks.AnnotateIntervals {
input:
intervals = PreprocessIntervals.preprocessed_intervals,
Expand Down

0 comments on commit 596bc9c

Please sign in to comment.