mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-13 05:13:09 +00:00
18 lines
403 B
Text
18 lines
403 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),
|
|
]
|
|
|
|
cut_off = "80"
|
|
|
|
model = "precursor"
|
|
|
|
AMPIR ( fasta, cut_off, model )
|
|
}
|