biointerchange 1.0.1 → 1.0.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 (54) hide show
  1. checksums.yaml +4 -4
  2. data/.travis.yml +2 -4
  3. data/Gemfile +2 -3
  4. data/README.md +36 -22
  5. data/VERSION +1 -1
  6. data/examples/Felis_catus.gvf.gz +0 -0
  7. data/examples/Felis_catus_incl_consequences.vcf.gz +0 -0
  8. data/generators/rdfxml.rb +1 -1
  9. data/generators/tsv2rubyclass.rb +31 -0
  10. data/lib/biointerchange/core.rb +17 -5
  11. data/lib/biointerchange/genomics/gff3_rdf_ntriples.rb +591 -137
  12. data/lib/biointerchange/genomics/gff3_reader.rb +16 -3
  13. data/lib/biointerchange/genomics/gvf_reader.rb +1 -1
  14. data/lib/biointerchange/genomics/vcf_feature.rb +46 -0
  15. data/lib/biointerchange/genomics/vcf_feature_set.rb +14 -0
  16. data/lib/biointerchange/genomics/vcf_reader.rb +238 -0
  17. data/lib/biointerchange/gfvo.rb +689 -553
  18. data/lib/biointerchange/life_science_registry.rb +3595 -0
  19. data/lib/biointerchange/textmining/text_mining_rdf_ntriples.rb +33 -35
  20. data/lib/biointerchange/writer.rb +11 -16
  21. data/make.sh +4 -0
  22. data/spec/exceptions_spec.rb +1 -7
  23. data/spec/gff3_rdfwriter_spec.rb +2 -16
  24. data/spec/gvf_rdfwriter_spec.rb +2 -19
  25. data/spec/phylogenetics_spec.rb +1 -13
  26. data/spec/text_mining_pdfx_xml_reader_spec.rb +1 -13
  27. data/spec/text_mining_pubannos_json_reader_spec.rb +1 -14
  28. data/spec/text_mining_rdfwriter_spec.rb +8 -19
  29. data/test.sh +4 -0
  30. data/web/about.html +10 -14
  31. data/web/api.html +11 -13
  32. data/web/bootstrap/css/bootstrap-theme.css +347 -0
  33. data/web/bootstrap/css/bootstrap-theme.css.map +1 -0
  34. data/web/bootstrap/css/bootstrap-theme.min.css +7 -0
  35. data/web/bootstrap/css/bootstrap.css +4764 -4603
  36. data/web/bootstrap/css/bootstrap.css.map +1 -0
  37. data/web/bootstrap/css/bootstrap.min.css +6 -8
  38. data/web/bootstrap/fonts/glyphicons-halflings-regular.eot +0 -0
  39. data/web/bootstrap/fonts/glyphicons-halflings-regular.svg +229 -0
  40. data/web/bootstrap/fonts/glyphicons-halflings-regular.ttf +0 -0
  41. data/web/bootstrap/fonts/glyphicons-halflings-regular.woff +0 -0
  42. data/web/bootstrap/js/bootstrap.js +1372 -1448
  43. data/web/bootstrap/js/bootstrap.min.js +5 -5
  44. data/web/cli.html +14 -28
  45. data/web/index.html +15 -33
  46. data/web/ontologies.html +1089 -945
  47. data/web/webservices.html +12 -14
  48. metadata +24 -27
  49. data/lib/biointerchange/gff3o.rb +0 -525
  50. data/lib/biointerchange/gvf1o.rb +0 -1354
  51. data/web/bootstrap/css/bootstrap-responsive.css +0 -1040
  52. data/web/bootstrap/css/bootstrap-responsive.min.css +0 -9
  53. data/web/bootstrap/img/glyphicons-halflings-white.png +0 -0
  54. data/web/bootstrap/img/glyphicons-halflings.png +0 -0
