nf-core_modules/tests/modules/gatk4/applyvqsr/nextflow.config
FriederikeHanssen 967fb22ded
Update versions (#1292)
* 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
2022-02-15 11:29:36 +01:00

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'
}
}