mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
f9ce8664ba
* add bismark/align module * bismark/align: add tests * bismark/align: update meta.yml * bismark/align: skip checksum for alignment logs they contain timestamps * bismark/align: restore correct checksum caused some mixup in the last commit * bismark/align: add genome_preparation to filters * Fix conda version pin * change options to be a global var * remove params from meta.yml * add bismark/report * fix test filepaths * remove mysterious index files
39 lines
1.4 KiB
Text
39 lines
1.4 KiB
Text
// 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,
|
|
saveAs: { filename -> saveFiles(filename:filename, options:params.options, publish_dir:getSoftwareName(task.process), publish_id:meta.id) }
|
|
|
|
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:
|
|
tuple val(meta), path("*{html,txt}"), emit: report
|
|
path "*.version.txt" , emit: version
|
|
|
|
script:
|
|
def software = getSoftwareName(task.process)
|
|
"""
|
|
bismark2report \\
|
|
--alignment_report $align_report \\
|
|
--dedup_report $dedup_report \\
|
|
--splitting_report $splitting_report \\
|
|
--mbias_report $mbias
|
|
|
|
echo \$(bismark -v 2>&1) | sed 's/^.*Bismark Version: v//; s/Copyright.*\$//' > ${software}.version.txt
|
|
"""
|
|
}
|