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

gatk4: update SelectVariants options

parent 93c9b2e9
No related branches found
No related tags found
No related merge requests found
......@@ -38,7 +38,7 @@ process filter_snp {
gatk --java-options "-Xmx${xmx_memory}G" SelectVariants \
-R ${fasta} \
-V ${vcf} \
-selectType SNP \
-select-type SNP \
-O ${file_id}_snp.vcf
"""
}
......@@ -59,7 +59,7 @@ process filter_indels {
gatk --java-options "-Xmx${xmx_memory}G" SelectVariants \
-R ${fasta} \
-V ${vcf} \
-selectType INDEL \
-select-type INDEL \
-O ${file_id}_indel.vcf
"""
}
......@@ -216,7 +216,7 @@ process select_variants_snp {
gatk --java-options "-Xmx${xmx_memory}GG" SelectVariants \
-R ${fasta} \
-V ${vcf} \
-selectType SNP \
-select-type SNP \
-O ${file_id}_joint_snp.vcf
"""
}
......@@ -237,7 +237,7 @@ process select_variants_indels {
gatk --java-options "-Xmx${xmx_memory}G" SelectVariants \
-R ${fasta} \
-V ${vcf} \
-selectType INDEL \
-select-type INDEL \
-O ${file_id}_joint_indel.vcf
"""
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment