mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
9ae34a01d1
* Fix typo * Add stub runs for testing input without matched normals * Add missing -stub-run * remove empty file checksum tests and change workflow names * test controlfreec naming * fix output file names * fix output file names * fix output file names * fix conda and container path difference for R scripts * update tar version to work with conda * fix version number in docker * try to fix path to script, pretty sure it won't work * try new ways to set path with wildcard * try which * add which but with escape * remove comment
47 lines
1.3 KiB
Text
47 lines
1.3 KiB
Text
process UNTAR {
|
|
tag "$archive"
|
|
label 'process_low'
|
|
|
|
conda (params.enable_conda ? "conda-forge::tar=1.34" : null)
|
|
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
|
|
'https://containers.biocontainers.pro/s3/SingImgsRepo/biocontainers/v1.2.0_cv2/biocontainers_v1.2.0_cv2.img' :
|
|
'biocontainers/biocontainers:v1.2.0_cv2' }"
|
|
|
|
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'
|
|
"""
|
|
tar \\
|
|
-xzvf \\
|
|
$args \\
|
|
$archive \\
|
|
$args2 \\
|
|
|
|
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
|
|
"""
|
|
}
|