Skip to content

Commit

Permalink
add comments
Browse files Browse the repository at this point in the history
  • Loading branch information
erikyao committed Sep 20, 2023
1 parent 5c2abe3 commit a77dfae
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_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ def split_dedup(values: list, sep: str, na_values: set = NA_VALUES):
Column("Aloft_prob_Dominant", dest="aloft.prob_dominant", transform=split_str),
Column("Aloft_pred", transform=split_str),
Column("Aloft_Confidence", transform=split_str),
Column("CADD_raw", dest="cadd.raw_score", transform=split_float, assembly="hg38"), # TODO CADD will have hg38 next update
Column("CADD_raw", dest="cadd.raw_score", transform=split_float, assembly="hg38"), # TODO CADD will have hg38 next update. Deprecate these 3 field then.
Column("CADD_raw_rankscore", dest="cadd.raw_rankscore", transform=split_float, assembly="hg38"),
Column("CADD_phred", transform=split_float, assembly="hg38"), # CADD phred-like scores, not as other predications of string type
# Column("CADD_raw_hg19", assembly="hg19"), # discarded because Myvariant.info already has a hg19-only datasource of CADD.
Expand Down
2 changes: 1 addition & 1 deletion src/hub/dataload/sources/dbnsfp/dbnsfp_parser_43a.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@


"""
This parser is for dbNSFP v4.3a downloaded from https://sites.google.com/site/jpopgen/dbNSFP
Deprecated. This parser is for dbNSFP v4.3a downloaded from https://sites.google.com/site/jpopgen/dbNSFP
"""


Expand Down

0 comments on commit a77dfae

Please sign in to comment.