mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
e971f538a9
* Specify more guidelines on input channels * Linting * Updates based on code review * Update README.md * Fix broken sentence * Fix IQ tree * Fix picard markdup and merge sam * Fix plink/vcf version * Fix plink version output * Fix prokka version command * Fix pydamage * Try fixing markduplicates * Fix snpEff * Fix vcftools version * Fix pydamage and filtersamreads test run * Fix MarkDuplicates tests * Add missing unsorted checks * Remove MD5 sym due to stochasicity in BAM file
43 lines
1.5 KiB
Text
43 lines
1.5 KiB
Text
// Import generic module functions
|
|
include { initOptions; saveFiles; getSoftwareName; getProcessName } from './functions'
|
|
|
|
params.options = [:]
|
|
options = initOptions(params.options)
|
|
|
|
process PYDAMAGE_ANALYZE {
|
|
tag "$meta.id"
|
|
label 'process_medium'
|
|
publishDir "${params.outdir}",
|
|
mode: params.publish_dir_mode,
|
|
saveAs: { filename -> saveFiles(filename:filename, options:params.options, publish_dir:getSoftwareName(task.process), meta:meta, publish_by_meta:['id']) }
|
|
|
|
conda (params.enable_conda ? "bioconda::pydamage=0.62" : null)
|
|
if (workflow.containerEngine == 'singularity' && !params.singularity_pull_docker_container) {
|
|
container "https://depot.galaxyproject.org/singularity/pydamage:0.62--pyhdfd78af_0"
|
|
} else {
|
|
container "quay.io/biocontainers/pydamage:0.62--pyhdfd78af_0"
|
|
}
|
|
|
|
input:
|
|
tuple val(meta), path(bam), path(bai)
|
|
|
|
output:
|
|
tuple val(meta), path("pydamage_results/pydamage_results.csv"), emit: csv
|
|
path "versions.yml" , emit: version
|
|
|
|
script:
|
|
def software = getSoftwareName(task.process)
|
|
def prefix = options.suffix ? "${meta.id}${options.suffix}" : "${meta.id}"
|
|
"""
|
|
pydamage \\
|
|
analyze \\
|
|
$options.args \\
|
|
-p $task.cpus \\
|
|
$bam
|
|
|
|
cat <<-END_VERSIONS > versions.yml
|
|
${getProcessName(task.process)}:
|
|
${getSoftwareName(task.process)}: \$(echo \$(pydamage --version 2>&1) | sed -e 's/pydamage, version //g')
|
|
END_VERSIONS
|
|
"""
|
|
}
|