mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 12:43:09 +00:00
18 lines
364 B
Text
18 lines
364 B
Text
|
process {
|
||
|
|
||
|
publishDir = { "${params.outdir}/${task.process.tokenize(':')[-1].tokenize('_')[0].toLowerCase()}" }
|
||
|
|
||
|
withName: COOLER_CLOAD {
|
||
|
ext.args = 'pairix'
|
||
|
}
|
||
|
|
||
|
withName: COOLER_CLOAD_PAIRS {
|
||
|
ext.args = 'pairs --chrom1 1 --pos1 2 --chrom2 4 --pos2 5 -N'
|
||
|
}
|
||
|
|
||
|
withName: COOLER_CLOAD_TABIX {
|
||
|
ext.args = 'tabix'
|
||
|
}
|
||
|
|
||
|
}
|