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

gatk4: fix VariantFiltration params

parent b5fa57a6
No related branches found
No related tags found
No related merge requests found
...@@ -82,8 +82,8 @@ process high_confidence_snp { ...@@ -82,8 +82,8 @@ process high_confidence_snp {
gatk --java-options "-Xmx${xmx_memory}G" VariantFiltration \ gatk --java-options "-Xmx${xmx_memory}G" VariantFiltration \
-R ${fasta} \ -R ${fasta} \
-V ${vcf} \ -V ${vcf} \
--filterExpression "${high_confidence_snp_filter}" \ --filter-expression "${high_confidence_snp_filter}" \
--filterName "basic_snp_filter" \ --filter-name "basic_snp_filter" \
-O ${file_id}_filtered_snp.vcf -O ${file_id}_filtered_snp.vcf
""" """
} }
...@@ -106,8 +106,8 @@ process high_confidence_indels { ...@@ -106,8 +106,8 @@ process high_confidence_indels {
gatk --java-options "-Xmx${xmx_memory}G" VariantFiltration \ gatk --java-options "-Xmx${xmx_memory}G" VariantFiltration \
-R ${fasta} \ -R ${fasta} \
-V ${vcf} \ -V ${vcf} \
--filterExpression "${high_confidence_indel_filter}" \ --filter-expression "${high_confidence_indel_filter}" \
--filterName "basic_indel_filter" \ --filter-name "basic_indel_filter" \
-O ${file_id}_filtered_indel.vcf -O ${file_id}_filtered_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