nf-core_modules/modules/gunzip/main.nf

39 lines
1.3 KiB
Text
Raw Normal View History

2021-02-09 09:05:55 +00:00
// Import generic module functions
include { initOptions; saveFiles; getSoftwareName; getProcessName } from './functions'
2021-02-09 09:05:55 +00:00
params.options = [:]
options = initOptions(params.options)
2021-02-09 09:05:55 +00:00
process GUNZIP {
tag "$archive"
label 'process_low'
2021-02-09 09:05:55 +00:00
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:[]) }
2021-02-09 09:05:55 +00:00
2021-02-16 23:58:23 +00:00
conda (params.enable_conda ? "conda-forge::sed=4.7" : null)
2021-02-09 09:05:55 +00:00
if (workflow.containerEngine == 'singularity' && !params.singularity_pull_docker_container) {
container "https://containers.biocontainers.pro/s3/SingImgsRepo/biocontainers/v1.2.0_cv1/biocontainers_v1.2.0_cv1.img"
} else {
container "biocontainers/biocontainers:v1.2.0_cv1"
}
input:
path archive
output:
path "$gunzip", emit: gunzip
path "versions.yml" , emit: version
2021-02-09 09:05:55 +00:00
script:
def software = getSoftwareName(task.process)
gunzip = archive.toString() - '.gz'
"""
gunzip -f $options.args $archive
cat <<-END_VERSIONS > versions.yml
${getProcessName(task.process)}:
${getSoftwareName(task.process)}: \$(gunzip --version 2>&1 | sed 's/^.*(gzip) //; s/ Copyright.*\$//')
END_VERSIONS
2021-02-09 09:05:55 +00:00
"""
}