nf-core_modules/tests/modules/gatk4/markduplicatesspark/nextflow.config

20 lines
527 B
Text
Raw Normal View History

process {
publishDir = { "${params.outdir}/${task.process.tokenize(':')[-1].tokenize('_')[0].toLowerCase()}" }
2022-06-03 06:45:52 -04:00
withName: GATK4_MARKDUPLICATES_SPARK {
ext.prefix = { "${meta.id}.bam" }
}
withName: GATK4_MARKDUPLICATES_SPARK_CRAM {
ext.prefix = { "${meta.id}.cram" }
}
2022-05-31 08:35:29 -04:00
withName: GATK4_MARKDUPLICATES_SPARK_METRICS {
ext.args = '--metrics-file test.metrics'
2022-06-07 07:58:57 -04:00
ext.prefix = { "${meta.id}.bam" }
2022-05-31 08:35:29 -04:00
}
2022-06-03 06:45:52 -04:00
}
2022-05-31 08:35:29 -04:00
// override tests/config/nextflow.config
2022-05-25 10:37:44 -04:00
docker.userEmulation = false