nf-core_modules/tests/software/gatk4/createsequencedictionary/main.nf

12 lines
385 B
Text
Raw Normal View History

#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
include { GATK4_CREATESEQUENCEDICTIONARY } from '../../../../software/gatk4/createsequencedictionary/main.nf' addParams( options: [:] )
workflow test_gatk4_createsequencedictionary {
fasta = file("${launchDir}/tests/data/genomics/sarscov2/genome/genome.fasta", checkIfExists: true)
GATK4_CREATESEQUENCEDICTIONARY ( fasta )
}