nf-core_modules/tests/software/iqtree/main.nf

13 lines
299 B
Text
Raw Normal View History

#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
include { IQTREE } from '../../../software/iqtree/main.nf' addParams( options: [:] )
workflow test_iqtree {
input = [ file(params.test_data['sarscov2']['genome']['informative_sites_fas'], checkIfExists: true) ]
IQTREE ( input, '' )
}