nf-core_modules/tests/modules/seqkit/pair/main.nf

17 lines
455 B
Text
Raw Normal View History

#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
include { SEQKIT_PAIR } from '../../../../modules/seqkit/pair/main.nf'
workflow test_seqkit_pair {
input = [
[ id:'test', single_end:false ], // meta map
[ file(params.test_data['sarscov2']['illumina']['test_1_fastq_gz'], checkIfExists: true),
file(params.test_data['sarscov2']['illumina']['test_2_fastq_gz'], checkIfExists: true) ]
]
SEQKIT_PAIR ( input )
}