You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nf-core_modules/tests/subworkflows/nf-core/bam_stats_samtools/nextflow.config

13 lines
360 B
Plaintext

process {
publishDir = { "${params.outdir}/${task.process.tokenize(':')[-1].tokenize('_')[0].toLowerCase()}" }
withName: '.*:BAM_STATS_SAMTOOLS_SINGLE_END:.*' {
ext.prefix = { "${meta.id}.single_end.sorted.bam" }
}
withName: '.*:BAM_STATS_SAMTOOLS_PAIRED_END:.*' {
ext.prefix = { "${meta.id}.paired_end.sorted.bam" }
}
}