mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
a8e6a88163
* update options * update test
53 lines
1.5 KiB
Text
53 lines
1.5 KiB
Text
process GENMOD_MODELS {
|
|
tag "$meta.id"
|
|
label 'process_medium'
|
|
|
|
conda (params.enable_conda ? "bioconda::genmod=3.7.4 conda-forge::python=3.4.5" : null)
|
|
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
|
|
'https://depot.galaxyproject.org/singularity/genmod:3.7.4--pyh5e36f6f_0':
|
|
'quay.io/biocontainers/genmod:3.7.4--pyh5e36f6f_0' }"
|
|
|
|
input:
|
|
tuple val(meta), path(input_vcf)
|
|
path (fam)
|
|
path (reduced_penetrance)
|
|
|
|
output:
|
|
tuple val(meta), path("*_models.vcf"), emit: vcf
|
|
path "versions.yml" , emit: versions
|
|
|
|
when:
|
|
task.ext.when == null || task.ext.when
|
|
|
|
script:
|
|
def args = task.ext.args ?: ''
|
|
def prefix = task.ext.prefix ?: "${meta.id}"
|
|
def family_file = fam ? "--family_file ${fam}" : ""
|
|
def pen_file = reduced_penetrance ? "--reduced_penetrance ${reduced_penetrance}" : ""
|
|
"""
|
|
genmod \\
|
|
models \\
|
|
$args \\
|
|
$pen_file \\
|
|
$family_file \\
|
|
--processes ${task.cpus} \\
|
|
--outfile ${prefix}_models.vcf \\
|
|
$input_vcf
|
|
|
|
cat <<-END_VERSIONS > versions.yml
|
|
"${task.process}":
|
|
genmod: \$(echo \$(genmod --version 2>&1) | sed 's/^.*genmod version: //' ))
|
|
END_VERSIONS
|
|
"""
|
|
|
|
stub:
|
|
def prefix = task.ext.prefix ?: "${meta.id}"
|
|
"""
|
|
touch ${prefix}_models.vcf
|
|
|
|
cat <<-END_VERSIONS > versions.yml
|
|
"${task.process}":
|
|
genmod: \$(echo \$(genmod --version 2>&1) | sed 's/^.*genmod version: //' ))
|
|
END_VERSIONS
|
|
"""
|
|
}
|