mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
967fb22ded
* Update versions * update checksums + remove variables as input for applyvqsr * sneak in removal of values and provide them via modules.config * update another checksum * more checksums * move vairable to config * remove controlfreec, wrong branch * add line break
11 lines
381 B
Text
11 lines
381 B
Text
process {
|
|
|
|
publishDir = { "${params.outdir}/${task.process.tokenize(':')[-1].tokenize('_')[0].toLowerCase()}" }
|
|
withName: GATK4_APPLYVQSR_NO_ALLELSPECIFICITY {
|
|
ext.args = '--mode SNP --truth-sensitivity-filter-level 99.0'
|
|
}
|
|
|
|
withName: GATK4_APPLYVQSR_WITH_ALLELSPECIFICITY {
|
|
ext.args = '--mode SNP --truth-sensitivity-filter-level 99.0 -AS'
|
|
}
|
|
}
|