2021-11-26 07:58:40 +00:00
|
|
|
process {
|
|
|
|
|
|
|
|
publishDir = { "${params.outdir}/${task.process.tokenize(':')[-1].tokenize('_')[0].toLowerCase()}" }
|
|
|
|
|
|
|
|
withName: ENSEMBLVEP {
|
2022-07-13 11:43:03 +00:00
|
|
|
container = 'nfcore/vep:106.1.WBcel235'
|
2021-11-26 07:58:40 +00:00
|
|
|
}
|
|
|
|
|
2022-06-15 11:52:12 +00:00
|
|
|
withName: ENSEMBLVEP_JSON {
|
2022-07-13 11:43:03 +00:00
|
|
|
container = 'nfcore/vep:106.1.WBcel235'
|
2022-06-15 11:52:12 +00:00
|
|
|
ext.args = '--json'
|
|
|
|
}
|
|
|
|
|
|
|
|
withName: ENSEMBLVEP_TAB {
|
2022-07-13 11:43:03 +00:00
|
|
|
container = 'nfcore/vep:106.1.WBcel235'
|
2022-06-15 11:52:12 +00:00
|
|
|
ext.args = '--tab'
|
|
|
|
}
|
|
|
|
|
|
|
|
withName: ENSEMBLVEP_VCF {
|
2022-07-13 11:43:03 +00:00
|
|
|
container = 'nfcore/vep:106.1.WBcel235'
|
2022-06-15 11:52:12 +00:00
|
|
|
ext.args = '--vcf'
|
|
|
|
}
|
2022-09-28 12:34:41 +00:00
|
|
|
|
|
|
|
withName: ENSEMBLVEP_VCF_BGZIP {
|
|
|
|
container = 'nfcore/vep:106.1.WBcel235'
|
|
|
|
ext.args = '--vcf --compress_output bgzip'
|
|
|
|
}
|
|
|
|
|
|
|
|
withName: ENSEMBLVEP_VCF_GZIP {
|
|
|
|
container = 'nfcore/vep:106.1.WBcel235'
|
|
|
|
ext.args = '--vcf --compress_output gzip'
|
|
|
|
}
|
2021-11-26 07:58:40 +00:00
|
|
|
}
|