Skip to content
Snippets Groups Projects
Commit 58f96a7e authored by Piotr Gawron's avatar Piotr Gawron
Browse files

rhea miriam identifiers are handled properly

parent d25346ff
No related branches found
No related tags found
1 merge request!345Resolve "Genes annotations don't show"
......@@ -373,6 +373,14 @@ public enum MiriamType {
"urn:miriam:refseq", //
new Class<?>[] { Protein.class, Gene.class, Rna.class }, "MIR:00000039"),
/**
* Rhea: http://www.rhea-db.org/.
*/
RHEA("Rhea", //
"http://www.rhea-db.org/", //
"urn:miriam:rhea", //
new Class<?>[] { Reaction.class }, "MIR:00000082"),
/**
* SGD: http://www.yeastgenome.org/.
*/
......@@ -494,7 +502,7 @@ public enum MiriamType {
private String commonName;
/**
* url to homepage of given resource type.
* url to home page of given resource type.
*/
private String dbHomepage;
......@@ -504,9 +512,9 @@ public enum MiriamType {
private String registryIdentifier;
/**
* Valid uris to this resource.
* Valid URIs to this resource.
*/
private List<String> uris = new ArrayList<String>();
private List<String> uris = new ArrayList<>();
/**
* Classes that can be annotated by this resource.
......@@ -523,7 +531,7 @@ public enum MiriamType {
* Constructor that initialize enum object.
*
* @param dbHomePage
* homepage of the resource {@link #dbHomepage}
* home page of the resource {@link #dbHomepage}
* @param commonName
* {@link #commonName}
* @param uris
......@@ -541,7 +549,7 @@ public enum MiriamType {
* Constructor that initialize enum object.
*
* @param dbHomePage
* homepage of the resource {@link #dbHomepage}
* home page of the resource {@link #dbHomepage}
* @param commonName
* {@link #commonName}
* @param uris
......@@ -573,7 +581,7 @@ public enum MiriamType {
* Constructor that initialize enum object.
*
* @param dbHomePage
* homepage of the resource {@link #dbHomepage}
* home page of the resource {@link #dbHomepage}
* @param commonName
* {@link #commonName}
* @param uri
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment