biointerchange 0.1.0 → 0.1.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 (45) hide show
  1. data/.travis.yml +3 -3
  2. data/Gemfile +2 -1
  3. data/README.md +192 -7
  4. data/Rakefile +1 -1
  5. data/VERSION +1 -1
  6. data/examples/vocabulary.rb +23 -0
  7. data/generators/javaify.rb +131 -0
  8. data/generators/pythonify.rb +67 -0
  9. data/generators/rdfxml.rb +152 -44
  10. data/lib/biointerchange/core.rb +2 -1
  11. data/lib/biointerchange/exceptions.rb +27 -0
  12. data/lib/biointerchange/genomics/gff3_rdf_ntriples.rb +21 -18
  13. data/lib/biointerchange/gff3o.rb +495 -0
  14. data/lib/biointerchange/gvf1o.rb +730 -0
  15. data/lib/biointerchange/registry.rb +2 -2
  16. data/lib/biointerchange/sio.rb +10951 -5845
  17. data/lib/biointerchange/sofa.rb +2171 -1300
  18. data/spec/exceptions_spec.rb +6 -0
  19. data/spec/gff3_rdfwriter_spec.rb +7 -1
  20. data/spec/text_mining_pdfx_xml_reader_spec.rb +6 -0
  21. data/spec/text_mining_pubannos_json_reader_spec.rb +6 -0
  22. data/spec/text_mining_rdfwriter_spec.rb +6 -0
  23. data/supplemental/java/biointerchange/pom.xml +45 -0
  24. data/supplemental/java/biointerchange/src/main/java/org/biointerchange/App.java +58 -0
  25. data/supplemental/java/biointerchange/src/main/java/org/biointerchange/AppSIO.java +49 -0
  26. data/supplemental/java/biointerchange/src/main/java/org/biointerchange/vocabulary/GFF3O.java +647 -0
  27. data/supplemental/java/biointerchange/src/main/java/org/biointerchange/vocabulary/GVF1O.java +946 -0
  28. data/supplemental/java/biointerchange/src/main/java/org/biointerchange/vocabulary/SIO.java +15390 -0
  29. data/supplemental/java/biointerchange/src/main/java/org/biointerchange/vocabulary/SOFA.java +2968 -0
  30. data/supplemental/java/biointerchange/src/test/java/org/biointerchange/AppTest.java +38 -0
  31. data/supplemental/python/biointerchange/__init__.py +4 -0
  32. data/supplemental/python/biointerchange/gff3o.py +581 -0
  33. data/supplemental/python/biointerchange/gvf1o.py +864 -0
  34. data/supplemental/python/biointerchange/sio.py +11772 -0
  35. data/supplemental/python/biointerchange/sofa.py +2422 -0
  36. data/supplemental/python/example.py +19 -0
  37. data/supplemental/python/setup.py +13 -0
  38. data/web/about.html +3 -0
  39. data/web/api.html +219 -0
  40. data/web/index.html +4 -3
  41. data/web/ontologies.html +109 -0
  42. data/web/webservices.html +1 -0
  43. metadata +144 -117
  44. data/docs/exceptions_readme.txt +0 -13
  45. data/lib/biointerchange/gff3.rb +0 -135
