nf-core_modules/tests/modules/genescopefk/nextflow.config

16 lines
339 B
Text
Raw Normal View History

2022-06-14 18:49:06 +00:00
process {
publishDir = { "${params.outdir}/${task.process.tokenize(':')[-1].tokenize('_')[0].toLowerCase()}" }
withName: 'FASTK_.*' {
publishDir = [ enabled: false ]
}
withName: 'FASTK_HISTEX' {
ext.args = '-G'
}
withName: 'GENESCOPEFK' {
ext.args = '--kmer_length 40 --ploidy 1'
}
}