process GENMOD_SCORE { tag "$meta.id" label 'process_medium' conda (params.enable_conda ? "bioconda::genmod=3.7.4" : 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 (score_config) output: tuple val(meta), path("*_score.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 config_file = score_config ? "--score_config ${score_config}" : "" """ genmod \\ score \\ $args \\ $family_file \\ $config_file \\ --outfile ${prefix}_score.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}_score.vcf cat <<-END_VERSIONS > versions.yml "${task.process}": genmod: \$(echo \$(genmod --version 2>&1) | sed 's/^.*genmod version: //' )) END_VERSIONS """ }