biointerchange 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (57) hide show
  1. data/.document +5 -0
  2. data/.rspec +1 -0
  3. data/.travis.yml +12 -0
  4. data/Gemfile +17 -0
  5. data/LICENSE.txt +8 -0
  6. data/README.md +166 -0
  7. data/Rakefile +50 -0
  8. data/VERSION +1 -0
  9. data/bin/biointerchange +6 -0
  10. data/docs/exceptions_readme.txt +13 -0
  11. data/examples/BovineGenomeChrX.gff3.gz +0 -0
  12. data/examples/gb-2007-8-3-R40.xml +243 -0
  13. data/examples/pubannotation.json +1 -0
  14. data/generators/rdfxml.rb +104 -0
  15. data/lib/biointerchange/core.rb +195 -0
  16. data/lib/biointerchange/exceptions.rb +38 -0
  17. data/lib/biointerchange/genomics/gff3_feature.rb +82 -0
  18. data/lib/biointerchange/genomics/gff3_feature_set.rb +37 -0
  19. data/lib/biointerchange/genomics/gff3_rdf_ntriples.rb +107 -0
  20. data/lib/biointerchange/genomics/gff3_reader.rb +86 -0
  21. data/lib/biointerchange/gff3.rb +135 -0
  22. data/lib/biointerchange/reader.rb +25 -0
  23. data/lib/biointerchange/registry.rb +29 -0
  24. data/lib/biointerchange/sio.rb +7124 -0
  25. data/lib/biointerchange/sofa.rb +1566 -0
  26. data/lib/biointerchange/textmining/content.rb +69 -0
  27. data/lib/biointerchange/textmining/document.rb +36 -0
  28. data/lib/biointerchange/textmining/pdfx_xml_reader.rb +161 -0
  29. data/lib/biointerchange/textmining/process.rb +57 -0
  30. data/lib/biointerchange/textmining/pubannos_json_reader.rb +72 -0
  31. data/lib/biointerchange/textmining/text_mining_rdf_ntriples.rb +197 -0
  32. data/lib/biointerchange/textmining/text_mining_reader.rb +41 -0
  33. data/lib/biointerchange/writer.rb +23 -0
  34. data/lib/biointerchange.rb +3 -0
  35. data/spec/exceptions_spec.rb +27 -0
  36. data/spec/gff3_rdfwriter_spec.rb +67 -0
  37. data/spec/text_mining_pdfx_xml_reader_spec.rb +89 -0
  38. data/spec/text_mining_pubannos_json_reader_spec.rb +71 -0
  39. data/spec/text_mining_rdfwriter_spec.rb +57 -0
  40. data/web/about.html +89 -0
  41. data/web/biointerchange.js +133 -0
  42. data/web/bootstrap/css/bootstrap-responsive.css +1040 -0
  43. data/web/bootstrap/css/bootstrap-responsive.min.css +9 -0
  44. data/web/bootstrap/css/bootstrap.css +5624 -0
  45. data/web/bootstrap/css/bootstrap.min.css +9 -0
  46. data/web/bootstrap/img/glyphicons-halflings-white.png +0 -0
  47. data/web/bootstrap/img/glyphicons-halflings.png +0 -0
  48. data/web/bootstrap/js/bootstrap.js +2027 -0
  49. data/web/bootstrap/js/bootstrap.min.js +6 -0
  50. data/web/bootstrap/js/jquery-1.8.1.min.js +2 -0
  51. data/web/css/rdoc-style.css +5786 -0
  52. data/web/css/rdoc.css +716 -0
  53. data/web/images/BioInterchange300.png +0 -0
  54. data/web/index.html +109 -0
  55. data/web/service/rdfizer.fcgi +68 -0
  56. data/web/webservices.html +123 -0
  57. metadata +240 -0
