mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
33 lines
901 B
Text
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 )
|
|
)
|
|
}
|