mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-15 14:13:09 +00:00
07e2868920
* When the `-i` option of bgzip is given, an index is created and needs to be considered an output * It is not necessary to use a subfolder * Updated meta.yml too * Also check that an index name hasn't been requested Co-authored-by: FriederikeHanssen <Friederike.hanssen@qbic.uni-tuebingen.de>
8 lines
187 B
Text
8 lines
187 B
Text
process {
|
|
|
|
publishDir = { "${params.outdir}/${task.process.tokenize(':')[-1].tokenize('_')[0].toLowerCase()}" }
|
|
|
|
withName: TABIX_BGZIP_WITH_GZI {
|
|
ext.args = ' -i'
|
|
}
|
|
}
|