2021-03-22 12:38:08 +00:00
|
|
|
// Import generic module functions
|
|
|
|
include { initOptions; saveFiles; getSoftwareName } from './functions'
|
|
|
|
|
|
|
|
params.options = [:]
|
|
|
|
options = initOptions(params.options)
|
|
|
|
|
|
|
|
process BISMARK_REPORT {
|
|
|
|
tag "$meta.id"
|
|
|
|
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:meta, publish_by_meta:['id']) }
|
2021-03-22 12:38:08 +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:
|
|
|
|
tuple val(meta), path(align_report), path(dedup_report), path(splitting_report), path(mbias)
|
|
|
|
|
|
|
|
output:
|
2021-04-06 09:59:00 +00:00
|
|
|
tuple val(meta), path("*report.{html,txt}"), emit: report
|
|
|
|
path "*.version.txt" , emit: version
|
2021-03-22 12:38:08 +00:00
|
|
|
|
|
|
|
script:
|
|
|
|
def software = getSoftwareName(task.process)
|
|
|
|
"""
|
2021-04-06 09:59:00 +00:00
|
|
|
bismark2report $options.args
|
2021-03-22 12:38:08 +00:00
|
|
|
|
|
|
|
echo \$(bismark -v 2>&1) | sed 's/^.*Bismark Version: v//; s/Copyright.*\$//' > ${software}.version.txt
|
|
|
|
"""
|
|
|
|
}
|