#!/usr/bin/env nextflow nextflow.enable.dsl = 2 include { RAPIDNJ } from '../../../modules/rapidnj/main.nf' workflow test_rapidnj { input = [ file(params.test_data['sarscov2']['genome']['informative_sites_fas'], checkIfExists: true) ] RAPIDNJ ( input ) }