-
Notifications
You must be signed in to change notification settings - Fork 37
Adding Picard tools for QC metrics #128
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
Changes from 26 commits
682576d
7b44c68
9fa9923
582938f
4576ce3
3218dc2
59e6b2b
01fd46a
f03a1da
c3d3498
8cdf2fd
d765d1d
884cb2a
d0141fb
6b8c76e
0cfcb83
db7395a
7135a9d
5d129cf
4117e63
bd65cdd
e279f0d
1bc1bc2
4f63066
aa25759
0835f22
5db6843
08b7aea
44c75f6
da32a43
10ebebf
e6fa02f
89376b5
403752d
37d553f
6c1d138
e4948a0
a91e9bd
8d8badc
f65d000
0e0f236
0fec2a2
413fa18
87b8327
087c613
c7142ea
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -49,6 +49,32 @@ process { | |
| saveAs: { filename -> filename.equals('versions.yml') ? null : filename } | ||
| ] | ||
| } | ||
| withName: 'PICARD_COLLECTMULTIPLEMETRICS' { | ||
| ext.args = '' | ||
| publishDir = [ | ||
| path: { "${params.outdir}/picard_collectmultiplemetrics" }, | ||
| mode: params.publish_dir_mode, | ||
| saveAs: { filename -> filename.equals('versions.yml') ? null : filename } | ||
| ] | ||
| } | ||
|
|
||
| withName: 'SAMTOOLS_FAIDX' { | ||
| ext.args = '' | ||
agrima2010 marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| publishDir = [ | ||
| path: { "${params.outdir}/samtools_faidx" }, | ||
| mode: params.publish_dir_mode, | ||
| saveAs: { filename -> filename.equals('versions.yml') ? null : filename } | ||
| ] | ||
| } | ||
|
|
||
| withName: 'SAMTOOLS_INDEX' { | ||
| ext.args = '' | ||
agrima2010 marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| publishDir = [ | ||
| path: { "${params.outdir}/samtools_index" }, | ||
|
||
| mode: params.publish_dir_mode, | ||
| saveAs: { filename -> filename.equals('versions.yml') ? null : filename } | ||
| ] | ||
| } | ||
|
|
||
| withName: 'MULTIQC_GLOBAL' { | ||
| ext.args = { params.multiqc_title ? "--title \"$params.multiqc_title\"" : '' } | ||
|
|
||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Uh oh!
There was an error while loading. Please reload this page.