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 baeffcb commit b3708d4Copy full SHA for b3708d4
v03_pipeline/lib/reference_datasets/topmed.py
@@ -15,7 +15,8 @@
15
16
def get_ht(path: str, reference_genome: ReferenceGenome) -> hl.Table:
17
ht = vcf_to_ht(path, reference_genome)
18
- ht = ht.filter(ht.locus.position == hl.int(ht.info.OriginalStart))
+ if reference_genome == ReferenceGenome.GRCh37:
19
+ ht = ht.filter(ht.locus.position == hl.int(ht.info.OriginalStart))
20
return ht.select(
21
**{k: parse_nested_field(ht, v) for k, v in SELECT.items()},
22
)
0 commit comments