mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-14 13:43:09 +00:00
41 lines
1.4 KiB
Text
41 lines
1.4 KiB
Text
|
// Import generic module functions
|
||
|
include { initOptions; saveFiles; getSoftwareName } from './functions'
|
||
|
|
||
|
params.options = [:]
|
||
|
options = initOptions(params.options)
|
||
|
|
||
|
def VERSION = 0.1 // No version information printed
|
||
|
|
||
|
process CHROMAP_INDEX {
|
||
|
tag '$fasta'
|
||
|
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:[:], publish_by_meta:[]) }
|
||
|
|
||
|
conda (params.enable_conda ? "bioconda::chromap=0.1 bioconda::samtools=1.13" : null)
|
||
|
if (workflow.containerEngine == 'singularity' && !params.singularity_pull_docker_container) {
|
||
|
container "https://depot.galaxyproject.org/singularity/mulled-v2-1f09f39f20b1c4ee36581dc81cc323c70e661633:2cad7c5aa775241887eff8714259714a39baf016-0"
|
||
|
} else {
|
||
|
container "quay.io/biocontainers/mulled-v2-1f09f39f20b1c4ee36581dc81cc323c70e661633:2cad7c5aa775241887eff8714259714a39baf016-0"
|
||
|
}
|
||
|
|
||
|
input:
|
||
|
path fasta
|
||
|
|
||
|
output:
|
||
|
path "*.index" , emit: index
|
||
|
path "*.version.txt", emit: version
|
||
|
|
||
|
script:
|
||
|
def software = getSoftwareName(task.process)
|
||
|
def prefix = fasta.baseName
|
||
|
"""
|
||
|
chromap -i $options.args \\
|
||
|
-t $task.cpus \\
|
||
|
-r $fasta \\
|
||
|
-o ${prefix}.index
|
||
|
echo "$VERSION" > ${software}.version.txt
|
||
|
"""
|
||
|
}
|