2021-03-22 13:58:54 +00:00
|
|
|
#!/usr/bin/env nextflow
|
|
|
|
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
|
2021-11-26 07:58:40 +00:00
|
|
|
include { BISMARK_GENOMEPREPARATION } from '../../../../modules/bismark/genomepreparation/main.nf'
|
|
|
|
include { BISMARK_ALIGN } from '../../../../modules/bismark/align/main.nf'
|
|
|
|
include { BISMARK_DEDUPLICATE } from '../../../../modules/bismark/deduplicate/main.nf'
|
|
|
|
include { BISMARK_METHYLATIONEXTRACTOR } from '../../../../modules/bismark/methylationextractor/main.nf'
|
|
|
|
include { BISMARK_SUMMARY } from '../../../../modules/bismark/summary/main.nf'
|
2021-03-22 13:58:54 +00:00
|
|
|
|
|
|
|
workflow test_bismark_summary {
|
|
|
|
input = [ [ id:'test', single_end:false ], // meta map
|
2021-06-14 11:24:59 +00:00
|
|
|
[ file(params.test_data['sarscov2']['illumina']['test_methylated_1_fastq_gz'], checkIfExists: true),
|
|
|
|
file(params.test_data['sarscov2']['illumina']['test_methylated_2_fastq_gz'], checkIfExists: true) ]
|
2021-03-24 09:53:41 +00:00
|
|
|
]
|
2021-06-14 11:24:59 +00:00
|
|
|
fasta = file(params.test_data['sarscov2']['genome']['genome_fasta'], checkIfExists: true)
|
2021-03-22 13:58:54 +00:00
|
|
|
|
2021-03-24 09:53:41 +00:00
|
|
|
BISMARK_GENOMEPREPARATION ( fasta )
|
2021-03-22 16:46:11 +00:00
|
|
|
BISMARK_ALIGN ( input, BISMARK_GENOMEPREPARATION.out.index )
|
2021-03-22 13:58:54 +00:00
|
|
|
BISMARK_DEDUPLICATE ( BISMARK_ALIGN.out.bam )
|
2021-03-22 16:46:11 +00:00
|
|
|
BISMARK_METHYLATIONEXTRACTOR ( BISMARK_DEDUPLICATE.out.bam, BISMARK_GENOMEPREPARATION.out.index )
|
2021-03-22 13:58:54 +00:00
|
|
|
BISMARK_SUMMARY (
|
|
|
|
BISMARK_ALIGN.out.bam.collect{ meta, bam -> bam },
|
|
|
|
BISMARK_ALIGN.out.report.collect{ meta, report -> report },
|
|
|
|
BISMARK_DEDUPLICATE.out.report.collect{ meta, bam -> bam },
|
2021-03-22 16:46:11 +00:00
|
|
|
BISMARK_METHYLATIONEXTRACTOR.out.report.collect{ meta, report -> report },
|
|
|
|
BISMARK_METHYLATIONEXTRACTOR.out.mbias.collect{ meta, mbias -> mbias }
|
2021-03-22 13:58:54 +00:00
|
|
|
)
|
|
|
|
}
|