mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
2f1555bf77
* feat(pints): Add initial caller module * docs(pints): Add initial documentation * chore: Add TODOs * test(pypints): Use docker image for singularity The image doesn't exist yet for some reason * test(pints): Remove unidirectional peaks hash * style(pints): Align emits
9 lines
246 B
Text
9 lines
246 B
Text
process {
|
|
|
|
publishDir = { "${params.outdir}/${task.process.tokenize(':')[-1].tokenize('_')[0].toLowerCase()}" }
|
|
|
|
withName: PINTS_CALLER {
|
|
ext.args = "--exp-type GROseq"
|
|
ext.singularity_pull_docker_container = true
|
|
}
|
|
}
|