mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
eb9178970f
* 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/summary * remove md5sum check for bismark_summary_report.html it contains a timestamp * fix tests * update meta.yml * remove mysterious index files
38 lines
1.2 KiB
Text
38 lines
1.2 KiB
Text
// 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,
|
|
saveAs: { filename -> saveFiles(filename:filename, options:params.options, publish_dir:getSoftwareName(task.process), publish_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:
|
|
path(bam)
|
|
path(align_report)
|
|
path(dedup_report)
|
|
path(splitting_report)
|
|
path(mbias)
|
|
|
|
output:
|
|
path("*{html,txt}") , emit: summary
|
|
path "*.version.txt", emit: version
|
|
|
|
script:
|
|
def software = getSoftwareName(task.process)
|
|
"""
|
|
bismark2summary
|
|
|
|
echo \$(bismark -v 2>&1) | sed 's/^.*Bismark Version: v//; s/Copyright.*\$//' > ${software}.version.txt
|
|
"""
|
|
}
|