Skip to content

Commit

Permalink
feat: add new key value pairs
Browse files Browse the repository at this point in the history
  • Loading branch information
berntpopp committed Apr 10, 2024
1 parent e5a3f6b commit 558f9a9
Showing 1 changed file with 23 additions and 4 deletions.
27 changes: 23 additions & 4 deletions src/config/geneDetailsConfig.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export const geneDetailsConfig = {
description: "The unique identifier for the gene from the HGNC database.",
visibility: false
},
NCS: {
NGS: {
label: "Nephro Candidate Gene Score",
format: "number",
description: "Score indicating the likelihood that the gene is linked to kidney disease.",
Expand All @@ -33,16 +33,35 @@ export const geneDetailsConfig = {
style: "chip",
font: "italic"
},
geneset: {
gene_set: {
label: "Geneset",
format: "text",
description: "The geneset to which this gene belongs to (e.g. training, testing or none).",
colorThresholds: {
low: "train",
medium: "test",
high: "None"
high: "none"
},
visibility: true,
style: "chip"
}
},
evidence_count: {
label: "Evidence Count",
format: "number",
description: "The number of evidence items associated with this gene.",
colorThresholds: {
low: 2,
high: 4
},
round: 0,
visibility: true,
style: "chip",
font: "bold"
},
meta: {
label: "Meta",
format: "object",
description: "Meta information about the object, including the date and algorithm.",
visibility: false
},
};

0 comments on commit 558f9a9

Please sign in to comment.