nf-core_modules/tests/modules/merquryfk/katcomp/main.nf
Mahesh Binzer-Panchal 280eec5317
Add MerquryFK KatComp (#1797)
Add Kat Comp

Co-authored-by: James A. Fellows Yates <jfy133@gmail.com>
2022-06-21 09:43:37 +02:00

41 lines
1.1 KiB
Text

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