mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
19 lines
558 B
Text
19 lines
558 B
Text
|
#!/usr/bin/env nextflow
|
||
|
|
||
|
nextflow.enable.dsl = 2
|
||
|
|
||
|
include { PRODIGAL } from '../../../modules/prodigal/main.nf' addParams( options: [:] )
|
||
|
include { AMPLIFY_PREDICT } from '../../../../modules/amplify/predict/main.nf' addParams( options: [:] )
|
||
|
|
||
|
workflow amplify_predict {
|
||
|
|
||
|
input = [
|
||
|
[ id:'test', single_end:false ], // meta map
|
||
|
file(params.test_data['sarscov2']['illumina']['contigs_fasta'], checkIfExists: true)
|
||
|
]
|
||
|
model_dir = []
|
||
|
|
||
|
PRODIGAL ( input, "gff" )
|
||
|
AMPLIFY_PREDICT ( PRODIGAL.out.amino_acid_fasta, model_dir)
|
||
|
}
|