#!/usr/bin/env nextflow nextflow.enable.dsl = 2 include { PICARD_COLLECTMULTIPLEMETRICS } from '../../../../software/picard/collectmultiplemetrics/main.nf' addParams( options: [:] ) workflow test_picard_collectmultiplemetrics { def input = [] input = [ [ id:'test', single_end:false ], // meta map file("${launchDir}/tests/data/bam/test.paired_end.name.sorted.bam", checkIfExists: true) ] PICARD_COLLECTMULTIPLEMETRICS ( input, file("${launchDir}/tests/data/fasta/E_coli/NC_010473.fa", checkIfExists: true) ) }