Skip to content

Commit

Permalink
fix a typo
Browse files Browse the repository at this point in the history
  • Loading branch information
erikyao committed Oct 11, 2023
1 parent b38ee7e commit 392df19
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/hub/dataload/sources/dbnsfp/dbnsfp_mapping.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@
"type": "keyword",
"normalizer": "keyword_lowercase_normalizer"
},
"genecode_basic": {
"gencode_basic": {
"type": "keyword",
"normalizer": "keyword_lowercase_normalizer"
},
Expand Down
2 changes: 1 addition & 1 deletion src/hub/dataload/sources/dbnsfp/dbnsfp_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ def split_dedup(values: list, sep: str, na_values: set = NA_VALUES):
Column("HGVSc_VEP", tag=COLUMN_TAG.HGVS_CODING), # ditto
Column("HGVSp_VEP", tag=COLUMN_TAG.HGVS_PROTEIN), # ditto
Column("APPRIS", transform=split_str),
Column("GENCODE_basic", dest="genecode_basic", transform=split_str),
Column("GENCODE_basic", dest="gencode_basic", transform=split_str),
Column("TSL", transform=split_int),
Column("VEP_canonical", dest="vep_canonical", transform=split_str),
Column("cds_strand", dest="cds_strand", transform=split_str),
Expand Down

0 comments on commit 392df19

Please sign in to comment.