2022-04-22 14:47:48 +00:00
|
|
|
#!/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'
|
|
|
|
include { ANTISMASH_ANTISMASHLITE } from '../../../../modules/antismash/antismashlite/main.nf'
|
2022-05-03 15:30:16 +00:00
|
|
|
|
2022-04-26 15:15:41 +00:00
|
|
|
workflow test_antismashlite {
|
2022-05-02 15:30:46 +00:00
|
|
|
input_genome = [
|
2022-04-26 15:15:41 +00:00
|
|
|
[ id:'test' ], // meta map
|
|
|
|
file(params.test_data['bacteroides_fragilis']['genome']['genome_gbff_gz'], checkIfExists: true) ]
|
|
|
|
|
|
|
|
input_antismash_db1 = [
|
|
|
|
[],
|
|
|
|
file('https://github.com/nf-core/test-datasets/raw/modules/data/delete_me/antismash/css.tar.gz', checkIfExists: true)
|
|
|
|
]
|
|
|
|
|
|
|
|
input_antismash_db2 = [
|
|
|
|
[],
|
|
|
|
file('https://github.com/nf-core/test-datasets/raw/modules/data/delete_me/antismash/detection.tar.gz', checkIfExists: true)
|
|
|
|
]
|
|
|
|
|
|
|
|
input_antismash_db3 = [
|
|
|
|
[],
|
|
|
|
file('https://github.com/nf-core/test-datasets/raw/modules/data/delete_me/antismash/modules.tar.gz', checkIfExists: true)
|
|
|
|
]
|
|
|
|
|
|
|
|
UNTAR1 ( input_antismash_db1 )
|
|
|
|
UNTAR2 ( input_antismash_db2 )
|
|
|
|
UNTAR3 ( input_antismash_db3 )
|
|
|
|
ANTISMASH_ANTISMASHLITEDOWNLOADDATABASES ( UNTAR1.out.untar.map{ it[1] }, UNTAR2.out.untar.map{ it[1] }, UNTAR3.out.untar.map{ it[1] } )
|
2022-05-05 11:14:39 +00:00
|
|
|
ANTISMASH_ANTISMASHLITE ( input_genome, ANTISMASH_ANTISMASHLITEDOWNLOADDATABASES.out.database, ANTISMASH_ANTISMASHLITEDOWNLOADDATABASES.out.antismash_dir, [] )
|
2022-04-26 15:15:41 +00:00
|
|
|
}
|