mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 12:43:09 +00:00
30 lines
1.1 KiB
Text
30 lines
1.1 KiB
Text
|
#!/usr/bin/env nextflow
|
||
|
|
||
|
nextflow.enable.dsl = 2
|
||
|
|
||
|
include { UNTAR as UNTAR1 } from '../../../../modules/untar/main.nf'
|
||
|
include { UNTAR as UNTAR2 } from '../../../../modules/untar/main.nf'
|
||
|
include { UNTAR as UNTAR3 } from '../../../../modules/untar/main.nf'
|
||
|
include { ANTISMASH_ANTISMASHLITEDOWNLOADDATABASES } from '../../../../modules/antismash/antismashlitedownloaddatabases/main.nf'
|
||
|
|
||
|
workflow test_antismash_antismashlitedownloaddatabases {
|
||
|
input1 = [
|
||
|
[],
|
||
|
file('https://github.com/nf-core/test-datasets/raw/modules/data/delete_me/antismash/css.tar.gz', checkIfExists: true)
|
||
|
]
|
||
|
input2 = [
|
||
|
[],
|
||
|
file('https://github.com/nf-core/test-datasets/raw/modules/data/delete_me/antismash/detection.tar.gz', checkIfExists: true)
|
||
|
]
|
||
|
input3 = [
|
||
|
[],
|
||
|
file('https://github.com/nf-core/test-datasets/raw/modules/data/delete_me/antismash/modules.tar.gz', checkIfExists: true)
|
||
|
]
|
||
|
|
||
|
UNTAR1 ( input1 )
|
||
|
UNTAR2 ( input2 )
|
||
|
UNTAR3 ( input3 )
|
||
|
|
||
|
ANTISMASH_ANTISMASHLITEDOWNLOADDATABASES ( UNTAR1.out.untar.map{ it[1] }, UNTAR2.out.untar.map{ it[1] }, UNTAR3.out.untar.map{ it[1] } )
|
||
|
}
|