@@ -0,0 +1,1566 @@
1
+ module BioInterchange
2
+
3
+ class SOFA
4
+
5
+ def self.adjacent_to
6
+ RDF::URI.new('http://purl.obolibrary.org/obo/http_//purl.org/obo/owl:adjacent_to')
7
+ end
8
+
9
+ def self.has_integral_part
10
+ RDF::URI.new('http://purl.obolibrary.org/obo/http_//purl.org/obo/owl:has_integral_part')
11
+ end
12
+
13
+ def self.has_part
14
+ RDF::URI.new('http://purl.obolibrary.org/obo/http_//purl.org/obo/owl:has_part')
15
+ end
16
+
17
+ def self.integral_part_of
18
+ RDF::URI.new('http://purl.obolibrary.org/obo/http_//purl.org/obo/owl:integral_part_of')
19
+ end
20
+
21
+ def self.non_functional_homolog_of
22
+ RDF::URI.new('http://purl.obolibrary.org/obo/http_//purl.org/obo/owl:non_functional_homolog_of')
23
+ end
24
+
25
+ def self.partial_evidence_for_feature
26
+ RDF::URI.new('http://purl.obolibrary.org/obo/http_//purl.org/obo/owl:partial_evidence_for_feature')
27
+ end
28
+
29
+ def self.Sequence_Ontology
30
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000000')
31
+ end
32
+
33
+ # A sequence_feature with an extent greater than zero. A nucleotide region is composed of bases and a polypeptide region is composed of amino acids. (SO:ke)
34
+ def self.region
35
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000001')
36
+ end
37
+
38
+ def self.interior_coding_exon
39
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000004')
40
+ end
41
+
42
+ # The many tandem repeats (identical or related) of a short basic repeating unit; many have a base composition or other property different from the genome average that allows them to be separated from the bulk (main band) genomic DNA. (http://www.ebi.ac.uk/embl/Documentation/FT_definitions/feature_table.html)
43
+ def self.satellite_DNA
44
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000005')
45
+ end
46
+
47
+ # A region amplified by a PCR reaction. (SO:ke)
48
+ def self.PCR_product
49
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000006')
50
+ end
51
+
52
+ # One of a pair of sequencing reads in which the two members of the pair are related by originating at either end of a clone insert. (SO:ls)
53
+ def self.read_pair
54
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000007')
55
+ end
56
+
57
+ # A small non coding RNA sequence, present in the cytoplasm. (SO:ke)
58
+ def self.scRNA
59
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000013')
60
+ end
61
+
62
+ # A collection of match parts. (SO:ke)
63
+ def self.match_set
64
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000038')
65
+ end
66
+
67
+ # A part of a match, for example an hsp from blast is a match_part. (SO:ke)
68
+ def self.match_part
69
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000039')
70
+ end
71
+
72
+ # A part of a gene, that has no other route in the ontology back to region. This concept is necessary for logical inference as these parts must have the properties of region. It also allows us to associate all the parts of genes with a gene. (SO:ke)
73
+ def self.gene_part
74
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000050')
75
+ end
76
+
77
+ # A regulatory element of an operon to which activators or repressors bind thereby effecting translation of genes in that operon. (SO:ma)
78
+ def self.operator
79
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000057')
80
+ end
81
+
82
+ # A binding site that, of a nucleotide molecule, that interacts selectively and non-covalently with polypeptide residues of a nuclease. (SO:cb)
83
+ def self.nuclease_binding_site
84
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000059')
85
+ end
86
+
87
+ # A transposon or insertion sequence. An element that can insert in a variety of DNA sequences. (http://www.sci.sdsu.edu/~smaloy/Glossary/T.html)
88
+ def self.transposable_element
89
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000101')
90
+ end
91
+
92
+ # A match to an EST or cDNA sequence. (SO:ke)
93
+ def self.expressed_sequence_match
94
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000102')
95
+ end
96
+
97
+ # The end of the clone insert. (SO:ke)
98
+ def self.clone_insert_end
99
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000103')
100
+ end
101
+
102
+ # A sequence of amino acids linked by peptide bonds which may lack appreciable tertiary structure and may not be liable to irreversible denaturation. (SO:ma)
103
+ def self.polypeptide
104
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000104')
105
+ end
106
+
107
+ # A sequence_variant is a non exact copy of a sequence_feature or genome exhibiting one or more sequence_alteration. (SO:ke)
108
+ def self.sequence_variant_obs
109
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000109')
110
+ end
111
+
112
+ # An extent of biological sequence. (SO:ke)
113
+ def self.sequence_feature
114
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000110')
115
+ end
116
+
117
+ # An oligo to which new deoxyribonucleotides can be added by DNA polymerase. (SO:ke)
118
+ def self.primer
119
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000112')
120
+ end
121
+
122
+ # A viral sequence which has integrated into a host genome. (SO:ke)
123
+ def self.proviral_region
124
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000113')
125
+ end
126
+
127
+ # A methylated deoxy-cytosine. (SO:ke)
128
+ def self.methylated_C
129
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000114')
130
+ end
131
+
132
+ # A primary transcript that, at least in part, encodes one or more proteins. (SO:ke)
133
+ def self.protein_coding_primary_transcript
134
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000120')
135
+ end
136
+
137
+ # Region in mRNA where ribosome assembles. (SO:ke)
138
+ def self.ribosome_entry_site
139
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000139')
140
+ end
141
+
142
+ # A sequence segment located within the five prime end of an mRNA that causes premature termination of translation. (SO:as)
143
+ def self.attenuator
144
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000140')
145
+ end
146
+
147
+ # The sequence of DNA located either at the end of the transcript that causes RNA polymerase to terminate transcription. (http://www.ebi.ac.uk/embl/Documentation/FT_definitions/feature_table.html)
148
+ def self.terminator
149
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000141')
150
+ end
151
+
152
+ # A region of known length which may be used to manufacture a longer region. (SO:ke)
153
+ def self.assembly_component
154
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000143')
155
+ end
156
+
157
+ # A region of the transcript sequence within a gene which is not removed from the primary RNA transcript by RNA splicing. (SO:ke)
158
+ def self.exon
159
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000147')
160
+ end
161
+
162
+ # One or more contigs that have been ordered and oriented using end-read information. Contains gaps that are filled with N's. (SO:ls)
163
+ def self.supercontig
164
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000148')
165
+ end
166
+
167
+ # A contiguous sequence derived from sequence assembly. Has no gaps, but may contain N's from unavailable bases. (SO:ls)
168
+ def self.contig
169
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000149')
170
+ end
171
+
172
+ # A sequence obtained from a single sequencing experiment. Typically a read is produced when a base calling program interprets information from a chromatogram trace file produced from a sequencing machine. (SO:rd)
173
+ def self.read
174
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000150')
175
+ end
176
+
177
+ # A piece of DNA that has been inserted in a vector so that it can be propagated in a host bacterium or some other organism. (SO:ke)
178
+ def self.clone
179
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000151')
180
+ end
181
+
182
+ # The point at which one or more contiguous nucleotides were excised. (SO:ke)
183
+ def self.deletion
184
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000159')
185
+ end
186
+
187
+ # A modified RNA base in which adenine has been methylated. (SO:ke)
188
+ def self.methylated_A
189
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000161')
190
+ end
191
+
192
+ # Consensus region of primary transcript bordering junction of splicing. A region that overlaps exactly 2 base and adjacent_to splice_junction. (SO:cjm, SO:ke)
193
+ def self.splice_site
194
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000162')
195
+ end
196
+
197
+ # Intronic 2 bp region bordering the exon, at the 5' edge of the intron. A splice_site that is downstream_adjacent_to exon and starts intron. (http://www.ucl.ac.uk/~ucbhjow/b241/glossary.html, SO:cjm, SO:ke)
198
+ def self.five_prime_cis_splice_site
199
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000163')
200
+ end
201
+
202
+ # Intronic 2 bp region bordering the exon, at the 3' edge of the intron. A splice_site that is upstream_adjacent_to exon and finishes intron. (http://www.ucl.ac.uk/~ucbhjow/b241/glossary.html, SO:cjm, SO:ke)
203
+ def self.three_prime_cis_splice_site
204
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000164')
205
+ end
206
+
207
+ # A cis-acting sequence that increases the utilization of (some) eukaryotic promoters, and can function in either orientation and in any location (upstream or downstream) relative to the promoter. (http://www.ebi.ac.uk/embl/Documentation/FT_definitions/feature_table.html)
208
+ def self.enhancer
209
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000165')
210
+ end
211
+
212
+ # A regulatory_region composed of the TSS(s) and binding sites for TF_complexes of the basal transcription machinery. (SO:regcreative)
213
+ def self.promoter
214
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000167')
215
+ end
216
+
217
+ # A nucleotide match against a sequence from another organism. (SO:ma)
218
+ def self.cross_genome_match
219
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000177')
220
+ end
221
+
222
+ # A group of contiguous genes transcribed as a single (polycistronic) mRNA from a single regulatory region. (SO:ma)
223
+ def self.operon
224
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000178')
225
+ end
226
+
227
+ # The start of the clone insert. (SO:ke)
228
+ def self.clone_insert_start
229
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000179')
230
+ end
231
+
232
+ # A match against a translated sequence. (SO:ke)
233
+ def self.translated_nucleotide_match
234
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000181')
235
+ end
236
+
237
+ # A region of the gene which is not transcribed. (SO:ke)
238
+ def self.non_transcribed_region
239
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000183')
240
+ end
241
+
242
+ # A transcript that in its initial state requires modification to be functional. (SO:ma)
243
+ def self.primary_transcript
244
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000185')
245
+ end
246
+
247
+ # A group of characterized repeat sequences. (SO:ke)
248
+ def self.repeat_family
249
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000187')
250
+ end
251
+
252
+ # A region of a primary transcript that is transcribed, but removed from within the transcript by splicing together the sequences (exons) on either side of it. (http://www.ebi.ac.uk/embl/Documentation/FT_definitions/feature_table.html)
253
+ def self.intron
254
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000188')
255
+ end
256
+
257
+ # A DNA fragment used as a reagent to detect the polymorphic genomic loci by hybridizing against the genomic DNA digested with a given restriction enzyme. (GOC:pj)
258
+ def self.RFLP_fragment
259
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000193')
260
+ end
261
+
262
+ # An exon whereby at least one base is part of a codon (here, 'codon' is inclusive of the stop_codon). (SO:ke)
263
+ def self.coding_exon
264
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000195')
265
+ end
266
+
267
+ # The sequence of the five_prime_coding_exon that codes for protein. (SO:cjm)
268
+ def self.five_prime_coding_exon_coding_region
269
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000196')
270
+ end
271
+
272
+ # The sequence of the three_prime_coding_exon that codes for protein. (SO:cjm)
273
+ def self.three_prime_coding_exon_coding_region
274
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000197')
275
+ end
276
+
277
+ # An exon that does not contain any codons. (SO:ke)
278
+ def self.noncoding_exon
279
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000198')
280
+ end
281
+
282
+ # The 5' most coding exon. (SO:ke)
283
+ def self.five_prime_coding_exon
284
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000200')
285
+ end
286
+
287
+ # Messenger RNA sequences that are untranslated and lie five prime or three prime to sequences which are translated. (SO:ke)
288
+ def self.UTR
289
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000203')
290
+ end
291
+
292
+ # A region at the 5' end of a mature transcript (preceding the initiation codon) that is not translated into a protein. (http://www.ebi.ac.uk/embl/Documentation/FT_definitions/feature_table.html)
293
+ def self.five_prime_UTR
294
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000204')
295
+ end
296
+
297
+ # A region at the 3' end of a mature transcript (following the stop codon) that is not translated into a protein. (http://www.ebi.ac.uk/embl/Documentation/FT_definitions/feature_table.html)
298
+ def self.three_prime_UTR
299
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000205')
300
+ end
301
+
302
+ # A primary transcript encoding a ribosomal RNA. (SO:ke)
303
+ def self.rRNA_primary_transcript
304
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000209')
305
+ end
306
+
307
+ # A transcript which has undergone the necessary modifications, if any, for its function. In eukaryotes this includes, for example, processing of introns, cleavage, base modification, and modifications to the 5' and/or the 3' ends, other than addition of bases. In bacteria functional mRNAs are usually not modified. (SO:ke)
308
+ def self.mature_transcript
309
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000233')
310
+ end
311
+
312
+ # Messenger RNA is the intermediate molecule between DNA and protein. It includes UTR and coding sequences. It does not contain introns. (SO:ma)
313
+ def self.mRNA
314
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000234')
315
+ end
316
+
317
+ # A region of a nucleotide molecule that binds a Transcription Factor or Transcription Factor complex [GO:0005667]. (SO:ke)
318
+ def self.TF_binding_site
319
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000235')
320
+ end
321
+
322
+ # The in-frame interval between the stop codons of a reading frame which when read as sequential triplets, has the potential of encoding a sequential string of amino acids. TER(NNN)nTER. (SGD:rb, SO:ma)
323
+ def self.ORF
324
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000236')
325
+ end
326
+
327
+ # The sequences extending on either side of a specific region. (SO:ke)
328
+ def self.flanking_region
329
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000239')
330
+ end
331
+
332
+ # RNA that comprises part of a ribosome, and that can provide both structural scaffolding and catalytic activity. (http://www.ebi.ac.uk/embl/Documentation/FT_definitions/feature_table.html, ISBN:0198506732)
333
+ def self.rRNA
334
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000252')
335
+ end
336
+
337
+ # Transfer RNA (tRNA) molecules are approximately 80 nucleotides in length. Their secondary structure includes four short double-helical elements and three loops (D, anti-codon, and T loops). Further hydrogen bonds mediate the characteristic L-shaped molecular structure. Transfer RNAs have two regions of fundamental functional importance: the anti-codon, which is responsible for specific mRNA codon recognition, and the 3' end, to which the tRNA's corresponding amino acid is attached (by aminoacyl-tRNA synthetases). Transfer RNAs cope with the degeneracy of the genetic code in two manners: having more than one tRNA (with a specific anti-codon) for a particular amino acid; and 'wobble' base-pairing, i.e. permitting non-standard base-pairing at the 3rd anti-codon position. (http://www.sanger.ac.uk/cgi-bin/Rfam/getacc?RF00005, ISBN:0198506732)
338
+ def self.tRNA
339
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000253')
340
+ end
341
+
342
+ # A small nuclear RNA molecule involved in pre-mRNA splicing and processing. (http://www.ebi.ac.uk/embl/Documentation/FT_definitions/feature_table.html, PMID:11733745, WB:ems)
343
+ def self.snRNA
344
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000274')
345
+ end
346
+
347
+ # A snoRNA (small nucleolar RNA) is any one of a class of small RNAs that are associated with the eukaryotic nucleus as components of small nucleolar ribonucleoproteins. They participate in the processing or modifications of many RNAs, mostly ribosomal RNAs (rRNAs) though snoRNAs are also known to target other classes of RNA, including spliceosomal RNAs, tRNAs, and mRNAs via a stretch of sequence that is complementary to a sequence in the targeted RNA. (GOC:kgc)
348
+ def self.snoRNA
349
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000275')
350
+ end
351
+
352
+ # Small, ~22-nt, RNA molecule that is the endogenous transcript of a miRNA gene. Micro RNAs are produced from precursor molecules (SO:0000647) that can form local hairpin structures, which ordinarily are processed (via the Dicer pathway) such that a single miRNA molecule accumulates from one arm of a hairpin precursor molecule. Micro RNAs may trigger the cleavage of their target molecules or act as translational repressors. (PMID:12592000)
353
+ def self.miRNA
354
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000276')
355
+ end
356
+
357
+ # A repeat_region containing repeat_units (2 to 4 bp) that is repeated multiple times in tandem. (http://www.informatics.jax.org/silver/glossary.shtml)
358
+ def self.microsatellite
359
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000289')
360
+ end
361
+
362
+ # The sequence is complementarily repeated on the opposite strand. It is a palindrome, and it may, or may not be hyphenated. Examples: GCTGATCAGC, or GCTGA-----TCAGC. (SO:ke)
363
+ def self.inverted_repeat
364
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000294')
365
+ end
366
+
367
+ # The origin of replication; starting site for duplication of a nucleic acid molecule to give two identical copies. (http://www.ebi.ac.uk/embl/Documentation/FT_definitions/feature_table.html)
368
+ def self.origin_of_replication
369
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000296')
370
+ end
371
+
372
+ # Part of the primary transcript that is clipped off during processing. (SO:ke)
373
+ def self.clip
374
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000303')
375
+ end
376
+
377
+ # A modified nucleotide, i.e. a nucleotide other than A, T, C. G. (http://www.ebi.ac.uk/embl/Documentation/FT_definitions/feature_table.html)
378
+ def self.modified_base
379
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000305')
380
+ end
381
+
382
+ # A nucleotide modified by methylation. (SO:ke)
383
+ def self.methylated_base_feature
384
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000306')
385
+ end
386
+
387
+ # Regions of a few hundred to a few thousand bases in vertebrate genomes that are relatively GC and CpG rich; they are typically unmethylated and often found near the 5' ends of genes. (SO:rd)
388
+ def self.CpG_island
389
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000307')
390
+ end
391
+
392
+ # A repeat where the same sequence is repeated in the same direction. Example: GCTGA-----GCTGA. (SO:ke)
393
+ def self.direct_repeat
394
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000314')
395
+ end
396
+
397
+ # The first base where RNA polymerase begins to synthesize the RNA transcript. (SO:ke)
398
+ def self.TSS
399
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000315')
400
+ end
401
+
402
+ # A contiguous sequence which begins with, and includes, a start codon and ends with, and includes, a stop codon. (SO:ma)
403
+ def self.CDS
404
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000316')
405
+ end
406
+
407
+ # First codon to be translated by a ribosome. (SO:ke)
408
+ def self.start_codon
409
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000318')
410
+ end
411
+
412
+ # In mRNA, a set of three nucleotides that indicates the end of information for protein synthesis. (SO:ke)
413
+ def self.stop_codon
414
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000319')
415
+ end
416
+
417
+ # A nucleotide sequence that may be used to identify a larger sequence. (SO:ke)
418
+ def self.tag
419
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000324')
420
+ end
421
+
422
+ # A primary transcript encoding a large ribosomal subunit RNA. (SO:ke)
423
+ def self.rRNA_large_subunit_primary_transcript
424
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000325')
425
+ end
426
+
427
+ # A short diagnostic sequence tag, serial analysis of gene expression (SAGE), that allows the quantitative and simultaneous analysis of a large number of transcripts. (http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=PubMed&list_uids=7570003&dopt=Abstract)
428
+ def self.SAGE_tag
429
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000326')
430
+ end
431
+
432
+ # Region of sequence similarity by descent from a common ancestor. (SO:ke)
433
+ def self.conserved_region
434
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000330')
435
+ end
436
+
437
+ # Short (typically a few hundred base pairs) DNA sequence that has a single occurrence in a genome and whose location and base sequence are known. (http://www.biospace.com)
438
+ def self.STS
439
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000331')
440
+ end
441
+
442
+ # Coding region of sequence similarity by descent from a common ancestor. (SO:ke)
443
+ def self.coding_conserved_region
444
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000332')
445
+ end
446
+
447
+ # The boundary between two exons in a processed transcript. (SO:ke)
448
+ def self.exon_junction
449
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000333')
450
+ end
451
+
452
+ # Non-coding region of sequence similarity by descent from a common ancestor. (SO:ke)
453
+ def self.nc_conserved_region
454
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000334')
455
+ end
456
+
457
+ # A sequence that closely resembles a known functional gene, at another locus within a genome, that is non-functional as a consequence of (usually several) mutations that prevent either its transcription or translation (or both). In general, pseudogenes result from either reverse transcription of a transcript of their \"normal\" paralog (SO:0000043) (in which case the pseudogene typically lacks introns and includes a poly(A) tail) or from recombination (SO:0000044) (in which case the pseudogene is typically a tandem duplication of its \"normal\" paralog). (http://www.ucl.ac.uk/~ucbhjow/b241/glossary.html)
458
+ def self.pseudogene
459
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000336')
460
+ end
461
+
462
+ # A double stranded RNA duplex, at least 20bp long, used experimentally to inhibit gene function by RNA interference. (SO:rd)
463
+ def self.RNAi_reagent
464
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000337')
465
+ end
466
+
467
+ # Structural unit composed of a nucleic acid molecule which controls its own replication through the interaction of specific proteins at one or more origins of replication. (SO:ma)
468
+ def self.chromosome
469
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000340')
470
+ end
471
+
472
+ # A cytologically distinguishable feature of a chromosome, often made visible by staining, and usually alternating light and dark. (SO:ma)
473
+ def self.chromosome_band
474
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000341')
475
+ end
476
+
477
+ # A region of sequence, aligned to another sequence with some statistical significance, using an algorithm such as BLAST or SIM4. (SO:ke)
478
+ def self.match
479
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000343')
480
+ end
481
+
482
+ # Region of a transcript that regulates splicing. (SO:ke)
483
+ def self.splice_enhancer
484
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000344')
485
+ end
486
+
487
+ # A tag produced from a single sequencing read from a cDNA clone or PCR product; typically a few hundred base pairs long. (SO:ke)
488
+ def self.EST
489
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000345')
490
+ end
491
+
492
+ # A match against a nucleotide sequence. (SO:ke)
493
+ def self.nucleotide_match
494
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000347')
495
+ end
496
+
497
+ # A match against a protein sequence. (SO:ke)
498
+ def self.protein_match
499
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000349')
500
+ end
501
+
502
+ # A sequence of nucleotides that has been algorithmically derived from an alignment of two or more different sequences. (SO:ma)
503
+ def self.sequence_assembly
504
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000353')
505
+ end
506
+
507
+ # A set of (usually) three nucleotide bases in a DNA or RNA sequence, which together code for a unique amino acid or the termination of translation and are contained within the CDS. (http://www.everythingbio.com/glos/definition.php?word=codon, SO:ke)
508
+ def self.codon
509
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000360')
510
+ end
511
+
512
+ # The junction where an insertion occurred. (SO:ke)
513
+ def self.insertion_site
514
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000366')
515
+ end
516
+
517
+ # The junction in a genome where a transposable_element has inserted. (SO:ke)
518
+ def self.transposable_element_insertion_site
519
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000368')
520
+ end
521
+
522
+ # A non-coding RNA, usually with a specific secondary structure, that acts to regulate gene expression. (SO:ma)
523
+ def self.small_regulatory_ncRNA
524
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000370')
525
+ end
526
+
527
+ # An RNA sequence that has catalytic activity with or without an associated ribonucleoprotein. (RSC:cb)
528
+ def self.enzymatic_RNA
529
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000372')
530
+ end
531
+
532
+ # An RNA with catalytic activity. (SO:ma)
533
+ def self.ribozyme
534
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000374')
535
+ end
536
+
537
+ # 5_8S ribosomal RNA (5. 8S rRNA) is a component of the large subunit of the eukaryotic ribosome. It is transcribed by RNA polymerase I as part of the 45S precursor that also contains 18S and 28S rRNA. Functionally, it is thought that 5.8S rRNA may be involved in ribosome translocation. It is also known to form covalent linkage to the p53 tumour suppressor protein. 5_8S rRNA is also found in archaea. (http://www.sanger.ac.uk/cgi-bin/Rfam/getacc?RF00002)
538
+ def self.rRNA_5_8S
539
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000375')
540
+ end
541
+
542
+ # A small catalytic RNA motif that catalyzes self-cleavage reaction. Its name comes from its secondary structure which resembles a carpenter's hammer. The hammerhead ribozyme is involved in the replication of some viroid and some satellite RNAs. (PMID:2436805)
543
+ def self.hammerhead_ribozyme
544
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000380')
545
+ end
546
+
547
+ # The RNA molecule essential for the catalytic activity of RNase MRP, an enzymatically active ribonucleoprotein with two distinct roles in eukaryotes. In mitochondria it plays a direct role in the initiation of mitochondrial DNA replication. In the nucleus it is involved in precursor rRNA processing, where it cleaves the internal transcribed spacer 1 between 18S and 5.8S rRNAs. (http://www.sanger.ac.uk/cgi-bin/Rfam/getacc?RF00030)
548
+ def self.RNase_MRP_RNA
549
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000385')
550
+ end
551
+
552
+ # The RNA component of Ribonuclease P (RNase P), a ubiquitous endoribonuclease, found in archaea, bacteria and eukarya as well as chloroplasts and mitochondria. Its best characterized activity is the generation of mature 5 prime ends of tRNAs by cleaving the 5 prime leader elements of precursor-tRNAs. Cellular RNase Ps are ribonucleoproteins. RNA from bacterial RNase Ps retains its catalytic activity in the absence of the protein subunit, i.e. it is a ribozyme. Isolated eukaryotic and archaeal RNase P RNA has not been shown to retain its catalytic function, but is still essential for the catalytic activity of the holoenzyme. Although the archaeal and eukaryotic holoenzymes have a much greater protein content than the bacterial ones, the RNA cores from all the three lineages are homologous. Helices corresponding to P1, P2, P3, P4, and P10/11 are common to all cellular RNase P RNAs. Yet, there is considerable sequence variation, particularly among the eukaryotic RNAs. (http://www.sanger.ac.uk/cgi-bin/Rfam/getacc?RF00010)
553
+ def self.RNase_P_RNA
554
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000386')
555
+ end
556
+
557
+ # The RNA component of telomerase, a reverse transcriptase that synthesizes telomeric DNA. (http://www.sanger.ac.uk/cgi-bin/Rfam/getacc?RF00025)
558
+ def self.telomerase_RNA
559
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000390')
560
+ end
561
+
562
+ # U1 is a small nuclear RNA (snRNA) component of the spliceosome (involved in pre-mRNA splicing). Its 5' end forms complementary base pairs with the 5' splice junction, thus defining the 5' donor site of an intron. There are significant differences in sequence and secondary structure between metazoan and yeast U1 snRNAs, the latter being much longer (568 nucleotides as compared to 164 nucleotides in human). Nevertheless, secondary structure predictions suggest that all U1 snRNAs share a 'common core' consisting of helices I, II, the proximal region of III, and IV. (http://www.sanger.ac.uk/cgi-bin/Rfam/getacc?RF00003)
563
+ def self.U1_snRNA
564
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000391')
565
+ end
566
+
567
+ # U2 is a small nuclear RNA (snRNA) component of the spliceosome (involved in pre-mRNA splicing). Complementary binding between U2 snRNA (in an area lying towards the 5' end but 3' to hairpin I) and the branchpoint sequence (BPS) of the intron results in the bulging out of an unpaired adenine, on the BPS, which initiates a nucleophilic attack at the intronic 5' splice site, thus starting the first of two transesterification reactions that mediate splicing. (http://www.sanger.ac.uk/cgi-bin/Rfam/getacc?RF00004)
568
+ def self.U2_snRNA
569
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000392')
570
+ end
571
+
572
+ # U4 small nuclear RNA (U4 snRNA) is a component of the major U2-dependent spliceosome. It forms a duplex with U6, and with each splicing round, it is displaced from U6 (and the spliceosome) in an ATP-dependent manner, allowing U6 to refold and create the active site for splicing catalysis. A recycling process involving protein Prp24 re-anneals U4 and U6. (http://www.sanger.ac.uk/cgi-bin/Rfam/getacc?RF00015)
573
+ def self.U4_snRNA
574
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000393')
575
+ end
576
+
577
+ # An snRNA required for the splicing of the minor U12-dependent class of eukaryotic nuclear introns. It forms a base paired complex with U6atac_snRNA (SO:0000397). (PMID:=12409455)
578
+ def self.U4atac_snRNA
579
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000394')
580
+ end
581
+
582
+ # U5 RNA is a component of both types of known spliceosome. The precise function of this molecule is unknown, though it is known that the 5' loop is required for splice site selection and p220 binding, and that both the 3' stem-loop and the Sm site are important for Sm protein binding and cap methylation. (http://www.sanger.ac.uk/cgi-bin/Rfam/getacc?RF00020)
583
+ def self.U5_snRNA
584
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000395')
585
+ end
586
+
587
+ # U6 snRNA is a component of the spliceosome which is involved in splicing pre-mRNA. The putative secondary structure consensus base pairing is confined to a short 5' stem loop, but U6 snRNA is thought to form extensive base-pair interactions with U4 snRNA. (http://www.sanger.ac.uk/cgi-bin/Rfam/getacc?RF00015)
588
+ def self.U6_snRNA
589
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000396')
590
+ end
591
+
592
+ # U6atac_snRNA is an snRNA required for the splicing of the minor U12-dependent class of eukaryotic nuclear introns. It forms a base paired complex with U4atac_snRNA (SO:0000394). (http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=retrieve&db=pubmed&list_uids=12409455&dopt=Abstract)
593
+ def self.U6atac_snRNA
594
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000397')
595
+ end
596
+
597
+ # U11 snRNA plays a role in splicing of the minor U12-dependent class of eukaryotic nuclear introns, similar to U1 snRNA in the major class spliceosome it base pairs to the conserved 5' splice site sequence. (PMID:9622129)
598
+ def self.U11_snRNA
599
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000398')
600
+ end
601
+
602
+ # The U12 small nuclear (snRNA), together with U4atac/U6atac, U5, and U11 snRNAs and associated proteins, forms a spliceosome that cleaves a divergent class of low-abundance pre-mRNA introns. (http://www.sanger.ac.uk/cgi-bin/Rfam/getacc?RF00007)
603
+ def self.U12_snRNA
604
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000399')
605
+ end
606
+
607
+ # U14 small nucleolar RNA (U14 snoRNA) is required for early cleavages of eukaryotic precursor rRNAs. In yeasts, this molecule possess a stem-loop region (known as the Y-domain) which is essential for function. A similar structure, but with a different consensus sequence, is found in plants, but is absent in vertebrates. (http://www.sanger.ac.uk/cgi-bin/Rfam/getacc?RF00016, PMID:2551119)
608
+ def self.U14_snoRNA
609
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000403')
610
+ end
611
+
612
+ # A family of RNAs are found as part of the enigmatic vault ribonucleoprotein complex. The complex consists of a major vault protein (MVP), two minor vault proteins (VPARP and TEP1), and several small untranslated RNA molecules. It has been suggested that the vault complex is involved in drug resistance. (http://www.sanger.ac.uk/cgi-bin/Rfam/getacc?RF00006)
613
+ def self.vault_RNA
614
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000404')
615
+ end
616
+
617
+ # Y RNAs are components of the Ro ribonucleoprotein particle (Ro RNP), in association with Ro60 and La proteins. The Y RNAs and Ro60 and La proteins are well conserved, but the function of the Ro RNP is not known. In humans the RNA component can be one of four small RNAs: hY1, hY3, hY4 and hY5. These small RNAs are predicted to fold into a conserved secondary structure containing three stem structures. The largest of the four, hY1, contains an additional hairpin. (http://www.sanger.ac.uk/cgi-bin/Rfam/getacc?RF00019)
618
+ def self.Y_RNA
619
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000405')
620
+ end
621
+
622
+ # A large polynucleotide in eukaryotes, which functions as the small subunit of the ribosome. (SO:ke)
623
+ def self.rRNA_18S
624
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000407')
625
+ end
626
+
627
+ # A biological_region of sequence that, in the molecule, interacts selectively and non-covalently with other molecules. A region on the surface of a molecule that may interact with another molecule. When applied to polypeptides: Amino acids involved in binding or interactions. It can also apply to an amino acid bond which is represented by the positions of the two flanking amino acids. (EBIBS:GAR, SO:ke)
628
+ def self.binding_site
629
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000409')
630
+ end
631
+
632
+ # A binding site that, in the molecule, interacts selectively and non-covalently with polypeptide molecules. (SO:ke)
633
+ def self.protein_binding_site
634
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000410')
635
+ end
636
+
637
+ # A region of polynucleotide sequence produced by digestion with a restriction endonuclease. (SO:ke)
638
+ def self.restriction_fragment
639
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000412')
640
+ end
641
+
642
+ # A region where the sequence differs from that of a specified sequence. (SO:ke)
643
+ def self.sequence_difference
644
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000413')
645
+ end
646
+
647
+ # The signal_peptide is a short region of the peptide located at the N-terminus that directs the protein to be secreted or part of membrane components. (http://www.ebi.ac.uk/embl/Documentation/FT_definitions/feature_table.html)
648
+ def self.signal_peptide
649
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000418')
650
+ end
651
+
652
+ # The polypeptide sequence that remains when the cleaved peptide regions have been cleaved from the immature peptide. (EBIBS:GAR, http://www.ebi.ac.uk/embl/Documentation/FT_definitions/feature_table.html, SO:cb)
653
+ def self.mature_protein_region
654
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000419')
655
+ end
656
+
657
+ # A sequence that can autonomously replicate, as a plasmid, when transformed into a bacterial host. (SO:ma)
658
+ def self.ARS
659
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000436')
660
+ end
661
+
662
+ # A single stranded oligonucleotide. (SO:ke)
663
+ def self.ss_oligo
664
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000441')
665
+ end
666
+
667
+ # A double stranded oligonucleotide. (SO:ke)
668
+ def self.ds_oligo
669
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000442')
670
+ end
671
+
672
+ # A 17-28-nt, small interfering RNA derived from transcripts of repetitive elements. (http://www.developmentalcell.com/content/article/abstract?uid=PIIS1534580703002284)
673
+ def self.rasiRNA
674
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000454')
675
+ end
676
+
677
+ # A non-functional descendent of a functional entity. (SO:cjm)
678
+ def self.pseudogenic_region
679
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000462')
680
+ end
681
+
682
+ # A non-functional descendant of an exon. (SO:ke)
683
+ def self.decayed_exon
684
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000464')
685
+ end
686
+
687
+ # One of the pieces of sequence that make up a golden path. (SO:rd)
688
+ def self.golden_path_fragment
689
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000468')
690
+ end
691
+
692
+ # A set of regions which overlap with minimal polymorphism to form a linear sequence. (SO:cjm)
693
+ def self.tiling_path
694
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000472')
695
+ end
696
+
697
+ # A piece of sequence that makes up a tiling_path (SO:0000472). (SO:ke)
698
+ def self.tiling_path_fragment
699
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000474')
700
+ end
701
+
702
+ # A primary transcript that is never translated into a protein. (SO:ke)
703
+ def self.nc_primary_transcript
704
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000483')
705
+ end
706
+
707
+ # The sequence of the 3' exon that is not coding. (SO:ke)
708
+ def self.three_prime_coding_exon_noncoding_region
709
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000484')
710
+ end
711
+
712
+ # The sequence of the 5' exon preceding the start codon. (SO:ke)
713
+ def self.five_prime_coding_exon_noncoding_region
714
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000486')
715
+ end
716
+
717
+ # A continuous piece of sequence similar to the 'virtual contig' concept of the Ensembl database. (SO:ke)
718
+ def self.virtual_sequence
719
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000499')
720
+ end
721
+
722
+ # A region of sequence that is transcribed. This region may cover the transcript of a gene, it may emcompas the sequence covered by all of the transcripts of a alternately spliced gene, or it may cover the region transcribed by a polycistronic transcript. A gene may have 1 or more transcribed regions and a transcribed_region may belong to one or more genes. (SO:ke)
723
+ def self.transcribed_region
724
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000502')
725
+ end
726
+
727
+ # The recognition sequence necessary for endonuclease cleavage of an RNA transcript that is followed by polyadenylation; consensus=AATAAA. (http://www.ebi.ac.uk/embl/Documentation/FT_definitions/feature_table.html)
728
+ def self.polyA_signal_sequence
729
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000551')
730
+ end
731
+
732
+ # The site on an RNA transcript to which will be added adenine residues by post-transcriptional polyadenylation. The boundary between the UTR and the polyA sequence. (http://www.ebi.ac.uk/embl/Documentation/FT_definitions/feature_table.html)
733
+ def self.polyA_site
734
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000553')
735
+ end
736
+
737
+ # A region of chromosome where the spindle fibers attach during mitosis and meiosis. (SO:ke)
738
+ def self.centromere
739
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000577')
740
+ end
741
+
742
+ # A structure consisting of a 7-methylguanosine in 5'-5' triphosphate linkage with the first nucleotide of an mRNA. It is added post-transcriptionally, and is not encoded in the DNA. (http://seqcore.brcf.med.umich.edu/doc/educ/dnapr/mbglossary/mbgloss.html)
743
+ def self.cap
744
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000581')
745
+ end
746
+
747
+ # Group I catalytic introns are large self-splicing ribozymes. They catalyze their own excision from mRNA, tRNA and rRNA precursors in a wide range of organisms. The core secondary structure consists of 9 paired regions (P1-P9). These fold to essentially two domains, the P4-P6 domain (formed from the stacking of P5, P4, P6 and P6a helices) and the P3-P9 domain (formed from the P8, P3, P7 and P9 helices). Group I catalytic introns often have long ORFs inserted in loop regions. (http://www.sanger.ac.uk/cgi-bin/Rfam/getacc?RF00028)
748
+ def self.group_I_intron
749
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000587')
750
+ end
751
+
752
+ # A self spliced intron. (SO:ke)
753
+ def self.autocatalytically_spliced_intron
754
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000588')
755
+ end
756
+
757
+ # The signal recognition particle (SRP) is a universally conserved ribonucleoprotein. It is involved in the co-translational targeting of proteins to membranes. The eukaryotic SRP consists of a 300-nucleotide 7S RNA and six proteins: SRPs 72, 68, 54, 19, 14, and 9. Archaeal SRP consists of a 7S RNA and homologues of the eukaryotic SRP19 and SRP54 proteins. In most eubacteria, the SRP consists of a 4.5S RNA and the Ffh protein (a homologue of the eukaryotic SRP54 protein). Eukaryotic and archaeal 7S RNAs have very similar secondary structures, with eight helical elements. These fold into the Alu and S domains, separated by a long linker region. Eubacterial SRP is generally a simpler structure, with the M domain of Ffh bound to a region of the 4.5S RNA that corresponds to helix 8 of the eukaryotic and archaeal SRP S domain. Some Gram-positive bacteria (e.g. Bacillus subtilis), however, have a larger SRP RNA that also has an Alu domain. The Alu domain is thought to mediate the peptide chain elongation retardation function of the SRP. The universally conserved helix which interacts with the SRP54/Ffh M domain mediates signal sequence recognition. In eukaryotes and archaea, the SRP19-helix 6 complex is thought to be involved in SRP assembly and stabilizes helix 8 for SRP54 binding. (http://www.sanger.ac.uk/cgi-bin/Rfam/getacc?RF00017)
758
+ def self.SRP_RNA
759
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000590')
760
+ end
761
+
762
+ # Most box C/D snoRNAs also contain long (>10 nt) sequences complementary to rRNA. Boxes C and D, as well as boxes C' and D', are usually located in close proximity, and form a structure known as the box C/D motif. This motif is important for snoRNA stability, processing, nucleolar targeting and function. A small number of box C/D snoRNAs are involved in rRNA processing; most, however, are known or predicted to serve as guide RNAs in ribose methylation of rRNA. Targeting involves direct base pairing of the snoRNA at the rRNA site to be modified and selection of a rRNA nucleotide a fixed distance from box D or D'. (http://www.bio.umass.edu/biochem/rna-sequence/Yeast_snoRNA_Database/snoRNA_DataBase.html)
763
+ def self.C_D_box_snoRNA
764
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000593')
765
+ end
766
+
767
+ # A short 3'-uridylated RNA that can form a duplex (except for its post-transcriptionally added oligo_U tail (SO:0000609)) with a stretch of mature edited mRNA. (http://www.rna.ucla.edu/index.html)
768
+ def self.guide_RNA
769
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000602')
770
+ end
771
+
772
+ # Group II introns are found in rRNA, tRNA and mRNA of organelles in fungi, plants and protists, and also in mRNA in bacteria. They are large self-splicing ribozymes and have 6 structural domains (usually designated dI to dVI). A subset of group II introns also encode essential splicing proteins in intronic ORFs. The length of these introns can therefore be up to 3kb. Splicing occurs in almost identical fashion to nuclear pre-mRNA splicing with two transesterification steps. The 2' hydroxyl of a bulged adenosine in domain VI attacks the 5' splice site, followed by nucleophilic attack on the 3' splice site by the 3' OH of the upstream exon. Protein machinery is required for splicing in vivo, and long range intron-intron and intron-exon interactions are important for splice site positioning. Group II introns are further sub-classified into groups IIA and IIB which differ in splice site consensus, distance of bulged A from 3' splice site, some tertiary interactions, and intronic ORF phylogeny. (http://www.sanger.ac.uk/Software/Rfam/browse/index.shtml)
773
+ def self.group_II_intron
774
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000603')
775
+ end
776
+
777
+ # A region containing or overlapping no genes that is bounded on either side by a gene, or bounded by a gene and the end of the chromosome. (SO:cjm)
778
+ def self.intergenic_region
779
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000605')
780
+ end
781
+
782
+ # Sequence of about 100 nucleotides of A added to the 3' end of most eukaryotic mRNAs. (SO:ke)
783
+ def self.polyA_sequence
784
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000610')
785
+ end
786
+
787
+ # A pyrimidine rich sequence near the 3' end of an intron to which the 5'end becomes covalently bound during nuclear splicing. The resulting structure resembles a lariat. (SO:ke)
788
+ def self.branch_site
789
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000611')
790
+ end
791
+
792
+ # The polypyrimidine tract is one of the cis-acting sequence elements directing intron removal in pre-mRNA splicing. (http://nar.oupjournals.org/cgi/content/full/25/4/888)
793
+ def self.polypyrimidine_tract
794
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000612')
795
+ end
796
+
797
+ # The base where transcription ends. (SO:ke)
798
+ def self.transcription_end_site
799
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000616')
800
+ end
801
+
802
+ # A specific structure at the end of a linear chromosome, required for the integrity and maintenance of the end. (SO:ma)
803
+ def self.telomere
804
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000624')
805
+ end
806
+
807
+ # A regulatory region which upon binding of transcription factors, suppress the transcription of the gene or genes they control. (SO:ke)
808
+ def self.silencer
809
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000625')
810
+ end
811
+
812
+ # A transcriptional cis regulatory region that when located between a CM and a gene's promoter prevents the CRM from modulating that genes expression. (SO:regcreative)
813
+ def self.insulator
814
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000627')
815
+ end
816
+
817
+ def self.chromosomal_structural_element
818
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000628')
819
+ end
820
+
821
+ # A repeat region containing tandemly repeated sequences having a unit length of 10 to 40 bp. (http://www.informatics.jax.org/silver/glossary.shtml)
822
+ def self.minisatellite
823
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000643')
824
+ end
825
+
826
+ # Antisense RNA is RNA that is transcribed from the coding, rather than the template, strand of DNA. It is therefore complementary to mRNA. (SO:ke)
827
+ def self.antisense_RNA
828
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000644')
829
+ end
830
+
831
+ # The reverse complement of the primary transcript. (SO:ke)
832
+ def self.antisense_primary_transcript
833
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000645')
834
+ end
835
+
836
+ # A small RNA molecule that is the product of a longer exogenous or endogenous dsRNA, which is either a bimolecular duplex or very long hairpin, processed (via the Dicer pathway) such that numerous siRNAs accumulate from both strands of the dsRNA. SRNAs trigger the cleavage of their target molecules. (PMID:12592000)
837
+ def self.siRNA
838
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000646')
839
+ end
840
+
841
+ # Non-coding RNAs of about 21 nucleotides in length that regulate temporal development; first discovered in C. elegans. (PMID:11081512)
842
+ def self.stRNA
843
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000649')
844
+ end
845
+
846
+ # Ribosomal RNA transcript that structures the small subunit of the ribosome. (SO:ke)
847
+ def self.small_subunit_rRNA
848
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000650')
849
+ end
850
+
851
+ # Ribosomal RNA transcript that structures the large subunit of the ribosome. (SO:ke)
852
+ def self.large_subunit_rRNA
853
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000651')
854
+ end
855
+
856
+ # 5S ribosomal RNA (5S rRNA) is a component of the large ribosomal subunit in both prokaryotes and eukaryotes. In eukaryotes, it is synthesised by RNA polymerase III (the other eukaryotic rRNAs are cleaved from a 45S precursor synthesised by RNA polymerase I). In Xenopus oocytes, it has been shown that fingers 4-7 of the nine-zinc finger transcription factor TFIIIA can bind to the central region of 5S RNA. Thus, in addition to positively regulating 5S rRNA transcription, TFIIIA also stabilizes 5S rRNA until it is required for transcription. (http://www.sanger.ac.uk/cgi-bin/Rfam/getacc?RF00001)
857
+ def self.rRNA_5S
858
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000652')
859
+ end
860
+
861
+ # A component of the large ribosomal subunit. (SO:ke)
862
+ def self.rRNA_28S
863
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000653')
864
+ end
865
+
866
+ # An RNA transcript that does not encode for a protein rather the RNA molecule is the gene product. (SO:ke)
867
+ def self.ncRNA
868
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000655')
869
+ end
870
+
871
+ # A region of sequence containing one or more repeat units. (SO:ke)
872
+ def self.repeat_region
873
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000657')
874
+ end
875
+
876
+ # A repeat that is located at dispersed sites in the genome. (SO:ke)
877
+ def self.dispersed_repeat
878
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000658')
879
+ end
880
+
881
+ # An intron which is spliced by the spliceosome. (SO:ke)
882
+ def self.spliceosomal_intron
883
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000662')
884
+ end
885
+
886
+ # The sequence of one or more nucleotides added between two adjacent nucleotides in the sequence. (SO:ke)
887
+ def self.insertion
888
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000667')
889
+ end
890
+
891
+ # A match against an EST sequence. (SO:ke)
892
+ def self.EST_match
893
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000668')
894
+ end
895
+
896
+ # An RNA synthesized on a DNA or RNA template by an RNA polymerase. (SO:ma)
897
+ def self.transcript
898
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000673')
899
+ end
900
+
901
+ # A region of nucleotide sequence targeted by a nuclease enzyme. (SO:ma)
902
+ def self.nuclease_sensitive_site
903
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000684')
904
+ end
905
+
906
+ # The space between two bases in a sequence which marks the position where a deletion has occurred. (SO:ke)
907
+ def self.deletion_junction
908
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000687')
909
+ end
910
+
911
+ # A set of subregions selected from sequence contigs which when concatenated form a nonredundant linear sequence. (SO:ls)
912
+ def self.golden_path
913
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000688')
914
+ end
915
+
916
+ # A match against cDNA sequence. (SO:ke)
917
+ def self.cDNA_match
918
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000689')
919
+ end
920
+
921
+ # SNPs are single base pair positions in genomic DNA at which different sequence alternatives exist in normal individuals in some population(s), wherein the least frequent variant has an abundance of 1% or greater. (SO:cb)
922
+ def self.SNP
923
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000694')
924
+ end
925
+
926
+ # A sequence used in experiment. (SO:ke)
927
+ def self.reagent
928
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000695')
929
+ end
930
+
931
+ # A short oligonucleotide sequence, of length on the order of 10's of bases; either single or double stranded. (SO:ma)
932
+ def self.oligo
933
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000696')
934
+ end
935
+
936
+ # A sequence_feature with an extent of zero. (SO:ke)
937
+ def self.junction
938
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000699')
939
+ end
940
+
941
+ # A comment about the sequence. (SO:ke)
942
+ def self.remark
943
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000700')
944
+ end
945
+
946
+ # A region of sequence where the validity of the base calling is questionable. (SO:ke)
947
+ def self.possible_base_call_error
948
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000701')
949
+ end
950
+
951
+ # A region of sequence where there may have been an error in the assembly. (SO:ke)
952
+ def self.possible_assembly_error
953
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000702')
954
+ end
955
+
956
+ # A region of sequence implicated in an experimental result. (SO:ke)
957
+ def self.experimental_result_region
958
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000703')
959
+ end
960
+
961
+ # A region (or regions) that includes all of the sequence elements necessary to encode a functional transcript. A gene may include regulatory regions, transcribed regions and/or other functional sequence regions. (SO:immuno_workshop)
962
+ def self.gene
963
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000704')
964
+ end
965
+
966
+ # Two or more adjcent copies of a region (of length greater than 1). (SO:ke)
967
+ def self.tandem_repeat
968
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000705')
969
+ end
970
+
971
+ # The 3' splice site of the acceptor primary transcript. (SO:ke)
972
+ def self.trans_splice_acceptor_site
973
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000706')
974
+ end
975
+
976
+ # A region of nucleotide sequence corresponding to a known motif. (SO:ke)
977
+ def self.nucleotide_motif
978
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000714')
979
+ end
980
+
981
+ # A motif that is active in RNA sequence. (SO:ke)
982
+ def self.RNA_motif
983
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000715')
984
+ end
985
+
986
+ # A nucleic acid sequence that when read as sequential triplets, has the potential of encoding a sequential string of amino acids. It need not contain the start or stop codon. (SGD:rb)
987
+ def self.reading_frame
988
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000717')
989
+ end
990
+
991
+ # An ordered and oriented set of scaffolds based on somewhat weaker sets of inferential evidence such as one set of mate pair reads together with supporting evidence from ESTs or location of markers from SNP or microsatellite maps, or cytogenetic localization of contained markers. (FB:WG)
992
+ def self.ultracontig
993
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000719')
994
+ end
995
+
996
+ # A region of a DNA molecule where transfer is initiated during the process of conjugation or mobilization. (http://www.ebi.ac.uk/embl/Documentation/FT_definitions/feature_table.html)
997
+ def self.oriT
998
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000724')
999
+ end
1000
+
1001
+ # The transit_peptide is a short region at the N-terminus of the peptide that directs the protein to an organelle (chloroplast, mitochondrion, microbody or cyanelle). (http://www.ebi.ac.uk/embl/Documentation/FT_definitions/feature_table.html)
1002
+ def self.transit_peptide
1003
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000725')
1004
+ end
1005
+
1006
+ # A regulatory_region where more than 1 TF_binding_site together are regulatorily active. (SO:SG)
1007
+ def self.CRM
1008
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000727')
1009
+ end
1010
+
1011
+ # A gap in the sequence of known length. The unknown bases are filled in with N's. (SO:ke)
1012
+ def self.gap
1013
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000730')
1014
+ end
1015
+
1016
+ def self.gene_group_regulatory_region
1017
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000752')
1018
+ end
1019
+
1020
+ # The region of sequence that has been inserted and is being propagated by the clone. (SO:ke)
1021
+ def self.clone_insert
1022
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000753')
1023
+ end
1024
+
1025
+ # A non functional descendent of an rRNA. (SO:ke)
1026
+ def self.pseudogenic_rRNA
1027
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000777')
1028
+ end
1029
+
1030
+ # A non functional descendent of a tRNA. (SO:ke)
1031
+ def self.pseudogenic_tRNA
1032
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000778')
1033
+ end
1034
+
1035
+ # A region of a chromosome. (SO:ke)
1036
+ def self.chromosome_part
1037
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000830')
1038
+ end
1039
+
1040
+ # A region of a gene. (SO:ke)
1041
+ def self.gene_member_region
1042
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000831')
1043
+ end
1044
+
1045
+ # A region of a transcript. (SO:ke)
1046
+ def self.transcript_region
1047
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000833')
1048
+ end
1049
+
1050
+ # A region of a mature transcript. (SO:ke)
1051
+ def self.mature_transcript_region
1052
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000834')
1053
+ end
1054
+
1055
+ # A part of a primary transcript. (SO:ke)
1056
+ def self.primary_transcript_region
1057
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000835')
1058
+ end
1059
+
1060
+ # A region of an mRNA. (SO:cb)
1061
+ def self.mRNA_region
1062
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000836')
1063
+ end
1064
+
1065
+ # A region of UTR. (SO:ke)
1066
+ def self.UTR_region
1067
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000837')
1068
+ end
1069
+
1070
+ # Biological sequence region that can be assigned to a specific subsequence of a polypeptide. (SO:GAR, SO:ke)
1071
+ def self.polypeptide_region
1072
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000839')
1073
+ end
1074
+
1075
+ # A region within an intron. (SO:ke)
1076
+ def self.spliceosomal_intron_region
1077
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000841')
1078
+ end
1079
+
1080
+ def self.gene_component_region
1081
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000842')
1082
+ end
1083
+
1084
+ # A region of a CDS. (SO:cb)
1085
+ def self.CDS_region
1086
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000851')
1087
+ end
1088
+
1089
+ # A region of an exon. (RSC:cb)
1090
+ def self.exon_region
1091
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000852')
1092
+ end
1093
+
1094
+ # A large polynucleotide in Bacteria and Archaea, which functions as the small subunit of the ribosome. (SO:ke)
1095
+ def self.rRNA_16S
1096
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0001000')
1097
+ end
1098
+
1099
+ # A large polynucleotide in Bacteria and Archaea, which functions as the large subunit of the ribosome. (SO:ke)
1100
+ def self.rRNA_23S
1101
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0001001')
1102
+ end
1103
+
1104
+ # A large polynucleotide which functions as part of the large subunit of the ribosome in some eukaryotes. (RSC:cb)
1105
+ def self.rRNA_25S
1106
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0001002')
1107
+ end
1108
+
1109
+ # A variation that increases or decreases the copy number of a given region. (SO:ke)
1110
+ def self.copy_number_variation
1111
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0001019')
1112
+ end
1113
+
1114
+ # A nucleotide region with either intra-genome or intracellular moblity, of varying length, which often carry the information necessary for transfer and recombination with the host genome. (PMID:14681355)
1115
+ def self.mobile_genetic_element
1116
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0001037')
1117
+ end
1118
+
1119
+ # An MGE that is integrated into the host chromosome. (SO:ke)
1120
+ def self.integrated_mobile_genetic_element
1121
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0001039')
1122
+ end
1123
+
1124
+ # A regulatory_region that modulates the transcription of a gene or genes. (SO:regcreative)
1125
+ def self.transcriptional_cis_regulatory_region
1126
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0001055')
1127
+ end
1128
+
1129
+ # A regulatory_region that modulates splicing. (SO:ke)
1130
+ def self.splicing_regulatory_region
1131
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0001056')
1132
+ end
1133
+
1134
+ # A sequence_alteration is a sequence_feature whose extent is the deviation from another sequence. (SO:ke)
1135
+ def self.sequence_alteration
1136
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0001059')
1137
+ end
1138
+
1139
+ # An immature_peptide_region is the extent of the peptide after it has been translated and before any processing occurs. (EBIBS:GAR)
1140
+ def self.immature_peptide_region
1141
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0001063')
1142
+ end
1143
+
1144
+ # The maximal intersection of exon and UTR. (SO:ke)
1145
+ def self.noncoding_region_of_exon
1146
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0001214')
1147
+ end
1148
+
1149
+ # The region of an exon that encodes for protein sequence. (SO:ke)
1150
+ def self.coding_region_of_exon
1151
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0001215')
1152
+ end
1153
+
1154
+ # A region containing at least one unique origin of replication and a unique termination site. (ISBN:0716719207)
1155
+ def self.replicon
1156
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0001235')
1157
+ end
1158
+
1159
+ # A base is a sequence feature that corresponds to a single unit of a nucleotide polymer. (SO:ke)
1160
+ def self.base
1161
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0001236')
1162
+ end
1163
+
1164
+ # A region of the genome of known length that is composed by ordering and aligning two or more different regions. (SO:ke)
1165
+ def self.assembly
1166
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0001248')
1167
+ end
1168
+
1169
+ # A region which is intended for use in an experiment. (SO:cb)
1170
+ def self.biomaterial_region
1171
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0001409')
1172
+ end
1173
+
1174
+ # A region which is the result of some arbitrary experimental procedure. The procedure may be carried out with biological material or inside a computer. (SO:cb)
1175
+ def self.experimental_feature
1176
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0001410')
1177
+ end
1178
+
1179
+ # A region defined by its disposition to be involved in a biological process. (SO:cb)
1180
+ def self.biological_region
1181
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0001411')
1182
+ end
1183
+
1184
+ # A region that is defined according to its relations with other regions within the same sequence. (SO:cb)
1185
+ def self.topologically_defined_region
1186
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0001412')
1187
+ end
1188
+
1189
+ # Intronic 2 bp region bordering exon. A splice_site that adjacent_to exon and overlaps intron. (SO:cjm, SO:ke)
1190
+ def self.cis_splice_site
1191
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0001419')
1192
+ end
1193
+
1194
+ # Primary transcript region bordering trans-splice junction. (SO:ke)
1195
+ def self.trans_splice_site
1196
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0001420')
1197
+ end
1198
+
1199
+ # SNVs are single nucleotide positions in genomic DNA at which different sequence alternatives exist. (SO:bm)
1200
+ def self.SNV
1201
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0001483')
1202
+ end
1203
+
1204
+ # A region of peptide sequence used to target the polypeptide molecule to a specific organelle. (SO:ke)
1205
+ def self.peptide_localization_signal
1206
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0001527')
1207
+ end
1208
+
1209
+ # A kind of ribosome entry site, specific to Eukaryotic organisms that overlaps part of both 5' UTR and CDS sequence. (SO:ke)
1210
+ def self.kozak_sequence
1211
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0001647')
1212
+ end
1213
+
1214
+ # A binding site that, in the nucleotide molecule, interacts selectively and non-covalently with polypeptide residues. (SO:ke)
1215
+ def self.nucleotide_to_protein_binding_site
1216
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0001654')
1217
+ end
1218
+
1219
+ # A regulatory region that is involved in the control of the process of transcription. (SO:ke)
1220
+ def self.transcription_regulatory_region
1221
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0001679')
1222
+ end
1223
+
1224
+ # A sequence motif is a nucleotide or amino-acid sequence pattern that may have biological significance. (http://en.wikipedia.org/wiki/Sequence_motif)
1225
+ def self.sequence_motif
1226
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0001683')
1227
+ end
1228
+
1229
+ # A biological region implicated in inherited changes caused by mechanisms other than changes in the underlying DNA sequence. (http://en.wikipedia.org/wiki/Epigenetics, SO:ke)
1230
+ def self.epigenetically_modified_region
1231
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0001720')
1232
+ end
1233
+
1234
+ # An assembly region that has been sequenced from both ends resulting in a read_pair (mate_pair). (SO:ke)
1235
+ def self.paired_end_fragment
1236
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0001790')
1237
+ end
1238
+
1239
+ # A region of sequence that is involved in the control of a biological process. (SO:ke)
1240
+ def self.regulatory_region
1241
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0005836')
1242
+ end
1243
+
1244
+ # A collection of related genes. (SO:ma)
1245
+ def self.gene_group
1246
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0005855')
1247
+ end
1248
+
1249
+ # The cleaved_peptide_regon is the a region of peptide sequence that is cleaved during maturation. (EBIBS:GAR)
1250
+ def self.cleaved_peptide_region
1251
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_0100011')
1252
+ end
1253
+
1254
+ # A sequence alteration where the length of the change in the variant is the same as that of the reference. (SO:ke)
1255
+ def self.substitution
1256
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_1000002')
1257
+ end
1258
+
1259
+ # When no simple or well defined DNA mutation event describes the observed DNA change, the keyword \"complex\" should be used. Usually there are multiple equally plausible explanations for the change. (EBI:www.ebi.ac.uk/mutations/recommendations/mutevent.html)
1260
+ def self.complex_substitution
1261
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_1000005')
1262
+ end
1263
+
1264
+ # A single nucleotide change which has occurred at the same position of a corresponding nucleotide in a reference sequence. (SO:immuno_workshop)
1265
+ def self.point_mutation
1266
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_1000008')
1267
+ end
1268
+
1269
+ # A continuous nucleotide sequence is inverted in the same position. (EBI:www.ebi.ac.uk/mutations/recommendations/mutevent.html)
1270
+ def self.inversion
1271
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_1000036')
1272
+ end
1273
+
1274
+ # A group of genes, whether linked as a cluster or not, that respond to a common regulatory signal. (ISBN:0198506732)
1275
+ def self.regulon
1276
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_1001284')
1277
+ end
1278
+
1279
+ # The sequence referred to by an entry in a databank such as Genbank or SwissProt. (SO:ke)
1280
+ def self.databank_entry
1281
+ RDF::URI.new('http://purl.obolibrary.org/obo/SO_2000061')
1282
+ end
1283
+
1284
+ # Determines whether the given URI is an object property.
1285
+ #
1286
+ # +uri+:: URI that is tested for being an object property
1287
+ def self.is_object_property?(uri)
1288
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/http_//purl.org/obo/owl:adjacent_to')
1289
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/http_//purl.org/obo/owl:has_integral_part')
1290
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/http_//purl.org/obo/owl:has_part')
1291
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/http_//purl.org/obo/owl:integral_part_of')
1292
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/http_//purl.org/obo/owl:non_functional_homolog_of')
1293
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/http_//purl.org/obo/owl:partial_evidence_for_feature')
1294
+ false
1295
+ end
1296
+
1297
+ # Determines whether the given URI is a datatype property.
1298
+ #
1299
+ # +uri+:: URI that is tested for being a datatype property
1300
+ def self.is_datatype_property?(uri)
1301
+ false
1302
+ end
1303
+
1304
+ # Determines whether the given URI is a class.
1305
+ #
1306
+ # +uri+:: URI that is tested for being a class
1307
+ def self.is_class?(uri)
1308
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000000')
1309
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000001')
1310
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000004')
1311
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000005')
1312
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000006')
1313
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000007')
1314
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000013')
1315
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000038')
1316
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000039')
1317
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000050')
1318
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000057')
1319
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000059')
1320
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000101')
1321
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000102')
1322
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000103')
1323
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000104')
1324
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000109')
1325
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000110')
1326
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000112')
1327
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000113')
1328
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000114')
1329
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000120')
1330
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000139')
1331
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000140')
1332
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000141')
1333
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000143')
1334
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000147')
1335
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000148')
1336
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000149')
1337
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000150')
1338
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000151')
1339
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000159')
1340
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000161')
1341
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000162')
1342
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000163')
1343
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000164')
1344
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000165')
1345
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000167')
1346
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000177')
1347
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000178')
1348
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000179')
1349
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000181')
1350
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000183')
1351
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000185')
1352
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000187')
1353
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000188')
1354
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000193')
1355
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000195')
1356
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000196')
1357
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000197')
1358
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000198')
1359
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000200')
1360
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000203')
1361
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000204')
1362
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000205')
1363
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000209')
1364
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000233')
1365
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000234')
1366
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000235')
1367
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000236')
1368
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000239')
1369
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000252')
1370
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000253')
1371
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000274')
1372
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000275')
1373
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000276')
1374
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000289')
1375
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000294')
1376
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000296')
1377
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000303')
1378
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000305')
1379
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000306')
1380
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000307')
1381
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000314')
1382
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000315')
1383
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000316')
1384
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000318')
1385
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000319')
1386
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000324')
1387
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000325')
1388
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000326')
1389
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000330')
1390
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000331')
1391
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000332')
1392
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000333')
1393
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000334')
1394
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000336')
1395
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000337')
1396
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000340')
1397
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000341')
1398
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000343')
1399
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000344')
1400
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000345')
1401
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000347')
1402
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000349')
1403
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000353')
1404
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000360')
1405
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000366')
1406
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000368')
1407
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000370')
1408
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000372')
1409
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000374')
1410
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000375')
1411
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000380')
1412
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000385')
1413
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000386')
1414
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000390')
1415
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000391')
1416
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000392')
1417
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000393')
1418
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000394')
1419
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000395')
1420
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000396')
1421
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000397')
1422
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000398')
1423
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000399')
1424
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000403')
1425
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000404')
1426
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000405')
1427
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000407')
1428
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000409')
1429
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000410')
1430
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000412')
1431
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000413')
1432
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000418')
1433
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000419')
1434
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000436')
1435
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000441')
1436
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000442')
1437
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000454')
1438
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000462')
1439
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000464')
1440
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000468')
1441
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000472')
1442
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000474')
1443
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000483')
1444
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000484')
1445
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000486')
1446
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000499')
1447
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000502')
1448
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000551')
1449
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000553')
1450
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000577')
1451
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000581')
1452
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000587')
1453
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000588')
1454
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000590')
1455
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000593')
1456
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000602')
1457
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000603')
1458
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000605')
1459
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000610')
1460
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000611')
1461
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000612')
1462
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000616')
1463
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000624')
1464
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000625')
1465
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000627')
1466
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000628')
1467
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000643')
1468
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000644')
1469
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000645')
1470
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000646')
1471
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000649')
1472
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000650')
1473
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000651')
1474
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000652')
1475
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000653')
1476
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000655')
1477
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000657')
1478
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000658')
1479
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000662')
1480
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000667')
1481
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000668')
1482
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000673')
1483
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000684')
1484
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000687')
1485
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000688')
1486
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000689')
1487
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000694')
1488
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000695')
1489
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000696')
1490
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000699')
1491
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000700')
1492
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000701')
1493
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000702')
1494
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000703')
1495
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000704')
1496
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000705')
1497
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000706')
1498
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000714')
1499
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000715')
1500
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000717')
1501
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000719')
1502
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000724')
1503
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000725')
1504
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000727')
1505
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000730')
1506
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000752')
1507
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000753')
1508
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000777')
1509
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000778')
1510
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000830')
1511
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000831')
1512
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000833')
1513
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000834')
1514
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000835')
1515
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000836')
1516
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000837')
1517
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000839')
1518
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000841')
1519
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000842')
1520
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000851')
1521
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0000852')
1522
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0001000')
1523
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0001001')
1524
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0001002')
1525
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0001019')
1526
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0001037')
1527
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0001039')
1528
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0001055')
1529
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0001056')
1530
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0001059')
1531
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0001063')
1532
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0001214')
1533
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0001215')
1534
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0001235')
1535
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0001236')
1536
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0001248')
1537
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0001409')
1538
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0001410')
1539
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0001411')
1540
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0001412')
1541
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0001419')
1542
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0001420')
1543
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0001483')
1544
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0001527')
1545
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0001647')
1546
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0001654')
1547
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0001679')
1548
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0001683')
1549
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0001720')
1550
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0001790')
1551
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0005836')
1552
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0005855')
1553
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_0100011')
1554
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_1000002')
1555
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_1000005')
1556
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_1000008')
1557
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_1000036')
1558
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_1001284')
1559
+ return true if uri == RDF::URI.new('http://purl.obolibrary.org/obo/SO_2000061')
1560
+ false
1561
+ end
1562
+
1563
+ end
1564
+
1565
+
1566
+ end