mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
34 lines
1.2 KiB
Text
34 lines
1.2 KiB
Text
// Import generic module functions
|
|
include { initOptions; saveFiles; getSoftwareName } from './functions'
|
|
|
|
params.options = [:]
|
|
def options = initOptions(params.options)
|
|
|
|
process TABIX_BGZIP {
|
|
tag "$meta.id"
|
|
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::tabix=0.2.6" : null)
|
|
if (workflow.containerEngine == 'singularity' && !params.singularity_pull_docker_container) {
|
|
container "https://depot.galaxyproject.org/singularity/tabix:0.2.6--ha92aebf_0"
|
|
} else {
|
|
container "quay.io/biocontainers/tabix:0.2.6--ha92aebf_0"
|
|
}
|
|
|
|
input:
|
|
tuple val(meta), path(file)
|
|
|
|
output:
|
|
tuple val(meta), path("*.gz"), emit: file
|
|
path "*.version.txt" , emit: version
|
|
|
|
script:
|
|
def software = getSoftwareName(task.process)
|
|
def prefix = options.suffix ? "${meta.id}${options.suffix}" : "${meta.id}"
|
|
"""
|
|
bgzip -c $options.args $file > ${prefix}.${file.getExtension()}.gz
|
|
echo \$(bcftools --version 2>&1) | sed 's/^.*bcftools //; s/ .*\$//' > ${software}.version.txt
|
|
"""
|
|
}
|