mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 12:43:09 +00:00
7 lines
239 B
Text
7 lines
239 B
Text
|
process {
|
||
|
// Testing ext.args for passing arguments into seqtk seq
|
||
|
withName: 'SEQTK_SEQ' {
|
||
|
ext.args = '-A'
|
||
|
publishDir = { "${params.outdir}/${task.process.tokenize(':')[-1].tokenize('_')[0].toLowerCase()}" }
|
||
|
}
|
||
|
}
|