#!/usr/bin/env nextflow nextflow.enable.dsl = 2 include { BOWTIE2_BUILD } from '../../../../software/bowtie2/build/main.nf' addParams( options: [:] ) workflow test_bowtie2_build { fasta = file("${launchDir}/tests/data/genomics/sarscov2/fasta/test_genome.fasta", checkIfExists: true) BOWTIE2_BUILD ( fasta ) }