mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
20 lines
453 B
Text
20 lines
453 B
Text
#!/usr/bin/env nextflow
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
include { AMPIR } from '../../../modules/ampir/main.nf'
|
|
|
|
workflow test_ampir {
|
|
|
|
fasta = [ [ id:'test', single_end:false ], // meta map
|
|
file(params.test_data['candidatus_portiera_aleyrodidarum']['genome']['proteome_fasta'], checkIfExists: true),
|
|
]
|
|
|
|
model = "precursor"
|
|
|
|
min_length = []
|
|
|
|
min_probability = "0.7"
|
|
|
|
AMPIR ( fasta, model, min_length, min_probability )
|
|
}
|