mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
15 lines
245 B
Text
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' ] )
|
|
}
|