@@ -1,1354 +0,0 @@
1
- module BioInterchange
2
-
3
- class GVF1O
4
-
5
- # Either:
6
- # Establishes the landmark (e.g. a chromosome) on which a feature is located.
7
- # (http://www.biointerchange.org/gvf1o#GVF1_0004)
8
- # Or:
9
- # Link to the landmark that establishes the coordinate system for the breakpoint.
10
- # (http://www.biointerchange.org/gvf1o#GVF1_0072)
11
- def self.seqid
12
- return [ RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0004'), RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0072') ]
13
- end
14
-
15
- # Either:
16
- # Strand of the feature.
17
- # (http://www.biointerchange.org/gvf1o#GVF1_0010)
18
- # Or:
19
- # Strand of the breakpoint.
20
- # (http://www.biointerchange.org/gvf1o#GVF1_0083)
21
- # Or:
22
- # Strand of a target -- if applicable.
23
- # (http://www.biointerchange.org/gvf1o#GVF1_0091)
24
- def self.strand
25
- return [ RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0010'), RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0083'), RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0091') ]
26
- end
27
-
28
- # Either:
29
- # Tag name/value pair attributes of a feature.
30
- # (http://www.biointerchange.org/gvf1o#GVF1_0012)
31
- # Or:
32
- # Tag name/value pair attributes that are not captured by the GVF specification.
33
- # (http://www.biointerchange.org/gvf1o#GVF1_0152)
34
- def self.attributes
35
- return [ RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0012'), RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0152') ]
36
- end
37
-
38
- # Link out to the parent feature.
39
- # (http://www.biointerchange.org/gvf1o#GVF1_0014)
40
- def self.parent
41
- return RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0014')
42
- end
43
-
44
- # Relationship that describes which features belong to a feature set.
45
- # (http://www.biointerchange.org/gvf1o#GVF1_0015)
46
- def self.contains
47
- return RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0015')
48
- end
49
-
50
- # Either:
51
- # FALDO "Region" instance replacement for a feature's start, stop, strand properties.
52
- # (http://www.biointerchange.org/gvf1o#GVF1_0021)
53
- # Or:
54
- # FALDO "Region" instance replacement for a breakpoint's start, stop, strand properties.
55
- # (http://www.biointerchange.org/gvf1o#GVF1_0079)
56
- # Or:
57
- # FALDO "Region" instance replacement for a target's start, stop, strand properties.
58
- # (http://www.biointerchange.org/gvf1o#GVF1_0090)
59
- def self.region
60
- return [ RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0021'), RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0079'), RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0090') ]
61
- end
62
-
63
- # NCBI Taxonomy Ontology "NCBITaxon_1" (or sub-classes) instance that denotes the species for a feature set.
64
- # (http://www.biointerchange.org/gvf1o#GVF1_0023)
65
- def self.species
66
- return RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0023')
67
- end
68
-
69
- # Specific information about the variant(s) of a feature.
70
- # (http://www.biointerchange.org/gvf1o#GVF1_0034)
71
- def self.variant
72
- return RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0034')
73
- end
74
-
75
- # Links to information about an individual.
76
- # (http://www.biointerchange.org/gvf1o#GVF1_0036)
77
- def self.individual
78
- return RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0036')
79
- end
80
-
81
- # Zygosity of a variant.
82
- # (http://www.biointerchange.org/gvf1o#GVF1_0038)
83
- def self.zygosity
84
- return RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0038')
85
- end
86
-
87
- # An effect of a particular feature variant.
88
- # (http://www.biointerchange.org/gvf1o#GVF1_0041)
89
- def self.effect
90
- return RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0041')
91
- end
92
-
93
- # Effect of a sequence alteration on a sequence feature.
94
- # (http://www.biointerchange.org/gvf1o#GVF1_0042)
95
- def self.sequence_variant
96
- return RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0042')
97
- end
98
-
99
- # A term that is describing the sequence feature that is being affected.
100
- # (http://www.biointerchange.org/gvf1o#GVF1_0043)
101
- def self.feature_type
102
- return RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0043')
103
- end
104
-
105
- # A coordinate range for ambiguous start coordinates.
106
- # (http://www.biointerchange.org/gvf1o#GVF1_0046)
107
- def self.start_range
108
- return RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0046')
109
- end
110
-
111
- # A coordinate range for ambiguous start coordinates.
112
- # (http://www.biointerchange.org/gvf1o#GVF1_0047)
113
- def self.end_range
114
- return RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0047')
115
- end
116
-
117
- # Denotes abstract chromosome representations for capturing variants that appear on the same chromosome of a polyploid organism.
118
- # (http://www.biointerchange.org/gvf1o#GVF1_0051)
119
- def self.chromosome
120
- return RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0051')
121
- end
122
-
123
- # Determines the genotype as observed in an individual.
124
- # (http://www.biointerchange.org/gvf1o#GVF1_0053)
125
- def self.genotype
126
- return RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0053')
127
- end
128
-
129
- # Either:
130
- # Properties that are directly associated with Feature class instances.
131
- # (http://www.biointerchange.org/gvf1o#GVF1_0066)
132
- # Or:
133
- # Properties that are directly associated with Feature class instances.
134
- # (http://www.biointerchange.org/gvf1o#GVF1_0059)
135
- def self.feature_properties
136
- return [ RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0066'), RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0059') ]
137
- end
138
-
139
- # Either:
140
- # Properties that are directly associated with SequencedIndividual class instances.
141
- # (http://www.biointerchange.org/gvf1o#GVF1_0067)
142
- # Or:
143
- # Properties that are directly associated with SequencedIndividual class instances.
144
- # (http://www.biointerchange.org/gvf1o#GVF1_0065)
145
- def self.sequencedindividual_properties
146
- return [ RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0067'), RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0065') ]
147
- end
148
-
149
- # Either:
150
- # Properties that are directly associated with Set class instances.
151
- # (http://www.biointerchange.org/gvf1o#GVF1_0068)
152
- # Or:
153
- # Properties that are directly associated with Set class instances.
154
- # (http://www.biointerchange.org/gvf1o#GVF1_0063)
155
- def self.set_properties
156
- return [ RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0068'), RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0063') ]
157
- end
158
-
159
- # Either:
160
- # Properties that are directly associated with Variant class instances.
161
- # (http://www.biointerchange.org/gvf1o#GVF1_0069)
162
- # Or:
163
- # Properties that are directly associated with Variant class instances.
164
- # (http://www.biointerchange.org/gvf1o#GVF1_0060)
165
- def self.variant_properties
166
- return [ RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0069'), RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0060') ]
167
- end
168
-
169
- # Either:
170
- # Properties that are directly associated with Effect class instances.
171
- # (http://www.biointerchange.org/gvf1o#GVF1_0070)
172
- # Or:
173
- # Properties that are directly associated with Effect class instances.
174
- # (http://www.biointerchange.org/gvf1o#GVF1_0158)
175
- def self.effect_properties
176
- return [ RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0070'), RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0158') ]
177
- end
178
-
179
- # Either:
180
- # Properties that are directly associated with Breakpoint class instances.
181
- # (http://www.biointerchange.org/gvf1o#GVF1_0075)
182
- # Or:
183
- # Properties that are directly associated with Breakpoint class instances.
184
- # (http://www.biointerchange.org/gvf1o#GVF1_0071)
185
- def self.breakpoint_properties
186
- return [ RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0075'), RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0071') ]
187
- end
188
-
189
- # Either:
190
- # A database cross-reference to associate a sequence alteration to its representation in another database.
191
- # (http://www.biointerchange.org/gvf1o#GVF1_0078)
192
- # Or:
193
- # A database cross-reference to associate a structured pragma to a representation in another database.
194
- # (http://www.biointerchange.org/gvf1o#GVF1_0104)
195
- def self.dbxref
196
- return [ RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0078'), RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0104') ]
197
- end
198
-
199
- # Potential source or destination of zero-length sequence alterations.
200
- # (http://www.biointerchange.org/gvf1o#GVF1_0080)
201
- def self.breakpoint
202
- return RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0080')
203
- end
204
-
205
- # Either:
206
- # Properties that are directly associated with Target class instances.
207
- # (http://www.biointerchange.org/gvf1o#GVF1_0089)
208
- # Or:
209
- # Properties that are directly associated with Target class instances.
210
- # (http://www.biointerchange.org/gvf1o#GVF1_0092)
211
- def self.target_properties
212
- return [ RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0089'), RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0092') ]
213
- end
214
-
215
- # Either:
216
- # Properties that are directly associated with TechnologyPlatform class instances.
217
- # (http://www.biointerchange.org/gvf1o#GVF1_0102)
218
- # Or:
219
- # Properties that are directly associated with TechnologyPlatform class instances.
220
- # (http://www.biointerchange.org/gvf1o#GVF1_0107)
221
- def self.technologyplatform_properties
222
- return [ RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0102'), RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0107') ]
223
- end
224
-
225
- # Properties that are directly associated with DataSource class instances.
226
- # (http://www.biointerchange.org/gvf1o#GVF1_0103)
227
- def self.datasource_properties
228
- return RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0103')
229
- end
230
-
231
- # Either:
232
- # Properties describing structured pragma properties.
233
- # (http://www.biointerchange.org/gvf1o#GVF1_0112)
234
- # Or:
235
- # Properties describing structured pragma properties.
236
- # (http://www.biointerchange.org/gvf1o#GVF1_0113)
237
- def self.structuredpragma_properties
238
- return [ RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0112'), RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0113') ]
239
- end
240
-
241
- # Types of reads produced by the platform.
242
- # (http://www.biointerchange.org/gvf1o#GVF1_0119)
243
- def self.read_type
244
- return RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0119')
245
- end
246
-
247
- # Datatype of this data source.
248
- # (http://www.biointerchange.org/gvf1o#GVF1_0120)
249
- def self.data_type
250
- return RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0120')
251
- end
252
-
253
- # Technology platform that was used to derive the feature.
254
- # (http://www.biointerchange.org/gvf1o#GVF1_0121)
255
- def self.technology_platform
256
- return RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0121')
257
- end
258
-
259
- # Data source origin of the feature.
260
- # (http://www.biointerchange.org/gvf1o#GVF1_0122)
261
- def self.data_source
262
- return RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0122')
263
- end
264
-
265
- # Used scoring method.
266
- # (http://www.biointerchange.org/gvf1o#GVF1_0123)
267
- def self.score_method
268
- return RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0123')
269
- end
270
-
271
- # Further information about the algorithm/methodologies used.
272
- # (http://www.biointerchange.org/gvf1o#GVF1_0124)
273
- def self.source_method
274
- return RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0124')
275
- end
276
-
277
- # Further information about an individual's phenotype. Applies only to single individual sets.
278
- # (http://www.biointerchange.org/gvf1o#GVF1_0125)
279
- def self.phenotype_description
280
- return RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0125')
281
- end
282
-
283
- # Either:
284
- # Further information about the associated attribute(s).
285
- # (http://www.biointerchange.org/gvf1o#GVF1_0126)
286
- # Or:
287
- # Further information about the associated attribute(s).
288
- # (http://www.biointerchange.org/gvf1o#GVF1_0127)
289
- # Or:
290
- # Further information about the associated attribute(s).
291
- # (http://www.biointerchange.org/gvf1o#GVF1_0129)
292
- # Or:
293
- # Further information about the associated attribute(s).
294
- # (http://www.biointerchange.org/gvf1o#GVF1_0130)
295
- # Or:
296
- # Further information about the associated attribute(s).
297
- # (http://www.biointerchange.org/gvf1o#GVF1_0131)
298
- def self.attribute_method
299
- return [ RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0126'), RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0127'), RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0129'), RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0130'), RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0131') ]
300
- end
301
-
302
- # Either:
303
- # Properties about Attribute instances.
304
- # (http://www.biointerchange.org/gvf1o#GVF1_0128)
305
- # Or:
306
- # Properties that are directly associated with Attribute class instances.
307
- # (http://www.biointerchange.org/gvf1o#GVF1_0064)
308
- def self.attribute_properties
309
- return [ RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0128'), RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0064') ]
310
- end
311
-
312
- # Denotes the sex of the sequenced individual for single-individual sets.
313
- # (http://www.biointerchange.org/gvf1o#GVF1_0147)
314
- def self.sex
315
- return RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0147')
316
- end
317
-
318
- # Denotes the source of genomic data (on a cell-type level).
319
- # (http://www.biointerchange.org/gvf1o#GVF1_0148)
320
- def self.genomic_source
321
- return RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0148')
322
- end
323
-
324
- # Explicit link-out to one or more ontologies that have been used for describing features. This is a meta comment about the URIs that link out to SO/SOFA or other ontologies.
325
- # (http://www.biointerchange.org/gvf1o#GVF1_0150)
326
- def self.feature_ontology
327
- return RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0150')
328
- end
329
-
330
- # Identifies the target that the features aligns to.
331
- # (http://www.biointerchange.org/gvf1o#GVF1_0155)
332
- def self.target
333
- return RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0155')
334
- end
335
-
336
- # 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.
337
- # (http://www.biointerchange.org/gvf1o#GVF1_0005)
338
- def self.source
339
- return RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0005')
340
- end
341
-
342
- # Type of the feature, which is either an entry the "lite" version of the Sequence Ontology (SOFA) or a child entry of sequence_feature (SO:0000110) of the full Sequence Ontology (SO).
343
- # (http://www.biointerchange.org/gvf1o#GVF1_0006)
344
- def self.type
345
- return RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0006')
346
- end
347
-
348
- # Either:
349
- # Start coordinate of the feature on the seqid landmark.
350
- # (http://www.biointerchange.org/gvf1o#GVF1_0007)
351
- # Or:
352
- # A coordinate that defines the start of an ambiguous coordinate range.
353
- # (http://www.biointerchange.org/gvf1o#GVF1_0048)
354
- # Or:
355
- # Start coordinate of the feature on the seqid landmark.
356
- # (http://www.biointerchange.org/gvf1o#GVF1_0073)
357
- # Or:
358
- # Start coordinate of the target.
359
- # (http://www.biointerchange.org/gvf1o#GVF1_0094)
360
- # Or:
361
- # Genomic start coordinate of the landmark.
362
- # (http://www.biointerchange.org/gvf1o#GVF1_0138)
363
- def self.start
364
- return [ RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0007'), RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0048'), RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0073'), RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0094'), RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0138') ]
365
- end
366
-
367
- # Either:
368
- # End coordinate of the feature on the seqid landmark.
369
- # (http://www.biointerchange.org/gvf1o#GVF1_0008)
370
- # Or:
371
- # A coordinate that defines the end of an ambiguous coordinate range.
372
- # (http://www.biointerchange.org/gvf1o#GVF1_0049)
373
- # Or:
374
- # End coordinate of the feature on the seqid landmark.
375
- # (http://www.biointerchange.org/gvf1o#GVF1_0074)
376
- # Or:
377
- # End coordinate of the target.
378
- # (http://www.biointerchange.org/gvf1o#GVF1_0095)
379
- # Or:
380
- # Genomic end coordinate of the landmark.
381
- # (http://www.biointerchange.org/gvf1o#GVF1_0139)
382
- def self.end
383
- return [ RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0008'), RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0049'), RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0074'), RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0095'), RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0139') ]
384
- end
385
-
386
- # Score of the feature. For example, an E-value for sequence similarity features or a P-value for ab initio gene prediction features.
387
- # (http://www.biointerchange.org/gvf1o#GVF1_0009)
388
- def self.score
389
- return RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0009')
390
- end
391
-
392
- # Either:
393
- # Tag name of a feature attribute.
394
- # (http://www.biointerchange.org/gvf1o#GVF1_0013)
395
- # Or:
396
- # Tag name of an user defined structured attribute.
397
- # (http://www.biointerchange.org/gvf1o#GVF1_0154)
398
- def self.tag
399
- return [ RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0013'), RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0154') ]
400
- end
401
-
402
- # Version of the GVF specification that defines the feature set contents.
403
- # (http://www.biointerchange.org/gvf1o#GVF1_0022)
404
- def self.gvf_version
405
- return RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0022')
406
- end
407
-
408
- # Name of a genome assembly build that denotes the provenance of features in a feature set. For example, 'NCBI 36' or 'FlyBase r4.1'.
409
- # (http://www.biointerchange.org/gvf1o#GVF1_0024)
410
- def self.build
411
- return RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0024')
412
- end
413
-
414
- # 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.
415
- # (http://www.biointerchange.org/gvf1o#GVF1_0025)
416
- def self.variant_seq
417
- return RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0025')
418
- end
419
-
420
- # Either:
421
- # A unique identifier for the feature within the feature set.
422
- # (http://www.biointerchange.org/gvf1o#GVF1_0026)
423
- # Or:
424
- # ID that uniquely establishes the Landmark's identity within a Set.
425
- # (http://www.biointerchange.org/gvf1o#GVF1_0137)
426
- def self.id
427
- return [ RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0026'), RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0137') ]
428
- end
429
-
430
- # 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.
431
- # (http://www.biointerchange.org/gvf1o#GVF1_0027)
432
- def self.alias
433
- return RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0027')
434
- end
435
-
436
- # Sequence from the reference genome.
437
- # (http://www.biointerchange.org/gvf1o#GVF1_0031)
438
- def self.reference_seq
439
- return RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0031')
440
- end
441
-
442
- # Number of reads that are supporting this variant.
443
- # (http://www.biointerchange.org/gvf1o#GVF1_0032)
444
- def self.variant_reads
445
- return RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0032')
446
- end
447
-
448
- # Total number of reads.
449
- # (http://www.biointerchange.org/gvf1o#GVF1_0037)
450
- def self.total_reads
451
- return RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0037')
452
- end
453
-
454
- # Frequency of a variant in a population.
455
- # (http://www.biointerchange.org/gvf1o#GVF1_0039)
456
- def self.variant_freq
457
- return RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0039')
458
- end
459
-
460
- # Features that are affected by this sequence alteration effect. This can be an external feature identifier, such as an Ensembl gene/transcript identifier.
461
- # (http://www.biointerchange.org/gvf1o#GVF1_0044)
462
- def self.feature
463
- return RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0044')
464
- end
465
-
466
- # Either:
467
- # Unclear from GVF specification.
468
- # (http://www.biointerchange.org/gvf1o#GVF1_0050)
469
- # Or:
470
- # Indicates whether this particular is phased. Used to encode ##phased-genotypes statements.
471
- # (http://www.biointerchange.org/gvf1o#GVF1_0101)
472
- def self.phased
473
- return [ RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0050'), RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0101') ]
474
- end
475
-
476
- # Describes the codon that overlaps this variant.
477
- # (http://www.biointerchange.org/gvf1o#GVF1_0054)
478
- def self.variant_codon
479
- return RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0054')
480
- end
481
-
482
- # Describes the codon from the reference sequence whose coordinates overlap with this variant.
483
- # (http://www.biointerchange.org/gvf1o#GVF1_0055)
484
- def self.reference_codon
485
- return RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0055')
486
- end
487
-
488
- # Amino acid that overlaps with the variant.
489
- # (http://www.biointerchange.org/gvf1o#GVF1_0056)
490
- def self.variant_aa
491
- return RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0056')
492
- end
493
-
494
- # Amino acid in the reference genome that overlaps with a variant's genome coordinates.
495
- # (http://www.biointerchange.org/gvf1o#GVF1_0057)
496
- def self.reference_aa
497
- return RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0057')
498
- end
499
-
500
- # Properties that are directly associated with Range class instances.
501
- # (http://www.biointerchange.org/gvf1o#GVF1_0061)
502
- def self.range_properties
503
- return RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0061')
504
- end
505
-
506
- # Sequence context (positive strand) of a feature on the 5' end.
507
- # (http://www.biointerchange.org/gvf1o#GVF1_0076)
508
- def self.a_context
509
- return RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0076')
510
- end
511
-
512
- # Version of the GFF specification that defines the feature set contents apart from GVF related definitions.
513
- # (http://www.biointerchange.org/gvf1o#GVF1_0081)
514
- def self.gff_version
515
- return RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0081')
516
- end
517
-
518
- # Creation date of the GVF file that this set stems from.
519
- # (http://www.biointerchange.org/gvf1o#GVF1_0082)
520
- def self.file_date
521
- return RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0082')
522
- end
523
-
524
- # ID or accession of the target alignment.
525
- # (http://www.biointerchange.org/gvf1o#GVF1_0093)
526
- def self.target_id
527
- return RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0093')
528
- end
529
-
530
- # A cross-reference to an ontology term that is associated with a feature.
531
- # (http://www.biointerchange.org/gvf1o#GVF1_0096)
532
- def self.ontology_term
533
- return RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0096')
534
- end
535
-
536
- # An arbitrary comment. Free text.
537
- # (http://www.biointerchange.org/gvf1o#GVF1_0105)
538
- def self.comment
539
- return RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0105')
540
- end
541
-
542
- # Type of technology used to gather the variant data. Unrestricted range due to open specification.
543
- # (http://www.biointerchange.org/gvf1o#GVF1_0106)
544
- def self.platform_class
545
- return RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0106')
546
- end
547
-
548
- # Sequencer or other machine used to collect the variant data. Unrestricted range due to open specification.
549
- # (http://www.biointerchange.org/gvf1o#GVF1_0108)
550
- def self.platform_name
551
- return RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0108')
552
- end
553
-
554
- # Undocumented in GVF specification.
555
- # (http://www.biointerchange.org/gvf1o#GVF1_0132)
556
- def self.read_length
557
- return RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0132')
558
- end
559
-
560
- # Undocumented in GVF specification.
561
- # (http://www.biointerchange.org/gvf1o#GVF1_0133)
562
- def self.read_pair_span
563
- return RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0133')
564
- end
565
-
566
- # Undocumented in GVF specification.
567
- # (http://www.biointerchange.org/gvf1o#GVF1_0134)
568
- def self.average_coverage
569
- return RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0134')
570
- end
571
-
572
- # Properties that are directly associated with Landmark class instances.
573
- # (http://www.biointerchange.org/gvf1o#GVF1_0136)
574
- def self.landmark_properties
575
- return RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0136')
576
- end
577
-
578
- # Version of the GVF file that this set stems from.
579
- # (http://www.biointerchange.org/gvf1o#GVF1_0149)
580
- def self.file_version
581
- return RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0149')
582
- end
583
-
584
- # Properties that are directly associated with StructuredAttribute class instances.
585
- # (http://www.biointerchange.org/gvf1o#GVF1_0153)
586
- def self.structuredattribute_properties
587
- return RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0153')
588
- end
589
-
590
- # Either:
591
- # Sequence associated with this feature, if it has been specified using a FASTA string.
592
- # (http://www.biointerchange.org/gvf1o#GVF1_0156)
593
- # Or:
594
- # Sequence associated with this feature, if it has been specified using a FASTA string.
595
- # (http://www.biointerchange.org/gvf1o#GVF1_0157)
596
- def self.sequence
597
- return [ RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0156'), RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0157') ]
598
- end
599
-
600
- # Set of genomic sequence features, whose identifiers are unique within the set.
601
- # (http://www.biointerchange.org/gvf1o#GVF1_0001)
602
- def self.Set
603
- return RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0001')
604
- end
605
-
606
- # A genomic sequence feature.
607
- # (http://www.biointerchange.org/gvf1o#GVF1_0002)
608
- def self.Feature
609
- return RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0002')
610
- end
611
-
612
- # Representation of attribute tag/value pairs that are not covered by specific classes such as Effect or Variant.
613
- # (http://www.biointerchange.org/gvf1o#GVF1_0003)
614
- def self.Attribute
615
- return RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0003')
616
- end
617
-
618
- # Class describing a genomic strand. Instances of the class (individuals) are used to denote forward-/reverse-strands, etc.
619
- # (http://www.biointerchange.org/gvf1o#GVF1_0016)
620
- def self.Strand
621
- return RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0016')
622
- end
623
-
624
- # Describing specific alterations of a feature.
625
- # (http://www.biointerchange.org/gvf1o#GVF1_0033)
626
- def self.Variant
627
- return RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0033')
628
- end
629
-
630
- # Aggregated sequencing information for a particular individual.
631
- # (http://www.biointerchange.org/gvf1o#GVF1_0035)
632
- def self.SequencedIndividual
633
- return RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0035')
634
- end
635
-
636
- # Describing the effect of a feature variant.
637
- # (http://www.biointerchange.org/gvf1o#GVF1_0040)
638
- def self.Effect
639
- return RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0040')
640
- end
641
-
642
- # Describe ambiguity in either start or end coordinates.
643
- # (http://www.biointerchange.org/gvf1o#GVF1_0045)
644
- def self.Range
645
- return RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0045')
646
- end
647
-
648
- # An abstract representation of a chromosome to represent ploidy.
649
- # (http://www.biointerchange.org/gvf1o#GVF1_0052)
650
- def self.Chromosome
651
- return RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0052')
652
- end
653
-
654
- # Describes the source or destination of a zero-length sequence alteration.
655
- # (http://www.biointerchange.org/gvf1o#GVF1_0058)
656
- def self.Breakpoint
657
- return RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0058')
658
- end
659
-
660
- # Denotes the zygosity of alleles.
661
- # (http://www.biointerchange.org/gvf1o#GVF1_0084)
662
- def self.Zygosity
663
- return RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0084')
664
- end
665
-
666
- # Indicates a feature's "target" of a nucleotide-to-nucleotide or protein-to-nucleotide alignment.
667
- # (http://www.biointerchange.org/gvf1o#GVF1_0088)
668
- def self.Target
669
- return RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0088')
670
- end
671
-
672
- # Details about the sequencing/microarray technology used to gather the data in a set.
673
- # (http://www.biointerchange.org/gvf1o#GVF1_0097)
674
- def self.TechnologyPlatform
675
- return RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0097')
676
- end
677
-
678
- # Provides information about the source of the data. For example, it can link out to actual sequences associated with the Feature individuals in a Set.
679
- # (http://www.biointerchange.org/gvf1o#GVF1_0098)
680
- def self.DataSource
681
- return RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0098')
682
- end
683
-
684
- # Information about the used scoring algorithm or method.
685
- # (http://www.biointerchange.org/gvf1o#GVF1_0099)
686
- def self.Method
687
- return RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0099')
688
- end
689
-
690
- # Additional information about an individual's phenotype.
691
- # (http://www.biointerchange.org/gvf1o#GVF1_0100)
692
- def self.PhenotypeDescription
693
- return RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0100')
694
- end
695
-
696
- # Type of reads obtained for a given technology platform.
697
- # (http://www.biointerchange.org/gvf1o#GVF1_0109)
698
- def self.ReadType
699
- return RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0109')
700
- end
701
-
702
- # Determines the datatype of a variant sequence.
703
- # (http://www.biointerchange.org/gvf1o#GVF1_0114)
704
- def self.DataType
705
- return RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0114')
706
- end
707
-
708
- # A landmark that establishes the coordinate system for features.
709
- # (http://www.biointerchange.org/gvf1o#GVF1_0135)
710
- def self.Landmark
711
- return RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0135')
712
- end
713
-
714
- # For single individual sets, the Sex class' OWL-individuals can be used to specify the sex of the sequenced (real-life) individuals.
715
- # (http://www.biointerchange.org/gvf1o#GVF1_0140)
716
- def self.Sex
717
- return RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0140')
718
- end
719
-
720
- # An enumerated class for determining the genomic source (cell type) of sequenced data.
721
- # (http://www.biointerchange.org/gvf1o#GVF1_0141)
722
- def self.GenomicSource
723
- return RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0141')
724
- end
725
-
726
- # Representation of attribute tag/value pairs that are specific to particular structured attributes, but which are not covered by the GVF specification.
727
- # (http://www.biointerchange.org/gvf1o#GVF1_0151)
728
- def self.StructuredAttribute
729
- return RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0151')
730
- end
731
-
732
- # Location on the positive (forward) strand.
733
- # (http://www.biointerchange.org/gvf1o#GVF1_0017)
734
- def self.Positive
735
- return RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0017')
736
- end
737
-
738
- # Location on the negative (reverse) strand.
739
- # (http://www.biointerchange.org/gvf1o#GVF1_0018)
740
- def self.Negative
741
- return RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0018')
742
- end
743
-
744
- # Strand was not determined, which leaves it open whether the location is on the positive (forward) or negative (reverse) strand.
745
- # (http://www.biointerchange.org/gvf1o#GVF1_0019)
746
- def self.UnknownStrand
747
- return RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0019')
748
- end
749
-
750
- # Strand is not applicable.
751
- # (http://www.biointerchange.org/gvf1o#GVF1_0020)
752
- def self.NotStranded
753
- return RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0020')
754
- end
755
-
756
- # Denotes heterozygous alleles.
757
- # (http://www.biointerchange.org/gvf1o#GVF1_0085)
758
- def self.Heterozygous
759
- return RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0085')
760
- end
761
-
762
- # Denotes homozygous alleles.
763
- # (http://www.biointerchange.org/gvf1o#GVF1_0086)
764
- def self.Homozygous
765
- return RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0086')
766
- end
767
-
768
- # Denotes hemizygous alleles.
769
- # (http://www.biointerchange.org/gvf1o#GVF1_0087)
770
- def self.Hemizygous
771
- return RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0087')
772
- end
773
-
774
- # Denotes reads that are fragments.
775
- # (http://www.biointerchange.org/gvf1o#GVF1_0110)
776
- def self.Fragment
777
- return RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0110')
778
- end
779
-
780
- # Denotes reads that are pairs.
781
- # (http://www.biointerchange.org/gvf1o#GVF1_0111)
782
- def self.Pair
783
- return RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0111')
784
- end
785
-
786
- # Denotes a DNA sequence.
787
- # (http://www.biointerchange.org/gvf1o#GVF1_0115)
788
- def self.DNASequence
789
- return RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0115')
790
- end
791
-
792
- # Denotes an RNA sequence.
793
- # (http://www.biointerchange.org/gvf1o#GVF1_0116)
794
- def self.RNASequence
795
- return RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0116')
796
- end
797
-
798
- # Denotes a DNA microarray probe.
799
- # (http://www.biointerchange.org/gvf1o#GVF1_0117)
800
- def self.DNAMicroarray
801
- return RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0117')
802
- end
803
-
804
- # Denotes an array-comparative genomic hybridization.
805
- # (http://www.biointerchange.org/gvf1o#GVF1_0118)
806
- def self.ArrayComparativeGenomicHybridization
807
- return RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0118')
808
- end
809
-
810
- # Denotes that a Set contains features of a female.
811
- # (http://www.biointerchange.org/gvf1o#GVF1_0142)
812
- def self.Female
813
- return RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0142')
814
- end
815
-
816
- # Denotes that a Set contains features of a male.
817
- # (http://www.biointerchange.org/gvf1o#GVF1_0143)
818
- def self.Male
819
- return RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0143')
820
- end
821
-
822
- # Denotes that a set contains features of prenatal cells.
823
- # (http://www.biointerchange.org/gvf1o#GVF1_0144)
824
- def self.Prenatal
825
- return RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0144')
826
- end
827
-
828
- # Denotes that a set contains features of germline cells.
829
- # (http://www.biointerchange.org/gvf1o#GVF1_0145)
830
- def self.Germline
831
- return RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0145')
832
- end
833
-
834
- # Denotes that a set contains features of somatic cells.
835
- # (http://www.biointerchange.org/gvf1o#GVF1_0146)
836
- def self.Somatic
837
- return RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0146')
838
- end
839
-
840
- # Determines whether the given URI is an object property.
841
- #
842
- # +uri+:: URI that is tested for being an object property
843
- def self.is_object_property?(uri)
844
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0004') then
845
- return true
846
- end
847
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0010') then
848
- return true
849
- end
850
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0012') then
851
- return true
852
- end
853
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0014') then
854
- return true
855
- end
856
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0015') then
857
- return true
858
- end
859
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0021') then
860
- return true
861
- end
862
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0023') then
863
- return true
864
- end
865
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0034') then
866
- return true
867
- end
868
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0036') then
869
- return true
870
- end
871
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0038') then
872
- return true
873
- end
874
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0041') then
875
- return true
876
- end
877
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0042') then
878
- return true
879
- end
880
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0043') then
881
- return true
882
- end
883
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0046') then
884
- return true
885
- end
886
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0047') then
887
- return true
888
- end
889
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0051') then
890
- return true
891
- end
892
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0053') then
893
- return true
894
- end
895
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0066') then
896
- return true
897
- end
898
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0067') then
899
- return true
900
- end
901
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0068') then
902
- return true
903
- end
904
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0069') then
905
- return true
906
- end
907
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0070') then
908
- return true
909
- end
910
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0072') then
911
- return true
912
- end
913
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0075') then
914
- return true
915
- end
916
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0078') then
917
- return true
918
- end
919
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0079') then
920
- return true
921
- end
922
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0080') then
923
- return true
924
- end
925
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0083') then
926
- return true
927
- end
928
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0089') then
929
- return true
930
- end
931
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0090') then
932
- return true
933
- end
934
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0091') then
935
- return true
936
- end
937
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0102') then
938
- return true
939
- end
940
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0103') then
941
- return true
942
- end
943
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0104') then
944
- return true
945
- end
946
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0112') then
947
- return true
948
- end
949
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0119') then
950
- return true
951
- end
952
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0120') then
953
- return true
954
- end
955
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0121') then
956
- return true
957
- end
958
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0122') then
959
- return true
960
- end
961
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0123') then
962
- return true
963
- end
964
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0124') then
965
- return true
966
- end
967
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0125') then
968
- return true
969
- end
970
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0126') then
971
- return true
972
- end
973
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0127') then
974
- return true
975
- end
976
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0128') then
977
- return true
978
- end
979
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0129') then
980
- return true
981
- end
982
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0130') then
983
- return true
984
- end
985
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0131') then
986
- return true
987
- end
988
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0147') then
989
- return true
990
- end
991
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0148') then
992
- return true
993
- end
994
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0150') then
995
- return true
996
- end
997
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0152') then
998
- return true
999
- end
1000
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0155') then
1001
- return true
1002
- end
1003
- return false
1004
- end
1005
-
1006
- # Determines whether the given URI is a datatype property.
1007
- #
1008
- # +uri+:: URI that is tested for being a datatype property
1009
- def self.is_datatype_property?(uri)
1010
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0005') then
1011
- return true
1012
- end
1013
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0006') then
1014
- return true
1015
- end
1016
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0007') then
1017
- return true
1018
- end
1019
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0008') then
1020
- return true
1021
- end
1022
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0009') then
1023
- return true
1024
- end
1025
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0013') then
1026
- return true
1027
- end
1028
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0022') then
1029
- return true
1030
- end
1031
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0024') then
1032
- return true
1033
- end
1034
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0025') then
1035
- return true
1036
- end
1037
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0026') then
1038
- return true
1039
- end
1040
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0027') then
1041
- return true
1042
- end
1043
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0031') then
1044
- return true
1045
- end
1046
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0032') then
1047
- return true
1048
- end
1049
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0037') then
1050
- return true
1051
- end
1052
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0039') then
1053
- return true
1054
- end
1055
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0044') then
1056
- return true
1057
- end
1058
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0048') then
1059
- return true
1060
- end
1061
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0049') then
1062
- return true
1063
- end
1064
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0050') then
1065
- return true
1066
- end
1067
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0054') then
1068
- return true
1069
- end
1070
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0055') then
1071
- return true
1072
- end
1073
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0056') then
1074
- return true
1075
- end
1076
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0057') then
1077
- return true
1078
- end
1079
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0059') then
1080
- return true
1081
- end
1082
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0060') then
1083
- return true
1084
- end
1085
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0061') then
1086
- return true
1087
- end
1088
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0063') then
1089
- return true
1090
- end
1091
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0064') then
1092
- return true
1093
- end
1094
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0065') then
1095
- return true
1096
- end
1097
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0071') then
1098
- return true
1099
- end
1100
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0073') then
1101
- return true
1102
- end
1103
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0074') then
1104
- return true
1105
- end
1106
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0076') then
1107
- return true
1108
- end
1109
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0077') then
1110
- return true
1111
- end
1112
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0081') then
1113
- return true
1114
- end
1115
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0082') then
1116
- return true
1117
- end
1118
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0092') then
1119
- return true
1120
- end
1121
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0093') then
1122
- return true
1123
- end
1124
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0094') then
1125
- return true
1126
- end
1127
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0095') then
1128
- return true
1129
- end
1130
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0096') then
1131
- return true
1132
- end
1133
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0101') then
1134
- return true
1135
- end
1136
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0105') then
1137
- return true
1138
- end
1139
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0106') then
1140
- return true
1141
- end
1142
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0107') then
1143
- return true
1144
- end
1145
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0108') then
1146
- return true
1147
- end
1148
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0113') then
1149
- return true
1150
- end
1151
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0132') then
1152
- return true
1153
- end
1154
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0133') then
1155
- return true
1156
- end
1157
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0134') then
1158
- return true
1159
- end
1160
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0136') then
1161
- return true
1162
- end
1163
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0137') then
1164
- return true
1165
- end
1166
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0138') then
1167
- return true
1168
- end
1169
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0139') then
1170
- return true
1171
- end
1172
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0149') then
1173
- return true
1174
- end
1175
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0153') then
1176
- return true
1177
- end
1178
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0154') then
1179
- return true
1180
- end
1181
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0156') then
1182
- return true
1183
- end
1184
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0157') then
1185
- return true
1186
- end
1187
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0158') then
1188
- return true
1189
- end
1190
- return false
1191
- end
1192
-
1193
- # Determines whether the given URI is a class.
1194
- #
1195
- # +uri+:: URI that is tested for being a class
1196
- def self.is_class?(uri)
1197
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0001') then
1198
- return true
1199
- end
1200
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0002') then
1201
- return true
1202
- end
1203
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0003') then
1204
- return true
1205
- end
1206
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0016') then
1207
- return true
1208
- end
1209
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0033') then
1210
- return true
1211
- end
1212
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0035') then
1213
- return true
1214
- end
1215
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0040') then
1216
- return true
1217
- end
1218
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0045') then
1219
- return true
1220
- end
1221
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0052') then
1222
- return true
1223
- end
1224
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0058') then
1225
- return true
1226
- end
1227
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0084') then
1228
- return true
1229
- end
1230
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0088') then
1231
- return true
1232
- end
1233
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0097') then
1234
- return true
1235
- end
1236
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0098') then
1237
- return true
1238
- end
1239
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0099') then
1240
- return true
1241
- end
1242
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0100') then
1243
- return true
1244
- end
1245
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0109') then
1246
- return true
1247
- end
1248
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0114') then
1249
- return true
1250
- end
1251
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0135') then
1252
- return true
1253
- end
1254
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0140') then
1255
- return true
1256
- end
1257
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0141') then
1258
- return true
1259
- end
1260
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0151') then
1261
- return true
1262
- end
1263
- return false
1264
- end
1265
-
1266
- # Determines whether the given URI is a named individual.
1267
- #
1268
- # +uri+:: URI that is tested for being a named individual
1269
- def self.is_named_individual?(uri)
1270
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0017') then
1271
- return true
1272
- end
1273
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0018') then
1274
- return true
1275
- end
1276
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0019') then
1277
- return true
1278
- end
1279
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0020') then
1280
- return true
1281
- end
1282
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0085') then
1283
- return true
1284
- end
1285
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0086') then
1286
- return true
1287
- end
1288
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0087') then
1289
- return true
1290
- end
1291
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0110') then
1292
- return true
1293
- end
1294
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0111') then
1295
- return true
1296
- end
1297
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0115') then
1298
- return true
1299
- end
1300
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0116') then
1301
- return true
1302
- end
1303
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0117') then
1304
- return true
1305
- end
1306
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0118') then
1307
- return true
1308
- end
1309
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0142') then
1310
- return true
1311
- end
1312
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0143') then
1313
- return true
1314
- end
1315
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0144') then
1316
- return true
1317
- end
1318
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0145') then
1319
- return true
1320
- end
1321
- if uri == RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0146') then
1322
- return true
1323
- end
1324
- return false
1325
- end
1326
-
1327
- # Returns only those URIs that fall under a designated parent URI.
1328
- #
1329
- # +uris+:: Set of URIs that are tested whether they have the given parent URI.
1330
- # +parent+:: Parent URI.
1331
- def self.with_parent(uris, parent)
1332
- return uris.select { |uri| has_parent?(uri, parent) }
1333
- end
1334
-
1335
- # Recursively tries to determine the parent for a given URI.
1336
- #
1337
- # +uri+:: URI that is tested for whether it has the given parent URI.
1338
- # +parent+:: Parent URI.
1339
- def self.has_parent?(uri, parent)
1340
- if @@parent_properties.has_key?(uri) then
1341
- if @@parent_properties[uri] == parent then
1342
- return true
1343
- end
1344
- return has_parent?(@@parent_properties[uri], parent)
1345
- end
1346
- return false
1347
- end
1348
-
1349
- private
1350
- @@parent_properties = { RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0004') => RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0066') , RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0010') => RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0066') , RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0012') => RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0066') , RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0014') => RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0066') , RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0015') => RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0068') , RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0021') => RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0066') , RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0023') => RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0068') , RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0034') => RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0066') , RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0036') => RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0066') , RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0038') => RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0069') , RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0041') => RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0069') , RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0042') => RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0070') , RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0043') => RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0070') , RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0046') => RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0070') , RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0047') => RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0070') , RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0051') => RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0067') , RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0053') => RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0069') , RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0072') => RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0075') , RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0078') => RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0066') , RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0079') => RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0075') , RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0080') => RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0066') , RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0083') => RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0075') , RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0090') => RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0089') , RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0091') => RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0089') , RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0102') => RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0112') , RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0103') => RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0112') , RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0104') => RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0112') , RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0119') => RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0102') , RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0120') => RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0103') , RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0121') => RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0066') , RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0122') => RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0066') , RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0123') => RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0066') , RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0124') => RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0066') , RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0125') => RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0068') , RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0126') => RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0070') , RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0127') => RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0075') , RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0129') => RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0128') , RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0130') => RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0089') , RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0131') => RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0069') , RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0147') => RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0068') , RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0148') => RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0068') , RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0150') => RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0068') , RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0152') => RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0112') , RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0155') => RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0066') , RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0005') => RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0059') , RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0006') => RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0059') , RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0007') => RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0059') , RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0008') => RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0059') , RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0009') => RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0059') , RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0013') => RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0064') , RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0022') => RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0063') , RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0024') => RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0063') , RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0025') => RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0060') , RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0026') => RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0059') , RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0027') => RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0059') , RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0031') => RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0059') , RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0032') => RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0060') , RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0037') => RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0065') , RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0039') => RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0060') , RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0044') => RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0158') , RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0048') => RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0061') , RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0049') => RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0061') , RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0050') => RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0060') , RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0054') => RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0060') , RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0055') => RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0059') , RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0056') => RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0060') , RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0057') => RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0059') , RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0073') => RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0071') , RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0074') => RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0071') , RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0076') => RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0059') , RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0077') => RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0059') , RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0081') => RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0063') , RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0082') => RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0063') , RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0093') => RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0092') , RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0094') => RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0092') , RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0095') => RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0092') , RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0096') => RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0059') , RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0101') => RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0059') , RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0105') => RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0113') , RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0106') => RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0107') , RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0107') => RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0113') , RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0108') => RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0107') , RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0132') => RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0107') , RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0133') => RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0107') , RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0134') => RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0107') , RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0137') => RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0136') , RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0138') => RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0136') , RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0139') => RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0136') , RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0149') => RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0063') , RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0154') => RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0153') , RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0156') => RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0059') , RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0157') => RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0136') , RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0088') => RDF::URI.new('http://www.w3.org/2002/07/owl#Thing') , RDF::URI.new('http://www.biointerchange.org/gvf1o#GVF1_0151') => RDF::URI.new('http://www.w3.org/2002/07/owl#Thing') }
1351
-
1352
- end
1353
-
1354
- end