2021-03-22 13:58:54 +00:00
|
|
|
// Import generic module functions
|
|
|
|
include { initOptions; saveFiles; getSoftwareName } from './functions'
|
|
|
|
|
|
|
|
params.options = [:]
|
|
|
|
options = initOptions(params.options)
|
|
|
|
|
|
|
|
process BISMARK_SUMMARY {
|
|
|
|
label 'process_low'
|
|
|
|
publishDir "${params.outdir}",
|
|
|
|
mode: params.publish_dir_mode,
|
2021-04-09 16:23:56 +00:00
|
|
|
saveAs: { filename -> saveFiles(filename:filename, options:params.options, publish_dir:getSoftwareName(task.process), meta:[:], publish_by_meta:[]) }
|
2021-03-22 13:58:54 +00:00
|
|
|
|
|
|
|
conda (params.enable_conda ? "bioconda::bismark=0.23.0" : null)
|
|
|
|
if (workflow.containerEngine == 'singularity' && !params.singularity_pull_docker_container) {
|
|
|
|
container "https://depot.galaxyproject.org/singularity/bismark:0.23.0--0"
|
|
|
|
} else {
|
|
|
|
container "quay.io/biocontainers/bismark:0.23.0--0"
|
|
|
|
}
|
|
|
|
|
|
|
|
input:
|
|
|
|
path(bam)
|
|
|
|
path(align_report)
|
|
|
|
path(dedup_report)
|
|
|
|
path(splitting_report)
|
|
|
|
path(mbias)
|
|
|
|
|
|
|
|
output:
|
2021-04-06 09:59:00 +00:00
|
|
|
path "*report.{html,txt}", emit: summary
|
|
|
|
path "*.version.txt" , emit: version
|
2021-03-22 13:58:54 +00:00
|
|
|
|
|
|
|
script:
|
|
|
|
def software = getSoftwareName(task.process)
|
|
|
|
"""
|
|
|
|
bismark2summary
|
|
|
|
|
|
|
|
echo \$(bismark -v 2>&1) | sed 's/^.*Bismark Version: v//; s/Copyright.*\$//' > ${software}.version.txt
|
|
|
|
"""
|
|
|
|
}
|