-
Notifications
You must be signed in to change notification settings - Fork 417
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Refactor #1151
Merged
Merged
Refactor #1151
Changes from all commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
7ba9311
indent things, clean up, add comments, consolidate
FriederikeHanssen fe1c506
refactor post vc steps to prepare for varlociraptor
FriederikeHanssen d8e6fe7
fix import paths
FriederikeHanssen e80d157
get rid of WARN: There's no process matching config selector
FriederikeHanssen be9786f
add post vc back in
FriederikeHanssen ce4a924
test md and sentieon separately
FriederikeHanssen 000de54
fix input channel cardinality for fgbio
FriederikeHanssen 483fd18
fix naming
FriederikeHanssen 3b53b05
fix more bad spacing, typos
FriederikeHanssen 7efdf76
update sw map with concatenate, move type description
FriederikeHanssen 764e09d
simplify test config
FriederikeHanssen 7eba720
simplify test config
FriederikeHanssen c36a726
update PR ID
FriederikeHanssen 81dde8c
remove gvcf vcfs from csv for restart
FriederikeHanssen fc203ac
simplify everything
FriederikeHanssen 2430c9a
add spaces for prettyness
FriederikeHanssen f5e3aac
fix variable name
FriederikeHanssen 10249ca
remove empty channel
FriederikeHanssen 6584e32
spread out gatk md and sentieon dedup more
FriederikeHanssen 46ff810
update md5sums since csv don't contain gvcf files
FriederikeHanssen 0d8999b
add selector to get controlfreec tests to pass
FriederikeHanssen bf43387
need to keep wild card declaration to ensure precendence
FriederikeHanssen File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -63,6 +63,7 @@ process { | |
ext.sentieon_auth_data_base64 = secrets.SENTIEON_AUTH_DATA_BASE64 | ||
} | ||
|
||
// This must contain .* in order to properly overwrite the standard config in test cases | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I appreciate the comment 👍 |
||
withName:'.*:FREEC_SOMATIC'{ | ||
ext.args = { | ||
[ | ||
|
@@ -86,14 +87,12 @@ process { | |
} | ||
} | ||
|
||
if (params.tools && params.tools.split(',').contains('mutect2')) { | ||
withName: '.*MUTECT2_PAIRED'{ | ||
//sample name from when the test data was generated | ||
ext.args = { "--f1r2-tar-gz ${task.ext.prefix}.f1r2.tar.gz --normal-sample normal " } | ||
} | ||
withName: 'MUTECT2_PAIRED'{ | ||
//sample name from when the test data was generated | ||
ext.args = { "--f1r2-tar-gz ${task.ext.prefix}.f1r2.tar.gz --normal-sample normal " } | ||
} | ||
|
||
withName: '.*:FILTERVARIANTTRANCHES'{ | ||
withName: 'FILTERVARIANTTRANCHES'{ | ||
ext.args = { "--info-key CNN_1D --indel-tranche 0" } | ||
} | ||
} | ||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is the if-clause added to avoid the standard WARN when
BAM_VARIANT_CALLING_SENTIEON_HAPLOTYPER:VCF_VARIANT_FILTERING_GATK:FILTERVARIANTTRANCHES
doesn't run?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes