Skip to content

Commit

Permalink
fix: adding back missing Gene::biotype member
Browse files Browse the repository at this point in the history
  • Loading branch information
holtgrewe committed Nov 8, 2023
1 parent bfe6c73 commit 9427857
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/data/cdot/json.rs
Original file line number Diff line number Diff line change
Expand Up @@ -428,6 +428,8 @@ pub mod models {
#[serde(deserialize_with = "deserialize_gene_aliases")]
pub aliases: Option<Vec<String>>,
#[serde(default)]
pub biotype: Option<Vec<BioType>>,
#[serde(default)]
pub description: Option<String>,
pub gene_symbol: Option<String>,
#[serde(default)]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85319,6 +85319,12 @@ Container {
"RNF53",
],
),
biotype: Some(
[
MRna,
ProteinCoding,
],
),
description: Some(
"BRCA1 DNA repair associated",
),
Expand Down

0 comments on commit 9427857

Please sign in to comment.