nf-core_modules/tests/modules/ffq/main.nf
2022-07-01 08:59:13 +02:00

15 lines
245 B
Text

#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
include { FFQ } from '../../../modules/ffq/main.nf'
workflow test_ffq_single_id {
FFQ ( [ 'SRR9990627' ] )
}
workflow test_ffq_multiple_ids {
FFQ ( [ 'SRR9990627', 'SRX7347523' ] )
}