mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
60 lines
1.8 KiB
Text
60 lines
1.8 KiB
Text
|
process CNVPYTOR_VIEW {
|
||
|
tag "$meta.id"
|
||
|
label 'process_medium'
|
||
|
|
||
|
conda (params.enable_conda ? "bioconda::cnvpytor=1.2.1" : null)
|
||
|
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
|
||
|
'https://depot.galaxyproject.org/singularity/cnvpytor:1.2.1--pyhdfd78af_0':
|
||
|
'quay.io/biocontainers/cnvpytor:1.2.1--pyhdfd78af_0' }"
|
||
|
|
||
|
input:
|
||
|
tuple val(meta), path(pytor)
|
||
|
val bin_sizes
|
||
|
val output_format
|
||
|
|
||
|
output:
|
||
|
tuple val(meta), path("*.vcf"), emit: vcf , optional: true
|
||
|
tuple val(meta), path("*.tsv"), emit: tsv , optional: true
|
||
|
tuple val(meta), path("*.xls"), emit: xls , optional: true
|
||
|
path "versions.yml" , emit: versions
|
||
|
|
||
|
when:
|
||
|
task.ext.when == null || task.ext.when
|
||
|
|
||
|
script:
|
||
|
def output_suffix = output_format ?: 'vcf'
|
||
|
"""
|
||
|
|
||
|
python3 <<CODE
|
||
|
import cnvpytor,os
|
||
|
from pathlib import Path
|
||
|
pytor_files = Path.cwd().glob("*.pytor")
|
||
|
binsizes = "${bin_sizes}".split(" ")
|
||
|
for pytor_file in pytor_files:
|
||
|
for binsize in binsizes:
|
||
|
file_list = [str(pytor_file)]
|
||
|
app = cnvpytor.Viewer(file_list, params={} )
|
||
|
outputfile = "{}_{}.{}".format(pytor_file.stem,binsize.strip(),"${output_suffix}")
|
||
|
app.print_filename = outputfile
|
||
|
app.bin_size = int(binsize)
|
||
|
app.print_calls_file()
|
||
|
CODE
|
||
|
|
||
|
cat <<-END_VERSIONS > versions.yml
|
||
|
"${task.process}":
|
||
|
cnvpytor: \$(echo \$(cnvpytor --version 2>&1) | sed 's/CNVpytor //' ))
|
||
|
END_VERSIONS
|
||
|
"""
|
||
|
|
||
|
stub:
|
||
|
def output_suffix = output_format ?: 'vcf'
|
||
|
"""
|
||
|
touch ${pytor.baseName}.${output_suffix}
|
||
|
|
||
|
cat <<-END_VERSIONS > versions.yml
|
||
|
"${task.process}":
|
||
|
cnvpytor: \$(echo \$(cnvpytor --version 2>&1) | sed 's/CNVpytor //' ))
|
||
|
END_VERSIONS
|
||
|
"""
|
||
|
}
|