nf-core_modules/tests/software/samtools/faidx/main.nf
Patrick Hüther 0cbe0a4173
Update tests/software/samtools/faidx/main.nf
Co-authored-by: Maxime Garcia <maxime.garcia@scilifelab.se>
2021-02-17 17:24:50 +01:00

10 lines
291 B
Text

#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
include { SAMTOOLS_FAIDX } from '../../../../software/samtools/faidx/main.nf' addParams( options: [:] )
workflow test_samtools_faidx {
SAMTOOLS_FAIDX ( file("${launchDir}/tests/data/fasta/E_coli/NC_010473.fa", checkIfExists: true) )
}