2021-05-04 13:28:44 +00:00
|
|
|
process DSHBIO_SPLITBED {
|
2021-01-21 22:34:49 +00:00
|
|
|
tag "${meta.id}"
|
|
|
|
label 'process_medium'
|
|
|
|
|
2022-04-09 16:13:47 +00:00
|
|
|
conda (params.enable_conda ? "bioconda::dsh-bio=2.0.8" : null)
|
2021-11-26 07:58:40 +00:00
|
|
|
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
|
2022-04-09 16:13:47 +00:00
|
|
|
'https://depot.galaxyproject.org/singularity/dsh-bio:2.0.8--hdfd78af_0' :
|
|
|
|
'quay.io/biocontainers/dsh-bio:2.0.8--hdfd78af_0' }"
|
2021-01-21 22:34:49 +00:00
|
|
|
|
|
|
|
input:
|
2021-01-29 15:01:21 +00:00
|
|
|
tuple val(meta), path(bed)
|
2021-01-21 22:34:49 +00:00
|
|
|
|
|
|
|
output:
|
2021-01-29 15:01:21 +00:00
|
|
|
tuple val(meta), path("*.bed.gz"), emit: bed
|
2021-10-01 13:04:56 +00:00
|
|
|
path "versions.yml" , emit: versions
|
2021-01-21 22:34:49 +00:00
|
|
|
|
2022-02-04 08:53:32 +00:00
|
|
|
when:
|
|
|
|
task.ext.when == null || task.ext.when
|
|
|
|
|
2021-01-21 22:34:49 +00:00
|
|
|
script:
|
2021-11-26 07:58:40 +00:00
|
|
|
def args = task.ext.args ?: ''
|
2021-12-02 12:39:55 +00:00
|
|
|
def prefix = task.ext.prefix ?: "${meta.id}"
|
2021-01-21 22:34:49 +00:00
|
|
|
"""
|
2021-05-04 13:28:44 +00:00
|
|
|
dsh-bio \\
|
|
|
|
split-bed \\
|
2021-11-26 07:58:40 +00:00
|
|
|
$args \\
|
2021-01-21 22:34:49 +00:00
|
|
|
-p $prefix \\
|
|
|
|
-s '.bed.gz' \\
|
2021-01-29 15:01:21 +00:00
|
|
|
-i $bed
|
2021-01-21 22:34:49 +00:00
|
|
|
|
2021-09-27 08:41:24 +00:00
|
|
|
cat <<-END_VERSIONS > versions.yml
|
2021-11-26 07:58:40 +00:00
|
|
|
"${task.process}":
|
|
|
|
dshbio: \$(dsh-bio --version 2>&1 | grep -o 'dsh-bio-tools .*' | cut -f2 -d ' ')
|
2021-09-27 08:41:24 +00:00
|
|
|
END_VERSIONS
|
2021-01-21 22:34:49 +00:00
|
|
|
"""
|
|
|
|
}
|