Skip to content
Snippets Groups Projects
Verified Commit 93c9b2e9 authored by Laurent Modolo's avatar Laurent Modolo
Browse files

gatk4: fix SelectVariants cmd (remove -T)

parent b18b1efe
No related branches found
No related tags found
No related merge requests found
...@@ -56,7 +56,7 @@ process filter_indels { ...@@ -56,7 +56,7 @@ process filter_indels {
script: script:
xmx_memory = "${task.memory}" - ~/\s*GB/ xmx_memory = "${task.memory}" - ~/\s*GB/
""" """
gatk --java-options "-Xmx${xmx_memory}G"-T SelectVariants \ gatk --java-options "-Xmx${xmx_memory}G" SelectVariants \
-R ${fasta} \ -R ${fasta} \
-V ${vcf} \ -V ${vcf} \
-selectType INDEL \ -selectType INDEL \
...@@ -79,7 +79,7 @@ process high_confidence_snp { ...@@ -79,7 +79,7 @@ process high_confidence_snp {
script: script:
xmx_memory = "${task.memory}" - ~/\s*GB/ xmx_memory = "${task.memory}" - ~/\s*GB/
""" """
gatk --java-options "-Xmx${xmx_memory}G"-T VariantFiltration \ gatk --java-options "-Xmx${xmx_memory}G" VariantFiltration \
-R ${fasta} \ -R ${fasta} \
-V ${vcf} \ -V ${vcf} \
--filterExpression "${high_confidence_snp_filter}" \ --filterExpression "${high_confidence_snp_filter}" \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment