mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
60c65fb386
* Add ultra/index and ultra/align modules * Correct tag and prefix * Fix typos * Remove SAMTOOLS SORT from test * Update: Convert sam to bam * Add tag to docker image * Fix typo * Add args2 for samtools
14 lines
322 B
Text
14 lines
322 B
Text
process {
|
|
|
|
publishDir = { "${params.outdir}/${task.process.tokenize(':')[-1].tokenize('_')[0].toLowerCase()}" }
|
|
|
|
withName: GFFREAD {
|
|
ext.args = '--sort-alpha --keep-genes -T'
|
|
ext.prefix = { "${gff.baseName}_sorted" }
|
|
}
|
|
|
|
withName: ULTRA_INDEX {
|
|
ext.args = '--disable_infer'
|
|
}
|
|
|
|
}
|