-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6834453
commit c30dd97
Showing
27 changed files
with
30,073 additions
and
1,824 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,262 @@ | ||
```mermaid | ||
erDiagram | ||
OntologyClass { | ||
string id | ||
} | ||
Annotation { | ||
} | ||
QuantityValue { | ||
unit has_unit | ||
double has_numeric_value | ||
} | ||
Attribute { | ||
string id | ||
uriorcurieList category | ||
stringList type | ||
narrative text description | ||
boolean deprecated | ||
stringList provided_by | ||
uriorcurieList xref | ||
label type full_name | ||
label typeList synonym | ||
label type attribute_name | ||
iri type iri | ||
label type name | ||
} | ||
Entity { | ||
string id | ||
iri type iri | ||
uriorcurieList category | ||
stringList type | ||
label type name | ||
narrative text description | ||
boolean deprecated | ||
} | ||
NamedThing { | ||
string id | ||
iri type iri | ||
uriorcurieList category | ||
stringList type | ||
label type name | ||
narrative text description | ||
boolean deprecated | ||
stringList provided_by | ||
uriorcurieList xref | ||
label type full_name | ||
label typeList synonym | ||
} | ||
TaxonomicRank { | ||
string id | ||
} | ||
OrganismTaxon { | ||
string id | ||
iri type iri | ||
uriorcurieList category | ||
stringList type | ||
label type name | ||
narrative text description | ||
boolean deprecated | ||
stringList provided_by | ||
uriorcurieList xref | ||
label type full_name | ||
label typeList synonym | ||
} | ||
InformationContentEntity { | ||
string id | ||
iri type iri | ||
uriorcurieList category | ||
stringList type | ||
label type name | ||
narrative text description | ||
boolean deprecated | ||
stringList provided_by | ||
uriorcurieList xref | ||
label type full_name | ||
label typeList synonym | ||
string license | ||
string rights | ||
string format | ||
date creation_date | ||
} | ||
Dataset { | ||
string id | ||
iri type iri | ||
uriorcurieList category | ||
stringList type | ||
label type name | ||
narrative text description | ||
boolean deprecated | ||
stringList provided_by | ||
uriorcurieList xref | ||
label type full_name | ||
label typeList synonym | ||
string license | ||
string rights | ||
string format | ||
date creation_date | ||
} | ||
PhysicalEssenceOrOccurrent { | ||
} | ||
PhysicalEssence { | ||
} | ||
PhysicalEntity { | ||
string id | ||
iri type iri | ||
uriorcurieList category | ||
stringList type | ||
label type name | ||
narrative text description | ||
boolean deprecated | ||
stringList provided_by | ||
uriorcurieList xref | ||
label type full_name | ||
label typeList synonym | ||
} | ||
Occurrent { | ||
} | ||
ActivityAndBehavior { | ||
} | ||
Activity { | ||
string id | ||
iri type iri | ||
uriorcurieList category | ||
stringList type | ||
label type name | ||
narrative text description | ||
boolean deprecated | ||
stringList provided_by | ||
uriorcurieList xref | ||
label type full_name | ||
label typeList synonym | ||
} | ||
Procedure { | ||
string id | ||
iri type iri | ||
uriorcurieList category | ||
stringList type | ||
label type name | ||
narrative text description | ||
boolean deprecated | ||
stringList provided_by | ||
uriorcurieList xref | ||
label type full_name | ||
label typeList synonym | ||
} | ||
SubjectOfInvestigation { | ||
} | ||
MaterialSample { | ||
string id | ||
iri type iri | ||
uriorcurieList category | ||
stringList type | ||
label type name | ||
narrative text description | ||
boolean deprecated | ||
stringList provided_by | ||
uriorcurieList xref | ||
label type full_name | ||
label typeList synonym | ||
} | ||
ThingWithTaxon { | ||
label type in_taxon_label | ||
} | ||
BiologicalEntity { | ||
string id | ||
iri type iri | ||
uriorcurieList category | ||
stringList type | ||
label type name | ||
narrative text description | ||
boolean deprecated | ||
stringList provided_by | ||
uriorcurieList xref | ||
label type full_name | ||
label typeList synonym | ||
label type in_taxon_label | ||
} | ||
GenomicEntity { | ||
biological sequence has_biological_sequence | ||
} | ||
ChemicalEntityOrGeneOrGeneProduct { | ||
} | ||
MacromolecularMachineMixin { | ||
label type name | ||
} | ||
GeneOrGeneProduct { | ||
label type name | ||
} | ||
Gene { | ||
string id | ||
iri type iri | ||
uriorcurieList category | ||
stringList type | ||
label type name | ||
narrative text description | ||
boolean deprecated | ||
stringList provided_by | ||
label type full_name | ||
label typeList synonym | ||
label type in_taxon_label | ||
string symbol | ||
uriorcurieList xref | ||
biological sequence has_biological_sequence | ||
} | ||
Genome { | ||
string id | ||
iri type iri | ||
uriorcurieList category | ||
stringList type | ||
label type name | ||
narrative text description | ||
boolean deprecated | ||
stringList provided_by | ||
uriorcurieList xref | ||
label type full_name | ||
label typeList synonym | ||
label type in_taxon_label | ||
biological sequence has_biological_sequence | ||
} | ||
Checksum { | ||
DigestType checksum_algorithm | ||
string value | ||
string id | ||
iri type iri | ||
uriorcurieList category | ||
stringList type | ||
label type name | ||
narrative text description | ||
boolean deprecated | ||
} | ||
Attribute ||--}o Attribute : "has attribute" | ||
Attribute ||--|| OntologyClass : "has attribute type" | ||
Attribute ||--}o QuantityValue : "has quantitative value" | ||
Attribute ||--|o NamedThing : "has qualitative value" | ||
Entity ||--}o Attribute : "has attribute" | ||
NamedThing ||--}o Attribute : "has attribute" | ||
OrganismTaxon ||--}o Attribute : "has attribute" | ||
OrganismTaxon ||--|o TaxonomicRank : "has taxonomic rank" | ||
InformationContentEntity ||--}o Attribute : "has attribute" | ||
Dataset ||--}o Attribute : "has attribute" | ||
PhysicalEntity ||--}o Attribute : "has attribute" | ||
Activity ||--}o Attribute : "has attribute" | ||
Procedure ||--}o Attribute : "has attribute" | ||
MaterialSample ||--}o Attribute : "has attribute" | ||
ThingWithTaxon ||--}o OrganismTaxon : "in taxon" | ||
BiologicalEntity ||--}o Attribute : "has attribute" | ||
BiologicalEntity ||--}o OrganismTaxon : "in taxon" | ||
Gene ||--}o Attribute : "has attribute" | ||
Gene ||--}o OrganismTaxon : "in taxon" | ||
Genome ||--}o Attribute : "has attribute" | ||
Genome ||--}o OrganismTaxon : "in taxon" | ||
Checksum ||--}o Attribute : "has attribute" | ||
``` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
```mermaid | ||
erDiagram | ||
ProvActivity { | ||
} | ||
ProvEntity { | ||
} | ||
ProvActivity ||--|o ProvEntity : "used" | ||
ProvEntity ||--|o ProvEntity : "was_derived_from" | ||
ProvEntity ||--|o ProvActivity : "was_generated_by" | ||
``` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.