2021-08-16 15:47:42 +00:00
|
|
|
process EXPANSIONHUNTER {
|
|
|
|
tag "$meta.id"
|
|
|
|
label 'process_low'
|
|
|
|
|
|
|
|
conda (params.enable_conda ? "bioconda::expansionhunter=4.0.2" : null)
|
2021-11-26 07:58:40 +00:00
|
|
|
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
|
|
|
|
'https://depot.galaxyproject.org/singularity/expansionhunter:4.0.2--he785bd8_0' :
|
|
|
|
'quay.io/biocontainers/expansionhunter:4.0.2--he785bd8_0' }"
|
2021-08-16 15:47:42 +00:00
|
|
|
|
|
|
|
input:
|
|
|
|
tuple val(meta), path(bam), path(bai)
|
|
|
|
path fasta
|
|
|
|
path variant_catalog
|
|
|
|
|
|
|
|
output:
|
|
|
|
tuple val(meta), path("*.vcf"), emit: vcf
|
2021-10-01 13:04:56 +00:00
|
|
|
path "versions.yml" , emit: versions
|
2021-08-16 15:47:42 +00:00
|
|
|
|
2022-02-04 08:53:32 +00:00
|
|
|
when:
|
|
|
|
task.ext.when == null || task.ext.when
|
|
|
|
|
2021-08-16 15:47:42 +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-08-16 15:47:42 +00:00
|
|
|
def gender = (meta.gender == 'male' || meta.gender == 1 || meta.gender == 'XY') ? "male" : "female"
|
|
|
|
"""
|
|
|
|
ExpansionHunter \\
|
2021-11-26 07:58:40 +00:00
|
|
|
$args \\
|
2021-08-16 15:47:42 +00:00
|
|
|
--reads $bam \\
|
|
|
|
--output-prefix $prefix \\
|
|
|
|
--reference $fasta \\
|
|
|
|
--variant-catalog $variant_catalog \\
|
|
|
|
--sex $gender
|
|
|
|
|
2021-09-27 08:41:24 +00:00
|
|
|
cat <<-END_VERSIONS > versions.yml
|
2021-11-26 07:58:40 +00:00
|
|
|
"${task.process}":
|
|
|
|
expansionhunter: \$( echo \$(ExpansionHunter --version 2>&1) | sed 's/^.*ExpansionHunter v//')
|
2021-09-27 08:41:24 +00:00
|
|
|
END_VERSIONS
|
2021-08-16 15:47:42 +00:00
|
|
|
"""
|
2022-03-28 15:48:39 +00:00
|
|
|
|
|
|
|
stub:
|
|
|
|
def prefix = task.ext.prefix ?: "${meta.id}"
|
|
|
|
"""
|
|
|
|
touch ${prefix}.vcf
|
|
|
|
|
|
|
|
cat <<-END_VERSIONS > versions.yml
|
|
|
|
"${task.process}":
|
|
|
|
expansionhunter: \$( echo \$(ExpansionHunter --version 2>&1) | sed 's/^.*ExpansionHunter v//')
|
|
|
|
END_VERSIONS
|
|
|
|
"""
|
2021-08-16 15:47:42 +00:00
|
|
|
}
|