Skip to content

Commit

Permalink
Merge pull request #81 from Rohan-cod/simple-variant-extraction
Browse files Browse the repository at this point in the history
Updated logic for simple variant extraction
  • Loading branch information
rhdolin authored Jun 21, 2021
2 parents 73e3a1d + 70ba202 commit 0724ba7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vcf2fhir/json_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ def _get_fhir_json(
not conversion_region or
conversion_region[
record.CHROM,
record.POS - 1: record.POS
record.POS - 1: (record.POS + len(record.REF) - 1)
].empty is False):
_add_record_variants(
record, ref_seq, patientID, fhir_helper, ratio_ad_dp)
Expand Down

0 comments on commit 0724ba7

Please sign in to comment.