nf-core_modules/tests/modules/salmon/index/main.nf
Harshil Patel 43c2779258
Fix version commands (#749)
* Fix version commands

* Fix version commands: again
2021-09-27 22:10:37 +01:00

12 lines
470 B
Text

#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
include { SALMON_INDEX } from '../../../../modules/salmon/index/main.nf' addParams( options: [publish_dir:'salmon'] )
workflow test_salmon_index {
genome_fasta = file(params.test_data['sarscov2']['genome']['genome_fasta'], checkIfExists: true)
transcript_fasta = file(params.test_data['sarscov2']['genome']['transcriptome_fasta'], checkIfExists: true)
SALMON_INDEX ( genome_fasta, transcript_fasta )
}