-
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
c055630
commit f9a3e02
Showing
4 changed files
with
2,475 additions
and
0 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,85 @@ | ||
```mermaid | ||
erDiagram | ||
AnnotationCollection { | ||
} | ||
GenomeAssembly { | ||
string version | ||
string strain | ||
label_type in_taxon_label | ||
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 | ||
} | ||
GenomeAnnotation { | ||
string version | ||
stringList digest | ||
stringList content_url | ||
AuthorityType authority | ||
string reference_assembly | ||
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 | ||
} | ||
GeneAnnotation { | ||
string molecular_type | ||
string source_id | ||
string referenced_in | ||
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 | ||
} | ||
Checksum { | ||
DigestType checksum_algorithm | ||
string value | ||
string id | ||
iri_type iri | ||
uriorcurieList category | ||
stringList type | ||
label_type name | ||
narrative_text description | ||
boolean deprecated | ||
} | ||
AnnotationCollection ||--}o GeneAnnotation : "annotations" | ||
AnnotationCollection ||--}o GenomeAnnotation : "genome_annotations" | ||
AnnotationCollection ||--}o GenomeAssembly : "genome_assemblies" | ||
GenomeAssembly ||--}o OrganismTaxon : "in taxon" | ||
GenomeAssembly ||--}o Attribute : "has attribute" | ||
GenomeAnnotation ||--}o Attribute : "has attribute" | ||
GenomeAnnotation ||--}o OrganismTaxon : "in taxon" | ||
GeneAnnotation ||--}o Attribute : "has attribute" | ||
GeneAnnotation ||--}o OrganismTaxon : "in taxon" | ||
Checksum ||--}o Attribute : "has attribute" | ||
``` | ||
|
Oops, something went wrong.