biointerchange 1.0.1 → 1.0.2

Sign up to get free protection for your applications and to get access to all the features.
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
@@ -8,7 +8,7 @@ class GFF3Reader < BioInterchange::Reader
8
8
  BioInterchange::Registry.register_reader(
9
9
  'biointerchange.gff3',
10
10
  GFF3Reader,
11
- [ 'name', 'name_uri', 'date' ],
11
+ [ 'name', 'name_uri', 'date', 'batch_size' ],
12
12
  true,
13
13
  'Generic Feature Format Version 3 (GFF3) reader',
14
14
  [
@@ -75,11 +75,15 @@ protected
75
75
  fasta_id = nil
76
76
  fasta_comment = nil
77
77
  fasta_sequence = nil
78
+ @comments = [] # TODO Add comments to feature objects; add 'before' in serialization.
78
79
  begin
79
80
  line = gff3.readline
80
81
  line.chomp!
81
82
 
82
- next if line.start_with?('#') and not line.start_with?('##')
83
+ if line.start_with?('#') and not line.start_with?('##') then
84
+ add_comment(@feature_set, line[1..-1].strip)
85
+ next
86
+ end
83
87
 
84
88
  if line.start_with?('##FASTA') then
85
89
  fasta_block = true
@@ -99,7 +103,12 @@ protected
99
103
  end
100
104
 
101
105
  unless line.start_with?('##') then
102
- add_feature(@feature_set, line)
106
+ begin
107
+ add_feature(@feature_set, line)
108
+ rescue ArgumentError => e
109
+ # Potentially a string encoding issue (input not UTF-8). Try ISO-8859-1 and retry:
110
+ add_feature(@feature_set, line.force_encoding('ISO-8859-1'))
111
+ end
103
112
  feature_no += 1
104
113
 
105
114
  if @batch_size and feature_no >= @batch_size then
@@ -165,6 +174,10 @@ protected
165
174
  feature_set.add(BioInterchange::Genomics::GFF3Feature.new(seqid, source, type, start_coordinate, end_coordinate, score, strand, phase, attributes))
166
175
  end
167
176
 
177
+ def add_comment(feature_set, comment)
178
+ @comments << comment
179
+ end
180
+
168
181
  def add_pragma(feature_set, line)
169
182
  line.chomp!
170
183
  name, value = line[2..-1].split(/\s/, 2)
@@ -6,7 +6,7 @@ class GVFReader < GFF3Reader
6
6
  BioInterchange::Registry.register_reader(
7
7
  'biointerchange.gvf',
8
8
  GVFReader,
9
- [ 'name', 'name_uri', 'date' ],
9
+ [ 'name', 'name_uri', 'date', 'batch_size' ],
10
10
  true,
11
11
  'Genome Variation Format Version 1 (GVF) reader',
12
12
  [
@@ -0,0 +1,46 @@
1
+ module BioInterchange::Genomics
2
+
3
+ # Represents a single genomic feature of a VCF file.
4
+ class VCFFeature < GFF3Feature
5
+
6
+ # Creates a new feature representation. A feature is described on one line of the VCF file.
7
+ #
8
+ # +chromosome+:: an identifier that determines the chromosome on which the feature resides
9
+ # +position+:: the feature locus on the chromosome
10
+ # +id+:: a unique identifier of the feature
11
+ # +reference_bases+:: reference alleles of the feature
12
+ # +alternative_alleles+:: alternative alleles of the feature (non-reference alleles)
13
+ # +quality_score+:: phred-scaled quality score for the assertions concerning reference-/alternative-alleles
14
+ # +filters+:: list of VCF filters that a feature has failed
15
+ # +info+:: a map of additional attributes associated with the feature
16
+ # +samples+:: sample information specific to the described feature
17
+ def initialize(chromosome, position, id, reference_bases, alternative_alleles, quality_score, filters, info = {}, samples = [])
18
+ # Fill in phase, which is always omitted in GVF features (after 'strand', before 'attributes'):
19
+ # Translations to somewhat fit the existing GFF3/GVF model (GFF3/GVF left, VCF right):
20
+ #
21
+ # sequence_id -> chromosome
22
+ # source -> nil
23
+ # type -> nil
24
+ # start_coordinate -> position
25
+ # end_coordinate -> position
26
+ # score -> quality_score
27
+ # strand -> nil
28
+ # phase -> nil
29
+ # attributes -> info
30
+ #
31
+ # Parameters that do not map directly to super's parameters are placed in `info`
32
+ # with a space as prefix. For example, `reference_bases` becomes the key
33
+ # ` reference_bases` in `info`.
34
+ info[' id'] = [ id ] if id
35
+ info[' reference_bases'] = [ reference_bases ]
36
+ info[' alternative_alleles'] = alternative_alleles
37
+ info[' filters'] = filters
38
+ info[' samples'] = samples
39
+
40
+ super(chromosome, nil, nil, position, position, quality_score, BioInterchange::Genomics::GFF3Feature::POSITIVE, nil, info)
41
+ end
42
+
43
+ end
44
+
45
+ end
46
+
@@ -0,0 +1,14 @@
1
+
2
+ module BioInterchange::Genomics
3
+
4
+ # A VCF feature set, which encapsules information of a single VCF file.
5
+ class VCFFeatureSet < GFF3FeatureSet
6
+
7
+ def uri
8
+ super.sub(/^biointerchange:\/\/gff3\//, 'biointerchange://vcf/')
9
+ end
10
+
11
+ end
12
+
13
+ end
14
+
@@ -0,0 +1,238 @@
1
+ module BioInterchange::Genomics
2
+
3
+ require 'date'
4
+
5
+ class VCFReader < GFF3Reader
6
+
7
+ # Register reader:
8
+ BioInterchange::Registry.register_reader(
9
+ 'biointerchange.vcf',
10
+ VCFReader,
11
+ [ 'name', 'name_uri', 'date', 'batch_size' ],
12
+ true,
13
+ 'Variant Call Format (VCF) version 4.1/4.2 reader',
14
+ [
15
+ [ 'date <date>', 'date when the GVF file was created (optional)' ],
16
+ [ 'name <name>', 'name of the GVF file creator (optional)' ],
17
+ [ 'name_id <id>', 'email address of the GVF file creator (optional)' ]
18
+ ]
19
+ )
20
+
21
+ # Creates a new instance of a Genome Variation Format (GVF) reader.
22
+ #
23
+ # +name+:: Optional name of the person who generated the GVF file.
24
+ # +name_uri+:: Optional e-mail address of the person who generated the GVF file.
25
+ # +date+:: Optional date of when the GVF file was produced.
26
+ def initialize(name = nil, name_uri = nil, date = nil, batch_size = nil)
27
+ # Remember: calling super without brackets passes all arguments of initialize!
28
+ super
29
+ end
30
+
31
+ protected
32
+
33
+ def create_feature_set
34
+ BioInterchange::Genomics::VCFFeatureSet.new()
35
+ end
36
+
37
+ def add_pragma(feature_set, line)
38
+ line.chomp!
39
+ name, value = line[2..-1].split(/=/, 2)
40
+ value.strip!
41
+
42
+ # Interpret pragmas, and if not known, delegate to GFF3Reader (in alphabetical order):
43
+ if name == 'assembly' then
44
+ # attributes = split_attributes(value)
45
+ # structured_attributes = feature_set.pragma(name)
46
+ # structured_attributes = { name => [] } unless structured_attributes
47
+ # structured_attributes[name] << attributes
48
+ # feature_set.set_pragma(name, structured_attributes)
49
+ elsif name == 'center' then
50
+ #
51
+ elsif name == 'contig' then
52
+ self.add_vcf_pragma(feature_set, name, value)
53
+ elsif name == 'fileDate' then
54
+ feature_set.set_pragma(name, { name => Date.parse(value) })
55
+ elsif name == 'fileformat' then
56
+ feature_set.set_pragma(name, { name => value.sub(/^VCFv/, '').to_f })
57
+ elsif name == 'FILTER' then
58
+ self.add_vcf_pragma(feature_set, name, value)
59
+ elsif name == 'FORMAT' then
60
+ self.add_vcf_pragma(feature_set, name, value)
61
+ elsif name == 'geneAnno' then
62
+ #
63
+ elsif name == 'ID' then
64
+ #
65
+ elsif name == 'INFO' then
66
+ feature_set.set_pragma(name, vcf_mapping(value))
67
+ elsif name == 'Number' then
68
+ #
69
+ elsif name == 'PEDIGREE' then
70
+ self.add_vcf_pragma(feature_set, name, value)
71
+ elsif name == 'phasing' then
72
+ #
73
+ elsif name == 'reference' then
74
+ #
75
+ elsif name == 'SAMPLE' then
76
+ #
77
+ elsif name == 'tcgaversion' then
78
+ #
79
+ elsif name == 'Type' then
80
+ #
81
+ elsif name == 'vcfProcessLog' then
82
+ #
83
+ elsif name == 'reference' then
84
+ # 'reference' is not specified in VCF 4.1, but used in examples and real-world
85
+ # VCF files nevertheless.
86
+ # TODO What if reference already set?
87
+ feature_set.set_pragma(name, value)
88
+ else
89
+ # Cannot be passed to super class, because GFF3 has inherently different pragma statements.
90
+ feature_set.set_pragma(name, { name => value })
91
+ end
92
+ end
93
+
94
+ # Adds pragma information where the pragma can appear multiple times
95
+ # in the input (application: VCF). Each pragma information is still a hash,
96
+ # which is stored in an array.
97
+ #
98
+ # +feature_set+:: feature set to which the pragma information is added
99
+ # +name+:: name of the pragma under which the information is being stored
100
+ # +value+:: hashmap of the actual pragma information (will be passed through vcf_mapping call)
101
+ def add_vcf_pragma(feature_set, name, value)
102
+ values = feature_set.pragma(name)
103
+ if values then
104
+ values << vcf_mapping(value)
105
+ else
106
+ values = [ vcf_mapping(value) ]
107
+ end
108
+ feature_set.set_pragma(name, values)
109
+ end
110
+
111
+ # Adds a comment to the feature set; ignores the header line that preceds VCF features.
112
+ # Comments are added on a line-by-line basis.
113
+ #
114
+ # +feature_set+:: VCF feature set to which the comment line is being added
115
+ # +comment+:: comment line in the VCF file
116
+ def add_comment(feature_set, comment)
117
+ if comment.start_with?("CHROM\tPOS\tID\tREF\tALT") then
118
+ columns = comment.split("\t")
119
+ @samples = columns[9..-1]
120
+ @samples = [] unless @samples
121
+ else
122
+ @comment << comment
123
+ end
124
+ end
125
+
126
+ # Adds a VCF feature to a VCF feature set.
127
+ #
128
+ # +feature_set+:: feature set to which the feature should be added to
129
+ # +line+:: line from the VCF that describes the feature
130
+ def add_feature(feature_set, line)
131
+ line.chomp!
132
+ chrom, pos, id, ref, alt, qual, filter, info, format, samples = line.split("\t")
133
+
134
+ # Replace an unknown ID by nil, so that feature coordinates are used during serialization:
135
+ id = nil
136
+
137
+ #
138
+ # Split composite fields
139
+ #
140
+
141
+ # Alternative alleles:
142
+ alt = alt.split(',')
143
+
144
+ # Filters:
145
+ filter = filter.split(';')
146
+
147
+ # Feature information:
148
+ info = info.split(';')
149
+ info = info.map { |key_value_pair| key, values = key_value_pair.split('=', 2) }
150
+ info = Hash[info]
151
+ info = Hash[info.map { |key, value|
152
+ if value then
153
+ [ key, value.split(',') ]
154
+ else
155
+ [ key, true ]
156
+ end
157
+ }]
158
+
159
+ # Format for following sample columns:
160
+ format = format.split(':')
161
+
162
+ # Sample columns (need to be further split in the writer -- depends on format):
163
+ samples = samples.split("\t").map { |value|
164
+ # Dot: not data provided for the sample
165
+ if value == '.' then
166
+ {}
167
+ else
168
+ values = value.split(':')
169
+ Hash[format.zip(values)]
170
+ end
171
+ }
172
+
173
+ feature_set.add(BioInterchange::Genomics::VCFFeature.new(chrom, pos, id, ref, alt, qual, filter, info, samples))
174
+ end
175
+
176
+ private
177
+
178
+ # Takes a VCF meta-information string and returns a key-value mapping.
179
+ #
180
+ # +value+:: value of a meta-information assignment in VCF (key/value mappings of the form "<ID=value,...>")
181
+ def vcf_mapping(value)
182
+ value = value[1..-2]
183
+
184
+ mapping = {}
185
+ identifier = ''
186
+ assignment = ''
187
+ state = :id
188
+ value.each_char { |character|
189
+ if state == :value then
190
+ if character == '"' then
191
+ state = :quoted
192
+ next
193
+ else
194
+ state = :plain
195
+ end
196
+ end
197
+
198
+ state = :separator if state == :plain and character == ','
199
+
200
+ if state == :id then
201
+ if character == '=' then
202
+ state = :value
203
+ assignment = ''
204
+ else
205
+ identifier << character
206
+ end
207
+ elsif state == :separator then
208
+ if character == ',' then
209
+ state = :id
210
+ mapping[identifier] = assignment
211
+ identifier = ''
212
+ else
213
+ # TODO Format error.
214
+ end
215
+ elsif state == :quoted then
216
+ if character == '"' then
217
+ state = :separator
218
+ mapping[identifier] = assignment
219
+ identifier = ''
220
+ else
221
+ assignment << character
222
+ end
223
+ elsif state == :plain then
224
+ assignment << character
225
+ else
226
+ # TODO Whoops. Report error.
227
+ end
228
+ }
229
+
230
+ mapping[identifier] = assignment unless identifier.empty?
231
+
232
+ mapping
233
+ end
234
+
235
+ end
236
+
237
+ end
238
+
@@ -3,776 +3,873 @@ module BioInterchange
3
3
 
4
4
  class GFVO
5
5
 
6
- # An alignment is a sequence alignment between a "Feature" class instance and a "Target" class instance. The alignment is a list of one or more "Alignment Operation" instances that capture alignment matches, gaps and frameshifts (see "The Gap Attribute", http://sequenceontology.org/resources/gff3.html).
7
- # (http://www.biointerchange.org/gfvo#alignment)
8
- def self.alignment
9
- return RDF::URI.new('http://www.biointerchange.org/gfvo#alignment')
6
+ # Links to an entity for which supportive information is being provided.
7
+ # (http://www.biointerchange.org/gfvo#describes)
8
+ def self.describes
9
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#describes')
10
10
  end
11
11
 
12
- # Annotation object properties associated with instances of the class hierarchy with root class "Annotation". For properties related to the core genomic data class "Feature", see "feature datatype property" or "feature object property".
13
- # (http://www.biointerchange.org/gfvo#annotationObjectProperty)
14
- def self.annotation_object_property
15
- return RDF::URI.new('http://www.biointerchange.org/gfvo#annotationObjectProperty')
12
+ # Links to additional annotations about an entity.
13
+ # (http://www.biointerchange.org/gfvo#hasAnnotation)
14
+ def self.has_annotation
15
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#hasAnnotation')
16
16
  end
17
17
 
18
- # Tag name/value pair attributes of a feature.
19
- # (http://www.biointerchange.org/gfvo#attribute)
20
- def self.attribute
21
- return RDF::URI.new('http://www.biointerchange.org/gfvo#attribute')
18
+ # Links out to aggregate information for an entity.
19
+ # (http://www.biointerchange.org/gfvo#hasAttribute)
20
+ def self.has_attribute
21
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#hasAttribute')
22
22
  end
23
23
 
24
- # Further information about the "Method" that is related to an attribute.
25
- # (http://www.biointerchange.org/gfvo#attributeMethod)
26
- def self.attribute_method
27
- return RDF::URI.new('http://www.biointerchange.org/gfvo#attributeMethod')
24
+ # References an entity or resource that provides supporting/refuting evidence.
25
+ # (http://www.biointerchange.org/gfvo#hasEvidence)
26
+ def self.has_evidence
27
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#hasEvidence')
28
28
  end
29
29
 
30
- # Denotes abstract chromosome representations for capturing variants that appear on the same chromosome of a polyploid organism.
31
- # (http://www.biointerchange.org/gfvo#chromosome)
32
- def self.chromosome
33
- return RDF::URI.new('http://www.biointerchange.org/gfvo#chromosome')
30
+ # Denotes the first entity of an ordered part relationship.
31
+ # (http://www.biointerchange.org/gfvo#hasFirstPart)
32
+ def self.has_first_part
33
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#hasFirstPart')
34
34
  end
35
35
 
36
- # Relationship that describes which features belong to a feature set.
37
- # (http://www.biointerchange.org/gfvo#contains)
38
- def self.contains
39
- return RDF::URI.new('http://www.biointerchange.org/gfvo#contains')
36
+ # Links out to an identifier.
37
+ # (http://www.biointerchange.org/gfvo#hasIdentifier)
38
+ def self.has_identifier
39
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#hasIdentifier')
40
40
  end
41
41
 
42
- # Data source origin of the feature.
43
- # (http://www.biointerchange.org/gfvo#dataSource)
44
- def self.data_source
45
- return RDF::URI.new('http://www.biointerchange.org/gfvo#dataSource')
42
+ # Links out to an entity that is the input of a "Process" subclass.
43
+ # (http://www.biointerchange.org/gfvo#hasInput)
44
+ def self.has_input
45
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#hasInput')
46
46
  end
47
47
 
48
- # A database cross-reference to associate a feature or its structured pragma metadata in GVF to a representation in another database.
49
- # (http://www.biointerchange.org/gfvo#dbxref)
50
- def self.dbxref
51
- return RDF::URI.new('http://www.biointerchange.org/gfvo#dbxref')
48
+ # Denotes the last entity of an ordered part relationship.
49
+ # (http://www.biointerchange.org/gfvo#hasLastPart)
50
+ def self.has_last_part
51
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#hasLastPart')
52
52
  end
53
53
 
54
- # Denotes a temporal relationship between "Feature" class instances. This property can be used to describe multiple open reading frames of polycistronic genes.
55
- # (http://www.biointerchange.org/gfvo#derivesFrom)
56
- def self.derives_from
57
- return RDF::URI.new('http://www.biointerchange.org/gfvo#derivesFrom')
54
+ # Denotes membership for "Collection", "Catalog" and "File" instances.
55
+ # (http://www.biointerchange.org/gfvo#hasMember)
56
+ def self.has_member
57
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#hasMember')
58
58
  end
59
59
 
60
- # An effect of a particular feature variant.
61
- # (http://www.biointerchange.org/gfvo#effect)
62
- def self.effect
63
- return RDF::URI.new('http://www.biointerchange.org/gfvo#effect')
60
+ # Denotes a compositional relationship to other entities, where the ordering of the composition of entities carries meaning.
61
+ # (http://www.biointerchange.org/gfvo#hasOrderedPart)
62
+ def self.has_ordered_part
63
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#hasOrderedPart')
64
64
  end
65
65
 
66
- # Properties that are directly associated with "Feature" class instances. For properties related to "Reference", "Variant", or other genomic annotation classes, see "feature annotation datatype property" or "feature annotation object property".
67
- # (http://www.biointerchange.org/gfvo#featureObjectProperty)
68
- def self.feature_object_property
69
- return RDF::URI.new('http://www.biointerchange.org/gfvo#featureObjectProperty')
66
+ # Links out to an entity that is the output of a "Process" subclass.
67
+ # (http://www.biointerchange.org/gfvo#hasOutput)
68
+ def self.has_output
69
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#hasOutput')
70
70
  end
71
71
 
72
- # 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.
73
- # (http://www.biointerchange.org/gfvo#featureOntology)
74
- def self.feature_ontology
75
- return RDF::URI.new('http://www.biointerchange.org/gfvo#featureOntology')
72
+ # Denotes a compositional relationship to other entities.
73
+ # (http://www.biointerchange.org/gfvo#hasPart)
74
+ def self.has_part
75
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#hasPart')
76
76
  end
77
77
 
78
- # A term that is describing the sequence feature that is being affected.
79
- # (http://www.biointerchange.org/gfvo#featureType)
80
- def self.feature_type
81
- return RDF::URI.new('http://www.biointerchange.org/gfvo#featureType')
78
+ # Denotes the participation of other entities in processes.
79
+ # (http://www.biointerchange.org/gfvo#hasParticipant)
80
+ def self.has_participant
81
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#hasParticipant')
82
82
  end
83
83
 
84
- # Denotes the source of genomic data (on a cell-type level). Valid object assignments are individuals of the "Genomic Source" enumeration class.
85
- # (http://www.biointerchange.org/gfvo#genomicSource)
86
- def self.genomic_source
87
- return RDF::URI.new('http://www.biointerchange.org/gfvo#genomicSource')
84
+ # Links out to an entity that provides qualitative information.
85
+ # (http://www.biointerchange.org/gfvo#hasQuality)
86
+ def self.has_quality
87
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#hasQuality')
88
88
  end
89
89
 
90
- # Determines the genotype as observed in an individual.
91
- # (http://www.biointerchange.org/gfvo#genotype)
92
- def self.genotype
93
- return RDF::URI.new('http://www.biointerchange.org/gfvo#genotype')
90
+ # Denotes information origin.
91
+ # (http://www.biointerchange.org/gfvo#hasSource)
92
+ def self.has_source
93
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#hasSource')
94
94
  end
95
95
 
96
- # Links to information about an individual.
97
- # (http://www.biointerchange.org/gfvo#individual)
98
- def self.individual
99
- return RDF::URI.new('http://www.biointerchange.org/gfvo#individual')
96
+ # References an entity about which information is provided for.
97
+ # (http://www.biointerchange.org/gfvo#isAbout)
98
+ def self.is_about
99
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#isAbout')
100
100
  end
101
101
 
102
- # The locus determines the genomic position of an genomic object. The FALDO "Region" class can denote genomic feature's start, stop, and strand properties, it can express fuzzy genomic ranges if exact genomic coordinates are unknown. For "Landmark" class instances, the locus provides the start and end coordinates of the landmark.
103
- # (http://www.biointerchange.org/gfvo#locus)
104
- def self.locus
105
- return RDF::URI.new('http://www.biointerchange.org/gfvo#locus')
102
+ # Denotes that an entity is affected by another entity.
103
+ # (http://www.biointerchange.org/gfvo#isAffectedBy)
104
+ def self.is_affected_by
105
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#isAffectedBy')
106
106
  end
107
107
 
108
- # A cross-reference to an ontology term that is associated with a feature. For instances of the "Variant" class, the associated ontology term must be a Variant Ontology term (VariO; http://purl.obolibrary.org/obo/VariO_0001 or subclasses thereof).
109
- # (http://www.biointerchange.org/gfvo#ontologyTerm)
110
- def self.ontology_term
111
- return RDF::URI.new('http://www.biointerchange.org/gfvo#ontologyTerm')
108
+ # Denotes the trailing occurrence or succession of the subject in regards to the object.
109
+ # (http://www.biointerchange.org/gfvo#isAfter)
110
+ def self.is_after
111
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#isAfter')
112
112
  end
113
113
 
114
- # Link out to a parent feature.
115
- # (http://www.biointerchange.org/gfvo#parent)
116
- def self.parent
117
- return RDF::URI.new('http://www.biointerchange.org/gfvo#parent')
114
+ # Denotes that an entity is an attribute of the entity that this property links out to.
115
+ # (http://www.biointerchange.org/gfvo#isAttributeOf)
116
+ def self.is_attribute_of
117
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#isAttributeOf')
118
118
  end
119
119
 
120
- # Further information about an individual's phenotype. Applies only to single individual sets.
121
- # (http://www.biointerchange.org/gfvo#phenotypeDescription)
122
- def self.phenotype_description
123
- return RDF::URI.new('http://www.biointerchange.org/gfvo#phenotypeDescription')
120
+ # Denotes the leading occurrence or precedence of the subject in regards to the object.
121
+ # (http://www.biointerchange.org/gfvo#isBefore)
122
+ def self.is_before
123
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#isBefore')
124
124
  end
125
125
 
126
- # Used scoring method, which is described in more detail by a "Method" class instance.
127
- # (http://www.biointerchange.org/gfvo#scoreMethod)
128
- def self.score_method
129
- return RDF::URI.new('http://www.biointerchange.org/gfvo#scoreMethod')
126
+ # Denotes the process or method that created an entity.
127
+ # (http://www.biointerchange.org/gfvo#isCreatedBy)
128
+ def self.is_created_by
129
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#isCreatedBy')
130
130
  end
131
131
 
132
- # Establishes the landmark on which the feature or breakpoint is located. A landmark is typically a chromosome, scaffold or contig, but can be any other genomic object (DNA, RNA, protein) in principle.
133
- # (http://www.biointerchange.org/gfvo#seqid)
134
- def self.seqid
135
- return RDF::URI.new('http://www.biointerchange.org/gfvo#seqid')
132
+ # Provides a description of the subject via reference to an object that provides further information on the subject.
133
+ # (http://www.biointerchange.org/gfvo#isDescribedBy)
134
+ def self.is_described_by
135
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#isDescribedBy')
136
136
  end
137
137
 
138
- # Referene to a "Sequence Annotation" that describes either the sequence identified by a feature, or if particular sub-classes of "Sequence Annotation" are used, it describes a reference sequence, variant or anchestral allele (see "Reference", "Variant", "Ancestral Allele").
139
- # (http://www.biointerchange.org/gfvo#sequenceAnnotation)
140
- def self.sequence_annotation
141
- return RDF::URI.new('http://www.biointerchange.org/gfvo#sequenceAnnotation')
138
+ # Denotes the location of genomic feature on a landmark.
139
+ # (http://www.biointerchange.org/gfvo#isLocatedOn)
140
+ def self.is_located_on
141
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#isLocatedOn')
142
142
  end
143
143
 
144
- # Effect of a sequence alteration on a sequence feature.
145
- # (http://www.biointerchange.org/gfvo#sequenceVariant)
146
- def self.sequence_variant
147
- return RDF::URI.new('http://www.biointerchange.org/gfvo#sequenceVariant')
144
+ # Denotes that an entity is an intrinsic component of an encapsulating entity.
145
+ # (http://www.biointerchange.org/gfvo#isPartOf)
146
+ def self.is_part_of
147
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#isPartOf')
148
148
  end
149
149
 
150
- # A property that is directly associated with the "Set" class. Immediate sub-properties of this property are independent to specific specifications such as GFF3, GTF, GVF or VCF. Not all sub-properties can be preserved when carrying out operations between multiple "Set" class instances. For example, the "sex" property applies to single individual sets and can only be kept in a set union between multiple "Set" class instances if all involved instances agree on this property. For genomic feature and variant related properties, see "record object property" and "record datatype property".
151
- # (http://www.biointerchange.org/gfvo#setObjectProperty)
152
- def self.set_object_property
153
- return RDF::URI.new('http://www.biointerchange.org/gfvo#setObjectProperty')
150
+ # Denotes participation with another entity.
151
+ # (http://www.biointerchange.org/gfvo#isParticipantIn)
152
+ def self.is_participant_in
153
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#isParticipantIn')
154
154
  end
155
155
 
156
- # Further information about the algorithm/methodologies used.
157
- # (http://www.biointerchange.org/gfvo#sourceMethod)
158
- def self.source_method
159
- return RDF::URI.new('http://www.biointerchange.org/gfvo#sourceMethod')
156
+ # References an entity or resource that provides refuting evidence.
157
+ # (http://www.biointerchange.org/gfvo#isRefutedBy)
158
+ def self.is_refuted_by
159
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#isRefutedBy')
160
160
  end
161
161
 
162
- # NCBI Taxonomy Ontology "NCBITaxon_1" (or sub-classes) instance that denotes the species for a feature set.
163
- # (http://www.biointerchange.org/gfvo#species)
164
- def self.species
165
- return RDF::URI.new('http://www.biointerchange.org/gfvo#species')
162
+ # Denotes that an entity is the source of the entity that this property links out to.
163
+ # (http://www.biointerchange.org/gfvo#isSourceOf)
164
+ def self.is_source_of
165
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#isSourceOf')
166
166
  end
167
167
 
168
- # Tag name/value pair attributes that are not captured by the GVF specification.
169
- # (http://www.biointerchange.org/gfvo#structuredAttributes)
170
- def self.structured_attributes
171
- return RDF::URI.new('http://www.biointerchange.org/gfvo#structuredAttributes')
168
+ # Denotes spatio-temporal relations to other entities.
169
+ # (http://www.biointerchange.org/gfvo#isSpatiotemporallyRelatedTo)
170
+ def self.is_spatiotemporally_related_to
171
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#isSpatiotemporallyRelatedTo')
172
172
  end
173
173
 
174
- # Identifies the target that the features aligns to.
175
- # (http://www.biointerchange.org/gfvo#target)
176
- def self.target
177
- return RDF::URI.new('http://www.biointerchange.org/gfvo#target')
174
+ # References an entity or resource that provides supporting evidence.
175
+ # (http://www.biointerchange.org/gfvo#isSupportedBy)
176
+ def self.is_supported_by
177
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#isSupportedBy')
178
178
  end
179
179
 
180
- # Further information about the associated attribute(s).
181
- # (http://www.biointerchange.org/gfvo#targetAttributeMethod)
182
- def self.target_attribute_method
183
- return RDF::URI.new('http://www.biointerchange.org/gfvo#targetAttributeMethod')
180
+ # Denotes a temporarily constraint "isPartOf" relationship. The temporal restriction expresses that the relationship is not universally true.
181
+ #
182
+ # This property can be used to express "Derives_from" relations in GFF3.
183
+ # (http://www.biointerchange.org/gfvo#isTemporarilyPartOf)
184
+ def self.is_temporarily_part_of
185
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#isTemporarilyPartOf')
184
186
  end
185
187
 
186
- # Technology platform that was used to derive the feature.
187
- # (http://www.biointerchange.org/gfvo#technologyPlatform)
188
- def self.technology_platform
189
- return RDF::URI.new('http://www.biointerchange.org/gfvo#technologyPlatform')
188
+ # References another entity or resource.
189
+ # (http://www.biointerchange.org/gfvo#references)
190
+ def self.references
191
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#references')
190
192
  end
191
193
 
192
- # Type of the feature, which is a child entry of sequence_feature (SO:0000110) of the full Sequence Ontology (SO).
193
- # (http://www.biointerchange.org/gfvo#type)
194
- def self.type
195
- return RDF::URI.new('http://www.biointerchange.org/gfvo#type')
194
+ # References an entity, where additional information is provided to augment the reference.
195
+ # (http://www.biointerchange.org/gfvo#refersTo)
196
+ def self.refers_to
197
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#refersTo')
196
198
  end
197
199
 
198
- # Sequence context of a feature on the positive strand (forward strand) on the 3' end. A valid sequence context is denoted by a string of one or more concatenated letters A, C, G, or T.
199
- # (http://www.biointerchange.org/gfvo#3primeContext)
200
- def self.a_context
201
- return RDF::URI.new('http://www.biointerchange.org/gfvo#3primeContext')
200
+ # Representation of any literal that is associated with a GFVO class instance. Domain restrictions might apply. For example, "Codon Sequence" entities restrict "has value" to be a non-empty string consisting of A, C, G, or T letters, and whose length is a multiple of 3.
201
+ # (http://www.biointerchange.org/gfvo#hasValue)
202
+ def self.has_value
203
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#hasValue')
202
204
  end
203
205
 
204
- # Secondary name of a feature besides the primary feature ID. The secondary name can be a HGVS/ISCN nomenclature name, but not a cross-reference to a database (e.g. dbSNP, OMIM). Cross-references should be made using the "dbxref" property.
205
- # (http://www.biointerchange.org/gfvo#alias)
206
- def self.alias
207
- return RDF::URI.new('http://www.biointerchange.org/gfvo#alias')
206
+ # An alias is an alternative name whose use is mostly non-primary.
207
+ # (http://www.biointerchange.org/gfvo#Alias)
208
+ def self.Alias
209
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#Alias')
208
210
  end
209
211
 
210
- # Amino acid in the reference genome that overlaps with a variant's genome coordinates.
211
- # (http://www.biointerchange.org/gfvo#aminoAcid)
212
- def self.amino_acid
213
- return RDF::URI.new('http://www.biointerchange.org/gfvo#aminoAcid')
212
+ # Proportion of a particular gene allele in a gene pool.
213
+ # (http://www.biointerchange.org/gfvo#AlleleFrequency)
214
+ def self.AlleleFrequency
215
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#AlleleFrequency')
214
216
  end
215
217
 
216
- # Annotation datatype properties associated with instances of the class hierarchy with root class "Annotation". For properties related to the core genomic data class "Feature", see "feature datatype property" or "feature object property".
217
- # (http://www.biointerchange.org/gfvo#annotationDatatypeProperty)
218
- def self.annotation_datatype_property
219
- return RDF::URI.new('http://www.biointerchange.org/gfvo#annotationDatatypeProperty')
218
+ # -- No comment or description provided. --
219
+ # (http://www.biointerchange.org/gfvo#AminoAcid)
220
+ def self.AminoAcid
221
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#AminoAcid')
220
222
  end
221
223
 
222
- # Undocumented in GVF specification. Even though the property's semantics are undocumented, it is still included in the ontology in order to reflect the data values that might be encoded in GVF files.
223
- # (http://www.biointerchange.org/gfvo#averageCoverage)
224
- def self.average_coverage
225
- return RDF::URI.new('http://www.biointerchange.org/gfvo#averageCoverage')
224
+ # Denotes an ancestral allele of a feature. May be used to denote the 'ancestral allele' of VCF formatted files.
225
+ # (http://www.biointerchange.org/gfvo#AncestralSequence)
226
+ def self.AncestralSequence
227
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#AncestralSequence')
226
228
  end
227
229
 
228
- # Name of a genome assembly build that denotes the provenance of genomic features and variants in a "Set". For example, 'GRCh37', 'NCBI 36', 'FlyBase r4.1', or 'hg19'. If possible, the patch level of the assembly build should be included, such as 'GRCh37.p7'.
229
- # (http://www.biointerchange.org/gfvo#build)
230
- def self.build
231
- return RDF::URI.new('http://www.biointerchange.org/gfvo#build')
230
+ # Feature provenance is based on array-comparative genomic hybridization.
231
+ # (http://www.biointerchange.org/gfvo#ArrayComparativeGenomicHybridization)
232
+ def self.ArrayComparativeGenomicHybridization
233
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#ArrayComparativeGenomicHybridization')
232
234
  end
233
235
 
234
- # Describes the codon from the reference sequence whose coordinates overlap with this variant. A valid codon description is a string of three -- or multiples thereof -- concatenated letters A, C, G, or T.
235
- # (http://www.biointerchange.org/gfvo#codon)
236
- def self.codon
237
- return RDF::URI.new('http://www.biointerchange.org/gfvo#codon')
236
+ # An attribute denotes characteristics of an entity. At this stage, "Quality" is the only direct subclass of "Attribute", whose subclasses denote qualitative properties such as sex ("Female", "Male", "Mermaphrodite"), zygosity ("Hemizygous", "Heterozygous", "Homozygous"), etc.
237
+ #
238
+ # The object property "hasQuality" (or subproperties thereof) should be utilized to express qualities of entities. The "hasAttribute" object property should be used to denote relationships to "Object" or "Process" instances, unless there is a better object property suitable to represent the relationship between the involved entities..
239
+ # (http://www.biointerchange.org/gfvo#Attribute)
240
+ def self.Attribute
241
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#Attribute')
238
242
  end
239
243
 
240
- # Comments should be made using "http://www.w3.org/2000/01/rdf-schema#comment".This datatype property only exists to redirect the focus to RDF Schema for commenting, since it might be expected that comments are modeled similar to other datatype properties involving "Data Source", "Method", "Phenotype Description" or "Technology Platform".
241
- # (http://www.biointerchange.org/gfvo#comment)
242
- def self.comment
243
- return RDF::URI.new('http://www.biointerchange.org/gfvo#comment')
244
+ # Average coverage depth for a genomic locus (a region or single base pair), i.e. the average number of reads representing a given nucleotide in the reconstructed sequence.
245
+ # (http://www.biointerchange.org/gfvo#AverageCoverage)
246
+ def self.AverageCoverage
247
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#AverageCoverage')
244
248
  end
245
249
 
246
- # Features that are affected by this sequence alteration effect. This can be an external feature identifier, such as an Ensembl gene/transcript identifier.
247
- # (http://www.biointerchange.org/gfvo#feature)
248
- def self.feature
249
- return RDF::URI.new('http://www.biointerchange.org/gfvo#feature')
250
+ # A biological entity an entity that contains genomic material or utilizes genomic material during its existance. Genomic material itself is represented as sub-classes of Chemical Entity.
251
+ # (http://www.biointerchange.org/gfvo#BiologicalEntity)
252
+ def self.BiologicalEntity
253
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#BiologicalEntity')
250
254
  end
251
255
 
252
- # Property that is directly associated with a "Feature" class instance. For properties related to "Reference", "Variant", or other genomic annotation classes, see "feature annotation datatype property" or "feature annotation object property".
253
- # (http://www.biointerchange.org/gfvo#featureDatatypeProperty)
254
- def self.feature_datatype_property
255
- return RDF::URI.new('http://www.biointerchange.org/gfvo#featureDatatypeProperty')
256
+ # Information about features and variants is based on biopolymer sequencing.
257
+ # (http://www.biointerchange.org/gfvo#BiopolymerSequencing)
258
+ def self.BiopolymerSequencing
259
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#BiopolymerSequencing')
256
260
  end
257
261
 
258
- # Datatype properties related to "File" class instances. Subclasses of this property are used for denoting data that is specific to files only and which is only preserved as a means to encode for all data items defined by the GFF3, GTF, GVF and VCF specifications. These properties cannot be carried over into the result of set operations (s.a. union) between "File"/"Set" class instances. Keeping these properties in the result set between set operations may result in wrong annotations or contradictions (e.g., mutliple assignment of different versions or dates).
259
- # (http://www.biointerchange.org/gfvo#fileDatatypeProperty)
260
- def self.file_datatype_property
261
- return RDF::URI.new('http://www.biointerchange.org/gfvo#fileDatatypeProperty')
262
+ # A breakpoint describes the source or destination of a zero-length sequence alteration. These alterations are typically insertions, deletions or translocations according to the GVF specification (see "Breakpoint_detail" in http://sequenceontology.org/resources/gvf.html).
263
+ # (http://www.biointerchange.org/gfvo#Breakpoint)
264
+ def self.Breakpoint
265
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#Breakpoint')
262
266
  end
263
267
 
264
- # Creation date of the data file whose genomic data is captured by the associated "File" instance.
265
- # (http://www.biointerchange.org/gfvo#fileDate)
266
- def self.file_date
267
- return RDF::URI.new('http://www.biointerchange.org/gfvo#fileDate')
268
+ # A catalog is a specialization of a "Collection", where all its contents are of the same type.
269
+ # (http://www.biointerchange.org/gfvo#Catalog)
270
+ def self.Catalog
271
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#Catalog')
268
272
  end
269
273
 
270
- # Proprietary version of the file or its contents whose genomic data is associated with a "File" instance.
271
- # (http://www.biointerchange.org/gfvo#fileVersion)
272
- def self.file_version
273
- return RDF::URI.new('http://www.biointerchange.org/gfvo#fileVersion')
274
+ # A cell is a biological unit that in itself forms a living organism or is part of a larger organism that is composed of many other cells.
275
+ # (http://www.biointerchange.org/gfvo#Cell)
276
+ def self.Cell
277
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#Cell')
274
278
  end
275
279
 
276
- # Frequency of a variant in a population. The population is determined by the "Set" in which the "Variant" resides.
277
- # (http://www.biointerchange.org/gfvo#frequency)
278
- def self.frequency
279
- return RDF::URI.new('http://www.biointerchange.org/gfvo#frequency')
280
+ # A chemical entity is an entity related to chemistry. This class is typically not instantiated, but instead, its subclasses "Amino Acid", "Chromosome", "Peptide Sequence", etc., are used to represent specific chemical entities.
281
+ # (http://www.biointerchange.org/gfvo#ChemicalEntity)
282
+ def self.ChemicalEntity
283
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#ChemicalEntity')
280
284
  end
281
285
 
282
- # Version of the GFF3 specification that defines the contents captured by the "File" class instance. The version number should be greater or equal than 3.0, but less than 4.0. For GFF2/GTF version number assignment, see the "gtf version" datatype property.
283
- # (http://www.biointerchange.org/gfvo#gffVersion)
284
- def self.gff_version
285
- return RDF::URI.new('http://www.biointerchange.org/gfvo#gffVersion')
286
+ # A chromosome is an abstract representation of an unnamed chromosome to represent ploidy within a data set. A "Chromosome" instance is used for for denoting the locus of phased genotypes. For placing genomic features ("Feature" class instances) on a chromosome, contig, scaffold, etc., please see the "Landmark" class.
287
+ # (http://www.biointerchange.org/gfvo#Chromosome)
288
+ def self.Chromosome
289
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#Chromosome')
286
290
  end
287
291
 
288
- # Version of the GTF specification that defines the contents captured by the "File" class instance. The version number should be greater or equal than 2.0, but less than 3.0. This number derives from the fact that GTF files are equivalent to GFF2 files. GTF/GFF2 files are incompatible with the GFF3 specification. For GFF3 version number assignment, see the "gff version" datatype property.
289
- # (http://www.biointerchange.org/gfvo#gtfVersion)
290
- def self.gtf_version
291
- return RDF::URI.new('http://www.biointerchange.org/gfvo#gtfVersion')
292
+ # A circular helix structure.
293
+ #
294
+ # Can be used to indicate a true "Is_circular" attribute in GFF3 and GVF.
295
+ # (http://www.biointerchange.org/gfvo#CircularHelix)
296
+ def self.CircularHelix
297
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#CircularHelix')
292
298
  end
293
299
 
294
- # Version of the GVF specification that defines the contents captured by the "File" class instance. The version number should be greater or equal than 1.0, but less than 2.0. GVF files usually make a statement about their underlying GFF3 specification that they rely on too, which should be encoded using the "gff version" datatype property.
295
- # (http://www.biointerchange.org/gfvo#gvfVersion)
296
- def self.gvf_version
297
- return RDF::URI.new('http://www.biointerchange.org/gfvo#gvfVersion')
300
+ # Coding frame offset of the feature, if it is a coding sequence or feature that contributes to transcription and translation. It is referred to as "frame" in GTF, but called "phase" in GFF3 and GVF. A feature's coding frame offset can be either 0, 1, or 2.
301
+ # (http://www.biointerchange.org/gfvo#CodingFrameOffset)
302
+ def self.CodingFrameOffset
303
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#CodingFrameOffset')
298
304
  end
299
305
 
300
- # A unique identifier for the feature within the feature set (a "Set"/"File" class instance). The unique identifier is important when dealing with GFF3, GTF, GVF or VCF files as a stand in object that makes the aggregation and separation of genomic feature and variant information possible. In RDF, the URI of subject should be used primarily, provided that its URI can be considered stable.
301
- # (http://www.biointerchange.org/gfvo#id)
302
- def self.id
303
- return RDF::URI.new('http://www.biointerchange.org/gfvo#id')
306
+ # A codon sequence is a nucleotide sequence underlying a potential amino acid sequence. Codon sequences are three bases of length or multiples thereof.
307
+ # (http://www.biointerchange.org/gfvo#CodonSequence)
308
+ def self.CodonSequence
309
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#CodonSequence')
304
310
  end
305
311
 
306
- # Truth value describing whether the feature is circular or not. This can be used to describe, for example, circular DNA as being found in bacteria or viruses. It can also be applied to mitochondrial DNA or plastid DNA, where applicable.
307
- # (http://www.biointerchange.org/gfvo#isCircular)
308
- def self.is_circular
309
- return RDF::URI.new('http://www.biointerchange.org/gfvo#isCircular')
312
+ # A collection is a container for genomic data. A collection may contain information about genomic data including -- but not limited to -- contents of GFF3, GTF, GVF and VCF files. The latter are better represented by "File" class instances, whereas the result of unions or intersections between different "File" class instances should be captured within this format-independent "Collection" class. When importing data whose provenance is not a GFF3, GTF, GVF or VCF file, instances of "Collection" should be utilized too, or the more restrictive "Catalog" class should be used.
313
+ # (http://www.biointerchange.org/gfvo#Collection)
314
+ def self.Collection
315
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#Collection')
310
316
  end
311
317
 
312
- # Indicates whether this particular feature is phased. Used to encode "##phased-genotypes" statements in GFF3, but can be appropriated freely. It is also a property of GVF variants, even though the GVF specification is unclear on its exact usage details.
313
- # (http://www.biointerchange.org/gfvo#isPhased)
314
- def self.is_phased
315
- return RDF::URI.new('http://www.biointerchange.org/gfvo#isPhased')
318
+ # A comment is a remark about a piece of information, an observation or statement. In the context of GFF3, GVF, etc., genomic feature and variation descriptions, "isAfter" and "isBefore" relationships should be used to indicate where a comment is situated between pragma or feature statements of GFF3, GTF, GVF or VCF files.
319
+ # (http://www.biointerchange.org/gfvo#Comment)
320
+ def self.Comment
321
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#Comment')
316
322
  end
317
323
 
318
- # Name of a feature, which can be used for display purposes. The name is not a unique property among features in a "Set".
319
- # (http://www.biointerchange.org/gfvo#name)
320
- def self.name
321
- return RDF::URI.new('http://www.biointerchange.org/gfvo#name')
324
+ # A contig is a contiguous DNA sequence that has been assembled from shorter overlapping DNA segments.
325
+ # (http://www.biointerchange.org/gfvo#Contig)
326
+ def self.Contig
327
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#Contig')
322
328
  end
323
329
 
324
- # Free text notes should be made using "http://www.w3.org/2000/01/rdf-schema#comment".This datatype property only exists to redirect the focus to RDF Schema for annotating features with notes, since it might be expected that a note is similarly modeled to other datatype properties of the "Feature" class.
325
- # (http://www.biointerchange.org/gfvo#note)
326
- def self.note
327
- return RDF::URI.new('http://www.biointerchange.org/gfvo#note')
330
+ # Number of nucleic acid sequence reads for a particular genomic locus (a region or single base pair).
331
+ # (http://www.biointerchange.org/gfvo#Coverage)
332
+ def self.Coverage
333
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#Coverage')
328
334
  end
329
335
 
330
- # Phase of the feature, if it is a CDS. Called "frame" in GTF. A feature's phase can be either 0, 1, or 2.
331
- # (http://www.biointerchange.org/gfvo#phase)
332
- def self.phase
333
- return RDF::URI.new('http://www.biointerchange.org/gfvo#phase')
336
+ # Feature information is based on DNA microarray probes.
337
+ # (http://www.biointerchange.org/gfvo#DNAMicroarray)
338
+ def self.DNAMicroarray
339
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#DNAMicroarray')
334
340
  end
335
341
 
336
- # A phred-scaled quality score for the reference seuence; -10log_10 prob(no variant). A phred-scaled quality score for a variant sequence; -10log_10 prob(variant call is wrong). High scores indicate high confidence calls. This is a property associated with VCF data. E-values and P-values of features should be expressed using the "score" datatype property.
337
- # (http://www.biointerchange.org/gfvo#phredScore)
338
- def self.phred_score
339
- return RDF::URI.new('http://www.biointerchange.org/gfvo#phredScore')
342
+ # -- No comment or description provided. --
343
+ # (http://www.biointerchange.org/gfvo#DNASequence)
344
+ def self.DNASequence
345
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#DNASequence')
340
346
  end
341
347
 
342
- # Type of technology used to gather the variant data. The GVF specification's list of available classes is naturally incomplete. The range of this property is therefore unrestricted due to its open specification.
343
- # (http://www.biointerchange.org/gfvo#platformClass)
344
- def self.platform_class
345
- return RDF::URI.new('http://www.biointerchange.org/gfvo#platformClass')
348
+ # Information about features and variants is based on DNA sequencing.
349
+ # (http://www.biointerchange.org/gfvo#DNASequencing)
350
+ def self.DNASequencing
351
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#DNASequencing')
346
352
  end
347
353
 
348
- # Sequencer or other machine used to collect the variant data. The GVF specification's list of available platforms is naturally incomplete. The range of this property is therefore unrestricted due to its open specification.
349
- # (http://www.biointerchange.org/gfvo#platformName)
350
- def self.platform_name
351
- return RDF::URI.new('http://www.biointerchange.org/gfvo#platformName')
354
+ # An experimental method is a procedure that yields an experimental outcome (result). Experimental methods can be in vivo, in vitro or in silico procedures that are well described and can be referenced.
355
+ # (http://www.biointerchange.org/gfvo#ExperimentalMethod)
356
+ def self.ExperimentalMethod
357
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#ExperimentalMethod')
352
358
  end
353
359
 
354
- # Undocumented in GVF specification. Even though the property's semantics are undocumented, it is still included in the ontology in order to reflect the data values that might be encoded in GVF files.
355
- # (http://www.biointerchange.org/gfvo#readIPairSpan)
356
- def self.read_pair_span
357
- return RDF::URI.new('http://www.biointerchange.org/gfvo#readIPairSpan')
360
+ # A cross-reference to associate an entity to a representation in another database.
361
+ # (http://www.biointerchange.org/gfvo#ExternalReference)
362
+ def self.ExternalReference
363
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#ExternalReference')
358
364
  end
359
365
 
360
- # Undocumented in GVF specification. Even though the property's semantics are undocumented, it is still included in the ontology in order to reflect the data values that might be encoded in GVF files.
361
- # (http://www.biointerchange.org/gfvo#readLength)
362
- def self.read_length
363
- return RDF::URI.new('http://www.biointerchange.org/gfvo#readLength')
366
+ # The feature class captures information about genomic sequence features and variations. A genomic feature can be a large object, such as a chromosome or contig, down to single base-pair reference or variant alleles.
367
+ # (http://www.biointerchange.org/gfvo#Feature)
368
+ def self.Feature
369
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#Feature')
364
370
  end
365
371
 
366
- # Number of reads that are supporting a variant. Valid values are integers greater or equal than zero.
367
- # (http://www.biointerchange.org/gfvo#reads)
368
- def self.reads
369
- return RDF::URI.new('http://www.biointerchange.org/gfvo#reads')
372
+ # Denoting sex of a female individual. A female is defined as an individual producing ova.
373
+ # (http://www.biointerchange.org/gfvo#Female)
374
+ def self.Female
375
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#Female')
370
376
  end
371
377
 
372
- # Score of the feature. For example, an E-value for sequence similarity features or a P-value for ab initio gene prediction features. Phred scores that are associated with reference- or variant-sequences should be encoded using the "phred score" datatype property.
373
- # (http://www.biointerchange.org/gfvo#score)
374
- def self.score
375
- return RDF::URI.new('http://www.biointerchange.org/gfvo#score')
378
+ # A file represents the contents of a GFF3, GTF, GVF or VCF file. It can capture genomic meta-data that is specific to any of these file formats. The result of unions, intersections or other operations between "File" class instances should be capture with the generic "Collection" class, which is format independent, or the more restrictive "Catalog" class should be used.
379
+ # (http://www.biointerchange.org/gfvo#File)
380
+ def self.File
381
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#File')
376
382
  end
377
383
 
378
- # 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.
379
- # (http://www.biointerchange.org/gfvo#sequence)
380
- def self.sequence
381
- return RDF::URI.new('http://www.biointerchange.org/gfvo#sequence')
384
+ # Denotes a frameshift forward in the reference sequence.
385
+ # (http://www.biointerchange.org/gfvo#ForwardReferenceSequenceFrameshift)
386
+ def self.ForwardReferenceSequenceFrameshift
387
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#ForwardReferenceSequenceFrameshift')
382
388
  end
383
389
 
384
- # A property that is directly associated with the "Set" class. Immediate sub-properties of this property are independent to specific specifications such as GFF3, GTF, GVF or VCF. Not all sub-properties can be preserved when carrying out operations between multiple "Set" class instances. For example, the "build" property can only be kept in a set union between multiple "Set" class instances if all involved instances agree on this property. For genomic feature and variant related properties, see "record object property" and "record datatype property".
385
- # (http://www.biointerchange.org/gfvo#setDatatypeProperty)
386
- def self.set_datatype_property
387
- return RDF::URI.new('http://www.biointerchange.org/gfvo#setDatatypeProperty')
390
+ # Details about the fragment-read (single-end read) sequencing technology used to gather the data in a set.
391
+ # (http://www.biointerchange.org/gfvo#FragmentReadPlatform)
392
+ def self.FragmentReadPlatform
393
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#FragmentReadPlatform')
388
394
  end
389
395
 
390
- # 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.
391
- # (http://www.biointerchange.org/gfvo#source)
392
- def self.source
393
- return RDF::URI.new('http://www.biointerchange.org/gfvo#source')
396
+ # A functional specification of bioinformatics data, i.e. the specification of genomic material that potentially has biological function.
397
+ # (http://www.biointerchange.org/gfvo#FunctionalSpecification)
398
+ def self.FunctionalSpecification
399
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#FunctionalSpecification')
394
400
  end
395
401
 
396
- # A span denotes the number of continuous nucleotides or amino acids an "Alignment Operation" is annotating. A span can be of length zero or greater.
397
- # (http://www.biointerchange.org/gfvo#span)
398
- def self.span
399
- return RDF::URI.new('http://www.biointerchange.org/gfvo#span')
402
+ # Denotes the presence of information that required capturing the gametic phase. For diploid organisms, that means that information is available about which chromosome of a chromosome pair contributed data.
403
+ # (http://www.biointerchange.org/gfvo#GameticPhase)
404
+ def self.GameticPhase
405
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#GameticPhase')
400
406
  end
401
407
 
402
- # Tag name of a feature attribute. "Attribute" and "Structured Attribute" instances are key/value(s) pairs, The key in that assignment is referred to as the "tag". Custom annotations, i.e. attributes that are not defined by the file format specifications, should use lowercase tags. Future extensions of the specifications might introduce new attributes though, which can be encoded using custom annotations by RDFization tools. The tag should therefore not be treated as strictly lowercase when dealing with custom annotations.
403
- # (http://www.biointerchange.org/gfvo#tag)
404
- def self.tag
405
- return RDF::URI.new('http://www.biointerchange.org/gfvo#tag')
408
+ # Representation of a genome. Genomic features that constitute the genome may be linked via one or more "Collection", "Catalog", "Contig", "Scaffold" or "File" instances.
409
+ # (http://www.biointerchange.org/gfvo#Genome)
410
+ def self.Genome
411
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#Genome')
406
412
  end
407
413
 
408
- # Total number of reads for a "Sequenced Individual". When merging "Set"/"File" class instances, it should be noted whether the total number of reads needs to be updated based on the identity of sequenced individuals in the involved sets.
409
- # (http://www.biointerchange.org/gfvo#totalReads)
410
- def self.total_reads
411
- return RDF::URI.new('http://www.biointerchange.org/gfvo#totalReads')
414
+ # A genome analysis denotes the type of procedure that was carried out to derive information from a genome assembly.
415
+ # (http://www.biointerchange.org/gfvo#GenomeAnalysis)
416
+ def self.GenomeAnalysis
417
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#GenomeAnalysis')
412
418
  end
413
419
 
414
- # Version of the VCF specification that defines the contents captured by the "File" class instance. The version number should be greater or equal than 4.0, but less than 5.0.
415
- # (http://www.biointerchange.org/gfvo#vcfVersion)
416
- def self.vcf_version
417
- return RDF::URI.new('http://www.biointerchange.org/gfvo#vcfVersion')
420
+ # Provides information about the source of the data.
421
+ # (http://www.biointerchange.org/gfvo#GenomicAscertainingMethod)
422
+ def self.GenomicAscertainingMethod
423
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#GenomicAscertainingMethod')
418
424
  end
419
425
 
420
- # An alignment operation captures the type of alignment (see "Alignment" enumeration class) and alignment length between a reference sequence and target sequence. This relationship is typically expressed between a "Feature" class instance and a "Target" class instance. Note that an "Alignment Operation" is a list, where the order of the alignment operations is of significance.
421
- # (http://www.biointerchange.org/gfvo#AlignmentOperation)
422
- def self.Alignment_Operation
423
- return RDF::URI.new('http://www.biointerchange.org/gfvo#AlignmentOperation')
426
+ # The genotype is the genetic information captured in a particular genome. It can also refer to one or more populations, if statistical distributions are provided that assign genetic codes to groups of individuals.
427
+ #
428
+ # A genotype is denoted by a string of slash-separated list of alleles ("has value" property). The length of the list is dependent on the ploidy of the studied species as well as sequencing technique used.
429
+ #
430
+ # Example: "A/G" denotes a genotype with alleles "A" and "G".
431
+ # (http://www.biointerchange.org/gfvo#Genotype)
432
+ def self.Genotype
433
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#Genotype')
424
434
  end
425
435
 
426
- # Denotes an ancestral allele of a feature. Reference sequences and genomic variants are expressed by the "Reference" and "Variant" classes respectively.
427
- # (http://www.biointerchange.org/gfvo#AncestralAllele)
428
- def self.Ancestral_Allele
429
- return RDF::URI.new('http://www.biointerchange.org/gfvo#AncestralAllele')
436
+ # Genotyping is the process of determining the genetics of an individual or sample. The genotype itself is expressed as the difference of genetic mark-up compared to a reference genome.
437
+ # (http://www.biointerchange.org/gfvo#Genotyping)
438
+ def self.Genotyping
439
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#Genotyping')
430
440
  end
431
441
 
432
- # A feature annotation is a class whose instances are used as composites in conjunction with "Feature" class instances. The "Feature Annotation" class is typically not used as type annotation. It rather denotes that its subclasses are to be used for extending genomic features with additional information.
433
- # (http://www.biointerchange.org/gfvo#Annotation)
434
- def self.Annotation
435
- return RDF::URI.new('http://www.biointerchange.org/gfvo#Annotation')
442
+ # The germline feature class captures information about genomic sequence features arising from germline cells.
443
+ # (http://www.biointerchange.org/gfvo#GermlineCell)
444
+ def self.GermlineCell
445
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#GermlineCell')
436
446
  end
437
447
 
438
- # A "Data Source" based on array-comparative genomic hybridization.
439
- # (http://www.biointerchange.org/gfvo#ArrayComparativeGenomicHybridization)
440
- def self.Array_Comparative_Genomic_Hybridization
441
- return RDF::URI.new('http://www.biointerchange.org/gfvo#ArrayComparativeGenomicHybridization')
448
+ # Helix structure denotes the physical shape of biopolymers.
449
+ # (http://www.biointerchange.org/gfvo#HelixStructure)
450
+ def self.HelixStructure
451
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#HelixStructure')
442
452
  end
443
453
 
444
- # An attribute represents a tag/value pair that is not covered by either GFF3, GTF, GVF or VCF specification. For example, lowercase tags in GFF3 are permitted to allow data providers to provide additional information about a genomic feature, variant, or its meta-data. Tag/value pair attributes that are within the aforementioned specifications are expressed using classes such as "Variant", "Breakpoint" or "Technology Platform". Attributes whose value is a composite type are expressed by the specialization "Structured Attribute",
445
- # (http://www.biointerchange.org/gfvo#Attribute)
446
- def self.Attribute
447
- return RDF::URI.new('http://www.biointerchange.org/gfvo#Attribute')
454
+ # A sequence alteration with hemizygous alleles.
455
+ # (http://www.biointerchange.org/gfvo#Hemizygous)
456
+ def self.Hemizygous
457
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#Hemizygous')
448
458
  end
449
459
 
450
- # A breakpoint describes the source or destination of a zero-length sequence alteration. These alterations are typically insertions, deletions or translocations according to the GVF specification (see "Breakpoint_detail" in http://sequenceontology.org/resources/gvf.html).
451
- # (http://www.biointerchange.org/gfvo#Breakpoint)
452
- def self.Breakpoint
453
- return RDF::URI.new('http://www.biointerchange.org/gfvo#Breakpoint')
460
+ # Heritage denotes the passing of traits from parents or ancestors. Passed traits may not be visible as a phenotype, but instead, might only manifest as genetic inheritance.
461
+ # (http://www.biointerchange.org/gfvo#Heritage)
462
+ def self.Heritage
463
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#Heritage')
454
464
  end
455
465
 
456
- # A chromosome is an abstract representation of an unnamed chromosome to represent ploidy within a data set. A "Chromosome" instance is used for for denoting the locus of phased genotypes. For placing genomic features ("Feature" class instances) on a chromosome, contig, scaffold, etc., please see the "Landmark" class.
457
- # (http://www.biointerchange.org/gfvo#Chromosome)
458
- def self.Chromosome
459
- return RDF::URI.new('http://www.biointerchange.org/gfvo#Chromosome')
466
+ # Denoting sex of an individual that contains both male and female gametes.
467
+ # (http://www.biointerchange.org/gfvo#Hermaphrodite)
468
+ def self.Hermaphrodite
469
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#Hermaphrodite')
460
470
  end
461
471
 
462
- # A "Data Source" based on DNA microarray probes.
463
- # (http://www.biointerchange.org/gfvo#DNAMicroarray)
464
- def self.DNA_Microarray
465
- return RDF::URI.new('http://www.biointerchange.org/gfvo#DNAMicroarray')
472
+ # A sequence alteration with heterozygous alleles.
473
+ # (http://www.biointerchange.org/gfvo#Heterozygous)
474
+ def self.Heterozygous
475
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#Heterozygous')
466
476
  end
467
477
 
468
- # A "Data Source" based on DNA sequences.
469
- # (http://www.biointerchange.org/gfvo#DNASequence)
470
- def self.DNA_Sequence
471
- return RDF::URI.new('http://www.biointerchange.org/gfvo#DNASequence')
478
+ # A sequence alteration with homozygous alleles.
479
+ # (http://www.biointerchange.org/gfvo#Homozygous)
480
+ def self.Homozygous
481
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#Homozygous')
472
482
  end
473
483
 
474
- # Provides information about the source of the data. For example, it can link out to actual sequences associated with "Feature" individuals in a "Set".
475
- # (http://www.biointerchange.org/gfvo#DataSource)
476
- def self.Data_Source
477
- return RDF::URI.new('http://www.biointerchange.org/gfvo#DataSource')
484
+ # An identifier labels an entity with a single term that is interpreted as an accession. An accession labels entities that are part of a collection of similar type.
485
+ # (http://www.biointerchange.org/gfvo#Identifier)
486
+ def self.Identifier
487
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#Identifier')
478
488
  end
479
489
 
480
- # Describing the effect of a feature "Variant" class instance.
481
- # (http://www.biointerchange.org/gfvo#Effect)
482
- def self.Effect
483
- return RDF::URI.new('http://www.biointerchange.org/gfvo#Effect')
490
+ # An information content entity requires background information or specific domain knowledge to be interpreted correctly.
491
+ # (http://www.biointerchange.org/gfvo#InformationContentEntity)
492
+ def self.InformationContentEntity
493
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#InformationContentEntity')
484
494
  end
485
495
 
486
- # The feature class captures information about genomic sequence features. A genomic feature can be a large object, such as a chromosome or contig, down to single base-pair reference or variant alleles. A feature class instance is a composite of further information that is encoded using "Attribute", "Reference", "Variation" and other sub-classes of "Feature Annotation".
487
- # (http://www.biointerchange.org/gfvo#Feature)
488
- def self.Feature
489
- return RDF::URI.new('http://www.biointerchange.org/gfvo#Feature')
496
+ # Describing interaction between features, such as the effect of a feature variant on another feature.
497
+ # (http://www.biointerchange.org/gfvo#Interaction)
498
+ def self.Interaction
499
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#Interaction')
490
500
  end
491
501
 
492
- # A file represents the contents of a GFF3, GTF, GVF or VCF file. It can capture genomic meta-data that is specific to any of these file formats. The result of unions, intersections or other operations between "File" class instances should be capture with the generic "Set" class, which is format independent.
493
- # (http://www.biointerchange.org/gfvo#File)
494
- def self.File
495
- return RDF::URI.new('http://www.biointerchange.org/gfvo#File')
502
+ # A label is a term or short list of terms that name an entity for the purpose of lexicographically distinguishing the entity from entities of similar type.
503
+ # (http://www.biointerchange.org/gfvo#Label)
504
+ def self.Label
505
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#Label')
496
506
  end
497
507
 
498
- # Denotes a frameshift forward in the reference sequence. The reference sequence is denoted by a "Landmark" whilst the aligned target sequence is an instance of the "Target" class.
499
- # (http://www.biointerchange.org/gfvo#ForwardReferenceSequenceFrameshift)
500
- def self.Forward_Reference_Sequence_Frameshift
501
- return RDF::URI.new('http://www.biointerchange.org/gfvo#ForwardReferenceSequenceFrameshift')
508
+ # A landmark establishes a coordinate system for features. Landmarks can be chromosomes, contigs, scaffolds or other constructs that can harbor "Feature" class instances. For expressing ploidy within a data set, please refer to the "Chromosome" class.
509
+ # (http://www.biointerchange.org/gfvo#Landmark)
510
+ def self.Landmark
511
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#Landmark')
502
512
  end
503
513
 
504
- # Details about the fragment-read (single-end read) sequencing technology used to gather the data in a set.
505
- # (http://www.biointerchange.org/gfvo#FragmentReadPlatform)
506
- def self.Fragment_Read_Platform
507
- return RDF::URI.new('http://www.biointerchange.org/gfvo#FragmentReadPlatform')
514
+ # Likelihood is the hypothetical probability of the occurrence of a certain event.
515
+ # (http://www.biointerchange.org/gfvo#Likelihood)
516
+ def self.Likelihood
517
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#Likelihood')
508
518
  end
509
519
 
510
- # The germline feature class captures information about genomic sequence features arising from germline cells.
511
- # (http://www.biointerchange.org/gfvo#GermlineFeature)
512
- def self.Germline_Feature
513
- return RDF::URI.new('http://www.biointerchange.org/gfvo#GermlineFeature')
520
+ # A locus refers to a position (possibly multi-dimensional) within a genome or proteome.
521
+ # (http://www.biointerchange.org/gfvo#Locus)
522
+ def self.Locus
523
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#Locus')
514
524
  end
515
525
 
516
- # A sequence alteration with hemizygous alleles.
517
- # (http://www.biointerchange.org/gfvo#HemizygousVariant)
518
- def self.Hemizygous_Variant
519
- return RDF::URI.new('http://www.biointerchange.org/gfvo#HemizygousVariant')
526
+ # Denoting sex of a male individual. A male is defined as an individual producing spermatozoa.
527
+ # (http://www.biointerchange.org/gfvo#Male)
528
+ def self.Male
529
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#Male')
520
530
  end
521
531
 
522
- # A sequence alteration with heterozygous alleles.
523
- # (http://www.biointerchange.org/gfvo#HeterozygousVariant)
524
- def self.Heterozygous_Variant
525
- return RDF::URI.new('http://www.biointerchange.org/gfvo#HeterozygousVariant')
532
+ # Denotes a match between the reference sequence and target sequence.
533
+ # (http://www.biointerchange.org/gfvo#Match)
534
+ def self.Match
535
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#Match')
526
536
  end
527
537
 
528
- # A sequence alteration with homozygous alleles.
529
- # (http://www.biointerchange.org/gfvo#HomozygousVariant)
530
- def self.Homozygous_Variant
531
- return RDF::URI.new('http://www.biointerchange.org/gfvo#HomozygousVariant')
538
+ # A material entity represents a physical object. In the context of genomic features and variations, material entities are cells, organisms, sequences, chromosomes, etc.
539
+ # (http://www.biointerchange.org/gfvo#MaterialEntity)
540
+ def self.MaterialEntity
541
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#MaterialEntity')
532
542
  end
533
543
 
534
- # A landmark establishes a coordinate system for features. Landmarks can be chromosomes, contigs, scaffolds or other constructs that can harbor "Feature" class instances. For expressing ploidy within a data set, please refer to the "Chromosome" class.
535
- # (http://www.biointerchange.org/gfvo#Landmark)
536
- def self.Landmark
537
- return RDF::URI.new('http://www.biointerchange.org/gfvo#Landmark')
544
+ # Maternal heritage is the passing of traits from a female to her ancestors.
545
+ # (http://www.biointerchange.org/gfvo#MaternalHeritage)
546
+ def self.MaternalHeritage
547
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#MaternalHeritage')
538
548
  end
539
549
 
540
- # Denotes a match between the reference sequence and target sequence. The reference sequence is denoted by a "Landmark" whilst the aligned target sequence is an instance of the "Target" class.
541
- # (http://www.biointerchange.org/gfvo#Match)
542
- def self.Match
543
- return RDF::URI.new('http://www.biointerchange.org/gfvo#Match')
550
+ # Insertion or deletion of a mobile element. The exact modification is determined by a type of the Variation Ontology.
551
+ # (http://www.biointerchange.org/gfvo#MobileElementSequenceVariant)
552
+ def self.MobileElementSequenceVariant
553
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#MobileElementSequenceVariant')
554
+ end
555
+
556
+ # A name assigns an entity a non-formal term (or multiples thereof) that can provide information about the entities identity.
557
+ # (http://www.biointerchange.org/gfvo#Name)
558
+ def self.Name
559
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#Name')
560
+ end
561
+
562
+ # A note is a short textual description.
563
+ # (http://www.biointerchange.org/gfvo#Note)
564
+ def self.Note
565
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#Note')
544
566
  end
545
567
 
546
- # A chromosome is an abstract representation of an unnamed chromosome to represent ploidy within a data set. A "Paternal Chromosome" instance is used for denoting the locus of phased genotypes on a chromosome inherited from the mother. For placing genomic features ("Feature" class instances) on a chromosome, contig, scaffold, etc., please see the "Landmark" class.
547
- # (http://www.biointerchange.org/gfvo#MaternalChromosome)
548
- def self.Maternal_Chromosome
549
- return RDF::URI.new('http://www.biointerchange.org/gfvo#MaternalChromosome')
568
+ # Number of reads supporting a particular feature or variant.
569
+ # (http://www.biointerchange.org/gfvo#NumberOfReads)
570
+ def self.Number_ofReads
571
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#NumberOfReads')
550
572
  end
551
573
 
552
- # Information about the used scoring algorithm or method.
553
- # (http://www.biointerchange.org/gfvo#Method)
554
- def self.Method
555
- return RDF::URI.new('http://www.biointerchange.org/gfvo#Method')
574
+ # An object is a concrete entity that realizes a concept and encapsulates data associated with said concept. Objects are typically representing tangible entities, such as "Chromosome", "DNA Sequence", but also objects such as "Identifier", "Average Coverage" or other computational or mathematical entities.
575
+ # (http://www.biointerchange.org/gfvo#Object)
576
+ def self.Object
577
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#Object')
556
578
  end
557
579
 
558
580
  # Details about the paired-end read sequencing technology used to gather the data in a set.
559
581
  # (http://www.biointerchange.org/gfvo#PairedEndReadPlatform)
560
- def self.Paired_End_Read_Platform
582
+ def self.PairedEndReadPlatform
561
583
  return RDF::URI.new('http://www.biointerchange.org/gfvo#PairedEndReadPlatform')
562
584
  end
563
585
 
564
- # A chromosome is an abstract representation of an unnamed chromosome to represent ploidy within a data set. A "Paternal Chromosome" instance is used for denoting the locus of phased genotypes on a chromosome inherited from the father. For placing genomic features ("Feature" class instances) on a chromosome, contig, scaffold, etc., please see the "Landmark" class.
565
- # (http://www.biointerchange.org/gfvo#PaternalChromosome)
566
- def self.Paternal_Chromosome
567
- return RDF::URI.new('http://www.biointerchange.org/gfvo#PaternalChromosome')
586
+ # Paternal heritage is the passing of traits from a male to his ancestors.
587
+ # (http://www.biointerchange.org/gfvo#PaternalHeritage)
588
+ def self.PaternalHeritage
589
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#PaternalHeritage')
568
590
  end
569
591
 
570
- # A phenotype description represents additional information about a sequenced individual's phenotype. A sequenced individual is represented by instances of the "Sequenced Individual" or its decendants (e.g., "Sequenced Female").
571
- # (http://www.biointerchange.org/gfvo#PhenotypeDescription)
572
- def self.Phenotype_Description
573
- return RDF::URI.new('http://www.biointerchange.org/gfvo#PhenotypeDescription')
592
+ # A peptide sequence is an ordered sequence of amino acid residues, but which may not necessarily be a protein sequence. For encoding sequences of proteins, the subclass "Protein Sequence" should be used.
593
+ # (http://www.biointerchange.org/gfvo#PeptideSequence)
594
+ def self.PeptideSequence
595
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#PeptideSequence')
596
+ end
597
+
598
+ # A phenotype description represents additional information about a sequenced individual's phenotype. A sequenced individual is represented by instances of the "Sequenced Individual" class.
599
+ # (http://www.biointerchange.org/gfvo#Phenotype)
600
+ def self.Phenotype
601
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#Phenotype')
602
+ end
603
+
604
+ # The Phred score can be used to assign quality scores to base calls of DNA sequences.
605
+ # (http://www.biointerchange.org/gfvo#PhredScore)
606
+ def self.PhredScore
607
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#PhredScore')
574
608
  end
575
609
 
576
610
  # A prenatal feature is purportedly associated with prenatal cells; the GVF specification declares this feature type under the prama directive "##genomic-source", but does not describe its semantics and the referenced Logical Observation Identifiers Names and Codes (LOINC, http://loinc.org), do not define the meaning or intended usage of the term "prenatal" either.
577
- # (http://www.biointerchange.org/gfvo#PrenatalFeature)
578
- def self.Prenatal_Feature
579
- return RDF::URI.new('http://www.biointerchange.org/gfvo#PrenatalFeature')
611
+ # (http://www.biointerchange.org/gfvo#PrenatalCell)
612
+ def self.PrenatalCell
613
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#PrenatalCell')
614
+ end
615
+
616
+ # A process denotes a temporally dependent entity. It can be thought of as a function, where input data is transformed by an algorithm to produce certain output data.
617
+ # (http://www.biointerchange.org/gfvo#Process)
618
+ def self.Process
619
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#Process')
620
+ end
621
+
622
+ # A protein sequence is a peptide sequence which represents the primary structure of a protein.
623
+ # (http://www.biointerchange.org/gfvo#ProteinSequence)
624
+ def self.ProteinSequence
625
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#ProteinSequence')
580
626
  end
581
627
 
582
- # A "Data Source" based on RNA sequences.
583
- # (http://www.biointerchange.org/gfvo#RNASequence)
584
- def self.RNA_Sequence
585
- return RDF::URI.new('http://www.biointerchange.org/gfvo#RNASequence')
628
+ # Quality is a specific attribute that is strongly associated with an entity, but whose values are varying and disjunct. Qualities are finite enumerations, such as sex ("Female", "Male", "Hermaphrodite"), heritage ("Maternal", "Paternal"), but they also make use of the "hasValue" datatype property such as "Coding Frame Offset" (either "0", "1" or "2").
629
+ # (http://www.biointerchange.org/gfvo#Quality)
630
+ def self.Quality
631
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#Quality')
632
+ end
633
+
634
+ # A property of a phenomenon, body, or substance, where the property has a magnitude that can be expressed by means of a number and a reference. This class is typically not directly instantiated, but instead, its subclasses "Allele Frequency", "Average Coverage", etc. are used.
635
+ # (http://www.biointerchange.org/gfvo#Quantity)
636
+ def self.Quantity
637
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#Quantity')
638
+ end
639
+
640
+ # Information about features and variants is based on RNA sequencing.
641
+ # (http://www.biointerchange.org/gfvo#RNASequencing)
642
+ def self.RNASequencing
643
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#RNASequencing')
586
644
  end
587
645
 
588
646
  # Denotes the reference sequence of a feature. The reference sequence is of importance when dealing with genomic variation data, which is expressed by the "Variant" class.
589
- # (http://www.biointerchange.org/gfvo#Reference)
590
- def self.Reference
591
- return RDF::URI.new('http://www.biointerchange.org/gfvo#Reference')
647
+ # (http://www.biointerchange.org/gfvo#ReferenceSequence)
648
+ def self.ReferenceSequence
649
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#ReferenceSequence')
592
650
  end
593
651
 
594
- # Denotes a gap in the reference sequence for an alignment. The reference sequence is denoted by a "Landmark" whilst the aligned target sequence is an instance of the "Target" class.
652
+ # Denotes a gap in the reference sequence for an alignment.
595
653
  # (http://www.biointerchange.org/gfvo#ReferenceSequenceGap)
596
- def self.Reference_Sequence_Gap
654
+ def self.ReferenceSequenceGap
597
655
  return RDF::URI.new('http://www.biointerchange.org/gfvo#ReferenceSequenceGap')
598
656
  end
599
657
 
600
- # Denotes a frameshift backwards (reverse) in the reference sequence. The reference sequence is denoted by a "Landmark" whilst the aligned target sequence is an instance of the "Target" class.
658
+ # Denotes a frameshift backwards (reverse) in the reference sequence.
601
659
  # (http://www.biointerchange.org/gfvo#ReverseReferenceSequenceFrameshift)
602
- def self.Reverse_Reference_Sequence_Frameshift
660
+ def self.ReverseReferenceSequenceFrameshift
603
661
  return RDF::URI.new('http://www.biointerchange.org/gfvo#ReverseReferenceSequenceFrameshift')
604
662
  end
605
663
 
606
- # A sequence annotation provides information on sequences associated with a "Feature" class instance or its descendants (s.a. "Germline Feature" or "Somatic Feature"). Specialized sub-classes are provided to denote reference sequences represented by "Reference" class instances, variants represented by "Variant" class instances, and "Ancestral Allele" class instances.
607
- # (http://www.biointerchange.org/gfvo#SequenceAnnotation)
608
- def self.Sequence_Annotation
609
- return RDF::URI.new('http://www.biointerchange.org/gfvo#SequenceAnnotation')
664
+ # A sample is a limited quantity of a chemical entity of some sort, which is typically used (destructively/non-desctructively) in a scientific analysis or test.
665
+ # (http://www.biointerchange.org/gfvo#Sample)
666
+ def self.Sample
667
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#Sample')
668
+ end
669
+
670
+ # A scaffold is the aggregation of multiple contigs to form a larger continuous sequencing region.
671
+ # (http://www.biointerchange.org/gfvo#Scaffold)
672
+ def self.Scaffold
673
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#Scaffold')
610
674
  end
611
675
 
612
- # Aggregated sequencing information for a particular female individual. A female is defined as an individual producing ova.
613
- # (http://www.biointerchange.org/gfvo#SequencedFemale)
614
- def self.Sequenced_Female
615
- return RDF::URI.new('http://www.biointerchange.org/gfvo#SequencedFemale')
676
+ # A measure that permits the ranking of entities.
677
+ # (http://www.biointerchange.org/gfvo#Score)
678
+ def self.Score
679
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#Score')
616
680
  end
617
681
 
618
- # Aggregated sequencing information for a particular individual that contains both male and female gemetes.
619
- # (http://www.biointerchange.org/gfvo#SequencedHermaphrodite)
620
- def self.Sequenced_Hermaphrodite
621
- return RDF::URI.new('http://www.biointerchange.org/gfvo#SequencedHermaphrodite')
682
+ # A sequence provides information about any biopolymer sequences. Specialized subclasses are provided to denote specialized instances of sequences, such as "Codon Sequence", "Reference Sequence", "Protein Sequence", etc.
683
+ # (http://www.biointerchange.org/gfvo#Sequence)
684
+ def self.Sequence
685
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#Sequence')
622
686
  end
623
687
 
624
- # Aggregated sequencing information for a particular individual. Unless a sub-type of this class is used as instance type, s.a. "Sequenced Female", the sex of the individual is considered to be undetermined.
688
+ # A sequence alignment denotes the congruence of two sequences.
689
+ # In GFF3, a sequence alignment can be a nucleotide-to-nucleotide or protein-to-nucleotide alignment (see "The Gap Attribute", http://sequenceontology.org/resources/gff3.html). "Alignment Operation" class instances denote the actual steps that the constitute the sequence alignment.
690
+ # (http://www.biointerchange.org/gfvo#SequenceAlignment)
691
+ def self.SequenceAlignment
692
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#SequenceAlignment')
693
+ end
694
+
695
+ # A sequence alignment operation captures the type of alignment (see "Sequence Alignment") between a reference sequence and target sequence. Note that an "Alignment Operation" is situated in a linked list, where the order of the alignment operations is of significance.
696
+ # (http://www.biointerchange.org/gfvo#SequenceAlignmentOperation)
697
+ def self.SequenceAlignmentOperation
698
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#SequenceAlignmentOperation')
699
+ end
700
+
701
+ # Describing specific sequence alterations of a genomic feature. A variant is related to "Reference" class instances, which denote the sequence that serves as a basis for sequence alteration comparisons.
702
+ # (http://www.biointerchange.org/gfvo#SequenceVariant)
703
+ def self.SequenceVariant
704
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#SequenceVariant')
705
+ end
706
+
707
+ # Aggregated sequencing information for a particular individual.
625
708
  # (http://www.biointerchange.org/gfvo#SequencedIndividual)
626
- def self.Sequenced_Individual
709
+ def self.SequencedIndividual
627
710
  return RDF::URI.new('http://www.biointerchange.org/gfvo#SequencedIndividual')
628
711
  end
629
712
 
630
- # Aggregated sequencing information for a particular male individual. A male is defined as an individual producing spermatozoa.
631
- # (http://www.biointerchange.org/gfvo#SequencedMale)
632
- def self.Sequenced_Male
633
- return RDF::URI.new('http://www.biointerchange.org/gfvo#SequencedMale')
713
+ # Details about the sequencing/microarray technology used to gather the data in a set.
714
+ # (http://www.biointerchange.org/gfvo#SequencingTechnologyPlatform)
715
+ def self.SequencingTechnologyPlatform
716
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#SequencingTechnologyPlatform')
634
717
  end
635
718
 
636
- # A set is a container for genomic sequence features and related information that is independent of data provenance. A set may contain information about any genomic features including -- but not limited to -- contents of GFF3, GTF, GVF and VCF files. The latter are better represented by "File" class instances, whereas the result of unions or intersections between different "File" class instances should be captured within this format-independent "Set" class.
637
- # (http://www.biointerchange.org/gfvo#Set)
638
- def self.Set
639
- return RDF::URI.new('http://www.biointerchange.org/gfvo#Set')
719
+ # Biological sex of an individual.
720
+ # (http://www.biointerchange.org/gfvo#Sex)
721
+ def self.Sex
722
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#Sex')
640
723
  end
641
724
 
642
725
  # The somatic feature class captures information about genomic sequence features arising from somatic cells.
643
- # (http://www.biointerchange.org/gfvo#SomaticFeature)
644
- def self.Somatic_Feature
645
- return RDF::URI.new('http://www.biointerchange.org/gfvo#SomaticFeature')
646
- end
647
-
648
- # A structured attribute denotes a tag/value pair where the value is a composite, but which is not defined in the GVF specification. The GVF specification does not explicitly permit user-defined structured attributes (see "Structured Pragmas" in http://sequenceontology.org/resources/gvf.html), but it is conceivable that an RDFization tool might support this use case. For some loosly defined structured data in GVF, the "Structured Attribute" class is used as well to capture the non-exhaustive list of possible data assignments of the GVF specification.
649
- # (http://www.biointerchange.org/gfvo#StructuredAttribute)
650
- def self.Structured_Attribute
651
- return RDF::URI.new('http://www.biointerchange.org/gfvo#StructuredAttribute')
726
+ # (http://www.biointerchange.org/gfvo#SomaticCell)
727
+ def self.SomaticCell
728
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#SomaticCell')
652
729
  end
653
730
 
654
- # A target expresses the relationship between a "Feature" instance and an alignment. In GFF3, the alignment can be a nucleotide-to-nucleotide or protein-to-nucleotide (see "The Gap Attribute", http://sequenceontology.org/resources/gff3.html), but this restriction is not enforced here. Note that the object property "alignment" links out to a list of "Alignment Operation" class instances, where only the first operation in that list is referenced via the "alignment" property. The remainder of operations can be accessed by stepping through the list.
655
- # (http://www.biointerchange.org/gfvo#Target)
656
- def self.Target
657
- return RDF::URI.new('http://www.biointerchange.org/gfvo#Target')
731
+ # A span is an attribute denoting the number of nucleotides or peptides that an entity covers. This is directly used in conjunction with "Sequence Alignment Operation" subclasses, e.g. to express the number of nucleotides a sequence alignment match ranges over.
732
+ # (http://www.biointerchange.org/gfvo#Span)
733
+ def self.Span
734
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#Span')
658
735
  end
659
736
 
660
- # Denotes a gap in the target sequence for an alignment. The reference sequence is denoted by a "Landmark" whilst the aligned target sequence is an instance of the "Target" class.
737
+ # Denotes a gap in the target sequence for an alignment.
661
738
  # (http://www.biointerchange.org/gfvo#TargetSequenceGap)
662
- def self.Target_Sequence_Gap
739
+ def self.TargetSequenceGap
663
740
  return RDF::URI.new('http://www.biointerchange.org/gfvo#TargetSequenceGap')
664
741
  end
665
742
 
666
- # Details about the sequencing/microarray technology used to gather the data in a set.
667
- # (http://www.biointerchange.org/gfvo#TechnologyPlatform)
668
- def self.Technology_Platform
669
- return RDF::URI.new('http://www.biointerchange.org/gfvo#TechnologyPlatform')
743
+ # Total number of reads covering a feature or variant.
744
+ # (http://www.biointerchange.org/gfvo#TotalNumberOfReads)
745
+ def self.TotalNumber_ofReads
746
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#TotalNumberOfReads')
670
747
  end
671
748
 
672
- # Describing specific sequence alterations of a genomic feature. A variant is related to "Reference" class instances, which denote the sequence that serves as a basis for sequence alteration comparisons.
673
- # (http://www.biointerchange.org/gfvo#Variant)
674
- def self.Variant
675
- return RDF::URI.new('http://www.biointerchange.org/gfvo#Variant')
749
+ # Denotes the technique of calling genomic feature variants in a genome assembly.
750
+ # (http://www.biointerchange.org/gfvo#VariantCalling)
751
+ def self.VariantCalling
752
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#VariantCalling')
753
+ end
754
+
755
+ # A version names a release of a software, dataset, or other resource. A versioned resource is not necessarily public.
756
+ # (http://www.biointerchange.org/gfvo#Version)
757
+ def self.Version
758
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#Version')
759
+ end
760
+
761
+ # Helical structure as first proposed by Watson and Crick.
762
+ #
763
+ # Can be used to indicate a false "Is_circular" attribute in GFF3 and GVF.
764
+ # (http://www.biointerchange.org/gfvo#WatsonCrickHelix)
765
+ def self.WatsonCrickHelix
766
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#WatsonCrickHelix')
767
+ end
768
+
769
+ # Zygosity denotes the similarities of a specific allele in the genome of an organism.
770
+ # (http://www.biointerchange.org/gfvo#Zygosity)
771
+ def self.Zygosity
772
+ return RDF::URI.new('http://www.biointerchange.org/gfvo#Zygosity')
676
773
  end
677
774
 
678
775
  # Determines whether the given URI is an object property.
679
776
  #
680
777
  # +uri+:: URI that is tested for being an object property
681
778
  def self.is_object_property?(uri)
682
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#alignment') then
779
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#describes') then
683
780
  return true
684
781
  end
685
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#annotationObjectProperty') then
782
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#hasAnnotation') then
686
783
  return true
687
784
  end
688
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#attribute') then
785
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#hasAttribute') then
689
786
  return true
690
787
  end
691
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#attributeMethod') then
788
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#hasEvidence') then
692
789
  return true
693
790
  end
694
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#chromosome') then
791
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#hasFirstPart') then
695
792
  return true
696
793
  end
697
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#contains') then
794
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#hasIdentifier') then
698
795
  return true
699
796
  end
700
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#dataSource') then
797
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#hasInput') then
701
798
  return true
702
799
  end
703
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#dbxref') then
800
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#hasLastPart') then
704
801
  return true
705
802
  end
706
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#derivesFrom') then
803
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#hasMember') then
707
804
  return true
708
805
  end
709
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#effect') then
806
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#hasOrderedPart') then
710
807
  return true
711
808
  end
712
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#featureObjectProperty') then
809
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#hasOutput') then
713
810
  return true
714
811
  end
715
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#featureOntology') then
812
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#hasPart') then
716
813
  return true
717
814
  end
718
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#featureType') then
815
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#hasParticipant') then
719
816
  return true
720
817
  end
721
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#genomicSource') then
818
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#hasQuality') then
722
819
  return true
723
820
  end
724
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#genotype') then
821
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#hasSource') then
725
822
  return true
726
823
  end
727
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#individual') then
824
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#isAbout') then
728
825
  return true
729
826
  end
730
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#locus') then
827
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#isAffectedBy') then
731
828
  return true
732
829
  end
733
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#ontologyTerm') then
830
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#isAfter') then
734
831
  return true
735
832
  end
736
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#parent') then
833
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#isAttributeOf') then
737
834
  return true
738
835
  end
739
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#phenotypeDescription') then
836
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#isBefore') then
740
837
  return true
741
838
  end
742
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#scoreMethod') then
839
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#isCreatedBy') then
743
840
  return true
744
841
  end
745
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#seqid') then
842
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#isDescribedBy') then
746
843
  return true
747
844
  end
748
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#sequenceAnnotation') then
845
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#isLocatedOn') then
749
846
  return true
750
847
  end
751
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#sequenceVariant') then
848
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#isPartOf') then
752
849
  return true
753
850
  end
754
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#setObjectProperty') then
851
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#isParticipantIn') then
755
852
  return true
756
853
  end
757
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#sourceMethod') then
854
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#isRefutedBy') then
758
855
  return true
759
856
  end
760
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#species') then
857
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#isSourceOf') then
761
858
  return true
762
859
  end
763
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#structuredAttributes') then
860
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#isSpatiotemporallyRelatedTo') then
764
861
  return true
765
862
  end
766
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#target') then
863
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#isSupportedBy') then
767
864
  return true
768
865
  end
769
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#targetAttributeMethod') then
866
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#isTemporarilyPartOf') then
770
867
  return true
771
868
  end
772
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#technologyPlatform') then
869
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#references') then
773
870
  return true
774
871
  end
775
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#type') then
872
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#refersTo') then
776
873
  return true
777
874
  end
778
875
  return false
@@ -782,212 +879,233 @@ class GFVO
782
879
  #
783
880
  # +uri+:: URI that is tested for being a datatype property
784
881
  def self.is_datatype_property?(uri)
785
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#3primeContext') then
882
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#hasValue') then
786
883
  return true
787
884
  end
788
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#5primeContext') then
885
+ return false
886
+ end
887
+
888
+ # Determines whether the given URI is a class.
889
+ #
890
+ # +uri+:: URI that is tested for being a class
891
+ def self.is_class?(uri)
892
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#Alias') then
789
893
  return true
790
894
  end
791
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#alias') then
895
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#AlleleFrequency') then
792
896
  return true
793
897
  end
794
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#aminoAcid') then
898
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#AminoAcid') then
795
899
  return true
796
900
  end
797
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#annotationDatatypeProperty') then
901
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#AncestralSequence') then
798
902
  return true
799
903
  end
800
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#averageCoverage') then
904
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#ArrayComparativeGenomicHybridization') then
801
905
  return true
802
906
  end
803
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#build') then
907
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#Attribute') then
804
908
  return true
805
909
  end
806
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#codon') then
910
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#AverageCoverage') then
807
911
  return true
808
912
  end
809
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#comment') then
913
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#BiologicalEntity') then
810
914
  return true
811
915
  end
812
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#feature') then
916
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#BiopolymerSequencing') then
813
917
  return true
814
918
  end
815
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#featureDatatypeProperty') then
919
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#Breakpoint') then
816
920
  return true
817
921
  end
818
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#fileDatatypeProperty') then
922
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#Catalog') then
819
923
  return true
820
924
  end
821
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#fileDate') then
925
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#Cell') then
822
926
  return true
823
927
  end
824
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#fileVersion') then
928
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#ChemicalEntity') then
825
929
  return true
826
930
  end
827
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#frequency') then
931
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#Chromosome') then
828
932
  return true
829
933
  end
830
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#gffVersion') then
934
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#CircularHelix') then
831
935
  return true
832
936
  end
833
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#gtfVersion') then
937
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#CodingFrameOffset') then
834
938
  return true
835
939
  end
836
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#gvfVersion') then
940
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#CodonSequence') then
837
941
  return true
838
942
  end
839
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#id') then
943
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#Collection') then
840
944
  return true
841
945
  end
842
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#isCircular') then
946
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#Comment') then
843
947
  return true
844
948
  end
845
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#isPhased') then
949
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#Contig') then
846
950
  return true
847
951
  end
848
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#name') then
952
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#Coverage') then
849
953
  return true
850
954
  end
851
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#note') then
955
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#DNAMicroarray') then
852
956
  return true
853
957
  end
854
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#phase') then
958
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#DNASequence') then
855
959
  return true
856
960
  end
857
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#phredScore') then
961
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#DNASequencing') then
858
962
  return true
859
963
  end
860
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#platformClass') then
964
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#ExperimentalMethod') then
861
965
  return true
862
966
  end
863
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#platformName') then
967
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#ExternalReference') then
864
968
  return true
865
969
  end
866
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#readIPairSpan') then
970
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#Feature') then
867
971
  return true
868
972
  end
869
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#readLength') then
973
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#Female') then
870
974
  return true
871
975
  end
872
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#reads') then
976
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#File') then
873
977
  return true
874
978
  end
875
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#score') then
979
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#ForwardReferenceSequenceFrameshift') then
876
980
  return true
877
981
  end
878
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#sequence') then
982
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#FragmentReadPlatform') then
879
983
  return true
880
984
  end
881
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#setDatatypeProperty') then
985
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#FunctionalSpecification') then
882
986
  return true
883
987
  end
884
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#source') then
988
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#GameticPhase') then
885
989
  return true
886
990
  end
887
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#span') then
991
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#Genome') then
888
992
  return true
889
993
  end
890
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#tag') then
994
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#GenomeAnalysis') then
891
995
  return true
892
996
  end
893
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#totalReads') then
997
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#GenomicAscertainingMethod') then
894
998
  return true
895
999
  end
896
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#vcfVersion') then
1000
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#Genotype') then
897
1001
  return true
898
1002
  end
899
- return false
900
- end
901
-
902
- # Determines whether the given URI is a class.
903
- #
904
- # +uri+:: URI that is tested for being a class
905
- def self.is_class?(uri)
906
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#AlignmentOperation') then
1003
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#Genotyping') then
907
1004
  return true
908
1005
  end
909
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#AncestralAllele') then
1006
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#GermlineCell') then
910
1007
  return true
911
1008
  end
912
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#Annotation') then
1009
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#HelixStructure') then
913
1010
  return true
914
1011
  end
915
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#ArrayComparativeGenomicHybridization') then
1012
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#Hemizygous') then
916
1013
  return true
917
1014
  end
918
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#Attribute') then
1015
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#Heritage') then
919
1016
  return true
920
1017
  end
921
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#Breakpoint') then
1018
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#Hermaphrodite') then
922
1019
  return true
923
1020
  end
924
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#Chromosome') then
1021
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#Heterozygous') then
925
1022
  return true
926
1023
  end
927
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#DNAMicroarray') then
1024
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#Homozygous') then
928
1025
  return true
929
1026
  end
930
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#DNASequence') then
1027
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#Identifier') then
931
1028
  return true
932
1029
  end
933
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#DataSource') then
1030
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#InformationContentEntity') then
934
1031
  return true
935
1032
  end
936
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#Effect') then
1033
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#Interaction') then
937
1034
  return true
938
1035
  end
939
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#Feature') then
1036
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#Label') then
940
1037
  return true
941
1038
  end
942
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#File') then
1039
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#Landmark') then
943
1040
  return true
944
1041
  end
945
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#ForwardReferenceSequenceFrameshift') then
1042
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#Likelihood') then
946
1043
  return true
947
1044
  end
948
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#FragmentReadPlatform') then
1045
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#Locus') then
949
1046
  return true
950
1047
  end
951
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#GermlineFeature') then
1048
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#Male') then
952
1049
  return true
953
1050
  end
954
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#HemizygousVariant') then
1051
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#Match') then
955
1052
  return true
956
1053
  end
957
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#HeterozygousVariant') then
1054
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#MaterialEntity') then
958
1055
  return true
959
1056
  end
960
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#HomozygousVariant') then
1057
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#MaternalHeritage') then
961
1058
  return true
962
1059
  end
963
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#Landmark') then
1060
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#MobileElementSequenceVariant') then
964
1061
  return true
965
1062
  end
966
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#Match') then
1063
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#Name') then
967
1064
  return true
968
1065
  end
969
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#MaternalChromosome') then
1066
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#Note') then
970
1067
  return true
971
1068
  end
972
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#Method') then
1069
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#NumberOfReads') then
1070
+ return true
1071
+ end
1072
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#Object') then
973
1073
  return true
974
1074
  end
975
1075
  if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#PairedEndReadPlatform') then
976
1076
  return true
977
1077
  end
978
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#PaternalChromosome') then
1078
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#PaternalHeritage') then
1079
+ return true
1080
+ end
1081
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#PeptideSequence') then
1082
+ return true
1083
+ end
1084
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#Phenotype') then
979
1085
  return true
980
1086
  end
981
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#PhenotypeDescription') then
1087
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#PhredScore') then
982
1088
  return true
983
1089
  end
984
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#PrenatalFeature') then
1090
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#PrenatalCell') then
985
1091
  return true
986
1092
  end
987
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#RNASequence') then
1093
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#Process') then
988
1094
  return true
989
1095
  end
990
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#Reference') then
1096
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#ProteinSequence') then
1097
+ return true
1098
+ end
1099
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#Quality') then
1100
+ return true
1101
+ end
1102
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#Quantity') then
1103
+ return true
1104
+ end
1105
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#RNASequencing') then
1106
+ return true
1107
+ end
1108
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#ReferenceSequence') then
991
1109
  return true
992
1110
  end
993
1111
  if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#ReferenceSequenceGap') then
@@ -996,40 +1114,58 @@ class GFVO
996
1114
  if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#ReverseReferenceSequenceFrameshift') then
997
1115
  return true
998
1116
  end
999
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#SequenceAnnotation') then
1117
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#Sample') then
1000
1118
  return true
1001
1119
  end
1002
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#SequencedFemale') then
1120
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#Scaffold') then
1003
1121
  return true
1004
1122
  end
1005
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#SequencedHermaphrodite') then
1123
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#Score') then
1006
1124
  return true
1007
1125
  end
1008
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#SequencedIndividual') then
1126
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#Sequence') then
1127
+ return true
1128
+ end
1129
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#SequenceAlignment') then
1009
1130
  return true
1010
1131
  end
1011
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#SequencedMale') then
1132
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#SequenceAlignmentOperation') then
1012
1133
  return true
1013
1134
  end
1014
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#Set') then
1135
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#SequenceVariant') then
1015
1136
  return true
1016
1137
  end
1017
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#SomaticFeature') then
1138
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#SequencedIndividual') then
1139
+ return true
1140
+ end
1141
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#SequencingTechnologyPlatform') then
1018
1142
  return true
1019
1143
  end
1020
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#StructuredAttribute') then
1144
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#Sex') then
1021
1145
  return true
1022
1146
  end
1023
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#Target') then
1147
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#SomaticCell') then
1148
+ return true
1149
+ end
1150
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#Span') then
1024
1151
  return true
1025
1152
  end
1026
1153
  if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#TargetSequenceGap') then
1027
1154
  return true
1028
1155
  end
1029
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#TechnologyPlatform') then
1156
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#TotalNumberOfReads') then
1157
+ return true
1158
+ end
1159
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#VariantCalling') then
1160
+ return true
1161
+ end
1162
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#Version') then
1163
+ return true
1164
+ end
1165
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#WatsonCrickHelix') then
1030
1166
  return true
1031
1167
  end
1032
- if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#Variant') then
1168
+ if uri == RDF::URI.new('http://www.biointerchange.org/gfvo#Zygosity') then
1033
1169
  return true
1034
1170
  end
1035
1171
  return false
@@ -1065,7 +1201,7 @@ class GFVO
1065
1201
  end
1066
1202
 
1067
1203
  private
1068
- @@parent_properties = { RDF::URI.new('http://www.biointerchange.org/gfvo#alignment') => RDF::URI.new('http://www.biointerchange.org/gfvo#annotationObjectProperty') , RDF::URI.new('http://www.biointerchange.org/gfvo#annotationObjectProperty') => RDF::URI.new('http://www.w3.org/2002/07/owl#topObjectProperty') , RDF::URI.new('http://www.biointerchange.org/gfvo#attribute') => RDF::URI.new('http://www.biointerchange.org/gfvo#featureObjectProperty') , RDF::URI.new('http://www.biointerchange.org/gfvo#attributeMethod') => RDF::URI.new('http://www.biointerchange.org/gfvo#annotationObjectProperty') , RDF::URI.new('http://www.biointerchange.org/gfvo#chromosome') => RDF::URI.new('http://www.biointerchange.org/gfvo#annotationObjectProperty') , RDF::URI.new('http://www.biointerchange.org/gfvo#contains') => RDF::URI.new('http://www.biointerchange.org/gfvo#setObjectProperty') , RDF::URI.new('http://www.biointerchange.org/gfvo#dataSource') => RDF::URI.new('http://www.biointerchange.org/gfvo#featureObjectProperty') , RDF::URI.new('http://www.biointerchange.org/gfvo#dbxref') => RDF::URI.new('http://www.biointerchange.org/gfvo#featureObjectProperty') , RDF::URI.new('http://www.biointerchange.org/gfvo#derivesFrom') => RDF::URI.new('http://www.biointerchange.org/gfvo#featureObjectProperty') , RDF::URI.new('http://www.biointerchange.org/gfvo#effect') => RDF::URI.new('http://www.biointerchange.org/gfvo#annotationObjectProperty') , RDF::URI.new('http://www.biointerchange.org/gfvo#featureObjectProperty') => RDF::URI.new('http://www.w3.org/2002/07/owl#topObjectProperty') , RDF::URI.new('http://www.biointerchange.org/gfvo#featureOntology') => RDF::URI.new('http://www.biointerchange.org/gfvo#setObjectProperty') , RDF::URI.new('http://www.biointerchange.org/gfvo#featureType') => RDF::URI.new('http://www.biointerchange.org/gfvo#annotationObjectProperty') , RDF::URI.new('http://www.biointerchange.org/gfvo#genomicSource') => RDF::URI.new('http://www.biointerchange.org/gfvo#setObjectProperty') , RDF::URI.new('http://www.biointerchange.org/gfvo#genotype') => RDF::URI.new('http://www.biointerchange.org/gfvo#annotationObjectProperty') , RDF::URI.new('http://www.biointerchange.org/gfvo#individual') => RDF::URI.new('http://www.biointerchange.org/gfvo#featureObjectProperty') , RDF::URI.new('http://www.biointerchange.org/gfvo#locus') => RDF::URI.new('http://www.biointerchange.org/gfvo#featureObjectProperty') , RDF::URI.new('http://www.biointerchange.org/gfvo#ontologyTerm') => RDF::URI.new('http://www.biointerchange.org/gfvo#featureObjectProperty') , RDF::URI.new('http://www.biointerchange.org/gfvo#parent') => RDF::URI.new('http://www.biointerchange.org/gfvo#featureObjectProperty') , RDF::URI.new('http://www.biointerchange.org/gfvo#phenotypeDescription') => RDF::URI.new('http://www.biointerchange.org/gfvo#annotationObjectProperty') , RDF::URI.new('http://www.biointerchange.org/gfvo#scoreMethod') => RDF::URI.new('http://www.biointerchange.org/gfvo#featureObjectProperty') , RDF::URI.new('http://www.biointerchange.org/gfvo#seqid') => RDF::URI.new('http://www.biointerchange.org/gfvo#featureObjectProperty') , RDF::URI.new('http://www.biointerchange.org/gfvo#sequenceAnnotation') => RDF::URI.new('http://www.biointerchange.org/gfvo#featureObjectProperty') , RDF::URI.new('http://www.biointerchange.org/gfvo#sequenceVariant') => RDF::URI.new('http://www.biointerchange.org/gfvo#annotationObjectProperty') , RDF::URI.new('http://www.biointerchange.org/gfvo#sourceMethod') => RDF::URI.new('http://www.biointerchange.org/gfvo#featureObjectProperty') , RDF::URI.new('http://www.biointerchange.org/gfvo#species') => RDF::URI.new('http://www.biointerchange.org/gfvo#setObjectProperty') , RDF::URI.new('http://www.biointerchange.org/gfvo#structuredAttributes') => RDF::URI.new('http://www.biointerchange.org/gfvo#annotationObjectProperty') , RDF::URI.new('http://www.biointerchange.org/gfvo#target') => RDF::URI.new('http://www.biointerchange.org/gfvo#featureObjectProperty') , RDF::URI.new('http://www.biointerchange.org/gfvo#targetAttributeMethod') => RDF::URI.new('http://www.biointerchange.org/gfvo#annotationObjectProperty') , RDF::URI.new('http://www.biointerchange.org/gfvo#technologyPlatform') => RDF::URI.new('http://www.biointerchange.org/gfvo#featureObjectProperty') , RDF::URI.new('http://www.biointerchange.org/gfvo#type') => RDF::URI.new('http://www.biointerchange.org/gfvo#featureObjectProperty') , RDF::URI.new('http://www.biointerchange.org/gfvo#3primeContext') => RDF::URI.new('http://www.biointerchange.org/gfvo#featureDatatypeProperty') , RDF::URI.new('http://www.biointerchange.org/gfvo#5primeContext') => RDF::URI.new('http://www.biointerchange.org/gfvo#featureDatatypeProperty') , RDF::URI.new('http://www.biointerchange.org/gfvo#alias') => RDF::URI.new('http://www.biointerchange.org/gfvo#featureDatatypeProperty') , RDF::URI.new('http://www.biointerchange.org/gfvo#aminoAcid') => RDF::URI.new('http://www.biointerchange.org/gfvo#annotationDatatypeProperty') , RDF::URI.new('http://www.biointerchange.org/gfvo#annotationDatatypeProperty') => RDF::URI.new('http://www.w3.org/2002/07/owl#topDataProperty') , RDF::URI.new('http://www.biointerchange.org/gfvo#averageCoverage') => RDF::URI.new('http://www.biointerchange.org/gfvo#annotationDatatypeProperty') , RDF::URI.new('http://www.biointerchange.org/gfvo#build') => RDF::URI.new('http://www.biointerchange.org/gfvo#setDatatypeProperty') , RDF::URI.new('http://www.biointerchange.org/gfvo#codon') => RDF::URI.new('http://www.biointerchange.org/gfvo#annotationDatatypeProperty') , RDF::URI.new('http://www.biointerchange.org/gfvo#comment') => RDF::URI.new('http://www.biointerchange.org/gfvo#annotationDatatypeProperty') , RDF::URI.new('http://www.biointerchange.org/gfvo#feature') => RDF::URI.new('http://www.biointerchange.org/gfvo#annotationDatatypeProperty') , RDF::URI.new('http://www.biointerchange.org/gfvo#featureDatatypeProperty') => RDF::URI.new('http://www.w3.org/2002/07/owl#topDataProperty') , RDF::URI.new('http://www.biointerchange.org/gfvo#fileDatatypeProperty') => RDF::URI.new('http://www.biointerchange.org/gfvo#setDatatypeProperty') , RDF::URI.new('http://www.biointerchange.org/gfvo#fileDate') => RDF::URI.new('http://www.biointerchange.org/gfvo#fileDatatypeProperty') , RDF::URI.new('http://www.biointerchange.org/gfvo#fileVersion') => RDF::URI.new('http://www.biointerchange.org/gfvo#fileDatatypeProperty') , RDF::URI.new('http://www.biointerchange.org/gfvo#frequency') => RDF::URI.new('http://www.biointerchange.org/gfvo#annotationDatatypeProperty') , RDF::URI.new('http://www.biointerchange.org/gfvo#gffVersion') => RDF::URI.new('http://www.biointerchange.org/gfvo#fileDatatypeProperty') , RDF::URI.new('http://www.biointerchange.org/gfvo#gtfVersion') => RDF::URI.new('http://www.biointerchange.org/gfvo#fileDatatypeProperty') , RDF::URI.new('http://www.biointerchange.org/gfvo#gvfVersion') => RDF::URI.new('http://www.biointerchange.org/gfvo#fileDatatypeProperty') , RDF::URI.new('http://www.biointerchange.org/gfvo#id') => RDF::URI.new('http://www.biointerchange.org/gfvo#featureDatatypeProperty') , RDF::URI.new('http://www.biointerchange.org/gfvo#isCircular') => RDF::URI.new('http://www.biointerchange.org/gfvo#featureDatatypeProperty') , RDF::URI.new('http://www.biointerchange.org/gfvo#isPhased') => RDF::URI.new('http://www.biointerchange.org/gfvo#featureDatatypeProperty') , RDF::URI.new('http://www.biointerchange.org/gfvo#name') => RDF::URI.new('http://www.biointerchange.org/gfvo#featureDatatypeProperty') , RDF::URI.new('http://www.biointerchange.org/gfvo#note') => RDF::URI.new('http://www.biointerchange.org/gfvo#featureDatatypeProperty') , RDF::URI.new('http://www.biointerchange.org/gfvo#phase') => RDF::URI.new('http://www.biointerchange.org/gfvo#featureDatatypeProperty') , RDF::URI.new('http://www.biointerchange.org/gfvo#phredScore') => RDF::URI.new('http://www.biointerchange.org/gfvo#annotationDatatypeProperty') , RDF::URI.new('http://www.biointerchange.org/gfvo#platformClass') => RDF::URI.new('http://www.biointerchange.org/gfvo#annotationDatatypeProperty') , RDF::URI.new('http://www.biointerchange.org/gfvo#platformName') => RDF::URI.new('http://www.biointerchange.org/gfvo#annotationDatatypeProperty') , RDF::URI.new('http://www.biointerchange.org/gfvo#readIPairSpan') => RDF::URI.new('http://www.biointerchange.org/gfvo#annotationDatatypeProperty') , RDF::URI.new('http://www.biointerchange.org/gfvo#readLength') => RDF::URI.new('http://www.biointerchange.org/gfvo#annotationDatatypeProperty') , RDF::URI.new('http://www.biointerchange.org/gfvo#reads') => RDF::URI.new('http://www.biointerchange.org/gfvo#annotationDatatypeProperty') , RDF::URI.new('http://www.biointerchange.org/gfvo#score') => RDF::URI.new('http://www.biointerchange.org/gfvo#featureDatatypeProperty') , RDF::URI.new('http://www.biointerchange.org/gfvo#sequence') => RDF::URI.new('http://www.biointerchange.org/gfvo#annotationDatatypeProperty') , RDF::URI.new('http://www.biointerchange.org/gfvo#setDatatypeProperty') => RDF::URI.new('http://www.w3.org/2002/07/owl#topDataProperty') , RDF::URI.new('http://www.biointerchange.org/gfvo#source') => RDF::URI.new('http://www.biointerchange.org/gfvo#featureDatatypeProperty') , RDF::URI.new('http://www.biointerchange.org/gfvo#span') => RDF::URI.new('http://www.biointerchange.org/gfvo#annotationDatatypeProperty') , RDF::URI.new('http://www.biointerchange.org/gfvo#tag') => RDF::URI.new('http://www.biointerchange.org/gfvo#annotationDatatypeProperty') , RDF::URI.new('http://www.biointerchange.org/gfvo#totalReads') => RDF::URI.new('http://www.biointerchange.org/gfvo#annotationDatatypeProperty') , RDF::URI.new('http://www.biointerchange.org/gfvo#vcfVersion') => RDF::URI.new('http://www.biointerchange.org/gfvo#fileDatatypeProperty') , RDF::URI.new('http://www.biointerchange.org/gfvo#AlignmentOperation') => RDF::URI.new('http://www.w3.org/1999/02/22-rdf-syntax-ns#List') , RDF::URI.new('http://www.biointerchange.org/gfvo#AncestralAllele') => RDF::URI.new('http://www.biointerchange.org/gfvo#SequenceAnnotation') , RDF::URI.new('http://www.biointerchange.org/gfvo#ArrayComparativeGenomicHybridization') => RDF::URI.new('http://www.biointerchange.org/gfvo#DataSource') , RDF::URI.new('http://www.biointerchange.org/gfvo#Attribute') => RDF::URI.new('http://www.biointerchange.org/gfvo#Annotation') , RDF::URI.new('http://www.biointerchange.org/gfvo#Breakpoint') => RDF::URI.new('http://www.biointerchange.org/gfvo#SequenceAnnotation') , RDF::URI.new('http://www.biointerchange.org/gfvo#Chromosome') => RDF::URI.new('http://www.biointerchange.org/gfvo#Annotation') , RDF::URI.new('http://www.biointerchange.org/gfvo#DNAMicroarray') => RDF::URI.new('http://www.biointerchange.org/gfvo#DataSource') , RDF::URI.new('http://www.biointerchange.org/gfvo#DNASequence') => RDF::URI.new('http://www.biointerchange.org/gfvo#DataSource') , RDF::URI.new('http://www.biointerchange.org/gfvo#DataSource') => RDF::URI.new('http://www.biointerchange.org/gfvo#Annotation') , RDF::URI.new('http://www.biointerchange.org/gfvo#Effect') => RDF::URI.new('http://www.biointerchange.org/gfvo#Annotation') , RDF::URI.new('http://www.biointerchange.org/gfvo#File') => RDF::URI.new('http://www.biointerchange.org/gfvo#Set') , RDF::URI.new('http://www.biointerchange.org/gfvo#ForwardReferenceSequenceFrameshift') => RDF::URI.new('http://www.biointerchange.org/gfvo#AlignmentOperation') , RDF::URI.new('http://www.biointerchange.org/gfvo#FragmentReadPlatform') => RDF::URI.new('http://www.biointerchange.org/gfvo#TechnologyPlatform') , RDF::URI.new('http://www.biointerchange.org/gfvo#GermlineFeature') => RDF::URI.new('http://www.biointerchange.org/gfvo#Feature') , RDF::URI.new('http://www.biointerchange.org/gfvo#HemizygousVariant') => RDF::URI.new('http://www.biointerchange.org/gfvo#Variant') , RDF::URI.new('http://www.biointerchange.org/gfvo#HeterozygousVariant') => RDF::URI.new('http://www.biointerchange.org/gfvo#Variant') , RDF::URI.new('http://www.biointerchange.org/gfvo#HomozygousVariant') => RDF::URI.new('http://www.biointerchange.org/gfvo#Variant') , RDF::URI.new('http://www.biointerchange.org/gfvo#Landmark') => RDF::URI.new('http://www.biointerchange.org/gfvo#SequenceAnnotation') , RDF::URI.new('http://www.biointerchange.org/gfvo#Match') => RDF::URI.new('http://www.biointerchange.org/gfvo#AlignmentOperation') , RDF::URI.new('http://www.biointerchange.org/gfvo#MaternalChromosome') => RDF::URI.new('http://www.biointerchange.org/gfvo#Chromosome') , RDF::URI.new('http://www.biointerchange.org/gfvo#Method') => RDF::URI.new('http://www.biointerchange.org/gfvo#Annotation') , RDF::URI.new('http://www.biointerchange.org/gfvo#PairedEndReadPlatform') => RDF::URI.new('http://www.biointerchange.org/gfvo#TechnologyPlatform') , RDF::URI.new('http://www.biointerchange.org/gfvo#PaternalChromosome') => RDF::URI.new('http://www.biointerchange.org/gfvo#Chromosome') , RDF::URI.new('http://www.biointerchange.org/gfvo#PhenotypeDescription') => RDF::URI.new('http://www.biointerchange.org/gfvo#Annotation') , RDF::URI.new('http://www.biointerchange.org/gfvo#PrenatalFeature') => RDF::URI.new('http://www.biointerchange.org/gfvo#Feature') , RDF::URI.new('http://www.biointerchange.org/gfvo#RNASequence') => RDF::URI.new('http://www.biointerchange.org/gfvo#DataSource') , RDF::URI.new('http://www.biointerchange.org/gfvo#Reference') => RDF::URI.new('http://www.biointerchange.org/gfvo#SequenceAnnotation') , RDF::URI.new('http://www.biointerchange.org/gfvo#ReferenceSequenceGap') => RDF::URI.new('http://www.biointerchange.org/gfvo#AlignmentOperation') , RDF::URI.new('http://www.biointerchange.org/gfvo#ReverseReferenceSequenceFrameshift') => RDF::URI.new('http://www.biointerchange.org/gfvo#AlignmentOperation') , RDF::URI.new('http://www.biointerchange.org/gfvo#SequenceAnnotation') => RDF::URI.new('http://www.biointerchange.org/gfvo#Annotation') , RDF::URI.new('http://www.biointerchange.org/gfvo#SequencedFemale') => RDF::URI.new('http://www.biointerchange.org/gfvo#SequencedIndividual') , RDF::URI.new('http://www.biointerchange.org/gfvo#SequencedHermaphrodite') => RDF::URI.new('http://www.biointerchange.org/gfvo#SequencedIndividual') , RDF::URI.new('http://www.biointerchange.org/gfvo#SequencedIndividual') => RDF::URI.new('http://www.biointerchange.org/gfvo#Annotation') , RDF::URI.new('http://www.biointerchange.org/gfvo#SequencedMale') => RDF::URI.new('http://www.biointerchange.org/gfvo#SequencedIndividual') , RDF::URI.new('http://www.biointerchange.org/gfvo#SomaticFeature') => RDF::URI.new('http://www.biointerchange.org/gfvo#Feature') , RDF::URI.new('http://www.biointerchange.org/gfvo#StructuredAttribute') => RDF::URI.new('http://www.biointerchange.org/gfvo#Attribute') , RDF::URI.new('http://www.biointerchange.org/gfvo#TargetSequenceGap') => RDF::URI.new('http://www.biointerchange.org/gfvo#AlignmentOperation') , RDF::URI.new('http://www.biointerchange.org/gfvo#TechnologyPlatform') => RDF::URI.new('http://www.biointerchange.org/gfvo#Annotation') }
1204
+ @@parent_properties = { RDF::URI.new('http://www.biointerchange.org/gfvo#hasAnnotation') => RDF::URI.new('http://www.biointerchange.org/gfvo#hasAttribute') , RDF::URI.new('http://www.biointerchange.org/gfvo#hasEvidence') => RDF::URI.new('http://www.biointerchange.org/gfvo#references') , RDF::URI.new('http://www.biointerchange.org/gfvo#hasFirstPart') => RDF::URI.new('http://www.biointerchange.org/gfvo#hasOrderedPart') , RDF::URI.new('http://www.biointerchange.org/gfvo#hasIdentifier') => RDF::URI.new('http://www.biointerchange.org/gfvo#hasAttribute') , RDF::URI.new('http://www.biointerchange.org/gfvo#hasInput') => RDF::URI.new('http://www.biointerchange.org/gfvo#isSpatiotemporallyRelatedTo') , RDF::URI.new('http://www.biointerchange.org/gfvo#hasLastPart') => RDF::URI.new('http://www.biointerchange.org/gfvo#hasOrderedPart') , RDF::URI.new('http://www.biointerchange.org/gfvo#hasMember') => RDF::URI.new('http://www.biointerchange.org/gfvo#hasAttribute') , RDF::URI.new('http://www.biointerchange.org/gfvo#hasOrderedPart') => RDF::URI.new('http://www.biointerchange.org/gfvo#hasPart') , RDF::URI.new('http://www.biointerchange.org/gfvo#hasOutput') => RDF::URI.new('http://www.biointerchange.org/gfvo#isSpatiotemporallyRelatedTo') , RDF::URI.new('http://www.biointerchange.org/gfvo#hasPart') => RDF::URI.new('http://www.biointerchange.org/gfvo#isSpatiotemporallyRelatedTo') , RDF::URI.new('http://www.biointerchange.org/gfvo#hasParticipant') => RDF::URI.new('http://www.biointerchange.org/gfvo#isSpatiotemporallyRelatedTo') , RDF::URI.new('http://www.biointerchange.org/gfvo#hasQuality') => RDF::URI.new('http://www.biointerchange.org/gfvo#hasAttribute') , RDF::URI.new('http://www.biointerchange.org/gfvo#hasSource') => RDF::URI.new('http://www.biointerchange.org/gfvo#hasAttribute') , RDF::URI.new('http://www.biointerchange.org/gfvo#isAbout') => RDF::URI.new('http://www.biointerchange.org/gfvo#describes') , RDF::URI.new('http://www.biointerchange.org/gfvo#isAffectedBy') => RDF::URI.new('http://www.biointerchange.org/gfvo#isParticipantIn') , RDF::URI.new('http://www.biointerchange.org/gfvo#isLocatedOn') => RDF::URI.new('http://www.biointerchange.org/gfvo#isSpatiotemporallyRelatedTo') , RDF::URI.new('http://www.biointerchange.org/gfvo#isPartOf') => RDF::URI.new('http://www.biointerchange.org/gfvo#isLocatedOn') , RDF::URI.new('http://www.biointerchange.org/gfvo#isParticipantIn') => RDF::URI.new('http://www.biointerchange.org/gfvo#isSpatiotemporallyRelatedTo') , RDF::URI.new('http://www.biointerchange.org/gfvo#isRefutedBy') => RDF::URI.new('http://www.biointerchange.org/gfvo#hasEvidence') , RDF::URI.new('http://www.biointerchange.org/gfvo#isSourceOf') => RDF::URI.new('http://www.biointerchange.org/gfvo#isAttributeOf') , RDF::URI.new('http://www.biointerchange.org/gfvo#isSupportedBy') => RDF::URI.new('http://www.biointerchange.org/gfvo#hasEvidence') , RDF::URI.new('http://www.biointerchange.org/gfvo#isTemporarilyPartOf') => RDF::URI.new('http://www.biointerchange.org/gfvo#isPartOf') , RDF::URI.new('http://www.biointerchange.org/gfvo#references') => RDF::URI.new('http://www.biointerchange.org/gfvo#refersTo') , RDF::URI.new('http://www.biointerchange.org/gfvo#Alias') => RDF::URI.new('http://www.biointerchange.org/gfvo#Name') , RDF::URI.new('http://www.biointerchange.org/gfvo#AncestralSequence') => RDF::URI.new('http://www.biointerchange.org/gfvo#ReferenceSequence') , RDF::URI.new('http://www.biointerchange.org/gfvo#ArrayComparativeGenomicHybridization') => RDF::URI.new('http://www.biointerchange.org/gfvo#GenomicAscertainingMethod') , RDF::URI.new('http://www.biointerchange.org/gfvo#AverageCoverage') => RDF::URI.new('http://www.biointerchange.org/gfvo#Coverage') , RDF::URI.new('http://www.biointerchange.org/gfvo#BiologicalEntity') => RDF::URI.new('http://www.biointerchange.org/gfvo#MaterialEntity') , RDF::URI.new('http://www.biointerchange.org/gfvo#BiopolymerSequencing') => RDF::URI.new('http://www.biointerchange.org/gfvo#GenomicAscertainingMethod') , RDF::URI.new('http://www.biointerchange.org/gfvo#Breakpoint') => RDF::URI.new('http://www.biointerchange.org/gfvo#Locus') , RDF::URI.new('http://www.biointerchange.org/gfvo#Catalog') => RDF::URI.new('http://www.biointerchange.org/gfvo#Collection') , RDF::URI.new('http://www.biointerchange.org/gfvo#Cell') => RDF::URI.new('http://www.biointerchange.org/gfvo#BiologicalEntity') , RDF::URI.new('http://www.biointerchange.org/gfvo#ChemicalEntity') => RDF::URI.new('http://www.biointerchange.org/gfvo#MaterialEntity') , RDF::URI.new('http://www.biointerchange.org/gfvo#Chromosome') => RDF::URI.new('http://www.biointerchange.org/gfvo#ChemicalEntity') , RDF::URI.new('http://www.biointerchange.org/gfvo#CircularHelix') => RDF::URI.new('http://www.biointerchange.org/gfvo#HelixStructure') , RDF::URI.new('http://www.biointerchange.org/gfvo#Collection') => RDF::URI.new('http://www.biointerchange.org/gfvo#InformationContentEntity') , RDF::URI.new('http://www.biointerchange.org/gfvo#Comment') => RDF::URI.new('http://www.biointerchange.org/gfvo#InformationContentEntity') , RDF::URI.new('http://www.biointerchange.org/gfvo#Contig') => RDF::URI.new('http://www.biointerchange.org/gfvo#Catalog') , RDF::URI.new('http://www.biointerchange.org/gfvo#DNAMicroarray') => RDF::URI.new('http://www.biointerchange.org/gfvo#GenomicAscertainingMethod') , RDF::URI.new('http://www.biointerchange.org/gfvo#DNASequencing') => RDF::URI.new('http://www.biointerchange.org/gfvo#BiopolymerSequencing') , RDF::URI.new('http://www.biointerchange.org/gfvo#ExperimentalMethod') => RDF::URI.new('http://www.biointerchange.org/gfvo#Process') , RDF::URI.new('http://www.biointerchange.org/gfvo#ExternalReference') => RDF::URI.new('http://www.biointerchange.org/gfvo#InformationContentEntity') , RDF::URI.new('http://www.biointerchange.org/gfvo#Feature') => RDF::URI.new('http://www.biointerchange.org/gfvo#InformationContentEntity') , RDF::URI.new('http://www.biointerchange.org/gfvo#Female') => RDF::URI.new('http://www.biointerchange.org/gfvo#Sex') , RDF::URI.new('http://www.biointerchange.org/gfvo#File') => RDF::URI.new('http://www.biointerchange.org/gfvo#Collection') , RDF::URI.new('http://www.biointerchange.org/gfvo#ForwardReferenceSequenceFrameshift') => RDF::URI.new('http://www.biointerchange.org/gfvo#SequenceAlignmentOperation') , RDF::URI.new('http://www.biointerchange.org/gfvo#FragmentReadPlatform') => RDF::URI.new('http://www.biointerchange.org/gfvo#SequencingTechnologyPlatform') , RDF::URI.new('http://www.biointerchange.org/gfvo#FunctionalSpecification') => RDF::URI.new('http://www.biointerchange.org/gfvo#InformationContentEntity') , RDF::URI.new('http://www.biointerchange.org/gfvo#GameticPhase') => RDF::URI.new('http://www.biointerchange.org/gfvo#Quality') , RDF::URI.new('http://www.biointerchange.org/gfvo#Genome') => RDF::URI.new('http://www.biointerchange.org/gfvo#MaterialEntity') , RDF::URI.new('http://www.biointerchange.org/gfvo#GenomeAnalysis') => RDF::URI.new('http://www.biointerchange.org/gfvo#ExperimentalMethod') , RDF::URI.new('http://www.biointerchange.org/gfvo#GenomicAscertainingMethod') => RDF::URI.new('http://www.biointerchange.org/gfvo#ExperimentalMethod') , RDF::URI.new('http://www.biointerchange.org/gfvo#Genotype') => RDF::URI.new('http://www.biointerchange.org/gfvo#FunctionalSpecification') , RDF::URI.new('http://www.biointerchange.org/gfvo#Genotyping') => RDF::URI.new('http://www.biointerchange.org/gfvo#GenomeAnalysis') , RDF::URI.new('http://www.biointerchange.org/gfvo#GermlineCell') => RDF::URI.new('http://www.biointerchange.org/gfvo#Cell') , RDF::URI.new('http://www.biointerchange.org/gfvo#HelixStructure') => RDF::URI.new('http://www.biointerchange.org/gfvo#Quality') , RDF::URI.new('http://www.biointerchange.org/gfvo#Hemizygous') => RDF::URI.new('http://www.biointerchange.org/gfvo#Zygosity') , RDF::URI.new('http://www.biointerchange.org/gfvo#Heritage') => RDF::URI.new('http://www.biointerchange.org/gfvo#Quality') , RDF::URI.new('http://www.biointerchange.org/gfvo#Hermaphrodite') => RDF::URI.new('http://www.biointerchange.org/gfvo#Sex') , RDF::URI.new('http://www.biointerchange.org/gfvo#Heterozygous') => RDF::URI.new('http://www.biointerchange.org/gfvo#Zygosity') , RDF::URI.new('http://www.biointerchange.org/gfvo#Homozygous') => RDF::URI.new('http://www.biointerchange.org/gfvo#Zygosity') , RDF::URI.new('http://www.biointerchange.org/gfvo#Identifier') => RDF::URI.new('http://www.biointerchange.org/gfvo#Label') , RDF::URI.new('http://www.biointerchange.org/gfvo#InformationContentEntity') => RDF::URI.new('http://www.biointerchange.org/gfvo#Object') , RDF::URI.new('http://www.biointerchange.org/gfvo#Interaction') => RDF::URI.new('http://www.biointerchange.org/gfvo#Process') , RDF::URI.new('http://www.biointerchange.org/gfvo#Label') => RDF::URI.new('http://www.biointerchange.org/gfvo#InformationContentEntity') , RDF::URI.new('http://www.biointerchange.org/gfvo#Landmark') => RDF::URI.new('http://www.biointerchange.org/gfvo#Identifier') , RDF::URI.new('http://www.biointerchange.org/gfvo#Likelihood') => RDF::URI.new('http://www.biointerchange.org/gfvo#Quantity') , RDF::URI.new('http://www.biointerchange.org/gfvo#Locus') => RDF::URI.new('http://www.biointerchange.org/gfvo#InformationContentEntity') , RDF::URI.new('http://www.biointerchange.org/gfvo#Male') => RDF::URI.new('http://www.biointerchange.org/gfvo#Sex') , RDF::URI.new('http://www.biointerchange.org/gfvo#Match') => RDF::URI.new('http://www.biointerchange.org/gfvo#SequenceAlignmentOperation') , RDF::URI.new('http://www.biointerchange.org/gfvo#MaterialEntity') => RDF::URI.new('http://www.biointerchange.org/gfvo#Object') , RDF::URI.new('http://www.biointerchange.org/gfvo#MaternalHeritage') => RDF::URI.new('http://www.biointerchange.org/gfvo#Heritage') , RDF::URI.new('http://www.biointerchange.org/gfvo#MobileElementSequenceVariant') => RDF::URI.new('http://www.biointerchange.org/gfvo#SequenceVariant') , RDF::URI.new('http://www.biointerchange.org/gfvo#Name') => RDF::URI.new('http://www.biointerchange.org/gfvo#Label') , RDF::URI.new('http://www.biointerchange.org/gfvo#Note') => RDF::URI.new('http://www.biointerchange.org/gfvo#InformationContentEntity') , RDF::URI.new('http://www.biointerchange.org/gfvo#PairedEndReadPlatform') => RDF::URI.new('http://www.biointerchange.org/gfvo#SequencingTechnologyPlatform') , RDF::URI.new('http://www.biointerchange.org/gfvo#PaternalHeritage') => RDF::URI.new('http://www.biointerchange.org/gfvo#Heritage') , RDF::URI.new('http://www.biointerchange.org/gfvo#Phenotype') => RDF::URI.new('http://www.biointerchange.org/gfvo#Quality') , RDF::URI.new('http://www.biointerchange.org/gfvo#PrenatalCell') => RDF::URI.new('http://www.biointerchange.org/gfvo#Cell') , RDF::URI.new('http://www.biointerchange.org/gfvo#ProteinSequence') => RDF::URI.new('http://www.biointerchange.org/gfvo#PeptideSequence') , RDF::URI.new('http://www.biointerchange.org/gfvo#Quality') => RDF::URI.new('http://www.biointerchange.org/gfvo#Attribute') , RDF::URI.new('http://www.biointerchange.org/gfvo#Quantity') => RDF::URI.new('http://www.biointerchange.org/gfvo#Object') , RDF::URI.new('http://www.biointerchange.org/gfvo#RNASequencing') => RDF::URI.new('http://www.biointerchange.org/gfvo#BiopolymerSequencing') , RDF::URI.new('http://www.biointerchange.org/gfvo#ReferenceSequence') => RDF::URI.new('http://www.biointerchange.org/gfvo#DNASequence') , RDF::URI.new('http://www.biointerchange.org/gfvo#ReferenceSequenceGap') => RDF::URI.new('http://www.biointerchange.org/gfvo#SequenceAlignmentOperation') , RDF::URI.new('http://www.biointerchange.org/gfvo#ReverseReferenceSequenceFrameshift') => RDF::URI.new('http://www.biointerchange.org/gfvo#SequenceAlignmentOperation') , RDF::URI.new('http://www.biointerchange.org/gfvo#Sample') => RDF::URI.new('http://www.biointerchange.org/gfvo#ChemicalEntity') , RDF::URI.new('http://www.biointerchange.org/gfvo#Scaffold') => RDF::URI.new('http://www.biointerchange.org/gfvo#Catalog') , RDF::URI.new('http://www.biointerchange.org/gfvo#SequenceVariant') => RDF::URI.new('http://www.biointerchange.org/gfvo#DNASequence') , RDF::URI.new('http://www.biointerchange.org/gfvo#SequencedIndividual') => RDF::URI.new('http://www.biointerchange.org/gfvo#BiologicalEntity') , RDF::URI.new('http://www.biointerchange.org/gfvo#SequencingTechnologyPlatform') => RDF::URI.new('http://www.biointerchange.org/gfvo#GenomicAscertainingMethod') , RDF::URI.new('http://www.biointerchange.org/gfvo#Sex') => RDF::URI.new('http://www.biointerchange.org/gfvo#Quality') , RDF::URI.new('http://www.biointerchange.org/gfvo#SomaticCell') => RDF::URI.new('http://www.biointerchange.org/gfvo#Cell') , RDF::URI.new('http://www.biointerchange.org/gfvo#TargetSequenceGap') => RDF::URI.new('http://www.biointerchange.org/gfvo#SequenceAlignmentOperation') , RDF::URI.new('http://www.biointerchange.org/gfvo#TotalNumberOfReads') => RDF::URI.new('http://www.biointerchange.org/gfvo#NumberOfReads') , RDF::URI.new('http://www.biointerchange.org/gfvo#VariantCalling') => RDF::URI.new('http://www.biointerchange.org/gfvo#GenomeAnalysis') , RDF::URI.new('http://www.biointerchange.org/gfvo#Version') => RDF::URI.new('http://www.biointerchange.org/gfvo#Identifier') , RDF::URI.new('http://www.biointerchange.org/gfvo#WatsonCrickHelix') => RDF::URI.new('http://www.biointerchange.org/gfvo#HelixStructure') , RDF::URI.new('http://www.biointerchange.org/gfvo#Zygosity') => RDF::URI.new('http://www.biointerchange.org/gfvo#Quality') }
1069
1205
 
1070
1206
  end
1071
1207