@@ -0,0 +1,946 @@
1
+ package org.biointerchange.vocabulary;
2
+
3
+ import java.util.Arrays;
4
+ import java.util.Map;
5
+ import java.util.HashMap;
6
+ import java.util.HashSet;
7
+ import java.util.Set;
8
+ import com.hp.hpl.jena.rdf.model.Property;
9
+ import com.hp.hpl.jena.rdf.model.Resource;
10
+ import com.hp.hpl.jena.rdf.model.ResourceFactory;
11
+ import org.apache.commons.collections.CollectionUtils;
12
+ import org.apache.commons.collections.Predicate;
13
+
14
+ public class GVF1O {
15
+
16
+ /**
17
+ * Strand of the feature.
18
+ * (http://www.biointerchange.org/gvf1o#GVF1_0010)
19
+ */
20
+ public static Resource strand() {
21
+ return _namespace_GVF1O("GVF1_0010");
22
+ }
23
+
24
+ /**
25
+ * Tag name/value pair attributes of a feature.
26
+ * (http://www.biointerchange.org/gvf1o#GVF1_0012)
27
+ */
28
+ public static Resource attributes() {
29
+ return _namespace_GVF1O("GVF1_0012");
30
+ }
31
+
32
+ /**
33
+ * Link out to the parent feature.
34
+ * (http://www.biointerchange.org/gvf1o#GVF1_0014)
35
+ */
36
+ public static Resource parent() {
37
+ return _namespace_GVF1O("GVF1_0014");
38
+ }
39
+
40
+ /**
41
+ * Relationship that describes which features belong to a feature set.
42
+ * (http://www.biointerchange.org/gvf1o#GVF1_0015)
43
+ */
44
+ public static Resource contains() {
45
+ return _namespace_GVF1O("GVF1_0015");
46
+ }
47
+
48
+ /**
49
+ * Either:
50
+ * FALDO "Region" instance replacement for a feature"s start, stop, strand properties.
51
+ * (http://www.biointerchange.org/gvf1o#GVF1_0021)
52
+ * Or:
53
+ * FALDO "Region" instance replacement for a breakpoint"s start, stop, strand properties.
54
+ * (http://www.biointerchange.org/gvf1o#GVF1_0079)
55
+ */
56
+ public static Set<Resource> region() {
57
+ return new HashSet<Resource>(Arrays.asList(new Resource[] { _namespace_GVF1O("GVF1_0021"), _namespace_GVF1O("GVF1_0079") }));
58
+ }
59
+
60
+ /**
61
+ * NCBI Taxonomy Ontology "NCBITaxon_1" (or sub-classes) instance that denotes the species for a feature set.
62
+ * (http://www.biointerchange.org/gvf1o#GVF1_0023)
63
+ */
64
+ public static Resource species() {
65
+ return _namespace_GVF1O("GVF1_0023");
66
+ }
67
+
68
+ /**
69
+ * Specific information about the variant(s) of a feature.
70
+ * (http://www.biointerchange.org/gvf1o#GVF1_0034)
71
+ */
72
+ public static Resource variant() {
73
+ return _namespace_GVF1O("GVF1_0034");
74
+ }
75
+
76
+ /**
77
+ * Links to information about an individual.
78
+ * (http://www.biointerchange.org/gvf1o#GVF1_0036)
79
+ */
80
+ public static Resource individual() {
81
+ return _namespace_GVF1O("GVF1_0036");
82
+ }
83
+
84
+ /**
85
+ * An effect of a particular feature variant.
86
+ * (http://www.biointerchange.org/gvf1o#GVF1_0041)
87
+ */
88
+ public static Resource effect() {
89
+ return _namespace_GVF1O("GVF1_0041");
90
+ }
91
+
92
+ /**
93
+ * Effect of a sequence alteration on a sequence feature.
94
+ * (http://www.biointerchange.org/gvf1o#GVF1_0042)
95
+ */
96
+ public static Resource sequence_variant() {
97
+ return _namespace_GVF1O("GVF1_0042");
98
+ }
99
+
100
+ /**
101
+ * A term that is describing the sequence feature that is being affected.
102
+ * (http://www.biointerchange.org/gvf1o#GVF1_0043)
103
+ */
104
+ public static Resource feature_type() {
105
+ return _namespace_GVF1O("GVF1_0043");
106
+ }
107
+
108
+ /**
109
+ * Features that are affected by this sequence alteration effect.
110
+ * (http://www.biointerchange.org/gvf1o#GVF1_0044)
111
+ */
112
+ public static Resource feature_id() {
113
+ return _namespace_GVF1O("GVF1_0044");
114
+ }
115
+
116
+ /**
117
+ * A coordinate range for ambiguous start coordinates.
118
+ * (http://www.biointerchange.org/gvf1o#GVF1_0046)
119
+ */
120
+ public static Resource start_range() {
121
+ return _namespace_GVF1O("GVF1_0046");
122
+ }
123
+
124
+ /**
125
+ * A coordinate range for ambiguous start coordinates.
126
+ * (http://www.biointerchange.org/gvf1o#GVF1_0047)
127
+ */
128
+ public static Resource end_range() {
129
+ return _namespace_GVF1O("GVF1_0047");
130
+ }
131
+
132
+ /**
133
+ * Denotes abstract chromosome representations for capturing variants that appear on the same chromosome of a polyploid organism.
134
+ * (http://www.biointerchange.org/gvf1o#GVF1_0051)
135
+ */
136
+ public static Resource chromosome() {
137
+ return _namespace_GVF1O("GVF1_0051");
138
+ }
139
+
140
+ /**
141
+ * Determines the genotype as observed in an individual.
142
+ * (http://www.biointerchange.org/gvf1o#GVF1_0053)
143
+ */
144
+ public static Resource genotype() {
145
+ return _namespace_GVF1O("GVF1_0053");
146
+ }
147
+
148
+ /**
149
+ * Either:
150
+ * Properties that are directly associated with Feature class instances.
151
+ * (http://www.biointerchange.org/gvf1o#GVF1_0066)
152
+ * Or:
153
+ * Properties that are directly associated with Feature class instances.
154
+ * (http://www.biointerchange.org/gvf1o#GVF1_0059)
155
+ */
156
+ public static Set<Resource> feature_properties() {
157
+ return new HashSet<Resource>(Arrays.asList(new Resource[] { _namespace_GVF1O("GVF1_0066"), _namespace_GVF1O("GVF1_0059") }));
158
+ }
159
+
160
+ /**
161
+ * Either:
162
+ * Properties that are directly associated with SequencedIndividual class instances.
163
+ * (http://www.biointerchange.org/gvf1o#GVF1_0067)
164
+ * Or:
165
+ * Properties that are directly associated with SequencedIndividual class instances.
166
+ * (http://www.biointerchange.org/gvf1o#GVF1_0065)
167
+ */
168
+ public static Set<Resource> sequencedindividual_properties() {
169
+ return new HashSet<Resource>(Arrays.asList(new Resource[] { _namespace_GVF1O("GVF1_0067"), _namespace_GVF1O("GVF1_0065") }));
170
+ }
171
+
172
+ /**
173
+ * Either:
174
+ * Properties that are directly associated with Set class instances.
175
+ * (http://www.biointerchange.org/gvf1o#GVF1_0068)
176
+ * Or:
177
+ * Properties that are directly associated with Set class instances.
178
+ * (http://www.biointerchange.org/gvf1o#GVF1_0063)
179
+ */
180
+ public static Set<Resource> set_properties() {
181
+ return new HashSet<Resource>(Arrays.asList(new Resource[] { _namespace_GVF1O("GVF1_0068"), _namespace_GVF1O("GVF1_0063") }));
182
+ }
183
+
184
+ /**
185
+ * Either:
186
+ * Properties that are directly associated with Variant class instances.
187
+ * (http://www.biointerchange.org/gvf1o#GVF1_0069)
188
+ * Or:
189
+ * Properties that are directly associated with Variant class instances.
190
+ * (http://www.biointerchange.org/gvf1o#GVF1_0060)
191
+ */
192
+ public static Set<Resource> variant_properties() {
193
+ return new HashSet<Resource>(Arrays.asList(new Resource[] { _namespace_GVF1O("GVF1_0069"), _namespace_GVF1O("GVF1_0060") }));
194
+ }
195
+
196
+ /**
197
+ * Properties that are directly associated with Effect class instances.
198
+ * (http://www.biointerchange.org/gvf1o#GVF1_0070)
199
+ */
200
+ public static Resource effect_properties() {
201
+ return _namespace_GVF1O("GVF1_0070");
202
+ }
203
+
204
+ /**
205
+ * Either:
206
+ * Properties that are directly associated with Breakpoint class instances.
207
+ * (http://www.biointerchange.org/gvf1o#GVF1_0075)
208
+ * Or:
209
+ * Properties that are directly associated with Breakpoint class instances.
210
+ * (http://www.biointerchange.org/gvf1o#GVF1_0071)
211
+ */
212
+ public static Set<Resource> breakpoint_properties() {
213
+ return new HashSet<Resource>(Arrays.asList(new Resource[] { _namespace_GVF1O("GVF1_0075"), _namespace_GVF1O("GVF1_0071") }));
214
+ }
215
+
216
+ /**
217
+ * A database cross-reference to associate a sequence alteration to its representation in another database.
218
+ * (http://www.biointerchange.org/gvf1o#GVF1_0078)
219
+ */
220
+ public static Resource dbxref() {
221
+ return _namespace_GVF1O("GVF1_0078");
222
+ }
223
+
224
+ /**
225
+ * Either:
226
+ * ID of the landmark that establishes the coordinate system for a feature.
227
+ * (http://www.biointerchange.org/gvf1o#GVF1_0004)
228
+ * Or:
229
+ * ID of the landmark that establishes the coordinate system for a breakpoint.
230
+ * (http://www.biointerchange.org/gvf1o#GVF1_0072)
231
+ */
232
+ public static Set<Resource> seqid() {
233
+ return new HashSet<Resource>(Arrays.asList(new Resource[] { _namespace_GVF1O("GVF1_0004"), _namespace_GVF1O("GVF1_0072") }));
234
+ }
235
+
236
+ /**
237
+ * A free text qualifier that describes the algorithm or operating procedure that generated this feature. For example, the name of the software that generated this feature or a database name.
238
+ * (http://www.biointerchange.org/gvf1o#GVF1_0005)
239
+ */
240
+ public static Resource source() {
241
+ return _namespace_GVF1O("GVF1_0005");
242
+ }
243
+
244
+ /**
245
+ * Type of the feature, which is either a term from the "lite" version of the Sequence Ontology (SOFA), a term from the full Sequence Ontology (SO) that is a child of sequence_feature (SO:0000110), or a SOFA or SO accession number.
246
+ * (http://www.biointerchange.org/gvf1o#GVF1_0006)
247
+ */
248
+ public static Resource type() {
249
+ return _namespace_GVF1O("GVF1_0006");
250
+ }
251
+
252
+ /**
253
+ * Either:
254
+ * Start coordinate of the feature on the seqid landmark.
255
+ * (http://www.biointerchange.org/gvf1o#GVF1_0007)
256
+ * Or:
257
+ * A coordinate that defines the start of an ambiguous coordinate range.
258
+ * (http://www.biointerchange.org/gvf1o#GVF1_0048)
259
+ * Or:
260
+ * Start coordinate of the feature on the seqid landmark.
261
+ * (http://www.biointerchange.org/gvf1o#GVF1_0073)
262
+ */
263
+ public static Set<Resource> start() {
264
+ return new HashSet<Resource>(Arrays.asList(new Resource[] { _namespace_GVF1O("GVF1_0007"), _namespace_GVF1O("GVF1_0048"), _namespace_GVF1O("GVF1_0073") }));
265
+ }
266
+
267
+ /**
268
+ * Either:
269
+ * End coordinate of the feature on the seqid landmark.
270
+ * (http://www.biointerchange.org/gvf1o#GVF1_0008)
271
+ * Or:
272
+ * A coordinate that defines the end of an ambiguous coordinate range.
273
+ * (http://www.biointerchange.org/gvf1o#GVF1_0049)
274
+ * Or:
275
+ * End coordinate of the feature on the seqid landmark.
276
+ * (http://www.biointerchange.org/gvf1o#GVF1_0074)
277
+ */
278
+ public static Set<Resource> end() {
279
+ return new HashSet<Resource>(Arrays.asList(new Resource[] { _namespace_GVF1O("GVF1_0008"), _namespace_GVF1O("GVF1_0049"), _namespace_GVF1O("GVF1_0074") }));
280
+ }
281
+
282
+ /**
283
+ * Score of the feature. For example, an E-value for sequence similarity features or a P-value for ab initio gene prediction features.
284
+ * (http://www.biointerchange.org/gvf1o#GVF1_0009)
285
+ */
286
+ public static Resource score() {
287
+ return _namespace_GVF1O("GVF1_0009");
288
+ }
289
+
290
+ /**
291
+ * Tag name of a feature attribute.
292
+ * (http://www.biointerchange.org/gvf1o#GVF1_0013)
293
+ */
294
+ public static Resource tag() {
295
+ return _namespace_GVF1O("GVF1_0013");
296
+ }
297
+
298
+ /**
299
+ * Version of the GVF specification that defines the feature set contents.
300
+ * (http://www.biointerchange.org/gvf1o#GVF1_0022)
301
+ */
302
+ public static Resource version() {
303
+ return _namespace_GVF1O("GVF1_0022");
304
+ }
305
+
306
+ /**
307
+ * Name of a genome assembly build that denotes the provenance of features in a feature set. For example, "NCBI 36" or "FlyBase r4.1".
308
+ * (http://www.biointerchange.org/gvf1o#GVF1_0024)
309
+ */
310
+ public static Resource build() {
311
+ return _namespace_GVF1O("GVF1_0024");
312
+ }
313
+
314
+ /**
315
+ * All sequence variations at a locus -- including the reference sequence when appropriate (for example, when the locus is heterozygous). If the feature is on the minus strand, then the sequence is the reverse-compliment of the reference genome for these coordinates.
316
+ * (http://www.biointerchange.org/gvf1o#GVF1_0025)
317
+ */
318
+ public static Resource variant_seq() {
319
+ return _namespace_GVF1O("GVF1_0025");
320
+ }
321
+
322
+ /**
323
+ * A unique identifier for the feature within the feature set.
324
+ * (http://www.biointerchange.org/gvf1o#GVF1_0026)
325
+ */
326
+ public static Resource id() {
327
+ return _namespace_GVF1O("GVF1_0026");
328
+ }
329
+
330
+ /**
331
+ * Secondary name of a feature, which can be HGVS/ISCN nomenclature names, but not cross-references to databases (e.g. dbSNP, OMIM) which should use the dbxref property.
332
+ * (http://www.biointerchange.org/gvf1o#GVF1_0027)
333
+ */
334
+ public static Resource alias() {
335
+ return _namespace_GVF1O("GVF1_0027");
336
+ }
337
+
338
+ /**
339
+ * Name of an external database. For example, "dbSNP" or "OMIM".
340
+ * (http://www.biointerchange.org/gvf1o#GVF1_0029)
341
+ */
342
+ public static Resource name() {
343
+ return _namespace_GVF1O("GVF1_0029");
344
+ }
345
+
346
+ /**
347
+ * External database identifier. For example, for dbSNP, this identifier could be "rs3131969".
348
+ * (http://www.biointerchange.org/gvf1o#GVF1_0030)
349
+ */
350
+ public static Resource xref() {
351
+ return _namespace_GVF1O("GVF1_0030");
352
+ }
353
+
354
+ /**
355
+ * Sequence from the reference genome.
356
+ * (http://www.biointerchange.org/gvf1o#GVF1_0031)
357
+ */
358
+ public static Resource reference_seq() {
359
+ return _namespace_GVF1O("GVF1_0031");
360
+ }
361
+
362
+ /**
363
+ * Number of reads that are supporting this variant.
364
+ * (http://www.biointerchange.org/gvf1o#GVF1_0032)
365
+ */
366
+ public static Resource variant_reads() {
367
+ return _namespace_GVF1O("GVF1_0032");
368
+ }
369
+
370
+ /**
371
+ * Total number of reads.
372
+ * (http://www.biointerchange.org/gvf1o#GVF1_0037)
373
+ */
374
+ public static Resource total_reads() {
375
+ return _namespace_GVF1O("GVF1_0037");
376
+ }
377
+
378
+ /**
379
+ * Zygosity of a feature locus.
380
+ * (http://www.biointerchange.org/gvf1o#GVF1_0038)
381
+ */
382
+ public static Resource zygosity() {
383
+ return _namespace_GVF1O("GVF1_0038");
384
+ }
385
+
386
+ /**
387
+ * Frequency of a variant in a population.
388
+ * (http://www.biointerchange.org/gvf1o#GVF1_0039)
389
+ */
390
+ public static Resource variant_freq() {
391
+ return _namespace_GVF1O("GVF1_0039");
392
+ }
393
+
394
+ /**
395
+ * Unclear from GVF specification.
396
+ * (http://www.biointerchange.org/gvf1o#GVF1_0050)
397
+ */
398
+ public static Resource phased() {
399
+ return _namespace_GVF1O("GVF1_0050");
400
+ }
401
+
402
+ /**
403
+ * Describes the codon that overlaps this variant.
404
+ * (http://www.biointerchange.org/gvf1o#GVF1_0054)
405
+ */
406
+ public static Resource variant_codon() {
407
+ return _namespace_GVF1O("GVF1_0054");
408
+ }
409
+
410
+ /**
411
+ * Describes the codon from the reference sequence whose coordinates overlap with this variant.
412
+ * (http://www.biointerchange.org/gvf1o#GVF1_0055)
413
+ */
414
+ public static Resource reference_codon() {
415
+ return _namespace_GVF1O("GVF1_0055");
416
+ }
417
+
418
+ /**
419
+ * Amino acid that overlaps with the variant.
420
+ * (http://www.biointerchange.org/gvf1o#GVF1_0056)
421
+ */
422
+ public static Resource variant_aa() {
423
+ return _namespace_GVF1O("GVF1_0056");
424
+ }
425
+
426
+ /**
427
+ * Amino acid in the reference genome that overlaps with a variant"s genome coordinates.
428
+ * (http://www.biointerchange.org/gvf1o#GVF1_0057)
429
+ */
430
+ public static Resource reference_aa() {
431
+ return _namespace_GVF1O("GVF1_0057");
432
+ }
433
+
434
+ /**
435
+ * Properties that are directly associated with Range class instances.
436
+ * (http://www.biointerchange.org/gvf1o#GVF1_0061)
437
+ */
438
+ public static Resource range_properties() {
439
+ return _namespace_GVF1O("GVF1_0061");
440
+ }
441
+
442
+ /**
443
+ * Properties that are directly associated with DBXRef class instances.
444
+ * (http://www.biointerchange.org/gvf1o#GVF1_0062)
445
+ */
446
+ public static Resource dbxref_properties() {
447
+ return _namespace_GVF1O("GVF1_0062");
448
+ }
449
+
450
+ /**
451
+ * Properties that are directly associated with Attribute class instances.
452
+ * (http://www.biointerchange.org/gvf1o#GVF1_0064)
453
+ */
454
+ public static Resource attribute_properties() {
455
+ return _namespace_GVF1O("GVF1_0064");
456
+ }
457
+
458
+ /**
459
+ * Sequence context (positive strand) of a feature on the 5" end.
460
+ * (http://www.biointerchange.org/gvf1o#GVF1_0076)
461
+ */
462
+ public static Resource a_context() {
463
+ return _namespace_GVF1O("GVF1_0076");
464
+ }
465
+
466
+ /**
467
+ * Set of genomic sequence features, whose identifiers are unique within the set.
468
+ * (http://www.biointerchange.org/gvf1o#GVF1_0001)
469
+ */
470
+ public static Resource Set() {
471
+ return _namespace_GVF1O("GVF1_0001");
472
+ }
473
+
474
+ /**
475
+ * A genomic sequence feature.
476
+ * (http://www.biointerchange.org/gvf1o#GVF1_0002)
477
+ */
478
+ public static Resource Feature() {
479
+ return _namespace_GVF1O("GVF1_0002");
480
+ }
481
+
482
+ public static Resource Attribute() {
483
+ return _namespace_GVF1O("GVF1_0003");
484
+ }
485
+
486
+ /**
487
+ * Class describing a genomic strand. Instances of the class (individuals) are used to denote forward-/reverse-strands, etc.
488
+ * (http://www.biointerchange.org/gvf1o#GVF1_0016)
489
+ */
490
+ public static Resource Strand() {
491
+ return _namespace_GVF1O("GVF1_0016");
492
+ }
493
+
494
+ /**
495
+ * A class describing relationships between features and external databases.
496
+ * (http://www.biointerchange.org/gvf1o#GVF1_0028)
497
+ */
498
+ public static Resource DBXRef() {
499
+ return _namespace_GVF1O("GVF1_0028");
500
+ }
501
+
502
+ /**
503
+ * Describing specific alterations of a feature.
504
+ * (http://www.biointerchange.org/gvf1o#GVF1_0033)
505
+ */
506
+ public static Resource Variant() {
507
+ return _namespace_GVF1O("GVF1_0033");
508
+ }
509
+
510
+ /**
511
+ * Aggregated sequencing information for a particular individual.
512
+ * (http://www.biointerchange.org/gvf1o#GVF1_0035)
513
+ */
514
+ public static Resource SequencedIndividual() {
515
+ return _namespace_GVF1O("GVF1_0035");
516
+ }
517
+
518
+ /**
519
+ * Describing the effect of a feature variant.
520
+ * (http://www.biointerchange.org/gvf1o#GVF1_0040)
521
+ */
522
+ public static Resource Effect() {
523
+ return _namespace_GVF1O("GVF1_0040");
524
+ }
525
+
526
+ /**
527
+ * Describe ambiguity in either start or end coordinates.
528
+ * (http://www.biointerchange.org/gvf1o#GVF1_0045)
529
+ */
530
+ public static Resource Range() {
531
+ return _namespace_GVF1O("GVF1_0045");
532
+ }
533
+
534
+ /**
535
+ * An abstract representation of a chromosome to represent ploidy.
536
+ * (http://www.biointerchange.org/gvf1o#GVF1_0052)
537
+ */
538
+ public static Resource Chromosome() {
539
+ return _namespace_GVF1O("GVF1_0052");
540
+ }
541
+
542
+ /**
543
+ * Describes the source or destination of a zero-length sequence alteration.
544
+ * (http://www.biointerchange.org/gvf1o#GVF1_0058)
545
+ */
546
+ public static Resource Breakpoint() {
547
+ return _namespace_GVF1O("GVF1_0058");
548
+ }
549
+
550
+ /**
551
+ * Location on the positive (forward) strand.
552
+ * (http://www.biointerchange.org/gvf1o#GVF1_0017)
553
+ */
554
+ public static Resource Positive() {
555
+ return _namespace_GVF1O("GVF1_0017");
556
+ }
557
+
558
+ /**
559
+ * Location on the negative (reverse) strand.
560
+ * (http://www.biointerchange.org/gvf1o#GVF1_0018)
561
+ */
562
+ public static Resource Negative() {
563
+ return _namespace_GVF1O("GVF1_0018");
564
+ }
565
+
566
+ /**
567
+ * Strand was not determined, which leaves it open whether the location is on the positive (forward) or negative (reverse) strand.
568
+ * (http://www.biointerchange.org/gvf1o#GVF1_0019)
569
+ */
570
+ public static Resource UnknownStrand() {
571
+ return _namespace_GVF1O("GVF1_0019");
572
+ }
573
+
574
+ /**
575
+ * Strand is not applicable.
576
+ * (http://www.biointerchange.org/gvf1o#GVF1_0020)
577
+ */
578
+ public static Resource NotStranded() {
579
+ return _namespace_GVF1O("GVF1_0020");
580
+ }
581
+
582
+ /**
583
+ * Determines whether the given URI is an object property.
584
+ *
585
+ * @param uri URI that is tested for being an object property
586
+ */
587
+ public static boolean isObjectProperty(Resource uri) {
588
+ if (uri.equals(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0010"))) {
589
+ return true;
590
+ }
591
+ if (uri.equals(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0012"))) {
592
+ return true;
593
+ }
594
+ if (uri.equals(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0014"))) {
595
+ return true;
596
+ }
597
+ if (uri.equals(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0015"))) {
598
+ return true;
599
+ }
600
+ if (uri.equals(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0021"))) {
601
+ return true;
602
+ }
603
+ if (uri.equals(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0023"))) {
604
+ return true;
605
+ }
606
+ if (uri.equals(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0034"))) {
607
+ return true;
608
+ }
609
+ if (uri.equals(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0036"))) {
610
+ return true;
611
+ }
612
+ if (uri.equals(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0041"))) {
613
+ return true;
614
+ }
615
+ if (uri.equals(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0042"))) {
616
+ return true;
617
+ }
618
+ if (uri.equals(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0043"))) {
619
+ return true;
620
+ }
621
+ if (uri.equals(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0044"))) {
622
+ return true;
623
+ }
624
+ if (uri.equals(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0046"))) {
625
+ return true;
626
+ }
627
+ if (uri.equals(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0047"))) {
628
+ return true;
629
+ }
630
+ if (uri.equals(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0051"))) {
631
+ return true;
632
+ }
633
+ if (uri.equals(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0053"))) {
634
+ return true;
635
+ }
636
+ if (uri.equals(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0066"))) {
637
+ return true;
638
+ }
639
+ if (uri.equals(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0067"))) {
640
+ return true;
641
+ }
642
+ if (uri.equals(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0068"))) {
643
+ return true;
644
+ }
645
+ if (uri.equals(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0069"))) {
646
+ return true;
647
+ }
648
+ if (uri.equals(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0070"))) {
649
+ return true;
650
+ }
651
+ if (uri.equals(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0075"))) {
652
+ return true;
653
+ }
654
+ if (uri.equals(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0078"))) {
655
+ return true;
656
+ }
657
+ if (uri.equals(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0079"))) {
658
+ return true;
659
+ }
660
+ return false;
661
+ }
662
+
663
+ /**
664
+ * Determines whether the given URI is a datatype property.
665
+ *
666
+ * @param uri URI that is tested for being a datatype property
667
+ */
668
+ public static boolean isDatatypeProperty(Resource uri) {
669
+ if (uri.equals(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0004"))) {
670
+ return true;
671
+ }
672
+ if (uri.equals(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0005"))) {
673
+ return true;
674
+ }
675
+ if (uri.equals(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0006"))) {
676
+ return true;
677
+ }
678
+ if (uri.equals(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0007"))) {
679
+ return true;
680
+ }
681
+ if (uri.equals(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0008"))) {
682
+ return true;
683
+ }
684
+ if (uri.equals(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0009"))) {
685
+ return true;
686
+ }
687
+ if (uri.equals(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0013"))) {
688
+ return true;
689
+ }
690
+ if (uri.equals(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0022"))) {
691
+ return true;
692
+ }
693
+ if (uri.equals(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0024"))) {
694
+ return true;
695
+ }
696
+ if (uri.equals(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0025"))) {
697
+ return true;
698
+ }
699
+ if (uri.equals(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0026"))) {
700
+ return true;
701
+ }
702
+ if (uri.equals(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0027"))) {
703
+ return true;
704
+ }
705
+ if (uri.equals(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0029"))) {
706
+ return true;
707
+ }
708
+ if (uri.equals(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0030"))) {
709
+ return true;
710
+ }
711
+ if (uri.equals(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0031"))) {
712
+ return true;
713
+ }
714
+ if (uri.equals(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0032"))) {
715
+ return true;
716
+ }
717
+ if (uri.equals(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0037"))) {
718
+ return true;
719
+ }
720
+ if (uri.equals(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0038"))) {
721
+ return true;
722
+ }
723
+ if (uri.equals(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0039"))) {
724
+ return true;
725
+ }
726
+ if (uri.equals(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0048"))) {
727
+ return true;
728
+ }
729
+ if (uri.equals(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0049"))) {
730
+ return true;
731
+ }
732
+ if (uri.equals(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0050"))) {
733
+ return true;
734
+ }
735
+ if (uri.equals(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0054"))) {
736
+ return true;
737
+ }
738
+ if (uri.equals(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0055"))) {
739
+ return true;
740
+ }
741
+ if (uri.equals(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0056"))) {
742
+ return true;
743
+ }
744
+ if (uri.equals(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0057"))) {
745
+ return true;
746
+ }
747
+ if (uri.equals(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0059"))) {
748
+ return true;
749
+ }
750
+ if (uri.equals(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0060"))) {
751
+ return true;
752
+ }
753
+ if (uri.equals(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0061"))) {
754
+ return true;
755
+ }
756
+ if (uri.equals(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0062"))) {
757
+ return true;
758
+ }
759
+ if (uri.equals(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0063"))) {
760
+ return true;
761
+ }
762
+ if (uri.equals(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0064"))) {
763
+ return true;
764
+ }
765
+ if (uri.equals(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0065"))) {
766
+ return true;
767
+ }
768
+ if (uri.equals(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0071"))) {
769
+ return true;
770
+ }
771
+ if (uri.equals(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0072"))) {
772
+ return true;
773
+ }
774
+ if (uri.equals(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0073"))) {
775
+ return true;
776
+ }
777
+ if (uri.equals(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0074"))) {
778
+ return true;
779
+ }
780
+ if (uri.equals(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0076"))) {
781
+ return true;
782
+ }
783
+ if (uri.equals(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0077"))) {
784
+ return true;
785
+ }
786
+ return false;
787
+ }
788
+
789
+ /**
790
+ * Determines whether the given URI is a class.
791
+ *
792
+ * @param uri URI that is tested for being a class
793
+ */
794
+ public static boolean isClass(Resource uri) {
795
+ if (uri.equals(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0001"))) {
796
+ return true;
797
+ }
798
+ if (uri.equals(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0002"))) {
799
+ return true;
800
+ }
801
+ if (uri.equals(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0003"))) {
802
+ return true;
803
+ }
804
+ if (uri.equals(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0016"))) {
805
+ return true;
806
+ }
807
+ if (uri.equals(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0028"))) {
808
+ return true;
809
+ }
810
+ if (uri.equals(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0033"))) {
811
+ return true;
812
+ }
813
+ if (uri.equals(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0035"))) {
814
+ return true;
815
+ }
816
+ if (uri.equals(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0040"))) {
817
+ return true;
818
+ }
819
+ if (uri.equals(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0045"))) {
820
+ return true;
821
+ }
822
+ if (uri.equals(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0052"))) {
823
+ return true;
824
+ }
825
+ if (uri.equals(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0058"))) {
826
+ return true;
827
+ }
828
+ return false;
829
+ }
830
+
831
+ /**
832
+ * Determines whether the given URI is a named individual.
833
+ *
834
+ * @param uri URI that is tested for being a named individual
835
+ */
836
+ public static boolean isNamedIndividual(Resource uri) {
837
+ if (uri.equals(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0017"))) {
838
+ return true;
839
+ }
840
+ if (uri.equals(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0018"))) {
841
+ return true;
842
+ }
843
+ if (uri.equals(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0019"))) {
844
+ return true;
845
+ }
846
+ if (uri.equals(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0020"))) {
847
+ return true;
848
+ }
849
+ return false;
850
+ }
851
+
852
+ /**
853
+ * Returns only those URIs that fall under a designated parent URI.
854
+ *
855
+ * @param uris Set of URIs that are tested whether they have the given parent URI.
856
+ * @param parent Parent URI.
857
+ */
858
+ public static Set<Resource> withParent(Set<Resource> uris, final Resource parent) {
859
+ return new HashSet<Resource>(CollectionUtils.select(uris, new Predicate() { public boolean evaluate(Object uri) { return hasParent((Resource)uri, parent); } }));
860
+ }
861
+
862
+ /**
863
+ * Recursively tries to determine the parent for a given URI.
864
+ *
865
+ * @param uri URI that is tested for whether it has the given parent URI.
866
+ * @param parent Parent URI.
867
+ */
868
+ public static boolean hasParent(Resource uri, Resource parent) {
869
+ if (__parent_properties.containsKey(uri)) {
870
+ if (__parent_properties.get(uri).equals(parent)) {
871
+ return true;
872
+ }
873
+ return hasParent((Resource)__parent_properties.get(uri), parent);
874
+ }
875
+ return false;
876
+ }
877
+
878
+ private static Resource _namespace_GVF1O(String accession) {
879
+ if (isClass(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#" + accession))) {
880
+ return ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#" + accession);
881
+ } else {
882
+ return ResourceFactory.createProperty("http://www.biointerchange.org/gvf1o#" + accession);
883
+ }
884
+ }
885
+
886
+
887
+ private static Map<Resource, Resource> __parent_properties = _init___parent_properties();
888
+
889
+ private static Map<Resource, Resource> _init___parent_properties() {
890
+ Map<Resource, Resource> map = new HashMap<Resource, Resource>();
891
+
892
+ map.put(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0031"), ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0059"));
893
+ map.put(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0009"), ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0059"));
894
+ map.put(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0053"), ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0069"));
895
+ map.put(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0042"), ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0070"));
896
+ map.put(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0076"), ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0059"));
897
+ map.put(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0054"), ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0060"));
898
+ map.put(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0032"), ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0060"));
899
+ map.put(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0043"), ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0070"));
900
+ map.put(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0021"), ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0066"));
901
+ map.put(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0010"), ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0075"));
902
+ map.put(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0077"), ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0059"));
903
+ map.put(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0055"), ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0060"));
904
+ map.put(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0022"), ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0063"));
905
+ map.put(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0044"), ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0070"));
906
+ map.put(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0056"), ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0060"));
907
+ map.put(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0078"), ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0066"));
908
+ map.put(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0034"), ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0066"));
909
+ map.put(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0023"), ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0068"));
910
+ map.put(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0012"), ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0066"));
911
+ map.put(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0057"), ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0060"));
912
+ map.put(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0024"), ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0063"));
913
+ map.put(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0013"), ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0064"));
914
+ map.put(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0079"), ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0075"));
915
+ map.put(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0046"), ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0070"));
916
+ map.put(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0025"), ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0060"));
917
+ map.put(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0047"), ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0070"));
918
+ map.put(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0036"), ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0066"));
919
+ map.put(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0014"), ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0066"));
920
+ map.put(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0048"), ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0061"));
921
+ map.put(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0037"), ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0065"));
922
+ map.put(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0026"), ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0059"));
923
+ map.put(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0004"), ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0059"));
924
+ map.put(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0015"), ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0068"));
925
+ map.put(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0049"), ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0061"));
926
+ map.put(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0038"), ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0059"));
927
+ map.put(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0027"), ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0059"));
928
+ map.put(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0005"), ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0059"));
929
+ map.put(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0072"), ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0071"));
930
+ map.put(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0050"), ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0060"));
931
+ map.put(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0039"), ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0060"));
932
+ map.put(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0006"), ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0059"));
933
+ map.put(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0073"), ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0071"));
934
+ map.put(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0029"), ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0062"));
935
+ map.put(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0007"), ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0059"));
936
+ map.put(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0051"), ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0067"));
937
+ map.put(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0074"), ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0071"));
938
+ map.put(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0030"), ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0062"));
939
+ map.put(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0008"), ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0059"));
940
+ map.put(ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0041"), ResourceFactory.createResource("http://www.biointerchange.org/gvf1o#GVF1_0069"));
941
+
942
+ return map;
943
+ }
944
+
945
+
946
+ }