nf-core_modules/tests/modules/ultra/index/main.nf
Sébastien Guizard 60c65fb386
New modules: ultra/index and ultra/align (#1830)
* 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
2022-07-04 07:46:49 +01:00

15 lines
483 B
Text

#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
include { ULTRA_INDEX } from '../../../../modules/ultra/index/main.nf'
include { GFFREAD } from '../../../../modules/gffread/main.nf'
workflow test_ultra_index {
genome = file(params.test_data['homo_sapiens']['genome']['genome_fasta'], checkIfExists: true)
gtf = file(params.test_data['homo_sapiens']['genome']['genome_gtf'] , checkIfExists: true)
GFFREAD ( gtf )
ULTRA_INDEX ( genome, GFFREAD.out.gtf )
}