2022-04-22 14:47:48 +00:00
|
|
|
#!/usr/bin/env nextflow
|
|
|
|
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
|
2022-05-11 10:06:02 +00:00
|
|
|
include { ANTISMASH_ANTISMASHLITE } from '../../../../modules/antismash/antismashlite/main.nf'
|
|
|
|
include { ANTISMASH_ANTISMASHLITEDOWNLOADDATABASES } from '../../../modules/antismash/antismashlitedownloaddatabases/main.nf'
|
|
|
|
include { GUNZIP as GUNZIP1 } from '../../../../modules/gunzip/main.nf'
|
|
|
|
include { GUNZIP as GUNZIP2 } from '../../../../modules/gunzip/main.nf'
|
2022-04-22 14:47:48 +00:00
|
|
|
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'
|
2022-05-03 15:30:16 +00:00
|
|
|
|
2022-04-26 15:15:41 +00:00
|
|
|
workflow test_antismashlite {
|
2022-05-11 10:06:02 +00:00
|
|
|
genome_fna = [
|
|
|
|
[ id:'test' ],
|
|
|
|
file(params.test_data['bacteroides_fragilis']['genome']['genome_fna_gz'], checkIfExists: true)
|
|
|
|
]
|
2022-04-26 15:15:41 +00:00
|
|
|
|
2022-05-11 10:06:02 +00:00
|
|
|
genome_gff = [
|
|
|
|
[],
|
|
|
|
file(params.test_data['bacteroides_fragilis']['genome']['genome_gff_gz'], checkIfExists: true)
|
|
|
|
]
|
|
|
|
|
|
|
|
antismash_db1 = [
|
2022-04-26 15:15:41 +00:00
|
|
|
[],
|
|
|
|
file('https://github.com/nf-core/test-datasets/raw/modules/data/delete_me/antismash/css.tar.gz', checkIfExists: true)
|
|
|
|
]
|
|
|
|
|
2022-05-11 10:06:02 +00:00
|
|
|
antismash_db2 = [
|
2022-04-26 15:15:41 +00:00
|
|
|
[],
|
|
|
|
file('https://github.com/nf-core/test-datasets/raw/modules/data/delete_me/antismash/detection.tar.gz', checkIfExists: true)
|
|
|
|
]
|
|
|
|
|
2022-05-11 10:06:02 +00:00
|
|
|
antismash_db3 = [
|
2022-04-26 15:15:41 +00:00
|
|
|
[],
|
|
|
|
file('https://github.com/nf-core/test-datasets/raw/modules/data/delete_me/antismash/modules.tar.gz', checkIfExists: true)
|
|
|
|
]
|
|
|
|
|
2022-05-11 10:06:02 +00:00
|
|
|
GUNZIP1 ( genome_fna )
|
|
|
|
GUNZIP2 ( genome_gff )
|
|
|
|
UNTAR1 ( antismash_db1 )
|
|
|
|
UNTAR2 ( antismash_db2 )
|
|
|
|
UNTAR3 ( antismash_db3 )
|
2022-04-26 15:15:41 +00:00
|
|
|
ANTISMASH_ANTISMASHLITEDOWNLOADDATABASES ( UNTAR1.out.untar.map{ it[1] }, UNTAR2.out.untar.map{ it[1] }, UNTAR3.out.untar.map{ it[1] } )
|
2022-05-11 10:06:02 +00:00
|
|
|
ANTISMASH_ANTISMASHLITE ( GUNZIP1.out.gunzip, ANTISMASH_ANTISMASHLITEDOWNLOADDATABASES.out.database, ANTISMASH_ANTISMASHLITEDOWNLOADDATABASES.out.antismash_dir, GUNZIP2.out.gunzip.map{ it[1] } )
|
2022-04-26 15:15:41 +00:00
|
|
|
}
|