-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #64 from nf-core/initial-release-review-changes
Apply the third set of reviewer recommendations
- Loading branch information
Showing
6 changed files
with
30 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,14 @@ | ||
process.'withName:^.*:COBALT_PROFILING:COBALT'.ext.args = '-pcf_gamma 50' | ||
process { | ||
withName: '^.*COBALT_PROFILING:COBALT' { | ||
ext.args = '-pcf_gamma 50' | ||
} | ||
|
||
process.'withName:^.*:SAGE_CALLING:SOMATIC'.ext.args = [ | ||
'-high_depth_mode', | ||
'-hard_min_tumor_vaf 0.002', | ||
'-hotspot_min_tumor_vaf 0.015', | ||
'-panel_min_tumor_qual 150', | ||
].join(' ').trim() | ||
withName: '^.*:SAGE_CALLING:SOMATIC' { | ||
ext.args = [ | ||
'-high_depth_mode', | ||
'-hard_min_tumor_vaf 0.002', | ||
'-hotspot_min_tumor_vaf 0.015', | ||
'-panel_min_tumor_qual 150', | ||
].join(' ').trim() | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters