mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
Thomas A. Christensen II
841c661cad
Signed-off-by: Thomas A. Christensen II <25492070+MillironX@users.noreply.github.com> Co-authored-by: Sateesh <33637490+sateeshperi@users.noreply.github.com> Co-authored-by: Robert A. Petit III <robbie.petit@gmail.com>
15 lines
321 B
Text
15 lines
321 B
Text
#!/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 )
|
|
}
|