mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-15 22:23:09 +00:00
eae945721d
* not working yet (db not found)
* modify deeparg/download module to return db-path
* 🪄
* Prettier
* add test.yml
* much prettier
* test.yml delete md5 for pot. empty files
* adapt test.yml
* test.yml again
* Apply suggestions from code review
Co-authored-by: James A. Fellows Yates <jfy133@gmail.com>
Co-authored-by: James A. Fellows Yates <jfy133@gmail.com>
33 lines
1 KiB
Text
33 lines
1 KiB
Text
#!/usr/bin/env nextflow
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
include { GUNZIP } from '../../../modules/gunzip/main.nf'
|
|
include { PRODIGAL } from '../../../modules/prodigal/main.nf'
|
|
include { DEEPBGC_DOWNLOAD } from '../../../../modules/deepbgc/download/main.nf'
|
|
include { DEEPBGC_PIPELINE } from '../../../../modules/deepbgc/pipeline/main.nf'
|
|
|
|
workflow test_deepbgc_pipeline_gbk {
|
|
|
|
input = [
|
|
[ id:'test_gbk', single_end:false ], // meta map
|
|
file(params.test_data['bacteroides_fragilis']['illumina']['test1_contigs_fa_gz'], checkIfExists: true)
|
|
]
|
|
|
|
DEEPBGC_DOWNLOAD ()
|
|
GUNZIP ( input )
|
|
PRODIGAL ( GUNZIP.out.gunzip, 'gbk' )
|
|
DEEPBGC_PIPELINE ( PRODIGAL.out.gene_annotations, DEEPBGC_DOWNLOAD.out.db )
|
|
}
|
|
|
|
workflow test_deepbgc_pipeline_fa {
|
|
|
|
input = [
|
|
[ id:'test_fa', single_end:false ], // meta map
|
|
file(params.test_data['bacteroides_fragilis']['illumina']['test1_contigs_fa_gz'], checkIfExists: true)
|
|
]
|
|
|
|
DEEPBGC_DOWNLOAD ()
|
|
GUNZIP ( input )
|
|
DEEPBGC_PIPELINE ( GUNZIP.out.gunzip, DEEPBGC_DOWNLOAD.out.db )
|
|
}
|