biointerchange 0.2.1 → 0.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
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 GFF3O {
15
15
 
16
16
  /**
@@ -647,3 +647,4 @@ public class GFF3O {
647
647
 
648
648
 
649
649
  }
650
+
@@ -0,0 +1,1221 @@
1
+ package org.biointerchange.vocabulary;
2
+ import java.util.Arrays;
3
+ import java.util.Map;
4
+ import java.util.HashMap;
5
+ import java.util.HashSet;
6
+ import java.util.Set;
7
+ import com.hp.hpl.jena.rdf.model.Property;
8
+ import com.hp.hpl.jena.rdf.model.Resource;
9
+ import com.hp.hpl.jena.rdf.model.ResourceFactory;
10
+ import org.apache.commons.collections.CollectionUtils;
11
+ import org.apache.commons.collections.Predicate;
12
+
13
+
14
+ public class GOXRef {
15
+
16
+ /**
17
+ * Returns the link-out URI for objects of "Arabidopsis Genome Initiative".
18
+ */
19
+ public static Resource AGI_LocusCode() {
20
+ return ResourceFactory.createResource("http://arabidopsis.org/servlets/TairObject?type=locus&name=");
21
+ }
22
+
23
+ /**
24
+ * Returns the link-out URI for objects of "PlasmoDB Plasmodium Genome Resource".
25
+ */
26
+ public static Resource ApiDB_PlasmoDB() {
27
+ return ResourceFactory.createResource("http://www.plasmodb.org/gene/");
28
+ }
29
+
30
+ /**
31
+ * Returns the link-out URI for objects of "AraCyc metabolic pathway database for Arabidopsis thaliana".
32
+ */
33
+ public static Resource AraCyc() {
34
+ return ResourceFactory.createResource("http://www.arabidopsis.org:1555/ARA/NEW-IMAGE?type=NIL&object=");
35
+ }
36
+
37
+ /**
38
+ * Returns the link-out URI for objects of "A Systematic Annotation Package for Community Analysis of Genomes".
39
+ */
40
+ public static Resource ASAP() {
41
+ return ResourceFactory.createResource("https://asap.ahabs.wisc.edu/annotation/php/feature_info.php?FeatureID=");
42
+ }
43
+
44
+ /**
45
+ * Returns the link-out URI for objects of "Aspergillus Genome Database".
46
+ */
47
+ public static Resource AspGD() {
48
+ return ResourceFactory.createResource("http://www.aspergillusgenome.org/cgi-bin/locus.pl?dbid=");
49
+ }
50
+
51
+ /**
52
+ * Returns the link-out URI for objects of "Aspergillus Genome Database".
53
+ */
54
+ public static Resource AspGD_LOCUS() {
55
+ return ResourceFactory.createResource("http://www.aspergillusgenome.org/cgi-bin/locus.pl?locus=");
56
+ }
57
+
58
+ /**
59
+ * Returns the link-out URI for objects of "Aspergillus Genome Database".
60
+ */
61
+ public static Resource AspGD_REF() {
62
+ return ResourceFactory.createResource("http://www.aspergillusgenome.org/cgi-bin/reference/reference.pl?dbid=");
63
+ }
64
+
65
+ /**
66
+ * Returns the link-out URI for objects of "Basic Formal Ontology".
67
+ */
68
+ public static Resource BFO() {
69
+ return ResourceFactory.createResource("http://purl.obolibrary.org/obo/BFO_");
70
+ }
71
+
72
+ /**
73
+ * Returns the link-out URI for objects of "BioCyc collection of metabolic pathway databases".
74
+ */
75
+ public static Resource BioCyc() {
76
+ return ResourceFactory.createResource("http://biocyc.org/META/NEW-IMAGE?type=PATHWAY&object=");
77
+ }
78
+
79
+ /**
80
+ * Returns the link-out URI for objects of "BioModels Database".
81
+ */
82
+ public static Resource BIOMD() {
83
+ return ResourceFactory.createResource("http://www.ebi.ac.uk/compneur-srv/biomodels-main/publ-model.do?mid=");
84
+ }
85
+
86
+ /**
87
+ * Returns the link-out URI for objects of "BRENDA, The Comprehensive Enzyme Information System".
88
+ */
89
+ public static Resource BRENDA() {
90
+ return ResourceFactory.createResource("http://www.brenda-enzymes.info/php/result_flat.php4?ecno=");
91
+ }
92
+
93
+ /**
94
+ * Returns the link-out URI for objects of "Magnaporthe grisea Database".
95
+ */
96
+ public static Resource Broad_MGG() {
97
+ return ResourceFactory.createResource("http://www.broad.mit.edu/annotation/genome/magnaporthe_grisea/GeneLocus.html?sp=S");
98
+ }
99
+
100
+ /**
101
+ * Returns the link-out URI for objects of "Catalog of Fishes genus database".
102
+ */
103
+ public static Resource CASGEN() {
104
+ return ResourceFactory.createResource("http://research.calacademy.org/research/ichthyology/catalog/getname.asp?rank=Genus&id=");
105
+ }
106
+
107
+ /**
108
+ * Returns the link-out URI for objects of "Catalog of Fishes publications database".
109
+ */
110
+ public static Resource CASREF() {
111
+ return ResourceFactory.createResource("http://research.calacademy.org/research/ichthyology/catalog/getref.asp?id=");
112
+ }
113
+
114
+ /**
115
+ * Returns the link-out URI for objects of "Catalog of Fishes species database".
116
+ */
117
+ public static Resource CASSPC() {
118
+ return ResourceFactory.createResource("http://research.calacademy.org/research/ichthyology/catalog/getname.asp?rank=Species&id=1979");
119
+ }
120
+
121
+ /**
122
+ * Returns the link-out URI for objects of "Conserved Domain Database at NCBI".
123
+ */
124
+ public static Resource CDD() {
125
+ return ResourceFactory.createResource("http://www.ncbi.nlm.nih.gov/Structure/cdd/cddsrv.cgi?uid=");
126
+ }
127
+
128
+ /**
129
+ * Returns the link-out URI for objects of "Candida Genome Database".
130
+ */
131
+ public static Resource CGD() {
132
+ return ResourceFactory.createResource("http://www.candidagenome.org/cgi-bin/locus.pl?dbid=");
133
+ }
134
+
135
+ /**
136
+ * Returns the link-out URI for objects of "Candida Genome Database".
137
+ */
138
+ public static Resource CGD_LOCUS() {
139
+ return ResourceFactory.createResource("http://www.candidagenome.org/cgi-bin/locus.pl?locus=");
140
+ }
141
+
142
+ /**
143
+ * Returns the link-out URI for objects of "Candida Genome Database".
144
+ */
145
+ public static Resource CGD_REF() {
146
+ return ResourceFactory.createResource("http://www.candidagenome.org/cgi-bin/reference/reference.pl?dbid=");
147
+ }
148
+
149
+ /**
150
+ * Returns the link-out URI for objects of "Chemical Entities of Biological Interest".
151
+ */
152
+ public static Resource CHEBI() {
153
+ return ResourceFactory.createResource("http://www.ebi.ac.uk/chebi/searchId.do?chebiId=CHEBI:");
154
+ }
155
+
156
+ /**
157
+ * Returns the link-out URI for objects of "Cell Type Ontology".
158
+ */
159
+ public static Resource CL() {
160
+ return ResourceFactory.createResource("http://purl.obolibrary.org/obo/CL_");
161
+ }
162
+
163
+ /**
164
+ * Returns the link-out URI for objects of "NCBI COG cluster".
165
+ */
166
+ public static Resource COG_Cluster() {
167
+ return ResourceFactory.createResource("http://www.ncbi.nlm.nih.gov/COG/new/release/cow.cgi?cog=");
168
+ }
169
+
170
+ /**
171
+ * Returns the link-out URI for objects of "NCBI COG function".
172
+ */
173
+ public static Resource COG_Function() {
174
+ return ResourceFactory.createResource("http://www.ncbi.nlm.nih.gov/COG/grace/shokog.cgi?fun=");
175
+ }
176
+
177
+ /**
178
+ * Returns the link-out URI for objects of "NCBI COG pathway".
179
+ */
180
+ public static Resource COG_Pathway() {
181
+ return ResourceFactory.createResource("http://www.ncbi.nlm.nih.gov/COG/new/release/coglist.cgi?pathw=");
182
+ }
183
+
184
+ /**
185
+ * Returns the link-out URI for objects of "CORUM - the Comprehensive Resource of Mammalian protein complexes".
186
+ */
187
+ public static Resource CORUM() {
188
+ return ResourceFactory.createResource("http://mips.gsf.de/genre/proj/corum/complexdetails.html?id=");
189
+ }
190
+
191
+ /**
192
+ * Returns the link-out URI for objects of "NCBI dbSNP".
193
+ */
194
+ public static Resource dbSNP() {
195
+ return ResourceFactory.createResource("http://www.ncbi.nlm.nih.gov/projects/SNP/snp_ref.cgi?rs=");
196
+ }
197
+
198
+ /**
199
+ * Returns the link-out URI for objects of "DNA Databank of Japan".
200
+ */
201
+ public static Resource DDBJ() {
202
+ return ResourceFactory.createResource("http://arsa.ddbj.nig.ac.jp/arsa/ddbjSplSearch?KeyWord=");
203
+ }
204
+
205
+ /**
206
+ * Returns the link-out URI for objects of "dictyBase".
207
+ */
208
+ public static Resource dictyBase() {
209
+ return ResourceFactory.createResource("http://dictybase.org/gene/");
210
+ }
211
+
212
+ /**
213
+ * Returns the link-out URI for objects of "dictyBase".
214
+ */
215
+ public static Resource dictyBase_gene_name() {
216
+ return ResourceFactory.createResource("http://dictybase.org/gene/");
217
+ }
218
+
219
+ /**
220
+ * Returns the link-out URI for objects of "dictyBase literature references".
221
+ */
222
+ public static Resource dictyBase_REF() {
223
+ return ResourceFactory.createResource("http://dictybase.org/db/cgi-bin/dictyBase/reference/reference.pl?refNo=");
224
+ }
225
+
226
+ /**
227
+ * Returns the link-out URI for objects of "Digital Object Identifier".
228
+ */
229
+ public static Resource DOI() {
230
+ return ResourceFactory.createResource("http://dx.doi.org/DOI:");
231
+ }
232
+
233
+ /**
234
+ * Returns the link-out URI for objects of "Enzyme Commission".
235
+ */
236
+ public static Resource EC() {
237
+ return ResourceFactory.createResource("http://www.expasy.org/enzyme/");
238
+ }
239
+
240
+ /**
241
+ * Returns the link-out URI for objects of "EchoBASE post-genomic database for Escherichia coli".
242
+ */
243
+ public static Resource EchoBASE() {
244
+ return ResourceFactory.createResource("http://www.biolws1.york.ac.uk/echobase/Gene.cfm?recordID=");
245
+ }
246
+
247
+ /**
248
+ * Returns the link-out URI for objects of "EcoGene Database of Escherichia coli Sequence and Function".
249
+ */
250
+ public static Resource ECK() {
251
+ return ResourceFactory.createResource("http://www.ecogene.org/geneInfo.php?eck_id=");
252
+ }
253
+
254
+ /**
255
+ * Returns the link-out URI for objects of "Encyclopedia of E. coli metabolism".
256
+ */
257
+ public static Resource EcoCyc() {
258
+ return ResourceFactory.createResource("http://biocyc.org/ECOLI/NEW-IMAGE?type=PATHWAY&object=");
259
+ }
260
+
261
+ /**
262
+ * Returns the link-out URI for objects of "Encyclopedia of E. coli metabolism".
263
+ */
264
+ public static Resource EcoCyc_REF() {
265
+ return ResourceFactory.createResource("http://biocyc.org/ECOLI/reference.html?type=CITATION-FRAME&object=");
266
+ }
267
+
268
+ /**
269
+ * Returns the link-out URI for objects of "EcoGene Database of Escherichia coli Sequence and Function".
270
+ */
271
+ public static Resource ECOGENE() {
272
+ return ResourceFactory.createResource("http://www.ecogene.org/geneInfo.php?eg_id=");
273
+ }
274
+
275
+ /**
276
+ * Returns the link-out URI for objects of "EMBL Nucleotide Sequence Database".
277
+ */
278
+ public static Resource EMBL() {
279
+ return ResourceFactory.createResource("http://www.ebi.ac.uk/cgi-bin/emblfetch?style=html&Submit=Go&id=");
280
+ }
281
+
282
+ /**
283
+ * Returns the link-out URI for objects of "European Nucleotide Archive".
284
+ */
285
+ public static Resource ENA() {
286
+ return ResourceFactory.createResource("http://www.ebi.ac.uk/ena/data/view/");
287
+ }
288
+
289
+ /**
290
+ * Returns the link-out URI for objects of "Ensembl database of automatically annotated genomic data".
291
+ */
292
+ public static Resource ENSEMBL() {
293
+ return ResourceFactory.createResource("http://www.ensembl.org/id/");
294
+ }
295
+
296
+ /**
297
+ * Returns the link-out URI for objects of "Ensembl database of automatically annotated genomic data".
298
+ */
299
+ public static Resource ENSEMBL_GeneID() {
300
+ return ResourceFactory.createResource("http://www.ensembl.org/id/");
301
+ }
302
+
303
+ /**
304
+ * Returns the link-out URI for objects of "Ensembl database of automatically annotated genomic data".
305
+ */
306
+ public static Resource ENSEMBL_ProteinID() {
307
+ return ResourceFactory.createResource("http://www.ensembl.org/id/");
308
+ }
309
+
310
+ /**
311
+ * Returns the link-out URI for objects of "Ensembl database of automatically annotated genomic data".
312
+ */
313
+ public static Resource ENSEMBL_TranscriptID() {
314
+ return ResourceFactory.createResource("http://www.ensembl.org/id/");
315
+ }
316
+
317
+ /**
318
+ * Returns the link-out URI for objects of "Swiss Institute of Bioinformatics enzyme database".
319
+ */
320
+ public static Resource ENZYME() {
321
+ return ResourceFactory.createResource("http://www.expasy.ch/cgi-bin/nicezyme.pl?");
322
+ }
323
+
324
+ /**
325
+ * Returns the link-out URI for objects of "Drosophila gross anatomy".
326
+ */
327
+ public static Resource FBbt() {
328
+ return ResourceFactory.createResource("http://flybase.org/cgi-bin/fbcvq.html?query=FBbt:");
329
+ }
330
+
331
+ /**
332
+ * Returns the link-out URI for objects of "Human Genome Database".
333
+ */
334
+ public static Resource GDB() {
335
+ return ResourceFactory.createResource("http://www.gdb.org/gdb-bin/genera/accno?accessionNum=GDB:");
336
+ }
337
+
338
+ /**
339
+ * Returns the link-out URI for objects of "GenBank".
340
+ */
341
+ public static Resource GenBank() {
342
+ return ResourceFactory.createResource("http://www.ncbi.nlm.nih.gov/entrez/viewer.fcgi?db=nucleotide&val=");
343
+ }
344
+
345
+ /**
346
+ * Returns the link-out URI for objects of "Domain Architecture Classification".
347
+ */
348
+ public static Resource Gene3D() {
349
+ return ResourceFactory.createResource("http://gene3d.biochem.ucl.ac.uk/superfamily/?accession=");
350
+ }
351
+
352
+ /**
353
+ * Returns the link-out URI for objects of "Glossina morsitans GeneDB".
354
+ */
355
+ public static Resource GeneDB_Gmorsitans() {
356
+ return ResourceFactory.createResource("http://www.genedb.org/genedb/Search?organism=glossina&name=");
357
+ }
358
+
359
+ /**
360
+ * Returns the link-out URI for objects of "Leishmania major GeneDB".
361
+ */
362
+ public static Resource GeneDB_Lmajor() {
363
+ return ResourceFactory.createResource("http://www.genedb.org/genedb/Search?organism=leish&name=");
364
+ }
365
+
366
+ /**
367
+ * Returns the link-out URI for objects of "Plasmodium falciparum GeneDB".
368
+ */
369
+ public static Resource GeneDB_Pfalciparum() {
370
+ return ResourceFactory.createResource("http://www.genedb.org/genedb/Search?organism=malaria&name=");
371
+ }
372
+
373
+ /**
374
+ * Returns the link-out URI for objects of "Schizosaccharomyces pombe GeneDB".
375
+ */
376
+ public static Resource GeneDB_Spombe() {
377
+ return ResourceFactory.createResource("http://old.genedb.org/genedb/Search?organism=pombe&name=");
378
+ }
379
+
380
+ /**
381
+ * Returns the link-out URI for objects of "Trypanosoma brucei GeneDB".
382
+ */
383
+ public static Resource GeneDB_Tbrucei() {
384
+ return ResourceFactory.createResource("http://www.genedb.org/genedb/Search?organism=tryp&name=");
385
+ }
386
+
387
+ /**
388
+ * Returns the link-out URI for objects of "NCBI Gene Expression Omnibus".
389
+ */
390
+ public static Resource GEO() {
391
+ return ResourceFactory.createResource("http://www.ncbi.nlm.nih.gov/sites/GDSbrowser?acc=");
392
+ }
393
+
394
+ /**
395
+ * Returns the link-out URI for objects of "Gene Ontology Database".
396
+ */
397
+ public static Resource GO() {
398
+ return ResourceFactory.createResource("http://amigo.geneontology.org/cgi-bin/amigo/term-details.cgi?term=GO:");
399
+ }
400
+
401
+ /**
402
+ * Returns the link-out URI for objects of "Gene Ontology Database references".
403
+ */
404
+ public static Resource GO_REF() {
405
+ return ResourceFactory.createResource("http://www.geneontology.org/cgi-bin/references.cgi#GO_REF:");
406
+ }
407
+
408
+ /**
409
+ * Returns the link-out URI for objects of "Gene Ontology Normal Usage Tracking System (GONUTS)".
410
+ */
411
+ public static Resource GONUTS() {
412
+ return ResourceFactory.createResource("http://gowiki.tamu.edu/wiki/index.php/");
413
+ }
414
+
415
+ /**
416
+ * Returns the link-out URI for objects of "Gramene: A Comparative Mapping Resource for Grains".
417
+ */
418
+ public static Resource GR() {
419
+ return ResourceFactory.createResource("http://www.gramene.org/db/searches/browser?search_type=All&RGN=on&query=");
420
+ }
421
+
422
+ /**
423
+ * Returns the link-out URI for objects of "Gramene: A Comparative Mapping Resource for Grains".
424
+ */
425
+ public static Resource GR_GENE() {
426
+ return ResourceFactory.createResource("http://www.gramene.org/db/genes/search_gene?acc=");
427
+ }
428
+
429
+ /**
430
+ * Returns the link-out URI for objects of "Gramene: A Comparative Mapping Resource for Grains".
431
+ */
432
+ public static Resource GR_PROTEIN() {
433
+ return ResourceFactory.createResource("http://www.gramene.org/db/protein/protein_search?acc=");
434
+ }
435
+
436
+ /**
437
+ * Returns the link-out URI for objects of "Gramene: A Comparative Mapping Resource for Grains".
438
+ */
439
+ public static Resource GR_QTL() {
440
+ return ResourceFactory.createResource("http://www.gramene.org/db/qtl/qtl_display?qtl_accession_id=");
441
+ }
442
+
443
+ /**
444
+ * Returns the link-out URI for objects of "Gramene: A Comparative Mapping Resource for Grains".
445
+ */
446
+ public static Resource GR_REF() {
447
+ return ResourceFactory.createResource("http://www.gramene.org/db/literature/pub_search?ref_id=");
448
+ }
449
+
450
+ /**
451
+ * Returns the link-out URI for objects of "H-invitational Database".
452
+ */
453
+ public static Resource H_invDB_cDNA() {
454
+ return ResourceFactory.createResource("http://www.h-invitational.jp/hinv/spsoup/transcript_view?acc_id=");
455
+ }
456
+
457
+ /**
458
+ * Returns the link-out URI for objects of "H-invitational Database".
459
+ */
460
+ public static Resource H_invDB_locus() {
461
+ return ResourceFactory.createResource("http://www.h-invitational.jp/hinv/spsoup/locus_view?hix_id=");
462
+ }
463
+
464
+ /**
465
+ * Returns the link-out URI for objects of "High-quality Automated and Manual Annotation of microbial Proteomes".
466
+ */
467
+ public static Resource HAMAP() {
468
+ return ResourceFactory.createResource("http://us.expasy.org/unirules/");
469
+ }
470
+
471
+ /**
472
+ * Returns the link-out URI for objects of "HUGO Gene Nomenclature Committee".
473
+ */
474
+ public static Resource HGNC() {
475
+ return ResourceFactory.createResource("http://www.genenames.org/data/hgnc_data.php?hgnc_id=HGNC:");
476
+ }
477
+
478
+ /**
479
+ * Returns the link-out URI for objects of "HUGO Gene Nomenclature Committee".
480
+ */
481
+ public static Resource HGNC_gene() {
482
+ return ResourceFactory.createResource("http://www.genenames.org/data/hgnc_data.php?app_sym=");
483
+ }
484
+
485
+ /**
486
+ * Returns the link-out URI for objects of "Human Protein Atlas tissue profile information".
487
+ */
488
+ public static Resource HPA() {
489
+ return ResourceFactory.createResource("http://www.proteinatlas.org/tissue_profile.php?antibody_id=");
490
+ }
491
+
492
+ /**
493
+ * Returns the link-out URI for objects of "Human Protein Atlas antibody information".
494
+ */
495
+ public static Resource HPA_antibody() {
496
+ return ResourceFactory.createResource("http://www.proteinatlas.org/antibody_info.php?antibody_id=");
497
+ }
498
+
499
+ /**
500
+ * Returns the link-out URI for objects of "Integrated Microbial Genomes; JGI web site for genome annotation".
501
+ */
502
+ public static Resource IMG() {
503
+ return ResourceFactory.createResource("http://img.jgi.doe.gov/cgi-bin/pub/main.cgi?section=GeneDetail&page=geneDetail&gene_oid=");
504
+ }
505
+
506
+ /**
507
+ * Returns the link-out URI for objects of "IntAct protein interaction database".
508
+ */
509
+ public static Resource IntAct() {
510
+ return ResourceFactory.createResource("http://www.ebi.ac.uk/intact/search/do/search?searchString=");
511
+ }
512
+
513
+ /**
514
+ * Returns the link-out URI for objects of "InterPro database of protein domains and motifs".
515
+ */
516
+ public static Resource InterPro() {
517
+ return ResourceFactory.createResource("http://www.ebi.ac.uk/interpro/IEntry?ac=");
518
+ }
519
+
520
+ /**
521
+ * Returns the link-out URI for objects of "International Standard Book Number".
522
+ */
523
+ public static Resource ISBN() {
524
+ return ResourceFactory.createResource("http://my.linkbaton.com/get?lbCC=q&nC=q&genre=book&item=");
525
+ }
526
+
527
+ /**
528
+ * Returns the link-out URI for objects of "International Union of Pharmacology".
529
+ */
530
+ public static Resource IUPHAR_GPCR() {
531
+ return ResourceFactory.createResource("http://www.iuphar-db.org/DATABASE/FamilyMenuForward?familyId=");
532
+ }
533
+
534
+ /**
535
+ * Returns the link-out URI for objects of "International Union of Pharmacology".
536
+ */
537
+ public static Resource IUPHAR_RECEPTOR() {
538
+ return ResourceFactory.createResource("http://www.iuphar-db.org/DATABASE/ObjectDisplayForward?objectId=");
539
+ }
540
+
541
+ /**
542
+ * Returns the link-out URI for objects of "Comprehensive Microbial Resource at the J. Craig Venter Institute".
543
+ */
544
+ public static Resource JCVI_CMR() {
545
+ return ResourceFactory.createResource("http://cmr.jcvi.org/cgi-bin/CMR/shared/GenePage.cgi?locus=");
546
+ }
547
+
548
+ /**
549
+ * Returns the link-out URI for objects of "Comprehensive Microbial Resource at the J. Craig Venter Institute".
550
+ */
551
+ public static Resource JCVI_EGAD() {
552
+ return ResourceFactory.createResource("http://cmr.jcvi.org/cgi-bin/CMR/EgadSearch.cgi?search_string=");
553
+ }
554
+
555
+ /**
556
+ * Returns the link-out URI for objects of "Genome Properties database at the J. Craig Venter Institute".
557
+ */
558
+ public static Resource JCVI_GenProp() {
559
+ return ResourceFactory.createResource("http://cmr.jcvi.org/cgi-bin/CMR/shared/GenomePropDefinition.cgi?prop_acc=");
560
+ }
561
+
562
+ /**
563
+ * Returns the link-out URI for objects of "Medicago truncatula genome database at the J. Craig Venter Institute ".
564
+ */
565
+ public static Resource JCVI_Medtr() {
566
+ return ResourceFactory.createResource("http://medicago.jcvi.org/cgi-bin/medicago/search/shared/ORF_infopage.cgi?orf=");
567
+ }
568
+
569
+ /**
570
+ * Returns the link-out URI for objects of "TIGRFAMs HMM collection at the J. Craig Venter Institute".
571
+ */
572
+ public static Resource JCVI_TIGRFAMS() {
573
+ return ResourceFactory.createResource("http://search.jcvi.org/search?p&q=");
574
+ }
575
+
576
+ /**
577
+ * Returns the link-out URI for objects of "Digital archive of scholarly articles".
578
+ */
579
+ public static Resource JSTOR() {
580
+ return ResourceFactory.createResource("http://www.jstor.org/stable/");
581
+ }
582
+
583
+ /**
584
+ * Returns the link-out URI for objects of "KEGG Enzyme Database".
585
+ */
586
+ public static Resource KEGG_ENZYME() {
587
+ return ResourceFactory.createResource("http://www.genome.jp/dbget-bin/www_bget?ec:");
588
+ }
589
+
590
+ /**
591
+ * Returns the link-out URI for objects of "KEGG LIGAND Database".
592
+ */
593
+ public static Resource KEGG_LIGAND() {
594
+ return ResourceFactory.createResource("http://www.genome.jp/dbget-bin/www_bget?cpd:");
595
+ }
596
+
597
+ /**
598
+ * Returns the link-out URI for objects of "KEGG Pathways Database".
599
+ */
600
+ public static Resource KEGG_PATHWAY() {
601
+ return ResourceFactory.createResource("http://www.genome.jp/dbget-bin/www_bget?path:");
602
+ }
603
+
604
+ /**
605
+ * Returns the link-out URI for objects of "KEGG Reaction Database".
606
+ */
607
+ public static Resource KEGG_REACTION() {
608
+ return ResourceFactory.createResource("http://www.genome.jp/dbget-bin/www_bget?rn:");
609
+ }
610
+
611
+ /**
612
+ * Returns the link-out URI for objects of "LifeDB".
613
+ */
614
+ public static Resource LIFEdb() {
615
+ return ResourceFactory.createResource("http://www.dkfz.de/LIFEdb/LIFEdb.aspx?ID=");
616
+ }
617
+
618
+ /**
619
+ * Returns the link-out URI for objects of "Adult Mouse Anatomical Dictionary".
620
+ */
621
+ public static Resource MA() {
622
+ return ResourceFactory.createResource("http://www.informatics.jax.org/searches/AMA.cgi?id=MA:");
623
+ }
624
+
625
+ /**
626
+ * Returns the link-out URI for objects of "MaizeGDB".
627
+ */
628
+ public static Resource MaizeGDB() {
629
+ return ResourceFactory.createResource("http://www.maizegdb.org/cgi-bin/id_search.cgi?id=");
630
+ }
631
+
632
+ /**
633
+ * Returns the link-out URI for objects of "MaizeGDB".
634
+ */
635
+ public static Resource MaizeGDB_Locus() {
636
+ return ResourceFactory.createResource("http://www.maizegdb.org/cgi-bin/displaylocusresults.cgi?term=");
637
+ }
638
+
639
+ /**
640
+ * Returns the link-out URI for objects of "MEROPS peptidase database".
641
+ */
642
+ public static Resource MEROPS() {
643
+ return ResourceFactory.createResource("http://merops.sanger.ac.uk/cgi-bin/pepsum?mid=");
644
+ }
645
+
646
+ /**
647
+ * Returns the link-out URI for objects of "MEROPS peptidase database".
648
+ */
649
+ public static Resource MEROPS_fam() {
650
+ return ResourceFactory.createResource("http://merops.sanger.ac.uk/cgi-bin/famsum?family=");
651
+ }
652
+
653
+ /**
654
+ * Returns the link-out URI for objects of "Medical Subject Headings".
655
+ */
656
+ public static Resource MeSH() {
657
+ return ResourceFactory.createResource("http://www.nlm.nih.gov/cgi/mesh/2005/MB_cgi?mode=&term=");
658
+ }
659
+
660
+ /**
661
+ * Returns the link-out URI for objects of "Metabolic Encyclopedia of metabolic and other pathways".
662
+ */
663
+ public static Resource MetaCyc() {
664
+ return ResourceFactory.createResource("http://biocyc.org/META/NEW-IMAGE?type=NIL&object=");
665
+ }
666
+
667
+ /**
668
+ * Returns the link-out URI for objects of "Mouse Genome Informatics".
669
+ */
670
+ public static Resource MGI() {
671
+ return ResourceFactory.createResource("http://www.informatics.jax.org/accession/");
672
+ }
673
+
674
+ /**
675
+ * Returns the link-out URI for objects of "MIPS Functional Catalogue".
676
+ */
677
+ public static Resource MIPS_funcat() {
678
+ return ResourceFactory.createResource("http://mips.gsf.de/cgi-bin/proj/funcatDB/search_advanced.pl?action=2&wert=");
679
+ }
680
+
681
+ /**
682
+ * Returns the link-out URI for objects of "MGED Ontology".
683
+ */
684
+ public static Resource MO() {
685
+ return ResourceFactory.createResource("http://mged.sourceforge.net/ontologies/MGEDontology.php#");
686
+ }
687
+
688
+ /**
689
+ * Returns the link-out URI for objects of "ModBase comprehensive Database of Comparative Protein Structure Models".
690
+ */
691
+ public static Resource ModBase() {
692
+ return ResourceFactory.createResource("http://salilab.org/modbase/searchbyid?databaseID=");
693
+ }
694
+
695
+ /**
696
+ * Returns the link-out URI for objects of "Nottingham Arabidopsis Stock Centre Seeds Database".
697
+ */
698
+ public static Resource NASC_code() {
699
+ return ResourceFactory.createResource("http://seeds.nottingham.ac.uk/NASC/stockatidb.lasso?code=");
700
+ }
701
+
702
+ /**
703
+ * Returns the link-out URI for objects of "NCBI Gene".
704
+ */
705
+ public static Resource NCBI_Gene() {
706
+ return ResourceFactory.createResource("http://www.ncbi.nlm.nih.gov/sites/entrez?cmd=Retrieve&db=gene&list_uids=");
707
+ }
708
+
709
+ /**
710
+ * Returns the link-out URI for objects of "NCBI databases".
711
+ */
712
+ public static Resource NCBI_gi() {
713
+ return ResourceFactory.createResource("http://www.ncbi.nlm.nih.gov/entrez/viewer.fcgi?val=");
714
+ }
715
+
716
+ /**
717
+ * Returns the link-out URI for objects of "NCBI GenPept".
718
+ */
719
+ public static Resource NCBI_GP() {
720
+ return ResourceFactory.createResource("http://www.ncbi.nlm.nih.gov/entrez/viewer.fcgi?db=protein&val=");
721
+ }
722
+
723
+ /**
724
+ * Returns the link-out URI for objects of "Neuroscience Information Framework standard ontology, subcellular hierarchy".
725
+ */
726
+ public static Resource NIF_Subcellular() {
727
+ return ResourceFactory.createResource("http://www.neurolex.org/wiki/");
728
+ }
729
+
730
+ /**
731
+ * Returns the link-out URI for objects of "National Microbial Pathogen Data Resource".
732
+ */
733
+ public static Resource NMPDR() {
734
+ return ResourceFactory.createResource("http://www.nmpdr.org/linkin.cgi?id=");
735
+ }
736
+
737
+ /**
738
+ * Returns the link-out URI for objects of "Mendelian Inheritance in Man".
739
+ */
740
+ public static Resource OMIM() {
741
+ return ResourceFactory.createResource("http://omim.org/entry/");
742
+ }
743
+
744
+ /**
745
+ * Returns the link-out URI for objects of "Genome Annotation Tool (Agrobacterium tumefaciens C58); PAMGO Interest Group".
746
+ */
747
+ public static Resource PAMGO_GAT() {
748
+ return ResourceFactory.createResource("http://agro.vbi.vt.edu/public/servlet/GeneEdit?&Search=Search&level=2&genename=");
749
+ }
750
+
751
+ /**
752
+ * Returns the link-out URI for objects of "Magnaporthe grisea database".
753
+ */
754
+ public static Resource PAMGO_MGG() {
755
+ return ResourceFactory.createResource("http://scotland.fgl.ncsu.edu/cgi-bin/adHocQuery.cgi?adHocQuery_dbName=smeng_goannotation&Action=Data&QueryName=Functional+Categorization+of+MGG+GO+Annotation&P_KeyWord=");
756
+ }
757
+
758
+ /**
759
+ * Returns the link-out URI for objects of "Virginia Bioinformatics Institute Microbial Database".
760
+ */
761
+ public static Resource PAMGO_VMD() {
762
+ return ResourceFactory.createResource("http://vmd.vbi.vt.edu/cgi-bin/browse/go_detail.cgi?gene_id=");
763
+ }
764
+
765
+ /**
766
+ * Returns the link-out URI for objects of "Protein ANalysis THrough Evolutionary Relationships".
767
+ */
768
+ public static Resource PANTHER() {
769
+ return ResourceFactory.createResource("http://pantree.org/node/annotationNode.jsp?id=");
770
+ }
771
+
772
+ /**
773
+ * Returns the link-out URI for objects of "PathoSystems Resource Integration Center".
774
+ */
775
+ public static Resource PATRIC() {
776
+ return ResourceFactory.createResource("http://patric.vbi.vt.edu/gene/overview.php?fid=");
777
+ }
778
+
779
+ /**
780
+ * Returns the link-out URI for objects of "Protein Data Bank".
781
+ */
782
+ public static Resource PDB() {
783
+ return ResourceFactory.createResource("http://www.rcsb.org/pdb/cgi/explore.cgi?pdbId=");
784
+ }
785
+
786
+ /**
787
+ * Returns the link-out URI for objects of "Pfam database of protein families".
788
+ */
789
+ public static Resource Pfam() {
790
+ return ResourceFactory.createResource("http://www.sanger.ac.uk/cgi-bin/Pfam/getacc?");
791
+ }
792
+
793
+ /**
794
+ * Returns the link-out URI for objects of "Pharmacogenetics and Pharmacogenomics Knowledge Base".
795
+ */
796
+ public static Resource PharmGKB() {
797
+ return ResourceFactory.createResource("http://www.pharmgkb.org/do/serve?objId=");
798
+ }
799
+
800
+ /**
801
+ * Returns the link-out URI for objects of "Protein Information Resource".
802
+ */
803
+ public static Resource PIR() {
804
+ return ResourceFactory.createResource("http://pir.georgetown.edu/cgi-bin/pirwww/nbrfget?uid=");
805
+ }
806
+
807
+ /**
808
+ * Returns the link-out URI for objects of "PIR Superfamily Classification System".
809
+ */
810
+ public static Resource PIRSF() {
811
+ return ResourceFactory.createResource("http://pir.georgetown.edu/cgi-bin/ipcSF?id=");
812
+ }
813
+
814
+ /**
815
+ * Returns the link-out URI for objects of "Pubmed Central".
816
+ */
817
+ public static Resource PMCID() {
818
+ return ResourceFactory.createResource("http://www.ncbi.nlm.nih.gov/sites/entrez?db=pmc&cmd=search&term=");
819
+ }
820
+
821
+ /**
822
+ * Returns the link-out URI for objects of "PubMed".
823
+ */
824
+ public static Resource PMID() {
825
+ return ResourceFactory.createResource("http://www.ncbi.nlm.nih.gov/pubmed/");
826
+ }
827
+
828
+ /**
829
+ * Returns the link-out URI for objects of "Plant Ontology Consortium Database".
830
+ */
831
+ public static Resource PO() {
832
+ return ResourceFactory.createResource("http://www.plantontology.org/amigo/go.cgi?action=query&view=query&search_constraint=terms&query=PO:");
833
+ }
834
+
835
+ /**
836
+ * Returns the link-out URI for objects of "Plant Ontology custom references".
837
+ */
838
+ public static Resource PO_REF() {
839
+ return ResourceFactory.createResource("http://wiki.plantontology.org:8080/index.php/PO_REF:");
840
+ }
841
+
842
+ /**
843
+ * Returns the link-out URI for objects of "PomBase".
844
+ */
845
+ public static Resource PomBase() {
846
+ return ResourceFactory.createResource("http://www.pombase.org/spombe/result/");
847
+ }
848
+
849
+ /**
850
+ * Returns the link-out URI for objects of "Protein Ontology".
851
+ */
852
+ public static Resource PR() {
853
+ return ResourceFactory.createResource("http://www.proconsortium.org/cgi-bin/pro/entry_pro?id=PR:");
854
+ }
855
+
856
+ /**
857
+ * Returns the link-out URI for objects of "PRINTS compendium of protein fingerprints".
858
+ */
859
+ public static Resource PRINTS() {
860
+ return ResourceFactory.createResource("http://www.bioinf.manchester.ac.uk/cgi-bin/dbbrowser/sprint/searchprintss.cgi?display_opts=Prints&category=None&queryform=false&regexpr=off&prints_accn=");
861
+ }
862
+
863
+ /**
864
+ * Returns the link-out URI for objects of "ProDom protein domain families".
865
+ */
866
+ public static Resource ProDom() {
867
+ return ResourceFactory.createResource("http://prodom.prabi.fr/prodom/current/cgi-bin/request.pl?question=DBEN&query=");
868
+ }
869
+
870
+ /**
871
+ * Returns the link-out URI for objects of "Prosite database of protein families and domains".
872
+ */
873
+ public static Resource Prosite() {
874
+ return ResourceFactory.createResource("http://www.expasy.ch/cgi-bin/prosite-search-ac?");
875
+ }
876
+
877
+ /**
878
+ * Returns the link-out URI for objects of "Pseudomonas Genome Project".
879
+ */
880
+ public static Resource PseudoCAP() {
881
+ return ResourceFactory.createResource("http://v2.pseudomonas.com/getAnnotation.do?locusID=");
882
+ }
883
+
884
+ /**
885
+ * Returns the link-out URI for objects of "Proteomics Standards Initiative protein modification ontology".
886
+ */
887
+ public static Resource PSI_MOD() {
888
+ return ResourceFactory.createResource("http://www.ebi.ac.uk/ontology-lookup/?termId=MOD:");
889
+ }
890
+
891
+ /**
892
+ * Returns the link-out URI for objects of "NCBI PubChem database of bioassay records".
893
+ */
894
+ public static Resource PubChem_BioAssay() {
895
+ return ResourceFactory.createResource("http://pubchem.ncbi.nlm.nih.gov/assay/assay.cgi?aid=");
896
+ }
897
+
898
+ /**
899
+ * Returns the link-out URI for objects of "NCBI PubChem database of chemical structures".
900
+ */
901
+ public static Resource PubChem_Compound() {
902
+ return ResourceFactory.createResource("http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?CMD=search&DB=pccompound&term=");
903
+ }
904
+
905
+ /**
906
+ * Returns the link-out URI for objects of "NCBI PubChem database of chemical substances".
907
+ */
908
+ public static Resource PubChem_Substance() {
909
+ return ResourceFactory.createResource("http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?CMD=search&DB=pcsubstance&term=");
910
+ }
911
+
912
+ /**
913
+ * Returns the link-out URI for objects of "Reactome - a curated knowledgebase of biological pathways".
914
+ */
915
+ public static Resource Reactome() {
916
+ return ResourceFactory.createResource("http://www.reactome.org/cgi-bin/eventbrowser_st_id?ST_ID=");
917
+ }
918
+
919
+ /**
920
+ * Returns the link-out URI for objects of "RefSeq".
921
+ */
922
+ public static Resource RefSeq() {
923
+ return ResourceFactory.createResource("http://www.ncbi.nlm.nih.gov/entrez/viewer.fcgi?val=");
924
+ }
925
+
926
+ /**
927
+ * Returns the link-out URI for objects of "RefSeq (Nucleic Acid)".
928
+ */
929
+ public static Resource RefSeq_NA() {
930
+ return ResourceFactory.createResource("http://www.ncbi.nlm.nih.gov/entrez/viewer.fcgi?val=");
931
+ }
932
+
933
+ /**
934
+ * Returns the link-out URI for objects of "RefSeq (Protein)".
935
+ */
936
+ public static Resource RefSeq_Prot() {
937
+ return ResourceFactory.createResource("http://www.ncbi.nlm.nih.gov/entrez/viewer.fcgi?val=");
938
+ }
939
+
940
+ /**
941
+ * Returns the link-out URI for objects of "Rfam database of RNA families".
942
+ */
943
+ public static Resource Rfam() {
944
+ return ResourceFactory.createResource("http://rfam.sanger.ac.uk/family/");
945
+ }
946
+
947
+ /**
948
+ * Returns the link-out URI for objects of "Rat Genome Database".
949
+ */
950
+ public static Resource RGD() {
951
+ return ResourceFactory.createResource("http://rgd.mcw.edu/generalSearch/RgdSearch.jsp?quickSearch=1&searchKeyword=");
952
+ }
953
+
954
+ /**
955
+ * Returns the link-out URI for objects of "Rhea, the Annotated Reactions Database".
956
+ */
957
+ public static Resource RHEA() {
958
+ return ResourceFactory.createResource("http://www.ebi.ac.uk/rhea/reaction.xhtml?id=");
959
+ }
960
+
961
+ /**
962
+ * Returns the link-out URI for objects of "RNA Modification Database".
963
+ */
964
+ public static Resource RNAmods() {
965
+ return ResourceFactory.createResource("http://s59.cas.albany.edu/RNAmods/cgi-bin/rnashow.cgi?");
966
+ }
967
+
968
+ /**
969
+ * Returns the link-out URI for objects of "OBO Relation Ontology Ontology".
970
+ */
971
+ public static Resource RO() {
972
+ return ResourceFactory.createResource("http://purl.obolibrary.org/obo/RO_");
973
+ }
974
+
975
+ /**
976
+ * Returns the link-out URI for objects of "SABIO Reaction Kinetics".
977
+ */
978
+ public static Resource SABIO_RK() {
979
+ return ResourceFactory.createResource("http://sabio.villa-bosch.de/reacdetails.jsp?reactid=");
980
+ }
981
+
982
+ /**
983
+ * Returns the link-out URI for objects of "The SEED;".
984
+ */
985
+ public static Resource SEED() {
986
+ return ResourceFactory.createResource("http://www.theseed.org/linkin.cgi?id=");
987
+ }
988
+
989
+ /**
990
+ * Returns the link-out URI for objects of "Saccharomyces Genome Database".
991
+ */
992
+ public static Resource SGD() {
993
+ return ResourceFactory.createResource("http://db.yeastgenome.org/cgi-bin/locus.pl?dbid=");
994
+ }
995
+
996
+ /**
997
+ * Returns the link-out URI for objects of "Saccharomyces Genome Database".
998
+ */
999
+ public static Resource SGD_LOCUS() {
1000
+ return ResourceFactory.createResource("http://db.yeastgenome.org/cgi-bin/locus.pl?locus=");
1001
+ }
1002
+
1003
+ /**
1004
+ * Returns the link-out URI for objects of "Saccharomyces Genome Database".
1005
+ */
1006
+ public static Resource SGD_REF() {
1007
+ return ResourceFactory.createResource("http://db.yeastgenome.org/cgi-bin/reference/reference.pl?dbid=");
1008
+ }
1009
+
1010
+ /**
1011
+ * Returns the link-out URI for objects of "Sol Genomics Network".
1012
+ */
1013
+ public static Resource SGN() {
1014
+ return ResourceFactory.createResource("http://www.sgn.cornell.edu/phenome/locus_display.pl?locus_id=");
1015
+ }
1016
+
1017
+ /**
1018
+ * Returns the link-out URI for objects of "Sol Genomics Network".
1019
+ */
1020
+ public static Resource SGN_ref() {
1021
+ return ResourceFactory.createResource("http://www.sgn.cornell.edu/chado/publication.pl?pub_id=");
1022
+ }
1023
+
1024
+ /**
1025
+ * Returns the link-out URI for objects of "Simple Modular Architecture Research Tool".
1026
+ */
1027
+ public static Resource SMART() {
1028
+ return ResourceFactory.createResource("http://smart.embl-heidelberg.de/smart/do_annotation.pl?BLAST=DUMMY&DOMAIN=");
1029
+ }
1030
+
1031
+ /**
1032
+ * Returns the link-out URI for objects of "Sequence Ontology".
1033
+ */
1034
+ public static Resource SO() {
1035
+ return ResourceFactory.createResource("http://song.sourceforge.net/SOterm_tables.html#SO:");
1036
+ }
1037
+
1038
+ /**
1039
+ * Returns the link-out URI for objects of "SUPERFAMILY protein annotation database".
1040
+ */
1041
+ public static Resource SUPERFAMILY() {
1042
+ return ResourceFactory.createResource("http://supfam.cs.bris.ac.uk/SUPERFAMILY/cgi-bin/scop.cgi?ipid=SSF");
1043
+ }
1044
+
1045
+ /**
1046
+ * Returns the link-out URI for objects of "UniProtKB/Swiss-Prot".
1047
+ */
1048
+ public static Resource Swiss_Prot() {
1049
+ return ResourceFactory.createResource("http://www.uniprot.org/uniprot/");
1050
+ }
1051
+
1052
+ /**
1053
+ * Returns the link-out URI for objects of "The Arabidopsis Information Resource".
1054
+ */
1055
+ public static Resource TAIR() {
1056
+ return ResourceFactory.createResource("http://arabidopsis.org/servlets/TairObject?accession=");
1057
+ }
1058
+
1059
+ /**
1060
+ * Returns the link-out URI for objects of "NCBI Taxonomy".
1061
+ */
1062
+ public static Resource taxon() {
1063
+ return ResourceFactory.createResource("http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=");
1064
+ }
1065
+
1066
+ /**
1067
+ * Returns the link-out URI for objects of "Transport Protein Database".
1068
+ */
1069
+ public static Resource TC() {
1070
+ return ResourceFactory.createResource("http://www.tcdb.org/tcdb/index.php?tc=");
1071
+ }
1072
+
1073
+ /**
1074
+ * Returns the link-out URI for objects of "Tetrahymena Genome Database".
1075
+ */
1076
+ public static Resource TGD_LOCUS() {
1077
+ return ResourceFactory.createResource("http://db.ciliate.org/cgi-bin/locus.pl?locus=");
1078
+ }
1079
+
1080
+ /**
1081
+ * Returns the link-out URI for objects of "Tetrahymena Genome Database".
1082
+ */
1083
+ public static Resource TGD_REF() {
1084
+ return ResourceFactory.createResource("http://db.ciliate.org/cgi-bin/reference/reference.pl?dbid=");
1085
+ }
1086
+
1087
+ /**
1088
+ * Returns the link-out URI for objects of "UniProtKB-TrEMBL protein sequence database".
1089
+ */
1090
+ public static Resource TrEMBL() {
1091
+ return ResourceFactory.createResource("http://www.uniprot.org/uniprot/");
1092
+ }
1093
+
1094
+ /**
1095
+ * Returns the link-out URI for objects of "Uber-anatomy ontology".
1096
+ */
1097
+ public static Resource UBERON() {
1098
+ return ResourceFactory.createResource("http://purl.obolibrary.org/obo/UBERON_");
1099
+ }
1100
+
1101
+ /**
1102
+ * Returns the link-out URI for objects of "University of Minnesota Biocatalysis/Biodegradation Database".
1103
+ */
1104
+ public static Resource UM_BBD_enzymeID() {
1105
+ return ResourceFactory.createResource("http://umbbd.msi.umn.edu/servlets/pageservlet?ptype=ep&enzymeID=");
1106
+ }
1107
+
1108
+ /**
1109
+ * Returns the link-out URI for objects of "University of Minnesota Biocatalysis/Biodegradation Database".
1110
+ */
1111
+ public static Resource UM_BBD_reactionID() {
1112
+ return ResourceFactory.createResource("http://umbbd.msi.umn.edu/servlets/pageservlet?ptype=r&reacID=");
1113
+ }
1114
+
1115
+ /**
1116
+ * Returns the link-out URI for objects of "University of Minnesota Biocatalysis/Biodegradation Database".
1117
+ */
1118
+ public static Resource UM_BBD_ruleID() {
1119
+ return ResourceFactory.createResource("http://umbbd.msi.umn.edu/servlets/rule.jsp?rule=");
1120
+ }
1121
+
1122
+ /**
1123
+ * Returns the link-out URI for objects of "UniMod".
1124
+ */
1125
+ public static Resource UniMod() {
1126
+ return ResourceFactory.createResource("http://www.unimod.org/modifications_view.php?editid1=");
1127
+ }
1128
+
1129
+ /**
1130
+ * Returns the link-out URI for objects of "UniProt Archive".
1131
+ */
1132
+ public static Resource UniParc() {
1133
+ return ResourceFactory.createResource("http://www.uniprot.org/uniparc/");
1134
+ }
1135
+
1136
+ /**
1137
+ * Returns the link-out URI for objects of "UniPathway".
1138
+ */
1139
+ public static Resource UniPathway() {
1140
+ return ResourceFactory.createResource("http://www.grenoble.prabi.fr/obiwarehouse/unipathway/upa?upid=");
1141
+ }
1142
+
1143
+ /**
1144
+ * Returns the link-out URI for objects of "Universal Protein Knowledgebase".
1145
+ */
1146
+ public static Resource UniProtKB() {
1147
+ return ResourceFactory.createResource("http://www.uniprot.org/uniprot/");
1148
+ }
1149
+
1150
+ /**
1151
+ * Returns the link-out URI for objects of "UniProt Knowledgebase keywords".
1152
+ */
1153
+ public static Resource UniProtKB_KW() {
1154
+ return ResourceFactory.createResource("http://www.uniprot.org/keywords/");
1155
+ }
1156
+
1157
+ /**
1158
+ * Returns the link-out URI for objects of "UniProt Knowledgebase Subcellular Location vocabulary".
1159
+ */
1160
+ public static Resource UniProtKB_SubCell() {
1161
+ return ResourceFactory.createResource("http://www.uniprot.org/locations/");
1162
+ }
1163
+
1164
+ /**
1165
+ * Returns the link-out URI for objects of "Viral Bioinformatics Resource Center".
1166
+ */
1167
+ public static Resource VBRC() {
1168
+ return ResourceFactory.createResource("http://vbrc.org/query.asp?web_id=VBRC:");
1169
+ }
1170
+
1171
+ /**
1172
+ * Returns the link-out URI for objects of "Vertebrate Genome Annotation database".
1173
+ */
1174
+ public static Resource VEGA() {
1175
+ return ResourceFactory.createResource("http://vega.sanger.ac.uk/perl/searchview?species=all&idx=All&q=");
1176
+ }
1177
+
1178
+ /**
1179
+ * Returns the link-out URI for objects of "Virginia Bioinformatics Institute Microbial Database".
1180
+ */
1181
+ public static Resource VMD() {
1182
+ return ResourceFactory.createResource("http://vmd.vbi.vt.edu/cgi-bin/browse/browserDetail_new.cgi?gene_id=");
1183
+ }
1184
+
1185
+ /**
1186
+ * Returns the link-out URI for objects of "WormBase database of nematode biology".
1187
+ */
1188
+ public static Resource WB() {
1189
+ return ResourceFactory.createResource("http://www.wormbase.org/db/gene/gene?name=");
1190
+ }
1191
+
1192
+ /**
1193
+ * Returns the link-out URI for objects of "WormBase database of nematode biology".
1194
+ */
1195
+ public static Resource WB_REF() {
1196
+ return ResourceFactory.createResource("http://www.wormbase.org/db/misc/paper?name=");
1197
+ }
1198
+
1199
+ /**
1200
+ * Returns the link-out URI for objects of "Wikipedia".
1201
+ */
1202
+ public static Resource Wikipedia() {
1203
+ return ResourceFactory.createResource("http://en.wikipedia.org/wiki/");
1204
+ }
1205
+
1206
+ /**
1207
+ * Returns the link-out URI for objects of "Wormpep database of proteins of C. elegans".
1208
+ */
1209
+ public static Resource WP() {
1210
+ return ResourceFactory.createResource("http://www.wormbase.org/db/get?class=Protein;name=WP:");
1211
+ }
1212
+
1213
+ /**
1214
+ * Returns the link-out URI for objects of "Zebrafish Information Network".
1215
+ */
1216
+ public static Resource ZFIN() {
1217
+ return ResourceFactory.createResource("http://zfin.org/cgi-bin/ZFIN_jump?record=");
1218
+ }
1219
+
1220
+ }
1221
+