biointerchange 0.2.1 → 0.2.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (49) hide show
  1. data/README.md +61 -18
  2. data/VERSION +1 -1
  3. data/examples/Saccharomyces_cerevisiae_incl_consequences.gvf.gz +0 -0
  4. data/examples/webservice_example.json +7 -0
  5. data/generators/GOxrefify.rb +36 -28
  6. data/generators/javaify.rb +131 -112
  7. data/generators/make_supplement_releases.rb +57 -0
  8. data/generators/pythonify.rb +68 -53
  9. data/lib/biointerchange/core.rb +4 -2
  10. data/lib/biointerchange/faldo.rb +160 -0
  11. data/lib/biointerchange/genomics/gff3_feature_set.rb +1 -1
  12. data/lib/biointerchange/genomics/gff3_rdf_ntriples.rb +1 -1
  13. data/lib/biointerchange/genomics/gff3_reader.rb +1 -1
  14. data/lib/biointerchange/model.rb +21 -0
  15. data/lib/biointerchange/registry.rb +1 -1
  16. data/lib/biointerchange/sio.rb +2035 -57
  17. data/lib/biointerchange/textmining/document.rb +1 -1
  18. data/lib/biointerchange/textmining/pdfx_xml_reader.rb +1 -15
  19. data/lib/biointerchange/textmining/pubannos_json_reader.rb +1 -3
  20. data/spec/gff3_rdfwriter_spec.rb +1 -0
  21. data/spec/gvf_rdfwriter_spec.rb +1 -0
  22. data/spec/text_mining_pdfx_xml_reader_spec.rb +4 -3
  23. data/spec/text_mining_pubannos_json_reader_spec.rb +6 -5
  24. data/spec/text_mining_rdfwriter_spec.rb +2 -1
  25. data/supplemental/java/biointerchange/pom.xml +1 -1
  26. data/supplemental/java/biointerchange/src/main/java/org/biointerchange/vocabulary/FALDO.java +219 -0
  27. data/supplemental/java/biointerchange/src/main/java/org/biointerchange/vocabulary/GFF3O.java +2 -1
  28. data/supplemental/java/biointerchange/src/main/java/org/biointerchange/vocabulary/GOXRef.java +1221 -0
  29. data/supplemental/java/biointerchange/src/main/java/org/biointerchange/vocabulary/GVF1O.java +2 -1
  30. data/supplemental/java/biointerchange/src/main/java/org/biointerchange/vocabulary/SIO.java +2283 -15
  31. data/supplemental/java/biointerchange/src/main/java/org/biointerchange/vocabulary/SO.java +2 -1
  32. data/supplemental/java/biointerchange/src/main/java/org/biointerchange/vocabulary/SOFA.java +5 -4
  33. data/supplemental/python/biointerchange/faldo.py +168 -0
  34. data/supplemental/python/biointerchange/gff3o.py +6 -4
  35. data/supplemental/python/biointerchange/goxref.py +1040 -0
  36. data/supplemental/python/biointerchange/gvf1o.py +6 -4
  37. data/supplemental/python/biointerchange/sio.py +1740 -21
  38. data/supplemental/python/biointerchange/so.py +6527 -6525
  39. data/supplemental/python/biointerchange/sofa.py +792 -790
  40. data/supplemental/python/setup.py +2 -2
  41. data/web/about.html +9 -29
  42. data/web/api.html +10 -30
  43. data/web/biointerchange.js +78 -27
  44. data/web/cli.html +137 -0
  45. data/web/index.html +19 -34
  46. data/web/ontologies.html +9 -29
  47. data/web/service/rdfizer.fcgi +19 -2
  48. data/web/webservices.html +70 -35
  49. metadata +13 -3
@@ -1,5 +1,4 @@
1
1
  package org.biointerchange.vocabulary;
2
-
3
2
  import java.util.Arrays;
4
3
  import java.util.Map;
5
4
  import java.util.HashMap;
@@ -11,6 +10,7 @@ import com.hp.hpl.jena.rdf.model.ResourceFactory;
11
10
  import org.apache.commons.collections.CollectionUtils;
12
11
  import org.apache.commons.collections.Predicate;
13
12
 
