biointerchange 0.2.0 → 0.2.1
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.
- data/README.md +11 -1
- data/VERSION +1 -1
- data/generators/javaify.rb +1 -1
- data/generators/rdfxml.rb +3 -1
- data/lib/biointerchange/core.rb +14 -13
- data/lib/biointerchange/genomics/gff3_rdf_ntriples.rb +61 -9
- data/lib/biointerchange/genomics/gff3_reader.rb +5 -1
- data/lib/biointerchange/gff3o.rb +44 -28
- data/lib/biointerchange/gvf1o.rb +63 -31
- data/lib/biointerchange/so.rb +19627 -0
- data/spec/gff3_rdfwriter_spec.rb +1 -1
- data/spec/gvf_rdfwriter_spec.rb +1 -1
- data/supplemental/java/biointerchange/pom.xml +1 -1
- data/supplemental/java/biointerchange/src/main/java/org/biointerchange/vocabulary/GFF3O.java +97 -63
- data/supplemental/java/biointerchange/src/main/java/org/biointerchange/vocabulary/GVF1O.java +686 -102
- data/supplemental/java/biointerchange/src/main/java/org/biointerchange/vocabulary/SO.java +24000 -0
- data/supplemental/python/biointerchange/gff3o.py +85 -57
- data/supplemental/python/biointerchange/gvf1o.py +565 -84
- data/supplemental/python/biointerchange/so.py +19625 -0
- data/supplemental/python/setup.py +2 -2
- metadata +6 -3
data/spec/gff3_rdfwriter_spec.rb
CHANGED
@@ -73,7 +73,7 @@ describe BioInterchange::Genomics::RDFWriter do
|
|
73
73
|
object.sub!(/\s+\.$/, '')
|
74
74
|
feature_no += 1 if predicate == "<#{RDF.type}>" and object == "<#{BioInterchange::GFF3O.Feature}>"
|
75
75
|
}
|
76
|
-
lines.count.should be ==
|
76
|
+
lines.count.should be == 37
|
77
77
|
feature_no.should be == 3
|
78
78
|
end
|
79
79
|
end
|
data/spec/gvf_rdfwriter_spec.rb
CHANGED
@@ -73,7 +73,7 @@ describe BioInterchange::Genomics::RDFWriter do
|
|
73
73
|
object.sub!(/\s+\.$/, '')
|
74
74
|
feature_no += 1 if predicate == "<#{RDF.type}>" and object == "<#{BioInterchange::GVF1O.Feature}>"
|
75
75
|
}
|
76
|
-
lines.count.should be ==
|
76
|
+
lines.count.should be == 37
|
77
77
|
feature_no.should be == 3
|
78
78
|
end
|
79
79
|
end
|
data/supplemental/java/biointerchange/src/main/java/org/biointerchange/vocabulary/GFF3O.java
CHANGED
@@ -13,6 +13,14 @@ import org.apache.commons.collections.Predicate;
|
|
13
13
|
|
14
14
|
public class GFF3O {
|
15
15
|
|
16
|
+
/**
|
17
|
+
* Establishes the landmark (e.g. a chromosome) on which a feature is located.
|
18
|
+
* (http://www.biointerchange.org/gff3o#GFF3_0004)
|
19
|
+
*/
|
20
|
+
public static Resource seqid() {
|
21
|
+
return _namespace_GFF3O("http://www.biointerchange.org/gff3o#GFF3_0004");
|
22
|
+
}
|
23
|
+
|
16
24
|
/**
|
17
25
|
* Either:
|
18
26
|
* Strand of the feature.
|
@@ -93,22 +101,6 @@ public class GFF3O {
|
|
93
101
|
return new HashSet<Resource>(Arrays.asList(new Resource[] { _namespace_GFF3O("http://www.biointerchange.org/gff3o#GFF3_0026"), _namespace_GFF3O("http://www.biointerchange.org/gff3o#GFF3_0028") }));
|
94
102
|
}
|
95
103
|
|
96
|
-
/**
|
97
|
-
* A database cross-reference to associate a sequence alteration to its representation in another database.
|
98
|
-
* (http://www.biointerchange.org/gff3o#GFF3_0034)
|
99
|
-
*/
|
100
|
-
public static Resource dbxref() {
|
101
|
-
return _namespace_GFF3O("http://www.biointerchange.org/gff3o#GFF3_0034");
|
102
|
-
}
|
103
|
-
|
104
|
-
/**
|
105
|
-
* A cross-reference to an ontology term that is associated with a feature.
|
106
|
-
* (http://www.biointerchange.org/gff3o#GFF3_0035)
|
107
|
-
*/
|
108
|
-
public static Resource ontology_term() {
|
109
|
-
return _namespace_GFF3O("http://www.biointerchange.org/gff3o#GFF3_0035");
|
110
|
-
}
|
111
|
-
|
112
104
|
/**
|
113
105
|
* Identifies the target that the features aligns to.
|
114
106
|
* (http://www.biointerchange.org/gff3o#GFF3_0039)
|
@@ -138,11 +130,11 @@ public class GFF3O {
|
|
138
130
|
}
|
139
131
|
|
140
132
|
/**
|
141
|
-
*
|
142
|
-
* (http://www.biointerchange.org/gff3o#
|
133
|
+
* 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.
|
134
|
+
* (http://www.biointerchange.org/gff3o#GFF3_0056)
|
143
135
|
*/
|
144
|
-
public static Resource
|
145
|
-
return _namespace_GFF3O("http://www.biointerchange.org/gff3o#
|
136
|
+
public static Resource feature_ontology() {
|
137
|
+
return _namespace_GFF3O("http://www.biointerchange.org/gff3o#GFF3_0056");
|
146
138
|
}
|
147
139
|
|
148
140
|
/**
|
@@ -154,7 +146,7 @@ public class GFF3O {
|
|
154
146
|
}
|
155
147
|
|
156
148
|
/**
|
157
|
-
* Type of the feature, which is either
|
149
|
+
* 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).
|
158
150
|
* (http://www.biointerchange.org/gff3o#GFF3_0006)
|
159
151
|
*/
|
160
152
|
public static Resource type() {
|
@@ -168,9 +160,12 @@ public class GFF3O {
|
|
168
160
|
* Or:
|
169
161
|
* Start coordinate of the target.
|
170
162
|
* (http://www.biointerchange.org/gff3o#GFF3_0042)
|
163
|
+
* Or:
|
164
|
+
* Genomic start coordinate of the landmark.
|
165
|
+
* (http://www.biointerchange.org/gff3o#GFF3_0054)
|
171
166
|
*/
|
172
167
|
public static Set<Resource> start() {
|
173
|
-
return new HashSet<Resource>(Arrays.asList(new Resource[] { _namespace_GFF3O("http://www.biointerchange.org/gff3o#GFF3_0007"), _namespace_GFF3O("http://www.biointerchange.org/gff3o#GFF3_0042") }));
|
168
|
+
return new HashSet<Resource>(Arrays.asList(new Resource[] { _namespace_GFF3O("http://www.biointerchange.org/gff3o#GFF3_0007"), _namespace_GFF3O("http://www.biointerchange.org/gff3o#GFF3_0042"), _namespace_GFF3O("http://www.biointerchange.org/gff3o#GFF3_0054") }));
|
174
169
|
}
|
175
170
|
|
176
171
|
/**
|
@@ -180,9 +175,12 @@ public class GFF3O {
|
|
180
175
|
* Or:
|
181
176
|
* End coordinate of the target.
|
182
177
|
* (http://www.biointerchange.org/gff3o#GFF3_0043)
|
178
|
+
* Or:
|
179
|
+
* Genomic end coordinate of the landmark.
|
180
|
+
* (http://www.biointerchange.org/gff3o#GFF3_0055)
|
183
181
|
*/
|
184
182
|
public static Set<Resource> end() {
|
185
|
-
return new HashSet<Resource>(Arrays.asList(new Resource[] { _namespace_GFF3O("http://www.biointerchange.org/gff3o#GFF3_0008"), _namespace_GFF3O("http://www.biointerchange.org/gff3o#GFF3_0043") }));
|
183
|
+
return new HashSet<Resource>(Arrays.asList(new Resource[] { _namespace_GFF3O("http://www.biointerchange.org/gff3o#GFF3_0008"), _namespace_GFF3O("http://www.biointerchange.org/gff3o#GFF3_0043"), _namespace_GFF3O("http://www.biointerchange.org/gff3o#GFF3_0055") }));
|
186
184
|
}
|
187
185
|
|
188
186
|
/**
|
@@ -234,31 +232,27 @@ public class GFF3O {
|
|
234
232
|
}
|
235
233
|
|
236
234
|
/**
|
237
|
-
*
|
238
|
-
* (http://www.biointerchange.org/gff3o#
|
235
|
+
* A database cross-reference to associate a sequence alteration to its representation in another database.
|
236
|
+
* (http://www.biointerchange.org/gff3o#GFF3_0034)
|
239
237
|
*/
|
240
|
-
public static Resource
|
241
|
-
return _namespace_GFF3O("http://www.biointerchange.org/gff3o#
|
238
|
+
public static Resource dbxref() {
|
239
|
+
return _namespace_GFF3O("http://www.biointerchange.org/gff3o#GFF3_0034");
|
242
240
|
}
|
243
241
|
|
244
242
|
/**
|
245
|
-
*
|
246
|
-
*
|
247
|
-
* (http://www.biointerchange.org/gff3o#GFF3_0032)
|
248
|
-
* Or:
|
249
|
-
* Name of a feature, which can be used for display purposes. The name is not a unique property among features.
|
250
|
-
* (http://www.biointerchange.org/gff3o#GFF3_0036)
|
243
|
+
* A cross-reference to an ontology term that is associated with a feature.
|
244
|
+
* (http://www.biointerchange.org/gff3o#GFF3_0035)
|
251
245
|
*/
|
252
|
-
public static
|
253
|
-
return
|
246
|
+
public static Resource ontology_term() {
|
247
|
+
return _namespace_GFF3O("http://www.biointerchange.org/gff3o#GFF3_0035");
|
254
248
|
}
|
255
249
|
|
256
250
|
/**
|
257
|
-
*
|
258
|
-
* (http://www.biointerchange.org/gff3o#
|
251
|
+
* Name of a feature, which can be used for display purposes. The name is not a unique property among features.
|
252
|
+
* (http://www.biointerchange.org/gff3o#GFF3_0036)
|
259
253
|
*/
|
260
|
-
public static Resource
|
261
|
-
return _namespace_GFF3O("http://www.biointerchange.org/gff3o#
|
254
|
+
public static Resource name() {
|
255
|
+
return _namespace_GFF3O("http://www.biointerchange.org/gff3o#GFF3_0036");
|
262
256
|
}
|
263
257
|
|
264
258
|
/**
|
@@ -301,6 +295,34 @@ public class GFF3O {
|
|
301
295
|
return _namespace_GFF3O("http://www.biointerchange.org/gff3o#GFF3_0049");
|
302
296
|
}
|
303
297
|
|
298
|
+
/**
|
299
|
+
* Properties that are directly associated with Landmark class instances.
|
300
|
+
* (http://www.biointerchange.org/gff3o#GFF3_0052)
|
301
|
+
*/
|
302
|
+
public static Resource landmark_properties() {
|
303
|
+
return _namespace_GFF3O("http://www.biointerchange.org/gff3o#GFF3_0052");
|
304
|
+
}
|
305
|
+
|
306
|
+
/**
|
307
|
+
* ID that uniquely establishes the Landmark"s identity within a Set.
|
308
|
+
* (http://www.biointerchange.org/gff3o#GFF3_0053)
|
309
|
+
*/
|
310
|
+
public static Resource id() {
|
311
|
+
return _namespace_GFF3O("http://www.biointerchange.org/gff3o#GFF3_0053");
|
312
|
+
}
|
313
|
+
|
314
|
+
/**
|
315
|
+
* Either:
|
316
|
+
* Sequence associated with this feature, if it has been specified using a FASTA string.
|
317
|
+
* (http://www.biointerchange.org/gff3o#GFF3_0057)
|
318
|
+
* Or:
|
319
|
+
* Sequence associated with this feature, if it has been specified using a FASTA string.
|
320
|
+
* (http://www.biointerchange.org/gff3o#GFF3_0058)
|
321
|
+
*/
|
322
|
+
public static Set<Resource> sequence() {
|
323
|
+
return new HashSet<Resource>(Arrays.asList(new Resource[] { _namespace_GFF3O("http://www.biointerchange.org/gff3o#GFF3_0057"), _namespace_GFF3O("http://www.biointerchange.org/gff3o#GFF3_0058") }));
|
324
|
+
}
|
325
|
+
|
304
326
|
/**
|
305
327
|
* Set of genomic sequence features, whose identifiers are unique within the set.
|
306
328
|
* (http://www.biointerchange.org/gff3o#GFF3_0001)
|
@@ -333,14 +355,6 @@ public class GFF3O {
|
|
333
355
|
return _namespace_GFF3O("http://www.biointerchange.org/gff3o#GFF3_0016");
|
334
356
|
}
|
335
357
|
|
336
|
-
/**
|
337
|
-
* A class describing relationships between features and external databases.
|
338
|
-
* (http://www.biointerchange.org/gff3o#GFF3_0030)
|
339
|
-
*/
|
340
|
-
public static Resource DBXRef() {
|
341
|
-
return _namespace_GFF3O("http://www.biointerchange.org/gff3o#GFF3_0030");
|
342
|
-
}
|
343
|
-
|
344
358
|
/**
|
345
359
|
* Indicates a feature"s "target" of a nucleotide-to-nucleotide or protein-to-nucleotide alignment.
|
346
360
|
* (http://www.biointerchange.org/gff3o#GFF3_0038)
|
@@ -349,6 +363,14 @@ public class GFF3O {
|
|
349
363
|
return _namespace_GFF3O("http://www.biointerchange.org/gff3o#GFF3_0038");
|
350
364
|
}
|
351
365
|
|
366
|
+
/**
|
367
|
+
* A landmark that establishes the coordinate system for features.
|
368
|
+
* (http://www.biointerchange.org/gff3o#GFF3_0051)
|
369
|
+
*/
|
370
|
+
public static Resource Landmark() {
|
371
|
+
return _namespace_GFF3O("http://www.biointerchange.org/gff3o#GFF3_0051");
|
372
|
+
}
|
373
|
+
|
352
374
|
/**
|
353
375
|
* Location on the positive (forward) strand.
|
354
376
|
* (http://www.biointerchange.org/gff3o#GFF3_0017)
|
@@ -387,6 +409,9 @@ public class GFF3O {
|
|
387
409
|
* @param uri URI that is tested for being an object property
|
388
410
|
*/
|
389
411
|
public static boolean isObjectProperty(Resource uri) {
|
412
|
+
if (uri == _namespace_GFF3O("http://www.biointerchange.org/gff3o#GFF3_0004")) {
|
413
|
+
return true;
|
414
|
+
}
|
390
415
|
if (uri == _namespace_GFF3O("http://www.biointerchange.org/gff3o#GFF3_0010")) {
|
391
416
|
return true;
|
392
417
|
}
|
@@ -411,12 +436,6 @@ public class GFF3O {
|
|
411
436
|
if (uri == _namespace_GFF3O("http://www.biointerchange.org/gff3o#GFF3_0026")) {
|
412
437
|
return true;
|
413
438
|
}
|
414
|
-
if (uri == _namespace_GFF3O("http://www.biointerchange.org/gff3o#GFF3_0034")) {
|
415
|
-
return true;
|
416
|
-
}
|
417
|
-
if (uri == _namespace_GFF3O("http://www.biointerchange.org/gff3o#GFF3_0035")) {
|
418
|
-
return true;
|
419
|
-
}
|
420
439
|
if (uri == _namespace_GFF3O("http://www.biointerchange.org/gff3o#GFF3_0039")) {
|
421
440
|
return true;
|
422
441
|
}
|
@@ -432,6 +451,9 @@ public class GFF3O {
|
|
432
451
|
if (uri == _namespace_GFF3O("http://www.biointerchange.org/gff3o#GFF3_0050")) {
|
433
452
|
return true;
|
434
453
|
}
|
454
|
+
if (uri == _namespace_GFF3O("http://www.biointerchange.org/gff3o#GFF3_0056")) {
|
455
|
+
return true;
|
456
|
+
}
|
435
457
|
return false;
|
436
458
|
}
|
437
459
|
|
@@ -441,9 +463,6 @@ public class GFF3O {
|
|
441
463
|
* @param uri URI that is tested for being a datatype property
|
442
464
|
*/
|
443
465
|
public static boolean isDatatypeProperty(Resource uri) {
|
444
|
-
if (uri == _namespace_GFF3O("http://www.biointerchange.org/gff3o#GFF3_0004")) {
|
445
|
-
return true;
|
446
|
-
}
|
447
466
|
if (uri == _namespace_GFF3O("http://www.biointerchange.org/gff3o#GFF3_0005")) {
|
448
467
|
return true;
|
449
468
|
}
|
@@ -480,13 +499,10 @@ public class GFF3O {
|
|
480
499
|
if (uri == _namespace_GFF3O("http://www.biointerchange.org/gff3o#GFF3_0029")) {
|
481
500
|
return true;
|
482
501
|
}
|
483
|
-
if (uri == _namespace_GFF3O("http://www.biointerchange.org/gff3o#
|
484
|
-
return true;
|
485
|
-
}
|
486
|
-
if (uri == _namespace_GFF3O("http://www.biointerchange.org/gff3o#GFF3_0032")) {
|
502
|
+
if (uri == _namespace_GFF3O("http://www.biointerchange.org/gff3o#GFF3_0034")) {
|
487
503
|
return true;
|
488
504
|
}
|
489
|
-
if (uri == _namespace_GFF3O("http://www.biointerchange.org/gff3o#
|
505
|
+
if (uri == _namespace_GFF3O("http://www.biointerchange.org/gff3o#GFF3_0035")) {
|
490
506
|
return true;
|
491
507
|
}
|
492
508
|
if (uri == _namespace_GFF3O("http://www.biointerchange.org/gff3o#GFF3_0036")) {
|
@@ -516,6 +532,24 @@ public class GFF3O {
|
|
516
532
|
if (uri == _namespace_GFF3O("http://www.biointerchange.org/gff3o#GFF3_0049")) {
|
517
533
|
return true;
|
518
534
|
}
|
535
|
+
if (uri == _namespace_GFF3O("http://www.biointerchange.org/gff3o#GFF3_0052")) {
|
536
|
+
return true;
|
537
|
+
}
|
538
|
+
if (uri == _namespace_GFF3O("http://www.biointerchange.org/gff3o#GFF3_0053")) {
|
539
|
+
return true;
|
540
|
+
}
|
541
|
+
if (uri == _namespace_GFF3O("http://www.biointerchange.org/gff3o#GFF3_0054")) {
|
542
|
+
return true;
|
543
|
+
}
|
544
|
+
if (uri == _namespace_GFF3O("http://www.biointerchange.org/gff3o#GFF3_0055")) {
|
545
|
+
return true;
|
546
|
+
}
|
547
|
+
if (uri == _namespace_GFF3O("http://www.biointerchange.org/gff3o#GFF3_0057")) {
|
548
|
+
return true;
|
549
|
+
}
|
550
|
+
if (uri == _namespace_GFF3O("http://www.biointerchange.org/gff3o#GFF3_0058")) {
|
551
|
+
return true;
|
552
|
+
}
|
519
553
|
return false;
|
520
554
|
}
|
521
555
|
|
@@ -537,10 +571,10 @@ public class GFF3O {
|
|
537
571
|
if (uri == _namespace_GFF3O("http://www.biointerchange.org/gff3o#GFF3_0016")) {
|
538
572
|
return true;
|
539
573
|
}
|
540
|
-
if (uri == _namespace_GFF3O("http://www.biointerchange.org/gff3o#
|
574
|
+
if (uri == _namespace_GFF3O("http://www.biointerchange.org/gff3o#GFF3_0038")) {
|
541
575
|
return true;
|
542
576
|
}
|
543
|
-
if (uri == _namespace_GFF3O("http://www.biointerchange.org/gff3o#
|
577
|
+
if (uri == _namespace_GFF3O("http://www.biointerchange.org/gff3o#GFF3_0051")) {
|
544
578
|
return true;
|
545
579
|
}
|
546
580
|
return false;
|
data/supplemental/java/biointerchange/src/main/java/org/biointerchange/vocabulary/GVF1O.java
CHANGED
@@ -13,6 +13,18 @@ import org.apache.commons.collections.Predicate;
|
|
13
13
|
|
14
14
|
public class GVF1O {
|
15
15
|
|
16
|
+
/**
|
17
|
+
* Either:
|
18
|
+
* Establishes the landmark (e.g. a chromosome) on which a feature is located.
|
19
|
+
* (http://www.biointerchange.org/gvf1o#GVF1_0004)
|
20
|
+
* Or:
|
21
|
+
* Link to the landmark that establishes the coordinate system for the breakpoint.
|
22
|
+
* (http://www.biointerchange.org/gvf1o#GVF1_0072)
|
23
|
+
*/
|
24
|
+
public static Set<Resource> seqid() {
|
25
|
+
return new HashSet<Resource>(Arrays.asList(new Resource[] { _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0004"), _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0072") }));
|
26
|
+
}
|
27
|
+
|
16
28
|
/**
|
17
29
|
* Either:
|
18
30
|
* Strand of the feature.
|
@@ -29,11 +41,15 @@ public class GVF1O {
|
|
29
41
|
}
|
30
42
|
|
31
43
|
/**
|
32
|
-
*
|
33
|
-
*
|
44
|
+
* Either:
|
45
|
+
* Tag name/value pair attributes of a feature.
|
46
|
+
* (http://www.biointerchange.org/gvf1o#GVF1_0012)
|
47
|
+
* Or:
|
48
|
+
* Tag name/value pair attributes that are not captured by the GVF specification.
|
49
|
+
* (http://www.biointerchange.org/gvf1o#GVF1_0152)
|
34
50
|
*/
|
35
|
-
public static Resource attributes() {
|
36
|
-
return _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0012");
|
51
|
+
public static Set<Resource> attributes() {
|
52
|
+
return new HashSet<Resource>(Arrays.asList(new Resource[] { _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0012"), _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0152") }));
|
37
53
|
}
|
38
54
|
|
39
55
|
/**
|
@@ -123,14 +139,6 @@ public class GVF1O {
|
|
123
139
|
return _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0043");
|
124
140
|
}
|
125
141
|
|
126
|
-
/**
|
127
|
-
* Features that are affected by this sequence alteration effect.
|
128
|
-
* (http://www.biointerchange.org/gvf1o#GVF1_0044)
|
129
|
-
*/
|
130
|
-
public static Resource feature_id() {
|
131
|
-
return _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0044");
|
132
|
-
}
|
133
|
-
|
134
142
|
/**
|
135
143
|
* A coordinate range for ambiguous start coordinates.
|
136
144
|
* (http://www.biointerchange.org/gvf1o#GVF1_0046)
|
@@ -212,11 +220,15 @@ public class GVF1O {
|
|
212
220
|
}
|
213
221
|
|
214
222
|
/**
|
215
|
-
*
|
216
|
-
*
|
223
|
+
* Either:
|
224
|
+
* Properties that are directly associated with Effect class instances.
|
225
|
+
* (http://www.biointerchange.org/gvf1o#GVF1_0070)
|
226
|
+
* Or:
|
227
|
+
* Properties that are directly associated with Effect class instances.
|
228
|
+
* (http://www.biointerchange.org/gvf1o#GVF1_0158)
|
217
229
|
*/
|
218
|
-
public static Resource effect_properties() {
|
219
|
-
return _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0070");
|
230
|
+
public static Set<Resource> effect_properties() {
|
231
|
+
return new HashSet<Resource>(Arrays.asList(new Resource[] { _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0070"), _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0158") }));
|
220
232
|
}
|
221
233
|
|
222
234
|
/**
|
@@ -232,11 +244,15 @@ public class GVF1O {
|
|
232
244
|
}
|
233
245
|
|
234
246
|
/**
|
235
|
-
*
|
236
|
-
*
|
247
|
+
* Either:
|
248
|
+
* A database cross-reference to associate a sequence alteration to its representation in another database.
|
249
|
+
* (http://www.biointerchange.org/gvf1o#GVF1_0078)
|
250
|
+
* Or:
|
251
|
+
* A database cross-reference to associate a structured pragma to a representation in another database.
|
252
|
+
* (http://www.biointerchange.org/gvf1o#GVF1_0104)
|
237
253
|
*/
|
238
|
-
public static Resource dbxref() {
|
239
|
-
return _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0078");
|
254
|
+
public static Set<Resource> dbxref() {
|
255
|
+
return new HashSet<Resource>(Arrays.asList(new Resource[] { _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0078"), _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0104") }));
|
240
256
|
}
|
241
257
|
|
242
258
|
/**
|
@@ -261,14 +277,155 @@ public class GVF1O {
|
|
261
277
|
|
262
278
|
/**
|
263
279
|
* Either:
|
264
|
-
*
|
265
|
-
* (http://www.biointerchange.org/gvf1o#
|
280
|
+
* Properties that are directly associated with TechnologyPlatform class instances.
|
281
|
+
* (http://www.biointerchange.org/gvf1o#GVF1_0102)
|
266
282
|
* Or:
|
267
|
-
*
|
268
|
-
* (http://www.biointerchange.org/gvf1o#
|
283
|
+
* Properties that are directly associated with TechnologyPlatform class instances.
|
284
|
+
* (http://www.biointerchange.org/gvf1o#GVF1_0107)
|
269
285
|
*/
|
270
|
-
public static Set<Resource>
|
271
|
-
return new HashSet<Resource>(Arrays.asList(new Resource[] { _namespace_GVF1O("http://www.biointerchange.org/gvf1o#
|
286
|
+
public static Set<Resource> technologyplatform_properties() {
|
287
|
+
return new HashSet<Resource>(Arrays.asList(new Resource[] { _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0102"), _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0107") }));
|
288
|
+
}
|
289
|
+
|
290
|
+
/**
|
291
|
+
* Properties that are directly associated with DataSource class instances.
|
292
|
+
* (http://www.biointerchange.org/gvf1o#GVF1_0103)
|
293
|
+
*/
|
294
|
+
public static Resource datasource_properties() {
|
295
|
+
return _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0103");
|
296
|
+
}
|
297
|
+
|
298
|
+
/**
|
299
|
+
* Either:
|
300
|
+
* Properties describing structured pragma properties.
|
301
|
+
* (http://www.biointerchange.org/gvf1o#GVF1_0112)
|
302
|
+
* Or:
|
303
|
+
* Properties describing structured pragma properties.
|
304
|
+
* (http://www.biointerchange.org/gvf1o#GVF1_0113)
|
305
|
+
*/
|
306
|
+
public static Set<Resource> structuredpragma_properties() {
|
307
|
+
return new HashSet<Resource>(Arrays.asList(new Resource[] { _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0112"), _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0113") }));
|
308
|
+
}
|
309
|
+
|
310
|
+
/**
|
311
|
+
* Types of reads produced by the platform.
|
312
|
+
* (http://www.biointerchange.org/gvf1o#GVF1_0119)
|
313
|
+
*/
|
314
|
+
public static Resource read_type() {
|
315
|
+
return _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0119");
|
316
|
+
}
|
317
|
+
|
318
|
+
/**
|
319
|
+
* Datatype of this data source.
|
320
|
+
* (http://www.biointerchange.org/gvf1o#GVF1_0120)
|
321
|
+
*/
|
322
|
+
public static Resource data_type() {
|
323
|
+
return _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0120");
|
324
|
+
}
|
325
|
+
|
326
|
+
/**
|
327
|
+
* Technology platform that was used to derive the feature.
|
328
|
+
* (http://www.biointerchange.org/gvf1o#GVF1_0121)
|
329
|
+
*/
|
330
|
+
public static Resource technology_platform() {
|
331
|
+
return _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0121");
|
332
|
+
}
|
333
|
+
|
334
|
+
/**
|
335
|
+
* Data source origin of the feature.
|
336
|
+
* (http://www.biointerchange.org/gvf1o#GVF1_0122)
|
337
|
+
*/
|
338
|
+
public static Resource data_source() {
|
339
|
+
return _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0122");
|
340
|
+
}
|
341
|
+
|
342
|
+
/**
|
343
|
+
* Used scoring method.
|
344
|
+
* (http://www.biointerchange.org/gvf1o#GVF1_0123)
|
345
|
+
*/
|
346
|
+
public static Resource score_method() {
|
347
|
+
return _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0123");
|
348
|
+
}
|
349
|
+
|
350
|
+
/**
|
351
|
+
* Further information about the algorithm/methodologies used.
|
352
|
+
* (http://www.biointerchange.org/gvf1o#GVF1_0124)
|
353
|
+
*/
|
354
|
+
public static Resource source_method() {
|
355
|
+
return _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0124");
|
356
|
+
}
|
357
|
+
|
358
|
+
/**
|
359
|
+
* Further information about an individual"s phenotype. Applies only to single individual sets.
|
360
|
+
* (http://www.biointerchange.org/gvf1o#GVF1_0125)
|
361
|
+
*/
|
362
|
+
public static Resource phenotype_description() {
|
363
|
+
return _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0125");
|
364
|
+
}
|
365
|
+
|
366
|
+
/**
|
367
|
+
* Either:
|
368
|
+
* Further information about the associated attribute(s).
|
369
|
+
* (http://www.biointerchange.org/gvf1o#GVF1_0126)
|
370
|
+
* Or:
|
371
|
+
* Further information about the associated attribute(s).
|
372
|
+
* (http://www.biointerchange.org/gvf1o#GVF1_0127)
|
373
|
+
* Or:
|
374
|
+
* Further information about the associated attribute(s).
|
375
|
+
* (http://www.biointerchange.org/gvf1o#GVF1_0129)
|
376
|
+
* Or:
|
377
|
+
* Further information about the associated attribute(s).
|
378
|
+
* (http://www.biointerchange.org/gvf1o#GVF1_0130)
|
379
|
+
* Or:
|
380
|
+
* Further information about the associated attribute(s).
|
381
|
+
* (http://www.biointerchange.org/gvf1o#GVF1_0131)
|
382
|
+
*/
|
383
|
+
public static Set<Resource> attribute_method() {
|
384
|
+
return new HashSet<Resource>(Arrays.asList(new Resource[] { _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0126"), _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0127"), _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0129"), _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0130"), _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0131") }));
|
385
|
+
}
|
386
|
+
|
387
|
+
/**
|
388
|
+
* Either:
|
389
|
+
* Properties about Attribute instances.
|
390
|
+
* (http://www.biointerchange.org/gvf1o#GVF1_0128)
|
391
|
+
* Or:
|
392
|
+
* Properties that are directly associated with Attribute class instances.
|
393
|
+
* (http://www.biointerchange.org/gvf1o#GVF1_0064)
|
394
|
+
*/
|
395
|
+
public static Set<Resource> attribute_properties() {
|
396
|
+
return new HashSet<Resource>(Arrays.asList(new Resource[] { _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0128"), _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0064") }));
|
397
|
+
}
|
398
|
+
|
399
|
+
/**
|
400
|
+
* Denotes the sex of the sequenced individual for single-individual sets.
|
401
|
+
* (http://www.biointerchange.org/gvf1o#GVF1_0147)
|
402
|
+
*/
|
403
|
+
public static Resource sex() {
|
404
|
+
return _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0147");
|
405
|
+
}
|
406
|
+
|
407
|
+
/**
|
408
|
+
* Denotes the source of genomic data (on a cell-type level).
|
409
|
+
* (http://www.biointerchange.org/gvf1o#GVF1_0148)
|
410
|
+
*/
|
411
|
+
public static Resource genomic_source() {
|
412
|
+
return _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0148");
|
413
|
+
}
|
414
|
+
|
415
|
+
/**
|
416
|
+
* 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.
|
417
|
+
* (http://www.biointerchange.org/gvf1o#GVF1_0150)
|
418
|
+
*/
|
419
|
+
public static Resource feature_ontology() {
|
420
|
+
return _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0150");
|
421
|
+
}
|
422
|
+
|
423
|
+
/**
|
424
|
+
* Identifies the target that the features aligns to.
|
425
|
+
* (http://www.biointerchange.org/gvf1o#GVF1_0155)
|
426
|
+
*/
|
427
|
+
public static Resource target() {
|
428
|
+
return _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0155");
|
272
429
|
}
|
273
430
|
|
274
431
|
/**
|
@@ -280,7 +437,7 @@ public class GVF1O {
|
|
280
437
|
}
|
281
438
|
|
282
439
|
/**
|
283
|
-
* Type of the feature, which is either
|
440
|
+
* 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).
|
284
441
|
* (http://www.biointerchange.org/gvf1o#GVF1_0006)
|
285
442
|
*/
|
286
443
|
public static Resource type() {
|
@@ -300,9 +457,12 @@ public class GVF1O {
|
|
300
457
|
* Or:
|
301
458
|
* Start coordinate of the target.
|
302
459
|
* (http://www.biointerchange.org/gvf1o#GVF1_0094)
|
460
|
+
* Or:
|
461
|
+
* Genomic start coordinate of the landmark.
|
462
|
+
* (http://www.biointerchange.org/gvf1o#GVF1_0138)
|
303
463
|
*/
|
304
464
|
public static Set<Resource> start() {
|
305
|
-
return new HashSet<Resource>(Arrays.asList(new Resource[] { _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0007"), _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0048"), _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0073"), _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0094") }));
|
465
|
+
return new HashSet<Resource>(Arrays.asList(new Resource[] { _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0007"), _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0048"), _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0073"), _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0094"), _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0138") }));
|
306
466
|
}
|
307
467
|
|
308
468
|
/**
|
@@ -318,9 +478,12 @@ public class GVF1O {
|
|
318
478
|
* Or:
|
319
479
|
* End coordinate of the target.
|
320
480
|
* (http://www.biointerchange.org/gvf1o#GVF1_0095)
|
481
|
+
* Or:
|
482
|
+
* Genomic end coordinate of the landmark.
|
483
|
+
* (http://www.biointerchange.org/gvf1o#GVF1_0139)
|
321
484
|
*/
|
322
485
|
public static Set<Resource> end() {
|
323
|
-
return new HashSet<Resource>(Arrays.asList(new Resource[] { _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0008"), _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0049"), _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0074"), _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0095") }));
|
486
|
+
return new HashSet<Resource>(Arrays.asList(new Resource[] { _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0008"), _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0049"), _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0074"), _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0095"), _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0139") }));
|
324
487
|
}
|
325
488
|
|
326
489
|
/**
|
@@ -332,11 +495,15 @@ public class GVF1O {
|
|
332
495
|
}
|
333
496
|
|
334
497
|
/**
|
335
|
-
*
|
336
|
-
*
|
498
|
+
* Either:
|
499
|
+
* Tag name of a feature attribute.
|
500
|
+
* (http://www.biointerchange.org/gvf1o#GVF1_0013)
|
501
|
+
* Or:
|
502
|
+
* Tag name of an user defined structured attribute.
|
503
|
+
* (http://www.biointerchange.org/gvf1o#GVF1_0154)
|
337
504
|
*/
|
338
|
-
public static Resource tag() {
|
339
|
-
return _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0013");
|
505
|
+
public static Set<Resource> tag() {
|
506
|
+
return new HashSet<Resource>(Arrays.asList(new Resource[] { _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0013"), _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0154") }));
|
340
507
|
}
|
341
508
|
|
342
509
|
/**
|
@@ -364,11 +531,15 @@ public class GVF1O {
|
|
364
531
|
}
|
365
532
|
|
366
533
|
/**
|
367
|
-
*
|
368
|
-
*
|
534
|
+
* Either:
|
535
|
+
* A unique identifier for the feature within the feature set.
|
536
|
+
* (http://www.biointerchange.org/gvf1o#GVF1_0026)
|
537
|
+
* Or:
|
538
|
+
* ID that uniquely establishes the Landmark"s identity within a Set.
|
539
|
+
* (http://www.biointerchange.org/gvf1o#GVF1_0137)
|
369
540
|
*/
|
370
|
-
public static Resource id() {
|
371
|
-
return _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0026");
|
541
|
+
public static Set<Resource> id() {
|
542
|
+
return new HashSet<Resource>(Arrays.asList(new Resource[] { _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0026"), _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0137") }));
|
372
543
|
}
|
373
544
|
|
374
545
|
/**
|
@@ -379,22 +550,6 @@ public class GVF1O {
|
|
379
550
|
return _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0027");
|
380
551
|
}
|
381
552
|
|
382
|
-
/**
|
383
|
-
* Name of an external database. For example, "dbSNP" or "OMIM".
|
384
|
-
* (http://www.biointerchange.org/gvf1o#GVF1_0029)
|
385
|
-
*/
|
386
|
-
public static Resource name() {
|
387
|
-
return _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0029");
|
388
|
-
}
|
389
|
-
|
390
|
-
/**
|
391
|
-
* External database identifier. For example, for dbSNP, this identifier could be "rs3131969".
|
392
|
-
* (http://www.biointerchange.org/gvf1o#GVF1_0030)
|
393
|
-
*/
|
394
|
-
public static Resource xref() {
|
395
|
-
return _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0030");
|
396
|
-
}
|
397
|
-
|
398
553
|
/**
|
399
554
|
* Sequence from the reference genome.
|
400
555
|
* (http://www.biointerchange.org/gvf1o#GVF1_0031)
|
@@ -428,11 +583,23 @@ public class GVF1O {
|
|
428
583
|
}
|
429
584
|
|
430
585
|
/**
|
431
|
-
*
|
432
|
-
* (http://www.biointerchange.org/gvf1o#
|
586
|
+
* Features that are affected by this sequence alteration effect. This can be an external feature identifier, such as an Ensembl gene/transcript identifier.
|
587
|
+
* (http://www.biointerchange.org/gvf1o#GVF1_0044)
|
588
|
+
*/
|
589
|
+
public static Resource feature() {
|
590
|
+
return _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0044");
|
591
|
+
}
|
592
|
+
|
593
|
+
/**
|
594
|
+
* Either:
|
595
|
+
* Unclear from GVF specification.
|
596
|
+
* (http://www.biointerchange.org/gvf1o#GVF1_0050)
|
597
|
+
* Or:
|
598
|
+
* Indicates whether this particular is phased. Used to encode ##phased-genotypes statements.
|
599
|
+
* (http://www.biointerchange.org/gvf1o#GVF1_0101)
|
433
600
|
*/
|
434
|
-
public static Resource phased() {
|
435
|
-
return _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0050");
|
601
|
+
public static Set<Resource> phased() {
|
602
|
+
return new HashSet<Resource>(Arrays.asList(new Resource[] { _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0050"), _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0101") }));
|
436
603
|
}
|
437
604
|
|
438
605
|
/**
|
@@ -475,22 +642,6 @@ public class GVF1O {
|
|
475
642
|
return _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0061");
|
476
643
|
}
|
477
644
|
|
478
|
-
/**
|
479
|
-
* Properties that are directly associated with DBXRef class instances.
|
480
|
-
* (http://www.biointerchange.org/gvf1o#GVF1_0062)
|
481
|
-
*/
|
482
|
-
public static Resource dbxref_properties() {
|
483
|
-
return _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0062");
|
484
|
-
}
|
485
|
-
|
486
|
-
/**
|
487
|
-
* Properties that are directly associated with Attribute class instances.
|
488
|
-
* (http://www.biointerchange.org/gvf1o#GVF1_0064)
|
489
|
-
*/
|
490
|
-
public static Resource attribute_properties() {
|
491
|
-
return _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0064");
|
492
|
-
}
|
493
|
-
|
494
645
|
/**
|
495
646
|
* Sequence context (positive strand) of a feature on the 5" end.
|
496
647
|
* (http://www.biointerchange.org/gvf1o#GVF1_0076)
|
@@ -523,6 +674,98 @@ public class GVF1O {
|
|
523
674
|
return _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0093");
|
524
675
|
}
|
525
676
|
|
677
|
+
/**
|
678
|
+
* A cross-reference to an ontology term that is associated with a feature.
|
679
|
+
* (http://www.biointerchange.org/gvf1o#GVF1_0096)
|
680
|
+
*/
|
681
|
+
public static Resource ontology_term() {
|
682
|
+
return _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0096");
|
683
|
+
}
|
684
|
+
|
685
|
+
/**
|
686
|
+
* An arbitrary comment. Free text.
|
687
|
+
* (http://www.biointerchange.org/gvf1o#GVF1_0105)
|
688
|
+
*/
|
689
|
+
public static Resource comment() {
|
690
|
+
return _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0105");
|
691
|
+
}
|
692
|
+
|
693
|
+
/**
|
694
|
+
* Type of technology used to gather the variant data. Unrestricted range due to open specification.
|
695
|
+
* (http://www.biointerchange.org/gvf1o#GVF1_0106)
|
696
|
+
*/
|
697
|
+
public static Resource platform_class() {
|
698
|
+
return _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0106");
|
699
|
+
}
|
700
|
+
|
701
|
+
/**
|
702
|
+
* Sequencer or other machine used to collect the variant data. Unrestricted range due to open specification.
|
703
|
+
* (http://www.biointerchange.org/gvf1o#GVF1_0108)
|
704
|
+
*/
|
705
|
+
public static Resource platform_name() {
|
706
|
+
return _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0108");
|
707
|
+
}
|
708
|
+
|
709
|
+
/**
|
710
|
+
* Undocumented in GVF specification.
|
711
|
+
* (http://www.biointerchange.org/gvf1o#GVF1_0132)
|
712
|
+
*/
|
713
|
+
public static Resource read_length() {
|
714
|
+
return _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0132");
|
715
|
+
}
|
716
|
+
|
717
|
+
/**
|
718
|
+
* Undocumented in GVF specification.
|
719
|
+
* (http://www.biointerchange.org/gvf1o#GVF1_0133)
|
720
|
+
*/
|
721
|
+
public static Resource read_pair_span() {
|
722
|
+
return _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0133");
|
723
|
+
}
|
724
|
+
|
725
|
+
/**
|
726
|
+
* Undocumented in GVF specification.
|
727
|
+
* (http://www.biointerchange.org/gvf1o#GVF1_0134)
|
728
|
+
*/
|
729
|
+
public static Resource average_coverage() {
|
730
|
+
return _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0134");
|
731
|
+
}
|
732
|
+
|
733
|
+
/**
|
734
|
+
* Properties that are directly associated with Landmark class instances.
|
735
|
+
* (http://www.biointerchange.org/gvf1o#GVF1_0136)
|
736
|
+
*/
|
737
|
+
public static Resource landmark_properties() {
|
738
|
+
return _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0136");
|
739
|
+
}
|
740
|
+
|
741
|
+
/**
|
742
|
+
* Version of the GVF file that this set stems from.
|
743
|
+
* (http://www.biointerchange.org/gvf1o#GVF1_0149)
|
744
|
+
*/
|
745
|
+
public static Resource file_version() {
|
746
|
+
return _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0149");
|
747
|
+
}
|
748
|
+
|
749
|
+
/**
|
750
|
+
* Properties that are directly associated with StructuredAttribute class instances.
|
751
|
+
* (http://www.biointerchange.org/gvf1o#GVF1_0153)
|
752
|
+
*/
|
753
|
+
public static Resource structuredattribute_properties() {
|
754
|
+
return _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0153");
|
755
|
+
}
|
756
|
+
|
757
|
+
/**
|
758
|
+
* Either:
|
759
|
+
* Sequence associated with this feature, if it has been specified using a FASTA string.
|
760
|
+
* (http://www.biointerchange.org/gvf1o#GVF1_0156)
|
761
|
+
* Or:
|
762
|
+
* Sequence associated with this feature, if it has been specified using a FASTA string.
|
763
|
+
* (http://www.biointerchange.org/gvf1o#GVF1_0157)
|
764
|
+
*/
|
765
|
+
public static Set<Resource> sequence() {
|
766
|
+
return new HashSet<Resource>(Arrays.asList(new Resource[] { _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0156"), _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0157") }));
|
767
|
+
}
|
768
|
+
|
526
769
|
/**
|
527
770
|
* Set of genomic sequence features, whose identifiers are unique within the set.
|
528
771
|
* (http://www.biointerchange.org/gvf1o#GVF1_0001)
|
@@ -539,6 +782,10 @@ public class GVF1O {
|
|
539
782
|
return _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0002");
|
540
783
|
}
|
541
784
|
|
785
|
+
/**
|
786
|
+
* Representation of attribute tag/value pairs that are not covered by specific classes such as Effect or Variant.
|
787
|
+
* (http://www.biointerchange.org/gvf1o#GVF1_0003)
|
788
|
+
*/
|
542
789
|
public static Resource Attribute() {
|
543
790
|
return _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0003");
|
544
791
|
}
|
@@ -551,14 +798,6 @@ public class GVF1O {
|
|
551
798
|
return _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0016");
|
552
799
|
}
|
553
800
|
|
554
|
-
/**
|
555
|
-
* A class describing relationships between features and external databases.
|
556
|
-
* (http://www.biointerchange.org/gvf1o#GVF1_0028)
|
557
|
-
*/
|
558
|
-
public static Resource DBXRef() {
|
559
|
-
return _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0028");
|
560
|
-
}
|
561
|
-
|
562
801
|
/**
|
563
802
|
* Describing specific alterations of a feature.
|
564
803
|
* (http://www.biointerchange.org/gvf1o#GVF1_0033)
|
@@ -623,6 +862,86 @@ public class GVF1O {
|
|
623
862
|
return _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0088");
|
624
863
|
}
|
625
864
|
|
865
|
+
/**
|
866
|
+
* Details about the sequencing/microarray technology used to gather the data in a set.
|
867
|
+
* (http://www.biointerchange.org/gvf1o#GVF1_0097)
|
868
|
+
*/
|
869
|
+
public static Resource TechnologyPlatform() {
|
870
|
+
return _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0097");
|
871
|
+
}
|
872
|
+
|
873
|
+
/**
|
874
|
+
* 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.
|
875
|
+
* (http://www.biointerchange.org/gvf1o#GVF1_0098)
|
876
|
+
*/
|
877
|
+
public static Resource DataSource() {
|
878
|
+
return _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0098");
|
879
|
+
}
|
880
|
+
|
881
|
+
/**
|
882
|
+
* Information about the used scoring algorithm or method.
|
883
|
+
* (http://www.biointerchange.org/gvf1o#GVF1_0099)
|
884
|
+
*/
|
885
|
+
public static Resource Method() {
|
886
|
+
return _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0099");
|
887
|
+
}
|
888
|
+
|
889
|
+
/**
|
890
|
+
* Additional information about an individual"s phenotype.
|
891
|
+
* (http://www.biointerchange.org/gvf1o#GVF1_0100)
|
892
|
+
*/
|
893
|
+
public static Resource PhenotypeDescription() {
|
894
|
+
return _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0100");
|
895
|
+
}
|
896
|
+
|
897
|
+
/**
|
898
|
+
* Type of reads obtained for a given technology platform.
|
899
|
+
* (http://www.biointerchange.org/gvf1o#GVF1_0109)
|
900
|
+
*/
|
901
|
+
public static Resource ReadType() {
|
902
|
+
return _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0109");
|
903
|
+
}
|
904
|
+
|
905
|
+
/**
|
906
|
+
* Determines the datatype of a variant sequence.
|
907
|
+
* (http://www.biointerchange.org/gvf1o#GVF1_0114)
|
908
|
+
*/
|
909
|
+
public static Resource DataType() {
|
910
|
+
return _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0114");
|
911
|
+
}
|
912
|
+
|
913
|
+
/**
|
914
|
+
* A landmark that establishes the coordinate system for features.
|
915
|
+
* (http://www.biointerchange.org/gvf1o#GVF1_0135)
|
916
|
+
*/
|
917
|
+
public static Resource Landmark() {
|
918
|
+
return _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0135");
|
919
|
+
}
|
920
|
+
|
921
|
+
/**
|
922
|
+
* For single individual sets, the Sex class" OWL-individuals can be used to specify the sex of the sequenced (real-life) individuals.
|
923
|
+
* (http://www.biointerchange.org/gvf1o#GVF1_0140)
|
924
|
+
*/
|
925
|
+
public static Resource Sex() {
|
926
|
+
return _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0140");
|
927
|
+
}
|
928
|
+
|
929
|
+
/**
|
930
|
+
* An enumerated class for determining the genomic source (cell type) of sequenced data.
|
931
|
+
* (http://www.biointerchange.org/gvf1o#GVF1_0141)
|
932
|
+
*/
|
933
|
+
public static Resource GenomicSource() {
|
934
|
+
return _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0141");
|
935
|
+
}
|
936
|
+
|
937
|
+
/**
|
938
|
+
* Representation of attribute tag/value pairs that are specific to particular structured attributes, but which are not covered by the GVF specification.
|
939
|
+
* (http://www.biointerchange.org/gvf1o#GVF1_0151)
|
940
|
+
*/
|
941
|
+
public static Resource StructuredAttribute() {
|
942
|
+
return _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0151");
|
943
|
+
}
|
944
|
+
|
626
945
|
/**
|
627
946
|
* Location on the positive (forward) strand.
|
628
947
|
* (http://www.biointerchange.org/gvf1o#GVF1_0017)
|
@@ -679,12 +998,103 @@ public class GVF1O {
|
|
679
998
|
return _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0087");
|
680
999
|
}
|
681
1000
|
|
1001
|
+
/**
|
1002
|
+
* Denotes reads that are fragments.
|
1003
|
+
* (http://www.biointerchange.org/gvf1o#GVF1_0110)
|
1004
|
+
*/
|
1005
|
+
public static Resource Fragment() {
|
1006
|
+
return _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0110");
|
1007
|
+
}
|
1008
|
+
|
1009
|
+
/**
|
1010
|
+
* Denotes reads that are pairs.
|
1011
|
+
* (http://www.biointerchange.org/gvf1o#GVF1_0111)
|
1012
|
+
*/
|
1013
|
+
public static Resource Pair() {
|
1014
|
+
return _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0111");
|
1015
|
+
}
|
1016
|
+
|
1017
|
+
/**
|
1018
|
+
* Denotes a DNA sequence.
|
1019
|
+
* (http://www.biointerchange.org/gvf1o#GVF1_0115)
|
1020
|
+
*/
|
1021
|
+
public static Resource DNASequence() {
|
1022
|
+
return _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0115");
|
1023
|
+
}
|
1024
|
+
|
1025
|
+
/**
|
1026
|
+
* Denotes an RNA sequence.
|
1027
|
+
* (http://www.biointerchange.org/gvf1o#GVF1_0116)
|
1028
|
+
*/
|
1029
|
+
public static Resource RNASequence() {
|
1030
|
+
return _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0116");
|
1031
|
+
}
|
1032
|
+
|
1033
|
+
/**
|
1034
|
+
* Denotes a DNA microarray probe.
|
1035
|
+
* (http://www.biointerchange.org/gvf1o#GVF1_0117)
|
1036
|
+
*/
|
1037
|
+
public static Resource DNAMicroarray() {
|
1038
|
+
return _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0117");
|
1039
|
+
}
|
1040
|
+
|
1041
|
+
/**
|
1042
|
+
* Denotes an array-comparative genomic hybridization.
|
1043
|
+
* (http://www.biointerchange.org/gvf1o#GVF1_0118)
|
1044
|
+
*/
|
1045
|
+
public static Resource ArrayComparativeGenomicHybridization() {
|
1046
|
+
return _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0118");
|
1047
|
+
}
|
1048
|
+
|
1049
|
+
/**
|
1050
|
+
* Denotes that a Set contains features of a female.
|
1051
|
+
* (http://www.biointerchange.org/gvf1o#GVF1_0142)
|
1052
|
+
*/
|
1053
|
+
public static Resource Female() {
|
1054
|
+
return _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0142");
|
1055
|
+
}
|
1056
|
+
|
1057
|
+
/**
|
1058
|
+
* Denotes that a Set contains features of a male.
|
1059
|
+
* (http://www.biointerchange.org/gvf1o#GVF1_0143)
|
1060
|
+
*/
|
1061
|
+
public static Resource Male() {
|
1062
|
+
return _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0143");
|
1063
|
+
}
|
1064
|
+
|
1065
|
+
/**
|
1066
|
+
* Denotes that a set contains features of prenatal cells.
|
1067
|
+
* (http://www.biointerchange.org/gvf1o#GVF1_0144)
|
1068
|
+
*/
|
1069
|
+
public static Resource Prenatal() {
|
1070
|
+
return _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0144");
|
1071
|
+
}
|
1072
|
+
|
1073
|
+
/**
|
1074
|
+
* Denotes that a set contains features of germline cells.
|
1075
|
+
* (http://www.biointerchange.org/gvf1o#GVF1_0145)
|
1076
|
+
*/
|
1077
|
+
public static Resource Germline() {
|
1078
|
+
return _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0145");
|
1079
|
+
}
|
1080
|
+
|
1081
|
+
/**
|
1082
|
+
* Denotes that a set contains features of somatic cells.
|
1083
|
+
* (http://www.biointerchange.org/gvf1o#GVF1_0146)
|
1084
|
+
*/
|
1085
|
+
public static Resource Somatic() {
|
1086
|
+
return _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0146");
|
1087
|
+
}
|
1088
|
+
|
682
1089
|
/**
|
683
1090
|
* Determines whether the given URI is an object property.
|
684
1091
|
*
|
685
1092
|
* @param uri URI that is tested for being an object property
|
686
1093
|
*/
|
687
1094
|
public static boolean isObjectProperty(Resource uri) {
|
1095
|
+
if (uri == _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0004")) {
|
1096
|
+
return true;
|
1097
|
+
}
|
688
1098
|
if (uri == _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0010")) {
|
689
1099
|
return true;
|
690
1100
|
}
|
@@ -721,9 +1131,6 @@ public class GVF1O {
|
|
721
1131
|
if (uri == _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0043")) {
|
722
1132
|
return true;
|
723
1133
|
}
|
724
|
-
if (uri == _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0044")) {
|
725
|
-
return true;
|
726
|
-
}
|
727
1134
|
if (uri == _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0046")) {
|
728
1135
|
return true;
|
729
1136
|
}
|
@@ -751,6 +1158,9 @@ public class GVF1O {
|
|
751
1158
|
if (uri == _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0070")) {
|
752
1159
|
return true;
|
753
1160
|
}
|
1161
|
+
if (uri == _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0072")) {
|
1162
|
+
return true;
|
1163
|
+
}
|
754
1164
|
if (uri == _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0075")) {
|
755
1165
|
return true;
|
756
1166
|
}
|
@@ -775,6 +1185,72 @@ public class GVF1O {
|
|
775
1185
|
if (uri == _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0091")) {
|
776
1186
|
return true;
|
777
1187
|
}
|
1188
|
+
if (uri == _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0102")) {
|
1189
|
+
return true;
|
1190
|
+
}
|
1191
|
+
if (uri == _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0103")) {
|
1192
|
+
return true;
|
1193
|
+
}
|
1194
|
+
if (uri == _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0104")) {
|
1195
|
+
return true;
|
1196
|
+
}
|
1197
|
+
if (uri == _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0112")) {
|
1198
|
+
return true;
|
1199
|
+
}
|
1200
|
+
if (uri == _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0119")) {
|
1201
|
+
return true;
|
1202
|
+
}
|
1203
|
+
if (uri == _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0120")) {
|
1204
|
+
return true;
|
1205
|
+
}
|
1206
|
+
if (uri == _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0121")) {
|
1207
|
+
return true;
|
1208
|
+
}
|
1209
|
+
if (uri == _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0122")) {
|
1210
|
+
return true;
|
1211
|
+
}
|
1212
|
+
if (uri == _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0123")) {
|
1213
|
+
return true;
|
1214
|
+
}
|
1215
|
+
if (uri == _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0124")) {
|
1216
|
+
return true;
|
1217
|
+
}
|
1218
|
+
if (uri == _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0125")) {
|
1219
|
+
return true;
|
1220
|
+
}
|
1221
|
+
if (uri == _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0126")) {
|
1222
|
+
return true;
|
1223
|
+
}
|
1224
|
+
if (uri == _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0127")) {
|
1225
|
+
return true;
|
1226
|
+
}
|
1227
|
+
if (uri == _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0128")) {
|
1228
|
+
return true;
|
1229
|
+
}
|
1230
|
+
if (uri == _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0129")) {
|
1231
|
+
return true;
|
1232
|
+
}
|
1233
|
+
if (uri == _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0130")) {
|
1234
|
+
return true;
|
1235
|
+
}
|
1236
|
+
if (uri == _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0131")) {
|
1237
|
+
return true;
|
1238
|
+
}
|
1239
|
+
if (uri == _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0147")) {
|
1240
|
+
return true;
|
1241
|
+
}
|
1242
|
+
if (uri == _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0148")) {
|
1243
|
+
return true;
|
1244
|
+
}
|
1245
|
+
if (uri == _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0150")) {
|
1246
|
+
return true;
|
1247
|
+
}
|
1248
|
+
if (uri == _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0152")) {
|
1249
|
+
return true;
|
1250
|
+
}
|
1251
|
+
if (uri == _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0155")) {
|
1252
|
+
return true;
|
1253
|
+
}
|
778
1254
|
return false;
|
779
1255
|
}
|
780
1256
|
|
@@ -784,9 +1260,6 @@ public class GVF1O {
|
|
784
1260
|
* @param uri URI that is tested for being a datatype property
|
785
1261
|
*/
|
786
1262
|
public static boolean isDatatypeProperty(Resource uri) {
|
787
|
-
if (uri == _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0004")) {
|
788
|
-
return true;
|
789
|
-
}
|
790
1263
|
if (uri == _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0005")) {
|
791
1264
|
return true;
|
792
1265
|
}
|
@@ -820,12 +1293,6 @@ public class GVF1O {
|
|
820
1293
|
if (uri == _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0027")) {
|
821
1294
|
return true;
|
822
1295
|
}
|
823
|
-
if (uri == _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0029")) {
|
824
|
-
return true;
|
825
|
-
}
|
826
|
-
if (uri == _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0030")) {
|
827
|
-
return true;
|
828
|
-
}
|
829
1296
|
if (uri == _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0031")) {
|
830
1297
|
return true;
|
831
1298
|
}
|
@@ -838,6 +1305,9 @@ public class GVF1O {
|
|
838
1305
|
if (uri == _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0039")) {
|
839
1306
|
return true;
|
840
1307
|
}
|
1308
|
+
if (uri == _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0044")) {
|
1309
|
+
return true;
|
1310
|
+
}
|
841
1311
|
if (uri == _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0048")) {
|
842
1312
|
return true;
|
843
1313
|
}
|
@@ -868,9 +1338,6 @@ public class GVF1O {
|
|
868
1338
|
if (uri == _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0061")) {
|
869
1339
|
return true;
|
870
1340
|
}
|
871
|
-
if (uri == _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0062")) {
|
872
|
-
return true;
|
873
|
-
}
|
874
1341
|
if (uri == _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0063")) {
|
875
1342
|
return true;
|
876
1343
|
}
|
@@ -883,9 +1350,6 @@ public class GVF1O {
|
|
883
1350
|
if (uri == _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0071")) {
|
884
1351
|
return true;
|
885
1352
|
}
|
886
|
-
if (uri == _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0072")) {
|
887
|
-
return true;
|
888
|
-
}
|
889
1353
|
if (uri == _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0073")) {
|
890
1354
|
return true;
|
891
1355
|
}
|
@@ -916,6 +1380,66 @@ public class GVF1O {
|
|
916
1380
|
if (uri == _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0095")) {
|
917
1381
|
return true;
|
918
1382
|
}
|
1383
|
+
if (uri == _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0096")) {
|
1384
|
+
return true;
|
1385
|
+
}
|
1386
|
+
if (uri == _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0101")) {
|
1387
|
+
return true;
|
1388
|
+
}
|
1389
|
+
if (uri == _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0105")) {
|
1390
|
+
return true;
|
1391
|
+
}
|
1392
|
+
if (uri == _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0106")) {
|
1393
|
+
return true;
|
1394
|
+
}
|
1395
|
+
if (uri == _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0107")) {
|
1396
|
+
return true;
|
1397
|
+
}
|
1398
|
+
if (uri == _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0108")) {
|
1399
|
+
return true;
|
1400
|
+
}
|
1401
|
+
if (uri == _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0113")) {
|
1402
|
+
return true;
|
1403
|
+
}
|
1404
|
+
if (uri == _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0132")) {
|
1405
|
+
return true;
|
1406
|
+
}
|
1407
|
+
if (uri == _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0133")) {
|
1408
|
+
return true;
|
1409
|
+
}
|
1410
|
+
if (uri == _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0134")) {
|
1411
|
+
return true;
|
1412
|
+
}
|
1413
|
+
if (uri == _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0136")) {
|
1414
|
+
return true;
|
1415
|
+
}
|
1416
|
+
if (uri == _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0137")) {
|
1417
|
+
return true;
|
1418
|
+
}
|
1419
|
+
if (uri == _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0138")) {
|
1420
|
+
return true;
|
1421
|
+
}
|
1422
|
+
if (uri == _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0139")) {
|
1423
|
+
return true;
|
1424
|
+
}
|
1425
|
+
if (uri == _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0149")) {
|
1426
|
+
return true;
|
1427
|
+
}
|
1428
|
+
if (uri == _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0153")) {
|
1429
|
+
return true;
|
1430
|
+
}
|
1431
|
+
if (uri == _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0154")) {
|
1432
|
+
return true;
|
1433
|
+
}
|
1434
|
+
if (uri == _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0156")) {
|
1435
|
+
return true;
|
1436
|
+
}
|
1437
|
+
if (uri == _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0157")) {
|
1438
|
+
return true;
|
1439
|
+
}
|
1440
|
+
if (uri == _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0158")) {
|
1441
|
+
return true;
|
1442
|
+
}
|
919
1443
|
return false;
|
920
1444
|
}
|
921
1445
|
|
@@ -937,9 +1461,6 @@ public class GVF1O {
|
|
937
1461
|
if (uri == _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0016")) {
|
938
1462
|
return true;
|
939
1463
|
}
|
940
|
-
if (uri == _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0028")) {
|
941
|
-
return true;
|
942
|
-
}
|
943
1464
|
if (uri == _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0033")) {
|
944
1465
|
return true;
|
945
1466
|
}
|
@@ -964,6 +1485,36 @@ public class GVF1O {
|
|
964
1485
|
if (uri == _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0088")) {
|
965
1486
|
return true;
|
966
1487
|
}
|
1488
|
+
if (uri == _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0097")) {
|
1489
|
+
return true;
|
1490
|
+
}
|
1491
|
+
if (uri == _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0098")) {
|
1492
|
+
return true;
|
1493
|
+
}
|
1494
|
+
if (uri == _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0099")) {
|
1495
|
+
return true;
|
1496
|
+
}
|
1497
|
+
if (uri == _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0100")) {
|
1498
|
+
return true;
|
1499
|
+
}
|
1500
|
+
if (uri == _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0109")) {
|
1501
|
+
return true;
|
1502
|
+
}
|
1503
|
+
if (uri == _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0114")) {
|
1504
|
+
return true;
|
1505
|
+
}
|
1506
|
+
if (uri == _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0135")) {
|
1507
|
+
return true;
|
1508
|
+
}
|
1509
|
+
if (uri == _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0140")) {
|
1510
|
+
return true;
|
1511
|
+
}
|
1512
|
+
if (uri == _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0141")) {
|
1513
|
+
return true;
|
1514
|
+
}
|
1515
|
+
if (uri == _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0151")) {
|
1516
|
+
return true;
|
1517
|
+
}
|
967
1518
|
return false;
|
968
1519
|
}
|
969
1520
|
|
@@ -994,6 +1545,39 @@ public class GVF1O {
|
|
994
1545
|
if (uri == _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0087")) {
|
995
1546
|
return true;
|
996
1547
|
}
|
1548
|
+
if (uri == _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0110")) {
|
1549
|
+
return true;
|
1550
|
+
}
|
1551
|
+
if (uri == _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0111")) {
|
1552
|
+
return true;
|
1553
|
+
}
|
1554
|
+
if (uri == _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0115")) {
|
1555
|
+
return true;
|
1556
|
+
}
|
1557
|
+
if (uri == _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0116")) {
|
1558
|
+
return true;
|
1559
|
+
}
|
1560
|
+
if (uri == _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0117")) {
|
1561
|
+
return true;
|
1562
|
+
}
|
1563
|
+
if (uri == _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0118")) {
|
1564
|
+
return true;
|
1565
|
+
}
|
1566
|
+
if (uri == _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0142")) {
|
1567
|
+
return true;
|
1568
|
+
}
|
1569
|
+
if (uri == _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0143")) {
|
1570
|
+
return true;
|
1571
|
+
}
|
1572
|
+
if (uri == _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0144")) {
|
1573
|
+
return true;
|
1574
|
+
}
|
1575
|
+
if (uri == _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0145")) {
|
1576
|
+
return true;
|
1577
|
+
}
|
1578
|
+
if (uri == _namespace_GVF1O("http://www.biointerchange.org/gvf1o#GVF1_0146")) {
|
1579
|
+
return true;
|
1580
|
+
}
|
997
1581
|
return false;
|
998
1582
|
}
|
999
1583
|
|