mirror of
https://github.com/MillironX/taxprofiler.git
synced 2024-11-11 05:53:09 +00:00
44 lines
1.1 KiB
Text
Generated
44 lines
1.1 KiB
Text
Generated
process GUNZIP {
|
|
tag "$archive"
|
|
label 'process_single'
|
|
|
|
conda (params.enable_conda ? "conda-forge::sed=4.7" : null)
|
|
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
|
|
'https://depot.galaxyproject.org/singularity/ubuntu:20.04' :
|
|
'ubuntu:20.04' }"
|
|
|
|
input:
|
|
tuple val(meta), path(archive)
|
|
|
|
output:
|
|
tuple val(meta), path("$gunzip"), emit: gunzip
|
|
path "versions.yml" , emit: versions
|
|
|
|
when:
|
|
task.ext.when == null || task.ext.when
|
|
|
|
script:
|
|
def args = task.ext.args ?: ''
|
|
gunzip = archive.toString() - '.gz'
|
|
"""
|
|
gunzip \\
|
|
-f \\
|
|
$args \\
|
|
$archive
|
|
|
|
cat <<-END_VERSIONS > versions.yml
|
|
"${task.process}":
|
|
gunzip: \$(echo \$(gunzip --version 2>&1) | sed 's/^.*(gzip) //; s/ Copyright.*\$//')
|
|
END_VERSIONS
|
|
"""
|
|
|
|
stub:
|
|
gunzip = archive.toString() - '.gz'
|
|
"""
|
|
touch $gunzip
|
|
cat <<-END_VERSIONS > versions.yml
|
|
"${task.process}":
|
|
gunzip: \$(echo \$(gunzip --version 2>&1) | sed 's/^.*(gzip) //; s/ Copyright.*\$//')
|
|
END_VERSIONS
|
|
"""
|
|
}
|