mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 12:43:09 +00:00
1016c9bd1a
* Initial commit of seqtk/seq module files * pytest.yml * updated module and tests code, need to finish modules/main.nf * Initial commit of seqtk/seq module files * pytest.yml * updated module and tests code, need to finish modules/main.nf * Adding code and configs for seqtk/seq module * Re-tested module following minor code update * removed trailing whitespace errors * Changed variable name to following reviewer suggestions Co-authored-by: Sateesh <33637490+sateeshperi@users.noreply.github.com>
7 lines
No EOL
239 B
Text
7 lines
No EOL
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()}" }
|
|
}
|
|
} |