mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-13 05:13:09 +00:00
0bdd589163
* added module endorspy and test * added endorspy * Fixed spaces and remove unnecessary lines from test * added extra new line to test.yml * added a prefix to to avoid name collision * Update modules/endorspy/main.nf Co-authored-by: James A. Fellows Yates <jfy133@gmail.com> * Update modules/endorspy/meta.yml Co-authored-by: James A. Fellows Yates <jfy133@gmail.com> * Update modules/endorspy/meta.yml Co-authored-by: James A. Fellows Yates <jfy133@gmail.com> * Update modules/endorspy/meta.yml Co-authored-by: James A. Fellows Yates <jfy133@gmail.com> * Update modules/endorspy/meta.yml Co-authored-by: James A. Fellows Yates <jfy133@gmail.com> * Update modules/endorspy/meta.yml Co-authored-by: James A. Fellows Yates <jfy133@gmail.com> * Update modules/endorspy/meta.yml Co-authored-by: James A. Fellows Yates <jfy133@gmail.com> * Update modules/endorspy/meta.yml Co-authored-by: James A. Fellows Yates <jfy133@gmail.com> * Apply suggestions from code review Co-authored-by: James A. Fellows Yates <jfy133@gmail.com> * Apply suggestions from code review * Update modules/endorspy/main.nf * Apply suggestions from code review Co-authored-by: James A. Fellows Yates <jfy133@gmail.com>
12 lines
262 B
Text
12 lines
262 B
Text
process {
|
|
|
|
publishDir = { "${params.outdir}/${task.process.tokenize(':')[-1].tokenize('_')[0].toLowerCase()}" }
|
|
|
|
withName:SAMTOOLS_VIEW {
|
|
ext.args = "-q 30 -b"
|
|
}
|
|
|
|
withName:SAMTOOLS_FLAGSTAT2 {
|
|
ext.prefix = "test.filtered"
|
|
}
|
|
}
|