mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
18 lines
373 B
Text
18 lines
373 B
Text
|
process {
|
||
|
|
||
|
publishDir = { "${params.outdir}/${task.process.tokenize(':')[-1].tokenize('_')[0].toLowerCase()}" }
|
||
|
|
||
|
withName: MACS2_CALLPEAK {
|
||
|
ext.args = '--qval 0.1'
|
||
|
}
|
||
|
|
||
|
withName: MACS2_CALLPEAK_CTRL {
|
||
|
ext.args = '--qval 0.1'
|
||
|
}
|
||
|
|
||
|
withName: MACS2_CALLPEAK_BED {
|
||
|
ext.args = '--format BED --qval 1 --nomodel --extsize 200'
|
||
|
}
|
||
|
|
||
|
}
|