13
+
14
14
  public class SO {
15
15
 
16
16
  /**
@@ -23998,3 +23998,4 @@ public class SO {
23998
23998
 
23999
23999
 
24000
24000
  }
24001
+
@@ -1,5 +1,4 @@
1
1
  package org.biointerchange.vocabulary;
2
-
3
2
  import java.util.Arrays;
4
3
  import java.util.Map;
5
4
  import java.util.HashMap;
@@ -11,6 +10,7 @@ import com.hp.hpl.jena.rdf.model.ResourceFactory;
11
10
  import org.apache.commons.collections.CollectionUtils;
12
11
  import org.apache.commons.collections.Predicate;
13
12
 
13
+
14
14
  public class SOFA {
15
15
 
16
16
  public static Resource adjacent_to() {
@@ -2947,10 +2947,10 @@ public class SOFA {
2947
2947
  }
2948
2948
 
2949
2949
  private static Resource _namespace_SOFA(String accession) {
2950
- if (isClass(ResourceFactory.createResource("http://purl.obolibrary.org/obo/http_//purl.org/obo/" + accession))) {
2951
- return ResourceFactory.createResource("http://purl.obolibrary.org/obo/http_//purl.org/obo/" + accession);
2950
+ if (isClass(ResourceFactory.createResource("http://purl.obolibrary.org/obo/" + accession))) {
2951
+ return ResourceFactory.createResource("http://purl.obolibrary.org/obo/" + accession);
2952
2952
  } else {
2953
- return ResourceFactory.createProperty("http://purl.obolibrary.org/obo/http_//purl.org/obo/" + accession);
2953
+ return ResourceFactory.createProperty("http://purl.obolibrary.org/obo/" + accession);
2954
2954
  }
2955
2955
  }
2956
2956
 
@@ -2966,3 +2966,4 @@ public class SOFA {
2966
2966
 
2967
2967
 
2968
2968
  }
2969
+
@@ -0,0 +1,168 @@
1
+ import rdflib
2
+
3
+ from rdflib import Namespace
4
+
5
+
6
+ class FALDO:
7
+
8
+ @classmethod
9
+ def In_between_positions(cls):
10
+ """This denotes that a feature is in between two other positions that are both known exactly and next to eaxh other. An example is an restriction enzyme cutting site. The cut is after one nucleotide and before the next i.e. in between
11
+ (cls, InBetweenPosition)
12
+ """
13
+ return _namespace_FALDO('InBetweenPosition')
14
+
15
+ @classmethod
16
+ def Position(cls):
17
+ """Superclass to group the general concept of a position on a sequence. The sequence is designated via the reference predicate.
18
+ (cls, Position)
19
+ """
20
+ return _namespace_FALDO('Position')
21
+
22
+ @classmethod
23
+ def Exact_position(cls):
24
+ """Use when you exactly know the position.
25
+ (cls, ExactPosition)
26
+ """
27
+ return _namespace_FALDO('ExactPosition')
28
+
29
+ @classmethod
30
+ def One_of_positions(cls):
31
+ """The position must be one of the more detailed Positions listed by the location predicate.
32
+ (cls, OneOfPosition)
33
+ """
34
+ return _namespace_FALDO('OneOfPosition')
35
+
36
+ @classmethod
37
+ def Indeterminate_position_within_a_range(cls):
38
+ """Use when you have an idea of the range in which you can find the position but can not be sure.
39
+ (cls, InRangePosition)
40
+ """
41
+ return _namespace_FALDO('InRangePosition')
42
+
43
+ @classmethod
44
+ def Stranded_position(cls):
45
+ """Part of the coordinate system is on which strand the feature can be found. If you do not yet know which stand the feature is on you should tag the position with just this class. If you know more you should use one of the subclasses. This means a region descibred with a '.' in GFF3. An GFF3 Unstranded position does not have this type in FALDO those are just a Position.
46
+ (cls, StrandedPosition)
47
+ """
48
+ return _namespace_FALDO('StrandedPosition')
49
+
50
+ @classmethod
51
+ def Fuzzy_position(cls):
52
+ """Use this class to indicate that you lack exact position data.
53
+ (cls, FuzzyPosition)
54
+ """
55
+ return _namespace_FALDO('FuzzyPosition')
56
+
57
+ @classmethod
58
+ def Positive_strand(cls):
59
+ """The position is on the forward (cls, positive) strand. Shown as a '+' in GFF3 and GTF
60
+ (ForwardStrandPosition)
61
+ """
62
+ return _namespace_FALDO('ForwardStrandPosition')
63
+
64
+ @classmethod
65
+ def Both_strands(cls):
66
+ """The both strands position mean that the region spans both strands instead of one. In GGF3 displayed as 0. This does not mean that the position is one or the other strand but is best described as being on both.
67
+ (cls, BothStrandsPosition)
68
+ """
69
+ return _namespace_FALDO('BothStrandsPosition')
70
+
71
+ @classmethod
72
+ def Negative_strand(cls):
73
+ """The position is on the reverse (cls, complement) strand of the sequence. Shown as '-' in GTF and GFF3
74
+ (ReverseStrandPosition)
75
+ """
76
+ return _namespace_FALDO('ReverseStrandPosition')
77
+
78
+ @classmethod
79
+ def Region(cls):
80
+ """A region describes an length of sequence with a start and end position that represents a feature on a Sequence. i.e. a gene
81
+ (cls, Region)
82
+ """
83
+ return _namespace_FALDO('Region')
84
+
85
+ @classmethod
86
+ def is_object_property(cls, uri):
87
+ """Determines whether the given URI is an object property.
88
+
89
+ uri -- URI that is tested for being an object property
90
+ """
91
+ return False
92
+
93
+ @classmethod
94
+ def is_datatype_property(cls, uri):
95
+ """Determines whether the given URI is a datatype property.
96
+
97
+ uri -- URI that is tested for being a datatype property
98
+ """
99
+ return False
100
+
101
+ @classmethod
102
+ def is_class(cls, uri):
103
+ """Determines whether the given URI is a class.
104
+
105
+ uri -- URI that is tested for being a class
106
+ """
107
+ if uri == _namespace_FALDO('InBetweenPosition'):
108
+ return True
109
+ if uri == _namespace_FALDO('Position'):
110
+ return True
111
+ if uri == _namespace_FALDO('ExactPosition'):
112
+ return True
113
+ if uri == _namespace_FALDO('OneOfPosition'):
114
+ return True
115
+ if uri == _namespace_FALDO('InRangePosition'):
116
+ return True
117
+ if uri == _namespace_FALDO('StrandedPosition'):
118
+ return True
119
+ if uri == _namespace_FALDO('FuzzyPosition'):
120
+ return True
121
+ if uri == _namespace_FALDO('ForwardStrandPosition'):
122
+ return True
123
+ if uri == _namespace_FALDO('BothStrandsPosition'):
124
+ return True
125
+ if uri == _namespace_FALDO('ReverseStrandPosition'):
126
+ return True
127
+ if uri == _namespace_FALDO('Region'):
128
+ return True
129
+ return False
130
+
131
+ @classmethod
132
+ def is_named_individual(cls, uri):
133
+ """Determines whether the given URI is a named individual.
134
+
135
+ uri -- URI that is tested for being a named individual
136
+ """
137
+ return False
138
+
139
+ @classmethod
140
+ def with_parent(cls, uris, parent):
141
+ """Returns only those URIs that fall under a designated parent URI.
142
+
143
+ uris -- Set of URIs that are tested whether they have the given parent URI.
144
+ parent -- Parent URI.
145
+ """
146
+ return filter(lambda uri: cls.has_parent(uri, parent), uris)
147
+
148
+ @classmethod
149
+ def has_parent(cls, uri, parent):
150
+ """Recursively tries to determine the parent for a given URI.
151
+
152
+ uri -- URI that is tested for whether it has the given parent URI.
153
+ parent -- Parent URI.
154
+ """
155
+ if cls.__parent_properties.has_key(uri):
156
+ if cls.__parent_properties[uri] == parent:
157
+ return True
158
+ return cls.has_parent(cls.__parent_properties[uri], parent)
159
+ return False
160
+
161
+ __namespace_FALDO = Namespace('http://biohackathon.org/resource/faldo#')
162
+
163
+ def _namespace_FALDO(accession):
164
+ return __namespace_FALDO[accession]
165
+
166
+ __parent_properties = { _namespace_FALDO('OneOfPosition') : _namespace_FALDO('FuzzyPosition') , _namespace_FALDO('StrandedPosition') : _namespace_FALDO('Position') , _namespace_FALDO('FuzzyPosition') : _namespace_FALDO('Position') , _namespace_FALDO('ForwardStrandPosition') : _namespace_FALDO('StrandedPosition') , _namespace_FALDO('BothStrandsPosition') : _namespace_FALDO('StrandedPosition') , _namespace_FALDO('ReverseStrandPosition') : _namespace_FALDO('StrandedPosition') }
167
+
168
+
@@ -2,10 +2,6 @@ import rdflib
2
2
 
3
3
  from rdflib import Namespace
4
4
 
5
- __namespace_GFF3O = Namespace('http://www.biointerchange.org/gff3o#')
6
-
7
- def _namespace_GFF3O(accession):
8
- return __namespace_GFF3O[accession]
9
5
 
10
6
  class GFF3O:
11
7
 
@@ -517,5 +513,11 @@ class GFF3O:
517
513
  return cls.has_parent(cls.__parent_properties[uri], parent)
518
514
  return False
519
515
 
516
+ __namespace_GFF3O = Namespace('http://www.biointerchange.org/gff3o#')
517
+
518
+ def _namespace_GFF3O(accession):
519
+ return __namespace_GFF3O[accession]
520
+
520
521
  __parent_properties = { _namespace_GFF3O('GFF3_0004') : _namespace_GFF3O('GFF3_0026') , _namespace_GFF3O('GFF3_0010') : _namespace_GFF3O('GFF3_0026') , _namespace_GFF3O('GFF3_0012') : _namespace_GFF3O('GFF3_0026') , _namespace_GFF3O('GFF3_0014') : _namespace_GFF3O('GFF3_0026') , _namespace_GFF3O('GFF3_0015') : _namespace_GFF3O('GFF3_0025') , _namespace_GFF3O('GFF3_0021') : _namespace_GFF3O('GFF3_0026') , _namespace_GFF3O('GFF3_0023') : _namespace_GFF3O('GFF3_0025') , _namespace_GFF3O('GFF3_0039') : _namespace_GFF3O('GFF3_0026') , _namespace_GFF3O('GFF3_0045') : _namespace_GFF3O('GFF3_0044') , _namespace_GFF3O('GFF3_0047') : _namespace_GFF3O('GFF3_0026') , _namespace_GFF3O('GFF3_0050') : _namespace_GFF3O('GFF3_0044') , _namespace_GFF3O('GFF3_0056') : _namespace_GFF3O('GFF3_0025') , _namespace_GFF3O('GFF3_0005') : _namespace_GFF3O('GFF3_0028') , _namespace_GFF3O('GFF3_0006') : _namespace_GFF3O('GFF3_0028') , _namespace_GFF3O('GFF3_0007') : _namespace_GFF3O('GFF3_0028') , _namespace_GFF3O('GFF3_0008') : _namespace_GFF3O('GFF3_0028') , _namespace_GFF3O('GFF3_0009') : _namespace_GFF3O('GFF3_0028') , _namespace_GFF3O('GFF3_0011') : _namespace_GFF3O('GFF3_0028') , _namespace_GFF3O('GFF3_0013') : _namespace_GFF3O('GFF3_0029') , _namespace_GFF3O('GFF3_0022') : _namespace_GFF3O('GFF3_0027') , _namespace_GFF3O('GFF3_0024') : _namespace_GFF3O('GFF3_0027') , _namespace_GFF3O('GFF3_0034') : _namespace_GFF3O('GFF3_0028') , _namespace_GFF3O('GFF3_0035') : _namespace_GFF3O('GFF3_0028') , _namespace_GFF3O('GFF3_0036') : _namespace_GFF3O('GFF3_0028') , _namespace_GFF3O('GFF3_0037') : _namespace_GFF3O('GFF3_0028') , _namespace_GFF3O('GFF3_0041') : _namespace_GFF3O('GFF3_0040') , _namespace_GFF3O('GFF3_0042') : _namespace_GFF3O('GFF3_0040') , _namespace_GFF3O('GFF3_0043') : _namespace_GFF3O('GFF3_0040') , _namespace_GFF3O('GFF3_0046') : _namespace_GFF3O('GFF3_0028') , _namespace_GFF3O('GFF3_0048') : _namespace_GFF3O('GFF3_0028') , _namespace_GFF3O('GFF3_0049') : _namespace_GFF3O('GFF3_0028') , _namespace_GFF3O('GFF3_0053') : _namespace_GFF3O('GFF3_0052') , _namespace_GFF3O('GFF3_0054') : _namespace_GFF3O('GFF3_0052') , _namespace_GFF3O('GFF3_0055') : _namespace_GFF3O('GFF3_0052') , _namespace_GFF3O('GFF3_0057') : _namespace_GFF3O('GFF3_0028') , _namespace_GFF3O('GFF3_0058') : _namespace_GFF3O('GFF3_0052') }
521
522
 
523
+
@@ -0,0 +1,1040 @@
1
+ import rdflib
2
+
3
+ from rdflib import Namespace
4
+
5
+
6
+ class GOXRef:
7
+
8
+ @classmethod
9
+ def AGI_LocusCode(cls):
10
+ """Returns the link-out URI for objects of "Arabidopsis Genome Initiative".
11
+ """
12
+ RDF::URI.new("http://arabidopsis.org/servlets/TairObject?type=locus&name=")
13
+
14
+ @classmethod
15
+ def ApiDB_PlasmoDB(cls):
16
+ """Returns the link-out URI for objects of "PlasmoDB Plasmodium Genome Resource".
17
+ """
18
+ RDF::URI.new("http://www.plasmodb.org/gene/")
19
+
20
+ @classmethod
21
+ def AraCyc(cls):
22
+ """Returns the link-out URI for objects of "AraCyc metabolic pathway database for Arabidopsis thaliana".
23
+ """
24
+ RDF::URI.new("http://www.arabidopsis.org:1555/ARA/NEW-IMAGE?type=NIL&object=")
25
+
26
+ @classmethod
27
+ def ASAP(cls):
28
+ """Returns the link-out URI for objects of "A Systematic Annotation Package for Community Analysis of Genomes".
29
+ """
30
+ RDF::URI.new("https://asap.ahabs.wisc.edu/annotation/php/feature_info.php?FeatureID=")
31
+
32
+ @classmethod
33
+ def AspGD(cls):
34
+ """Returns the link-out URI for objects of "Aspergillus Genome Database".
35
+ """
36
+ RDF::URI.new("http://www.aspergillusgenome.org/cgi-bin/locus.pl?dbid=")
37
+
38
+ @classmethod
39
+ def AspGD_LOCUS(cls):
40
+ """Returns the link-out URI for objects of "Aspergillus Genome Database".
41
+ """
42
+ RDF::URI.new("http://www.aspergillusgenome.org/cgi-bin/locus.pl?locus=")
43
+
44
+ @classmethod
45
+ def AspGD_REF(cls):
46
+ """Returns the link-out URI for objects of "Aspergillus Genome Database".
47
+ """
48
+ RDF::URI.new("http://www.aspergillusgenome.org/cgi-bin/reference/reference.pl?dbid=")
49
+
50
+ @classmethod
51
+ def BFO(cls):
52
+ """Returns the link-out URI for objects of "Basic Formal Ontology".
53
+ """
54
+ RDF::URI.new("http://purl.obolibrary.org/obo/BFO_")
55
+
56
+ @classmethod
57
+ def BioCyc(cls):
58
+ """Returns the link-out URI for objects of "BioCyc collection of metabolic pathway databases".
59
+ """
60
+ RDF::URI.new("http://biocyc.org/META/NEW-IMAGE?type=PATHWAY&object=")
61
+
62
+ @classmethod
63
+ def BIOMD(cls):
64
+ """Returns the link-out URI for objects of "BioModels Database".
65
+ """
66
+ RDF::URI.new("http://www.ebi.ac.uk/compneur-srv/biomodels-main/publ-model.do?mid=")
67
+
68
+ @classmethod
69
+ def BRENDA(cls):
70
+ """Returns the link-out URI for objects of "BRENDA, The Comprehensive Enzyme Information System".
71
+ """
72
+ RDF::URI.new("http://www.brenda-enzymes.info/php/result_flat.php4?ecno=")
73
+
74
+ @classmethod
75
+ def Broad_MGG(cls):
76
+ """Returns the link-out URI for objects of "Magnaporthe grisea Database".
77
+ """
78
+ RDF::URI.new("http://www.broad.mit.edu/annotation/genome/magnaporthe_grisea/GeneLocus.html?sp=S")
79
+
80
+ @classmethod
81
+ def CASGEN(cls):
82
+ """Returns the link-out URI for objects of "Catalog of Fishes genus database".
83
+ """
84
+ RDF::URI.new("http://research.calacademy.org/research/ichthyology/catalog/getname.asp?rank=Genus&id=")
85
+
86
+ @classmethod
87
+ def CASREF(cls):
88
+ """Returns the link-out URI for objects of "Catalog of Fishes publications database".
89
+ """
90
+ RDF::URI.new("http://research.calacademy.org/research/ichthyology/catalog/getref.asp?id=")
91
+
92
+ @classmethod
93
+ def CASSPC(cls):
94
+ """Returns the link-out URI for objects of "Catalog of Fishes species database".
95
+ """
96
+ RDF::URI.new("http://research.calacademy.org/research/ichthyology/catalog/getname.asp?rank=Species&id=1979")
97
+
98
+ @classmethod
99
+ def CDD(cls):
100
+ """Returns the link-out URI for objects of "Conserved Domain Database at NCBI".
101
+ """
102
+ RDF::URI.new("http://www.ncbi.nlm.nih.gov/Structure/cdd/cddsrv.cgi?uid=")
103
+
104
+ @classmethod
105
+ def CGD(cls):
106
+ """Returns the link-out URI for objects of "Candida Genome Database".
107
+ """
108
+ RDF::URI.new("http://www.candidagenome.org/cgi-bin/locus.pl?dbid=")
109
+
110
+ @classmethod
111
+ def CGD_LOCUS(cls):
112
+ """Returns the link-out URI for objects of "Candida Genome Database".
113
+ """
114
+ RDF::URI.new("http://www.candidagenome.org/cgi-bin/locus.pl?locus=")
115
+
116
+ @classmethod
117
+ def CGD_REF(cls):
118
+ """Returns the link-out URI for objects of "Candida Genome Database".
119
+ """
120
+ RDF::URI.new("http://www.candidagenome.org/cgi-bin/reference/reference.pl?dbid=")
121
+
122
+ @classmethod
123
+ def CHEBI(cls):
124
+ """Returns the link-out URI for objects of "Chemical Entities of Biological Interest".
125
+ """
126
+ RDF::URI.new("http://www.ebi.ac.uk/chebi/searchId.do?chebiId=CHEBI:")
127
+
128
+ @classmethod
129
+ def CL(cls):
130
+ """Returns the link-out URI for objects of "Cell Type Ontology".
131
+ """
132
+ RDF::URI.new("http://purl.obolibrary.org/obo/CL_")
133
+
134
+ @classmethod
135
+ def COG_Cluster(cls):
136
+ """Returns the link-out URI for objects of "NCBI COG cluster".
137
+ """
138
+ RDF::URI.new("http://www.ncbi.nlm.nih.gov/COG/new/release/cow.cgi?cog=")
139
+
140
+ @classmethod
141
+ def COG_Function(cls):
142
+ """Returns the link-out URI for objects of "NCBI COG function".
143
+ """
144
+ RDF::URI.new("http://www.ncbi.nlm.nih.gov/COG/grace/shokog.cgi?fun=")
145
+
146
+ @classmethod
147
+ def COG_Pathway(cls):
148
+ """Returns the link-out URI for objects of "NCBI COG pathway".
149
+ """
150
+ RDF::URI.new("http://www.ncbi.nlm.nih.gov/COG/new/release/coglist.cgi?pathw=")
151
+
152
+ @classmethod
153
+ def CORUM(cls):
154
+ """Returns the link-out URI for objects of "CORUM - the Comprehensive Resource of Mammalian protein complexes".
155
+ """
156
+ RDF::URI.new("http://mips.gsf.de/genre/proj/corum/complexdetails.html?id=")
157
+
158
+ @classmethod
159
+ def dbSNP(cls):
160
+ """Returns the link-out URI for objects of "NCBI dbSNP".
161
+ """
162
+ RDF::URI.new("http://www.ncbi.nlm.nih.gov/projects/SNP/snp_ref.cgi?rs=")
163
+
164
+ @classmethod
165
+ def DDBJ(cls):
166
+ """Returns the link-out URI for objects of "DNA Databank of Japan".
167
+ """
168
+ RDF::URI.new("http://arsa.ddbj.nig.ac.jp/arsa/ddbjSplSearch?KeyWord=")
169
+
170
+ @classmethod
171
+ def dictyBase(cls):
172
+ """Returns the link-out URI for objects of "dictyBase".
173
+ """
174
+ RDF::URI.new("http://dictybase.org/gene/")
175
+
176
+ @classmethod
177
+ def dictyBase_gene_name(cls):
178
+ """Returns the link-out URI for objects of "dictyBase".
179
+ """
180
+ RDF::URI.new("http://dictybase.org/gene/")
181
+
182
+ @classmethod
183
+ def dictyBase_REF(cls):
184
+ """Returns the link-out URI for objects of "dictyBase literature references".
185
+ """
186
+ RDF::URI.new("http://dictybase.org/db/cgi-bin/dictyBase/reference/reference.pl?refNo=")
187
+
188
+ @classmethod
189
+ def DOI(cls):
190
+ """Returns the link-out URI for objects of "Digital Object Identifier".
191
+ """
192
+ RDF::URI.new("http://dx.doi.org/DOI:")
193
+
194
+ @classmethod
195
+ def EC(cls):
196
+ """Returns the link-out URI for objects of "Enzyme Commission".
197
+ """
198
+ RDF::URI.new("http://www.expasy.org/enzyme/")
199
+
200
+ @classmethod
201
+ def EchoBASE(cls):
202
+ """Returns the link-out URI for objects of "EchoBASE post-genomic database for Escherichia coli".
203
+ """
204
+ RDF::URI.new("http://www.biolws1.york.ac.uk/echobase/Gene.cfm?recordID=")
205
+
206
+ @classmethod
207
+ def ECK(cls):
208
+ """Returns the link-out URI for objects of "EcoGene Database of Escherichia coli Sequence and Function".
209
+ """
210
+ RDF::URI.new("http://www.ecogene.org/geneInfo.php?eck_id=")
211
+
212
+ @classmethod
213
+ def EcoCyc(cls):
214
+ """Returns the link-out URI for objects of "Encyclopedia of E. coli metabolism".
215
+ """
216
+ RDF::URI.new("http://biocyc.org/ECOLI/NEW-IMAGE?type=PATHWAY&object=")
217
+
218
+ @classmethod
219
+ def EcoCyc_REF(cls):
220
+ """Returns the link-out URI for objects of "Encyclopedia of E. coli metabolism".
221
+ """
222
+ RDF::URI.new("http://biocyc.org/ECOLI/reference.html?type=CITATION-FRAME&object=")
223
+
224
+ @classmethod
225
+ def ECOGENE(cls):
226
+ """Returns the link-out URI for objects of "EcoGene Database of Escherichia coli Sequence and Function".
227
+ """
228
+ RDF::URI.new("http://www.ecogene.org/geneInfo.php?eg_id=")
229
+
230
+ @classmethod
231
+ def EMBL(cls):
232
+ """Returns the link-out URI for objects of "EMBL Nucleotide Sequence Database".
233
+ """
234
+ RDF::URI.new("http://www.ebi.ac.uk/cgi-bin/emblfetch?style=html&Submit=Go&id=")
235
+
236
+ @classmethod
237
+ def ENA(cls):
238
+ """Returns the link-out URI for objects of "European Nucleotide Archive".
239
+ """
240
+ RDF::URI.new("http://www.ebi.ac.uk/ena/data/view/")
241
+
242
+ @classmethod
243
+ def ENSEMBL(cls):
244
+ """Returns the link-out URI for objects of "Ensembl database of automatically annotated genomic data".
245
+ """
246
+ RDF::URI.new("http://www.ensembl.org/id/")
247
+
248
+ @classmethod
249
+ def ENSEMBL_GeneID(cls):
250
+ """Returns the link-out URI for objects of "Ensembl database of automatically annotated genomic data".
251
+ """
252
+ RDF::URI.new("http://www.ensembl.org/id/")
253
+
254
+ @classmethod
255
+ def ENSEMBL_ProteinID(cls):
256
+ """Returns the link-out URI for objects of "Ensembl database of automatically annotated genomic data".
257
+ """
258
+ RDF::URI.new("http://www.ensembl.org/id/")
259
+
260
+ @classmethod
261
+ def ENSEMBL_TranscriptID(cls):
262
+ """Returns the link-out URI for objects of "Ensembl database of automatically annotated genomic data".
263
+ """
264
+ RDF::URI.new("http://www.ensembl.org/id/")
265
+
266
+ @classmethod
267
+ def ENZYME(cls):
268
+ """Returns the link-out URI for objects of "Swiss Institute of Bioinformatics enzyme database".
269
+ """
270
+ RDF::URI.new("http://www.expasy.ch/cgi-bin/nicezyme.pl?")
271
+
272
+ @classmethod
273
+ def FBbt(cls):
274
+ """Returns the link-out URI for objects of "Drosophila gross anatomy".
275
+ """
276
+ RDF::URI.new("http://flybase.org/cgi-bin/fbcvq.html?query=FBbt:")
277
+
278
+ @classmethod
279
+ def GDB(cls):
280
+ """Returns the link-out URI for objects of "Human Genome Database".
281
+ """
282
+ RDF::URI.new("http://www.gdb.org/gdb-bin/genera/accno?accessionNum=GDB:")
283
+
284
+ @classmethod
285
+ def GenBank(cls):
286
+ """Returns the link-out URI for objects of "GenBank".
287
+ """
288
+ RDF::URI.new("http://www.ncbi.nlm.nih.gov/entrez/viewer.fcgi?db=nucleotide&val=")
289
+
290
+ @classmethod
291
+ def Gene3D(cls):
292
+ """Returns the link-out URI for objects of "Domain Architecture Classification".
293
+ """
294
+ RDF::URI.new("http://gene3d.biochem.ucl.ac.uk/superfamily/?accession=")
295
+
296
+ @classmethod
297
+ def GeneDB_Gmorsitans(cls):
298
+ """Returns the link-out URI for objects of "Glossina morsitans GeneDB".
299
+ """
300
+ RDF::URI.new("http://www.genedb.org/genedb/Search?organism=glossina&name=")
301
+
302
+ @classmethod
303
+ def GeneDB_Lmajor(cls):
304
+ """Returns the link-out URI for objects of "Leishmania major GeneDB".
305
+ """
306
+ RDF::URI.new("http://www.genedb.org/genedb/Search?organism=leish&name=")
307
+
308
+ @classmethod
309
+ def GeneDB_Pfalciparum(cls):
310
+ """Returns the link-out URI for objects of "Plasmodium falciparum GeneDB".
311
+ """
312
+ RDF::URI.new("http://www.genedb.org/genedb/Search?organism=malaria&name=")
313
+
314
+ @classmethod
315
+ def GeneDB_Spombe(cls):
316
+ """Returns the link-out URI for objects of "Schizosaccharomyces pombe GeneDB".
317
+ """
318
+ RDF::URI.new("http://old.genedb.org/genedb/Search?organism=pombe&name=")
319
+
320
+ @classmethod
321
+ def GeneDB_Tbrucei(cls):
322
+ """Returns the link-out URI for objects of "Trypanosoma brucei GeneDB".
323
+ """
324
+ RDF::URI.new("http://www.genedb.org/genedb/Search?organism=tryp&name=")
325
+
326
+ @classmethod
327
+ def GEO(cls):
328
+ """Returns the link-out URI for objects of "NCBI Gene Expression Omnibus".
329
+ """
330
+ RDF::URI.new("http://www.ncbi.nlm.nih.gov/sites/GDSbrowser?acc=")
331
+
332
+ @classmethod
333
+ def GO(cls):
334
+ """Returns the link-out URI for objects of "Gene Ontology Database".
335
+ """
336
+ RDF::URI.new("http://amigo.geneontology.org/cgi-bin/amigo/term-details.cgi?term=GO:")
337
+
338
+ @classmethod
339
+ def GO_REF(cls):
340
+ """Returns the link-out URI for objects of "Gene Ontology Database references".
341
+ """
342
+ RDF::URI.new("http://www.geneontology.org/cgi-bin/references.cgi#GO_REF:")
343
+
344
+ @classmethod
345
+ def GONUTS(cls):
346
+ """Returns the link-out URI for objects of "Gene Ontology Normal Usage Tracking System (cls, GONUTS)".
347
+ """
348
+ RDF::URI.new("http://gowiki.tamu.edu/wiki/index.php/")
349
+
350
+ @classmethod
351
+ def GR(cls):
352
+ """Returns the link-out URI for objects of "Gramene: A Comparative Mapping Resource for Grains".
353
+ """
354
+ RDF::URI.new("http://www.gramene.org/db/searches/browser?search_type=All&RGN=on&query=")
355
+
356
+ @classmethod
357
+ def GR_GENE(cls):
358
+ """Returns the link-out URI for objects of "Gramene: A Comparative Mapping Resource for Grains".
359
+ """
360
+ RDF::URI.new("http://www.gramene.org/db/genes/search_gene?acc=")
361
+
362
+ @classmethod
363
+ def GR_PROTEIN(cls):
364
+ """Returns the link-out URI for objects of "Gramene: A Comparative Mapping Resource for Grains".
365
+ """
366
+ RDF::URI.new("http://www.gramene.org/db/protein/protein_search?acc=")
367
+
368
+ @classmethod
369
+ def GR_QTL(cls):
370
+ """Returns the link-out URI for objects of "Gramene: A Comparative Mapping Resource for Grains".
371
+ """
372
+ RDF::URI.new("http://www.gramene.org/db/qtl/qtl_display?qtl_accession_id=")
373
+
374
+ @classmethod
375
+ def GR_REF(cls):
376
+ """Returns the link-out URI for objects of "Gramene: A Comparative Mapping Resource for Grains".
377
+ """
378
+ RDF::URI.new("http://www.gramene.org/db/literature/pub_search?ref_id=")
379
+
380
+ @classmethod
381
+ def H_invDB_cDNA(cls):
382
+ """Returns the link-out URI for objects of "H-invitational Database".
383
+ """
384
+ RDF::URI.new("http://www.h-invitational.jp/hinv/spsoup/transcript_view?acc_id=")
385
+
386
+ @classmethod
387
+ def H_invDB_locus(cls):
388
+ """Returns the link-out URI for objects of "H-invitational Database".
389
+ """
390
+ RDF::URI.new("http://www.h-invitational.jp/hinv/spsoup/locus_view?hix_id=")
391
+
392
+ @classmethod
393
+ def HAMAP(cls):
394
+ """Returns the link-out URI for objects of "High-quality Automated and Manual Annotation of microbial Proteomes".
395
+ """
396
+ RDF::URI.new("http://us.expasy.org/unirules/")
397
+
398
+ @classmethod
399
+ def HGNC(cls):
400
+ """Returns the link-out URI for objects of "HUGO Gene Nomenclature Committee".
401
+ """
402
+ RDF::URI.new("http://www.genenames.org/data/hgnc_data.php?hgnc_id=HGNC:")
403
+
404
+ @classmethod
405
+ def HGNC_gene(cls):
406
+ """Returns the link-out URI for objects of "HUGO Gene Nomenclature Committee".
407
+ """
408
+ RDF::URI.new("http://www.genenames.org/data/hgnc_data.php?app_sym=")
409
+
410
+ @classmethod
411
+ def HPA(cls):
412
+ """Returns the link-out URI for objects of "Human Protein Atlas tissue profile information".
413
+ """
414
+ RDF::URI.new("http://www.proteinatlas.org/tissue_profile.php?antibody_id=")
415
+
416
+ @classmethod
417
+ def HPA_antibody(cls):
418
+ """Returns the link-out URI for objects of "Human Protein Atlas antibody information".
419
+ """
420
+ RDF::URI.new("http://www.proteinatlas.org/antibody_info.php?antibody_id=")
421
+
422
+ @classmethod
423
+ def IMG(cls):
424
+ """Returns the link-out URI for objects of "Integrated Microbial Genomes; JGI web site for genome annotation".
425
+ """
426
+ RDF::URI.new("http://img.jgi.doe.gov/cgi-bin/pub/main.cgi?section=GeneDetail&page=geneDetail&gene_oid=")
427
+
428
+ @classmethod
429
+ def IntAct(cls):
430
+ """Returns the link-out URI for objects of "IntAct protein interaction database".
431
+ """
432
+ RDF::URI.new("http://www.ebi.ac.uk/intact/search/do/search?searchString=")
433
+
434
+ @classmethod
435
+ def InterPro(cls):
436
+ """Returns the link-out URI for objects of "InterPro database of protein domains and motifs".
437
+ """
438
+ RDF::URI.new("http://www.ebi.ac.uk/interpro/IEntry?ac=")
439
+
440
+ @classmethod
441
+ def ISBN(cls):
442
+ """Returns the link-out URI for objects of "International Standard Book Number".
443
+ """
444
+ RDF::URI.new("http://my.linkbaton.com/get?lbCC=q&nC=q&genre=book&item=")
445
+
446
+ @classmethod
447
+ def IUPHAR_GPCR(cls):
448
+ """Returns the link-out URI for objects of "International Union of Pharmacology".
449
+ """
450
+ RDF::URI.new("http://www.iuphar-db.org/DATABASE/FamilyMenuForward?familyId=")
451
+
452
+ @classmethod
453
+ def IUPHAR_RECEPTOR(cls):
454
+ """Returns the link-out URI for objects of "International Union of Pharmacology".
455
+ """
456
+ RDF::URI.new("http://www.iuphar-db.org/DATABASE/ObjectDisplayForward?objectId=")
457
+
458
+ @classmethod
459
+ def JCVI_CMR(cls):
460
+ """Returns the link-out URI for objects of "Comprehensive Microbial Resource at the J. Craig Venter Institute".
461
+ """
462
+ RDF::URI.new("http://cmr.jcvi.org/cgi-bin/CMR/shared/GenePage.cgi?locus=")
463
+
464
+ @classmethod
465
+ def JCVI_EGAD(cls):
466
+ """Returns the link-out URI for objects of "Comprehensive Microbial Resource at the J. Craig Venter Institute".
467
+ """
468
+ RDF::URI.new("http://cmr.jcvi.org/cgi-bin/CMR/EgadSearch.cgi?search_string=")
469
+
470
+ @classmethod
471
+ def JCVI_GenProp(cls):
472
+ """Returns the link-out URI for objects of "Genome Properties database at the J. Craig Venter Institute".
473
+ """
474
+ RDF::URI.new("http://cmr.jcvi.org/cgi-bin/CMR/shared/GenomePropDefinition.cgi?prop_acc=")
475
+
476
+ @classmethod
477
+ def JCVI_Medtr(cls):
478
+ """Returns the link-out URI for objects of "Medicago truncatula genome database at the J. Craig Venter Institute ".
479
+ """
480
+ RDF::URI.new("http://medicago.jcvi.org/cgi-bin/medicago/search/shared/ORF_infopage.cgi?orf=")
481
+
482
+ @classmethod
483
+ def JCVI_TIGRFAMS(cls):
484
+ """Returns the link-out URI for objects of "TIGRFAMs HMM collection at the J. Craig Venter Institute".
485
+ """
486
+ RDF::URI.new("http://search.jcvi.org/search?p&q=")
487
+
488
+ @classmethod
489
+ def JSTOR(cls):
490
+ """Returns the link-out URI for objects of "Digital archive of scholarly articles".
491
+ """
492
+ RDF::URI.new("http://www.jstor.org/stable/")
493
+
494
+ @classmethod
495
+ def KEGG_ENZYME(cls):
496
+ """Returns the link-out URI for objects of "KEGG Enzyme Database".
497
+ """
498
+ RDF::URI.new("http://www.genome.jp/dbget-bin/www_bget?ec:")
499
+
500
+ @classmethod
501
+ def KEGG_LIGAND(cls):
502
+ """Returns the link-out URI for objects of "KEGG LIGAND Database".
503
+ """
504
+ RDF::URI.new("http://www.genome.jp/dbget-bin/www_bget?cpd:")
505
+
506
+ @classmethod
507
+ def KEGG_PATHWAY(cls):
508
+ """Returns the link-out URI for objects of "KEGG Pathways Database".
509
+ """
510
+ RDF::URI.new("http://www.genome.jp/dbget-bin/www_bget?path:")
511
+
512
+ @classmethod
513
+ def KEGG_REACTION(cls):
514
+ """Returns the link-out URI for objects of "KEGG Reaction Database".
515
+ """
516
+ RDF::URI.new("http://www.genome.jp/dbget-bin/www_bget?rn:")
517
+
518
+ @classmethod
519
+ def LIFEdb(cls):
520
+ """Returns the link-out URI for objects of "LifeDB".
521
+ """
522
+ RDF::URI.new("http://www.dkfz.de/LIFEdb/LIFEdb.aspx?ID=")
523
+
524
+ @classmethod
525
+ def MA(cls):
526
+ """Returns the link-out URI for objects of "Adult Mouse Anatomical Dictionary".
527
+ """
528
+ RDF::URI.new("http://www.informatics.jax.org/searches/AMA.cgi?id=MA:")
529
+
530
+ @classmethod
531
+ def MaizeGDB(cls):
532
+ """Returns the link-out URI for objects of "MaizeGDB".
533
+ """
534
+ RDF::URI.new("http://www.maizegdb.org/cgi-bin/id_search.cgi?id=")
535
+
536
+ @classmethod
537
+ def MaizeGDB_Locus(cls):
538
+ """Returns the link-out URI for objects of "MaizeGDB".
539
+ """
540
+ RDF::URI.new("http://www.maizegdb.org/cgi-bin/displaylocusresults.cgi?term=")
541
+
542
+ @classmethod
543
+ def MEROPS(cls):
544
+ """Returns the link-out URI for objects of "MEROPS peptidase database".
545
+ """
546
+ RDF::URI.new("http://merops.sanger.ac.uk/cgi-bin/pepsum?mid=")
547
+
548
+ @classmethod
549
+ def MEROPS_fam(cls):
550
+ """Returns the link-out URI for objects of "MEROPS peptidase database".
551
+ """
552
+ RDF::URI.new("http://merops.sanger.ac.uk/cgi-bin/famsum?family=")
553
+
554
+ @classmethod
555
+ def MeSH(cls):
556
+ """Returns the link-out URI for objects of "Medical Subject Headings".
557
+ """
558
+ RDF::URI.new("http://www.nlm.nih.gov/cgi/mesh/2005/MB_cgi?mode=&term=")
559
+
560
+ @classmethod
561
+ def MetaCyc(cls):
562
+ """Returns the link-out URI for objects of "Metabolic Encyclopedia of metabolic and other pathways".
563
+ """
564
+ RDF::URI.new("http://biocyc.org/META/NEW-IMAGE?type=NIL&object=")
565
+
566
+ @classmethod
567
+ def MGI(cls):
568
+ """Returns the link-out URI for objects of "Mouse Genome Informatics".
569
+ """
570
+ RDF::URI.new("http://www.informatics.jax.org/accession/")
571
+
572
+ @classmethod
573
+ def MIPS_funcat(cls):
574
+ """Returns the link-out URI for objects of "MIPS Functional Catalogue".
575
+ """
576
+ RDF::URI.new("http://mips.gsf.de/cgi-bin/proj/funcatDB/search_advanced.pl?action=2&wert=")
577
+
578
+ @classmethod
579
+ def MO(cls):
580
+ """Returns the link-out URI for objects of "MGED Ontology".
581
+ """
582
+ RDF::URI.new("http://mged.sourceforge.net/ontologies/MGEDontology.php#")
583
+
584
+ @classmethod
585
+ def ModBase(cls):
586
+ """Returns the link-out URI for objects of "ModBase comprehensive Database of Comparative Protein Structure Models".
587
+ """
588
+ RDF::URI.new("http://salilab.org/modbase/searchbyid?databaseID=")
589
+
590
+ @classmethod
591
+ def NASC_code(cls):
592
+ """Returns the link-out URI for objects of "Nottingham Arabidopsis Stock Centre Seeds Database".
593
+ """
594
+ RDF::URI.new("http://seeds.nottingham.ac.uk/NASC/stockatidb.lasso?code=")
595
+
596
+ @classmethod
597
+ def NCBI_Gene(cls):
598
+ """Returns the link-out URI for objects of "NCBI Gene".
599
+ """
600
+ RDF::URI.new("http://www.ncbi.nlm.nih.gov/sites/entrez?cmd=Retrieve&db=gene&list_uids=")
601
+
602
+ @classmethod
603
+ def NCBI_gi(cls):
604
+ """Returns the link-out URI for objects of "NCBI databases".
605
+ """
606
+ RDF::URI.new("http://www.ncbi.nlm.nih.gov/entrez/viewer.fcgi?val=")
607
+
608
+ @classmethod
609
+ def NCBI_GP(cls):
610
+ """Returns the link-out URI for objects of "NCBI GenPept".
611
+ """
612
+ RDF::URI.new("http://www.ncbi.nlm.nih.gov/entrez/viewer.fcgi?db=protein&val=")
613
+
614
+ @classmethod
615
+ def NIF_Subcellular(cls):
616
+ """Returns the link-out URI for objects of "Neuroscience Information Framework standard ontology, subcellular hierarchy".
617
+ """
618
+ RDF::URI.new("http://www.neurolex.org/wiki/")
619
+
620
+ @classmethod
621
+ def NMPDR(cls):
622
+ """Returns the link-out URI for objects of "National Microbial Pathogen Data Resource".
623
+ """
624
+ RDF::URI.new("http://www.nmpdr.org/linkin.cgi?id=")
625
+
626
+ @classmethod
627
+ def OMIM(cls):
628
+ """Returns the link-out URI for objects of "Mendelian Inheritance in Man".
629
+ """
630
+ RDF::URI.new("http://omim.org/entry/")
631
+
632
+ @classmethod
633
+ def PAMGO_GAT(cls):
634
+ """Returns the link-out URI for objects of "Genome Annotation Tool (cls, Agrobacterium tumefaciens C58); PAMGO Interest Group".
635
+ """
636
+ RDF::URI.new("http://agro.vbi.vt.edu/public/servlet/GeneEdit?&Search=Search&level=2&genename=")
637
+
638
+ @classmethod
639
+ def PAMGO_MGG(cls):
640
+ """Returns the link-out URI for objects of "Magnaporthe grisea database".
641
+ """
642
+ RDF::URI.new("http://scotland.fgl.ncsu.edu/cgi-bin/adHocQuery.cgi?adHocQuery_dbName=smeng_goannotation&Action=Data&QueryName=Functional+Categorization+of+MGG+GO+Annotation&P_KeyWord=")
643
+
644
+ @classmethod
645
+ def PAMGO_VMD(cls):
646
+ """Returns the link-out URI for objects of "Virginia Bioinformatics Institute Microbial Database".
647
+ """
648
+ RDF::URI.new("http://vmd.vbi.vt.edu/cgi-bin/browse/go_detail.cgi?gene_id=")
649
+
650
+ @classmethod
651
+ def PANTHER(cls):
652
+ """Returns the link-out URI for objects of "Protein ANalysis THrough Evolutionary Relationships".
653
+ """
654
+ RDF::URI.new("http://pantree.org/node/annotationNode.jsp?id=")
655
+
656
+ @classmethod
657
+ def PATRIC(cls):
658
+ """Returns the link-out URI for objects of "PathoSystems Resource Integration Center".
659
+ """
660
+ RDF::URI.new("http://patric.vbi.vt.edu/gene/overview.php?fid=")
661
+
662
+ @classmethod
663
+ def PDB(cls):
664
+ """Returns the link-out URI for objects of "Protein Data Bank".
665
+ """
666
+ RDF::URI.new("http://www.rcsb.org/pdb/cgi/explore.cgi?pdbId=")
667
+
668
+ @classmethod
669
+ def Pfam(cls):
670
+ """Returns the link-out URI for objects of "Pfam database of protein families".
671
+ """
672
+ RDF::URI.new("http://www.sanger.ac.uk/cgi-bin/Pfam/getacc?")
673
+
674
+ @classmethod
675
+ def PharmGKB(cls):
676
+ """Returns the link-out URI for objects of "Pharmacogenetics and Pharmacogenomics Knowledge Base".
677
+ """
678
+ RDF::URI.new("http://www.pharmgkb.org/do/serve?objId=")
679
+
680
+ @classmethod
681
+ def PIR(cls):
682
+ """Returns the link-out URI for objects of "Protein Information Resource".
683
+ """
684
+ RDF::URI.new("http://pir.georgetown.edu/cgi-bin/pirwww/nbrfget?uid=")
685
+
686
+ @classmethod
687
+ def PIRSF(cls):
688
+ """Returns the link-out URI for objects of "PIR Superfamily Classification System".
689
+ """
690
+ RDF::URI.new("http://pir.georgetown.edu/cgi-bin/ipcSF?id=")
691
+
692
+ @classmethod
693
+ def PMCID(cls):
694
+ """Returns the link-out URI for objects of "Pubmed Central".
695
+ """
696
+ RDF::URI.new("http://www.ncbi.nlm.nih.gov/sites/entrez?db=pmc&cmd=search&term=")
697
+
698
+ @classmethod
699
+ def PMID(cls):
700
+ """Returns the link-out URI for objects of "PubMed".
701
+ """
702
+ RDF::URI.new("http://www.ncbi.nlm.nih.gov/pubmed/")
703
+
704
+ @classmethod
705
+ def PO(cls):
706
+ """Returns the link-out URI for objects of "Plant Ontology Consortium Database".
707
+ """
708
+ RDF::URI.new("http://www.plantontology.org/amigo/go.cgi?action=query&view=query&search_constraint=terms&query=PO:")
709
+
710
+ @classmethod
711
+ def PO_REF(cls):
712
+ """Returns the link-out URI for objects of "Plant Ontology custom references".
713
+ """
714
+ RDF::URI.new("http://wiki.plantontology.org:8080/index.php/PO_REF:")
715
+
716
+ @classmethod
717
+ def PomBase(cls):
718
+ """Returns the link-out URI for objects of "PomBase".
719
+ """
720
+ RDF::URI.new("http://www.pombase.org/spombe/result/")
721
+
722
+ @classmethod
723
+ def PR(cls):
724
+ """Returns the link-out URI for objects of "Protein Ontology".
725
+ """
726
+ RDF::URI.new("http://www.proconsortium.org/cgi-bin/pro/entry_pro?id=PR:")
727
+
728
+ @classmethod
729
+ def PRINTS(cls):
730
+ """Returns the link-out URI for objects of "PRINTS compendium of protein fingerprints".
731
+ """
732
+ RDF::URI.new("http://www.bioinf.manchester.ac.uk/cgi-bin/dbbrowser/sprint/searchprintss.cgi?display_opts=Prints&category=None&queryform=False&regexpr=off&prints_accn=")
733
+
734
+ @classmethod
735
+ def ProDom(cls):
736
+ """Returns the link-out URI for objects of "ProDom protein domain families".
737
+ """
738
+ RDF::URI.new("http://prodom.prabi.fr/prodom/current/cgi-bin/request.pl?question=DBEN&query=")
739
+
740
+ @classmethod
741
+ def Prosite(cls):
742
+ """Returns the link-out URI for objects of "Prosite database of protein families and domains".
743
+ """
744
+ RDF::URI.new("http://www.expasy.ch/cgi-bin/prosite-search-ac?")
745
+
746
+ @classmethod
747
+ def PseudoCAP(cls):
748
+ """Returns the link-out URI for objects of "Pseudomonas Genome Project".
749
+ """
750
+ RDF::URI.new("http://v2.pseudomonas.com/getAnnotation.do?locusID=")
751
+
752
+ @classmethod
753
+ def PSI_MOD(cls):
754
+ """Returns the link-out URI for objects of "Proteomics Standards Initiative protein modification ontology".
755
+ """
756
+ RDF::URI.new("http://www.ebi.ac.uk/ontology-lookup/?termId=MOD:")
757
+
758
+ @classmethod
759
+ def PubChem_BioAssay(cls):
760
+ """Returns the link-out URI for objects of "NCBI PubChem database of bioassay records".
761
+ """
762
+ RDF::URI.new("http://pubchem.ncbi.nlm.nih.gov/assay/assay.cgi?aid=")
763
+
764
+ @classmethod
765
+ def PubChem_Compound(cls):
766
+ """Returns the link-out URI for objects of "NCBI PubChem database of chemical structures".
767
+ """
768
+ RDF::URI.new("http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?CMD=search&DB=pccompound&term=")
769
+
770
+ @classmethod
771
+ def PubChem_Substance(cls):
772
+ """Returns the link-out URI for objects of "NCBI PubChem database of chemical substances".
773
+ """
774
+ RDF::URI.new("http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?CMD=search&DB=pcsubstance&term=")
775
+
776
+ @classmethod
777
+ def Reactome(cls):
778
+ """Returns the link-out URI for objects of "Reactome - a curated knowledgebase of biological pathways".
779
+ """
780
+ RDF::URI.new("http://www.reactome.org/cgi-bin/eventbrowser_st_id?ST_ID=")
781
+
782
+ @classmethod
783
+ def RefSeq(cls):
784
+ """Returns the link-out URI for objects of "RefSeq".
785
+ """
786
+ RDF::URI.new("http://www.ncbi.nlm.nih.gov/entrez/viewer.fcgi?val=")
787
+
788
+ @classmethod
789
+ def RefSeq_NA(cls):
790
+ """Returns the link-out URI for objects of "RefSeq (cls, Nucleic Acid)".
791
+ """
792
+ RDF::URI.new("http://www.ncbi.nlm.nih.gov/entrez/viewer.fcgi?val=")
793
+
794
+ @classmethod
795
+ def RefSeq_Prot(cls):
796
+ """Returns the link-out URI for objects of "RefSeq (cls, Protein)".
797
+ """
798
+ RDF::URI.new("http://www.ncbi.nlm.nih.gov/entrez/viewer.fcgi?val=")
799
+
800
+ @classmethod
801
+ def Rfam(cls):
802
+ """Returns the link-out URI for objects of "Rfam database of RNA families".
803
+ """
804
+ RDF::URI.new("http://rfam.sanger.ac.uk/family/")
805
+
806
+ @classmethod
807
+ def RGD(cls):
808
+ """Returns the link-out URI for objects of "Rat Genome Database".
809
+ """
810
+ RDF::URI.new("http://rgd.mcw.edu/generalSearch/RgdSearch.jsp?quickSearch=1&searchKeyword=")
811
+
812
+ @classmethod
813
+ def RHEA(cls):
814
+ """Returns the link-out URI for objects of "Rhea, the Annotated Reactions Database".
815
+ """
816
+ RDF::URI.new("http://www.ebi.ac.uk/rhea/reaction.xhtml?id=")
817
+
818
+ @classmethod
819
+ def RNAmods(cls):
820
+ """Returns the link-out URI for objects of "RNA Modification Database".
821
+ """
822
+ RDF::URI.new("http://s59.cas.albany.edu/RNAmods/cgi-bin/rnashow.cgi?")
823
+
824
+ @classmethod
825
+ def RO(cls):
826
+ """Returns the link-out URI for objects of "OBO Relation Ontology Ontology".
827
+ """
828
+ RDF::URI.new("http://purl.obolibrary.org/obo/RO_")
829
+
830
+ @classmethod
831
+ def SABIO_RK(cls):
832
+ """Returns the link-out URI for objects of "SABIO Reaction Kinetics".
833
+ """
834
+ RDF::URI.new("http://sabio.villa-bosch.de/reacdetails.jsp?reactid=")
835
+
836
+ @classmethod
837
+ def SEED(cls):
838
+ """Returns the link-out URI for objects of "The SEED;".
839
+ """
840
+ RDF::URI.new("http://www.theseed.org/linkin.cgi?id=")
841
+
842
+ @classmethod
843
+ def SGD(cls):
844
+ """Returns the link-out URI for objects of "Saccharomyces Genome Database".
845
+ """
846
+ RDF::URI.new("http://db.yeastgenome.org/cgi-bin/locus.pl?dbid=")
847
+
848
+ @classmethod
849
+ def SGD_LOCUS(cls):
850
+ """Returns the link-out URI for objects of "Saccharomyces Genome Database".
851
+ """
852
+ RDF::URI.new("http://db.yeastgenome.org/cgi-bin/locus.pl?locus=")
853
+
854
+ @classmethod
855
+ def SGD_REF(cls):
856
+ """Returns the link-out URI for objects of "Saccharomyces Genome Database".
857
+ """
858
+ RDF::URI.new("http://db.yeastgenome.org/cgi-bin/reference/reference.pl?dbid=")
859
+
860
+ @classmethod
861
+ def SGN(cls):
862
+ """Returns the link-out URI for objects of "Sol Genomics Network".
863
+ """
864
+ RDF::URI.new("http://www.sgn.cornell.edu/phenome/locus_display.pl?locus_id=")
865
+
866
+ @classmethod
867
+ def SGN_ref(cls):
868
+ """Returns the link-out URI for objects of "Sol Genomics Network".
869
+ """
870
+ RDF::URI.new("http://www.sgn.cornell.edu/chado/publication.pl?pub_id=")
871
+
872
+ @classmethod
873
+ def SMART(cls):
874
+ """Returns the link-out URI for objects of "Simple Modular Architecture Research Tool".
875
+ """
876
+ RDF::URI.new("http://smart.embl-heidelberg.de/smart/do_annotation.pl?BLAST=DUMMY&DOMAIN=")
877
+
878
+ @classmethod
879
+ def SO(cls):
880
+ """Returns the link-out URI for objects of "Sequence Ontology".
881
+ """
882
+ RDF::URI.new("http://song.sourceforge.net/SOterm_tables.html#SO:")
883
+
884
+ @classmethod
885
+ def SUPERFAMILY(cls):
886
+ """Returns the link-out URI for objects of "SUPERFAMILY protein annotation database".
887
+ """
888
+ RDF::URI.new("http://supfam.cs.bris.ac.uk/SUPERFAMILY/cgi-bin/scop.cgi?ipid=SSF")
889
+
890
+ @classmethod
891
+ def Swiss_Prot(cls):
892
+ """Returns the link-out URI for objects of "UniProtKB/Swiss-Prot".
893
+ """
894
+ RDF::URI.new("http://www.uniprot.org/uniprot/")
895
+
896
+ @classmethod
897
+ def TAIR(cls):
898
+ """Returns the link-out URI for objects of "The Arabidopsis Information Resource".
899
+ """
900
+ RDF::URI.new("http://arabidopsis.org/servlets/TairObject?accession=")
901
+
902
+ @classmethod
903
+ def taxon(cls):
904
+ """Returns the link-out URI for objects of "NCBI Taxonomy".
905
+ """
906
+ RDF::URI.new("http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=")
907
+
908
+ @classmethod
909
+ def TC(cls):
910
+ """Returns the link-out URI for objects of "Transport Protein Database".
911
+ """
912
+ RDF::URI.new("http://www.tcdb.org/tcdb/index.php?tc=")
913
+
914
+ @classmethod
915
+ def TGD_LOCUS(cls):
916
+ """Returns the link-out URI for objects of "Tetrahymena Genome Database".
917
+ """
918
+ RDF::URI.new("http://db.ciliate.org/cgi-bin/locus.pl?locus=")
919
+
920
+ @classmethod
921
+ def TGD_REF(cls):
922
+ """Returns the link-out URI for objects of "Tetrahymena Genome Database".
923
+ """
924
+ RDF::URI.new("http://db.ciliate.org/cgi-bin/reference/reference.pl?dbid=")
925
+
926
+ @classmethod
927
+ def TrEMBL(cls):
928
+ """Returns the link-out URI for objects of "UniProtKB-TrEMBL protein sequence database".
929
+ """
930
+ RDF::URI.new("http://www.uniprot.org/uniprot/")
931
+
932
+ @classmethod
933
+ def UBERON(cls):
934
+ """Returns the link-out URI for objects of "Uber-anatomy ontology".
935
+ """
936
+ RDF::URI.new("http://purl.obolibrary.org/obo/UBERON_")
937
+
938
+ @classmethod
939
+ def UM_BBD_enzymeID(cls):
940
+ """Returns the link-out URI for objects of "University of Minnesota Biocatalysis/Biodegradation Database".
941
+ """
942
+ RDF::URI.new("http://umbbd.msi.umn.edu/servlets/pageservlet?ptype=ep&enzymeID=")
943
+
944
+ @classmethod
945
+ def UM_BBD_reactionID(cls):
946
+ """Returns the link-out URI for objects of "University of Minnesota Biocatalysis/Biodegradation Database".
947
+ """
948
+ RDF::URI.new("http://umbbd.msi.umn.edu/servlets/pageservlet?ptype=r&reacID=")
949
+
950
+ @classmethod
951
+ def UM_BBD_ruleID(cls):
952
+ """Returns the link-out URI for objects of "University of Minnesota Biocatalysis/Biodegradation Database".
953
+ """
954
+ RDF::URI.new("http://umbbd.msi.umn.edu/servlets/rule.jsp?rule=")
955
+
956
+ @classmethod
957
+ def UniMod(cls):
958
+ """Returns the link-out URI for objects of "UniMod".
959
+ """
960
+ RDF::URI.new("http://www.unimod.org/modifications_view.php?editid1=")
961
+
962
+ @classmethod
963
+ def UniParc(cls):
964
+ """Returns the link-out URI for objects of "UniProt Archive".
965
+ """
966
+ RDF::URI.new("http://www.uniprot.org/uniparc/")
967
+
968
+ @classmethod
969
+ def UniPathway(cls):
970
+ """Returns the link-out URI for objects of "UniPathway".
971
+ """
972
+ RDF::URI.new("http://www.grenoble.prabi.fr/obiwarehouse/unipathway/upa?upid=")
973
+
974
+ @classmethod
975
+ def UniProtKB(cls):
976
+ """Returns the link-out URI for objects of "Universal Protein Knowledgebase".
977
+ """
978
+ RDF::URI.new("http://www.uniprot.org/uniprot/")
979
+
980
+ @classmethod
981
+ def UniProtKB_KW(cls):
982
+ """Returns the link-out URI for objects of "UniProt Knowledgebase keywords".
983
+ """
984
+ RDF::URI.new("http://www.uniprot.org/keywords/")
985
+
986
+ @classmethod
987
+ def UniProtKB_SubCell(cls):
988
+ """Returns the link-out URI for objects of "UniProt Knowledgebase Subcellular Location vocabulary".
989
+ """
990
+ RDF::URI.new("http://www.uniprot.org/locations/")
991
+
992
+ @classmethod
993
+ def VBRC(cls):
994
+ """Returns the link-out URI for objects of "Viral Bioinformatics Resource Center".
995
+ """
996
+ RDF::URI.new("http://vbrc.org/query.asp?web_id=VBRC:")
997
+
998
+ @classmethod
999
+ def VEGA(cls):
1000
+ """Returns the link-out URI for objects of "Vertebrate Genome Annotation database".
1001
+ """
1002
+ RDF::URI.new("http://vega.sanger.ac.uk/perl/searchview?species=all&idx=All&q=")
1003
+
1004
+ @classmethod
1005
+ def VMD(cls):
1006
+ """Returns the link-out URI for objects of "Virginia Bioinformatics Institute Microbial Database".
1007
+ """
1008
+ RDF::URI.new("http://vmd.vbi.vt.edu/cgi-bin/browse/browserDetail_new.cgi?gene_id=")
1009
+
1010
+ @classmethod
1011
+ def WB(cls):
1012
+ """Returns the link-out URI for objects of "WormBase database of nematode biology".
1013
+ """
1014
+ RDF::URI.new("http://www.wormbase.org/db/gene/gene?name=")
1015
+
1016
+ @classmethod
1017
+ def WB_REF(cls):
1018
+ """Returns the link-out URI for objects of "WormBase database of nematode biology".
1019
+ """
1020
+ RDF::URI.new("http://www.wormbase.org/db/misc/paper?name=")
1021
+
1022
+ @classmethod
1023
+ def Wikipedia(cls):
1024
+ """Returns the link-out URI for objects of "Wikipedia".
1025
+ """
1026
+ RDF::URI.new("http://en.wikipedia.org/wiki/")
1027
+
1028
+ @classmethod
1029
+ def WP(cls):
1030
+ """Returns the link-out URI for objects of "Wormpep database of proteins of C. elegans".
1031
+ """
1032
+ RDF::URI.new("http://www.wormbase.org/db/get?class=Protein;name=WP:")
1033
+
1034
+ @classmethod
1035
+ def ZFIN(cls):
1036
+ """Returns the link-out URI for objects of "Zebrafish Information Network".
1037
+ """
1038
+ RDF::URI.new("http://zfin.org/cgi-bin/ZFIN_jump?record=")
1039
+
1040
+