nf-core_modules/tests/modules/merquryfk/ploidyplot/main.nf
2022-06-14 20:50:58 +02:00

33 lines
901 B
Text

#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
include { FASTK_FASTK } from '../../../../modules/fastk/fastk/main.nf'
include { MERQURYFK_PLOIDYPLOT } from '../../../../modules/merquryfk/ploidyplot/main.nf'
workflow test_merquryfk_ploidyplot_png {
input = [
[ id:'test', single_end:true ], // meta map
file(params.test_data['homo_sapiens']['illumina']['test_1_fastq_gz'], checkIfExists: true)
]
FASTK_FASTK ( input )
MERQURYFK_PLOIDYPLOT ( FASTK_FASTK.out.hist
.join( FASTK_FASTK.out.ktab )
)
}
workflow test_merquryfk_ploidyplot_pdf {
input = [
[ id:'test', single_end:true ], // meta map
file(params.test_data['homo_sapiens']['illumina']['test_1_fastq_gz'], checkIfExists: true)
]
FASTK_FASTK ( input )
MERQURYFK_PLOIDYPLOT (
FASTK_FASTK.out.hist
.join( FASTK_FASTK.out.ktab )
)
}