2021-02-09 10:50:32 +00:00
|
|
|
// Import generic module functions
|
|
|
|
include { initOptions; saveFiles; getSoftwareName } from './functions'
|
|
|
|
|
|
|
|
params.options = [:]
|
2021-03-15 12:16:43 +00:00
|
|
|
options = initOptions(params.options)
|
2021-02-09 10:50:32 +00:00
|
|
|
|
|
|
|
process UNTAR {
|
|
|
|
tag "$archive"
|
2021-03-16 17:16:47 +00:00
|
|
|
label 'process_low'
|
2021-02-09 10:50:32 +00:00
|
|
|
publishDir "${params.outdir}",
|
|
|
|
mode: params.publish_dir_mode,
|
2021-04-09 16:23:56 +00:00
|
|
|
saveAs: { filename -> saveFiles(filename:filename, options:params.options, publish_dir:getSoftwareName(task.process), meta:[:], publish_by_meta:[]) }
|
2021-02-09 10:50:32 +00:00
|
|
|
|
2021-02-16 23:58:23 +00:00
|
|
|
conda (params.enable_conda ? "conda-forge::sed=4.7" : null)
|
2021-02-09 10:50:32 +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 "$untar" , emit: untar
|
|
|
|
path "*.version.txt", emit: version
|
|
|
|
|
|
|
|
script:
|
|
|
|
def software = getSoftwareName(task.process)
|
|
|
|
untar = archive.toString() - '.tar.gz'
|
|
|
|
"""
|
|
|
|
tar -xzvf $options.args $archive
|
|
|
|
echo \$(tar --version 2>&1) | sed 's/^.*(GNU tar) //; s/ Copyright.*\$//' > ${software}.version.txt
|
|
|
|
"""
|
|
|
|
}
|