2021-02-17 12:03:48 -05:00
|
|
|
// Import generic module functions
|
2021-09-27 04:41:24 -04:00
|
|
|
include { initOptions; saveFiles; getSoftwareName; getProcessName } from './functions'
|
2021-02-17 12:03:48 -05:00
|
|
|
|
|
|
|
params.options = [:]
|
2021-03-15 08:16:43 -04:00
|
|
|
options = initOptions(params.options)
|
2021-02-17 12:03:48 -05:00
|
|
|
|
|
|
|
process BWAMETH_INDEX {
|
|
|
|
tag "$fasta"
|
|
|
|
label 'process_high'
|
|
|
|
publishDir "${params.outdir}",
|
|
|
|
mode: params.publish_dir_mode,
|
2021-04-10 15:49:09 -04:00
|
|
|
saveAs: { filename -> saveFiles(filename:filename, options:params.options, publish_dir:'index', meta:[:], publish_by_meta:[]) }
|
2021-02-17 12:03:48 -05:00
|
|
|
|
|
|
|
conda (params.enable_conda ? "bioconda::bwameth=0.2.2" : null)
|
|
|
|
if (workflow.containerEngine == 'singularity' && !params.singularity_pull_docker_container) {
|
2021-04-06 05:45:14 -04:00
|
|
|
container "https://depot.galaxyproject.org/singularity/bwameth:0.2.2--py_1"
|
2021-02-17 12:03:48 -05:00
|
|
|
} else {
|
2021-04-06 05:45:14 -04:00
|
|
|
container "quay.io/biocontainers/bwameth:0.2.2--py_1"
|
2021-02-17 12:03:48 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
input:
|
2021-02-20 06:51:01 -05:00
|
|
|
path fasta, stageAs: "bwameth/*"
|
2021-02-17 12:03:48 -05:00
|
|
|
|
|
|
|
output:
|
2021-02-20 06:51:01 -05:00
|
|
|
path "bwameth" , emit: index
|
2021-10-01 09:04:56 -04:00
|
|
|
path "versions.yml" , emit: versions
|
2021-02-17 12:03:48 -05:00
|
|
|
|
|
|
|
script:
|
|
|
|
"""
|
|
|
|
bwameth.py index $fasta
|
|
|
|
|
2021-09-27 04:41:24 -04:00
|
|
|
cat <<-END_VERSIONS > versions.yml
|
|
|
|
${getProcessName(task.process)}:
|
2021-09-27 17:10:37 -04:00
|
|
|
${getSoftwareName(task.process)}: \$(echo \$(bwameth.py --version 2>&1) | cut -f2 -d" ")
|
2021-09-27 04:41:24 -04:00
|
|
|
END_VERSIONS
|
2021-02-17 12:03:48 -05:00
|
|
|
"""
|
|
|
|
}
|