You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nf-core_modules/tests/modules/mafft/main.nf

16 lines
321 B
Plaintext

#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
include { MAFFT } from '../../../modules/mafft/main.nf'
workflow test_mafft {
input = [
[ id:'test', single_end:false ], // meta map
file(params.test_data['sarscov2']['illumina']['scaffolds_fasta'], checkIfExists: true)
]
MAFFT ( input )
}