You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nf-core_modules/tests/modules/samtools/fasta/main.nf

16 lines
368 B
Plaintext

#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
include { SAMTOOLS_FASTA } from '../../../../modules/samtools/fasta/main.nf'
workflow test_samtools_fasta {
input = [
[ id:'test', single_end:false ], // meta map
file(params.test_data['sarscov2']['illumina']['test_paired_end_bam'], checkIfExists: true)
]
SAMTOOLS_FASTA ( input )
}