You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
header.add_line("##FILTER=<ID=HIGH_ALGORITHM_FDR,Description=\"Categories of variants with low precision including Wham-only deletions and certain Scramble SVAs\">")
848
+
with pysam.VariantFile("~{prefix}.vcf.gz", 'w', header=header) as fo:
849
+
for record in fin:
850
+
if (record.info['ALGORITHMS'] == ('wham',) and record.info['SVTYPE'] == 'DEL') or \
851
+
(record.info['ALGORITHMS'] == ('scramble',) and record.info['HIGH_SR_BACKGROUND'] and record.alts == ('<INS:ME:SVA>',)):
Copy file name to clipboardexpand all lines: website/docs/best_practices.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -4,8 +4,8 @@ description: Guide for using GATK-SV
4
4
sidebar_position: 4
5
5
---
6
6
7
-
A comprehensive guide for the single-sample calling mode is available in[GATK Best Practices for Structural Variation
8
-
Discovery on Single Samples](https://gatk.broadinstitute.org/hc/en-us/articles/9022653744283-GATK-Best-Practices-for-Structural-Variation-Discovery-on-Single-Samples).
7
+
A comprehensive guide for the single-sample [calling mode](/docs/gs/calling_modes) is available in
8
+
[GATK Best Practices for Structural Variation Discovery on Single Samples](https://gatk.broadinstitute.org/hc/en-us/articles/9022653744283-GATK-Best-Practices-for-Structural-Variation-Discovery-on-Single-Samples).
9
9
This material covers basic concepts of structural variant calling, specifics of SV VCF formatting, and
10
10
advanced troubleshooting that also apply to the joint calling mode as well. This guide is intended to supplement
0 commit comments