mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
393dbd6dda
* Update main.nf * Update meta.yml * Re-add logos as not staged in a way that works with MultiQC config files * Fix when only files or multiple directories * Add test for only-files tar * Fix bash check
64 lines
1.7 KiB
Text
64 lines
1.7 KiB
Text
process UNTAR {
|
|
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("$untar"), emit: untar
|
|
path "versions.yml" , emit: versions
|
|
|
|
when:
|
|
task.ext.when == null || task.ext.when
|
|
|
|
script:
|
|
def args = task.ext.args ?: ''
|
|
def args2 = task.ext.args2 ?: ''
|
|
untar = archive.toString() - '.tar.gz'
|
|
|
|
"""
|
|
mkdir output
|
|
|
|
## Ensures --strip-components only applied when top level of tar contents is a directory
|
|
## If just files or multiple directories, place all in output
|
|
if [[ \$(tar -tzf ${archive} | grep "/\$" | wc -l) -eq 1 ]]; then
|
|
tar \\
|
|
-C output --strip-components 1 \\
|
|
-xzvf \\
|
|
$args \\
|
|
$archive \\
|
|
$args2
|
|
else
|
|
tar \\
|
|
-C output \\
|
|
-xzvf \\
|
|
$args \\
|
|
$archive \\
|
|
$args2
|
|
fi
|
|
|
|
mv output ${untar}
|
|
|
|
cat <<-END_VERSIONS > versions.yml
|
|
"${task.process}":
|
|
untar: \$(echo \$(tar --version 2>&1) | sed 's/^.*(GNU tar) //; s/ Copyright.*\$//')
|
|
END_VERSIONS
|
|
"""
|
|
|
|
stub:
|
|
untar = archive.toString() - '.tar.gz'
|
|
"""
|
|
touch $untar
|
|
|
|
cat <<-END_VERSIONS > versions.yml
|
|
"${task.process}":
|
|
untar: \$(echo \$(tar --version 2>&1) | sed 's/^.*(GNU tar) //; s/ Copyright.*\$//')
|
|
END_VERSIONS
|
|
"""
|
|
}
|