Skip to content

Commit

Permalink
citeseek pass
Browse files Browse the repository at this point in the history
  • Loading branch information
cmungall committed Sep 27, 2024
1 parent 807de5b commit 3a85f69
Show file tree
Hide file tree
Showing 13 changed files with 10,539 additions and 1,025 deletions.
8,673 changes: 8,662 additions & 11 deletions kb/dppkb.yaml

Large diffs are not rendered by default.

Binary file modified project/excel/dppkb.xlsx
Binary file not shown.
20 changes: 20 additions & 0 deletions project/graphql/dppkb.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ type Disease
phenotypes: [Phenotype]
biochemical: [Biochemical]
genetic: [Genetic]
variants: [Variant]
environmental: [Environmental]
treatments: [Treatment]
categories: [String]
Expand Down Expand Up @@ -116,6 +117,13 @@ type EvidenceItem
explanation: String
}

type FunctionalEffect
{
function: String
description: String
type: String
}

type Genetic
{
name: String!
Expand Down Expand Up @@ -172,6 +180,7 @@ type Pathophysiology
role: String
synonyms: [String]
consequence: String
consequences: [String]
gene: GeneTerm
pathways: [BiologicalProcessTerm]
downstream: [String]
Expand All @@ -183,13 +192,15 @@ type Pathophysiology
assays: [AssayTerm]
mechanisms: [String]
notes: String
frequency: Any
}

type Phenotype
{
category: String
name: String!
frequency: Any
description: String
diagnostic: Boolean
sequelae: [String]
evidence: [EvidenceItem]
Expand Down Expand Up @@ -252,11 +263,20 @@ type Treatment
reviewNotes: String
role: String
mechanism: [Mechanism]
examples: [String]
}

type Variant
{
name: String!
description: String
gene: GeneTerm
evidence: [EvidenceItem]
functionalEffects: [FunctionalEffect]
synonyms: [String]
identifiers: [Uriorcurie]
sequenceLength: Integer
clinicalSignificance: ClinicalSignificanceEnum
type: String
}

35 changes: 34 additions & 1 deletion project/jsonld/dppkb.context.jsonld
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"comments": {
"description": "Auto generated by LinkML jsonld context generator",
"generation_date": "2024-09-10T15:16:50",
"generation_date": "2024-09-18T11:29:30",
"source": "dppkb.yaml"
},
"@context": {
Expand Down Expand Up @@ -115,9 +115,21 @@
"chemicals": {
"@id": "chemicals"
},
"clinical_significance": {
"@context": {
"@vocab": "@null",
"text": "skos:notation",
"description": "skos:prefLabel",
"meaning": "@id"
},
"@id": "clinical_significance"
},
"consequence": {
"@id": "consequence"
},
"consequences": {
"@id": "consequences"
},
"context": {
"@id": "context"
},
Expand Down Expand Up @@ -176,6 +188,13 @@
"@type": "@id",
"@id": "frequency"
},
"function": {
"@id": "function"
},
"functional_effects": {
"@type": "@id",
"@id": "functional_effects"
},
"gene": {
"@context": {
"@vocab": "@null",
Expand Down Expand Up @@ -214,6 +233,10 @@
"@type": "@id",
"@id": "has_subtypes"
},
"identifiers": {
"@type": "@id",
"@id": "identifiers"
},
"incubation_days": {
"@id": "incubation_days"
},
Expand Down Expand Up @@ -328,6 +351,10 @@
"sequelae": {
"@id": "sequelae"
},
"sequence_length": {
"@type": "xsd:integer",
"@id": "sequence_length"
},
"severity": {
"@id": "severity"
},
Expand Down Expand Up @@ -375,6 +402,9 @@
},
"@id": "triggers"
},
"type": {
"@id": "type"
},
"unit": {
"@id": "unit"
},
Expand Down Expand Up @@ -412,6 +442,9 @@
"EvidenceItem": {
"@id": "EvidenceItem"
},
"FunctionalEffect": {
"@id": "FunctionalEffect"
},
"Genetic": {
"@id": "Genetic"
},
Expand Down
Loading

0 comments on commit 3a85f69

Please sign in to comment.