mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
50 lines
2 KiB
Text
50 lines
2 KiB
Text
|
#!/usr/bin/env nextflow
|
||
|
|
||
|
nextflow.enable.dsl = 2
|
||
|
|
||
|
//include { GUNZIP } from '../../../modules/gunzip/main.nf'
|
||
|
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'
|
||
|
include { PROKKA } from '../../../modules/prokka/main.nf'
|
||
|
|
||
|
workflow test_antismashlite {
|
||
|
input = [
|
||
|
[ 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] } )
|
||
|
ANTISMASH_ANTISMASHLITE ( input, ANTISMASH_ANTISMASHLITEDOWNLOADDATABASES.out.database )
|
||
|
}
|
||
|
|
||
|
//workflow test_prokka_antismashlite {
|
||
|
// input_gunzip = [ [ id:'test' ], // meta map
|
||
|
// file(params.test_data['bacteroides_fragilis']['genome']['genome_fna_gz'], checkIfExists: true) ]
|
||
|
|
||
|
// GUNZIP ( input_gunzip )
|
||
|
// PROKKA ( GUNZIP.out.gunzip, [], [] )
|
||
|
// ANTISMASHLITEDOWNLOADDATABASES ()
|
||
|
// ANTISMASH ( PROKKA.out.gbk )
|
||
|
// }
|
||
|
|