We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f4e4472 commit 4e0674bCopy full SHA for 4e0674b
v03_pipeline/lib/reference_datasets/hgmd.py
@@ -12,6 +12,9 @@ def get_ht(path: str, reference_genome: ReferenceGenome) -> hl.Table:
12
contig_recoding=reference_genome.contig_recoding(),
13
)
14
ht = mt.rows()
15
+ # HGMD represents DELETIONS as Structural Variants
16
+ # which is less than ideal.
17
+ ht = ht.filter(ht.alleles[1] != '<DEL>')
18
return ht.select(
19
**{
20
'accession': ht.rsid,
0 commit comments