biointerchange 0.1.3 → 0.2.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 (30) hide show
  1. data/README.md +17 -0
  2. data/VERSION +1 -1
  3. data/generators/GOxrefify.rb +41 -0
  4. data/generators/rdfxml.rb +6 -4
  5. data/lib/biointerchange/core.rb +94 -20
  6. data/lib/biointerchange/genomics/gff3_feature_set.rb +11 -3
  7. data/lib/biointerchange/genomics/gff3_pragmas.rb +3 -3
  8. data/lib/biointerchange/genomics/gff3_rdf_ntriples.rb +217 -12
  9. data/lib/biointerchange/genomics/gff3_reader.rb +78 -20
  10. data/lib/biointerchange/genomics/gvf_reader.rb +9 -3
  11. data/lib/biointerchange/gff3o.rb +69 -55
  12. data/lib/biointerchange/goxref.rb +867 -0
  13. data/lib/biointerchange/gvf1o.rb +546 -82
  14. data/lib/biointerchange/textmining/text_mining_reader.rb +9 -0
  15. data/spec/gff3_rdfwriter_spec.rb +1 -1
  16. data/spec/gvf_rdfwriter_spec.rb +1 -1
  17. data/spec/text_mining_pdfx_xml_reader_spec.rb +3 -0
  18. data/spec/text_mining_pubannos_json_reader_spec.rb +4 -1
  19. data/supplemental/java/biointerchange/pom.xml +1 -1
  20. data/supplemental/java/biointerchange/src/main/java/org/biointerchange/vocabulary/GFF3O.java +93 -125
  21. data/supplemental/java/biointerchange/src/main/java/org/biointerchange/vocabulary/GVF1O.java +304 -205
  22. data/supplemental/java/biointerchange/src/main/java/org/biointerchange/vocabulary/SIO.java +4044 -4290
  23. data/supplemental/java/biointerchange/src/main/java/org/biointerchange/vocabulary/SOFA.java +3 -3
  24. data/supplemental/python/biointerchange/gff3o.py +1 -89
  25. data/supplemental/python/biointerchange/gvf1o.py +129 -147
  26. data/supplemental/python/biointerchange/sio.py +817 -46
  27. data/supplemental/python/biointerchange/sofa.py +543 -543
  28. data/supplemental/python/setup.py +1 -1
  29. data/web/ontologies.html +1 -3
  30. metadata +7 -2
@@ -813,14 +813,23 @@ class SIO:
813
813
 
814
814
  @classmethod
815
815
  def is_dissimilar_to(cls):
816
+ """is dissimilar to is a relation between two entities in which one is considered dissimilar to the other based on some criteria.
817
+ (cls, http://semanticscience.org/resource/SIO_000495)
818
+ """
816
819
  return _namespace_SIO('http://semanticscience.org/resource/SIO_000495')
817
820
 
818
821
  @classmethod
819
822
  def is_opposite_to(cls):
823
+ """is opposite to is a relation between two entities in which one is diametrically opposed to the other.
824
+ (cls, http://semanticscience.org/resource/SIO_000496)
825
+ """
820
826
  return _namespace_SIO('http://semanticscience.org/resource/SIO_000496')
821
827
 
822
828
  @classmethod
823
829
  def is_version_of(cls):
830
+ """is version of is a relation that holds between any two versions in which one is a subsequent or alternate version of (cls, through a branch).
831
+ (http://semanticscience.org/resource/SIO_000497)
832
+ """
824
833
  return _namespace_SIO('http://semanticscience.org/resource/SIO_000497')
825
834
 
826
835
  @classmethod
@@ -1186,6 +1195,55 @@ class SIO:
1186
1195
  """
1187
1196
  return _namespace_SIO('http://semanticscience.org/resource/SIO_000975')
1188
1197
 
1198
+ @classmethod
1199
+ def is_specialization_of(cls):
1200
+ """is specialization of is a relation between a more specific instance (cls, in terms of spatial/temporal localization & other attributres) than the other.
1201
+ (http://semanticscience.org/resource/SIO_001096)
1202
+ """
1203
+ return _namespace_SIO('http://semanticscience.org/resource/SIO_001096')
1204
+
1205
+ @classmethod
1206
+ def is_generalization_of(cls):
1207
+ """is generalization of is a relation between a more general instance (cls, in terms of spatial/temporal localization & other attributres) than the other.
1208
+ (http://semanticscience.org/resource/SIO_001097)
1209
+ """
1210
+ return _namespace_SIO('http://semanticscience.org/resource/SIO_001097')
1211
+
1212
+ @classmethod
1213
+ def is_alternate_of(cls):
1214
+ """is alternate of relates two specialized instances.
1215
+ (cls, http://semanticscience.org/resource/SIO_001098)
1216
+ """
1217
+ return _namespace_SIO('http://semanticscience.org/resource/SIO_001098')
1218
+
1219
+ @classmethod
1220
+ def is_mutual_capability_of(cls):
1221
+ return _namespace_SIO('http://semanticscience.org/resource/SIO_001101')
1222
+
1223
+ @classmethod
1224
+ def regulates(cls):
1225
+ return _namespace_SIO('http://semanticscience.org/resource/SIO_001154')
1226
+
1227
+ @classmethod
1228
+ def is_regulated_by(cls):
1229
+ return _namespace_SIO('http://semanticscience.org/resource/SIO_001155')
1230
+
1231
+ @classmethod
1232
+ def results_in(cls):
1233
+ return _namespace_SIO('http://semanticscience.org/resource/SIO_001156')
1234
+
1235
+ @classmethod
1236
+ def is_result_of(cls):
1237
+ return _namespace_SIO('http://semanticscience.org/resource/SIO_001157')
1238
+
1239
+ @classmethod
1240
+ def affects(cls):
1241
+ return _namespace_SIO('http://semanticscience.org/resource/SIO_001158')
1242
+
1243
+ @classmethod
1244
+ def is_affected_by(cls):
1245
+ return _namespace_SIO('http://semanticscience.org/resource/SIO_001159')
1246
+
1189
1247
  @classmethod
1190
1248
  def encodes(cls):
1191
1249
  """A relation between an biological information content entity and a product that it (cls, directly/indirectly) encodes.
@@ -1382,6 +1440,10 @@ class SIO:
1382
1440
  """
1383
1441
  return _namespace_SIO('http://semanticscience.org/resource/SIO_000036')
1384
1442
 
1443
+ @classmethod
1444
+ def spatial_quantity(cls):
1445
+ return _namespace_SIO('http://semanticscience.org/resource/SIO_000037')
1446
+
1385
1447
  @classmethod
1386
1448
  def physical_dimensional_quantity(cls):
1387
1449
  return _namespace_SIO('http://semanticscience.org/resource/SIO_000037')
@@ -1430,8 +1492,8 @@ class SIO:
1430
1492
  return _namespace_SIO('http://semanticscience.org/resource/SIO_000049')
1431
1493
 
1432
1494
  @classmethod
1433
- def composition(cls):
1434
- """composition is the quality of having anatomical parts.
1495
+ def compositional_quality(cls):
1496
+ """composition quality is a quality that describes its composition or anatomy.
1435
1497
  (cls, http://semanticscience.org/resource/SIO_000051)
1436
1498
  """
1437
1499
  return _namespace_SIO('http://semanticscience.org/resource/SIO_000051')
@@ -2455,8 +2517,8 @@ class SIO:
2455
2517
 
2456
2518
  @classmethod
2457
2519
  def emotion(cls):
2458
- """An emotion is a quality that an individual experiences due to an internal state of being or an involuntary physiological response.
2459
- (cls, http://semanticscience.org/resource/SIO_000276)
2520
+ """An emotion is a process (cls, experience) that arises internally or from an involuntary physiological response to a stimulus.
2521
+ (http://semanticscience.org/resource/SIO_000276)
2460
2522
  """
2461
2523
  return _namespace_SIO('http://semanticscience.org/resource/SIO_000276')
2462
2524
 
@@ -2720,7 +2782,7 @@ class SIO:
2720
2782
 
2721
2783
  @classmethod
2722
2784
  def to_record(cls):
2723
- """To record is the capability to register or collect information in a specified format on some physical medium.
2785
+ """To record is the capability to detect and transcribe information in a specified format on some physical medium.
2724
2786
  (cls, http://semanticscience.org/resource/SIO_000344)
2725
2787
  """
2726
2788
  return _namespace_SIO('http://semanticscience.org/resource/SIO_000344')
@@ -3000,6 +3062,9 @@ class SIO:
3000
3062
 
3001
3063
  @classmethod
3002
3064
  def to_provide(cls):
3065
+ """to provide is the capability to make available some object to another that requires it.
3066
+ (cls, http://semanticscience.org/resource/SIO_000397)
3067
+ """
3003
3068
  return _namespace_SIO('http://semanticscience.org/resource/SIO_000397')
3004
3069
 
3005
3070
  @classmethod
@@ -3870,6 +3935,9 @@ class SIO:
3870
3935
 
3871
3936
  @classmethod
3872
3937
  def to_cause_disease(cls):
3938
+ """to cause disease is the capability to materially change a biological object in that it functions abnormally.
3939
+ (cls, http://semanticscience.org/resource/SIO_000547)
3940
+ """
3873
3941
  return _namespace_SIO('http://semanticscience.org/resource/SIO_000547')
3874
3942
 
3875
3943
  @classmethod
@@ -4092,7 +4160,7 @@ class SIO:
4092
4160
 
4093
4161
  @classmethod
4094
4162
  def regulation(cls):
4095
- """regulation is the imposition of a requirement or action of one party to another.
4163
+ """regulation is a process that modulates the attributes of an object or process.
4096
4164
  (cls, http://semanticscience.org/resource/SIO_000589)
4097
4165
  """
4098
4166
  return _namespace_SIO('http://semanticscience.org/resource/SIO_000589')
@@ -4159,6 +4227,9 @@ class SIO:
4159
4227
 
4160
4228
  @classmethod
4161
4229
  def structure(cls):
4230
+ """structure is the specification that refers to the composition and arrangement of parts of an object.
4231
+ (cls, http://semanticscience.org/resource/SIO_000600)
4232
+ """
4162
4233
  return _namespace_SIO('http://semanticscience.org/resource/SIO_000600')
4163
4234
 
4164
4235
  @classmethod
@@ -4181,14 +4252,23 @@ class SIO:
4181
4252
 
4182
4253
  @classmethod
4183
4254
  def regulation_of_process(cls):
4255
+ """regulation of a process is a process that modulates the duration, frequency, spatial extent of a target process.
4256
+ (cls, http://semanticscience.org/resource/SIO_000609)
4257
+ """
4184
4258
  return _namespace_SIO('http://semanticscience.org/resource/SIO_000609')
4185
4259
 
4186
4260
  @classmethod
4187
4261
  def regulation_of_capability(cls):
4262
+ """regulation of capability is the regulation of the ability of one party by another.
4263
+ (cls, http://semanticscience.org/resource/SIO_000610)
4264
+ """
4188
4265
  return _namespace_SIO('http://semanticscience.org/resource/SIO_000610')
4189
4266
 
4190
4267
  @classmethod
4191
4268
  def regulation_of_catalytic_capability(cls):
4269
+ """the regulation of the enzymatic activity.
4270
+ (cls, http://semanticscience.org/resource/SIO_000611)
4271
+ """
4192
4272
  return _namespace_SIO('http://semanticscience.org/resource/SIO_000611')
4193
4273
 
4194
4274
  @classmethod
@@ -4282,21 +4362,24 @@ class SIO:
4282
4362
 
4283
4363
  @classmethod
4284
4364
  def chemical_structure(cls):
4285
- """Chemical structure is the quality of molecular geometry and electronic structure.
4365
+ """chemical structure is the structure of a chemical entity in terms of its molecular geometry and electronic structure.
4286
4366
  (cls, http://semanticscience.org/resource/SIO_000625)
4287
4367
  """
4288
4368
  return _namespace_SIO('http://semanticscience.org/resource/SIO_000625')
4289
4369
 
4290
4370
  @classmethod
4291
4371
  def molecular_structure(cls):
4372
+ """Molecular structure is the spatial arrangement of atoms in a molecule and the chemical bonds that hold the atoms together.
4373
+ (cls, http://semanticscience.org/resource/SIO_000626)
4374
+ """
4292
4375
  return _namespace_SIO('http://semanticscience.org/resource/SIO_000626')
4293
4376
 
4294
4377
  @classmethod
4295
4378
  def molecular_geometry(cls):
4296
- """Molecular geometry is the spatial arrangement of atoms in a molecule and the chemical bonds that hold the atoms together.
4297
- (cls, http://semanticscience.org/resource/SIO_000627)
4379
+ """Molecular structure is the spatial arrangement of atoms in a molecule and the chemical bonds that hold the atoms together.
4380
+ (cls, http://semanticscience.org/resource/SIO_000626)
4298
4381
  """
4299
- return _namespace_SIO('http://semanticscience.org/resource/SIO_000627')
4382
+ return _namespace_SIO('http://semanticscience.org/resource/SIO_000626')
4300
4383
 
4301
4384
  @classmethod
4302
4385
  def probability_measure(cls):
@@ -4448,7 +4531,7 @@ class SIO:
4448
4531
  return _namespace_SIO('http://semanticscience.org/resource/SIO_000688')
4449
4532
 
4450
4533
  @classmethod
4451
- def to_be_part_of(cls):
4534
+ def to_be_a_part_of(cls):
4452
4535
  """to be a part of is the capability to be assembled into a larger structure that persists in time.
4453
4536
  (cls, http://semanticscience.org/resource/SIO_000689)
4454
4537
  """
@@ -4461,12 +4544,11 @@ class SIO:
4461
4544
  """
4462
4545
  return _namespace_SIO('http://semanticscience.org/resource/SIO_000690')
4463
4546
 
4464
- @classmethod
4465
- def to_be_part_of_a_group(cls):
4466
- return _namespace_SIO('http://semanticscience.org/resource/SIO_000691')
4467
-
4468
4547
  @classmethod
4469
4548
  def to_be_actively_interacted_with(cls):
4549
+ """to be actively interacted with is the capability to be manipulated by some device or agent.
4550
+ (cls, http://semanticscience.org/resource/SIO_000692)
4551
+ """
4470
4552
  return _namespace_SIO('http://semanticscience.org/resource/SIO_000692')
4471
4553
 
4472
4554
  @classmethod
@@ -4478,14 +4560,23 @@ class SIO:
4478
4560
 
4479
4561
  @classmethod
4480
4562
  def to_be_passively_interacted_with(cls):
4563
+ """to be passively interacted with is the capability of an object to be observed.
4564
+ (cls, http://semanticscience.org/resource/SIO_000694)
4565
+ """
4481
4566
  return _namespace_SIO('http://semanticscience.org/resource/SIO_000694')
4482
4567
 
4483
4568
  @classmethod
4484
4569
  def to_be_recorded(cls):
4570
+ """to be recorded is the capability of an object to be observed in such a way that information about it can be transcribed in a specified format on some physical medium.
4571
+ (cls, http://semanticscience.org/resource/SIO_000695)
4572
+ """
4485
4573
  return _namespace_SIO('http://semanticscience.org/resource/SIO_000695')
4486
4574
 
4487
4575
  @classmethod
4488
4576
  def to_be_observed(cls):
4577
+ """to be observed is the capability of an object to be perceived.
4578
+ (cls, http://semanticscience.org/resource/SIO_000696)
4579
+ """
4489
4580
  return _namespace_SIO('http://semanticscience.org/resource/SIO_000696')
4490
4581
 
4491
4582
  @classmethod
@@ -4511,7 +4602,7 @@ class SIO:
4511
4602
 
4512
4603
  @classmethod
4513
4604
  def to_be_interacted_with(cls):
4514
- """to be interacted with is the capability of an object to be physically touched or perturbed.
4605
+ """to be interacted with is the capability of an object to be target of a physical interaction.
4515
4606
  (cls, http://semanticscience.org/resource/SIO_000702)
4516
4607
  """
4517
4608
  return _namespace_SIO('http://semanticscience.org/resource/SIO_000702')
@@ -4614,6 +4705,9 @@ class SIO:
4614
4705
 
4615
4706
  @classmethod
4616
4707
  def to_be_compared(cls):
4708
+ """to be compared is the capability of an object to be examined in order to note the similarities or differences among a set of objects.
4709
+ (cls, http://semanticscience.org/resource/SIO_000722)
4710
+ """
4617
4711
  return _namespace_SIO('http://semanticscience.org/resource/SIO_000722')
4618
4712
 
4619
4713
  @classmethod
@@ -4632,6 +4726,9 @@ class SIO:
4632
4726
 
4633
4727
  @classmethod
4634
4728
  def to_be_examined(cls):
4729
+ """to be examined is the capability of an object to be observed in a detailed manner.
4730
+ (cls, http://semanticscience.org/resource/SIO_000725)
4731
+ """
4635
4732
  return _namespace_SIO('http://semanticscience.org/resource/SIO_000725')
4636
4733
 
4637
4734
  @classmethod
@@ -4792,9 +4889,9 @@ class SIO:
4792
4889
  return _namespace_SIO('http://semanticscience.org/resource/SIO_000757')
4793
4890
 
4794
4891
  @classmethod
4795
- def disorder(cls):
4796
- """disorder is a quality in one or more anatomical parts (cls, an anatomical collection) that are considered abnormal
4797
- (http://semanticscience.org/resource/SIO_000758)
4892
+ def disordered(cls):
4893
+ """disordered is a structural quality in which the parts of an object are non-rigid.
4894
+ (cls, http://semanticscience.org/resource/SIO_000758)
4798
4895
  """
4799
4896
  return _namespace_SIO('http://semanticscience.org/resource/SIO_000758')
4800
4897
 
@@ -4832,14 +4929,14 @@ class SIO:
4832
4929
  return _namespace_SIO('http://semanticscience.org/resource/SIO_000764')
4833
4930
 
4834
4931
  @classmethod
4835
- def p_value(cls):
4932
+ def probability_value(cls):
4836
4933
  """a p-value or probability value is the probability of obtaining a test statistic at least as extreme as the one that was actually observed, assuming that the null hypothesis is true
4837
4934
  (cls, http://semanticscience.org/resource/SIO_000765)
4838
4935
  """
4839
4936
  return _namespace_SIO('http://semanticscience.org/resource/SIO_000765')
4840
4937
 
4841
4938
  @classmethod
4842
- def probability_value(cls):
4939
+ def p_value(cls):
4843
4940
  """a p-value or probability value is the probability of obtaining a test statistic at least as extreme as the one that was actually observed, assuming that the null hypothesis is true
4844
4941
  (cls, http://semanticscience.org/resource/SIO_000765)
4845
4942
  """
@@ -5124,7 +5221,7 @@ class SIO:
5124
5221
 
5125
5222
  @classmethod
5126
5223
  def apathy(cls):
5127
- """apathy is an emotion exhibited by lack of interest, enthusiasm, or concern
5224
+ """apathy is an emotion characterized by lack of interest, enthusiasm, or concern
5128
5225
  (cls, http://semanticscience.org/resource/SIO_000816)
5129
5226
  """
5130
5227
  return _namespace_SIO('http://semanticscience.org/resource/SIO_000816')
@@ -5159,7 +5256,7 @@ class SIO:
5159
5256
 
5160
5257
  @classmethod
5161
5258
  def contempt(cls):
5162
- """contempt is disgust towards a lower status individual.
5259
+ """contempt is disgust towards a lower status individual.
5163
5260
  (cls, http://semanticscience.org/resource/SIO_000821)
5164
5261
  """
5165
5262
  return _namespace_SIO('http://semanticscience.org/resource/SIO_000821')
@@ -5345,7 +5442,7 @@ class SIO:
5345
5442
 
5346
5443
  @classmethod
5347
5444
  def indifference(cls):
5348
- """indifference is an emotion exhibited by lack of interest, concern, or sympathy.
5445
+ """indifference is an emotion characterized by lack of interest, concern, or sympathy.
5349
5446
  (cls, http://semanticscience.org/resource/SIO_000847)
5350
5447
  """
5351
5448
  return _namespace_SIO('http://semanticscience.org/resource/SIO_000847')
@@ -5434,7 +5531,7 @@ class SIO:
5434
5531
 
5435
5532
  @classmethod
5436
5533
  def rage(cls):
5437
- """Rage is a feeling of intense anger that is associated with the Fight-or-flight response.
5534
+ """Rage is a feeling of intense anger that is associated with the Fight-or-flight response.
5438
5535
  (cls, http://semanticscience.org/resource/SIO_000860)
5439
5536
  """
5440
5537
  return _namespace_SIO('http://semanticscience.org/resource/SIO_000860')
@@ -6763,6 +6860,13 @@ class SIO:
6763
6860
  """
6764
6861
  return _namespace_SIO('http://semanticscience.org/resource/SIO_001073')
6765
6862
 
6863
+ @classmethod
6864
+ def selector(cls):
6865
+ """a text span is a subset of contiguous sequence of characters of a textual entity.
6866
+ (cls, http://semanticscience.org/resource/SIO_001073)
6867
+ """
6868
+ return _namespace_SIO('http://semanticscience.org/resource/SIO_001073')
6869
+
6766
6870
  @classmethod
6767
6871
  def t_statistic(cls):
6768
6872
  """a t-statistic is a ratio of the departure of an estimated parameter from its notional value and its standard error.
@@ -6827,6 +6931,461 @@ class SIO:
6827
6931
  """
6828
6932
  return _namespace_SIO('http://semanticscience.org/resource/SIO_001083')
6829
6933
 
6934
+ @classmethod
6935
+ def liquid_solution(cls):
6936
+ """a liquid solution is a heterogeneous substance in a liquid state.
6937
+ (cls, http://semanticscience.org/resource/SIO_001084)
6938
+ """
6939
+ return _namespace_SIO('http://semanticscience.org/resource/SIO_001084')
6940
+
6941
+ @classmethod
6942
+ def to_remove_a_covalent_bond(cls):
6943
+ """to remove a covalent bond is the capability to covalently modify a chemical entity by removing a covalent bond.
6944
+ (cls, http://semanticscience.org/resource/SIO_001085)
6945
+ """
6946
+ return _namespace_SIO('http://semanticscience.org/resource/SIO_001085')
6947
+
6948
+ @classmethod
6949
+ def to_add_a_covalent_bond(cls):
6950
+ """to add a covalent bond is the capability to covalently modify a chemical entity by adding a covalent bond.
6951
+ (cls, http://semanticscience.org/resource/SIO_001086)
6952
+ """
6953
+ return _namespace_SIO('http://semanticscience.org/resource/SIO_001086')
6954
+
6955
+ @classmethod
6956
+ def to_modify_electronically(cls):
6957
+ return _namespace_SIO('http://semanticscience.org/resource/SIO_001087')
6958
+
6959
+ @classmethod
6960
+ def concentration(cls):
6961
+ """concentration is the quantity of a constituent divided by the total volume of a mixture.
6962
+ (cls, http://semanticscience.org/resource/SIO_001088)
6963
+ """
6964
+ return _namespace_SIO('http://semanticscience.org/resource/SIO_001088')
6965
+
6966
+ @classmethod
6967
+ def pH(cls):
6968
+ """pH is a measure of the activity of the (cls, solvated) hydrogen ion.
6969
+ (http://semanticscience.org/resource/SIO_001089)
6970
+ """
6971
+ return _namespace_SIO('http://semanticscience.org/resource/SIO_001089')
6972
+
6973
+ @classmethod
6974
+ def homogeneous(cls):
6975
+ """homogeneous is a quality that describes the uniform composition of an object.
6976
+ (cls, http://semanticscience.org/resource/SIO_001090)
6977
+ """
6978
+ return _namespace_SIO('http://semanticscience.org/resource/SIO_001090')
6979
+
6980
+ @classmethod
6981
+ def heterogeneous(cls):
6982
+ """homogeneous is a quality that describes the varied composition of an object.
6983
+ (cls, http://semanticscience.org/resource/SIO_001091)
6984
+ """
6985
+ return _namespace_SIO('http://semanticscience.org/resource/SIO_001091')
6986
+
6987
+ @classmethod
6988
+ def structural_quality(cls):
6989
+ """a structural quality is a quality of an object that describes its structure.
6990
+ (cls, http://semanticscience.org/resource/SIO_001092)
6991
+ """
6992
+ return _namespace_SIO('http://semanticscience.org/resource/SIO_001092')
6993
+
6994
+ @classmethod
6995
+ def rigid(cls):
6996
+ return _namespace_SIO('http://semanticscience.org/resource/SIO_001093')
6997
+
6998
+ @classmethod
6999
+ def bent(cls):
7000
+ return _namespace_SIO('http://semanticscience.org/resource/SIO_001094')
7001
+
7002
+ @classmethod
7003
+ def curved(cls):
7004
+ return _namespace_SIO('http://semanticscience.org/resource/SIO_001095')
7005
+
7006
+ @classmethod
7007
+ def electronic_structure(cls):
7008
+ """electronic structure is the electron configuration is the distribution of electrons of an atom or molecule (cls, or other physical structure) in atomic or molecular orbitals.
7009
+ (http://semanticscience.org/resource/SIO_001099)
7010
+ """
7011
+ return _namespace_SIO('http://semanticscience.org/resource/SIO_001099')
7012
+
7013
+ @classmethod
7014
+ def electronic_configuration(cls):
7015
+ """electronic structure is the electron configuration is the distribution of electrons of an atom or molecule (cls, or other physical structure) in atomic or molecular orbitals.
7016
+ (http://semanticscience.org/resource/SIO_001099)
7017
+ """
7018
+ return _namespace_SIO('http://semanticscience.org/resource/SIO_001099')
7019
+
7020
+ @classmethod
7021
+ def crystal_structure(cls):
7022
+ """a crystal structure is the arrangement of atoms or molecules in a crystalline liquid or solid.
7023
+ (cls, http://semanticscience.org/resource/SIO_001100)
7024
+ """
7025
+ return _namespace_SIO('http://semanticscience.org/resource/SIO_001100')
7026
+
7027
+ @classmethod
7028
+ def to_interact_and_to_be_interacted_with(cls):
7029
+ return _namespace_SIO('http://semanticscience.org/resource/SIO_001102')
7030
+
7031
+ @classmethod
7032
+ def to_gain_a_covalent_bond(cls):
7033
+ return _namespace_SIO('http://semanticscience.org/resource/SIO_001103')
7034
+
7035
+ @classmethod
7036
+ def to_lose_a_covalent_bond(cls):
7037
+ return _namespace_SIO('http://semanticscience.org/resource/SIO_001104')
7038
+
7039
+ @classmethod
7040
+ def to_ingest(cls):
7041
+ """to ingest is the capability to take into the body by the mouth for digestion or absorption
7042
+ (cls, http://semanticscience.org/resource/SIO_001105)
7043
+ """
7044
+ return _namespace_SIO('http://semanticscience.org/resource/SIO_001105')
7045
+
7046
+ @classmethod
7047
+ def to_produce(cls):
7048
+ return _namespace_SIO('http://semanticscience.org/resource/SIO_001106')
7049
+
7050
+ @classmethod
7051
+ def pathway(cls):
7052
+ return _namespace_SIO('http://semanticscience.org/resource/SIO_001107')
7053
+
7054
+ @classmethod
7055
+ def centrality_measure(cls):
7056
+ return _namespace_SIO('http://semanticscience.org/resource/SIO_001108')
7057
+
7058
+ @classmethod
7059
+ def mean(cls):
7060
+ """a mean is the central tendency of a collection of numbers taken as the sum of the numbers divided by the size of the collection.
7061
+ (cls, http://semanticscience.org/resource/SIO_001109)
7062
+ """
7063
+ return _namespace_SIO('http://semanticscience.org/resource/SIO_001109')
7064
+
7065
+ @classmethod
7066
+ def arithmeritic_mean(cls):
7067
+ """a mean is the central tendency of a collection of numbers taken as the sum of the numbers divided by the size of the collection.
7068
+ (cls, http://semanticscience.org/resource/SIO_001109)
7069
+ """
7070
+ return _namespace_SIO('http://semanticscience.org/resource/SIO_001109')
7071
+
7072
+ @classmethod
7073
+ def median(cls):
7074
+ """a median is the numerical value separating the higher half of a sample, a population, or a probability distribution, from the lower half.
7075
+ (cls, http://semanticscience.org/resource/SIO_001110)
7076
+ """
7077
+ return _namespace_SIO('http://semanticscience.org/resource/SIO_001110')
7078
+
7079
+ @classmethod
7080
+ def mode(cls):
7081
+ """a mode is the value that appears most often in a set of data.
7082
+ (cls, http://semanticscience.org/resource/SIO_001111)
7083
+ """
7084
+ return _namespace_SIO('http://semanticscience.org/resource/SIO_001111')
7085
+
7086
+ @classmethod
7087
+ def sum(cls):
7088
+ """a sum is the result of adding a set of values together.
7089
+ (cls, http://semanticscience.org/resource/SIO_001112)
7090
+ """
7091
+ return _namespace_SIO('http://semanticscience.org/resource/SIO_001112')
7092
+
7093
+ @classmethod
7094
+ def minimal_value(cls):
7095
+ """a minimal value is smallest value of an attribute for the entities in the defined set.
7096
+ (cls, http://semanticscience.org/resource/SIO_001113)
7097
+ """
7098
+ return _namespace_SIO('http://semanticscience.org/resource/SIO_001113')
7099
+
7100
+ @classmethod
7101
+ def min(cls):
7102
+ """a minimal value is smallest value of an attribute for the entities in the defined set.
7103
+ (cls, http://semanticscience.org/resource/SIO_001113)
7104
+ """
7105
+ return _namespace_SIO('http://semanticscience.org/resource/SIO_001113')
7106
+
7107
+ @classmethod
7108
+ def maximal_value(cls):
7109
+ """a maximal value is largest value of an attribute for the entities in the defined set.
7110
+ (cls, http://semanticscience.org/resource/SIO_001114)
7111
+ """
7112
+ return _namespace_SIO('http://semanticscience.org/resource/SIO_001114')
7113
+
7114
+ @classmethod
7115
+ def max(cls):
7116
+ """a maximal value is largest value of an attribute for the entities in the defined set.
7117
+ (cls, http://semanticscience.org/resource/SIO_001114)
7118
+ """
7119
+ return _namespace_SIO('http://semanticscience.org/resource/SIO_001114')
7120
+
7121
+ @classmethod
7122
+ def member_count(cls):
7123
+ """a count of the instances of a class or members in a collection.
7124
+ (cls, http://semanticscience.org/resource/SIO_001115)
7125
+ """
7126
+ return _namespace_SIO('http://semanticscience.org/resource/SIO_001115')
7127
+
7128
+ @classmethod
7129
+ def union(cls):
7130
+ """a union is a list of all of the values of an attribute for the entities in the defined set.
7131
+ (cls, http://semanticscience.org/resource/SIO_001116)
7132
+ """
7133
+ return _namespace_SIO('http://semanticscience.org/resource/SIO_001116')
7134
+
7135
+ @classmethod
7136
+ def intersection(cls):
7137
+ """an intersection is a list of only the values of an attribute for the entities in the defined set where all entities have that value.
7138
+ (cls, http://semanticscience.org/resource/SIO_001117)
7139
+ """
7140
+ return _namespace_SIO('http://semanticscience.org/resource/SIO_001117')
7141
+
7142
+ @classmethod
7143
+ def sequence(cls):
7144
+ """a sequence is an ordered list of entities. Like a set, it contains members (cls, also called elements, or terms).
7145
+ (http://semanticscience.org/resource/SIO_001118)
7146
+ """
7147
+ return _namespace_SIO('http://semanticscience.org/resource/SIO_001118')
7148
+
7149
+ @classmethod
7150
+ def gene_disease_association_linked_with_casual_mutation(cls):
7151
+ """a gene-variant disease association in which a mutation in the gene/protein results in the development or maintenance of the disease.
7152
+ (cls, http://semanticscience.org/resource/SIO_001119)
7153
+ """
7154
+ return _namespace_SIO('http://semanticscience.org/resource/SIO_001119')
7155
+
7156
+ @classmethod
7157
+ def therapeutic_gene_disease_association(cls):
7158
+ """a gene disease association in which the gene is a therapeutic marker for the disease.
7159
+ (cls, http://semanticscience.org/resource/SIO_001120)
7160
+ """
7161
+ return _namespace_SIO('http://semanticscience.org/resource/SIO_001120')
7162
+
7163
+ @classmethod
7164
+ def gene_disease_association_arising_from_a_therapeutic_role_of_the_gene_protein(cls):
7165
+ """a gene disease association in which the gene is a therapeutic marker for the disease.
7166
+ (cls, http://semanticscience.org/resource/SIO_001120)
7167
+ """
7168
+ return _namespace_SIO('http://semanticscience.org/resource/SIO_001120')
7169
+
7170
+ @classmethod
7171
+ def gene_disease_biomarker_association(cls):
7172
+ """a gene-disease association in which a the gene/protein is involved in the etiology or maintenance of the disease.
7173
+ (cls, http://semanticscience.org/resource/SIO_001121)
7174
+ """
7175
+ return _namespace_SIO('http://semanticscience.org/resource/SIO_001121')
7176
+
7177
+ @classmethod
7178
+ def gene_disease_association_linked_with_genetic_variation(cls):
7179
+ """a gene-disease association in which a sequence variation (cls, a mutation, a SNP) is associated with the disease.
7180
+ (http://semanticscience.org/resource/SIO_001122)
7181
+ """
7182
+ return _namespace_SIO('http://semanticscience.org/resource/SIO_001122')
7183
+
7184
+ @classmethod
7185
+ def gene_variant_disease_association(cls):
7186
+ """a gene-disease association in which a sequence variation (cls, a mutation, a SNP) is associated with the disease.
7187
+ (http://semanticscience.org/resource/SIO_001122)
7188
+ """
7189
+ return _namespace_SIO('http://semanticscience.org/resource/SIO_001122')
7190
+
7191
+ @classmethod
7192
+ def gene_disease_association_linked_with_altered_gene_expression(cls):
7193
+ """a gene-disease association in which the disease phenotype is associated with an altered expression of the gene.
7194
+ (cls, http://semanticscience.org/resource/SIO_001123)
7195
+ """
7196
+ return _namespace_SIO('http://semanticscience.org/resource/SIO_001123')
7197
+
7198
+ @classmethod
7199
+ def gene_disease_association_linked_with_post_translational_modification(cls):
7200
+ """a gene disease-association in which the disease phenotype is associated with post-translational modifications in the protein product.
7201
+ (cls, http://semanticscience.org/resource/SIO_001124)
7202
+ """
7203
+ return _namespace_SIO('http://semanticscience.org/resource/SIO_001124')
7204
+
7205
+ @classmethod
7206
+ def regulation_of_transcription(cls):
7207
+ return _namespace_SIO('http://semanticscience.org/resource/SIO_001125')
7208
+
7209
+ @classmethod
7210
+ def regulation_of_translation(cls):
7211
+ return _namespace_SIO('http://semanticscience.org/resource/SIO_001126')
7212
+
7213
+ @classmethod
7214
+ def regulation_of_molecular_quantity(cls):
7215
+ """A process that modulates the frequency, rate or extent of process involved in the creation or destruction of a molecule.
7216
+ (cls, http://semanticscience.org/resource/SIO_001127)
7217
+ """
7218
+ return _namespace_SIO('http://semanticscience.org/resource/SIO_001127')
7219
+
7220
+ @classmethod
7221
+ def regulation_of_molecular_production(cls):
7222
+ return _namespace_SIO('http://semanticscience.org/resource/SIO_001128')
7223
+
7224
+ @classmethod
7225
+ def regulation_of_molecular_degradation(cls):
7226
+ return _namespace_SIO('http://semanticscience.org/resource/SIO_001129')
7227
+
7228
+ @classmethod
7229
+ def protein_mediated_regulation_of_translation(cls):
7230
+ return _namespace_SIO('http://semanticscience.org/resource/SIO_001130')
7231
+
7232
+ @classmethod
7233
+ def rna_mediated_regulation_of_translation(cls):
7234
+ return _namespace_SIO('http://semanticscience.org/resource/SIO_001131')
7235
+
7236
+ @classmethod
7237
+ def process_maintenance(cls):
7238
+ """the process of maintaining some the frequency, rate or extent of another process.
7239
+ (cls, http://semanticscience.org/resource/SIO_001132)
7240
+ """
7241
+ return _namespace_SIO('http://semanticscience.org/resource/SIO_001132')
7242
+
7243
+ @classmethod
7244
+ def increased_frequency_of_process(cls):
7245
+ return _namespace_SIO('http://semanticscience.org/resource/SIO_001133')
7246
+
7247
+ @classmethod
7248
+ def decreased_frequency_of_process(cls):
7249
+ return _namespace_SIO('http://semanticscience.org/resource/SIO_001134')
7250
+
7251
+ @classmethod
7252
+ def regulation_of_process_frequency(cls):
7253
+ return _namespace_SIO('http://semanticscience.org/resource/SIO_001135')
7254
+
7255
+ @classmethod
7256
+ def regulation_of_process_duration(cls):
7257
+ return _namespace_SIO('http://semanticscience.org/resource/SIO_001136')
7258
+
7259
+ @classmethod
7260
+ def increased_duration_of_process(cls):
7261
+ return _namespace_SIO('http://semanticscience.org/resource/SIO_001137')
7262
+
7263
+ @classmethod
7264
+ def decreased_duration_of_process(cls):
7265
+ return _namespace_SIO('http://semanticscience.org/resource/SIO_001138')
7266
+
7267
+ @classmethod
7268
+ def regulation_of_process_spatial_extent(cls):
7269
+ return _namespace_SIO('http://semanticscience.org/resource/SIO_001139')
7270
+
7271
+ @classmethod
7272
+ def increased_spatial_extent_of_process(cls):
7273
+ return _namespace_SIO('http://semanticscience.org/resource/SIO_001140')
7274
+
7275
+ @classmethod
7276
+ def decreased_spatial_extent_of_process(cls):
7277
+ return _namespace_SIO('http://semanticscience.org/resource/SIO_001141')
7278
+
7279
+ @classmethod
7280
+ def maintenance_of_spatial_extent_of_process(cls):
7281
+ return _namespace_SIO('http://semanticscience.org/resource/SIO_001142')
7282
+
7283
+ @classmethod
7284
+ def maintenance_of_duration_of_process(cls):
7285
+ return _namespace_SIO('http://semanticscience.org/resource/SIO_001143')
7286
+
7287
+ @classmethod
7288
+ def maintenance_of_frequency_of_process(cls):
7289
+ return _namespace_SIO('http://semanticscience.org/resource/SIO_001144')
7290
+
7291
+ @classmethod
7292
+ def regulation_of_participant_quantity(cls):
7293
+ return _namespace_SIO('http://semanticscience.org/resource/SIO_001145')
7294
+
7295
+ @classmethod
7296
+ def increased_object_production(cls):
7297
+ return _namespace_SIO('http://semanticscience.org/resource/SIO_001146')
7298
+
7299
+ @classmethod
7300
+ def decreased_object_production(cls):
7301
+ return _namespace_SIO('http://semanticscience.org/resource/SIO_001147')
7302
+
7303
+ @classmethod
7304
+ def increased_object_consumption(cls):
7305
+ return _namespace_SIO('http://semanticscience.org/resource/SIO_001148')
7306
+
7307
+ @classmethod
7308
+ def decreased_object_consumption(cls):
7309
+ return _namespace_SIO('http://semanticscience.org/resource/SIO_001149')
7310
+
7311
+ @classmethod
7312
+ def regulation_of_object_consumption(cls):
7313
+ return _namespace_SIO('http://semanticscience.org/resource/SIO_001150')
7314
+
7315
+ @classmethod
7316
+ def regulation_of_object_production(cls):
7317
+ return _namespace_SIO('http://semanticscience.org/resource/SIO_001151')
7318
+
7319
+ @classmethod
7320
+ def maintenance_of_object_production(cls):
7321
+ return _namespace_SIO('http://semanticscience.org/resource/SIO_001152')
7322
+
7323
+ @classmethod
7324
+ def maintenance_of_object_consumption(cls):
7325
+ return _namespace_SIO('http://semanticscience.org/resource/SIO_001153')
7326
+
7327
+ @classmethod
7328
+ def number_of_objects_produced(cls):
7329
+ return _namespace_SIO('http://semanticscience.org/resource/SIO_001160')
7330
+
7331
+ @classmethod
7332
+ def number_of_objects_consumed(cls):
7333
+ return _namespace_SIO('http://semanticscience.org/resource/SIO_001161')
7334
+
7335
+ @classmethod
7336
+ def change_in_number_of_objects_produced(cls):
7337
+ return _namespace_SIO('http://semanticscience.org/resource/SIO_001162')
7338
+
7339
+ @classmethod
7340
+ def increase_in_number_of_objects_produced(cls):
7341
+ return _namespace_SIO('http://semanticscience.org/resource/SIO_001163')
7342
+
7343
+ @classmethod
7344
+ def decrease_in_number_of_objects_produced(cls):
7345
+ return _namespace_SIO('http://semanticscience.org/resource/SIO_001164')
7346
+
7347
+ @classmethod
7348
+ def user_account(cls):
7349
+ """an user account allows a user to authenticate to system services and be granted authorization to access them.
7350
+ (cls, http://semanticscience.org/resource/SIO_001165)
7351
+ """
7352
+ return _namespace_SIO('http://semanticscience.org/resource/SIO_001165')
7353
+
7354
+ @classmethod
7355
+ def annotation(cls):
7356
+ """An annotation is a written explanatory or critical description, or other in-context information (cls, e.g., pattern, motif, link), that has been associated with data or other types of information.
7357
+ (http://semanticscience.org/resource/SIO_001166)
7358
+ """
7359
+ return _namespace_SIO('http://semanticscience.org/resource/SIO_001166')
7360
+
7361
+ @classmethod
7362
+ def comment(cls):
7363
+ """a comment is a verbal or written remark often related to an added piece of information, or an observation or statement.
7364
+ (cls, http://semanticscience.org/resource/SIO_001167)
7365
+ """
7366
+ return _namespace_SIO('http://semanticscience.org/resource/SIO_001167')
7367
+
7368
+ @classmethod
7369
+ def audio_recording(cls):
7370
+ """an audio recording is an electrical or mechanical inscription and re-creation of sound waves, such as spoken voice, singing, instrumental music, or sound effects.
7371
+ (cls, http://semanticscience.org/resource/SIO_001168)
7372
+ """
7373
+ return _namespace_SIO('http://semanticscience.org/resource/SIO_001168')
7374
+
7375
+ @classmethod
7376
+ def issue(cls):
7377
+ """an issue is a single instance of a periodically published journal, magazine, or newspaper.
7378
+ (cls, http://semanticscience.org/resource/SIO_001169)
7379
+ """
7380
+ return _namespace_SIO('http://semanticscience.org/resource/SIO_001169')
7381
+
7382
+ @classmethod
7383
+ def slideshow(cls):
7384
+ """a slideshow is a visual presentation of information contained within a collection of slides.
7385
+ (cls, http://semanticscience.org/resource/SIO_001170)
7386
+ """
7387
+ return _namespace_SIO('http://semanticscience.org/resource/SIO_001170')
7388
+
6830
7389
  @classmethod
6831
7390
  def organism(cls):
6832
7391
  """a biological organisn is a biological entity that consists of one or more cells and is capable of genomic replication (cls, independently or not).
@@ -7355,8 +7914,8 @@ class SIO:
7355
7914
  return _namespace_SIO('http://semanticscience.org/resource/SIO_010286')
7356
7915
 
7357
7916
  @classmethod
7358
- def biochemical_regulation(cls):
7359
- """Biochemical regulation is a biochemical process that changes the frequency, rate or extent of a downstream biochemical process.
7917
+ def regulation_of_biochemical_process(cls):
7918
+ """A process that changes the frequency, rate or extent of a biochemical process.
7360
7919
  (cls, http://semanticscience.org/resource/SIO_010287)
7361
7920
  """
7362
7921
  return _namespace_SIO('http://semanticscience.org/resource/SIO_010287')
@@ -7376,29 +7935,29 @@ class SIO:
7376
7935
  return _namespace_SIO('http://semanticscience.org/resource/SIO_010289')
7377
7936
 
7378
7937
  @classmethod
7379
- def positive_regulation(cls):
7380
- """Positve regulation is a biochemical regulation that increases the frequency, rate or extent of a downstream biochemical process.
7938
+ def process_up_regulation(cls):
7939
+ """up-regulation is a process that increases the frequency, rate or extent of one or more processes in relation to a reference state.
7381
7940
  (cls, http://semanticscience.org/resource/SIO_010295)
7382
7941
  """
7383
7942
  return _namespace_SIO('http://semanticscience.org/resource/SIO_010295')
7384
7943
 
7385
7944
  @classmethod
7386
- def Positive_biochemical_regulation(cls):
7387
- """Positve regulation is a biochemical regulation that increases the frequency, rate or extent of a downstream biochemical process.
7945
+ def positive_regulation(cls):
7946
+ """up-regulation is a process that increases the frequency, rate or extent of one or more processes in relation to a reference state.
7388
7947
  (cls, http://semanticscience.org/resource/SIO_010295)
7389
7948
  """
7390
7949
  return _namespace_SIO('http://semanticscience.org/resource/SIO_010295')
7391
7950
 
7392
7951
  @classmethod
7393
- def negative_regulation(cls):
7394
- """Negative regulation is a biochemical regulation that decreases the frequency, rate or extent of a downstream biochemical process.
7952
+ def process_down_regulation(cls):
7953
+ """down-regulation is a process that decreases the frequency, rate or extent of one or more processes in relation to a reference state.
7395
7954
  (cls, http://semanticscience.org/resource/SIO_010296)
7396
7955
  """
7397
7956
  return _namespace_SIO('http://semanticscience.org/resource/SIO_010296')
7398
7957
 
7399
7958
  @classmethod
7400
- def Negative_biochemical_regulation(cls):
7401
- """Negative regulation is a biochemical regulation that decreases the frequency, rate or extent of a downstream biochemical process.
7959
+ def negative_regulation(cls):
7960
+ """down-regulation is a process that decreases the frequency, rate or extent of one or more processes in relation to a reference state.
7402
7961
  (cls, http://semanticscience.org/resource/SIO_010296)
7403
7962
  """
7404
7963
  return _namespace_SIO('http://semanticscience.org/resource/SIO_010296')
@@ -7475,6 +8034,9 @@ class SIO:
7475
8034
 
7476
8035
  @classmethod
7477
8036
  def to_covalently_modify(cls):
8037
+ """to covalently modify is to materially change a molecule by adding or removing covalent bonds between atoms.
8038
+ (cls, http://semanticscience.org/resource/SIO_010340)
8039
+ """
7478
8040
  return _namespace_SIO('http://semanticscience.org/resource/SIO_010340')
7479
8041
 
7480
8042
  @classmethod
@@ -7526,10 +8088,16 @@ class SIO:
7526
8088
 
7527
8089
  @classmethod
7528
8090
  def to_combine(cls):
8091
+ """to combine is the capability to modify a set of objects in a way that the object is merged with another object to form a new object or substance.
8092
+ (cls, http://semanticscience.org/resource/SIO_010351)
8093
+ """
7529
8094
  return _namespace_SIO('http://semanticscience.org/resource/SIO_010351')
7530
8095
 
7531
8096
  @classmethod
7532
8097
  def to_breathe(cls):
8098
+ """to breathe is the capability to inhale and exhale air into the body during respiration.
8099
+ (cls, http://semanticscience.org/resource/SIO_010353)
8100
+ """
7533
8101
  return _namespace_SIO('http://semanticscience.org/resource/SIO_010353')
7534
8102
 
7535
8103
  @classmethod
@@ -7554,18 +8122,30 @@ class SIO:
7554
8122
 
7555
8123
  @classmethod
7556
8124
  def to_be_modified(cls):
8125
+ """to be modified is the capability to be actively interacted with in such a way that it leads to a physical reconfiguration.
8126
+ (cls, http://semanticscience.org/resource/SIO_010364)
8127
+ """
7557
8128
  return _namespace_SIO('http://semanticscience.org/resource/SIO_010364')
7558
8129
 
7559
8130
  @classmethod
7560
8131
  def to_be_cleaved(cls):
8132
+ """to be cleaved is the capability to be modified in a way that splits one part of the object from the other.
8133
+ (cls, http://semanticscience.org/resource/SIO_010365)
8134
+ """
7561
8135
  return _namespace_SIO('http://semanticscience.org/resource/SIO_010365')
7562
8136
 
7563
8137
  @classmethod
7564
8138
  def to_be_covalently_modified(cls):
8139
+ """to be covalently modified is the capability of a chemical entity to have bonds added or removed
8140
+ (cls, http://semanticscience.org/resource/SIO_010366)
8141
+ """
7565
8142
  return _namespace_SIO('http://semanticscience.org/resource/SIO_010366')
7566
8143
 
7567
8144
  @classmethod
7568
8145
  def to_be_combined(cls):
8146
+ """to be combined is the capability to be modified in a way that the object is merged with another object to form a new object or substance.
8147
+ (cls, http://semanticscience.org/resource/SIO_010367)
8148
+ """
7569
8149
  return _namespace_SIO('http://semanticscience.org/resource/SIO_010367')
7570
8150
 
7571
8151
  @classmethod
@@ -7577,26 +8157,44 @@ class SIO:
7577
8157
 
7578
8158
  @classmethod
7579
8159
  def to_be_electronically_modified(cls):
8160
+ """to be electronically modified is the capability of a chemical entity to have electrons added or removed
8161
+ (cls, http://semanticscience.org/resource/SIO_010369)
8162
+ """
7580
8163
  return _namespace_SIO('http://semanticscience.org/resource/SIO_010369')
7581
8164
 
7582
8165
  @classmethod
7583
8166
  def to_gain_an_electron(cls):
8167
+ """to gain an electron is the capability of a chemical entity to receive an electron.
8168
+ (cls, http://semanticscience.org/resource/SIO_010370)
8169
+ """
7584
8170
  return _namespace_SIO('http://semanticscience.org/resource/SIO_010370')
7585
8171
 
7586
8172
  @classmethod
7587
8173
  def to_lose_an_electron(cls):
8174
+ """to lose an electron is the capability of a chemical entity to lose an electron.
8175
+ (cls, http://semanticscience.org/resource/SIO_010371)
8176
+ """
7588
8177
  return _namespace_SIO('http://semanticscience.org/resource/SIO_010371')
7589
8178
 
7590
8179
  @classmethod
7591
8180
  def to_be_activated(cls):
8181
+ """to be activated is the capability to be modified in such a way that the conformational change leads to an increase in another capability.
8182
+ (cls, http://semanticscience.org/resource/SIO_010372)
8183
+ """
7592
8184
  return _namespace_SIO('http://semanticscience.org/resource/SIO_010372')
7593
8185
 
7594
8186
  @classmethod
7595
8187
  def to_be_inhibited(cls):
8188
+ """to be inhibited is the capability to be modified in such a way that the conformational change leads to an decrease in another capability.
8189
+ (cls, http://semanticscience.org/resource/SIO_010373)
8190
+ """
7596
8191
  return _namespace_SIO('http://semanticscience.org/resource/SIO_010373')
7597
8192
 
7598
8193
  @classmethod
7599
8194
  def to_be_conformationally_changed(cls):
8195
+ """to be conformationally changed is the capability to be modified in such a way that the object's conformation is changed.
8196
+ (cls, http://semanticscience.org/resource/SIO_010374)
8197
+ """
7600
8198
  return _namespace_SIO('http://semanticscience.org/resource/SIO_010374')
7601
8199
 
7602
8200
  @classmethod
@@ -7673,7 +8271,7 @@ class SIO:
7673
8271
 
7674
8272
  @classmethod
7675
8273
  def solvent(cls):
7676
- """A solvent is a liquid substance that can dissolve other substances (cls, solutes).
8274
+ """A solvent is a substance that can dissolve other substances (cls, solutes).
7677
8275
  (http://semanticscience.org/resource/SIO_010417)
7678
8276
  """
7679
8277
  return _namespace_SIO('http://semanticscience.org/resource/SIO_010417')
@@ -7722,8 +8320,8 @@ class SIO:
7722
8320
  return _namespace_SIO('http://semanticscience.org/resource/SIO_010426')
7723
8321
 
7724
8322
  @classmethod
7725
- def solution_component(cls):
7726
- """a solution component is a part of a solution.
8323
+ def liquid_solution_component(cls):
8324
+ """a liquid solution component is a part of a liquid solution.
7727
8325
  (cls, http://semanticscience.org/resource/SIO_010427)
7728
8326
  """
7729
8327
  return _namespace_SIO('http://semanticscience.org/resource/SIO_010427')
@@ -7905,6 +8503,9 @@ class SIO:
7905
8503
 
7906
8504
  @classmethod
7907
8505
  def nonpolar_solvent(cls):
8506
+ """a non-polar solvent is a solvent that exhibits a non-polar quality.
8507
+ (cls, http://semanticscience.org/resource/SIO_010460)
8508
+ """
7908
8509
  return _namespace_SIO('http://semanticscience.org/resource/SIO_010460')
7909
8510
 
7910
8511
  @classmethod
@@ -8131,7 +8732,7 @@ class SIO:
8131
8732
 
8132
8733
  @classmethod
8133
8734
  def chemical_reaction_pathway(cls):
8134
- """a chemical reaction pathway specifies is a series of chemical reactions towards producing some chemical product.
8735
+ """a chemical reaction pathway specifies a series of chemical reactions towards producing some chemical product.
8135
8736
  (cls, http://semanticscience.org/resource/SIO_010526)
8136
8737
  """
8137
8738
  return _namespace_SIO('http://semanticscience.org/resource/SIO_010526')
@@ -8794,8 +9395,8 @@ class SIO:
8794
9395
  return _namespace_SIO('http://semanticscience.org/resource/SIO_011117')
8795
9396
 
8796
9397
  @classmethod
8797
- def covalent_chemical_bond(cls):
8798
- """a covalent chemical bond is a strong submolecular interaction between atoms.
9398
+ def covalent_bond(cls):
9399
+ """a covalent bond is a strong submolecular interaction between atoms.
8799
9400
  (cls, http://semanticscience.org/resource/SIO_011118)
8800
9401
  """
8801
9402
  return _namespace_SIO('http://semanticscience.org/resource/SIO_011118')
@@ -9212,6 +9813,26 @@ class SIO:
9212
9813
  return True
9213
9814
  if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_000975'):
9214
9815
  return True
9816
+ if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_001096'):
9817
+ return True
9818
+ if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_001097'):
9819
+ return True
9820
+ if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_001098'):
9821
+ return True
9822
+ if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_001101'):
9823
+ return True
9824
+ if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_001154'):
9825
+ return True
9826
+ if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_001155'):
9827
+ return True
9828
+ if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_001156'):
9829
+ return True
9830
+ if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_001157'):
9831
+ return True
9832
+ if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_001158'):
9833
+ return True
9834
+ if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_001159'):
9835
+ return True
9215
9836
  if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_010078'):
9216
9837
  return True
9217
9838
  if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_010079'):
@@ -10176,8 +10797,6 @@ class SIO:
10176
10797
  return True
10177
10798
  if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_000626'):
10178
10799
  return True
10179
- if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_000627'):
10180
- return True
10181
10800
  if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_000638'):
10182
10801
  return True
10183
10802
  if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_000639'):
@@ -10236,8 +10855,6 @@ class SIO:
10236
10855
  return True
10237
10856
  if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_000690'):
10238
10857
  return True
10239
- if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_000691'):
10240
- return True
10241
10858
  if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_000692'):
10242
10859
  return True
10243
10860
  if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_000693'):
@@ -10956,6 +11573,160 @@ class SIO:
10956
11573
  return True
10957
11574
  if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_001083'):
10958
11575
  return True
11576
+ if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_001084'):
11577
+ return True
11578
+ if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_001085'):
11579
+ return True
11580
+ if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_001086'):
11581
+ return True
11582
+ if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_001087'):
11583
+ return True
11584
+ if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_001088'):
11585
+ return True
11586
+ if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_001089'):
11587
+ return True
11588
+ if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_001090'):
11589
+ return True
11590
+ if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_001091'):
11591
+ return True
11592
+ if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_001092'):
11593
+ return True
11594
+ if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_001093'):
11595
+ return True
11596
+ if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_001094'):
11597
+ return True
11598
+ if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_001095'):
11599
+ return True
11600
+ if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_001099'):
11601
+ return True
11602
+ if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_001100'):
11603
+ return True
11604
+ if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_001102'):
11605
+ return True
11606
+ if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_001103'):
11607
+ return True
11608
+ if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_001104'):
11609
+ return True
11610
+ if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_001105'):
11611
+ return True
11612
+ if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_001106'):
11613
+ return True
11614
+ if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_001107'):
11615
+ return True
11616
+ if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_001108'):
11617
+ return True
11618
+ if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_001109'):
11619
+ return True
11620
+ if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_001110'):
11621
+ return True
11622
+ if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_001111'):
11623
+ return True
11624
+ if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_001112'):
11625
+ return True
11626
+ if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_001113'):
11627
+ return True
11628
+ if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_001114'):
11629
+ return True
11630
+ if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_001115'):
11631
+ return True
11632
+ if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_001116'):
11633
+ return True
11634
+ if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_001117'):
11635
+ return True
11636
+ if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_001118'):
11637
+ return True
11638
+ if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_001119'):
11639
+ return True
11640
+ if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_001120'):
11641
+ return True
11642
+ if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_001121'):
11643
+ return True
11644
+ if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_001122'):
11645
+ return True
11646
+ if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_001123'):
11647
+ return True
11648
+ if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_001124'):
11649
+ return True
11650
+ if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_001125'):
11651
+ return True
11652
+ if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_001126'):
11653
+ return True
11654
+ if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_001127'):
11655
+ return True
11656
+ if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_001128'):
11657
+ return True
11658
+ if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_001129'):
11659
+ return True
11660
+ if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_001130'):
11661
+ return True
11662
+ if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_001131'):
11663
+ return True
11664
+ if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_001132'):
11665
+ return True
11666
+ if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_001133'):
11667
+ return True
11668
+ if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_001134'):
11669
+ return True
11670
+ if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_001135'):
11671
+ return True
11672
+ if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_001136'):
11673
+ return True
11674
+ if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_001137'):
11675
+ return True
11676
+ if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_001138'):
11677
+ return True
11678
+ if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_001139'):
11679
+ return True
11680
+ if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_001140'):
11681
+ return True
11682
+ if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_001141'):
11683
+ return True
11684
+ if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_001142'):
11685
+ return True
11686
+ if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_001143'):
11687
+ return True
11688
+ if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_001144'):
11689
+ return True
11690
+ if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_001145'):
11691
+ return True
11692
+ if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_001146'):
11693
+ return True
11694
+ if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_001147'):
11695
+ return True
11696
+ if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_001148'):
11697
+ return True
11698
+ if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_001149'):
11699
+ return True
11700
+ if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_001150'):
11701
+ return True
11702
+ if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_001151'):
11703
+ return True
11704
+ if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_001152'):
11705
+ return True
11706
+ if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_001153'):
11707
+ return True
11708
+ if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_001160'):
11709
+ return True
11710
+ if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_001161'):
11711
+ return True
11712
+ if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_001162'):
11713
+ return True
11714
+ if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_001163'):
11715
+ return True
11716
+ if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_001164'):
11717
+ return True
11718
+ if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_001165'):
11719
+ return True
11720
+ if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_001166'):
11721
+ return True
11722
+ if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_001167'):
11723
+ return True
11724
+ if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_001168'):
11725
+ return True
11726
+ if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_001169'):
11727
+ return True
11728
+ if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_001170'):
11729
+ return True
10959
11730
  if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_010000'):
10960
11731
  return True
10961
11732
  if uri == _namespace_SIO('http://semanticscience.org/resource/SIO_010001'):
@@ -11768,5 +12539,5 @@ class SIO:
11768
12539
  return cls.has_parent(cls.__parent_properties[uri], parent)
11769
12540
  return False
11770
12541
 
11771
- __parent_properties = { _namespace_SIO('http://semanticscience.org/resource/SIO_000008') : _namespace_SIO('http://semanticscience.org/resource/SIO_000001') , _namespace_SIO('http://semanticscience.org/resource/SIO_000011') : _namespace_SIO('http://semanticscience.org/resource/SIO_000001') , _namespace_SIO('http://semanticscience.org/resource/SIO_000020') : _namespace_SIO('http://semanticscience.org/resource/SIO_000210') , _namespace_SIO('http://semanticscience.org/resource/SIO_000028') : _namespace_SIO('http://semanticscience.org/resource/SIO_000145') , _namespace_SIO('http://semanticscience.org/resource/SIO_000029') : _namespace_SIO('http://semanticscience.org/resource/SIO_000096') , _namespace_SIO('http://semanticscience.org/resource/SIO_000053') : _namespace_SIO('http://semanticscience.org/resource/SIO_000028') , _namespace_SIO('http://semanticscience.org/resource/SIO_000054') : _namespace_SIO('http://semanticscience.org/resource/SIO_000053') , _namespace_SIO('http://semanticscience.org/resource/SIO_000059') : _namespace_SIO('http://semanticscience.org/resource/SIO_000008') , _namespace_SIO('http://semanticscience.org/resource/SIO_000060') : _namespace_SIO('http://semanticscience.org/resource/SIO_000205') , _namespace_SIO('http://semanticscience.org/resource/SIO_000061') : _namespace_SIO('http://semanticscience.org/resource/SIO_000322') , _namespace_SIO('http://semanticscience.org/resource/SIO_000062') : _namespace_SIO('http://semanticscience.org/resource/SIO_000322') , _namespace_SIO('http://semanticscience.org/resource/SIO_000063') : _namespace_SIO('http://semanticscience.org/resource/SIO_000062') , _namespace_SIO('http://semanticscience.org/resource/SIO_000064') : _namespace_SIO('http://semanticscience.org/resource/SIO_000219') , _namespace_SIO('http://semanticscience.org/resource/SIO_000066') : _namespace_SIO('http://semanticscience.org/resource/SIO_000253') , _namespace_SIO('http://semanticscience.org/resource/SIO_000068') : _namespace_SIO('http://semanticscience.org/resource/SIO_000061') , _namespace_SIO('http://semanticscience.org/resource/SIO_000093') : _namespace_SIO('http://semanticscience.org/resource/SIO_000068') , _namespace_SIO('http://semanticscience.org/resource/SIO_000095') : _namespace_SIO('http://semanticscience.org/resource/SIO_000011') , _namespace_SIO('http://semanticscience.org/resource/SIO_000096') : _namespace_SIO('http://semanticscience.org/resource/SIO_000093') , _namespace_SIO('http://semanticscience.org/resource/SIO_000128') : _namespace_SIO('http://semanticscience.org/resource/SIO_000061') , _namespace_SIO('http://semanticscience.org/resource/SIO_000132') : _namespace_SIO('http://semanticscience.org/resource/SIO_000322') , _namespace_SIO('http://semanticscience.org/resource/SIO_000139') : _namespace_SIO('http://semanticscience.org/resource/SIO_000132') , _namespace_SIO('http://semanticscience.org/resource/SIO_000145') : _namespace_SIO('http://semanticscience.org/resource/SIO_000322') , _namespace_SIO('http://semanticscience.org/resource/SIO_000202') : _namespace_SIO('http://semanticscience.org/resource/SIO_000145') , _namespace_SIO('http://semanticscience.org/resource/SIO_000203') : _namespace_SIO('http://semanticscience.org/resource/SIO_000322') , _namespace_SIO('http://semanticscience.org/resource/SIO_000204') : _namespace_SIO('http://semanticscience.org/resource/SIO_000322') , _namespace_SIO('http://semanticscience.org/resource/SIO_000205') : _namespace_SIO('http://semanticscience.org/resource/SIO_000212') , _namespace_SIO('http://semanticscience.org/resource/SIO_000206') : _namespace_SIO('http://semanticscience.org/resource/SIO_000772') , _namespace_SIO('http://semanticscience.org/resource/SIO_000207') : _namespace_SIO('http://semanticscience.org/resource/SIO_000772') , _namespace_SIO('http://semanticscience.org/resource/SIO_000208') : _namespace_SIO('http://semanticscience.org/resource/SIO_000773') , _namespace_SIO('http://semanticscience.org/resource/SIO_000209') : _namespace_SIO('http://semanticscience.org/resource/SIO_000773') , _namespace_SIO('http://semanticscience.org/resource/SIO_000210') : _namespace_SIO('http://semanticscience.org/resource/SIO_000628') , _namespace_SIO('http://semanticscience.org/resource/SIO_000211') : _namespace_SIO('http://semanticscience.org/resource/SIO_000203') , _namespace_SIO('http://semanticscience.org/resource/SIO_000212') : _namespace_SIO('http://semanticscience.org/resource/SIO_000001') , _namespace_SIO('http://semanticscience.org/resource/SIO_000213') : _namespace_SIO('http://semanticscience.org/resource/SIO_000425') , _namespace_SIO('http://semanticscience.org/resource/SIO_000214') : _namespace_SIO('http://semanticscience.org/resource/SIO_000425') , _namespace_SIO('http://semanticscience.org/resource/SIO_000215') : _namespace_SIO('http://semanticscience.org/resource/SIO_000011') , _namespace_SIO('http://semanticscience.org/resource/SIO_000216') : _namespace_SIO('http://semanticscience.org/resource/SIO_000008') , _namespace_SIO('http://semanticscience.org/resource/SIO_000217') : _namespace_SIO('http://semanticscience.org/resource/SIO_000223') , _namespace_SIO('http://semanticscience.org/resource/SIO_000218') : _namespace_SIO('http://semanticscience.org/resource/SIO_000224') , _namespace_SIO('http://semanticscience.org/resource/SIO_000219') : _namespace_SIO('http://semanticscience.org/resource/SIO_000011') , _namespace_SIO('http://semanticscience.org/resource/SIO_000221') : _namespace_SIO('http://semanticscience.org/resource/SIO_000008') , _namespace_SIO('http://semanticscience.org/resource/SIO_000222') : _namespace_SIO('http://semanticscience.org/resource/SIO_000011') , _namespace_SIO('http://semanticscience.org/resource/SIO_000223') : _namespace_SIO('http://semanticscience.org/resource/SIO_000008') , _namespace_SIO('http://semanticscience.org/resource/SIO_000224') : _namespace_SIO('http://semanticscience.org/resource/SIO_000011') , _namespace_SIO('http://semanticscience.org/resource/SIO_000225') : _namespace_SIO('http://semanticscience.org/resource/SIO_000235') , _namespace_SIO('http://semanticscience.org/resource/SIO_000226') : _namespace_SIO('http://semanticscience.org/resource/SIO_000236') , _namespace_SIO('http://semanticscience.org/resource/SIO_000227') : _namespace_SIO('http://semanticscience.org/resource/SIO_000643') , _namespace_SIO('http://semanticscience.org/resource/SIO_000228') : _namespace_SIO('http://semanticscience.org/resource/SIO_000644') , _namespace_SIO('http://semanticscience.org/resource/SIO_000229') : _namespace_SIO('http://semanticscience.org/resource/SIO_000132') , _namespace_SIO('http://semanticscience.org/resource/SIO_000230') : _namespace_SIO('http://semanticscience.org/resource/SIO_000132') , _namespace_SIO('http://semanticscience.org/resource/SIO_000231') : _namespace_SIO('http://semanticscience.org/resource/SIO_000062') , _namespace_SIO('http://semanticscience.org/resource/SIO_000232') : _namespace_SIO('http://semanticscience.org/resource/SIO_000062') , _namespace_SIO('http://semanticscience.org/resource/SIO_000233') : _namespace_SIO('http://semanticscience.org/resource/SIO_000011') , _namespace_SIO('http://semanticscience.org/resource/SIO_000234') : _namespace_SIO('http://semanticscience.org/resource/SIO_000008') , _namespace_SIO('http://semanticscience.org/resource/SIO_000235') : _namespace_SIO('http://semanticscience.org/resource/SIO_000586') , _namespace_SIO('http://semanticscience.org/resource/SIO_000236') : _namespace_SIO('http://semanticscience.org/resource/SIO_000646') , _namespace_SIO('http://semanticscience.org/resource/SIO_000240') : _namespace_SIO('http://semanticscience.org/resource/SIO_000203') , _namespace_SIO('http://semanticscience.org/resource/SIO_000241') : _namespace_SIO('http://semanticscience.org/resource/SIO_000652') , _namespace_SIO('http://semanticscience.org/resource/SIO_000242') : _namespace_SIO('http://semanticscience.org/resource/SIO_000652') , _namespace_SIO('http://semanticscience.org/resource/SIO_000243') : _namespace_SIO('http://semanticscience.org/resource/SIO_000322') , _namespace_SIO('http://semanticscience.org/resource/SIO_000244') : _namespace_SIO('http://semanticscience.org/resource/SIO_000352') , _namespace_SIO('http://semanticscience.org/resource/SIO_000245') : _namespace_SIO('http://semanticscience.org/resource/SIO_000294') , _namespace_SIO('http://semanticscience.org/resource/SIO_000246') : _namespace_SIO('http://semanticscience.org/resource/SIO_000245') , _namespace_SIO('http://semanticscience.org/resource/SIO_000247') : _namespace_SIO('http://semanticscience.org/resource/SIO_000244') , _namespace_SIO('http://semanticscience.org/resource/SIO_000248') : _namespace_SIO('http://semanticscience.org/resource/SIO_000352') , _namespace_SIO('http://semanticscience.org/resource/SIO_000249') : _namespace_SIO('http://semanticscience.org/resource/SIO_000294') , _namespace_SIO('http://semanticscience.org/resource/SIO_000250') : _namespace_SIO('http://semanticscience.org/resource/SIO_000248') , _namespace_SIO('http://semanticscience.org/resource/SIO_000251') : _namespace_SIO('http://semanticscience.org/resource/SIO_000249') , _namespace_SIO('http://semanticscience.org/resource/SIO_000252') : _namespace_SIO('http://semanticscience.org/resource/SIO_000212') , _namespace_SIO('http://semanticscience.org/resource/SIO_000253') : _namespace_SIO('http://semanticscience.org/resource/SIO_000008') , _namespace_SIO('http://semanticscience.org/resource/SIO_000254') : _namespace_SIO('http://semanticscience.org/resource/SIO_000011') , _namespace_SIO('http://semanticscience.org/resource/SIO_000255') : _namespace_SIO('http://semanticscience.org/resource/SIO_000008') , _namespace_SIO('http://semanticscience.org/resource/SIO_000272') : _namespace_SIO('http://semanticscience.org/resource/SIO_000736') , _namespace_SIO('http://semanticscience.org/resource/SIO_000273') : _namespace_SIO('http://semanticscience.org/resource/SIO_000053') , _namespace_SIO('http://semanticscience.org/resource/SIO_000274') : _namespace_SIO('http://semanticscience.org/resource/SIO_000497') , _namespace_SIO('http://semanticscience.org/resource/SIO_000277') : _namespace_SIO('http://semanticscience.org/resource/SIO_000631') , _namespace_SIO('http://semanticscience.org/resource/SIO_000278') : _namespace_SIO('http://semanticscience.org/resource/SIO_000252') , _namespace_SIO('http://semanticscience.org/resource/SIO_000283') : _namespace_SIO('http://semanticscience.org/resource/SIO_000272') , _namespace_SIO('http://semanticscience.org/resource/SIO_000286') : _namespace_SIO('http://semanticscience.org/resource/SIO_000497') , _namespace_SIO('http://semanticscience.org/resource/SIO_000288') : _namespace_SIO('http://semanticscience.org/resource/SIO_000203') , _namespace_SIO('http://semanticscience.org/resource/SIO_000291') : _namespace_SIO('http://semanticscience.org/resource/SIO_000230') , _namespace_SIO('http://semanticscience.org/resource/SIO_000292') : _namespace_SIO('http://semanticscience.org/resource/SIO_000231') , _namespace_SIO('http://semanticscience.org/resource/SIO_000293') : _namespace_SIO('http://semanticscience.org/resource/SIO_000203') , _namespace_SIO('http://semanticscience.org/resource/SIO_000294') : _namespace_SIO('http://semanticscience.org/resource/SIO_000243') , _namespace_SIO('http://semanticscience.org/resource/SIO_000310') : _namespace_SIO('http://semanticscience.org/resource/SIO_000093') , _namespace_SIO('http://semanticscience.org/resource/SIO_000311') : _namespace_SIO('http://semanticscience.org/resource/SIO_000232') , _namespace_SIO('http://semanticscience.org/resource/SIO_000312') : _namespace_SIO('http://semanticscience.org/resource/SIO_000229') , _namespace_SIO('http://semanticscience.org/resource/SIO_000313') : _namespace_SIO('http://semanticscience.org/resource/SIO_000310') , _namespace_SIO('http://semanticscience.org/resource/SIO_000322') : _namespace_SIO('http://semanticscience.org/resource/SIO_000001') , _namespace_SIO('http://semanticscience.org/resource/SIO_000323') : _namespace_SIO('http://semanticscience.org/resource/SIO_000128') , _namespace_SIO('http://semanticscience.org/resource/SIO_000324') : _namespace_SIO('http://semanticscience.org/resource/SIO_000202') , _namespace_SIO('http://semanticscience.org/resource/SIO_000325') : _namespace_SIO('http://semanticscience.org/resource/SIO_000322') , _namespace_SIO('http://semanticscience.org/resource/SIO_000332') : _namespace_SIO('http://semanticscience.org/resource/SIO_000563') , _namespace_SIO('http://semanticscience.org/resource/SIO_000334') : _namespace_SIO('http://semanticscience.org/resource/SIO_000652') , _namespace_SIO('http://semanticscience.org/resource/SIO_000335') : _namespace_SIO('http://semanticscience.org/resource/SIO_000652') , _namespace_SIO('http://semanticscience.org/resource/SIO_000338') : _namespace_SIO('http://semanticscience.org/resource/SIO_000563') , _namespace_SIO('http://semanticscience.org/resource/SIO_000339') : _namespace_SIO('http://semanticscience.org/resource/SIO_000557') , _namespace_SIO('http://semanticscience.org/resource/SIO_000341') : _namespace_SIO('http://semanticscience.org/resource/SIO_000425') , _namespace_SIO('http://semanticscience.org/resource/SIO_000352') : _namespace_SIO('http://semanticscience.org/resource/SIO_000243') , _namespace_SIO('http://semanticscience.org/resource/SIO_000355') : _namespace_SIO('http://semanticscience.org/resource/SIO_000132') , _namespace_SIO('http://semanticscience.org/resource/SIO_000356') : _namespace_SIO('http://semanticscience.org/resource/SIO_000062') , _namespace_SIO('http://semanticscience.org/resource/SIO_000362') : _namespace_SIO('http://semanticscience.org/resource/SIO_000008') , _namespace_SIO('http://semanticscience.org/resource/SIO_000363') : _namespace_SIO('http://semanticscience.org/resource/SIO_000011') , _namespace_SIO('http://semanticscience.org/resource/SIO_000364') : _namespace_SIO('http://semanticscience.org/resource/SIO_000253') , _namespace_SIO('http://semanticscience.org/resource/SIO_000365') : _namespace_SIO('http://semanticscience.org/resource/SIO_000219') , _namespace_SIO('http://semanticscience.org/resource/SIO_000369') : _namespace_SIO('http://semanticscience.org/resource/SIO_000273') , _namespace_SIO('http://semanticscience.org/resource/SIO_000420') : _namespace_SIO('http://semanticscience.org/resource/SIO_000425') , _namespace_SIO('http://semanticscience.org/resource/SIO_000421') : _namespace_SIO('http://semanticscience.org/resource/SIO_000425') , _namespace_SIO('http://semanticscience.org/resource/SIO_000422') : _namespace_SIO('http://semanticscience.org/resource/SIO_000283') , _namespace_SIO('http://semanticscience.org/resource/SIO_000424') : _namespace_SIO('http://semanticscience.org/resource/SIO_000283') , _namespace_SIO('http://semanticscience.org/resource/SIO_000425') : _namespace_SIO('http://semanticscience.org/resource/SIO_000001') , _namespace_SIO('http://semanticscience.org/resource/SIO_000426') : _namespace_SIO('http://semanticscience.org/resource/SIO_000425') , _namespace_SIO('http://semanticscience.org/resource/SIO_000427') : _namespace_SIO('http://semanticscience.org/resource/SIO_000424') , _namespace_SIO('http://semanticscience.org/resource/SIO_000477') : _namespace_SIO('http://semanticscience.org/resource/SIO_000422') , _namespace_SIO('http://semanticscience.org/resource/SIO_000482') : _namespace_SIO('http://semanticscience.org/resource/SIO_000283') , _namespace_SIO('http://semanticscience.org/resource/SIO_000484') : _namespace_SIO('http://semanticscience.org/resource/SIO_000482') , _namespace_SIO('http://semanticscience.org/resource/SIO_000490') : _namespace_SIO('http://semanticscience.org/resource/SIO_000482') , _namespace_SIO('http://semanticscience.org/resource/SIO_000491') : _namespace_SIO('http://semanticscience.org/resource/SIO_000482') , _namespace_SIO('http://semanticscience.org/resource/SIO_000495') : _namespace_SIO('http://semanticscience.org/resource/SIO_000272') , _namespace_SIO('http://semanticscience.org/resource/SIO_000496') : _namespace_SIO('http://semanticscience.org/resource/SIO_000495') , _namespace_SIO('http://semanticscience.org/resource/SIO_000497') : _namespace_SIO('http://semanticscience.org/resource/SIO_000272') , _namespace_SIO('http://semanticscience.org/resource/SIO_000552') : _namespace_SIO('http://semanticscience.org/resource/SIO_000230') , _namespace_SIO('http://semanticscience.org/resource/SIO_000553') : _namespace_SIO('http://semanticscience.org/resource/SIO_000231') , _namespace_SIO('http://semanticscience.org/resource/SIO_000557') : _namespace_SIO('http://semanticscience.org/resource/SIO_000212') , _namespace_SIO('http://semanticscience.org/resource/SIO_000558') : _namespace_SIO('http://semanticscience.org/resource/SIO_010302') , _namespace_SIO('http://semanticscience.org/resource/SIO_000563') : _namespace_SIO('http://semanticscience.org/resource/SIO_000628') , _namespace_SIO('http://semanticscience.org/resource/SIO_000586') : _namespace_SIO('http://semanticscience.org/resource/SIO_000644') , _namespace_SIO('http://semanticscience.org/resource/SIO_000628') : _namespace_SIO('http://semanticscience.org/resource/SIO_000001') , _namespace_SIO('http://semanticscience.org/resource/SIO_000629') : _namespace_SIO('http://semanticscience.org/resource/SIO_000557') , _namespace_SIO('http://semanticscience.org/resource/SIO_000630') : _namespace_SIO('http://semanticscience.org/resource/SIO_010302') , _namespace_SIO('http://semanticscience.org/resource/SIO_000631') : _namespace_SIO('http://semanticscience.org/resource/SIO_000628') , _namespace_SIO('http://semanticscience.org/resource/SIO_000632') : _namespace_SIO('http://semanticscience.org/resource/SIO_000210') , _namespace_SIO('http://semanticscience.org/resource/SIO_000633') : _namespace_SIO('http://semanticscience.org/resource/SIO_000205') , _namespace_SIO('http://semanticscience.org/resource/SIO_000634') : _namespace_SIO('http://semanticscience.org/resource/SIO_000558') , _namespace_SIO('http://semanticscience.org/resource/SIO_000635') : _namespace_SIO('http://semanticscience.org/resource/SIO_000294') , _namespace_SIO('http://semanticscience.org/resource/SIO_000636') : _namespace_SIO('http://semanticscience.org/resource/SIO_000352') , _namespace_SIO('http://semanticscience.org/resource/SIO_000641') : _namespace_SIO('http://semanticscience.org/resource/SIO_000008') , _namespace_SIO('http://semanticscience.org/resource/SIO_000642') : _namespace_SIO('http://semanticscience.org/resource/SIO_000011') , _namespace_SIO('http://semanticscience.org/resource/SIO_000643') : _namespace_SIO('http://semanticscience.org/resource/SIO_000224') , _namespace_SIO('http://semanticscience.org/resource/SIO_000644') : _namespace_SIO('http://semanticscience.org/resource/SIO_000223') , _namespace_SIO('http://semanticscience.org/resource/SIO_000646') : _namespace_SIO('http://semanticscience.org/resource/SIO_000643') , _namespace_SIO('http://semanticscience.org/resource/SIO_000652') : _namespace_SIO('http://semanticscience.org/resource/SIO_000203') , _namespace_SIO('http://semanticscience.org/resource/SIO_000655') : _namespace_SIO('http://semanticscience.org/resource/SIO_000294') , _namespace_SIO('http://semanticscience.org/resource/SIO_000656') : _namespace_SIO('http://semanticscience.org/resource/SIO_000655') , _namespace_SIO('http://semanticscience.org/resource/SIO_000657') : _namespace_SIO('http://semanticscience.org/resource/SIO_000352') , _namespace_SIO('http://semanticscience.org/resource/SIO_000658') : _namespace_SIO('http://semanticscience.org/resource/SIO_000657') , _namespace_SIO('http://semanticscience.org/resource/SIO_000668') : _namespace_SIO('http://semanticscience.org/resource/SIO_000631') , _namespace_SIO('http://semanticscience.org/resource/SIO_000671') : _namespace_SIO('http://semanticscience.org/resource/SIO_000008') , _namespace_SIO('http://semanticscience.org/resource/SIO_000672') : _namespace_SIO('http://semanticscience.org/resource/SIO_000011') , _namespace_SIO('http://semanticscience.org/resource/SIO_000673') : _namespace_SIO('http://semanticscience.org/resource/SIO_000671') , _namespace_SIO('http://semanticscience.org/resource/SIO_000674') : _namespace_SIO('http://semanticscience.org/resource/SIO_000672') , _namespace_SIO('http://semanticscience.org/resource/SIO_000679') : _namespace_SIO('http://semanticscience.org/resource/SIO_000054') , _namespace_SIO('http://semanticscience.org/resource/SIO_000680') : _namespace_SIO('http://semanticscience.org/resource/SIO_000679') , _namespace_SIO('http://semanticscience.org/resource/SIO_000681') : _namespace_SIO('http://semanticscience.org/resource/SIO_000679') , _namespace_SIO('http://semanticscience.org/resource/SIO_000682') : _namespace_SIO('http://semanticscience.org/resource/SIO_000029') , _namespace_SIO('http://semanticscience.org/resource/SIO_000684') : _namespace_SIO('http://semanticscience.org/resource/SIO_000029') , _namespace_SIO('http://semanticscience.org/resource/SIO_000687') : _namespace_SIO('http://semanticscience.org/resource/SIO_000322') , _namespace_SIO('http://semanticscience.org/resource/SIO_000697') : _namespace_SIO('http://semanticscience.org/resource/SIO_000709') , _namespace_SIO('http://semanticscience.org/resource/SIO_000699') : _namespace_SIO('http://semanticscience.org/resource/SIO_000737') , _namespace_SIO('http://semanticscience.org/resource/SIO_000709') : _namespace_SIO('http://semanticscience.org/resource/SIO_000001') , _namespace_SIO('http://semanticscience.org/resource/SIO_000710') : _namespace_SIO('http://semanticscience.org/resource/SIO_000709') , _namespace_SIO('http://semanticscience.org/resource/SIO_000733') : _namespace_SIO('http://semanticscience.org/resource/SIO_000737') , _namespace_SIO('http://semanticscience.org/resource/SIO_000734') : _namespace_SIO('http://semanticscience.org/resource/SIO_000737') , _namespace_SIO('http://semanticscience.org/resource/SIO_000735') : _namespace_SIO('http://semanticscience.org/resource/SIO_000737') , _namespace_SIO('http://semanticscience.org/resource/SIO_000736') : _namespace_SIO('http://semanticscience.org/resource/SIO_000001') , _namespace_SIO('http://semanticscience.org/resource/SIO_000737') : _namespace_SIO('http://semanticscience.org/resource/SIO_000736') , _namespace_SIO('http://semanticscience.org/resource/SIO_000738') : _namespace_SIO('http://semanticscience.org/resource/SIO_000737') , _namespace_SIO('http://semanticscience.org/resource/SIO_000749') : _namespace_SIO('http://semanticscience.org/resource/SIO_000737') , _namespace_SIO('http://semanticscience.org/resource/SIO_000772') : _namespace_SIO('http://semanticscience.org/resource/SIO_000631') , _namespace_SIO('http://semanticscience.org/resource/SIO_000773') : _namespace_SIO('http://semanticscience.org/resource/SIO_000252') , _namespace_SIO('http://semanticscience.org/resource/SIO_000774') : _namespace_SIO('http://semanticscience.org/resource/SIO_000772') , _namespace_SIO('http://semanticscience.org/resource/SIO_000775') : _namespace_SIO('http://semanticscience.org/resource/SIO_000773') , _namespace_SIO('http://semanticscience.org/resource/SIO_000793') : _namespace_SIO('http://semanticscience.org/resource/SIO_000687') , _namespace_SIO('http://semanticscience.org/resource/SIO_000892') : _namespace_SIO('http://semanticscience.org/resource/SIO_000252') , _namespace_SIO('http://semanticscience.org/resource/SIO_000900') : _namespace_SIO('http://semanticscience.org/resource/SIO_000008') , _namespace_SIO('http://semanticscience.org/resource/SIO_000901') : _namespace_SIO('http://semanticscience.org/resource/SIO_000011') , _namespace_SIO('http://semanticscience.org/resource/SIO_000905') : _namespace_SIO('http://semanticscience.org/resource/SIO_000291') , _namespace_SIO('http://semanticscience.org/resource/SIO_000970') : _namespace_SIO('http://semanticscience.org/resource/SIO_000975') , _namespace_SIO('http://semanticscience.org/resource/SIO_000971') : _namespace_SIO('http://semanticscience.org/resource/SIO_000974') , _namespace_SIO('http://semanticscience.org/resource/SIO_000972') : _namespace_SIO('http://semanticscience.org/resource/SIO_000974') , _namespace_SIO('http://semanticscience.org/resource/SIO_000973') : _namespace_SIO('http://semanticscience.org/resource/SIO_000975') , _namespace_SIO('http://semanticscience.org/resource/SIO_000974') : _namespace_SIO('http://semanticscience.org/resource/SIO_000053') , _namespace_SIO('http://semanticscience.org/resource/SIO_000975') : _namespace_SIO('http://semanticscience.org/resource/SIO_000093') , _namespace_SIO('http://semanticscience.org/resource/SIO_010078') : _namespace_SIO('http://semanticscience.org/resource/SIO_000338') , _namespace_SIO('http://semanticscience.org/resource/SIO_010079') : _namespace_SIO('http://semanticscience.org/resource/SIO_000339') , _namespace_SIO('http://semanticscience.org/resource/SIO_010080') : _namespace_SIO('http://semanticscience.org/resource/SIO_010078') , _namespace_SIO('http://semanticscience.org/resource/SIO_010081') : _namespace_SIO('http://semanticscience.org/resource/SIO_010079') , _namespace_SIO('http://semanticscience.org/resource/SIO_010082') : _namespace_SIO('http://semanticscience.org/resource/SIO_010078') , _namespace_SIO('http://semanticscience.org/resource/SIO_010083') : _namespace_SIO('http://semanticscience.org/resource/SIO_010079') , _namespace_SIO('http://semanticscience.org/resource/SIO_010302') : _namespace_SIO('http://semanticscience.org/resource/SIO_000272') , _namespace_SIO('http://semanticscience.org/resource/SIO_000009') : _namespace_SIO('http://semanticscience.org/resource/SIO_000015') , _namespace_SIO('http://semanticscience.org/resource/SIO_000012') : _namespace_SIO('http://semanticscience.org/resource/SIO_000620') , _namespace_SIO('http://semanticscience.org/resource/SIO_000013') : _namespace_SIO('http://semanticscience.org/resource/SIO_000056') , _namespace_SIO('http://semanticscience.org/resource/SIO_000016') : _namespace_SIO('http://semanticscience.org/resource/SIO_000340') , _namespace_SIO('http://semanticscience.org/resource/SIO_000017') : _namespace_SIO('http://semanticscience.org/resource/SIO_000112') , _namespace_SIO('http://semanticscience.org/resource/SIO_000019') : _namespace_SIO('http://semanticscience.org/resource/SIO_000370') , _namespace_SIO('http://semanticscience.org/resource/SIO_000031') : _namespace_SIO('http://semanticscience.org/resource/SIO_000417') , _namespace_SIO('http://semanticscience.org/resource/SIO_000032') : _namespace_SIO('http://semanticscience.org/resource/SIO_000417') , _namespace_SIO('http://semanticscience.org/resource/SIO_000034') : _namespace_SIO('http://semanticscience.org/resource/SIO_000033') , _namespace_SIO('http://semanticscience.org/resource/SIO_000035') : _namespace_SIO('http://semanticscience.org/resource/SIO_000033') , _namespace_SIO('http://semanticscience.org/resource/SIO_000036') : _namespace_SIO('http://semanticscience.org/resource/SIO_000959') , _namespace_SIO('http://semanticscience.org/resource/SIO_000038') : _namespace_SIO('http://semanticscience.org/resource/SIO_000037') , _namespace_SIO('http://semanticscience.org/resource/SIO_000039') : _namespace_SIO('http://semanticscience.org/resource/SIO_000038') , _namespace_SIO('http://semanticscience.org/resource/SIO_000040') : _namespace_SIO('http://semanticscience.org/resource/SIO_000790') , _namespace_SIO('http://semanticscience.org/resource/SIO_000041') : _namespace_SIO('http://semanticscience.org/resource/SIO_000038') , _namespace_SIO('http://semanticscience.org/resource/SIO_000042') : _namespace_SIO('http://semanticscience.org/resource/SIO_000038') , _namespace_SIO('http://semanticscience.org/resource/SIO_000043') : _namespace_SIO('http://semanticscience.org/resource/SIO_000039') , _namespace_SIO('http://semanticscience.org/resource/SIO_000044') : _namespace_SIO('http://semanticscience.org/resource/SIO_000037') , _namespace_SIO('http://semanticscience.org/resource/SIO_000045') : _namespace_SIO('http://semanticscience.org/resource/SIO_000044') , _namespace_SIO('http://semanticscience.org/resource/SIO_000046') : _namespace_SIO('http://semanticscience.org/resource/SIO_000044') , _namespace_SIO('http://semanticscience.org/resource/SIO_000047') : _namespace_SIO('http://semanticscience.org/resource/SIO_000046') , _namespace_SIO('http://semanticscience.org/resource/SIO_000048') : _namespace_SIO('http://semanticscience.org/resource/SIO_000037') , _namespace_SIO('http://semanticscience.org/resource/SIO_000049') : _namespace_SIO('http://semanticscience.org/resource/SIO_000048') , _namespace_SIO('http://semanticscience.org/resource/SIO_000051') : _namespace_SIO('http://semanticscience.org/resource/SIO_000026') , _namespace_SIO('http://semanticscience.org/resource/SIO_000055') : _namespace_SIO('http://semanticscience.org/resource/SIO_000026') , _namespace_SIO('http://semanticscience.org/resource/SIO_000057') : _namespace_SIO('http://semanticscience.org/resource/SIO_000056') , _namespace_SIO('http://semanticscience.org/resource/SIO_000071') : _namespace_SIO('http://semanticscience.org/resource/SIO_000070') , _namespace_SIO('http://semanticscience.org/resource/SIO_000072') : _namespace_SIO('http://semanticscience.org/resource/SIO_000071') , _namespace_SIO('http://semanticscience.org/resource/SIO_000073') : _namespace_SIO('http://semanticscience.org/resource/SIO_000071') , _namespace_SIO('http://semanticscience.org/resource/SIO_000074') : _namespace_SIO('http://semanticscience.org/resource/SIO_000052') , _namespace_SIO('http://semanticscience.org/resource/SIO_000075') : _namespace_SIO('http://semanticscience.org/resource/SIO_000015') , _namespace_SIO('http://semanticscience.org/resource/SIO_000076') : _namespace_SIO('http://semanticscience.org/resource/SIO_000091') , _namespace_SIO('http://semanticscience.org/resource/SIO_000077') : _namespace_SIO('http://semanticscience.org/resource/SIO_000116') , _namespace_SIO('http://semanticscience.org/resource/SIO_000079') : _namespace_SIO('http://semanticscience.org/resource/SIO_000078') , _namespace_SIO('http://semanticscience.org/resource/SIO_000080') : _namespace_SIO('http://semanticscience.org/resource/SIO_000612') , _namespace_SIO('http://semanticscience.org/resource/SIO_000081') : _namespace_SIO('http://semanticscience.org/resource/SIO_000080') , _namespace_SIO('http://semanticscience.org/resource/SIO_000082') : _namespace_SIO('http://semanticscience.org/resource/SIO_000081') , _namespace_SIO('http://semanticscience.org/resource/SIO_000083') : _namespace_SIO('http://semanticscience.org/resource/SIO_000904') , _namespace_SIO('http://semanticscience.org/resource/SIO_000085') : _namespace_SIO('http://semanticscience.org/resource/SIO_000113') , _namespace_SIO('http://semanticscience.org/resource/SIO_000087') : _namespace_SIO('http://semanticscience.org/resource/SIO_000148') , _namespace_SIO('http://semanticscience.org/resource/SIO_000094') : _namespace_SIO('http://semanticscience.org/resource/SIO_000075') , _namespace_SIO('http://semanticscience.org/resource/SIO_000097') : _namespace_SIO('http://semanticscience.org/resource/SIO_000602') , _namespace_SIO('http://semanticscience.org/resource/SIO_000098') : _namespace_SIO('http://semanticscience.org/resource/SIO_000097') , _namespace_SIO('http://semanticscience.org/resource/SIO_000099') : _namespace_SIO('http://semanticscience.org/resource/SIO_000097') , _namespace_SIO('http://semanticscience.org/resource/SIO_000100') : _namespace_SIO('http://semanticscience.org/resource/SIO_000097') , _namespace_SIO('http://semanticscience.org/resource/SIO_000101') : _namespace_SIO('http://semanticscience.org/resource/SIO_000097') , _namespace_SIO('http://semanticscience.org/resource/SIO_000102') : _namespace_SIO('http://semanticscience.org/resource/SIO_000101') , _namespace_SIO('http://semanticscience.org/resource/SIO_000103') : _namespace_SIO('http://semanticscience.org/resource/SIO_000097') , _namespace_SIO('http://semanticscience.org/resource/SIO_000104') : _namespace_SIO('http://semanticscience.org/resource/SIO_000078') , _namespace_SIO('http://semanticscience.org/resource/SIO_000106') : _namespace_SIO('http://semanticscience.org/resource/SIO_000087') , _namespace_SIO('http://semanticscience.org/resource/SIO_000107') : _namespace_SIO('http://semanticscience.org/resource/SIO_000111') , _namespace_SIO('http://semanticscience.org/resource/SIO_000108') : _namespace_SIO('http://semanticscience.org/resource/SIO_000078') , _namespace_SIO('http://semanticscience.org/resource/SIO_000109') : _namespace_SIO('http://semanticscience.org/resource/SIO_000087') , _namespace_SIO('http://semanticscience.org/resource/SIO_000113') : _namespace_SIO('http://semanticscience.org/resource/SIO_000483') , _namespace_SIO('http://semanticscience.org/resource/SIO_000117') : _namespace_SIO('http://semanticscience.org/resource/SIO_000116') , _namespace_SIO('http://semanticscience.org/resource/SIO_000118') : _namespace_SIO('http://semanticscience.org/resource/SIO_000116') , _namespace_SIO('http://semanticscience.org/resource/SIO_000119') : _namespace_SIO('http://semanticscience.org/resource/SIO_000116') , _namespace_SIO('http://semanticscience.org/resource/SIO_000120') : _namespace_SIO('http://semanticscience.org/resource/SIO_000116') , _namespace_SIO('http://semanticscience.org/resource/SIO_000121') : _namespace_SIO('http://semanticscience.org/resource/SIO_000162') , _namespace_SIO('http://semanticscience.org/resource/SIO_000122') : _namespace_SIO('http://semanticscience.org/resource/SIO_000342') , _namespace_SIO('http://semanticscience.org/resource/SIO_000123') : _namespace_SIO('http://semanticscience.org/resource/SIO_000342') , _namespace_SIO('http://semanticscience.org/resource/SIO_000124') : _namespace_SIO('http://semanticscience.org/resource/SIO_000342') , _namespace_SIO('http://semanticscience.org/resource/SIO_000125') : _namespace_SIO('http://semanticscience.org/resource/SIO_000342') , _namespace_SIO('http://semanticscience.org/resource/SIO_000127') : _namespace_SIO('http://semanticscience.org/resource/SIO_000094') , _namespace_SIO('http://semanticscience.org/resource/SIO_000129') : _namespace_SIO('http://semanticscience.org/resource/SIO_000148') , _namespace_SIO('http://semanticscience.org/resource/SIO_000130') : _namespace_SIO('http://semanticscience.org/resource/SIO_000075') , _namespace_SIO('http://semanticscience.org/resource/SIO_000131') : _namespace_SIO('http://semanticscience.org/resource/SIO_000130') , _namespace_SIO('http://semanticscience.org/resource/SIO_000133') : _namespace_SIO('http://semanticscience.org/resource/SIO_000275') , _namespace_SIO('http://semanticscience.org/resource/SIO_000135') : _namespace_SIO('http://semanticscience.org/resource/SIO_000136') , _namespace_SIO('http://semanticscience.org/resource/SIO_000137') : _namespace_SIO('http://semanticscience.org/resource/SIO_000326') , _namespace_SIO('http://semanticscience.org/resource/SIO_000138') : _namespace_SIO('http://semanticscience.org/resource/SIO_000289') , _namespace_SIO('http://semanticscience.org/resource/SIO_000140') : _namespace_SIO('http://semanticscience.org/resource/SIO_000101') , _namespace_SIO('http://semanticscience.org/resource/SIO_000141') : _namespace_SIO('http://semanticscience.org/resource/SIO_000316') , _namespace_SIO('http://semanticscience.org/resource/SIO_000142') : _namespace_SIO('http://semanticscience.org/resource/SIO_000141') , _namespace_SIO('http://semanticscience.org/resource/SIO_000143') : _namespace_SIO('http://semanticscience.org/resource/SIO_000141') , _namespace_SIO('http://semanticscience.org/resource/SIO_000144') : _namespace_SIO('http://semanticscience.org/resource/SIO_000920') , _namespace_SIO('http://semanticscience.org/resource/SIO_000147') : _namespace_SIO('http://semanticscience.org/resource/SIO_000133') , _namespace_SIO('http://semanticscience.org/resource/SIO_000148') : _namespace_SIO('http://semanticscience.org/resource/SIO_000651') , _namespace_SIO('http://semanticscience.org/resource/SIO_000150') : _namespace_SIO('http://semanticscience.org/resource/SIO_000075') , _namespace_SIO('http://semanticscience.org/resource/SIO_000151') : _namespace_SIO('http://semanticscience.org/resource/SIO_000148') , _namespace_SIO('http://semanticscience.org/resource/SIO_000152') : _namespace_SIO('http://semanticscience.org/resource/SIO_000148') , _namespace_SIO('http://semanticscience.org/resource/SIO_000153') : _namespace_SIO('http://semanticscience.org/resource/SIO_000148') , _namespace_SIO('http://semanticscience.org/resource/SIO_000154') : _namespace_SIO('http://semanticscience.org/resource/SIO_000087') , _namespace_SIO('http://semanticscience.org/resource/SIO_000155') : _namespace_SIO('http://semanticscience.org/resource/SIO_000087') , _namespace_SIO('http://semanticscience.org/resource/SIO_000156') : _namespace_SIO('http://semanticscience.org/resource/SIO_000106') , _namespace_SIO('http://semanticscience.org/resource/SIO_000157') : _namespace_SIO('http://semanticscience.org/resource/SIO_000106') , _namespace_SIO('http://semanticscience.org/resource/SIO_000158') : _namespace_SIO('http://semanticscience.org/resource/SIO_000295') , _namespace_SIO('http://semanticscience.org/resource/SIO_000159') : _namespace_SIO('http://semanticscience.org/resource/SIO_000087') , _namespace_SIO('http://semanticscience.org/resource/SIO_000160') : _namespace_SIO('http://semanticscience.org/resource/SIO_000162') , _namespace_SIO('http://semanticscience.org/resource/SIO_000161') : _namespace_SIO('http://semanticscience.org/resource/SIO_000087') , _namespace_SIO('http://semanticscience.org/resource/SIO_000162') : _namespace_SIO('http://semanticscience.org/resource/SIO_000295') , _namespace_SIO('http://semanticscience.org/resource/SIO_000163') : _namespace_SIO('http://semanticscience.org/resource/SIO_000162') , _namespace_SIO('http://semanticscience.org/resource/SIO_000164') : _namespace_SIO('http://semanticscience.org/resource/SIO_000087') , _namespace_SIO('http://semanticscience.org/resource/SIO_000165') : _namespace_SIO('http://semanticscience.org/resource/SIO_000087') , _namespace_SIO('http://semanticscience.org/resource/SIO_000166') : _namespace_SIO('http://semanticscience.org/resource/SIO_000165') , _namespace_SIO('http://semanticscience.org/resource/SIO_000167') : _namespace_SIO('http://semanticscience.org/resource/SIO_000165') , _namespace_SIO('http://semanticscience.org/resource/SIO_000168') : _namespace_SIO('http://semanticscience.org/resource/SIO_000165') , _namespace_SIO('http://semanticscience.org/resource/SIO_000169') : _namespace_SIO('http://semanticscience.org/resource/SIO_000148') , _namespace_SIO('http://semanticscience.org/resource/SIO_000170') : _namespace_SIO('http://semanticscience.org/resource/SIO_000148') , _namespace_SIO('http://semanticscience.org/resource/SIO_000171') : _namespace_SIO('http://semanticscience.org/resource/SIO_000651') , _namespace_SIO('http://semanticscience.org/resource/SIO_000172') : _namespace_SIO('http://semanticscience.org/resource/SIO_000328') , _namespace_SIO('http://semanticscience.org/resource/SIO_000173') : _namespace_SIO('http://semanticscience.org/resource/SIO_000287') , _namespace_SIO('http://semanticscience.org/resource/SIO_000174') : _namespace_SIO('http://semanticscience.org/resource/SIO_000171') , _namespace_SIO('http://semanticscience.org/resource/SIO_000175') : _namespace_SIO('http://semanticscience.org/resource/SIO_000185') , _namespace_SIO('http://semanticscience.org/resource/SIO_000176') : _namespace_SIO('http://semanticscience.org/resource/SIO_000171') , _namespace_SIO('http://semanticscience.org/resource/SIO_000177') : _namespace_SIO('http://semanticscience.org/resource/SIO_000944') , _namespace_SIO('http://semanticscience.org/resource/SIO_000178') : _namespace_SIO('http://semanticscience.org/resource/SIO_000794') , _namespace_SIO('http://semanticscience.org/resource/SIO_000179') : _namespace_SIO('http://semanticscience.org/resource/SIO_000651') , _namespace_SIO('http://semanticscience.org/resource/SIO_000180') : _namespace_SIO('http://semanticscience.org/resource/SIO_000179') , _namespace_SIO('http://semanticscience.org/resource/SIO_000181') : _namespace_SIO('http://semanticscience.org/resource/SIO_000116') , _namespace_SIO('http://semanticscience.org/resource/SIO_000182') : _namespace_SIO('http://semanticscience.org/resource/SIO_000116') , _namespace_SIO('http://semanticscience.org/resource/SIO_000183') : _namespace_SIO('http://semanticscience.org/resource/SIO_000116') , _namespace_SIO('http://semanticscience.org/resource/SIO_000184') : _namespace_SIO('http://semanticscience.org/resource/SIO_000183') , _namespace_SIO('http://semanticscience.org/resource/SIO_000185') : _namespace_SIO('http://semanticscience.org/resource/SIO_000179') , _namespace_SIO('http://semanticscience.org/resource/SIO_000186') : _namespace_SIO('http://semanticscience.org/resource/SIO_000653') , _namespace_SIO('http://semanticscience.org/resource/SIO_000188') : _namespace_SIO('http://semanticscience.org/resource/SIO_000111') , _namespace_SIO('http://semanticscience.org/resource/SIO_000189') : _namespace_SIO('http://semanticscience.org/resource/SIO_000111') , _namespace_SIO('http://semanticscience.org/resource/SIO_000190') : _namespace_SIO('http://semanticscience.org/resource/SIO_000111') , _namespace_SIO('http://semanticscience.org/resource/SIO_000191') : _namespace_SIO('http://semanticscience.org/resource/SIO_000111') , _namespace_SIO('http://semanticscience.org/resource/SIO_000192') : _namespace_SIO('http://semanticscience.org/resource/SIO_000111') , _namespace_SIO('http://semanticscience.org/resource/SIO_000193') : _namespace_SIO('http://semanticscience.org/resource/SIO_000111') , _namespace_SIO('http://semanticscience.org/resource/SIO_000194') : _namespace_SIO('http://semanticscience.org/resource/SIO_000111') , _namespace_SIO('http://semanticscience.org/resource/SIO_000195') : _namespace_SIO('http://semanticscience.org/resource/SIO_000111') , _namespace_SIO('http://semanticscience.org/resource/SIO_000196') : _namespace_SIO('http://semanticscience.org/resource/SIO_000111') , _namespace_SIO('http://semanticscience.org/resource/SIO_000197') : _namespace_SIO('http://semanticscience.org/resource/SIO_000111') , _namespace_SIO('http://semanticscience.org/resource/SIO_000198') : _namespace_SIO('http://semanticscience.org/resource/SIO_000111') , _namespace_SIO('http://semanticscience.org/resource/SIO_000199') : _namespace_SIO('http://semanticscience.org/resource/SIO_000111') , _namespace_SIO('http://semanticscience.org/resource/SIO_000200') : _namespace_SIO('http://semanticscience.org/resource/SIO_000111') , _namespace_SIO('http://semanticscience.org/resource/SIO_000201') : _namespace_SIO('http://semanticscience.org/resource/SIO_000111') , _namespace_SIO('http://semanticscience.org/resource/SIO_000220') : _namespace_SIO('http://semanticscience.org/resource/SIO_000238') , _namespace_SIO('http://semanticscience.org/resource/SIO_000237') : _namespace_SIO('http://semanticscience.org/resource/SIO_000179') , _namespace_SIO('http://semanticscience.org/resource/SIO_000238') : _namespace_SIO('http://semanticscience.org/resource/SIO_000075') , _namespace_SIO('http://semanticscience.org/resource/SIO_000239') : _namespace_SIO('http://semanticscience.org/resource/SIO_000238') , _namespace_SIO('http://semanticscience.org/resource/SIO_000261') : _namespace_SIO('http://semanticscience.org/resource/SIO_000256') , _namespace_SIO('http://semanticscience.org/resource/SIO_000262') : _namespace_SIO('http://semanticscience.org/resource/SIO_000256') , _namespace_SIO('http://semanticscience.org/resource/SIO_000263') : _namespace_SIO('http://semanticscience.org/resource/SIO_000259') , _namespace_SIO('http://semanticscience.org/resource/SIO_000264') : _namespace_SIO('http://semanticscience.org/resource/SIO_000259') , _namespace_SIO('http://semanticscience.org/resource/SIO_000268') : _namespace_SIO('http://semanticscience.org/resource/SIO_000436') , _namespace_SIO('http://semanticscience.org/resource/SIO_000276') : _namespace_SIO('http://semanticscience.org/resource/SIO_000026') , _namespace_SIO('http://semanticscience.org/resource/SIO_000280') : _namespace_SIO('http://semanticscience.org/resource/SIO_000238') , _namespace_SIO('http://semanticscience.org/resource/SIO_000281') : _namespace_SIO('http://semanticscience.org/resource/SIO_000238') , _namespace_SIO('http://semanticscience.org/resource/SIO_000282') : _namespace_SIO('http://semanticscience.org/resource/SIO_000280') , _namespace_SIO('http://semanticscience.org/resource/SIO_000284') : _namespace_SIO('http://semanticscience.org/resource/SIO_000256') , _namespace_SIO('http://semanticscience.org/resource/SIO_000285') : _namespace_SIO('http://semanticscience.org/resource/SIO_000012') , _namespace_SIO('http://semanticscience.org/resource/SIO_000287') : _namespace_SIO('http://semanticscience.org/resource/SIO_000009') , _namespace_SIO('http://semanticscience.org/resource/SIO_000290') : _namespace_SIO('http://semanticscience.org/resource/SIO_000285') , _namespace_SIO('http://semanticscience.org/resource/SIO_000297') : _namespace_SIO('http://semanticscience.org/resource/SIO_000612') , _namespace_SIO('http://semanticscience.org/resource/SIO_000301') : _namespace_SIO('http://semanticscience.org/resource/SIO_000082') , _namespace_SIO('http://semanticscience.org/resource/SIO_000302') : _namespace_SIO('http://semanticscience.org/resource/SIO_000148') , _namespace_SIO('http://semanticscience.org/resource/SIO_000304') : _namespace_SIO('http://semanticscience.org/resource/SIO_000148') , _namespace_SIO('http://semanticscience.org/resource/SIO_000305') : _namespace_SIO('http://semanticscience.org/resource/SIO_000613') , _namespace_SIO('http://semanticscience.org/resource/SIO_000306') : _namespace_SIO('http://semanticscience.org/resource/SIO_000148') , _namespace_SIO('http://semanticscience.org/resource/SIO_000307') : _namespace_SIO('http://semanticscience.org/resource/SIO_000005') , _namespace_SIO('http://semanticscience.org/resource/SIO_000308') : _namespace_SIO('http://semanticscience.org/resource/SIO_000794') , _namespace_SIO('http://semanticscience.org/resource/SIO_000309') : _namespace_SIO('http://semanticscience.org/resource/SIO_000794') , _namespace_SIO('http://semanticscience.org/resource/SIO_000316') : _namespace_SIO('http://semanticscience.org/resource/SIO_000315') , _namespace_SIO('http://semanticscience.org/resource/SIO_000317') : _namespace_SIO('http://semanticscience.org/resource/SIO_000315') , _namespace_SIO('http://semanticscience.org/resource/SIO_000318') : _namespace_SIO('http://semanticscience.org/resource/SIO_000013') , _namespace_SIO('http://semanticscience.org/resource/SIO_000319') : _namespace_SIO('http://semanticscience.org/resource/SIO_000013') , _namespace_SIO('http://semanticscience.org/resource/SIO_000320') : _namespace_SIO('http://semanticscience.org/resource/SIO_000317') , _namespace_SIO('http://semanticscience.org/resource/SIO_000321') : _namespace_SIO('http://semanticscience.org/resource/SIO_000320') , _namespace_SIO('http://semanticscience.org/resource/SIO_000326') : _namespace_SIO('http://semanticscience.org/resource/SIO_000275') , _namespace_SIO('http://semanticscience.org/resource/SIO_000327') : _namespace_SIO('http://semanticscience.org/resource/SIO_000320') , _namespace_SIO('http://semanticscience.org/resource/SIO_000329') : _namespace_SIO('http://semanticscience.org/resource/SIO_000320') , _namespace_SIO('http://semanticscience.org/resource/SIO_000330') : _namespace_SIO('http://semanticscience.org/resource/SIO_000320') , _namespace_SIO('http://semanticscience.org/resource/SIO_000331') : _namespace_SIO('http://semanticscience.org/resource/SIO_000129') , _namespace_SIO('http://semanticscience.org/resource/SIO_000343') : _namespace_SIO('http://semanticscience.org/resource/SIO_000494') , _namespace_SIO('http://semanticscience.org/resource/SIO_000344') : _namespace_SIO('http://semanticscience.org/resource/SIO_000639') , _namespace_SIO('http://semanticscience.org/resource/SIO_000345') : _namespace_SIO('http://semanticscience.org/resource/SIO_000378') , _namespace_SIO('http://semanticscience.org/resource/SIO_000346') : _namespace_SIO('http://semanticscience.org/resource/SIO_000351') , _namespace_SIO('http://semanticscience.org/resource/SIO_000347') : _namespace_SIO('http://semanticscience.org/resource/SIO_000374') , _namespace_SIO('http://semanticscience.org/resource/SIO_000348') : _namespace_SIO('http://semanticscience.org/resource/SIO_000347') , _namespace_SIO('http://semanticscience.org/resource/SIO_000349') : _namespace_SIO('http://semanticscience.org/resource/SIO_000343') , _namespace_SIO('http://semanticscience.org/resource/SIO_000350') : _namespace_SIO('http://semanticscience.org/resource/SIO_000385') , _namespace_SIO('http://semanticscience.org/resource/SIO_000351') : _namespace_SIO('http://semanticscience.org/resource/SIO_000385') , _namespace_SIO('http://semanticscience.org/resource/SIO_000353') : _namespace_SIO('http://semanticscience.org/resource/SIO_000639') , _namespace_SIO('http://semanticscience.org/resource/SIO_000354') : _namespace_SIO('http://semanticscience.org/resource/SIO_000112') , _namespace_SIO('http://semanticscience.org/resource/SIO_000357') : _namespace_SIO('http://semanticscience.org/resource/SIO_010019') , _namespace_SIO('http://semanticscience.org/resource/SIO_000358') : _namespace_SIO('http://semanticscience.org/resource/SIO_000825') , _namespace_SIO('http://semanticscience.org/resource/SIO_000359') : _namespace_SIO('http://semanticscience.org/resource/SIO_000337') , _namespace_SIO('http://semanticscience.org/resource/SIO_000366') : _namespace_SIO('http://semanticscience.org/resource/SIO_000075') , _namespace_SIO('http://semanticscience.org/resource/SIO_000367') : _namespace_SIO('http://semanticscience.org/resource/SIO_000075') , _namespace_SIO('http://semanticscience.org/resource/SIO_000368') : _namespace_SIO('http://semanticscience.org/resource/SIO_000075') , _namespace_SIO('http://semanticscience.org/resource/SIO_000371') : _namespace_SIO('http://semanticscience.org/resource/SIO_000408') , _namespace_SIO('http://semanticscience.org/resource/SIO_000372') : _namespace_SIO('http://semanticscience.org/resource/SIO_000343') , _namespace_SIO('http://semanticscience.org/resource/SIO_000373') : _namespace_SIO('http://semanticscience.org/resource/SIO_000346') , _namespace_SIO('http://semanticscience.org/resource/SIO_000374') : _namespace_SIO('http://semanticscience.org/resource/SIO_000385') , _namespace_SIO('http://semanticscience.org/resource/SIO_000375') : _namespace_SIO('http://semanticscience.org/resource/SIO_000351') , _namespace_SIO('http://semanticscience.org/resource/SIO_000376') : _namespace_SIO('http://semanticscience.org/resource/SIO_000343') , _namespace_SIO('http://semanticscience.org/resource/SIO_000377') : _namespace_SIO('http://semanticscience.org/resource/SIO_000378') , _namespace_SIO('http://semanticscience.org/resource/SIO_000378') : _namespace_SIO('http://semanticscience.org/resource/SIO_000343') , _namespace_SIO('http://semanticscience.org/resource/SIO_000379') : _namespace_SIO('http://semanticscience.org/resource/SIO_001055') , _namespace_SIO('http://semanticscience.org/resource/SIO_000380') : _namespace_SIO('http://semanticscience.org/resource/SIO_000392') , _namespace_SIO('http://semanticscience.org/resource/SIO_000381') : _namespace_SIO('http://semanticscience.org/resource/SIO_000380') , _namespace_SIO('http://semanticscience.org/resource/SIO_000382') : _namespace_SIO('http://semanticscience.org/resource/SIO_000349') , _namespace_SIO('http://semanticscience.org/resource/SIO_000383') : _namespace_SIO('http://semanticscience.org/resource/SIO_000351') , _namespace_SIO('http://semanticscience.org/resource/SIO_000384') : _namespace_SIO('http://semanticscience.org/resource/SIO_000374') , _namespace_SIO('http://semanticscience.org/resource/SIO_000385') : _namespace_SIO('http://semanticscience.org/resource/SIO_000343') , _namespace_SIO('http://semanticscience.org/resource/SIO_000386') : _namespace_SIO('http://semanticscience.org/resource/SIO_000385') , _namespace_SIO('http://semanticscience.org/resource/SIO_000387') : _namespace_SIO('http://semanticscience.org/resource/SIO_000385') , _namespace_SIO('http://semanticscience.org/resource/SIO_000388') : _namespace_SIO('http://semanticscience.org/resource/SIO_000494') , _namespace_SIO('http://semanticscience.org/resource/SIO_000389') : _namespace_SIO('http://semanticscience.org/resource/SIO_000349') , _namespace_SIO('http://semanticscience.org/resource/SIO_000390') : _namespace_SIO('http://semanticscience.org/resource/SIO_000494') , _namespace_SIO('http://semanticscience.org/resource/SIO_000392') : _namespace_SIO('http://semanticscience.org/resource/SIO_000343') , _namespace_SIO('http://semanticscience.org/resource/SIO_000393') : _namespace_SIO('http://semanticscience.org/resource/SIO_000498') , _namespace_SIO('http://semanticscience.org/resource/SIO_000395') : _namespace_SIO('http://semanticscience.org/resource/SIO_000343') , _namespace_SIO('http://semanticscience.org/resource/SIO_000396') : _namespace_SIO('http://semanticscience.org/resource/SIO_000602') , _namespace_SIO('http://semanticscience.org/resource/SIO_000397') : _namespace_SIO('http://semanticscience.org/resource/SIO_000494') , _namespace_SIO('http://semanticscience.org/resource/SIO_000399') : _namespace_SIO('http://semanticscience.org/resource/SIO_000498') , _namespace_SIO('http://semanticscience.org/resource/SIO_000400') : _namespace_SIO('http://semanticscience.org/resource/SIO_000072') , _namespace_SIO('http://semanticscience.org/resource/SIO_000401') : _namespace_SIO('http://semanticscience.org/resource/SIO_000072') , _namespace_SIO('http://semanticscience.org/resource/SIO_000402') : _namespace_SIO('http://semanticscience.org/resource/SIO_000072') , _namespace_SIO('http://semanticscience.org/resource/SIO_000403') : _namespace_SIO('http://semanticscience.org/resource/SIO_000620') , _namespace_SIO('http://semanticscience.org/resource/SIO_000404') : _namespace_SIO('http://semanticscience.org/resource/SIO_000406') , _namespace_SIO('http://semanticscience.org/resource/SIO_000405') : _namespace_SIO('http://semanticscience.org/resource/SIO_000406') , _namespace_SIO('http://semanticscience.org/resource/SIO_000406') : _namespace_SIO('http://semanticscience.org/resource/SIO_000498') , _namespace_SIO('http://semanticscience.org/resource/SIO_000407') : _namespace_SIO('http://semanticscience.org/resource/SIO_000536') , _namespace_SIO('http://semanticscience.org/resource/SIO_000408') : _namespace_SIO('http://semanticscience.org/resource/SIO_000494') , _namespace_SIO('http://semanticscience.org/resource/SIO_000409') : _namespace_SIO('http://semanticscience.org/resource/SIO_000014') , _namespace_SIO('http://semanticscience.org/resource/SIO_000410') : _namespace_SIO('http://semanticscience.org/resource/SIO_000828') , _namespace_SIO('http://semanticscience.org/resource/SIO_000411') : _namespace_SIO('http://semanticscience.org/resource/SIO_000828') , _namespace_SIO('http://semanticscience.org/resource/SIO_000412') : _namespace_SIO('http://semanticscience.org/resource/SIO_000831') , _namespace_SIO('http://semanticscience.org/resource/SIO_000413') : _namespace_SIO('http://semanticscience.org/resource/SIO_000414') , _namespace_SIO('http://semanticscience.org/resource/SIO_000414') : _namespace_SIO('http://semanticscience.org/resource/SIO_000370') , _namespace_SIO('http://semanticscience.org/resource/SIO_000415') : _namespace_SIO('http://semanticscience.org/resource/SIO_000413') , _namespace_SIO('http://semanticscience.org/resource/SIO_000417') : _namespace_SIO('http://semanticscience.org/resource/SIO_000391') , _namespace_SIO('http://semanticscience.org/resource/SIO_000418') : _namespace_SIO('http://semanticscience.org/resource/SIO_000391') , _namespace_SIO('http://semanticscience.org/resource/SIO_000419') : _namespace_SIO('http://semanticscience.org/resource/SIO_000080') , _namespace_SIO('http://semanticscience.org/resource/SIO_000423') : _namespace_SIO('http://semanticscience.org/resource/SIO_000083') , _namespace_SIO('http://semanticscience.org/resource/SIO_000428') : _namespace_SIO('http://semanticscience.org/resource/SIO_000417') , _namespace_SIO('http://semanticscience.org/resource/SIO_000429') : _namespace_SIO('http://semanticscience.org/resource/SIO_000417') , _namespace_SIO('http://semanticscience.org/resource/SIO_000430') : _namespace_SIO('http://semanticscience.org/resource/SIO_000417') , _namespace_SIO('http://semanticscience.org/resource/SIO_000431') : _namespace_SIO('http://semanticscience.org/resource/SIO_000417') , _namespace_SIO('http://semanticscience.org/resource/SIO_000432') : _namespace_SIO('http://semanticscience.org/resource/SIO_000417') , _namespace_SIO('http://semanticscience.org/resource/SIO_000433') : _namespace_SIO('http://semanticscience.org/resource/SIO_000417') , _namespace_SIO('http://semanticscience.org/resource/SIO_000434') : _namespace_SIO('http://semanticscience.org/resource/SIO_000417') , _namespace_SIO('http://semanticscience.org/resource/SIO_000435') : _namespace_SIO('http://semanticscience.org/resource/SIO_000417') , _namespace_SIO('http://semanticscience.org/resource/SIO_000438') : _namespace_SIO('http://semanticscience.org/resource/SIO_000790') , _namespace_SIO('http://semanticscience.org/resource/SIO_000439') : _namespace_SIO('http://semanticscience.org/resource/SIO_000056') , _namespace_SIO('http://semanticscience.org/resource/SIO_000442') : _namespace_SIO('http://semanticscience.org/resource/SIO_000083') , _namespace_SIO('http://semanticscience.org/resource/SIO_000443') : _namespace_SIO('http://semanticscience.org/resource/SIO_000083') , _namespace_SIO('http://semanticscience.org/resource/SIO_000444') : _namespace_SIO('http://semanticscience.org/resource/SIO_000443') , _namespace_SIO('http://semanticscience.org/resource/SIO_000445') : _namespace_SIO('http://semanticscience.org/resource/SIO_000443') , _namespace_SIO('http://semanticscience.org/resource/SIO_000446') : _namespace_SIO('http://semanticscience.org/resource/SIO_000443') , _namespace_SIO('http://semanticscience.org/resource/SIO_000447') : _namespace_SIO('http://semanticscience.org/resource/SIO_000083') , _namespace_SIO('http://semanticscience.org/resource/SIO_000449') : _namespace_SIO('http://semanticscience.org/resource/SIO_000448') , _namespace_SIO('http://semanticscience.org/resource/SIO_000452') : _namespace_SIO('http://semanticscience.org/resource/SIO_000451') , _namespace_SIO('http://semanticscience.org/resource/SIO_000453') : _namespace_SIO('http://semanticscience.org/resource/SIO_000451') , _namespace_SIO('http://semanticscience.org/resource/SIO_000454') : _namespace_SIO('http://semanticscience.org/resource/SIO_000451') , _namespace_SIO('http://semanticscience.org/resource/SIO_000455') : _namespace_SIO('http://semanticscience.org/resource/SIO_000450') , _namespace_SIO('http://semanticscience.org/resource/SIO_000456') : _namespace_SIO('http://semanticscience.org/resource/SIO_000455') , _namespace_SIO('http://semanticscience.org/resource/SIO_000457') : _namespace_SIO('http://semanticscience.org/resource/SIO_000455') , _namespace_SIO('http://semanticscience.org/resource/SIO_000458') : _namespace_SIO('http://semanticscience.org/resource/SIO_000450') , _namespace_SIO('http://semanticscience.org/resource/SIO_000459') : _namespace_SIO('http://semanticscience.org/resource/SIO_000458') , _namespace_SIO('http://semanticscience.org/resource/SIO_000460') : _namespace_SIO('http://semanticscience.org/resource/SIO_000458') , _namespace_SIO('http://semanticscience.org/resource/SIO_000461') : _namespace_SIO('http://semanticscience.org/resource/SIO_000458') , _namespace_SIO('http://semanticscience.org/resource/SIO_000462') : _namespace_SIO('http://semanticscience.org/resource/SIO_000461') , _namespace_SIO('http://semanticscience.org/resource/SIO_000463') : _namespace_SIO('http://semanticscience.org/resource/SIO_000461') , _namespace_SIO('http://semanticscience.org/resource/SIO_000464') : _namespace_SIO('http://semanticscience.org/resource/SIO_000150') , _namespace_SIO('http://semanticscience.org/resource/SIO_000466') : _namespace_SIO('http://semanticscience.org/resource/SIO_000742') , _namespace_SIO('http://semanticscience.org/resource/SIO_000467') : _namespace_SIO('http://semanticscience.org/resource/SIO_000743') , _namespace_SIO('http://semanticscience.org/resource/SIO_000468') : _namespace_SIO('http://semanticscience.org/resource/SIO_000448') , _namespace_SIO('http://semanticscience.org/resource/SIO_000470') : _namespace_SIO('http://semanticscience.org/resource/SIO_000185') , _namespace_SIO('http://semanticscience.org/resource/SIO_000471') : _namespace_SIO('http://semanticscience.org/resource/SIO_000185') , _namespace_SIO('http://semanticscience.org/resource/SIO_000472') : _namespace_SIO('http://semanticscience.org/resource/SIO_000069') , _namespace_SIO('http://semanticscience.org/resource/SIO_000475') : _namespace_SIO('http://semanticscience.org/resource/SIO_000026') , _namespace_SIO('http://semanticscience.org/resource/SIO_000478') : _namespace_SIO('http://semanticscience.org/resource/SIO_000479') , _namespace_SIO('http://semanticscience.org/resource/SIO_000479') : _namespace_SIO('http://semanticscience.org/resource/SIO_000721') , _namespace_SIO('http://semanticscience.org/resource/SIO_000480') : _namespace_SIO('http://semanticscience.org/resource/SIO_000478') , _namespace_SIO('http://semanticscience.org/resource/SIO_000481') : _namespace_SIO('http://semanticscience.org/resource/SIO_000478') , _namespace_SIO('http://semanticscience.org/resource/SIO_000485') : _namespace_SIO('http://semanticscience.org/resource/SIO_010375') , _namespace_SIO('http://semanticscience.org/resource/SIO_000486') : _namespace_SIO('http://semanticscience.org/resource/SIO_010375') , _namespace_SIO('http://semanticscience.org/resource/SIO_000487') : _namespace_SIO('http://semanticscience.org/resource/SIO_010375') , _namespace_SIO('http://semanticscience.org/resource/SIO_000488') : _namespace_SIO('http://semanticscience.org/resource/SIO_010375') , _namespace_SIO('http://semanticscience.org/resource/SIO_000489') : _namespace_SIO('http://semanticscience.org/resource/SIO_010376') , _namespace_SIO('http://semanticscience.org/resource/SIO_000492') : _namespace_SIO('http://semanticscience.org/resource/SIO_000494') , _namespace_SIO('http://semanticscience.org/resource/SIO_000493') : _namespace_SIO('http://semanticscience.org/resource/SIO_000113') , _namespace_SIO('http://semanticscience.org/resource/SIO_000494') : _namespace_SIO('http://semanticscience.org/resource/SIO_000701') , _namespace_SIO('http://semanticscience.org/resource/SIO_000498') : _namespace_SIO('http://semanticscience.org/resource/SIO_000485') , _namespace_SIO('http://semanticscience.org/resource/SIO_000499') : _namespace_SIO('http://semanticscience.org/resource/SIO_000536') , _namespace_SIO('http://semanticscience.org/resource/SIO_000505') : _namespace_SIO('http://semanticscience.org/resource/SIO_000506') , _namespace_SIO('http://semanticscience.org/resource/SIO_000506') : _namespace_SIO('http://semanticscience.org/resource/SIO_000015') , _namespace_SIO('http://semanticscience.org/resource/SIO_000507') : _namespace_SIO('http://semanticscience.org/resource/SIO_000506') , _namespace_SIO('http://semanticscience.org/resource/SIO_000508') : _namespace_SIO('http://semanticscience.org/resource/SIO_000532') , _namespace_SIO('http://semanticscience.org/resource/SIO_000509') : _namespace_SIO('http://semanticscience.org/resource/SIO_000532') , _namespace_SIO('http://semanticscience.org/resource/SIO_000511') : _namespace_SIO('http://semanticscience.org/resource/SIO_000608') , _namespace_SIO('http://semanticscience.org/resource/SIO_000513') : _namespace_SIO('http://semanticscience.org/resource/SIO_000512') , _namespace_SIO('http://semanticscience.org/resource/SIO_000514') : _namespace_SIO('http://semanticscience.org/resource/SIO_000513') , _namespace_SIO('http://semanticscience.org/resource/SIO_000515') : _namespace_SIO('http://semanticscience.org/resource/SIO_000513') , _namespace_SIO('http://semanticscience.org/resource/SIO_000516') : _namespace_SIO('http://semanticscience.org/resource/SIO_000511') , _namespace_SIO('http://semanticscience.org/resource/SIO_000517') : _namespace_SIO('http://semanticscience.org/resource/SIO_000505') , _namespace_SIO('http://semanticscience.org/resource/SIO_000518') : _namespace_SIO('http://semanticscience.org/resource/SIO_000517') , _namespace_SIO('http://semanticscience.org/resource/SIO_000519') : _namespace_SIO('http://semanticscience.org/resource/SIO_000518') , _namespace_SIO('http://semanticscience.org/resource/SIO_000520') : _namespace_SIO('http://semanticscience.org/resource/SIO_000505') , _namespace_SIO('http://semanticscience.org/resource/SIO_000525') : _namespace_SIO('http://semanticscience.org/resource/SIO_000534') , _namespace_SIO('http://semanticscience.org/resource/SIO_000526') : _namespace_SIO('http://semanticscience.org/resource/SIO_000534') , _namespace_SIO('http://semanticscience.org/resource/SIO_000527') : _namespace_SIO('http://semanticscience.org/resource/SIO_000535') , _namespace_SIO('http://semanticscience.org/resource/SIO_000528') : _namespace_SIO('http://semanticscience.org/resource/SIO_000527') , _namespace_SIO('http://semanticscience.org/resource/SIO_000529') : _namespace_SIO('http://semanticscience.org/resource/SIO_000527') , _namespace_SIO('http://semanticscience.org/resource/SIO_000530') : _namespace_SIO('http://semanticscience.org/resource/SIO_000527') , _namespace_SIO('http://semanticscience.org/resource/SIO_000531') : _namespace_SIO('http://semanticscience.org/resource/SIO_000535') , _namespace_SIO('http://semanticscience.org/resource/SIO_000532') : _namespace_SIO('http://semanticscience.org/resource/SIO_000507') , _namespace_SIO('http://semanticscience.org/resource/SIO_000533') : _namespace_SIO('http://semanticscience.org/resource/SIO_000540') , _namespace_SIO('http://semanticscience.org/resource/SIO_000534') : _namespace_SIO('http://semanticscience.org/resource/SIO_000511') , _namespace_SIO('http://semanticscience.org/resource/SIO_000535') : _namespace_SIO('http://semanticscience.org/resource/SIO_000511') , _namespace_SIO('http://semanticscience.org/resource/SIO_000536') : _namespace_SIO('http://semanticscience.org/resource/SIO_000395') , _namespace_SIO('http://semanticscience.org/resource/SIO_000537') : _namespace_SIO('http://semanticscience.org/resource/SIO_000055') , _namespace_SIO('http://semanticscience.org/resource/SIO_000538') : _namespace_SIO('http://semanticscience.org/resource/SIO_000537') , _namespace_SIO('http://semanticscience.org/resource/SIO_000539') : _namespace_SIO('http://semanticscience.org/resource/SIO_000511') , _namespace_SIO('http://semanticscience.org/resource/SIO_000540') : _namespace_SIO('http://semanticscience.org/resource/SIO_000516') , _namespace_SIO('http://semanticscience.org/resource/SIO_000541') : _namespace_SIO('http://semanticscience.org/resource/SIO_000540') , _namespace_SIO('http://semanticscience.org/resource/SIO_000542') : _namespace_SIO('http://semanticscience.org/resource/SIO_000494') , _namespace_SIO('http://semanticscience.org/resource/SIO_000544') : _namespace_SIO('http://semanticscience.org/resource/SIO_000372') , _namespace_SIO('http://semanticscience.org/resource/SIO_000547') : _namespace_SIO('http://semanticscience.org/resource/SIO_000376') , _namespace_SIO('http://semanticscience.org/resource/SIO_000549') : _namespace_SIO('http://semanticscience.org/resource/SIO_010355') , _namespace_SIO('http://semanticscience.org/resource/SIO_000550') : _namespace_SIO('http://semanticscience.org/resource/SIO_010354') , _namespace_SIO('http://semanticscience.org/resource/SIO_000551') : _namespace_SIO('http://semanticscience.org/resource/SIO_010347') , _namespace_SIO('http://semanticscience.org/resource/SIO_000554') : _namespace_SIO('http://semanticscience.org/resource/SIO_000307') , _namespace_SIO('http://semanticscience.org/resource/SIO_000555') : _namespace_SIO('http://semanticscience.org/resource/SIO_000307') , _namespace_SIO('http://semanticscience.org/resource/SIO_000556') : _namespace_SIO('http://semanticscience.org/resource/SIO_010071') , _namespace_SIO('http://semanticscience.org/resource/SIO_000561') : _namespace_SIO('http://semanticscience.org/resource/SIO_011121') , _namespace_SIO('http://semanticscience.org/resource/SIO_000562') : _namespace_SIO('http://semanticscience.org/resource/SIO_000576') , _namespace_SIO('http://semanticscience.org/resource/SIO_000564') : _namespace_SIO('http://semanticscience.org/resource/SIO_000573') , _namespace_SIO('http://semanticscience.org/resource/SIO_000566') : _namespace_SIO('http://semanticscience.org/resource/SIO_000368') , _namespace_SIO('http://semanticscience.org/resource/SIO_000567') : _namespace_SIO('http://semanticscience.org/resource/SIO_000569') , _namespace_SIO('http://semanticscience.org/resource/SIO_000568') : _namespace_SIO('http://semanticscience.org/resource/SIO_000569') , _namespace_SIO('http://semanticscience.org/resource/SIO_000569') : _namespace_SIO('http://semanticscience.org/resource/SIO_000368') , _namespace_SIO('http://semanticscience.org/resource/SIO_000570') : _namespace_SIO('http://semanticscience.org/resource/SIO_000006') , _namespace_SIO('http://semanticscience.org/resource/SIO_000571') : _namespace_SIO('http://semanticscience.org/resource/SIO_000564') , _namespace_SIO('http://semanticscience.org/resource/SIO_000572') : _namespace_SIO('http://semanticscience.org/resource/SIO_000564') , _namespace_SIO('http://semanticscience.org/resource/SIO_000573') : _namespace_SIO('http://semanticscience.org/resource/SIO_000570') , _namespace_SIO('http://semanticscience.org/resource/SIO_000574') : _namespace_SIO('http://semanticscience.org/resource/SIO_000570') , _namespace_SIO('http://semanticscience.org/resource/SIO_000576') : _namespace_SIO('http://semanticscience.org/resource/SIO_010283') , _namespace_SIO('http://semanticscience.org/resource/SIO_000577') : _namespace_SIO('http://semanticscience.org/resource/SIO_010284') , _namespace_SIO('http://semanticscience.org/resource/SIO_000578') : _namespace_SIO('http://semanticscience.org/resource/SIO_010284') , _namespace_SIO('http://semanticscience.org/resource/SIO_000579') : _namespace_SIO('http://semanticscience.org/resource/SIO_000578') , _namespace_SIO('http://semanticscience.org/resource/SIO_000580') : _namespace_SIO('http://semanticscience.org/resource/SIO_000578') , _namespace_SIO('http://semanticscience.org/resource/SIO_000581') : _namespace_SIO('http://semanticscience.org/resource/SIO_000574') , _namespace_SIO('http://semanticscience.org/resource/SIO_000585') : _namespace_SIO('http://semanticscience.org/resource/SIO_000256') , _namespace_SIO('http://semanticscience.org/resource/SIO_000587') : _namespace_SIO('http://semanticscience.org/resource/SIO_000588') , _namespace_SIO('http://semanticscience.org/resource/SIO_000589') : _namespace_SIO('http://semanticscience.org/resource/SIO_000593') , _namespace_SIO('http://semanticscience.org/resource/SIO_000590') : _namespace_SIO('http://semanticscience.org/resource/SIO_000559') , _namespace_SIO('http://semanticscience.org/resource/SIO_000596') : _namespace_SIO('http://semanticscience.org/resource/SIO_000956') , _namespace_SIO('http://semanticscience.org/resource/SIO_000597') : _namespace_SIO('http://semanticscience.org/resource/SIO_000598') , _namespace_SIO('http://semanticscience.org/resource/SIO_000598') : _namespace_SIO('http://semanticscience.org/resource/SIO_000596') , _namespace_SIO('http://semanticscience.org/resource/SIO_000600') : _namespace_SIO('http://semanticscience.org/resource/SIO_000026') , _namespace_SIO('http://semanticscience.org/resource/SIO_000602') : _namespace_SIO('http://semanticscience.org/resource/SIO_000015') , _namespace_SIO('http://semanticscience.org/resource/SIO_000605') : _namespace_SIO('http://semanticscience.org/resource/SIO_000650') , _namespace_SIO('http://semanticscience.org/resource/SIO_000608') : _namespace_SIO('http://semanticscience.org/resource/SIO_000506') , _namespace_SIO('http://semanticscience.org/resource/SIO_000609') : _namespace_SIO('http://semanticscience.org/resource/SIO_000589') , _namespace_SIO('http://semanticscience.org/resource/SIO_000610') : _namespace_SIO('http://semanticscience.org/resource/SIO_000589') , _namespace_SIO('http://semanticscience.org/resource/SIO_000611') : _namespace_SIO('http://semanticscience.org/resource/SIO_000610') , _namespace_SIO('http://semanticscience.org/resource/SIO_000613') : _namespace_SIO('http://semanticscience.org/resource/SIO_000788') , _namespace_SIO('http://semanticscience.org/resource/SIO_000619') : _namespace_SIO('http://semanticscience.org/resource/SIO_000012') , _namespace_SIO('http://semanticscience.org/resource/SIO_000620') : _namespace_SIO('http://semanticscience.org/resource/SIO_000010') , _namespace_SIO('http://semanticscience.org/resource/SIO_000621') : _namespace_SIO('http://semanticscience.org/resource/SIO_000315') , _namespace_SIO('http://semanticscience.org/resource/SIO_000622') : _namespace_SIO('http://semanticscience.org/resource/SIO_000129') , _namespace_SIO('http://semanticscience.org/resource/SIO_000623') : _namespace_SIO('http://semanticscience.org/resource/SIO_000129') , _namespace_SIO('http://semanticscience.org/resource/SIO_000624') : _namespace_SIO('http://semanticscience.org/resource/SIO_010441') , _namespace_SIO('http://semanticscience.org/resource/SIO_000625') : _namespace_SIO('http://semanticscience.org/resource/SIO_000600') , _namespace_SIO('http://semanticscience.org/resource/SIO_000626') : _namespace_SIO('http://semanticscience.org/resource/SIO_000625') , _namespace_SIO('http://semanticscience.org/resource/SIO_000627') : _namespace_SIO('http://semanticscience.org/resource/SIO_000626') , _namespace_SIO('http://semanticscience.org/resource/SIO_000638') : _namespace_SIO('http://semanticscience.org/resource/SIO_000257') , _namespace_SIO('http://semanticscience.org/resource/SIO_000639') : _namespace_SIO('http://semanticscience.org/resource/SIO_000701') , _namespace_SIO('http://semanticscience.org/resource/SIO_000640') : _namespace_SIO('http://semanticscience.org/resource/SIO_000555') , _namespace_SIO('http://semanticscience.org/resource/SIO_000648') : _namespace_SIO('http://semanticscience.org/resource/SIO_000510') , _namespace_SIO('http://semanticscience.org/resource/SIO_000649') : _namespace_SIO('http://semanticscience.org/resource/SIO_000999') , _namespace_SIO('http://semanticscience.org/resource/SIO_000650') : _namespace_SIO('http://semanticscience.org/resource/SIO_000004') , _namespace_SIO('http://semanticscience.org/resource/SIO_000651') : _namespace_SIO('http://semanticscience.org/resource/SIO_000079') , _namespace_SIO('http://semanticscience.org/resource/SIO_000660') : _namespace_SIO('http://semanticscience.org/resource/SIO_000019') , _namespace_SIO('http://semanticscience.org/resource/SIO_000661') : _namespace_SIO('http://semanticscience.org/resource/SIO_000415') , _namespace_SIO('http://semanticscience.org/resource/SIO_000662') : _namespace_SIO('http://semanticscience.org/resource/SIO_000415') , _namespace_SIO('http://semanticscience.org/resource/SIO_000663') : _namespace_SIO('http://semanticscience.org/resource/SIO_000415') , _namespace_SIO('http://semanticscience.org/resource/SIO_000664') : _namespace_SIO('http://semanticscience.org/resource/SIO_000415') , _namespace_SIO('http://semanticscience.org/resource/SIO_000665') : _namespace_SIO('http://semanticscience.org/resource/SIO_000415') , _namespace_SIO('http://semanticscience.org/resource/SIO_000666') : _namespace_SIO('http://semanticscience.org/resource/SIO_000415') , _namespace_SIO('http://semanticscience.org/resource/SIO_000667') : _namespace_SIO('http://semanticscience.org/resource/SIO_000649') , _namespace_SIO('http://semanticscience.org/resource/SIO_000669') : _namespace_SIO('http://semanticscience.org/resource/SIO_000418') , _namespace_SIO('http://semanticscience.org/resource/SIO_000670') : _namespace_SIO('http://semanticscience.org/resource/SIO_000418') , _namespace_SIO('http://semanticscience.org/resource/SIO_000676') : _namespace_SIO('http://semanticscience.org/resource/SIO_000016') , _namespace_SIO('http://semanticscience.org/resource/SIO_000677') : _namespace_SIO('http://semanticscience.org/resource/SIO_000016') , _namespace_SIO('http://semanticscience.org/resource/SIO_000678') : _namespace_SIO('http://semanticscience.org/resource/SIO_000016') , _namespace_SIO('http://semanticscience.org/resource/SIO_000683') : _namespace_SIO('http://semanticscience.org/resource/SIO_000256') , _namespace_SIO('http://semanticscience.org/resource/SIO_000686') : _namespace_SIO('http://semanticscience.org/resource/SIO_000285') , _namespace_SIO('http://semanticscience.org/resource/SIO_000688') : _namespace_SIO('http://semanticscience.org/resource/SIO_000285') , _namespace_SIO('http://semanticscience.org/resource/SIO_000689') : _namespace_SIO('http://semanticscience.org/resource/SIO_000692') , _namespace_SIO('http://semanticscience.org/resource/SIO_000690') : _namespace_SIO('http://semanticscience.org/resource/SIO_000494') , _namespace_SIO('http://semanticscience.org/resource/SIO_000691') : _namespace_SIO('http://semanticscience.org/resource/SIO_000690') , _namespace_SIO('http://semanticscience.org/resource/SIO_000693') : _namespace_SIO('http://semanticscience.org/resource/SIO_000012') , _namespace_SIO('http://semanticscience.org/resource/SIO_000698') : _namespace_SIO('http://semanticscience.org/resource/SIO_000343') , _namespace_SIO('http://semanticscience.org/resource/SIO_000700') : _namespace_SIO('http://semanticscience.org/resource/SIO_000343') , _namespace_SIO('http://semanticscience.org/resource/SIO_000704') : _namespace_SIO('http://semanticscience.org/resource/SIO_000678') , _namespace_SIO('http://semanticscience.org/resource/SIO_000705') : _namespace_SIO('http://semanticscience.org/resource/SIO_000315') , _namespace_SIO('http://semanticscience.org/resource/SIO_000706') : _namespace_SIO('http://semanticscience.org/resource/SIO_000676') , _namespace_SIO('http://semanticscience.org/resource/SIO_000711') : _namespace_SIO('http://semanticscience.org/resource/SIO_000706') , _namespace_SIO('http://semanticscience.org/resource/SIO_000712') : _namespace_SIO('http://semanticscience.org/resource/SIO_000706') , _namespace_SIO('http://semanticscience.org/resource/SIO_000713') : _namespace_SIO('http://semanticscience.org/resource/SIO_000712') , _namespace_SIO('http://semanticscience.org/resource/SIO_000714') : _namespace_SIO('http://semanticscience.org/resource/SIO_000712') , _namespace_SIO('http://semanticscience.org/resource/SIO_000715') : _namespace_SIO('http://semanticscience.org/resource/SIO_000712') , _namespace_SIO('http://semanticscience.org/resource/SIO_000716') : _namespace_SIO('http://semanticscience.org/resource/SIO_000498') , _namespace_SIO('http://semanticscience.org/resource/SIO_000717') : _namespace_SIO('http://semanticscience.org/resource/SIO_000712') , _namespace_SIO('http://semanticscience.org/resource/SIO_000721') : _namespace_SIO('http://semanticscience.org/resource/SIO_000678') , _namespace_SIO('http://semanticscience.org/resource/SIO_000722') : _namespace_SIO('http://semanticscience.org/resource/SIO_000725') , _namespace_SIO('http://semanticscience.org/resource/SIO_000723') : _namespace_SIO('http://semanticscience.org/resource/SIO_000724') , _namespace_SIO('http://semanticscience.org/resource/SIO_000724') : _namespace_SIO('http://semanticscience.org/resource/SIO_000353') , _namespace_SIO('http://semanticscience.org/resource/SIO_000725') : _namespace_SIO('http://semanticscience.org/resource/SIO_000696') , _namespace_SIO('http://semanticscience.org/resource/SIO_000726') : _namespace_SIO('http://semanticscience.org/resource/SIO_000706') , _namespace_SIO('http://semanticscience.org/resource/SIO_000727') : _namespace_SIO('http://semanticscience.org/resource/SIO_000726') , _namespace_SIO('http://semanticscience.org/resource/SIO_000728') : _namespace_SIO('http://semanticscience.org/resource/SIO_000730') , _namespace_SIO('http://semanticscience.org/resource/SIO_000730') : _namespace_SIO('http://semanticscience.org/resource/SIO_000115') , _namespace_SIO('http://semanticscience.org/resource/SIO_000731') : _namespace_SIO('http://semanticscience.org/resource/SIO_000115') , _namespace_SIO('http://semanticscience.org/resource/SIO_000732') : _namespace_SIO('http://semanticscience.org/resource/SIO_000728') , _namespace_SIO('http://semanticscience.org/resource/SIO_000740') : _namespace_SIO('http://semanticscience.org/resource/SIO_000608') , _namespace_SIO('http://semanticscience.org/resource/SIO_000741') : _namespace_SIO('http://semanticscience.org/resource/SIO_000465') , _namespace_SIO('http://semanticscience.org/resource/SIO_000742') : _namespace_SIO('http://semanticscience.org/resource/SIO_000741') , _namespace_SIO('http://semanticscience.org/resource/SIO_000743') : _namespace_SIO('http://semanticscience.org/resource/SIO_000741') , _namespace_SIO('http://semanticscience.org/resource/SIO_000750') : _namespace_SIO('http://semanticscience.org/resource/SIO_000602') , _namespace_SIO('http://semanticscience.org/resource/SIO_000751') : _namespace_SIO('http://semanticscience.org/resource/SIO_000555') , _namespace_SIO('http://semanticscience.org/resource/SIO_000760') : _namespace_SIO('http://semanticscience.org/resource/SIO_000755') , _namespace_SIO('http://semanticscience.org/resource/SIO_000766') : _namespace_SIO('http://semanticscience.org/resource/SIO_000328') , _namespace_SIO('http://semanticscience.org/resource/SIO_000767') : _namespace_SIO('http://semanticscience.org/resource/SIO_000013') , _namespace_SIO('http://semanticscience.org/resource/SIO_000768') : _namespace_SIO('http://semanticscience.org/resource/SIO_000179') , _namespace_SIO('http://semanticscience.org/resource/SIO_000769') : _namespace_SIO('http://semanticscience.org/resource/SIO_000052') , _namespace_SIO('http://semanticscience.org/resource/SIO_000770') : _namespace_SIO('http://semanticscience.org/resource/SIO_000052') , _namespace_SIO('http://semanticscience.org/resource/SIO_000771') : _namespace_SIO('http://semanticscience.org/resource/SIO_000088') , _namespace_SIO('http://semanticscience.org/resource/SIO_000777') : _namespace_SIO('http://semanticscience.org/resource/SIO_000692') , _namespace_SIO('http://semanticscience.org/resource/SIO_000778') : _namespace_SIO('http://semanticscience.org/resource/SIO_000378') , _namespace_SIO('http://semanticscience.org/resource/SIO_000780') : _namespace_SIO('http://semanticscience.org/resource/SIO_000494') , _namespace_SIO('http://semanticscience.org/resource/SIO_000783') : _namespace_SIO('http://semanticscience.org/resource/SIO_000370') , _namespace_SIO('http://semanticscience.org/resource/SIO_000784') : _namespace_SIO('http://semanticscience.org/resource/SIO_010029') , _namespace_SIO('http://semanticscience.org/resource/SIO_000785') : _namespace_SIO('http://semanticscience.org/resource/SIO_000136') , _namespace_SIO('http://semanticscience.org/resource/SIO_000786') : _namespace_SIO('http://semanticscience.org/resource/SIO_000078') , _namespace_SIO('http://semanticscience.org/resource/SIO_000787') : _namespace_SIO('http://semanticscience.org/resource/SIO_000794') , _namespace_SIO('http://semanticscience.org/resource/SIO_000788') : _namespace_SIO('http://semanticscience.org/resource/SIO_000056') , _namespace_SIO('http://semanticscience.org/resource/SIO_000789') : _namespace_SIO('http://semanticscience.org/resource/SIO_000788') , _namespace_SIO('http://semanticscience.org/resource/SIO_000790') : _namespace_SIO('http://semanticscience.org/resource/SIO_000038') , _namespace_SIO('http://semanticscience.org/resource/SIO_000791') : _namespace_SIO('http://semanticscience.org/resource/SIO_000943') , _namespace_SIO('http://semanticscience.org/resource/SIO_000792') : _namespace_SIO('http://semanticscience.org/resource/SIO_000953') , _namespace_SIO('http://semanticscience.org/resource/SIO_000794') : _namespace_SIO('http://semanticscience.org/resource/SIO_000257') , _namespace_SIO('http://semanticscience.org/resource/SIO_000796') : _namespace_SIO('http://semanticscience.org/resource/SIO_000880') , _namespace_SIO('http://semanticscience.org/resource/SIO_000797') : _namespace_SIO('http://semanticscience.org/resource/SIO_000879') , _namespace_SIO('http://semanticscience.org/resource/SIO_000799') : _namespace_SIO('http://semanticscience.org/resource/SIO_000889') , _namespace_SIO('http://semanticscience.org/resource/SIO_000800') : _namespace_SIO('http://semanticscience.org/resource/SIO_000799') , _namespace_SIO('http://semanticscience.org/resource/SIO_000801') : _namespace_SIO('http://semanticscience.org/resource/SIO_000800') , _namespace_SIO('http://semanticscience.org/resource/SIO_000802') : _namespace_SIO('http://semanticscience.org/resource/SIO_000800') , _namespace_SIO('http://semanticscience.org/resource/SIO_000803') : _namespace_SIO('http://semanticscience.org/resource/SIO_000880') , _namespace_SIO('http://semanticscience.org/resource/SIO_000804') : _namespace_SIO('http://semanticscience.org/resource/SIO_000880') , _namespace_SIO('http://semanticscience.org/resource/SIO_000805') : _namespace_SIO('http://semanticscience.org/resource/SIO_010442') , _namespace_SIO('http://semanticscience.org/resource/SIO_000806') : _namespace_SIO('http://semanticscience.org/resource/SIO_010442') , _namespace_SIO('http://semanticscience.org/resource/SIO_000807') : _namespace_SIO('http://semanticscience.org/resource/SIO_000809') , _namespace_SIO('http://semanticscience.org/resource/SIO_000808') : _namespace_SIO('http://semanticscience.org/resource/SIO_000809') , _namespace_SIO('http://semanticscience.org/resource/SIO_000809') : _namespace_SIO('http://semanticscience.org/resource/SIO_000805') , _namespace_SIO('http://semanticscience.org/resource/SIO_000810') : _namespace_SIO('http://semanticscience.org/resource/SIO_000805') , _namespace_SIO('http://semanticscience.org/resource/SIO_000812') : _namespace_SIO('http://semanticscience.org/resource/SIO_000831') , _namespace_SIO('http://semanticscience.org/resource/SIO_000813') : _namespace_SIO('http://semanticscience.org/resource/SIO_000815') , _namespace_SIO('http://semanticscience.org/resource/SIO_000814') : _namespace_SIO('http://semanticscience.org/resource/SIO_000832') , _namespace_SIO('http://semanticscience.org/resource/SIO_000815') : _namespace_SIO('http://semanticscience.org/resource/SIO_000949') , _namespace_SIO('http://semanticscience.org/resource/SIO_000816') : _namespace_SIO('http://semanticscience.org/resource/SIO_000847') , _namespace_SIO('http://semanticscience.org/resource/SIO_000817') : _namespace_SIO('http://semanticscience.org/resource/SIO_000831') , _namespace_SIO('http://semanticscience.org/resource/SIO_000818') : _namespace_SIO('http://semanticscience.org/resource/SIO_000831') , _namespace_SIO('http://semanticscience.org/resource/SIO_000819') : _namespace_SIO('http://semanticscience.org/resource/SIO_000831') , _namespace_SIO('http://semanticscience.org/resource/SIO_000820') : _namespace_SIO('http://semanticscience.org/resource/SIO_000832') , _namespace_SIO('http://semanticscience.org/resource/SIO_000821') : _namespace_SIO('http://semanticscience.org/resource/SIO_000828') , _namespace_SIO('http://semanticscience.org/resource/SIO_000822') : _namespace_SIO('http://semanticscience.org/resource/SIO_000840') , _namespace_SIO('http://semanticscience.org/resource/SIO_000823') : _namespace_SIO('http://semanticscience.org/resource/SIO_000825') , _namespace_SIO('http://semanticscience.org/resource/SIO_000824') : _namespace_SIO('http://semanticscience.org/resource/SIO_000863') , _namespace_SIO('http://semanticscience.org/resource/SIO_000825') : _namespace_SIO('http://semanticscience.org/resource/SIO_000848') , _namespace_SIO('http://semanticscience.org/resource/SIO_000826') : _namespace_SIO('http://semanticscience.org/resource/SIO_000863') , _namespace_SIO('http://semanticscience.org/resource/SIO_000827') : _namespace_SIO('http://semanticscience.org/resource/SIO_000832') , _namespace_SIO('http://semanticscience.org/resource/SIO_000828') : _namespace_SIO('http://semanticscience.org/resource/SIO_000844') , _namespace_SIO('http://semanticscience.org/resource/SIO_000829') : _namespace_SIO('http://semanticscience.org/resource/SIO_000837') , _namespace_SIO('http://semanticscience.org/resource/SIO_000830') : _namespace_SIO('http://semanticscience.org/resource/SIO_000831') , _namespace_SIO('http://semanticscience.org/resource/SIO_000831') : _namespace_SIO('http://semanticscience.org/resource/SIO_000276') , _namespace_SIO('http://semanticscience.org/resource/SIO_000832') : _namespace_SIO('http://semanticscience.org/resource/SIO_000276') , _namespace_SIO('http://semanticscience.org/resource/SIO_000833') : _namespace_SIO('http://semanticscience.org/resource/SIO_000832') , _namespace_SIO('http://semanticscience.org/resource/SIO_000834') : _namespace_SIO('http://semanticscience.org/resource/SIO_000832') , _namespace_SIO('http://semanticscience.org/resource/SIO_000835') : _namespace_SIO('http://semanticscience.org/resource/SIO_000831') , _namespace_SIO('http://semanticscience.org/resource/SIO_000836') : _namespace_SIO('http://semanticscience.org/resource/SIO_000831') , _namespace_SIO('http://semanticscience.org/resource/SIO_000837') : _namespace_SIO('http://semanticscience.org/resource/SIO_000949') , _namespace_SIO('http://semanticscience.org/resource/SIO_000838') : _namespace_SIO('http://semanticscience.org/resource/SIO_000814') , _namespace_SIO('http://semanticscience.org/resource/SIO_000839') : _namespace_SIO('http://semanticscience.org/resource/SIO_000831') , _namespace_SIO('http://semanticscience.org/resource/SIO_000840') : _namespace_SIO('http://semanticscience.org/resource/SIO_000831') , _namespace_SIO('http://semanticscience.org/resource/SIO_000841') : _namespace_SIO('http://semanticscience.org/resource/SIO_000832') , _namespace_SIO('http://semanticscience.org/resource/SIO_000842') : _namespace_SIO('http://semanticscience.org/resource/SIO_000863') , _namespace_SIO('http://semanticscience.org/resource/SIO_000843') : _namespace_SIO('http://semanticscience.org/resource/SIO_000831') , _namespace_SIO('http://semanticscience.org/resource/SIO_000844') : _namespace_SIO('http://semanticscience.org/resource/SIO_000832') , _namespace_SIO('http://semanticscience.org/resource/SIO_000845') : _namespace_SIO('http://semanticscience.org/resource/SIO_000832') , _namespace_SIO('http://semanticscience.org/resource/SIO_000846') : _namespace_SIO('http://semanticscience.org/resource/SIO_000832') , _namespace_SIO('http://semanticscience.org/resource/SIO_000847') : _namespace_SIO('http://semanticscience.org/resource/SIO_000276') , _namespace_SIO('http://semanticscience.org/resource/SIO_000848') : _namespace_SIO('http://semanticscience.org/resource/SIO_000831') , _namespace_SIO('http://semanticscience.org/resource/SIO_000849') : _namespace_SIO('http://semanticscience.org/resource/SIO_000834') , _namespace_SIO('http://semanticscience.org/resource/SIO_000850') : _namespace_SIO('http://semanticscience.org/resource/SIO_000840') , _namespace_SIO('http://semanticscience.org/resource/SIO_000851') : _namespace_SIO('http://semanticscience.org/resource/SIO_000828') , _namespace_SIO('http://semanticscience.org/resource/SIO_000852') : _namespace_SIO('http://semanticscience.org/resource/SIO_000832') , _namespace_SIO('http://semanticscience.org/resource/SIO_000853') : _namespace_SIO('http://semanticscience.org/resource/SIO_000825') , _namespace_SIO('http://semanticscience.org/resource/SIO_000854') : _namespace_SIO('http://semanticscience.org/resource/SIO_000863') , _namespace_SIO('http://semanticscience.org/resource/SIO_000855') : _namespace_SIO('http://semanticscience.org/resource/SIO_000837') , _namespace_SIO('http://semanticscience.org/resource/SIO_000856') : _namespace_SIO('http://semanticscience.org/resource/SIO_000825') , _namespace_SIO('http://semanticscience.org/resource/SIO_000857') : _namespace_SIO('http://semanticscience.org/resource/SIO_000832') , _namespace_SIO('http://semanticscience.org/resource/SIO_000858') : _namespace_SIO('http://semanticscience.org/resource/SIO_000840') , _namespace_SIO('http://semanticscience.org/resource/SIO_000859') : _namespace_SIO('http://semanticscience.org/resource/SIO_000864') , _namespace_SIO('http://semanticscience.org/resource/SIO_000860') : _namespace_SIO('http://semanticscience.org/resource/SIO_000410') , _namespace_SIO('http://semanticscience.org/resource/SIO_000861') : _namespace_SIO('http://semanticscience.org/resource/SIO_000873') , _namespace_SIO('http://semanticscience.org/resource/SIO_000862') : _namespace_SIO('http://semanticscience.org/resource/SIO_000873') , _namespace_SIO('http://semanticscience.org/resource/SIO_000863') : _namespace_SIO('http://semanticscience.org/resource/SIO_000832') , _namespace_SIO('http://semanticscience.org/resource/SIO_000864') : _namespace_SIO('http://semanticscience.org/resource/SIO_000822') , _namespace_SIO('http://semanticscience.org/resource/SIO_000865') : _namespace_SIO('http://semanticscience.org/resource/SIO_000832') , _namespace_SIO('http://semanticscience.org/resource/SIO_000866') : _namespace_SIO('http://semanticscience.org/resource/SIO_000832') , _namespace_SIO('http://semanticscience.org/resource/SIO_000867') : _namespace_SIO('http://semanticscience.org/resource/SIO_000832') , _namespace_SIO('http://semanticscience.org/resource/SIO_000868') : _namespace_SIO('http://semanticscience.org/resource/SIO_000863') , _namespace_SIO('http://semanticscience.org/resource/SIO_000869') : _namespace_SIO('http://semanticscience.org/resource/SIO_000845') , _namespace_SIO('http://semanticscience.org/resource/SIO_000870') : _namespace_SIO('http://semanticscience.org/resource/SIO_000831') , _namespace_SIO('http://semanticscience.org/resource/SIO_000871') : _namespace_SIO('http://semanticscience.org/resource/SIO_000829') , _namespace_SIO('http://semanticscience.org/resource/SIO_000872') : _namespace_SIO('http://semanticscience.org/resource/SIO_000870') , _namespace_SIO('http://semanticscience.org/resource/SIO_000873') : _namespace_SIO('http://semanticscience.org/resource/SIO_000949') , _namespace_SIO('http://semanticscience.org/resource/SIO_000875') : _namespace_SIO('http://semanticscience.org/resource/SIO_000711') , _namespace_SIO('http://semanticscience.org/resource/SIO_000876') : _namespace_SIO('http://semanticscience.org/resource/SIO_000711') , _namespace_SIO('http://semanticscience.org/resource/SIO_000877') : _namespace_SIO('http://semanticscience.org/resource/SIO_000876') , _namespace_SIO('http://semanticscience.org/resource/SIO_000878') : _namespace_SIO('http://semanticscience.org/resource/SIO_000876') , _namespace_SIO('http://semanticscience.org/resource/SIO_000879') : _namespace_SIO('http://semanticscience.org/resource/SIO_000889') , _namespace_SIO('http://semanticscience.org/resource/SIO_000880') : _namespace_SIO('http://semanticscience.org/resource/SIO_000889') , _namespace_SIO('http://semanticscience.org/resource/SIO_000881') : _namespace_SIO('http://semanticscience.org/resource/SIO_000677') , _namespace_SIO('http://semanticscience.org/resource/SIO_000882') : _namespace_SIO('http://semanticscience.org/resource/SIO_000888') , _namespace_SIO('http://semanticscience.org/resource/SIO_000883') : _namespace_SIO('http://semanticscience.org/resource/SIO_000881') , _namespace_SIO('http://semanticscience.org/resource/SIO_000884') : _namespace_SIO('http://semanticscience.org/resource/SIO_000706') , _namespace_SIO('http://semanticscience.org/resource/SIO_000885') : _namespace_SIO('http://semanticscience.org/resource/SIO_000884') , _namespace_SIO('http://semanticscience.org/resource/SIO_000886') : _namespace_SIO('http://semanticscience.org/resource/SIO_000884') , _namespace_SIO('http://semanticscience.org/resource/SIO_000890') : _namespace_SIO('http://semanticscience.org/resource/SIO_000891') , _namespace_SIO('http://semanticscience.org/resource/SIO_000891') : _namespace_SIO('http://semanticscience.org/resource/SIO_000888') , _namespace_SIO('http://semanticscience.org/resource/SIO_000894') : _namespace_SIO('http://semanticscience.org/resource/SIO_000692') , _namespace_SIO('http://semanticscience.org/resource/SIO_000895') : _namespace_SIO('http://semanticscience.org/resource/SIO_000894') , _namespace_SIO('http://semanticscience.org/resource/SIO_000896') : _namespace_SIO('http://semanticscience.org/resource/SIO_000879') , _namespace_SIO('http://semanticscience.org/resource/SIO_000898') : _namespace_SIO('http://semanticscience.org/resource/SIO_000897') , _namespace_SIO('http://semanticscience.org/resource/SIO_000899') : _namespace_SIO('http://semanticscience.org/resource/SIO_010506') , _namespace_SIO('http://semanticscience.org/resource/SIO_000902') : _namespace_SIO('http://semanticscience.org/resource/SIO_000458') , _namespace_SIO('http://semanticscience.org/resource/SIO_000903') : _namespace_SIO('http://semanticscience.org/resource/SIO_000458') , _namespace_SIO('http://semanticscience.org/resource/SIO_000904') : _namespace_SIO('http://semanticscience.org/resource/SIO_000080') , _namespace_SIO('http://semanticscience.org/resource/SIO_000906') : _namespace_SIO('http://semanticscience.org/resource/SIO_000904') , _namespace_SIO('http://semanticscience.org/resource/SIO_000907') : _namespace_SIO('http://semanticscience.org/resource/SIO_000904') , _namespace_SIO('http://semanticscience.org/resource/SIO_000908') : _namespace_SIO('http://semanticscience.org/resource/SIO_000934') , _namespace_SIO('http://semanticscience.org/resource/SIO_000909') : _namespace_SIO('http://semanticscience.org/resource/SIO_000447') , _namespace_SIO('http://semanticscience.org/resource/SIO_000910') : _namespace_SIO('http://semanticscience.org/resource/SIO_000907') , _namespace_SIO('http://semanticscience.org/resource/SIO_000911') : _namespace_SIO('http://semanticscience.org/resource/SIO_000904') , _namespace_SIO('http://semanticscience.org/resource/SIO_000912') : _namespace_SIO('http://semanticscience.org/resource/SIO_000315') , _namespace_SIO('http://semanticscience.org/resource/SIO_000913') : _namespace_SIO('http://semanticscience.org/resource/SIO_000912') , _namespace_SIO('http://semanticscience.org/resource/SIO_000914') : _namespace_SIO('http://semanticscience.org/resource/SIO_000912') , _namespace_SIO('http://semanticscience.org/resource/SIO_000920') : _namespace_SIO('http://semanticscience.org/resource/SIO_000367') , _namespace_SIO('http://semanticscience.org/resource/SIO_000921') : _namespace_SIO('http://semanticscience.org/resource/SIO_000367') , _namespace_SIO('http://semanticscience.org/resource/SIO_000922') : _namespace_SIO('http://semanticscience.org/resource/SIO_000904') , _namespace_SIO('http://semanticscience.org/resource/SIO_000923') : _namespace_SIO('http://semanticscience.org/resource/SIO_000898') , _namespace_SIO('http://semanticscience.org/resource/SIO_000924') : _namespace_SIO('http://semanticscience.org/resource/SIO_000612') , _namespace_SIO('http://semanticscience.org/resource/SIO_000926') : _namespace_SIO('http://semanticscience.org/resource/SIO_000957') , _namespace_SIO('http://semanticscience.org/resource/SIO_000927') : _namespace_SIO('http://semanticscience.org/resource/SIO_000957') , _namespace_SIO('http://semanticscience.org/resource/SIO_000928') : _namespace_SIO('http://semanticscience.org/resource/SIO_000956') , _namespace_SIO('http://semanticscience.org/resource/SIO_000929') : _namespace_SIO('http://semanticscience.org/resource/SIO_000940') , _namespace_SIO('http://semanticscience.org/resource/SIO_000930') : _namespace_SIO('http://semanticscience.org/resource/SIO_000904') , _namespace_SIO('http://semanticscience.org/resource/SIO_000931') : _namespace_SIO('http://semanticscience.org/resource/SIO_000904') , _namespace_SIO('http://semanticscience.org/resource/SIO_000932') : _namespace_SIO('http://semanticscience.org/resource/SIO_000911') , _namespace_SIO('http://semanticscience.org/resource/SIO_000933') : _namespace_SIO('http://semanticscience.org/resource/SIO_000904') , _namespace_SIO('http://semanticscience.org/resource/SIO_000934') : _namespace_SIO('http://semanticscience.org/resource/SIO_000083') , _namespace_SIO('http://semanticscience.org/resource/SIO_000935') : _namespace_SIO('http://semanticscience.org/resource/SIO_000940') , _namespace_SIO('http://semanticscience.org/resource/SIO_000936') : _namespace_SIO('http://semanticscience.org/resource/SIO_000937') , _namespace_SIO('http://semanticscience.org/resource/SIO_000937') : _namespace_SIO('http://semanticscience.org/resource/SIO_000904') , _namespace_SIO('http://semanticscience.org/resource/SIO_000938') : _namespace_SIO('http://semanticscience.org/resource/SIO_000937') , _namespace_SIO('http://semanticscience.org/resource/SIO_000939') : _namespace_SIO('http://semanticscience.org/resource/SIO_000937') , _namespace_SIO('http://semanticscience.org/resource/SIO_000940') : _namespace_SIO('http://semanticscience.org/resource/SIO_000904') , _namespace_SIO('http://semanticscience.org/resource/SIO_000941') : _namespace_SIO('http://semanticscience.org/resource/SIO_000969') , _namespace_SIO('http://semanticscience.org/resource/SIO_000942') : _namespace_SIO('http://semanticscience.org/resource/SIO_000794') , _namespace_SIO('http://semanticscience.org/resource/SIO_000943') : _namespace_SIO('http://semanticscience.org/resource/SIO_000788') , _namespace_SIO('http://semanticscience.org/resource/SIO_000944') : _namespace_SIO('http://semanticscience.org/resource/SIO_000075') , _namespace_SIO('http://semanticscience.org/resource/SIO_000945') : _namespace_SIO('http://semanticscience.org/resource/SIO_000931') , _namespace_SIO('http://semanticscience.org/resource/SIO_000946') : _namespace_SIO('http://semanticscience.org/resource/SIO_000904') , _namespace_SIO('http://semanticscience.org/resource/SIO_000947') : _namespace_SIO('http://semanticscience.org/resource/SIO_000904') , _namespace_SIO('http://semanticscience.org/resource/SIO_000948') : _namespace_SIO('http://semanticscience.org/resource/SIO_000945') , _namespace_SIO('http://semanticscience.org/resource/SIO_000949') : _namespace_SIO('http://semanticscience.org/resource/SIO_000832') , _namespace_SIO('http://semanticscience.org/resource/SIO_000950') : _namespace_SIO('http://semanticscience.org/resource/SIO_000828') , _namespace_SIO('http://semanticscience.org/resource/SIO_000951') : _namespace_SIO('http://semanticscience.org/resource/SIO_000845') , _namespace_SIO('http://semanticscience.org/resource/SIO_000952') : _namespace_SIO('http://semanticscience.org/resource/SIO_000144') , _namespace_SIO('http://semanticscience.org/resource/SIO_000953') : _namespace_SIO('http://semanticscience.org/resource/SIO_000788') , _namespace_SIO('http://semanticscience.org/resource/SIO_000954') : _namespace_SIO('http://semanticscience.org/resource/SIO_010058') , _namespace_SIO('http://semanticscience.org/resource/SIO_000955') : _namespace_SIO('http://semanticscience.org/resource/SIO_000414') , _namespace_SIO('http://semanticscience.org/resource/SIO_000956') : _namespace_SIO('http://semanticscience.org/resource/SIO_010462') , _namespace_SIO('http://semanticscience.org/resource/SIO_000957') : _namespace_SIO('http://semanticscience.org/resource/SIO_000956') , _namespace_SIO('http://semanticscience.org/resource/SIO_000959') : _namespace_SIO('http://semanticscience.org/resource/SIO_000005') , _namespace_SIO('http://semanticscience.org/resource/SIO_000960') : _namespace_SIO('http://semanticscience.org/resource/SIO_000959') , _namespace_SIO('http://semanticscience.org/resource/SIO_000961') : _namespace_SIO('http://semanticscience.org/resource/SIO_000959') , _namespace_SIO('http://semanticscience.org/resource/SIO_000962') : _namespace_SIO('http://semanticscience.org/resource/SIO_000959') , _namespace_SIO('http://semanticscience.org/resource/SIO_000963') : _namespace_SIO('http://semanticscience.org/resource/SIO_000033') , _namespace_SIO('http://semanticscience.org/resource/SIO_000964') : _namespace_SIO('http://semanticscience.org/resource/SIO_001043') , _namespace_SIO('http://semanticscience.org/resource/SIO_000965') : _namespace_SIO('http://semanticscience.org/resource/SIO_000436') , _namespace_SIO('http://semanticscience.org/resource/SIO_000966') : _namespace_SIO('http://semanticscience.org/resource/SIO_000965') , _namespace_SIO('http://semanticscience.org/resource/SIO_000967') : _namespace_SIO('http://semanticscience.org/resource/SIO_000965') , _namespace_SIO('http://semanticscience.org/resource/SIO_000969') : _namespace_SIO('http://semanticscience.org/resource/SIO_000593') , _namespace_SIO('http://semanticscience.org/resource/SIO_000977') : _namespace_SIO('http://semanticscience.org/resource/SIO_000786') , _namespace_SIO('http://semanticscience.org/resource/SIO_000978') : _namespace_SIO('http://semanticscience.org/resource/SIO_000786') , _namespace_SIO('http://semanticscience.org/resource/SIO_000979') : _namespace_SIO('http://semanticscience.org/resource/SIO_000786') , _namespace_SIO('http://semanticscience.org/resource/SIO_000980') : _namespace_SIO('http://semanticscience.org/resource/SIO_000104') , _namespace_SIO('http://semanticscience.org/resource/SIO_000981') : _namespace_SIO('http://semanticscience.org/resource/SIO_000104') , _namespace_SIO('http://semanticscience.org/resource/SIO_000982') : _namespace_SIO('http://semanticscience.org/resource/SIO_000104') , _namespace_SIO('http://semanticscience.org/resource/SIO_000984') : _namespace_SIO('http://semanticscience.org/resource/SIO_010046') , _namespace_SIO('http://semanticscience.org/resource/SIO_000985') : _namespace_SIO('http://semanticscience.org/resource/SIO_010035') , _namespace_SIO('http://semanticscience.org/resource/SIO_000986') : _namespace_SIO('http://semanticscience.org/resource/SIO_010035') , _namespace_SIO('http://semanticscience.org/resource/SIO_000988') : _namespace_SIO('http://semanticscience.org/resource/SIO_010335') , _namespace_SIO('http://semanticscience.org/resource/SIO_000989') : _namespace_SIO('http://semanticscience.org/resource/SIO_000030') , _namespace_SIO('http://semanticscience.org/resource/SIO_000992') : _namespace_SIO('http://semanticscience.org/resource/SIO_000959') , _namespace_SIO('http://semanticscience.org/resource/SIO_000994') : _namespace_SIO('http://semanticscience.org/resource/SIO_000747') , _namespace_SIO('http://semanticscience.org/resource/SIO_000995') : _namespace_SIO('http://semanticscience.org/resource/SIO_000033') , _namespace_SIO('http://semanticscience.org/resource/SIO_000996') : _namespace_SIO('http://semanticscience.org/resource/SIO_000963') , _namespace_SIO('http://semanticscience.org/resource/SIO_000997') : _namespace_SIO('http://semanticscience.org/resource/SIO_000033') , _namespace_SIO('http://semanticscience.org/resource/SIO_001002') : _namespace_SIO('http://semanticscience.org/resource/SIO_001024') , _namespace_SIO('http://semanticscience.org/resource/SIO_001003') : _namespace_SIO('http://semanticscience.org/resource/SIO_001004') , _namespace_SIO('http://semanticscience.org/resource/SIO_001008') : _namespace_SIO('http://semanticscience.org/resource/SIO_001011') , _namespace_SIO('http://semanticscience.org/resource/SIO_001009') : _namespace_SIO('http://semanticscience.org/resource/SIO_001008') , _namespace_SIO('http://semanticscience.org/resource/SIO_001010') : _namespace_SIO('http://semanticscience.org/resource/SIO_001008') , _namespace_SIO('http://semanticscience.org/resource/SIO_001011') : _namespace_SIO('http://semanticscience.org/resource/SIO_000026') , _namespace_SIO('http://semanticscience.org/resource/SIO_001012') : _namespace_SIO('http://semanticscience.org/resource/SIO_010058') , _namespace_SIO('http://semanticscience.org/resource/SIO_001013') : _namespace_SIO('http://semanticscience.org/resource/SIO_000794') , _namespace_SIO('http://semanticscience.org/resource/SIO_001014') : _namespace_SIO('http://semanticscience.org/resource/SIO_000475') , _namespace_SIO('http://semanticscience.org/resource/SIO_001015') : _namespace_SIO('http://semanticscience.org/resource/SIO_000475') , _namespace_SIO('http://semanticscience.org/resource/SIO_001016') : _namespace_SIO('http://semanticscience.org/resource/SIO_001062') , _namespace_SIO('http://semanticscience.org/resource/SIO_001017') : _namespace_SIO('http://semanticscience.org/resource/SIO_000136') , _namespace_SIO('http://semanticscience.org/resource/SIO_001018') : _namespace_SIO('http://semanticscience.org/resource/SIO_000257') , _namespace_SIO('http://semanticscience.org/resource/SIO_001019') : _namespace_SIO('http://semanticscience.org/resource/SIO_000258') , _namespace_SIO('http://semanticscience.org/resource/SIO_001020') : _namespace_SIO('http://semanticscience.org/resource/SIO_001019') , _namespace_SIO('http://semanticscience.org/resource/SIO_001021') : _namespace_SIO('http://semanticscience.org/resource/SIO_000638') , _namespace_SIO('http://semanticscience.org/resource/SIO_001022') : _namespace_SIO('http://semanticscience.org/resource/SIO_001024') , _namespace_SIO('http://semanticscience.org/resource/SIO_001023') : _namespace_SIO('http://semanticscience.org/resource/SIO_001024') , _namespace_SIO('http://semanticscience.org/resource/SIO_001024') : _namespace_SIO('http://semanticscience.org/resource/SIO_000999') , _namespace_SIO('http://semanticscience.org/resource/SIO_001025') : _namespace_SIO('http://semanticscience.org/resource/SIO_000256') , _namespace_SIO('http://semanticscience.org/resource/SIO_001026') : _namespace_SIO('http://semanticscience.org/resource/SIO_000148') , _namespace_SIO('http://semanticscience.org/resource/SIO_001027') : _namespace_SIO('http://semanticscience.org/resource/SIO_000088') , _namespace_SIO('http://semanticscience.org/resource/SIO_001028') : _namespace_SIO('http://semanticscience.org/resource/SIO_001026') , _namespace_SIO('http://semanticscience.org/resource/SIO_001030') : _namespace_SIO('http://semanticscience.org/resource/SIO_000654') , _namespace_SIO('http://semanticscience.org/resource/SIO_001031') : _namespace_SIO('http://semanticscience.org/resource/SIO_000654') , _namespace_SIO('http://semanticscience.org/resource/SIO_001032') : _namespace_SIO('http://semanticscience.org/resource/SIO_000654') , _namespace_SIO('http://semanticscience.org/resource/SIO_001034') : _namespace_SIO('http://semanticscience.org/resource/SIO_001033') , _namespace_SIO('http://semanticscience.org/resource/SIO_001035') : _namespace_SIO('http://semanticscience.org/resource/SIO_001034') , _namespace_SIO('http://semanticscience.org/resource/SIO_001036') : _namespace_SIO('http://semanticscience.org/resource/SIO_001033') , _namespace_SIO('http://semanticscience.org/resource/SIO_001037') : _namespace_SIO('http://semanticscience.org/resource/SIO_001033') , _namespace_SIO('http://semanticscience.org/resource/SIO_001038') : _namespace_SIO('http://semanticscience.org/resource/SIO_001034') , _namespace_SIO('http://semanticscience.org/resource/SIO_001039') : _namespace_SIO('http://semanticscience.org/resource/SIO_001033') , _namespace_SIO('http://semanticscience.org/resource/SIO_001040') : _namespace_SIO('http://semanticscience.org/resource/SIO_000078') , _namespace_SIO('http://semanticscience.org/resource/SIO_001042') : _namespace_SIO('http://semanticscience.org/resource/SIO_000091') , _namespace_SIO('http://semanticscience.org/resource/SIO_001043') : _namespace_SIO('http://semanticscience.org/resource/SIO_000091') , _namespace_SIO('http://semanticscience.org/resource/SIO_001044') : _namespace_SIO('http://semanticscience.org/resource/SIO_010378') , _namespace_SIO('http://semanticscience.org/resource/SIO_001045') : _namespace_SIO('http://semanticscience.org/resource/SIO_001011') , _namespace_SIO('http://semanticscience.org/resource/SIO_001046') : _namespace_SIO('http://semanticscience.org/resource/SIO_001045') , _namespace_SIO('http://semanticscience.org/resource/SIO_001047') : _namespace_SIO('http://semanticscience.org/resource/SIO_001045') , _namespace_SIO('http://semanticscience.org/resource/SIO_001048') : _namespace_SIO('http://semanticscience.org/resource/SIO_000994') , _namespace_SIO('http://semanticscience.org/resource/SIO_001053') : _namespace_SIO('http://semanticscience.org/resource/SIO_000683') , _namespace_SIO('http://semanticscience.org/resource/SIO_001058') : _namespace_SIO('http://semanticscience.org/resource/SIO_001072') , _namespace_SIO('http://semanticscience.org/resource/SIO_001059') : _namespace_SIO('http://semanticscience.org/resource/SIO_000969') , _namespace_SIO('http://semanticscience.org/resource/SIO_001060') : _namespace_SIO('http://semanticscience.org/resource/SIO_000963') , _namespace_SIO('http://semanticscience.org/resource/SIO_001061') : _namespace_SIO('http://semanticscience.org/resource/SIO_000620') , _namespace_SIO('http://semanticscience.org/resource/SIO_001062') : _namespace_SIO('http://semanticscience.org/resource/SIO_001061') , _namespace_SIO('http://semanticscience.org/resource/SIO_001063') : _namespace_SIO('http://semanticscience.org/resource/SIO_000620') , _namespace_SIO('http://semanticscience.org/resource/SIO_001064') : _namespace_SIO('http://semanticscience.org/resource/SIO_000620') , _namespace_SIO('http://semanticscience.org/resource/SIO_001065') : _namespace_SIO('http://semanticscience.org/resource/SIO_001004') , _namespace_SIO('http://semanticscience.org/resource/SIO_001067') : _namespace_SIO('http://semanticscience.org/resource/SIO_000976') , _namespace_SIO('http://semanticscience.org/resource/SIO_001068') : _namespace_SIO('http://semanticscience.org/resource/SIO_000403') , _namespace_SIO('http://semanticscience.org/resource/SIO_001069') : _namespace_SIO('http://semanticscience.org/resource/SIO_000403') , _namespace_SIO('http://semanticscience.org/resource/SIO_001070') : _namespace_SIO('http://semanticscience.org/resource/SIO_000367') , _namespace_SIO('http://semanticscience.org/resource/SIO_001071') : _namespace_SIO('http://semanticscience.org/resource/SIO_000943') , _namespace_SIO('http://semanticscience.org/resource/SIO_001072') : _namespace_SIO('http://semanticscience.org/resource/SIO_000953') , _namespace_SIO('http://semanticscience.org/resource/SIO_001074') : _namespace_SIO('http://semanticscience.org/resource/SIO_001018') , _namespace_SIO('http://semanticscience.org/resource/SIO_001075') : _namespace_SIO('http://semanticscience.org/resource/SIO_000732') , _namespace_SIO('http://semanticscience.org/resource/SIO_001076') : _namespace_SIO('http://semanticscience.org/resource/SIO_000994') , _namespace_SIO('http://semanticscience.org/resource/SIO_001077') : _namespace_SIO('http://semanticscience.org/resource/SIO_000258') , _namespace_SIO('http://semanticscience.org/resource/SIO_001078') : _namespace_SIO('http://semanticscience.org/resource/SIO_001018') , _namespace_SIO('http://semanticscience.org/resource/SIO_001079') : _namespace_SIO('http://semanticscience.org/resource/SIO_000315') , _namespace_SIO('http://semanticscience.org/resource/SIO_001080') : _namespace_SIO('http://semanticscience.org/resource/SIO_000616') , _namespace_SIO('http://semanticscience.org/resource/SIO_001083') : _namespace_SIO('http://semanticscience.org/resource/SIO_000418') , _namespace_SIO('http://semanticscience.org/resource/SIO_010000') : _namespace_SIO('http://semanticscience.org/resource/SIO_010046') , _namespace_SIO('http://semanticscience.org/resource/SIO_010001') : _namespace_SIO('http://semanticscience.org/resource/SIO_010046') , _namespace_SIO('http://semanticscience.org/resource/SIO_010003') : _namespace_SIO('http://semanticscience.org/resource/SIO_010046') , _namespace_SIO('http://semanticscience.org/resource/SIO_010004') : _namespace_SIO('http://semanticscience.org/resource/SIO_000004') , _namespace_SIO('http://semanticscience.org/resource/SIO_010005') : _namespace_SIO('http://semanticscience.org/resource/SIO_010020') , _namespace_SIO('http://semanticscience.org/resource/SIO_010011') : _namespace_SIO('http://semanticscience.org/resource/SIO_010072') , _namespace_SIO('http://semanticscience.org/resource/SIO_010014') : _namespace_SIO('http://semanticscience.org/resource/SIO_011119') , _namespace_SIO('http://semanticscience.org/resource/SIO_010019') : _namespace_SIO('http://semanticscience.org/resource/SIO_000472') , _namespace_SIO('http://semanticscience.org/resource/SIO_010022') : _namespace_SIO('http://semanticscience.org/resource/SIO_011119') , _namespace_SIO('http://semanticscience.org/resource/SIO_010023') : _namespace_SIO('http://semanticscience.org/resource/SIO_011119') , _namespace_SIO('http://semanticscience.org/resource/SIO_010024') : _namespace_SIO('http://semanticscience.org/resource/SIO_011119') , _namespace_SIO('http://semanticscience.org/resource/SIO_010026') : _namespace_SIO('http://semanticscience.org/resource/SIO_010028') , _namespace_SIO('http://semanticscience.org/resource/SIO_010028') : _namespace_SIO('http://semanticscience.org/resource/SIO_010019') , _namespace_SIO('http://semanticscience.org/resource/SIO_010029') : _namespace_SIO('http://semanticscience.org/resource/SIO_000475') , _namespace_SIO('http://semanticscience.org/resource/SIO_010030') : _namespace_SIO('http://semanticscience.org/resource/SIO_010072') , _namespace_SIO('http://semanticscience.org/resource/SIO_010031') : _namespace_SIO('http://semanticscience.org/resource/SIO_000732') , _namespace_SIO('http://semanticscience.org/resource/SIO_010032') : _namespace_SIO('http://semanticscience.org/resource/SIO_000729') , _namespace_SIO('http://semanticscience.org/resource/SIO_010033') : _namespace_SIO('http://semanticscience.org/resource/SIO_010005') , _namespace_SIO('http://semanticscience.org/resource/SIO_010034') : _namespace_SIO('http://semanticscience.org/resource/SIO_010496') , _namespace_SIO('http://semanticscience.org/resource/SIO_010035') : _namespace_SIO('http://semanticscience.org/resource/SIO_010335') , _namespace_SIO('http://semanticscience.org/resource/SIO_010038') : _namespace_SIO('http://semanticscience.org/resource/SIO_011125') , _namespace_SIO('http://semanticscience.org/resource/SIO_010039') : _namespace_SIO('http://semanticscience.org/resource/SIO_010411') , _namespace_SIO('http://semanticscience.org/resource/SIO_010040') : _namespace_SIO('http://semanticscience.org/resource/SIO_010049') , _namespace_SIO('http://semanticscience.org/resource/SIO_010041') : _namespace_SIO('http://semanticscience.org/resource/SIO_010049') , _namespace_SIO('http://semanticscience.org/resource/SIO_010042') : _namespace_SIO('http://semanticscience.org/resource/SIO_010335') , _namespace_SIO('http://semanticscience.org/resource/SIO_010044') : _namespace_SIO('http://semanticscience.org/resource/SIO_010004') , _namespace_SIO('http://semanticscience.org/resource/SIO_010045') : _namespace_SIO('http://semanticscience.org/resource/SIO_010005') , _namespace_SIO('http://semanticscience.org/resource/SIO_010046') : _namespace_SIO('http://semanticscience.org/resource/SIO_010462') , _namespace_SIO('http://semanticscience.org/resource/SIO_010047') : _namespace_SIO('http://semanticscience.org/resource/SIO_010020') , _namespace_SIO('http://semanticscience.org/resource/SIO_010048') : _namespace_SIO('http://semanticscience.org/resource/SIO_010029') , _namespace_SIO('http://semanticscience.org/resource/SIO_010049') : _namespace_SIO('http://semanticscience.org/resource/SIO_000019') , _namespace_SIO('http://semanticscience.org/resource/SIO_010050') : _namespace_SIO('http://semanticscience.org/resource/SIO_010040') , _namespace_SIO('http://semanticscience.org/resource/SIO_010051') : _namespace_SIO('http://semanticscience.org/resource/SIO_010046') , _namespace_SIO('http://semanticscience.org/resource/SIO_010052') : _namespace_SIO('http://semanticscience.org/resource/SIO_010029') , _namespace_SIO('http://semanticscience.org/resource/SIO_010053') : _namespace_SIO('http://semanticscience.org/resource/SIO_010028') , _namespace_SIO('http://semanticscience.org/resource/SIO_010054') : _namespace_SIO('http://semanticscience.org/resource/SIO_010046') , _namespace_SIO('http://semanticscience.org/resource/SIO_010056') : _namespace_SIO('http://semanticscience.org/resource/SIO_000475') , _namespace_SIO('http://semanticscience.org/resource/SIO_010057') : _namespace_SIO('http://semanticscience.org/resource/SIO_000475') , _namespace_SIO('http://semanticscience.org/resource/SIO_010058') : _namespace_SIO('http://semanticscience.org/resource/SIO_010057') , _namespace_SIO('http://semanticscience.org/resource/SIO_010059') : _namespace_SIO('http://semanticscience.org/resource/SIO_010057') , _namespace_SIO('http://semanticscience.org/resource/SIO_010060') : _namespace_SIO('http://semanticscience.org/resource/SIO_010053') , _namespace_SIO('http://semanticscience.org/resource/SIO_010061') : _namespace_SIO('http://semanticscience.org/resource/SIO_010028') , _namespace_SIO('http://semanticscience.org/resource/SIO_010064') : _namespace_SIO('http://semanticscience.org/resource/SIO_010444') , _namespace_SIO('http://semanticscience.org/resource/SIO_010065') : _namespace_SIO('http://semanticscience.org/resource/SIO_000472') , _namespace_SIO('http://semanticscience.org/resource/SIO_010066') : _namespace_SIO('http://semanticscience.org/resource/SIO_010065') , _namespace_SIO('http://semanticscience.org/resource/SIO_010067') : _namespace_SIO('http://semanticscience.org/resource/SIO_010066') , _namespace_SIO('http://semanticscience.org/resource/SIO_010068') : _namespace_SIO('http://semanticscience.org/resource/SIO_010066') , _namespace_SIO('http://semanticscience.org/resource/SIO_010070') : _namespace_SIO('http://semanticscience.org/resource/SIO_010444') , _namespace_SIO('http://semanticscience.org/resource/SIO_010074') : _namespace_SIO('http://semanticscience.org/resource/SIO_010471') , _namespace_SIO('http://semanticscience.org/resource/SIO_010075') : _namespace_SIO('http://semanticscience.org/resource/SIO_010335') , _namespace_SIO('http://semanticscience.org/resource/SIO_010076') : _namespace_SIO('http://semanticscience.org/resource/SIO_010038') , _namespace_SIO('http://semanticscience.org/resource/SIO_010077') : _namespace_SIO('http://semanticscience.org/resource/SIO_010338') , _namespace_SIO('http://semanticscience.org/resource/SIO_010085') : _namespace_SIO('http://semanticscience.org/resource/SIO_010444') , _namespace_SIO('http://semanticscience.org/resource/SIO_010086') : _namespace_SIO('http://semanticscience.org/resource/SIO_010085') , _namespace_SIO('http://semanticscience.org/resource/SIO_010087') : _namespace_SIO('http://semanticscience.org/resource/SIO_010338') , _namespace_SIO('http://semanticscience.org/resource/SIO_010088') : _namespace_SIO('http://semanticscience.org/resource/SIO_000542') , _namespace_SIO('http://semanticscience.org/resource/SIO_010089') : _namespace_SIO('http://semanticscience.org/resource/SIO_010088') , _namespace_SIO('http://semanticscience.org/resource/SIO_010090') : _namespace_SIO('http://semanticscience.org/resource/SIO_010088') , _namespace_SIO('http://semanticscience.org/resource/SIO_010091') : _namespace_SIO('http://semanticscience.org/resource/SIO_010088') , _namespace_SIO('http://semanticscience.org/resource/SIO_010094') : _namespace_SIO('http://semanticscience.org/resource/SIO_000542') , _namespace_SIO('http://semanticscience.org/resource/SIO_010099') : _namespace_SIO('http://semanticscience.org/resource/SIO_010450') , _namespace_SIO('http://semanticscience.org/resource/SIO_010278') : _namespace_SIO('http://semanticscience.org/resource/SIO_000476') , _namespace_SIO('http://semanticscience.org/resource/SIO_010284') : _namespace_SIO('http://semanticscience.org/resource/SIO_000576') , _namespace_SIO('http://semanticscience.org/resource/SIO_010287') : _namespace_SIO('http://semanticscience.org/resource/SIO_000609') , _namespace_SIO('http://semanticscience.org/resource/SIO_010295') : _namespace_SIO('http://semanticscience.org/resource/SIO_010287') , _namespace_SIO('http://semanticscience.org/resource/SIO_010296') : _namespace_SIO('http://semanticscience.org/resource/SIO_010287') , _namespace_SIO('http://semanticscience.org/resource/SIO_010298') : _namespace_SIO('http://semanticscience.org/resource/SIO_010019') , _namespace_SIO('http://semanticscience.org/resource/SIO_010307') : _namespace_SIO('http://semanticscience.org/resource/SIO_010345') , _namespace_SIO('http://semanticscience.org/resource/SIO_010308') : _namespace_SIO('http://semanticscience.org/resource/SIO_010013') , _namespace_SIO('http://semanticscience.org/resource/SIO_010309') : _namespace_SIO('http://semanticscience.org/resource/SIO_010308') , _namespace_SIO('http://semanticscience.org/resource/SIO_010310') : _namespace_SIO('http://semanticscience.org/resource/SIO_010308') , _namespace_SIO('http://semanticscience.org/resource/SIO_010334') : _namespace_SIO('http://semanticscience.org/resource/SIO_010071') , _namespace_SIO('http://semanticscience.org/resource/SIO_010336') : _namespace_SIO('http://semanticscience.org/resource/SIO_010075') , _namespace_SIO('http://semanticscience.org/resource/SIO_010337') : _namespace_SIO('http://semanticscience.org/resource/SIO_010075') , _namespace_SIO('http://semanticscience.org/resource/SIO_010338') : _namespace_SIO('http://semanticscience.org/resource/SIO_011125') , _namespace_SIO('http://semanticscience.org/resource/SIO_010340') : _namespace_SIO('http://semanticscience.org/resource/SIO_000376') , _namespace_SIO('http://semanticscience.org/resource/SIO_010344') : _namespace_SIO('http://semanticscience.org/resource/SIO_011125') , _namespace_SIO('http://semanticscience.org/resource/SIO_010347') : _namespace_SIO('http://semanticscience.org/resource/SIO_000343') , _namespace_SIO('http://semanticscience.org/resource/SIO_010349') : _namespace_SIO('http://semanticscience.org/resource/SIO_010340') , _namespace_SIO('http://semanticscience.org/resource/SIO_010351') : _namespace_SIO('http://semanticscience.org/resource/SIO_010340') , _namespace_SIO('http://semanticscience.org/resource/SIO_010353') : _namespace_SIO('http://semanticscience.org/resource/SIO_000492') , _namespace_SIO('http://semanticscience.org/resource/SIO_010354') : _namespace_SIO('http://semanticscience.org/resource/SIO_010347') , _namespace_SIO('http://semanticscience.org/resource/SIO_010355') : _namespace_SIO('http://semanticscience.org/resource/SIO_010347') , _namespace_SIO('http://semanticscience.org/resource/SIO_010358') : _namespace_SIO('http://semanticscience.org/resource/SIO_010360') , _namespace_SIO('http://semanticscience.org/resource/SIO_010359') : _namespace_SIO('http://semanticscience.org/resource/SIO_010360') , _namespace_SIO('http://semanticscience.org/resource/SIO_010360') : _namespace_SIO('http://semanticscience.org/resource/SIO_000376') , _namespace_SIO('http://semanticscience.org/resource/SIO_010362') : _namespace_SIO('http://semanticscience.org/resource/SIO_010423') , _namespace_SIO('http://semanticscience.org/resource/SIO_010364') : _namespace_SIO('http://semanticscience.org/resource/SIO_000692') , _namespace_SIO('http://semanticscience.org/resource/SIO_010365') : _namespace_SIO('http://semanticscience.org/resource/SIO_010366') , _namespace_SIO('http://semanticscience.org/resource/SIO_010366') : _namespace_SIO('http://semanticscience.org/resource/SIO_010364') , _namespace_SIO('http://semanticscience.org/resource/SIO_010367') : _namespace_SIO('http://semanticscience.org/resource/SIO_010366') , _namespace_SIO('http://semanticscience.org/resource/SIO_010368') : _namespace_SIO('http://semanticscience.org/resource/SIO_000692') , _namespace_SIO('http://semanticscience.org/resource/SIO_010369') : _namespace_SIO('http://semanticscience.org/resource/SIO_010364') , _namespace_SIO('http://semanticscience.org/resource/SIO_010370') : _namespace_SIO('http://semanticscience.org/resource/SIO_010369') , _namespace_SIO('http://semanticscience.org/resource/SIO_010371') : _namespace_SIO('http://semanticscience.org/resource/SIO_010369') , _namespace_SIO('http://semanticscience.org/resource/SIO_010372') : _namespace_SIO('http://semanticscience.org/resource/SIO_010374') , _namespace_SIO('http://semanticscience.org/resource/SIO_010373') : _namespace_SIO('http://semanticscience.org/resource/SIO_010374') , _namespace_SIO('http://semanticscience.org/resource/SIO_010374') : _namespace_SIO('http://semanticscience.org/resource/SIO_010364') , _namespace_SIO('http://semanticscience.org/resource/SIO_010377') : _namespace_SIO('http://semanticscience.org/resource/SIO_010000') , _namespace_SIO('http://semanticscience.org/resource/SIO_010378') : _namespace_SIO('http://semanticscience.org/resource/SIO_010000') , _namespace_SIO('http://semanticscience.org/resource/SIO_010379') : _namespace_SIO('http://semanticscience.org/resource/SIO_010378') , _namespace_SIO('http://semanticscience.org/resource/SIO_010383') : _namespace_SIO('http://semanticscience.org/resource/SIO_000619') , _namespace_SIO('http://semanticscience.org/resource/SIO_010411') : _namespace_SIO('http://semanticscience.org/resource/SIO_010462') , _namespace_SIO('http://semanticscience.org/resource/SIO_010412') : _namespace_SIO('http://semanticscience.org/resource/SIO_001050') , _namespace_SIO('http://semanticscience.org/resource/SIO_010414') : _namespace_SIO('http://semanticscience.org/resource/SIO_010000') , _namespace_SIO('http://semanticscience.org/resource/SIO_010415') : _namespace_SIO('http://semanticscience.org/resource/SIO_010000') , _namespace_SIO('http://semanticscience.org/resource/SIO_010416') : _namespace_SIO('http://semanticscience.org/resource/SIO_010427') , _namespace_SIO('http://semanticscience.org/resource/SIO_010417') : _namespace_SIO('http://semanticscience.org/resource/SIO_010427') , _namespace_SIO('http://semanticscience.org/resource/SIO_010418') : _namespace_SIO('http://semanticscience.org/resource/SIO_010427') , _namespace_SIO('http://semanticscience.org/resource/SIO_010419') : _namespace_SIO('http://semanticscience.org/resource/SIO_011125') , _namespace_SIO('http://semanticscience.org/resource/SIO_010420') : _namespace_SIO('http://semanticscience.org/resource/SIO_010437') , _namespace_SIO('http://semanticscience.org/resource/SIO_010424') : _namespace_SIO('http://semanticscience.org/resource/SIO_010426') , _namespace_SIO('http://semanticscience.org/resource/SIO_010425') : _namespace_SIO('http://semanticscience.org/resource/SIO_010426') , _namespace_SIO('http://semanticscience.org/resource/SIO_010426') : _namespace_SIO('http://semanticscience.org/resource/SIO_011126') , _namespace_SIO('http://semanticscience.org/resource/SIO_010427') : _namespace_SIO('http://semanticscience.org/resource/SIO_011126') , _namespace_SIO('http://semanticscience.org/resource/SIO_010428') : _namespace_SIO('http://semanticscience.org/resource/SIO_000881') , _namespace_SIO('http://semanticscience.org/resource/SIO_010429') : _namespace_SIO('http://semanticscience.org/resource/SIO_010462') , _namespace_SIO('http://semanticscience.org/resource/SIO_010430') : _namespace_SIO('http://semanticscience.org/resource/SIO_010428') , _namespace_SIO('http://semanticscience.org/resource/SIO_010431') : _namespace_SIO('http://semanticscience.org/resource/SIO_010428') , _namespace_SIO('http://semanticscience.org/resource/SIO_010433') : _namespace_SIO('http://semanticscience.org/resource/SIO_010033') , _namespace_SIO('http://semanticscience.org/resource/SIO_010434') : _namespace_SIO('http://semanticscience.org/resource/SIO_010436') , _namespace_SIO('http://semanticscience.org/resource/SIO_010435') : _namespace_SIO('http://semanticscience.org/resource/SIO_010436') , _namespace_SIO('http://semanticscience.org/resource/SIO_010437') : _namespace_SIO('http://semanticscience.org/resource/SIO_011125') , _namespace_SIO('http://semanticscience.org/resource/SIO_010438') : _namespace_SIO('http://semanticscience.org/resource/SIO_010437') , _namespace_SIO('http://semanticscience.org/resource/SIO_010439') : _namespace_SIO('http://semanticscience.org/resource/SIO_010437') , _namespace_SIO('http://semanticscience.org/resource/SIO_010440') : _namespace_SIO('http://semanticscience.org/resource/SIO_010439') , _namespace_SIO('http://semanticscience.org/resource/SIO_010442') : _namespace_SIO('http://semanticscience.org/resource/SIO_001011') , _namespace_SIO('http://semanticscience.org/resource/SIO_010445') : _namespace_SIO('http://semanticscience.org/resource/SIO_010444') , _namespace_SIO('http://semanticscience.org/resource/SIO_010446') : _namespace_SIO('http://semanticscience.org/resource/SIO_010085') , _namespace_SIO('http://semanticscience.org/resource/SIO_010447') : _namespace_SIO('http://semanticscience.org/resource/SIO_010444') , _namespace_SIO('http://semanticscience.org/resource/SIO_010448') : _namespace_SIO('http://semanticscience.org/resource/SIO_010444') , _namespace_SIO('http://semanticscience.org/resource/SIO_010451') : _namespace_SIO('http://semanticscience.org/resource/SIO_010095') , _namespace_SIO('http://semanticscience.org/resource/SIO_010452') : _namespace_SIO('http://semanticscience.org/resource/SIO_010049') , _namespace_SIO('http://semanticscience.org/resource/SIO_010453') : _namespace_SIO('http://semanticscience.org/resource/SIO_010427') , _namespace_SIO('http://semanticscience.org/resource/SIO_010454') : _namespace_SIO('http://semanticscience.org/resource/SIO_010427') , _namespace_SIO('http://semanticscience.org/resource/SIO_010456') : _namespace_SIO('http://semanticscience.org/resource/SIO_010004') , _namespace_SIO('http://semanticscience.org/resource/SIO_010461') : _namespace_SIO('http://semanticscience.org/resource/SIO_000810') , _namespace_SIO('http://semanticscience.org/resource/SIO_010462') : _namespace_SIO('http://semanticscience.org/resource/SIO_011126') , _namespace_SIO('http://semanticscience.org/resource/SIO_010463') : _namespace_SIO('http://semanticscience.org/resource/SIO_011126') , _namespace_SIO('http://semanticscience.org/resource/SIO_010464') : _namespace_SIO('http://semanticscience.org/resource/SIO_000810') , _namespace_SIO('http://semanticscience.org/resource/SIO_010465') : _namespace_SIO('http://semanticscience.org/resource/SIO_010497') , _namespace_SIO('http://semanticscience.org/resource/SIO_010468') : _namespace_SIO('http://semanticscience.org/resource/SIO_010471') , _namespace_SIO('http://semanticscience.org/resource/SIO_010469') : _namespace_SIO('http://semanticscience.org/resource/SIO_010471') , _namespace_SIO('http://semanticscience.org/resource/SIO_010471') : _namespace_SIO('http://semanticscience.org/resource/SIO_010071') , _namespace_SIO('http://semanticscience.org/resource/SIO_010496') : _namespace_SIO('http://semanticscience.org/resource/SIO_010005') , _namespace_SIO('http://semanticscience.org/resource/SIO_010498') : _namespace_SIO('http://semanticscience.org/resource/SIO_011118') , _namespace_SIO('http://semanticscience.org/resource/SIO_010499') : _namespace_SIO('http://semanticscience.org/resource/SIO_011118') , _namespace_SIO('http://semanticscience.org/resource/SIO_010500') : _namespace_SIO('http://semanticscience.org/resource/SIO_011118') , _namespace_SIO('http://semanticscience.org/resource/SIO_010501') : _namespace_SIO('http://semanticscience.org/resource/SIO_011118') , _namespace_SIO('http://semanticscience.org/resource/SIO_010502') : _namespace_SIO('http://semanticscience.org/resource/SIO_010498') , _namespace_SIO('http://semanticscience.org/resource/SIO_010503') : _namespace_SIO('http://semanticscience.org/resource/SIO_010005') , _namespace_SIO('http://semanticscience.org/resource/SIO_010504') : _namespace_SIO('http://semanticscience.org/resource/SIO_010005') , _namespace_SIO('http://semanticscience.org/resource/SIO_010505') : _namespace_SIO('http://semanticscience.org/resource/SIO_010005') , _namespace_SIO('http://semanticscience.org/resource/SIO_010507') : _namespace_SIO('http://semanticscience.org/resource/SIO_010345') , _namespace_SIO('http://semanticscience.org/resource/SIO_010510') : _namespace_SIO('http://semanticscience.org/resource/SIO_010345') , _namespace_SIO('http://semanticscience.org/resource/SIO_010511') : _namespace_SIO('http://semanticscience.org/resource/SIO_010510') , _namespace_SIO('http://semanticscience.org/resource/SIO_010512') : _namespace_SIO('http://semanticscience.org/resource/SIO_010510') , _namespace_SIO('http://semanticscience.org/resource/SIO_010513') : _namespace_SIO('http://semanticscience.org/resource/SIO_010512') , _namespace_SIO('http://semanticscience.org/resource/SIO_010514') : _namespace_SIO('http://semanticscience.org/resource/SIO_010512') , _namespace_SIO('http://semanticscience.org/resource/SIO_010515') : _namespace_SIO('http://semanticscience.org/resource/SIO_010510') , _namespace_SIO('http://semanticscience.org/resource/SIO_010516') : _namespace_SIO('http://semanticscience.org/resource/SIO_010345') , _namespace_SIO('http://semanticscience.org/resource/SIO_010517') : _namespace_SIO('http://semanticscience.org/resource/SIO_010345') , _namespace_SIO('http://semanticscience.org/resource/SIO_010518') : _namespace_SIO('http://semanticscience.org/resource/SIO_010516') , _namespace_SIO('http://semanticscience.org/resource/SIO_010519') : _namespace_SIO('http://semanticscience.org/resource/SIO_010518') , _namespace_SIO('http://semanticscience.org/resource/SIO_010520') : _namespace_SIO('http://semanticscience.org/resource/SIO_010518') , _namespace_SIO('http://semanticscience.org/resource/SIO_010521') : _namespace_SIO('http://semanticscience.org/resource/SIO_010520') , _namespace_SIO('http://semanticscience.org/resource/SIO_010522') : _namespace_SIO('http://semanticscience.org/resource/SIO_010519') , _namespace_SIO('http://semanticscience.org/resource/SIO_010523') : _namespace_SIO('http://semanticscience.org/resource/SIO_010519') , _namespace_SIO('http://semanticscience.org/resource/SIO_010525') : _namespace_SIO('http://semanticscience.org/resource/SIO_010526') , _namespace_SIO('http://semanticscience.org/resource/SIO_010527') : _namespace_SIO('http://semanticscience.org/resource/SIO_010526') , _namespace_SIO('http://semanticscience.org/resource/SIO_010528') : _namespace_SIO('http://semanticscience.org/resource/SIO_010526') , _namespace_SIO('http://semanticscience.org/resource/SIO_010530') : _namespace_SIO('http://semanticscience.org/resource/SIO_010023') , _namespace_SIO('http://semanticscience.org/resource/SIO_010531') : _namespace_SIO('http://semanticscience.org/resource/SIO_010065') , _namespace_SIO('http://semanticscience.org/resource/SIO_010532') : _namespace_SIO('http://semanticscience.org/resource/SIO_010525') , _namespace_SIO('http://semanticscience.org/resource/SIO_010533') : _namespace_SIO('http://semanticscience.org/resource/SIO_010525') , _namespace_SIO('http://semanticscience.org/resource/SIO_010673') : _namespace_SIO('http://semanticscience.org/resource/SIO_010298') , _namespace_SIO('http://semanticscience.org/resource/SIO_010775') : _namespace_SIO('http://semanticscience.org/resource/SIO_010455') , _namespace_SIO('http://semanticscience.org/resource/SIO_010776') : _namespace_SIO('http://semanticscience.org/resource/SIO_010775') , _namespace_SIO('http://semanticscience.org/resource/SIO_010777') : _namespace_SIO('http://semanticscience.org/resource/SIO_010775') , _namespace_SIO('http://semanticscience.org/resource/SIO_010778') : _namespace_SIO('http://semanticscience.org/resource/SIO_010775') , _namespace_SIO('http://semanticscience.org/resource/SIO_010779') : _namespace_SIO('http://semanticscience.org/resource/SIO_010455') , _namespace_SIO('http://semanticscience.org/resource/SIO_010781') : _namespace_SIO('http://semanticscience.org/resource/SIO_010780') , _namespace_SIO('http://semanticscience.org/resource/SIO_010782') : _namespace_SIO('http://semanticscience.org/resource/SIO_010780') , _namespace_SIO('http://semanticscience.org/resource/SIO_010783') : _namespace_SIO('http://semanticscience.org/resource/SIO_010780') , _namespace_SIO('http://semanticscience.org/resource/SIO_010785') : _namespace_SIO('http://semanticscience.org/resource/SIO_010037') , _namespace_SIO('http://semanticscience.org/resource/SIO_010787') : _namespace_SIO('http://semanticscience.org/resource/SIO_010786') , _namespace_SIO('http://semanticscience.org/resource/SIO_010788') : _namespace_SIO('http://semanticscience.org/resource/SIO_010786') , _namespace_SIO('http://semanticscience.org/resource/SIO_010789') : _namespace_SIO('http://semanticscience.org/resource/SIO_010786') , _namespace_SIO('http://semanticscience.org/resource/SIO_010790') : _namespace_SIO('http://semanticscience.org/resource/SIO_010786') , _namespace_SIO('http://semanticscience.org/resource/SIO_010791') : _namespace_SIO('http://semanticscience.org/resource/SIO_010786') , _namespace_SIO('http://semanticscience.org/resource/SIO_010792') : _namespace_SIO('http://semanticscience.org/resource/SIO_010786') , _namespace_SIO('http://semanticscience.org/resource/SIO_010793') : _namespace_SIO('http://semanticscience.org/resource/SIO_010786') , _namespace_SIO('http://semanticscience.org/resource/SIO_010794') : _namespace_SIO('http://semanticscience.org/resource/SIO_010786') , _namespace_SIO('http://semanticscience.org/resource/SIO_010795') : _namespace_SIO('http://semanticscience.org/resource/SIO_010786') , _namespace_SIO('http://semanticscience.org/resource/SIO_011000') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011001') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011002') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011003') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011004') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011005') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011006') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011007') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011008') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011009') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011010') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011011') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011012') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011013') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011014') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011015') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011016') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011017') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011018') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011019') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011020') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011021') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011022') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011023') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011024') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011025') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011026') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011027') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011028') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011029') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011030') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011031') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011032') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011033') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011034') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011035') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011036') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011037') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011038') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011039') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011040') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011041') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011042') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011043') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011044') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011045') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011046') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011047') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011048') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011049') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011050') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011051') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011052') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011053') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011054') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011055') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011056') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011057') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011058') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011059') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011060') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011061') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011062') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011063') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011064') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011065') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011066') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011067') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011068') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011069') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011070') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011071') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011072') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011073') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011074') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011075') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011076') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011077') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011078') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011079') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011080') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011081') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011082') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011083') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011084') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011085') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011086') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011087') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011088') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011089') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011090') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011091') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011092') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011093') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011094') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011095') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011096') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011097') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011098') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011099') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011100') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011101') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011102') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011103') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011104') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011105') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011106') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011107') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011108') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011109') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011110') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011111') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011112') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011113') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011114') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011115') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011116') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011117') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011123') : _namespace_SIO('http://semanticscience.org/resource/SIO_000472') , _namespace_SIO('http://semanticscience.org/resource/SIO_011126') : _namespace_SIO('http://semanticscience.org/resource/SIO_010004') , _namespace_SIO('http://semanticscience.org/resource/SIO_011130') : _namespace_SIO('http://semanticscience.org/resource/SIO_011120') }
12542
+ __parent_properties = { _namespace_SIO('http://semanticscience.org/resource/SIO_000008') : _namespace_SIO('http://semanticscience.org/resource/SIO_000001') , _namespace_SIO('http://semanticscience.org/resource/SIO_000011') : _namespace_SIO('http://semanticscience.org/resource/SIO_000001') , _namespace_SIO('http://semanticscience.org/resource/SIO_000020') : _namespace_SIO('http://semanticscience.org/resource/SIO_000210') , _namespace_SIO('http://semanticscience.org/resource/SIO_000028') : _namespace_SIO('http://semanticscience.org/resource/SIO_000145') , _namespace_SIO('http://semanticscience.org/resource/SIO_000029') : _namespace_SIO('http://semanticscience.org/resource/SIO_000096') , _namespace_SIO('http://semanticscience.org/resource/SIO_000053') : _namespace_SIO('http://semanticscience.org/resource/SIO_000028') , _namespace_SIO('http://semanticscience.org/resource/SIO_000054') : _namespace_SIO('http://semanticscience.org/resource/SIO_000053') , _namespace_SIO('http://semanticscience.org/resource/SIO_000059') : _namespace_SIO('http://semanticscience.org/resource/SIO_000008') , _namespace_SIO('http://semanticscience.org/resource/SIO_000060') : _namespace_SIO('http://semanticscience.org/resource/SIO_000205') , _namespace_SIO('http://semanticscience.org/resource/SIO_000061') : _namespace_SIO('http://semanticscience.org/resource/SIO_000322') , _namespace_SIO('http://semanticscience.org/resource/SIO_000062') : _namespace_SIO('http://semanticscience.org/resource/SIO_000322') , _namespace_SIO('http://semanticscience.org/resource/SIO_000063') : _namespace_SIO('http://semanticscience.org/resource/SIO_000062') , _namespace_SIO('http://semanticscience.org/resource/SIO_000064') : _namespace_SIO('http://semanticscience.org/resource/SIO_000219') , _namespace_SIO('http://semanticscience.org/resource/SIO_000066') : _namespace_SIO('http://semanticscience.org/resource/SIO_000253') , _namespace_SIO('http://semanticscience.org/resource/SIO_000068') : _namespace_SIO('http://semanticscience.org/resource/SIO_000061') , _namespace_SIO('http://semanticscience.org/resource/SIO_000093') : _namespace_SIO('http://semanticscience.org/resource/SIO_000068') , _namespace_SIO('http://semanticscience.org/resource/SIO_000095') : _namespace_SIO('http://semanticscience.org/resource/SIO_000011') , _namespace_SIO('http://semanticscience.org/resource/SIO_000096') : _namespace_SIO('http://semanticscience.org/resource/SIO_000093') , _namespace_SIO('http://semanticscience.org/resource/SIO_000128') : _namespace_SIO('http://semanticscience.org/resource/SIO_000061') , _namespace_SIO('http://semanticscience.org/resource/SIO_000132') : _namespace_SIO('http://semanticscience.org/resource/SIO_000322') , _namespace_SIO('http://semanticscience.org/resource/SIO_000139') : _namespace_SIO('http://semanticscience.org/resource/SIO_000132') , _namespace_SIO('http://semanticscience.org/resource/SIO_000145') : _namespace_SIO('http://semanticscience.org/resource/SIO_000322') , _namespace_SIO('http://semanticscience.org/resource/SIO_000202') : _namespace_SIO('http://semanticscience.org/resource/SIO_000145') , _namespace_SIO('http://semanticscience.org/resource/SIO_000203') : _namespace_SIO('http://semanticscience.org/resource/SIO_000322') , _namespace_SIO('http://semanticscience.org/resource/SIO_000204') : _namespace_SIO('http://semanticscience.org/resource/SIO_000322') , _namespace_SIO('http://semanticscience.org/resource/SIO_000205') : _namespace_SIO('http://semanticscience.org/resource/SIO_000212') , _namespace_SIO('http://semanticscience.org/resource/SIO_000206') : _namespace_SIO('http://semanticscience.org/resource/SIO_000772') , _namespace_SIO('http://semanticscience.org/resource/SIO_000207') : _namespace_SIO('http://semanticscience.org/resource/SIO_000772') , _namespace_SIO('http://semanticscience.org/resource/SIO_000208') : _namespace_SIO('http://semanticscience.org/resource/SIO_000773') , _namespace_SIO('http://semanticscience.org/resource/SIO_000209') : _namespace_SIO('http://semanticscience.org/resource/SIO_000773') , _namespace_SIO('http://semanticscience.org/resource/SIO_000210') : _namespace_SIO('http://semanticscience.org/resource/SIO_000628') , _namespace_SIO('http://semanticscience.org/resource/SIO_000211') : _namespace_SIO('http://semanticscience.org/resource/SIO_000203') , _namespace_SIO('http://semanticscience.org/resource/SIO_000212') : _namespace_SIO('http://semanticscience.org/resource/SIO_000001') , _namespace_SIO('http://semanticscience.org/resource/SIO_000213') : _namespace_SIO('http://semanticscience.org/resource/SIO_000425') , _namespace_SIO('http://semanticscience.org/resource/SIO_000214') : _namespace_SIO('http://semanticscience.org/resource/SIO_000425') , _namespace_SIO('http://semanticscience.org/resource/SIO_000215') : _namespace_SIO('http://semanticscience.org/resource/SIO_000011') , _namespace_SIO('http://semanticscience.org/resource/SIO_000216') : _namespace_SIO('http://semanticscience.org/resource/SIO_000008') , _namespace_SIO('http://semanticscience.org/resource/SIO_000217') : _namespace_SIO('http://semanticscience.org/resource/SIO_000223') , _namespace_SIO('http://semanticscience.org/resource/SIO_000218') : _namespace_SIO('http://semanticscience.org/resource/SIO_000224') , _namespace_SIO('http://semanticscience.org/resource/SIO_000219') : _namespace_SIO('http://semanticscience.org/resource/SIO_000011') , _namespace_SIO('http://semanticscience.org/resource/SIO_000221') : _namespace_SIO('http://semanticscience.org/resource/SIO_000008') , _namespace_SIO('http://semanticscience.org/resource/SIO_000222') : _namespace_SIO('http://semanticscience.org/resource/SIO_000011') , _namespace_SIO('http://semanticscience.org/resource/SIO_000223') : _namespace_SIO('http://semanticscience.org/resource/SIO_000008') , _namespace_SIO('http://semanticscience.org/resource/SIO_000224') : _namespace_SIO('http://semanticscience.org/resource/SIO_000011') , _namespace_SIO('http://semanticscience.org/resource/SIO_000225') : _namespace_SIO('http://semanticscience.org/resource/SIO_000235') , _namespace_SIO('http://semanticscience.org/resource/SIO_000226') : _namespace_SIO('http://semanticscience.org/resource/SIO_000236') , _namespace_SIO('http://semanticscience.org/resource/SIO_000227') : _namespace_SIO('http://semanticscience.org/resource/SIO_000643') , _namespace_SIO('http://semanticscience.org/resource/SIO_000228') : _namespace_SIO('http://semanticscience.org/resource/SIO_000644') , _namespace_SIO('http://semanticscience.org/resource/SIO_000229') : _namespace_SIO('http://semanticscience.org/resource/SIO_000132') , _namespace_SIO('http://semanticscience.org/resource/SIO_000230') : _namespace_SIO('http://semanticscience.org/resource/SIO_000132') , _namespace_SIO('http://semanticscience.org/resource/SIO_000231') : _namespace_SIO('http://semanticscience.org/resource/SIO_000062') , _namespace_SIO('http://semanticscience.org/resource/SIO_000232') : _namespace_SIO('http://semanticscience.org/resource/SIO_000062') , _namespace_SIO('http://semanticscience.org/resource/SIO_000233') : _namespace_SIO('http://semanticscience.org/resource/SIO_000011') , _namespace_SIO('http://semanticscience.org/resource/SIO_000234') : _namespace_SIO('http://semanticscience.org/resource/SIO_000008') , _namespace_SIO('http://semanticscience.org/resource/SIO_000235') : _namespace_SIO('http://semanticscience.org/resource/SIO_000586') , _namespace_SIO('http://semanticscience.org/resource/SIO_000236') : _namespace_SIO('http://semanticscience.org/resource/SIO_000646') , _namespace_SIO('http://semanticscience.org/resource/SIO_000240') : _namespace_SIO('http://semanticscience.org/resource/SIO_000203') , _namespace_SIO('http://semanticscience.org/resource/SIO_000241') : _namespace_SIO('http://semanticscience.org/resource/SIO_000652') , _namespace_SIO('http://semanticscience.org/resource/SIO_000242') : _namespace_SIO('http://semanticscience.org/resource/SIO_000652') , _namespace_SIO('http://semanticscience.org/resource/SIO_000243') : _namespace_SIO('http://semanticscience.org/resource/SIO_000322') , _namespace_SIO('http://semanticscience.org/resource/SIO_000244') : _namespace_SIO('http://semanticscience.org/resource/SIO_000352') , _namespace_SIO('http://semanticscience.org/resource/SIO_000245') : _namespace_SIO('http://semanticscience.org/resource/SIO_000294') , _namespace_SIO('http://semanticscience.org/resource/SIO_000246') : _namespace_SIO('http://semanticscience.org/resource/SIO_000245') , _namespace_SIO('http://semanticscience.org/resource/SIO_000247') : _namespace_SIO('http://semanticscience.org/resource/SIO_000244') , _namespace_SIO('http://semanticscience.org/resource/SIO_000248') : _namespace_SIO('http://semanticscience.org/resource/SIO_000352') , _namespace_SIO('http://semanticscience.org/resource/SIO_000249') : _namespace_SIO('http://semanticscience.org/resource/SIO_000294') , _namespace_SIO('http://semanticscience.org/resource/SIO_000250') : _namespace_SIO('http://semanticscience.org/resource/SIO_000248') , _namespace_SIO('http://semanticscience.org/resource/SIO_000251') : _namespace_SIO('http://semanticscience.org/resource/SIO_000249') , _namespace_SIO('http://semanticscience.org/resource/SIO_000252') : _namespace_SIO('http://semanticscience.org/resource/SIO_000212') , _namespace_SIO('http://semanticscience.org/resource/SIO_000253') : _namespace_SIO('http://semanticscience.org/resource/SIO_000008') , _namespace_SIO('http://semanticscience.org/resource/SIO_000254') : _namespace_SIO('http://semanticscience.org/resource/SIO_000011') , _namespace_SIO('http://semanticscience.org/resource/SIO_000255') : _namespace_SIO('http://semanticscience.org/resource/SIO_000008') , _namespace_SIO('http://semanticscience.org/resource/SIO_000272') : _namespace_SIO('http://semanticscience.org/resource/SIO_000736') , _namespace_SIO('http://semanticscience.org/resource/SIO_000273') : _namespace_SIO('http://semanticscience.org/resource/SIO_000053') , _namespace_SIO('http://semanticscience.org/resource/SIO_000274') : _namespace_SIO('http://semanticscience.org/resource/SIO_000497') , _namespace_SIO('http://semanticscience.org/resource/SIO_000277') : _namespace_SIO('http://semanticscience.org/resource/SIO_000631') , _namespace_SIO('http://semanticscience.org/resource/SIO_000278') : _namespace_SIO('http://semanticscience.org/resource/SIO_000252') , _namespace_SIO('http://semanticscience.org/resource/SIO_000283') : _namespace_SIO('http://semanticscience.org/resource/SIO_000272') , _namespace_SIO('http://semanticscience.org/resource/SIO_000286') : _namespace_SIO('http://semanticscience.org/resource/SIO_000497') , _namespace_SIO('http://semanticscience.org/resource/SIO_000288') : _namespace_SIO('http://semanticscience.org/resource/SIO_000203') , _namespace_SIO('http://semanticscience.org/resource/SIO_000291') : _namespace_SIO('http://semanticscience.org/resource/SIO_000230') , _namespace_SIO('http://semanticscience.org/resource/SIO_000292') : _namespace_SIO('http://semanticscience.org/resource/SIO_000231') , _namespace_SIO('http://semanticscience.org/resource/SIO_000293') : _namespace_SIO('http://semanticscience.org/resource/SIO_000203') , _namespace_SIO('http://semanticscience.org/resource/SIO_000294') : _namespace_SIO('http://semanticscience.org/resource/SIO_000243') , _namespace_SIO('http://semanticscience.org/resource/SIO_000310') : _namespace_SIO('http://semanticscience.org/resource/SIO_000093') , _namespace_SIO('http://semanticscience.org/resource/SIO_000311') : _namespace_SIO('http://semanticscience.org/resource/SIO_000232') , _namespace_SIO('http://semanticscience.org/resource/SIO_000312') : _namespace_SIO('http://semanticscience.org/resource/SIO_000229') , _namespace_SIO('http://semanticscience.org/resource/SIO_000313') : _namespace_SIO('http://semanticscience.org/resource/SIO_000310') , _namespace_SIO('http://semanticscience.org/resource/SIO_000322') : _namespace_SIO('http://semanticscience.org/resource/SIO_000001') , _namespace_SIO('http://semanticscience.org/resource/SIO_000323') : _namespace_SIO('http://semanticscience.org/resource/SIO_000128') , _namespace_SIO('http://semanticscience.org/resource/SIO_000324') : _namespace_SIO('http://semanticscience.org/resource/SIO_000202') , _namespace_SIO('http://semanticscience.org/resource/SIO_000325') : _namespace_SIO('http://semanticscience.org/resource/SIO_000322') , _namespace_SIO('http://semanticscience.org/resource/SIO_000332') : _namespace_SIO('http://semanticscience.org/resource/SIO_000563') , _namespace_SIO('http://semanticscience.org/resource/SIO_000334') : _namespace_SIO('http://semanticscience.org/resource/SIO_000652') , _namespace_SIO('http://semanticscience.org/resource/SIO_000335') : _namespace_SIO('http://semanticscience.org/resource/SIO_000652') , _namespace_SIO('http://semanticscience.org/resource/SIO_000338') : _namespace_SIO('http://semanticscience.org/resource/SIO_000563') , _namespace_SIO('http://semanticscience.org/resource/SIO_000339') : _namespace_SIO('http://semanticscience.org/resource/SIO_000557') , _namespace_SIO('http://semanticscience.org/resource/SIO_000341') : _namespace_SIO('http://semanticscience.org/resource/SIO_000425') , _namespace_SIO('http://semanticscience.org/resource/SIO_000352') : _namespace_SIO('http://semanticscience.org/resource/SIO_000243') , _namespace_SIO('http://semanticscience.org/resource/SIO_000355') : _namespace_SIO('http://semanticscience.org/resource/SIO_000132') , _namespace_SIO('http://semanticscience.org/resource/SIO_000356') : _namespace_SIO('http://semanticscience.org/resource/SIO_000062') , _namespace_SIO('http://semanticscience.org/resource/SIO_000362') : _namespace_SIO('http://semanticscience.org/resource/SIO_000008') , _namespace_SIO('http://semanticscience.org/resource/SIO_000363') : _namespace_SIO('http://semanticscience.org/resource/SIO_000011') , _namespace_SIO('http://semanticscience.org/resource/SIO_000364') : _namespace_SIO('http://semanticscience.org/resource/SIO_000253') , _namespace_SIO('http://semanticscience.org/resource/SIO_000365') : _namespace_SIO('http://semanticscience.org/resource/SIO_000219') , _namespace_SIO('http://semanticscience.org/resource/SIO_000369') : _namespace_SIO('http://semanticscience.org/resource/SIO_000273') , _namespace_SIO('http://semanticscience.org/resource/SIO_000420') : _namespace_SIO('http://semanticscience.org/resource/SIO_000425') , _namespace_SIO('http://semanticscience.org/resource/SIO_000421') : _namespace_SIO('http://semanticscience.org/resource/SIO_000425') , _namespace_SIO('http://semanticscience.org/resource/SIO_000422') : _namespace_SIO('http://semanticscience.org/resource/SIO_000283') , _namespace_SIO('http://semanticscience.org/resource/SIO_000424') : _namespace_SIO('http://semanticscience.org/resource/SIO_000283') , _namespace_SIO('http://semanticscience.org/resource/SIO_000425') : _namespace_SIO('http://semanticscience.org/resource/SIO_000001') , _namespace_SIO('http://semanticscience.org/resource/SIO_000426') : _namespace_SIO('http://semanticscience.org/resource/SIO_000425') , _namespace_SIO('http://semanticscience.org/resource/SIO_000427') : _namespace_SIO('http://semanticscience.org/resource/SIO_000424') , _namespace_SIO('http://semanticscience.org/resource/SIO_000477') : _namespace_SIO('http://semanticscience.org/resource/SIO_000422') , _namespace_SIO('http://semanticscience.org/resource/SIO_000482') : _namespace_SIO('http://semanticscience.org/resource/SIO_000283') , _namespace_SIO('http://semanticscience.org/resource/SIO_000484') : _namespace_SIO('http://semanticscience.org/resource/SIO_000482') , _namespace_SIO('http://semanticscience.org/resource/SIO_000490') : _namespace_SIO('http://semanticscience.org/resource/SIO_000482') , _namespace_SIO('http://semanticscience.org/resource/SIO_000491') : _namespace_SIO('http://semanticscience.org/resource/SIO_000482') , _namespace_SIO('http://semanticscience.org/resource/SIO_000495') : _namespace_SIO('http://semanticscience.org/resource/SIO_000272') , _namespace_SIO('http://semanticscience.org/resource/SIO_000496') : _namespace_SIO('http://semanticscience.org/resource/SIO_000495') , _namespace_SIO('http://semanticscience.org/resource/SIO_000497') : _namespace_SIO('http://semanticscience.org/resource/SIO_000272') , _namespace_SIO('http://semanticscience.org/resource/SIO_000552') : _namespace_SIO('http://semanticscience.org/resource/SIO_000230') , _namespace_SIO('http://semanticscience.org/resource/SIO_000553') : _namespace_SIO('http://semanticscience.org/resource/SIO_000231') , _namespace_SIO('http://semanticscience.org/resource/SIO_000557') : _namespace_SIO('http://semanticscience.org/resource/SIO_000212') , _namespace_SIO('http://semanticscience.org/resource/SIO_000558') : _namespace_SIO('http://semanticscience.org/resource/SIO_010302') , _namespace_SIO('http://semanticscience.org/resource/SIO_000563') : _namespace_SIO('http://semanticscience.org/resource/SIO_000628') , _namespace_SIO('http://semanticscience.org/resource/SIO_000586') : _namespace_SIO('http://semanticscience.org/resource/SIO_000644') , _namespace_SIO('http://semanticscience.org/resource/SIO_000628') : _namespace_SIO('http://semanticscience.org/resource/SIO_000001') , _namespace_SIO('http://semanticscience.org/resource/SIO_000629') : _namespace_SIO('http://semanticscience.org/resource/SIO_000557') , _namespace_SIO('http://semanticscience.org/resource/SIO_000630') : _namespace_SIO('http://semanticscience.org/resource/SIO_010302') , _namespace_SIO('http://semanticscience.org/resource/SIO_000631') : _namespace_SIO('http://semanticscience.org/resource/SIO_000628') , _namespace_SIO('http://semanticscience.org/resource/SIO_000632') : _namespace_SIO('http://semanticscience.org/resource/SIO_000210') , _namespace_SIO('http://semanticscience.org/resource/SIO_000633') : _namespace_SIO('http://semanticscience.org/resource/SIO_000205') , _namespace_SIO('http://semanticscience.org/resource/SIO_000634') : _namespace_SIO('http://semanticscience.org/resource/SIO_000558') , _namespace_SIO('http://semanticscience.org/resource/SIO_000635') : _namespace_SIO('http://semanticscience.org/resource/SIO_000294') , _namespace_SIO('http://semanticscience.org/resource/SIO_000636') : _namespace_SIO('http://semanticscience.org/resource/SIO_000352') , _namespace_SIO('http://semanticscience.org/resource/SIO_000641') : _namespace_SIO('http://semanticscience.org/resource/SIO_000008') , _namespace_SIO('http://semanticscience.org/resource/SIO_000642') : _namespace_SIO('http://semanticscience.org/resource/SIO_000011') , _namespace_SIO('http://semanticscience.org/resource/SIO_000643') : _namespace_SIO('http://semanticscience.org/resource/SIO_000224') , _namespace_SIO('http://semanticscience.org/resource/SIO_000644') : _namespace_SIO('http://semanticscience.org/resource/SIO_000223') , _namespace_SIO('http://semanticscience.org/resource/SIO_000646') : _namespace_SIO('http://semanticscience.org/resource/SIO_000643') , _namespace_SIO('http://semanticscience.org/resource/SIO_000652') : _namespace_SIO('http://semanticscience.org/resource/SIO_000203') , _namespace_SIO('http://semanticscience.org/resource/SIO_000655') : _namespace_SIO('http://semanticscience.org/resource/SIO_000294') , _namespace_SIO('http://semanticscience.org/resource/SIO_000656') : _namespace_SIO('http://semanticscience.org/resource/SIO_000655') , _namespace_SIO('http://semanticscience.org/resource/SIO_000657') : _namespace_SIO('http://semanticscience.org/resource/SIO_000352') , _namespace_SIO('http://semanticscience.org/resource/SIO_000658') : _namespace_SIO('http://semanticscience.org/resource/SIO_000657') , _namespace_SIO('http://semanticscience.org/resource/SIO_000668') : _namespace_SIO('http://semanticscience.org/resource/SIO_000631') , _namespace_SIO('http://semanticscience.org/resource/SIO_000671') : _namespace_SIO('http://semanticscience.org/resource/SIO_000008') , _namespace_SIO('http://semanticscience.org/resource/SIO_000672') : _namespace_SIO('http://semanticscience.org/resource/SIO_000011') , _namespace_SIO('http://semanticscience.org/resource/SIO_000673') : _namespace_SIO('http://semanticscience.org/resource/SIO_000671') , _namespace_SIO('http://semanticscience.org/resource/SIO_000674') : _namespace_SIO('http://semanticscience.org/resource/SIO_000672') , _namespace_SIO('http://semanticscience.org/resource/SIO_000679') : _namespace_SIO('http://semanticscience.org/resource/SIO_000054') , _namespace_SIO('http://semanticscience.org/resource/SIO_000680') : _namespace_SIO('http://semanticscience.org/resource/SIO_000679') , _namespace_SIO('http://semanticscience.org/resource/SIO_000681') : _namespace_SIO('http://semanticscience.org/resource/SIO_000679') , _namespace_SIO('http://semanticscience.org/resource/SIO_000682') : _namespace_SIO('http://semanticscience.org/resource/SIO_000029') , _namespace_SIO('http://semanticscience.org/resource/SIO_000684') : _namespace_SIO('http://semanticscience.org/resource/SIO_000029') , _namespace_SIO('http://semanticscience.org/resource/SIO_000687') : _namespace_SIO('http://semanticscience.org/resource/SIO_000322') , _namespace_SIO('http://semanticscience.org/resource/SIO_000697') : _namespace_SIO('http://semanticscience.org/resource/SIO_000709') , _namespace_SIO('http://semanticscience.org/resource/SIO_000699') : _namespace_SIO('http://semanticscience.org/resource/SIO_000737') , _namespace_SIO('http://semanticscience.org/resource/SIO_000709') : _namespace_SIO('http://semanticscience.org/resource/SIO_000001') , _namespace_SIO('http://semanticscience.org/resource/SIO_000710') : _namespace_SIO('http://semanticscience.org/resource/SIO_000709') , _namespace_SIO('http://semanticscience.org/resource/SIO_000733') : _namespace_SIO('http://semanticscience.org/resource/SIO_000737') , _namespace_SIO('http://semanticscience.org/resource/SIO_000734') : _namespace_SIO('http://semanticscience.org/resource/SIO_000737') , _namespace_SIO('http://semanticscience.org/resource/SIO_000735') : _namespace_SIO('http://semanticscience.org/resource/SIO_000737') , _namespace_SIO('http://semanticscience.org/resource/SIO_000736') : _namespace_SIO('http://semanticscience.org/resource/SIO_000001') , _namespace_SIO('http://semanticscience.org/resource/SIO_000737') : _namespace_SIO('http://semanticscience.org/resource/SIO_000736') , _namespace_SIO('http://semanticscience.org/resource/SIO_000738') : _namespace_SIO('http://semanticscience.org/resource/SIO_000737') , _namespace_SIO('http://semanticscience.org/resource/SIO_000749') : _namespace_SIO('http://semanticscience.org/resource/SIO_000737') , _namespace_SIO('http://semanticscience.org/resource/SIO_000772') : _namespace_SIO('http://semanticscience.org/resource/SIO_000631') , _namespace_SIO('http://semanticscience.org/resource/SIO_000773') : _namespace_SIO('http://semanticscience.org/resource/SIO_000252') , _namespace_SIO('http://semanticscience.org/resource/SIO_000774') : _namespace_SIO('http://semanticscience.org/resource/SIO_000772') , _namespace_SIO('http://semanticscience.org/resource/SIO_000775') : _namespace_SIO('http://semanticscience.org/resource/SIO_000773') , _namespace_SIO('http://semanticscience.org/resource/SIO_000793') : _namespace_SIO('http://semanticscience.org/resource/SIO_000687') , _namespace_SIO('http://semanticscience.org/resource/SIO_000892') : _namespace_SIO('http://semanticscience.org/resource/SIO_000252') , _namespace_SIO('http://semanticscience.org/resource/SIO_000900') : _namespace_SIO('http://semanticscience.org/resource/SIO_000008') , _namespace_SIO('http://semanticscience.org/resource/SIO_000901') : _namespace_SIO('http://semanticscience.org/resource/SIO_000011') , _namespace_SIO('http://semanticscience.org/resource/SIO_000905') : _namespace_SIO('http://semanticscience.org/resource/SIO_000291') , _namespace_SIO('http://semanticscience.org/resource/SIO_000970') : _namespace_SIO('http://semanticscience.org/resource/SIO_000975') , _namespace_SIO('http://semanticscience.org/resource/SIO_000971') : _namespace_SIO('http://semanticscience.org/resource/SIO_000974') , _namespace_SIO('http://semanticscience.org/resource/SIO_000972') : _namespace_SIO('http://semanticscience.org/resource/SIO_000974') , _namespace_SIO('http://semanticscience.org/resource/SIO_000973') : _namespace_SIO('http://semanticscience.org/resource/SIO_000975') , _namespace_SIO('http://semanticscience.org/resource/SIO_000974') : _namespace_SIO('http://semanticscience.org/resource/SIO_000053') , _namespace_SIO('http://semanticscience.org/resource/SIO_000975') : _namespace_SIO('http://semanticscience.org/resource/SIO_000093') , _namespace_SIO('http://semanticscience.org/resource/SIO_001096') : _namespace_SIO('http://semanticscience.org/resource/SIO_000272') , _namespace_SIO('http://semanticscience.org/resource/SIO_001097') : _namespace_SIO('http://semanticscience.org/resource/SIO_000272') , _namespace_SIO('http://semanticscience.org/resource/SIO_001098') : _namespace_SIO('http://semanticscience.org/resource/SIO_000272') , _namespace_SIO('http://semanticscience.org/resource/SIO_001101') : _namespace_SIO('http://semanticscience.org/resource/SIO_000709') , _namespace_SIO('http://semanticscience.org/resource/SIO_001154') : _namespace_SIO('http://semanticscience.org/resource/SIO_000294') , _namespace_SIO('http://semanticscience.org/resource/SIO_001155') : _namespace_SIO('http://semanticscience.org/resource/SIO_000352') , _namespace_SIO('http://semanticscience.org/resource/SIO_001156') : _namespace_SIO('http://semanticscience.org/resource/SIO_000294') , _namespace_SIO('http://semanticscience.org/resource/SIO_001157') : _namespace_SIO('http://semanticscience.org/resource/SIO_000352') , _namespace_SIO('http://semanticscience.org/resource/SIO_001158') : _namespace_SIO('http://semanticscience.org/resource/SIO_000294') , _namespace_SIO('http://semanticscience.org/resource/SIO_001159') : _namespace_SIO('http://semanticscience.org/resource/SIO_000352') , _namespace_SIO('http://semanticscience.org/resource/SIO_010078') : _namespace_SIO('http://semanticscience.org/resource/SIO_000338') , _namespace_SIO('http://semanticscience.org/resource/SIO_010079') : _namespace_SIO('http://semanticscience.org/resource/SIO_000339') , _namespace_SIO('http://semanticscience.org/resource/SIO_010080') : _namespace_SIO('http://semanticscience.org/resource/SIO_010078') , _namespace_SIO('http://semanticscience.org/resource/SIO_010081') : _namespace_SIO('http://semanticscience.org/resource/SIO_010079') , _namespace_SIO('http://semanticscience.org/resource/SIO_010082') : _namespace_SIO('http://semanticscience.org/resource/SIO_010078') , _namespace_SIO('http://semanticscience.org/resource/SIO_010083') : _namespace_SIO('http://semanticscience.org/resource/SIO_010079') , _namespace_SIO('http://semanticscience.org/resource/SIO_010302') : _namespace_SIO('http://semanticscience.org/resource/SIO_000272') , _namespace_SIO('http://semanticscience.org/resource/SIO_000009') : _namespace_SIO('http://semanticscience.org/resource/SIO_000015') , _namespace_SIO('http://semanticscience.org/resource/SIO_000012') : _namespace_SIO('http://semanticscience.org/resource/SIO_000620') , _namespace_SIO('http://semanticscience.org/resource/SIO_000013') : _namespace_SIO('http://semanticscience.org/resource/SIO_000056') , _namespace_SIO('http://semanticscience.org/resource/SIO_000016') : _namespace_SIO('http://semanticscience.org/resource/SIO_000340') , _namespace_SIO('http://semanticscience.org/resource/SIO_000017') : _namespace_SIO('http://semanticscience.org/resource/SIO_000112') , _namespace_SIO('http://semanticscience.org/resource/SIO_000019') : _namespace_SIO('http://semanticscience.org/resource/SIO_000370') , _namespace_SIO('http://semanticscience.org/resource/SIO_000031') : _namespace_SIO('http://semanticscience.org/resource/SIO_000418') , _namespace_SIO('http://semanticscience.org/resource/SIO_000032') : _namespace_SIO('http://semanticscience.org/resource/SIO_000418') , _namespace_SIO('http://semanticscience.org/resource/SIO_000034') : _namespace_SIO('http://semanticscience.org/resource/SIO_000033') , _namespace_SIO('http://semanticscience.org/resource/SIO_000035') : _namespace_SIO('http://semanticscience.org/resource/SIO_000033') , _namespace_SIO('http://semanticscience.org/resource/SIO_000036') : _namespace_SIO('http://semanticscience.org/resource/SIO_000959') , _namespace_SIO('http://semanticscience.org/resource/SIO_000038') : _namespace_SIO('http://semanticscience.org/resource/SIO_000037') , _namespace_SIO('http://semanticscience.org/resource/SIO_000039') : _namespace_SIO('http://semanticscience.org/resource/SIO_000038') , _namespace_SIO('http://semanticscience.org/resource/SIO_000040') : _namespace_SIO('http://semanticscience.org/resource/SIO_000790') , _namespace_SIO('http://semanticscience.org/resource/SIO_000041') : _namespace_SIO('http://semanticscience.org/resource/SIO_000038') , _namespace_SIO('http://semanticscience.org/resource/SIO_000042') : _namespace_SIO('http://semanticscience.org/resource/SIO_000038') , _namespace_SIO('http://semanticscience.org/resource/SIO_000043') : _namespace_SIO('http://semanticscience.org/resource/SIO_000039') , _namespace_SIO('http://semanticscience.org/resource/SIO_000044') : _namespace_SIO('http://semanticscience.org/resource/SIO_000037') , _namespace_SIO('http://semanticscience.org/resource/SIO_000045') : _namespace_SIO('http://semanticscience.org/resource/SIO_000044') , _namespace_SIO('http://semanticscience.org/resource/SIO_000046') : _namespace_SIO('http://semanticscience.org/resource/SIO_000044') , _namespace_SIO('http://semanticscience.org/resource/SIO_000047') : _namespace_SIO('http://semanticscience.org/resource/SIO_000046') , _namespace_SIO('http://semanticscience.org/resource/SIO_000048') : _namespace_SIO('http://semanticscience.org/resource/SIO_000037') , _namespace_SIO('http://semanticscience.org/resource/SIO_000049') : _namespace_SIO('http://semanticscience.org/resource/SIO_000048') , _namespace_SIO('http://semanticscience.org/resource/SIO_000051') : _namespace_SIO('http://semanticscience.org/resource/SIO_000026') , _namespace_SIO('http://semanticscience.org/resource/SIO_000055') : _namespace_SIO('http://semanticscience.org/resource/SIO_000026') , _namespace_SIO('http://semanticscience.org/resource/SIO_000057') : _namespace_SIO('http://semanticscience.org/resource/SIO_000056') , _namespace_SIO('http://semanticscience.org/resource/SIO_000071') : _namespace_SIO('http://semanticscience.org/resource/SIO_000070') , _namespace_SIO('http://semanticscience.org/resource/SIO_000072') : _namespace_SIO('http://semanticscience.org/resource/SIO_000071') , _namespace_SIO('http://semanticscience.org/resource/SIO_000073') : _namespace_SIO('http://semanticscience.org/resource/SIO_000071') , _namespace_SIO('http://semanticscience.org/resource/SIO_000074') : _namespace_SIO('http://semanticscience.org/resource/SIO_000052') , _namespace_SIO('http://semanticscience.org/resource/SIO_000075') : _namespace_SIO('http://semanticscience.org/resource/SIO_000015') , _namespace_SIO('http://semanticscience.org/resource/SIO_000076') : _namespace_SIO('http://semanticscience.org/resource/SIO_000091') , _namespace_SIO('http://semanticscience.org/resource/SIO_000077') : _namespace_SIO('http://semanticscience.org/resource/SIO_000116') , _namespace_SIO('http://semanticscience.org/resource/SIO_000079') : _namespace_SIO('http://semanticscience.org/resource/SIO_000078') , _namespace_SIO('http://semanticscience.org/resource/SIO_000080') : _namespace_SIO('http://semanticscience.org/resource/SIO_000612') , _namespace_SIO('http://semanticscience.org/resource/SIO_000081') : _namespace_SIO('http://semanticscience.org/resource/SIO_000080') , _namespace_SIO('http://semanticscience.org/resource/SIO_000082') : _namespace_SIO('http://semanticscience.org/resource/SIO_000081') , _namespace_SIO('http://semanticscience.org/resource/SIO_000083') : _namespace_SIO('http://semanticscience.org/resource/SIO_000904') , _namespace_SIO('http://semanticscience.org/resource/SIO_000085') : _namespace_SIO('http://semanticscience.org/resource/SIO_000113') , _namespace_SIO('http://semanticscience.org/resource/SIO_000087') : _namespace_SIO('http://semanticscience.org/resource/SIO_000148') , _namespace_SIO('http://semanticscience.org/resource/SIO_000094') : _namespace_SIO('http://semanticscience.org/resource/SIO_000075') , _namespace_SIO('http://semanticscience.org/resource/SIO_000097') : _namespace_SIO('http://semanticscience.org/resource/SIO_000602') , _namespace_SIO('http://semanticscience.org/resource/SIO_000098') : _namespace_SIO('http://semanticscience.org/resource/SIO_000097') , _namespace_SIO('http://semanticscience.org/resource/SIO_000099') : _namespace_SIO('http://semanticscience.org/resource/SIO_000097') , _namespace_SIO('http://semanticscience.org/resource/SIO_000100') : _namespace_SIO('http://semanticscience.org/resource/SIO_000097') , _namespace_SIO('http://semanticscience.org/resource/SIO_000101') : _namespace_SIO('http://semanticscience.org/resource/SIO_000097') , _namespace_SIO('http://semanticscience.org/resource/SIO_000102') : _namespace_SIO('http://semanticscience.org/resource/SIO_000101') , _namespace_SIO('http://semanticscience.org/resource/SIO_000103') : _namespace_SIO('http://semanticscience.org/resource/SIO_000097') , _namespace_SIO('http://semanticscience.org/resource/SIO_000104') : _namespace_SIO('http://semanticscience.org/resource/SIO_000078') , _namespace_SIO('http://semanticscience.org/resource/SIO_000106') : _namespace_SIO('http://semanticscience.org/resource/SIO_000087') , _namespace_SIO('http://semanticscience.org/resource/SIO_000107') : _namespace_SIO('http://semanticscience.org/resource/SIO_000111') , _namespace_SIO('http://semanticscience.org/resource/SIO_000108') : _namespace_SIO('http://semanticscience.org/resource/SIO_000078') , _namespace_SIO('http://semanticscience.org/resource/SIO_000109') : _namespace_SIO('http://semanticscience.org/resource/SIO_000087') , _namespace_SIO('http://semanticscience.org/resource/SIO_000113') : _namespace_SIO('http://semanticscience.org/resource/SIO_000483') , _namespace_SIO('http://semanticscience.org/resource/SIO_000117') : _namespace_SIO('http://semanticscience.org/resource/SIO_000116') , _namespace_SIO('http://semanticscience.org/resource/SIO_000118') : _namespace_SIO('http://semanticscience.org/resource/SIO_000116') , _namespace_SIO('http://semanticscience.org/resource/SIO_000119') : _namespace_SIO('http://semanticscience.org/resource/SIO_000116') , _namespace_SIO('http://semanticscience.org/resource/SIO_000120') : _namespace_SIO('http://semanticscience.org/resource/SIO_000116') , _namespace_SIO('http://semanticscience.org/resource/SIO_000121') : _namespace_SIO('http://semanticscience.org/resource/SIO_000162') , _namespace_SIO('http://semanticscience.org/resource/SIO_000122') : _namespace_SIO('http://semanticscience.org/resource/SIO_000342') , _namespace_SIO('http://semanticscience.org/resource/SIO_000123') : _namespace_SIO('http://semanticscience.org/resource/SIO_000342') , _namespace_SIO('http://semanticscience.org/resource/SIO_000124') : _namespace_SIO('http://semanticscience.org/resource/SIO_000342') , _namespace_SIO('http://semanticscience.org/resource/SIO_000125') : _namespace_SIO('http://semanticscience.org/resource/SIO_000342') , _namespace_SIO('http://semanticscience.org/resource/SIO_000127') : _namespace_SIO('http://semanticscience.org/resource/SIO_000094') , _namespace_SIO('http://semanticscience.org/resource/SIO_000129') : _namespace_SIO('http://semanticscience.org/resource/SIO_000148') , _namespace_SIO('http://semanticscience.org/resource/SIO_000130') : _namespace_SIO('http://semanticscience.org/resource/SIO_000075') , _namespace_SIO('http://semanticscience.org/resource/SIO_000131') : _namespace_SIO('http://semanticscience.org/resource/SIO_000130') , _namespace_SIO('http://semanticscience.org/resource/SIO_000133') : _namespace_SIO('http://semanticscience.org/resource/SIO_000275') , _namespace_SIO('http://semanticscience.org/resource/SIO_000135') : _namespace_SIO('http://semanticscience.org/resource/SIO_000136') , _namespace_SIO('http://semanticscience.org/resource/SIO_000137') : _namespace_SIO('http://semanticscience.org/resource/SIO_000326') , _namespace_SIO('http://semanticscience.org/resource/SIO_000138') : _namespace_SIO('http://semanticscience.org/resource/SIO_000289') , _namespace_SIO('http://semanticscience.org/resource/SIO_000140') : _namespace_SIO('http://semanticscience.org/resource/SIO_000101') , _namespace_SIO('http://semanticscience.org/resource/SIO_000141') : _namespace_SIO('http://semanticscience.org/resource/SIO_000316') , _namespace_SIO('http://semanticscience.org/resource/SIO_000142') : _namespace_SIO('http://semanticscience.org/resource/SIO_000141') , _namespace_SIO('http://semanticscience.org/resource/SIO_000143') : _namespace_SIO('http://semanticscience.org/resource/SIO_000141') , _namespace_SIO('http://semanticscience.org/resource/SIO_000144') : _namespace_SIO('http://semanticscience.org/resource/SIO_000920') , _namespace_SIO('http://semanticscience.org/resource/SIO_000147') : _namespace_SIO('http://semanticscience.org/resource/SIO_000133') , _namespace_SIO('http://semanticscience.org/resource/SIO_000148') : _namespace_SIO('http://semanticscience.org/resource/SIO_000651') , _namespace_SIO('http://semanticscience.org/resource/SIO_000151') : _namespace_SIO('http://semanticscience.org/resource/SIO_000148') , _namespace_SIO('http://semanticscience.org/resource/SIO_000152') : _namespace_SIO('http://semanticscience.org/resource/SIO_000148') , _namespace_SIO('http://semanticscience.org/resource/SIO_000153') : _namespace_SIO('http://semanticscience.org/resource/SIO_000148') , _namespace_SIO('http://semanticscience.org/resource/SIO_000154') : _namespace_SIO('http://semanticscience.org/resource/SIO_000087') , _namespace_SIO('http://semanticscience.org/resource/SIO_000155') : _namespace_SIO('http://semanticscience.org/resource/SIO_000087') , _namespace_SIO('http://semanticscience.org/resource/SIO_000156') : _namespace_SIO('http://semanticscience.org/resource/SIO_000106') , _namespace_SIO('http://semanticscience.org/resource/SIO_000157') : _namespace_SIO('http://semanticscience.org/resource/SIO_000106') , _namespace_SIO('http://semanticscience.org/resource/SIO_000158') : _namespace_SIO('http://semanticscience.org/resource/SIO_000295') , _namespace_SIO('http://semanticscience.org/resource/SIO_000159') : _namespace_SIO('http://semanticscience.org/resource/SIO_000087') , _namespace_SIO('http://semanticscience.org/resource/SIO_000160') : _namespace_SIO('http://semanticscience.org/resource/SIO_000162') , _namespace_SIO('http://semanticscience.org/resource/SIO_000161') : _namespace_SIO('http://semanticscience.org/resource/SIO_000087') , _namespace_SIO('http://semanticscience.org/resource/SIO_000162') : _namespace_SIO('http://semanticscience.org/resource/SIO_000295') , _namespace_SIO('http://semanticscience.org/resource/SIO_000163') : _namespace_SIO('http://semanticscience.org/resource/SIO_000162') , _namespace_SIO('http://semanticscience.org/resource/SIO_000164') : _namespace_SIO('http://semanticscience.org/resource/SIO_000087') , _namespace_SIO('http://semanticscience.org/resource/SIO_000165') : _namespace_SIO('http://semanticscience.org/resource/SIO_000087') , _namespace_SIO('http://semanticscience.org/resource/SIO_000166') : _namespace_SIO('http://semanticscience.org/resource/SIO_000165') , _namespace_SIO('http://semanticscience.org/resource/SIO_000167') : _namespace_SIO('http://semanticscience.org/resource/SIO_000165') , _namespace_SIO('http://semanticscience.org/resource/SIO_000168') : _namespace_SIO('http://semanticscience.org/resource/SIO_000165') , _namespace_SIO('http://semanticscience.org/resource/SIO_000169') : _namespace_SIO('http://semanticscience.org/resource/SIO_000148') , _namespace_SIO('http://semanticscience.org/resource/SIO_000170') : _namespace_SIO('http://semanticscience.org/resource/SIO_000148') , _namespace_SIO('http://semanticscience.org/resource/SIO_000171') : _namespace_SIO('http://semanticscience.org/resource/SIO_000651') , _namespace_SIO('http://semanticscience.org/resource/SIO_000172') : _namespace_SIO('http://semanticscience.org/resource/SIO_000328') , _namespace_SIO('http://semanticscience.org/resource/SIO_000173') : _namespace_SIO('http://semanticscience.org/resource/SIO_000287') , _namespace_SIO('http://semanticscience.org/resource/SIO_000174') : _namespace_SIO('http://semanticscience.org/resource/SIO_000171') , _namespace_SIO('http://semanticscience.org/resource/SIO_000175') : _namespace_SIO('http://semanticscience.org/resource/SIO_000185') , _namespace_SIO('http://semanticscience.org/resource/SIO_000176') : _namespace_SIO('http://semanticscience.org/resource/SIO_000171') , _namespace_SIO('http://semanticscience.org/resource/SIO_000177') : _namespace_SIO('http://semanticscience.org/resource/SIO_000944') , _namespace_SIO('http://semanticscience.org/resource/SIO_000178') : _namespace_SIO('http://semanticscience.org/resource/SIO_000794') , _namespace_SIO('http://semanticscience.org/resource/SIO_000179') : _namespace_SIO('http://semanticscience.org/resource/SIO_000651') , _namespace_SIO('http://semanticscience.org/resource/SIO_000180') : _namespace_SIO('http://semanticscience.org/resource/SIO_000179') , _namespace_SIO('http://semanticscience.org/resource/SIO_000181') : _namespace_SIO('http://semanticscience.org/resource/SIO_000116') , _namespace_SIO('http://semanticscience.org/resource/SIO_000182') : _namespace_SIO('http://semanticscience.org/resource/SIO_000116') , _namespace_SIO('http://semanticscience.org/resource/SIO_000183') : _namespace_SIO('http://semanticscience.org/resource/SIO_000116') , _namespace_SIO('http://semanticscience.org/resource/SIO_000184') : _namespace_SIO('http://semanticscience.org/resource/SIO_000183') , _namespace_SIO('http://semanticscience.org/resource/SIO_000185') : _namespace_SIO('http://semanticscience.org/resource/SIO_000179') , _namespace_SIO('http://semanticscience.org/resource/SIO_000186') : _namespace_SIO('http://semanticscience.org/resource/SIO_000653') , _namespace_SIO('http://semanticscience.org/resource/SIO_000188') : _namespace_SIO('http://semanticscience.org/resource/SIO_000111') , _namespace_SIO('http://semanticscience.org/resource/SIO_000189') : _namespace_SIO('http://semanticscience.org/resource/SIO_000111') , _namespace_SIO('http://semanticscience.org/resource/SIO_000190') : _namespace_SIO('http://semanticscience.org/resource/SIO_000111') , _namespace_SIO('http://semanticscience.org/resource/SIO_000191') : _namespace_SIO('http://semanticscience.org/resource/SIO_000111') , _namespace_SIO('http://semanticscience.org/resource/SIO_000192') : _namespace_SIO('http://semanticscience.org/resource/SIO_000111') , _namespace_SIO('http://semanticscience.org/resource/SIO_000193') : _namespace_SIO('http://semanticscience.org/resource/SIO_000111') , _namespace_SIO('http://semanticscience.org/resource/SIO_000194') : _namespace_SIO('http://semanticscience.org/resource/SIO_000111') , _namespace_SIO('http://semanticscience.org/resource/SIO_000195') : _namespace_SIO('http://semanticscience.org/resource/SIO_000111') , _namespace_SIO('http://semanticscience.org/resource/SIO_000196') : _namespace_SIO('http://semanticscience.org/resource/SIO_000111') , _namespace_SIO('http://semanticscience.org/resource/SIO_000197') : _namespace_SIO('http://semanticscience.org/resource/SIO_000111') , _namespace_SIO('http://semanticscience.org/resource/SIO_000198') : _namespace_SIO('http://semanticscience.org/resource/SIO_000111') , _namespace_SIO('http://semanticscience.org/resource/SIO_000199') : _namespace_SIO('http://semanticscience.org/resource/SIO_000111') , _namespace_SIO('http://semanticscience.org/resource/SIO_000200') : _namespace_SIO('http://semanticscience.org/resource/SIO_000111') , _namespace_SIO('http://semanticscience.org/resource/SIO_000201') : _namespace_SIO('http://semanticscience.org/resource/SIO_000111') , _namespace_SIO('http://semanticscience.org/resource/SIO_000220') : _namespace_SIO('http://semanticscience.org/resource/SIO_000238') , _namespace_SIO('http://semanticscience.org/resource/SIO_000237') : _namespace_SIO('http://semanticscience.org/resource/SIO_000179') , _namespace_SIO('http://semanticscience.org/resource/SIO_000238') : _namespace_SIO('http://semanticscience.org/resource/SIO_000075') , _namespace_SIO('http://semanticscience.org/resource/SIO_000239') : _namespace_SIO('http://semanticscience.org/resource/SIO_000238') , _namespace_SIO('http://semanticscience.org/resource/SIO_000261') : _namespace_SIO('http://semanticscience.org/resource/SIO_000256') , _namespace_SIO('http://semanticscience.org/resource/SIO_000262') : _namespace_SIO('http://semanticscience.org/resource/SIO_000256') , _namespace_SIO('http://semanticscience.org/resource/SIO_000263') : _namespace_SIO('http://semanticscience.org/resource/SIO_000259') , _namespace_SIO('http://semanticscience.org/resource/SIO_000264') : _namespace_SIO('http://semanticscience.org/resource/SIO_000259') , _namespace_SIO('http://semanticscience.org/resource/SIO_000268') : _namespace_SIO('http://semanticscience.org/resource/SIO_000436') , _namespace_SIO('http://semanticscience.org/resource/SIO_000276') : _namespace_SIO('http://semanticscience.org/resource/SIO_000006') , _namespace_SIO('http://semanticscience.org/resource/SIO_000280') : _namespace_SIO('http://semanticscience.org/resource/SIO_000238') , _namespace_SIO('http://semanticscience.org/resource/SIO_000281') : _namespace_SIO('http://semanticscience.org/resource/SIO_000238') , _namespace_SIO('http://semanticscience.org/resource/SIO_000282') : _namespace_SIO('http://semanticscience.org/resource/SIO_000280') , _namespace_SIO('http://semanticscience.org/resource/SIO_000284') : _namespace_SIO('http://semanticscience.org/resource/SIO_000256') , _namespace_SIO('http://semanticscience.org/resource/SIO_000285') : _namespace_SIO('http://semanticscience.org/resource/SIO_000012') , _namespace_SIO('http://semanticscience.org/resource/SIO_000287') : _namespace_SIO('http://semanticscience.org/resource/SIO_000009') , _namespace_SIO('http://semanticscience.org/resource/SIO_000290') : _namespace_SIO('http://semanticscience.org/resource/SIO_000285') , _namespace_SIO('http://semanticscience.org/resource/SIO_000297') : _namespace_SIO('http://semanticscience.org/resource/SIO_000612') , _namespace_SIO('http://semanticscience.org/resource/SIO_000301') : _namespace_SIO('http://semanticscience.org/resource/SIO_000082') , _namespace_SIO('http://semanticscience.org/resource/SIO_000302') : _namespace_SIO('http://semanticscience.org/resource/SIO_000148') , _namespace_SIO('http://semanticscience.org/resource/SIO_000304') : _namespace_SIO('http://semanticscience.org/resource/SIO_000148') , _namespace_SIO('http://semanticscience.org/resource/SIO_000305') : _namespace_SIO('http://semanticscience.org/resource/SIO_000613') , _namespace_SIO('http://semanticscience.org/resource/SIO_000306') : _namespace_SIO('http://semanticscience.org/resource/SIO_000148') , _namespace_SIO('http://semanticscience.org/resource/SIO_000307') : _namespace_SIO('http://semanticscience.org/resource/SIO_000005') , _namespace_SIO('http://semanticscience.org/resource/SIO_000308') : _namespace_SIO('http://semanticscience.org/resource/SIO_000794') , _namespace_SIO('http://semanticscience.org/resource/SIO_000309') : _namespace_SIO('http://semanticscience.org/resource/SIO_000794') , _namespace_SIO('http://semanticscience.org/resource/SIO_000316') : _namespace_SIO('http://semanticscience.org/resource/SIO_000315') , _namespace_SIO('http://semanticscience.org/resource/SIO_000317') : _namespace_SIO('http://semanticscience.org/resource/SIO_000315') , _namespace_SIO('http://semanticscience.org/resource/SIO_000318') : _namespace_SIO('http://semanticscience.org/resource/SIO_000013') , _namespace_SIO('http://semanticscience.org/resource/SIO_000319') : _namespace_SIO('http://semanticscience.org/resource/SIO_000013') , _namespace_SIO('http://semanticscience.org/resource/SIO_000320') : _namespace_SIO('http://semanticscience.org/resource/SIO_000317') , _namespace_SIO('http://semanticscience.org/resource/SIO_000321') : _namespace_SIO('http://semanticscience.org/resource/SIO_000320') , _namespace_SIO('http://semanticscience.org/resource/SIO_000326') : _namespace_SIO('http://semanticscience.org/resource/SIO_000275') , _namespace_SIO('http://semanticscience.org/resource/SIO_000327') : _namespace_SIO('http://semanticscience.org/resource/SIO_000320') , _namespace_SIO('http://semanticscience.org/resource/SIO_000329') : _namespace_SIO('http://semanticscience.org/resource/SIO_000320') , _namespace_SIO('http://semanticscience.org/resource/SIO_000330') : _namespace_SIO('http://semanticscience.org/resource/SIO_000320') , _namespace_SIO('http://semanticscience.org/resource/SIO_000331') : _namespace_SIO('http://semanticscience.org/resource/SIO_000129') , _namespace_SIO('http://semanticscience.org/resource/SIO_000343') : _namespace_SIO('http://semanticscience.org/resource/SIO_000494') , _namespace_SIO('http://semanticscience.org/resource/SIO_000344') : _namespace_SIO('http://semanticscience.org/resource/SIO_000639') , _namespace_SIO('http://semanticscience.org/resource/SIO_000345') : _namespace_SIO('http://semanticscience.org/resource/SIO_000378') , _namespace_SIO('http://semanticscience.org/resource/SIO_000346') : _namespace_SIO('http://semanticscience.org/resource/SIO_000351') , _namespace_SIO('http://semanticscience.org/resource/SIO_000347') : _namespace_SIO('http://semanticscience.org/resource/SIO_000374') , _namespace_SIO('http://semanticscience.org/resource/SIO_000348') : _namespace_SIO('http://semanticscience.org/resource/SIO_000347') , _namespace_SIO('http://semanticscience.org/resource/SIO_000349') : _namespace_SIO('http://semanticscience.org/resource/SIO_000343') , _namespace_SIO('http://semanticscience.org/resource/SIO_000350') : _namespace_SIO('http://semanticscience.org/resource/SIO_001087') , _namespace_SIO('http://semanticscience.org/resource/SIO_000351') : _namespace_SIO('http://semanticscience.org/resource/SIO_000385') , _namespace_SIO('http://semanticscience.org/resource/SIO_000353') : _namespace_SIO('http://semanticscience.org/resource/SIO_000639') , _namespace_SIO('http://semanticscience.org/resource/SIO_000354') : _namespace_SIO('http://semanticscience.org/resource/SIO_000112') , _namespace_SIO('http://semanticscience.org/resource/SIO_000357') : _namespace_SIO('http://semanticscience.org/resource/SIO_010019') , _namespace_SIO('http://semanticscience.org/resource/SIO_000358') : _namespace_SIO('http://semanticscience.org/resource/SIO_000825') , _namespace_SIO('http://semanticscience.org/resource/SIO_000359') : _namespace_SIO('http://semanticscience.org/resource/SIO_000337') , _namespace_SIO('http://semanticscience.org/resource/SIO_000366') : _namespace_SIO('http://semanticscience.org/resource/SIO_000075') , _namespace_SIO('http://semanticscience.org/resource/SIO_000367') : _namespace_SIO('http://semanticscience.org/resource/SIO_000075') , _namespace_SIO('http://semanticscience.org/resource/SIO_000368') : _namespace_SIO('http://semanticscience.org/resource/SIO_000075') , _namespace_SIO('http://semanticscience.org/resource/SIO_000371') : _namespace_SIO('http://semanticscience.org/resource/SIO_000408') , _namespace_SIO('http://semanticscience.org/resource/SIO_000372') : _namespace_SIO('http://semanticscience.org/resource/SIO_000343') , _namespace_SIO('http://semanticscience.org/resource/SIO_000373') : _namespace_SIO('http://semanticscience.org/resource/SIO_000346') , _namespace_SIO('http://semanticscience.org/resource/SIO_000374') : _namespace_SIO('http://semanticscience.org/resource/SIO_000385') , _namespace_SIO('http://semanticscience.org/resource/SIO_000375') : _namespace_SIO('http://semanticscience.org/resource/SIO_000351') , _namespace_SIO('http://semanticscience.org/resource/SIO_000376') : _namespace_SIO('http://semanticscience.org/resource/SIO_000343') , _namespace_SIO('http://semanticscience.org/resource/SIO_000377') : _namespace_SIO('http://semanticscience.org/resource/SIO_000378') , _namespace_SIO('http://semanticscience.org/resource/SIO_000378') : _namespace_SIO('http://semanticscience.org/resource/SIO_000343') , _namespace_SIO('http://semanticscience.org/resource/SIO_000379') : _namespace_SIO('http://semanticscience.org/resource/SIO_001055') , _namespace_SIO('http://semanticscience.org/resource/SIO_000380') : _namespace_SIO('http://semanticscience.org/resource/SIO_000392') , _namespace_SIO('http://semanticscience.org/resource/SIO_000381') : _namespace_SIO('http://semanticscience.org/resource/SIO_000380') , _namespace_SIO('http://semanticscience.org/resource/SIO_000382') : _namespace_SIO('http://semanticscience.org/resource/SIO_000349') , _namespace_SIO('http://semanticscience.org/resource/SIO_000383') : _namespace_SIO('http://semanticscience.org/resource/SIO_000351') , _namespace_SIO('http://semanticscience.org/resource/SIO_000384') : _namespace_SIO('http://semanticscience.org/resource/SIO_000374') , _namespace_SIO('http://semanticscience.org/resource/SIO_000385') : _namespace_SIO('http://semanticscience.org/resource/SIO_000343') , _namespace_SIO('http://semanticscience.org/resource/SIO_000386') : _namespace_SIO('http://semanticscience.org/resource/SIO_000350') , _namespace_SIO('http://semanticscience.org/resource/SIO_000387') : _namespace_SIO('http://semanticscience.org/resource/SIO_000350') , _namespace_SIO('http://semanticscience.org/resource/SIO_000388') : _namespace_SIO('http://semanticscience.org/resource/SIO_000494') , _namespace_SIO('http://semanticscience.org/resource/SIO_000389') : _namespace_SIO('http://semanticscience.org/resource/SIO_000349') , _namespace_SIO('http://semanticscience.org/resource/SIO_000390') : _namespace_SIO('http://semanticscience.org/resource/SIO_000494') , _namespace_SIO('http://semanticscience.org/resource/SIO_000392') : _namespace_SIO('http://semanticscience.org/resource/SIO_000343') , _namespace_SIO('http://semanticscience.org/resource/SIO_000393') : _namespace_SIO('http://semanticscience.org/resource/SIO_000498') , _namespace_SIO('http://semanticscience.org/resource/SIO_000395') : _namespace_SIO('http://semanticscience.org/resource/SIO_000343') , _namespace_SIO('http://semanticscience.org/resource/SIO_000396') : _namespace_SIO('http://semanticscience.org/resource/SIO_000602') , _namespace_SIO('http://semanticscience.org/resource/SIO_000397') : _namespace_SIO('http://semanticscience.org/resource/SIO_000494') , _namespace_SIO('http://semanticscience.org/resource/SIO_000399') : _namespace_SIO('http://semanticscience.org/resource/SIO_000498') , _namespace_SIO('http://semanticscience.org/resource/SIO_000400') : _namespace_SIO('http://semanticscience.org/resource/SIO_000072') , _namespace_SIO('http://semanticscience.org/resource/SIO_000401') : _namespace_SIO('http://semanticscience.org/resource/SIO_000072') , _namespace_SIO('http://semanticscience.org/resource/SIO_000402') : _namespace_SIO('http://semanticscience.org/resource/SIO_000072') , _namespace_SIO('http://semanticscience.org/resource/SIO_000403') : _namespace_SIO('http://semanticscience.org/resource/SIO_000620') , _namespace_SIO('http://semanticscience.org/resource/SIO_000404') : _namespace_SIO('http://semanticscience.org/resource/SIO_000406') , _namespace_SIO('http://semanticscience.org/resource/SIO_000405') : _namespace_SIO('http://semanticscience.org/resource/SIO_000406') , _namespace_SIO('http://semanticscience.org/resource/SIO_000406') : _namespace_SIO('http://semanticscience.org/resource/SIO_000498') , _namespace_SIO('http://semanticscience.org/resource/SIO_000407') : _namespace_SIO('http://semanticscience.org/resource/SIO_000536') , _namespace_SIO('http://semanticscience.org/resource/SIO_000408') : _namespace_SIO('http://semanticscience.org/resource/SIO_000494') , _namespace_SIO('http://semanticscience.org/resource/SIO_000409') : _namespace_SIO('http://semanticscience.org/resource/SIO_000014') , _namespace_SIO('http://semanticscience.org/resource/SIO_000410') : _namespace_SIO('http://semanticscience.org/resource/SIO_000828') , _namespace_SIO('http://semanticscience.org/resource/SIO_000411') : _namespace_SIO('http://semanticscience.org/resource/SIO_000828') , _namespace_SIO('http://semanticscience.org/resource/SIO_000412') : _namespace_SIO('http://semanticscience.org/resource/SIO_000831') , _namespace_SIO('http://semanticscience.org/resource/SIO_000413') : _namespace_SIO('http://semanticscience.org/resource/SIO_000414') , _namespace_SIO('http://semanticscience.org/resource/SIO_000414') : _namespace_SIO('http://semanticscience.org/resource/SIO_000370') , _namespace_SIO('http://semanticscience.org/resource/SIO_000415') : _namespace_SIO('http://semanticscience.org/resource/SIO_000413') , _namespace_SIO('http://semanticscience.org/resource/SIO_000417') : _namespace_SIO('http://semanticscience.org/resource/SIO_000391') , _namespace_SIO('http://semanticscience.org/resource/SIO_000418') : _namespace_SIO('http://semanticscience.org/resource/SIO_000391') , _namespace_SIO('http://semanticscience.org/resource/SIO_000419') : _namespace_SIO('http://semanticscience.org/resource/SIO_000080') , _namespace_SIO('http://semanticscience.org/resource/SIO_000423') : _namespace_SIO('http://semanticscience.org/resource/SIO_000083') , _namespace_SIO('http://semanticscience.org/resource/SIO_000428') : _namespace_SIO('http://semanticscience.org/resource/SIO_000417') , _namespace_SIO('http://semanticscience.org/resource/SIO_000429') : _namespace_SIO('http://semanticscience.org/resource/SIO_000417') , _namespace_SIO('http://semanticscience.org/resource/SIO_000430') : _namespace_SIO('http://semanticscience.org/resource/SIO_000417') , _namespace_SIO('http://semanticscience.org/resource/SIO_000431') : _namespace_SIO('http://semanticscience.org/resource/SIO_000417') , _namespace_SIO('http://semanticscience.org/resource/SIO_000432') : _namespace_SIO('http://semanticscience.org/resource/SIO_000417') , _namespace_SIO('http://semanticscience.org/resource/SIO_000433') : _namespace_SIO('http://semanticscience.org/resource/SIO_000417') , _namespace_SIO('http://semanticscience.org/resource/SIO_000434') : _namespace_SIO('http://semanticscience.org/resource/SIO_000417') , _namespace_SIO('http://semanticscience.org/resource/SIO_000435') : _namespace_SIO('http://semanticscience.org/resource/SIO_000417') , _namespace_SIO('http://semanticscience.org/resource/SIO_000438') : _namespace_SIO('http://semanticscience.org/resource/SIO_000790') , _namespace_SIO('http://semanticscience.org/resource/SIO_000439') : _namespace_SIO('http://semanticscience.org/resource/SIO_000056') , _namespace_SIO('http://semanticscience.org/resource/SIO_000442') : _namespace_SIO('http://semanticscience.org/resource/SIO_000083') , _namespace_SIO('http://semanticscience.org/resource/SIO_000443') : _namespace_SIO('http://semanticscience.org/resource/SIO_000083') , _namespace_SIO('http://semanticscience.org/resource/SIO_000444') : _namespace_SIO('http://semanticscience.org/resource/SIO_000443') , _namespace_SIO('http://semanticscience.org/resource/SIO_000445') : _namespace_SIO('http://semanticscience.org/resource/SIO_000443') , _namespace_SIO('http://semanticscience.org/resource/SIO_000446') : _namespace_SIO('http://semanticscience.org/resource/SIO_000443') , _namespace_SIO('http://semanticscience.org/resource/SIO_000447') : _namespace_SIO('http://semanticscience.org/resource/SIO_000083') , _namespace_SIO('http://semanticscience.org/resource/SIO_000449') : _namespace_SIO('http://semanticscience.org/resource/SIO_000448') , _namespace_SIO('http://semanticscience.org/resource/SIO_000452') : _namespace_SIO('http://semanticscience.org/resource/SIO_000451') , _namespace_SIO('http://semanticscience.org/resource/SIO_000453') : _namespace_SIO('http://semanticscience.org/resource/SIO_000451') , _namespace_SIO('http://semanticscience.org/resource/SIO_000454') : _namespace_SIO('http://semanticscience.org/resource/SIO_000451') , _namespace_SIO('http://semanticscience.org/resource/SIO_000455') : _namespace_SIO('http://semanticscience.org/resource/SIO_000450') , _namespace_SIO('http://semanticscience.org/resource/SIO_000456') : _namespace_SIO('http://semanticscience.org/resource/SIO_000455') , _namespace_SIO('http://semanticscience.org/resource/SIO_000457') : _namespace_SIO('http://semanticscience.org/resource/SIO_000455') , _namespace_SIO('http://semanticscience.org/resource/SIO_000458') : _namespace_SIO('http://semanticscience.org/resource/SIO_000450') , _namespace_SIO('http://semanticscience.org/resource/SIO_000459') : _namespace_SIO('http://semanticscience.org/resource/SIO_000458') , _namespace_SIO('http://semanticscience.org/resource/SIO_000460') : _namespace_SIO('http://semanticscience.org/resource/SIO_000458') , _namespace_SIO('http://semanticscience.org/resource/SIO_000461') : _namespace_SIO('http://semanticscience.org/resource/SIO_000458') , _namespace_SIO('http://semanticscience.org/resource/SIO_000462') : _namespace_SIO('http://semanticscience.org/resource/SIO_000461') , _namespace_SIO('http://semanticscience.org/resource/SIO_000463') : _namespace_SIO('http://semanticscience.org/resource/SIO_000461') , _namespace_SIO('http://semanticscience.org/resource/SIO_000464') : _namespace_SIO('http://semanticscience.org/resource/SIO_000150') , _namespace_SIO('http://semanticscience.org/resource/SIO_000466') : _namespace_SIO('http://semanticscience.org/resource/SIO_000742') , _namespace_SIO('http://semanticscience.org/resource/SIO_000467') : _namespace_SIO('http://semanticscience.org/resource/SIO_000743') , _namespace_SIO('http://semanticscience.org/resource/SIO_000468') : _namespace_SIO('http://semanticscience.org/resource/SIO_000448') , _namespace_SIO('http://semanticscience.org/resource/SIO_000470') : _namespace_SIO('http://semanticscience.org/resource/SIO_000185') , _namespace_SIO('http://semanticscience.org/resource/SIO_000471') : _namespace_SIO('http://semanticscience.org/resource/SIO_000185') , _namespace_SIO('http://semanticscience.org/resource/SIO_000472') : _namespace_SIO('http://semanticscience.org/resource/SIO_000069') , _namespace_SIO('http://semanticscience.org/resource/SIO_000475') : _namespace_SIO('http://semanticscience.org/resource/SIO_000026') , _namespace_SIO('http://semanticscience.org/resource/SIO_000478') : _namespace_SIO('http://semanticscience.org/resource/SIO_000479') , _namespace_SIO('http://semanticscience.org/resource/SIO_000479') : _namespace_SIO('http://semanticscience.org/resource/SIO_000721') , _namespace_SIO('http://semanticscience.org/resource/SIO_000480') : _namespace_SIO('http://semanticscience.org/resource/SIO_000478') , _namespace_SIO('http://semanticscience.org/resource/SIO_000481') : _namespace_SIO('http://semanticscience.org/resource/SIO_000478') , _namespace_SIO('http://semanticscience.org/resource/SIO_000485') : _namespace_SIO('http://semanticscience.org/resource/SIO_010375') , _namespace_SIO('http://semanticscience.org/resource/SIO_000486') : _namespace_SIO('http://semanticscience.org/resource/SIO_010375') , _namespace_SIO('http://semanticscience.org/resource/SIO_000487') : _namespace_SIO('http://semanticscience.org/resource/SIO_010375') , _namespace_SIO('http://semanticscience.org/resource/SIO_000488') : _namespace_SIO('http://semanticscience.org/resource/SIO_010375') , _namespace_SIO('http://semanticscience.org/resource/SIO_000489') : _namespace_SIO('http://semanticscience.org/resource/SIO_010376') , _namespace_SIO('http://semanticscience.org/resource/SIO_000492') : _namespace_SIO('http://semanticscience.org/resource/SIO_000494') , _namespace_SIO('http://semanticscience.org/resource/SIO_000493') : _namespace_SIO('http://semanticscience.org/resource/SIO_000113') , _namespace_SIO('http://semanticscience.org/resource/SIO_000494') : _namespace_SIO('http://semanticscience.org/resource/SIO_000701') , _namespace_SIO('http://semanticscience.org/resource/SIO_000498') : _namespace_SIO('http://semanticscience.org/resource/SIO_000485') , _namespace_SIO('http://semanticscience.org/resource/SIO_000499') : _namespace_SIO('http://semanticscience.org/resource/SIO_000536') , _namespace_SIO('http://semanticscience.org/resource/SIO_000505') : _namespace_SIO('http://semanticscience.org/resource/SIO_000506') , _namespace_SIO('http://semanticscience.org/resource/SIO_000506') : _namespace_SIO('http://semanticscience.org/resource/SIO_000015') , _namespace_SIO('http://semanticscience.org/resource/SIO_000507') : _namespace_SIO('http://semanticscience.org/resource/SIO_000506') , _namespace_SIO('http://semanticscience.org/resource/SIO_000508') : _namespace_SIO('http://semanticscience.org/resource/SIO_000532') , _namespace_SIO('http://semanticscience.org/resource/SIO_000509') : _namespace_SIO('http://semanticscience.org/resource/SIO_000532') , _namespace_SIO('http://semanticscience.org/resource/SIO_000511') : _namespace_SIO('http://semanticscience.org/resource/SIO_000608') , _namespace_SIO('http://semanticscience.org/resource/SIO_000513') : _namespace_SIO('http://semanticscience.org/resource/SIO_000512') , _namespace_SIO('http://semanticscience.org/resource/SIO_000514') : _namespace_SIO('http://semanticscience.org/resource/SIO_000513') , _namespace_SIO('http://semanticscience.org/resource/SIO_000515') : _namespace_SIO('http://semanticscience.org/resource/SIO_000513') , _namespace_SIO('http://semanticscience.org/resource/SIO_000516') : _namespace_SIO('http://semanticscience.org/resource/SIO_000511') , _namespace_SIO('http://semanticscience.org/resource/SIO_000517') : _namespace_SIO('http://semanticscience.org/resource/SIO_000505') , _namespace_SIO('http://semanticscience.org/resource/SIO_000518') : _namespace_SIO('http://semanticscience.org/resource/SIO_000517') , _namespace_SIO('http://semanticscience.org/resource/SIO_000519') : _namespace_SIO('http://semanticscience.org/resource/SIO_000518') , _namespace_SIO('http://semanticscience.org/resource/SIO_000520') : _namespace_SIO('http://semanticscience.org/resource/SIO_000505') , _namespace_SIO('http://semanticscience.org/resource/SIO_000525') : _namespace_SIO('http://semanticscience.org/resource/SIO_000534') , _namespace_SIO('http://semanticscience.org/resource/SIO_000526') : _namespace_SIO('http://semanticscience.org/resource/SIO_000534') , _namespace_SIO('http://semanticscience.org/resource/SIO_000527') : _namespace_SIO('http://semanticscience.org/resource/SIO_000535') , _namespace_SIO('http://semanticscience.org/resource/SIO_000528') : _namespace_SIO('http://semanticscience.org/resource/SIO_000527') , _namespace_SIO('http://semanticscience.org/resource/SIO_000529') : _namespace_SIO('http://semanticscience.org/resource/SIO_000527') , _namespace_SIO('http://semanticscience.org/resource/SIO_000530') : _namespace_SIO('http://semanticscience.org/resource/SIO_000527') , _namespace_SIO('http://semanticscience.org/resource/SIO_000531') : _namespace_SIO('http://semanticscience.org/resource/SIO_000535') , _namespace_SIO('http://semanticscience.org/resource/SIO_000532') : _namespace_SIO('http://semanticscience.org/resource/SIO_000507') , _namespace_SIO('http://semanticscience.org/resource/SIO_000533') : _namespace_SIO('http://semanticscience.org/resource/SIO_000540') , _namespace_SIO('http://semanticscience.org/resource/SIO_000534') : _namespace_SIO('http://semanticscience.org/resource/SIO_000511') , _namespace_SIO('http://semanticscience.org/resource/SIO_000535') : _namespace_SIO('http://semanticscience.org/resource/SIO_000511') , _namespace_SIO('http://semanticscience.org/resource/SIO_000536') : _namespace_SIO('http://semanticscience.org/resource/SIO_000395') , _namespace_SIO('http://semanticscience.org/resource/SIO_000537') : _namespace_SIO('http://semanticscience.org/resource/SIO_000055') , _namespace_SIO('http://semanticscience.org/resource/SIO_000538') : _namespace_SIO('http://semanticscience.org/resource/SIO_000537') , _namespace_SIO('http://semanticscience.org/resource/SIO_000539') : _namespace_SIO('http://semanticscience.org/resource/SIO_000511') , _namespace_SIO('http://semanticscience.org/resource/SIO_000540') : _namespace_SIO('http://semanticscience.org/resource/SIO_000516') , _namespace_SIO('http://semanticscience.org/resource/SIO_000541') : _namespace_SIO('http://semanticscience.org/resource/SIO_000540') , _namespace_SIO('http://semanticscience.org/resource/SIO_000542') : _namespace_SIO('http://semanticscience.org/resource/SIO_000494') , _namespace_SIO('http://semanticscience.org/resource/SIO_000544') : _namespace_SIO('http://semanticscience.org/resource/SIO_000372') , _namespace_SIO('http://semanticscience.org/resource/SIO_000547') : _namespace_SIO('http://semanticscience.org/resource/SIO_000376') , _namespace_SIO('http://semanticscience.org/resource/SIO_000549') : _namespace_SIO('http://semanticscience.org/resource/SIO_010355') , _namespace_SIO('http://semanticscience.org/resource/SIO_000550') : _namespace_SIO('http://semanticscience.org/resource/SIO_010354') , _namespace_SIO('http://semanticscience.org/resource/SIO_000551') : _namespace_SIO('http://semanticscience.org/resource/SIO_010347') , _namespace_SIO('http://semanticscience.org/resource/SIO_000554') : _namespace_SIO('http://semanticscience.org/resource/SIO_000307') , _namespace_SIO('http://semanticscience.org/resource/SIO_000555') : _namespace_SIO('http://semanticscience.org/resource/SIO_000307') , _namespace_SIO('http://semanticscience.org/resource/SIO_000556') : _namespace_SIO('http://semanticscience.org/resource/SIO_010071') , _namespace_SIO('http://semanticscience.org/resource/SIO_000561') : _namespace_SIO('http://semanticscience.org/resource/SIO_011121') , _namespace_SIO('http://semanticscience.org/resource/SIO_000562') : _namespace_SIO('http://semanticscience.org/resource/SIO_000576') , _namespace_SIO('http://semanticscience.org/resource/SIO_000564') : _namespace_SIO('http://semanticscience.org/resource/SIO_000573') , _namespace_SIO('http://semanticscience.org/resource/SIO_000566') : _namespace_SIO('http://semanticscience.org/resource/SIO_000368') , _namespace_SIO('http://semanticscience.org/resource/SIO_000567') : _namespace_SIO('http://semanticscience.org/resource/SIO_000569') , _namespace_SIO('http://semanticscience.org/resource/SIO_000568') : _namespace_SIO('http://semanticscience.org/resource/SIO_000569') , _namespace_SIO('http://semanticscience.org/resource/SIO_000569') : _namespace_SIO('http://semanticscience.org/resource/SIO_000368') , _namespace_SIO('http://semanticscience.org/resource/SIO_000570') : _namespace_SIO('http://semanticscience.org/resource/SIO_000006') , _namespace_SIO('http://semanticscience.org/resource/SIO_000571') : _namespace_SIO('http://semanticscience.org/resource/SIO_000564') , _namespace_SIO('http://semanticscience.org/resource/SIO_000572') : _namespace_SIO('http://semanticscience.org/resource/SIO_000564') , _namespace_SIO('http://semanticscience.org/resource/SIO_000573') : _namespace_SIO('http://semanticscience.org/resource/SIO_000570') , _namespace_SIO('http://semanticscience.org/resource/SIO_000574') : _namespace_SIO('http://semanticscience.org/resource/SIO_000570') , _namespace_SIO('http://semanticscience.org/resource/SIO_000576') : _namespace_SIO('http://semanticscience.org/resource/SIO_010283') , _namespace_SIO('http://semanticscience.org/resource/SIO_000577') : _namespace_SIO('http://semanticscience.org/resource/SIO_010284') , _namespace_SIO('http://semanticscience.org/resource/SIO_000578') : _namespace_SIO('http://semanticscience.org/resource/SIO_010284') , _namespace_SIO('http://semanticscience.org/resource/SIO_000579') : _namespace_SIO('http://semanticscience.org/resource/SIO_000578') , _namespace_SIO('http://semanticscience.org/resource/SIO_000580') : _namespace_SIO('http://semanticscience.org/resource/SIO_000578') , _namespace_SIO('http://semanticscience.org/resource/SIO_000581') : _namespace_SIO('http://semanticscience.org/resource/SIO_000574') , _namespace_SIO('http://semanticscience.org/resource/SIO_000585') : _namespace_SIO('http://semanticscience.org/resource/SIO_000256') , _namespace_SIO('http://semanticscience.org/resource/SIO_000587') : _namespace_SIO('http://semanticscience.org/resource/SIO_000588') , _namespace_SIO('http://semanticscience.org/resource/SIO_000589') : _namespace_SIO('http://semanticscience.org/resource/SIO_000593') , _namespace_SIO('http://semanticscience.org/resource/SIO_000590') : _namespace_SIO('http://semanticscience.org/resource/SIO_000559') , _namespace_SIO('http://semanticscience.org/resource/SIO_000596') : _namespace_SIO('http://semanticscience.org/resource/SIO_000956') , _namespace_SIO('http://semanticscience.org/resource/SIO_000597') : _namespace_SIO('http://semanticscience.org/resource/SIO_000598') , _namespace_SIO('http://semanticscience.org/resource/SIO_000598') : _namespace_SIO('http://semanticscience.org/resource/SIO_000596') , _namespace_SIO('http://semanticscience.org/resource/SIO_000600') : _namespace_SIO('http://semanticscience.org/resource/SIO_000315') , _namespace_SIO('http://semanticscience.org/resource/SIO_000602') : _namespace_SIO('http://semanticscience.org/resource/SIO_000015') , _namespace_SIO('http://semanticscience.org/resource/SIO_000605') : _namespace_SIO('http://semanticscience.org/resource/SIO_000650') , _namespace_SIO('http://semanticscience.org/resource/SIO_000608') : _namespace_SIO('http://semanticscience.org/resource/SIO_000506') , _namespace_SIO('http://semanticscience.org/resource/SIO_000613') : _namespace_SIO('http://semanticscience.org/resource/SIO_000788') , _namespace_SIO('http://semanticscience.org/resource/SIO_000619') : _namespace_SIO('http://semanticscience.org/resource/SIO_000012') , _namespace_SIO('http://semanticscience.org/resource/SIO_000620') : _namespace_SIO('http://semanticscience.org/resource/SIO_000010') , _namespace_SIO('http://semanticscience.org/resource/SIO_000621') : _namespace_SIO('http://semanticscience.org/resource/SIO_000315') , _namespace_SIO('http://semanticscience.org/resource/SIO_000622') : _namespace_SIO('http://semanticscience.org/resource/SIO_000129') , _namespace_SIO('http://semanticscience.org/resource/SIO_000623') : _namespace_SIO('http://semanticscience.org/resource/SIO_000129') , _namespace_SIO('http://semanticscience.org/resource/SIO_000624') : _namespace_SIO('http://semanticscience.org/resource/SIO_010441') , _namespace_SIO('http://semanticscience.org/resource/SIO_000625') : _namespace_SIO('http://semanticscience.org/resource/SIO_000600') , _namespace_SIO('http://semanticscience.org/resource/SIO_000626') : _namespace_SIO('http://semanticscience.org/resource/SIO_000625') , _namespace_SIO('http://semanticscience.org/resource/SIO_000638') : _namespace_SIO('http://semanticscience.org/resource/SIO_000257') , _namespace_SIO('http://semanticscience.org/resource/SIO_000639') : _namespace_SIO('http://semanticscience.org/resource/SIO_000701') , _namespace_SIO('http://semanticscience.org/resource/SIO_000640') : _namespace_SIO('http://semanticscience.org/resource/SIO_000555') , _namespace_SIO('http://semanticscience.org/resource/SIO_000648') : _namespace_SIO('http://semanticscience.org/resource/SIO_000510') , _namespace_SIO('http://semanticscience.org/resource/SIO_000649') : _namespace_SIO('http://semanticscience.org/resource/SIO_000999') , _namespace_SIO('http://semanticscience.org/resource/SIO_000650') : _namespace_SIO('http://semanticscience.org/resource/SIO_000004') , _namespace_SIO('http://semanticscience.org/resource/SIO_000651') : _namespace_SIO('http://semanticscience.org/resource/SIO_000079') , _namespace_SIO('http://semanticscience.org/resource/SIO_000660') : _namespace_SIO('http://semanticscience.org/resource/SIO_000019') , _namespace_SIO('http://semanticscience.org/resource/SIO_000661') : _namespace_SIO('http://semanticscience.org/resource/SIO_000415') , _namespace_SIO('http://semanticscience.org/resource/SIO_000662') : _namespace_SIO('http://semanticscience.org/resource/SIO_000415') , _namespace_SIO('http://semanticscience.org/resource/SIO_000663') : _namespace_SIO('http://semanticscience.org/resource/SIO_000415') , _namespace_SIO('http://semanticscience.org/resource/SIO_000664') : _namespace_SIO('http://semanticscience.org/resource/SIO_000415') , _namespace_SIO('http://semanticscience.org/resource/SIO_000665') : _namespace_SIO('http://semanticscience.org/resource/SIO_000415') , _namespace_SIO('http://semanticscience.org/resource/SIO_000666') : _namespace_SIO('http://semanticscience.org/resource/SIO_000415') , _namespace_SIO('http://semanticscience.org/resource/SIO_000667') : _namespace_SIO('http://semanticscience.org/resource/SIO_000649') , _namespace_SIO('http://semanticscience.org/resource/SIO_000669') : _namespace_SIO('http://semanticscience.org/resource/SIO_000418') , _namespace_SIO('http://semanticscience.org/resource/SIO_000670') : _namespace_SIO('http://semanticscience.org/resource/SIO_000418') , _namespace_SIO('http://semanticscience.org/resource/SIO_000676') : _namespace_SIO('http://semanticscience.org/resource/SIO_000016') , _namespace_SIO('http://semanticscience.org/resource/SIO_000677') : _namespace_SIO('http://semanticscience.org/resource/SIO_000016') , _namespace_SIO('http://semanticscience.org/resource/SIO_000678') : _namespace_SIO('http://semanticscience.org/resource/SIO_000016') , _namespace_SIO('http://semanticscience.org/resource/SIO_000683') : _namespace_SIO('http://semanticscience.org/resource/SIO_000256') , _namespace_SIO('http://semanticscience.org/resource/SIO_000686') : _namespace_SIO('http://semanticscience.org/resource/SIO_000285') , _namespace_SIO('http://semanticscience.org/resource/SIO_000688') : _namespace_SIO('http://semanticscience.org/resource/SIO_000285') , _namespace_SIO('http://semanticscience.org/resource/SIO_000689') : _namespace_SIO('http://semanticscience.org/resource/SIO_010367') , _namespace_SIO('http://semanticscience.org/resource/SIO_000690') : _namespace_SIO('http://semanticscience.org/resource/SIO_000494') , _namespace_SIO('http://semanticscience.org/resource/SIO_000693') : _namespace_SIO('http://semanticscience.org/resource/SIO_000012') , _namespace_SIO('http://semanticscience.org/resource/SIO_000698') : _namespace_SIO('http://semanticscience.org/resource/SIO_000376') , _namespace_SIO('http://semanticscience.org/resource/SIO_000700') : _namespace_SIO('http://semanticscience.org/resource/SIO_000343') , _namespace_SIO('http://semanticscience.org/resource/SIO_000704') : _namespace_SIO('http://semanticscience.org/resource/SIO_000678') , _namespace_SIO('http://semanticscience.org/resource/SIO_000705') : _namespace_SIO('http://semanticscience.org/resource/SIO_000315') , _namespace_SIO('http://semanticscience.org/resource/SIO_000706') : _namespace_SIO('http://semanticscience.org/resource/SIO_000676') , _namespace_SIO('http://semanticscience.org/resource/SIO_000711') : _namespace_SIO('http://semanticscience.org/resource/SIO_000706') , _namespace_SIO('http://semanticscience.org/resource/SIO_000712') : _namespace_SIO('http://semanticscience.org/resource/SIO_000706') , _namespace_SIO('http://semanticscience.org/resource/SIO_000713') : _namespace_SIO('http://semanticscience.org/resource/SIO_000712') , _namespace_SIO('http://semanticscience.org/resource/SIO_000714') : _namespace_SIO('http://semanticscience.org/resource/SIO_000712') , _namespace_SIO('http://semanticscience.org/resource/SIO_000715') : _namespace_SIO('http://semanticscience.org/resource/SIO_000712') , _namespace_SIO('http://semanticscience.org/resource/SIO_000716') : _namespace_SIO('http://semanticscience.org/resource/SIO_000498') , _namespace_SIO('http://semanticscience.org/resource/SIO_000717') : _namespace_SIO('http://semanticscience.org/resource/SIO_000712') , _namespace_SIO('http://semanticscience.org/resource/SIO_000721') : _namespace_SIO('http://semanticscience.org/resource/SIO_000678') , _namespace_SIO('http://semanticscience.org/resource/SIO_000722') : _namespace_SIO('http://semanticscience.org/resource/SIO_000725') , _namespace_SIO('http://semanticscience.org/resource/SIO_000723') : _namespace_SIO('http://semanticscience.org/resource/SIO_000724') , _namespace_SIO('http://semanticscience.org/resource/SIO_000724') : _namespace_SIO('http://semanticscience.org/resource/SIO_000353') , _namespace_SIO('http://semanticscience.org/resource/SIO_000725') : _namespace_SIO('http://semanticscience.org/resource/SIO_000696') , _namespace_SIO('http://semanticscience.org/resource/SIO_000726') : _namespace_SIO('http://semanticscience.org/resource/SIO_000706') , _namespace_SIO('http://semanticscience.org/resource/SIO_000727') : _namespace_SIO('http://semanticscience.org/resource/SIO_000726') , _namespace_SIO('http://semanticscience.org/resource/SIO_000728') : _namespace_SIO('http://semanticscience.org/resource/SIO_000730') , _namespace_SIO('http://semanticscience.org/resource/SIO_000730') : _namespace_SIO('http://semanticscience.org/resource/SIO_000115') , _namespace_SIO('http://semanticscience.org/resource/SIO_000731') : _namespace_SIO('http://semanticscience.org/resource/SIO_000115') , _namespace_SIO('http://semanticscience.org/resource/SIO_000732') : _namespace_SIO('http://semanticscience.org/resource/SIO_000728') , _namespace_SIO('http://semanticscience.org/resource/SIO_000740') : _namespace_SIO('http://semanticscience.org/resource/SIO_000608') , _namespace_SIO('http://semanticscience.org/resource/SIO_000741') : _namespace_SIO('http://semanticscience.org/resource/SIO_000465') , _namespace_SIO('http://semanticscience.org/resource/SIO_000742') : _namespace_SIO('http://semanticscience.org/resource/SIO_000741') , _namespace_SIO('http://semanticscience.org/resource/SIO_000743') : _namespace_SIO('http://semanticscience.org/resource/SIO_000741') , _namespace_SIO('http://semanticscience.org/resource/SIO_000750') : _namespace_SIO('http://semanticscience.org/resource/SIO_000602') , _namespace_SIO('http://semanticscience.org/resource/SIO_000751') : _namespace_SIO('http://semanticscience.org/resource/SIO_000555') , _namespace_SIO('http://semanticscience.org/resource/SIO_000760') : _namespace_SIO('http://semanticscience.org/resource/SIO_000755') , _namespace_SIO('http://semanticscience.org/resource/SIO_000766') : _namespace_SIO('http://semanticscience.org/resource/SIO_000328') , _namespace_SIO('http://semanticscience.org/resource/SIO_000767') : _namespace_SIO('http://semanticscience.org/resource/SIO_000013') , _namespace_SIO('http://semanticscience.org/resource/SIO_000768') : _namespace_SIO('http://semanticscience.org/resource/SIO_000179') , _namespace_SIO('http://semanticscience.org/resource/SIO_000769') : _namespace_SIO('http://semanticscience.org/resource/SIO_000052') , _namespace_SIO('http://semanticscience.org/resource/SIO_000770') : _namespace_SIO('http://semanticscience.org/resource/SIO_000052') , _namespace_SIO('http://semanticscience.org/resource/SIO_000771') : _namespace_SIO('http://semanticscience.org/resource/SIO_000088') , _namespace_SIO('http://semanticscience.org/resource/SIO_000777') : _namespace_SIO('http://semanticscience.org/resource/SIO_000639') , _namespace_SIO('http://semanticscience.org/resource/SIO_000778') : _namespace_SIO('http://semanticscience.org/resource/SIO_000378') , _namespace_SIO('http://semanticscience.org/resource/SIO_000780') : _namespace_SIO('http://semanticscience.org/resource/SIO_000690') , _namespace_SIO('http://semanticscience.org/resource/SIO_000783') : _namespace_SIO('http://semanticscience.org/resource/SIO_000370') , _namespace_SIO('http://semanticscience.org/resource/SIO_000784') : _namespace_SIO('http://semanticscience.org/resource/SIO_010029') , _namespace_SIO('http://semanticscience.org/resource/SIO_000785') : _namespace_SIO('http://semanticscience.org/resource/SIO_000136') , _namespace_SIO('http://semanticscience.org/resource/SIO_000786') : _namespace_SIO('http://semanticscience.org/resource/SIO_000078') , _namespace_SIO('http://semanticscience.org/resource/SIO_000787') : _namespace_SIO('http://semanticscience.org/resource/SIO_000794') , _namespace_SIO('http://semanticscience.org/resource/SIO_000788') : _namespace_SIO('http://semanticscience.org/resource/SIO_000056') , _namespace_SIO('http://semanticscience.org/resource/SIO_000789') : _namespace_SIO('http://semanticscience.org/resource/SIO_000788') , _namespace_SIO('http://semanticscience.org/resource/SIO_000790') : _namespace_SIO('http://semanticscience.org/resource/SIO_000038') , _namespace_SIO('http://semanticscience.org/resource/SIO_000791') : _namespace_SIO('http://semanticscience.org/resource/SIO_000943') , _namespace_SIO('http://semanticscience.org/resource/SIO_000792') : _namespace_SIO('http://semanticscience.org/resource/SIO_000953') , _namespace_SIO('http://semanticscience.org/resource/SIO_000794') : _namespace_SIO('http://semanticscience.org/resource/SIO_000257') , _namespace_SIO('http://semanticscience.org/resource/SIO_000796') : _namespace_SIO('http://semanticscience.org/resource/SIO_000880') , _namespace_SIO('http://semanticscience.org/resource/SIO_000797') : _namespace_SIO('http://semanticscience.org/resource/SIO_000879') , _namespace_SIO('http://semanticscience.org/resource/SIO_000799') : _namespace_SIO('http://semanticscience.org/resource/SIO_000889') , _namespace_SIO('http://semanticscience.org/resource/SIO_000800') : _namespace_SIO('http://semanticscience.org/resource/SIO_000799') , _namespace_SIO('http://semanticscience.org/resource/SIO_000801') : _namespace_SIO('http://semanticscience.org/resource/SIO_000800') , _namespace_SIO('http://semanticscience.org/resource/SIO_000802') : _namespace_SIO('http://semanticscience.org/resource/SIO_000800') , _namespace_SIO('http://semanticscience.org/resource/SIO_000803') : _namespace_SIO('http://semanticscience.org/resource/SIO_000880') , _namespace_SIO('http://semanticscience.org/resource/SIO_000804') : _namespace_SIO('http://semanticscience.org/resource/SIO_000880') , _namespace_SIO('http://semanticscience.org/resource/SIO_000805') : _namespace_SIO('http://semanticscience.org/resource/SIO_010442') , _namespace_SIO('http://semanticscience.org/resource/SIO_000806') : _namespace_SIO('http://semanticscience.org/resource/SIO_010442') , _namespace_SIO('http://semanticscience.org/resource/SIO_000807') : _namespace_SIO('http://semanticscience.org/resource/SIO_000809') , _namespace_SIO('http://semanticscience.org/resource/SIO_000808') : _namespace_SIO('http://semanticscience.org/resource/SIO_000809') , _namespace_SIO('http://semanticscience.org/resource/SIO_000809') : _namespace_SIO('http://semanticscience.org/resource/SIO_000805') , _namespace_SIO('http://semanticscience.org/resource/SIO_000810') : _namespace_SIO('http://semanticscience.org/resource/SIO_000805') , _namespace_SIO('http://semanticscience.org/resource/SIO_000812') : _namespace_SIO('http://semanticscience.org/resource/SIO_000831') , _namespace_SIO('http://semanticscience.org/resource/SIO_000813') : _namespace_SIO('http://semanticscience.org/resource/SIO_000815') , _namespace_SIO('http://semanticscience.org/resource/SIO_000814') : _namespace_SIO('http://semanticscience.org/resource/SIO_000832') , _namespace_SIO('http://semanticscience.org/resource/SIO_000815') : _namespace_SIO('http://semanticscience.org/resource/SIO_000949') , _namespace_SIO('http://semanticscience.org/resource/SIO_000816') : _namespace_SIO('http://semanticscience.org/resource/SIO_000847') , _namespace_SIO('http://semanticscience.org/resource/SIO_000817') : _namespace_SIO('http://semanticscience.org/resource/SIO_000831') , _namespace_SIO('http://semanticscience.org/resource/SIO_000818') : _namespace_SIO('http://semanticscience.org/resource/SIO_000831') , _namespace_SIO('http://semanticscience.org/resource/SIO_000819') : _namespace_SIO('http://semanticscience.org/resource/SIO_000831') , _namespace_SIO('http://semanticscience.org/resource/SIO_000820') : _namespace_SIO('http://semanticscience.org/resource/SIO_000832') , _namespace_SIO('http://semanticscience.org/resource/SIO_000821') : _namespace_SIO('http://semanticscience.org/resource/SIO_000828') , _namespace_SIO('http://semanticscience.org/resource/SIO_000822') : _namespace_SIO('http://semanticscience.org/resource/SIO_000840') , _namespace_SIO('http://semanticscience.org/resource/SIO_000823') : _namespace_SIO('http://semanticscience.org/resource/SIO_000825') , _namespace_SIO('http://semanticscience.org/resource/SIO_000824') : _namespace_SIO('http://semanticscience.org/resource/SIO_000863') , _namespace_SIO('http://semanticscience.org/resource/SIO_000825') : _namespace_SIO('http://semanticscience.org/resource/SIO_000848') , _namespace_SIO('http://semanticscience.org/resource/SIO_000826') : _namespace_SIO('http://semanticscience.org/resource/SIO_000863') , _namespace_SIO('http://semanticscience.org/resource/SIO_000827') : _namespace_SIO('http://semanticscience.org/resource/SIO_000832') , _namespace_SIO('http://semanticscience.org/resource/SIO_000828') : _namespace_SIO('http://semanticscience.org/resource/SIO_000844') , _namespace_SIO('http://semanticscience.org/resource/SIO_000829') : _namespace_SIO('http://semanticscience.org/resource/SIO_000837') , _namespace_SIO('http://semanticscience.org/resource/SIO_000830') : _namespace_SIO('http://semanticscience.org/resource/SIO_000831') , _namespace_SIO('http://semanticscience.org/resource/SIO_000831') : _namespace_SIO('http://semanticscience.org/resource/SIO_000276') , _namespace_SIO('http://semanticscience.org/resource/SIO_000832') : _namespace_SIO('http://semanticscience.org/resource/SIO_000276') , _namespace_SIO('http://semanticscience.org/resource/SIO_000833') : _namespace_SIO('http://semanticscience.org/resource/SIO_000832') , _namespace_SIO('http://semanticscience.org/resource/SIO_000834') : _namespace_SIO('http://semanticscience.org/resource/SIO_000832') , _namespace_SIO('http://semanticscience.org/resource/SIO_000835') : _namespace_SIO('http://semanticscience.org/resource/SIO_000831') , _namespace_SIO('http://semanticscience.org/resource/SIO_000836') : _namespace_SIO('http://semanticscience.org/resource/SIO_000831') , _namespace_SIO('http://semanticscience.org/resource/SIO_000837') : _namespace_SIO('http://semanticscience.org/resource/SIO_000949') , _namespace_SIO('http://semanticscience.org/resource/SIO_000838') : _namespace_SIO('http://semanticscience.org/resource/SIO_000814') , _namespace_SIO('http://semanticscience.org/resource/SIO_000839') : _namespace_SIO('http://semanticscience.org/resource/SIO_000831') , _namespace_SIO('http://semanticscience.org/resource/SIO_000840') : _namespace_SIO('http://semanticscience.org/resource/SIO_000831') , _namespace_SIO('http://semanticscience.org/resource/SIO_000841') : _namespace_SIO('http://semanticscience.org/resource/SIO_000832') , _namespace_SIO('http://semanticscience.org/resource/SIO_000842') : _namespace_SIO('http://semanticscience.org/resource/SIO_000863') , _namespace_SIO('http://semanticscience.org/resource/SIO_000843') : _namespace_SIO('http://semanticscience.org/resource/SIO_000831') , _namespace_SIO('http://semanticscience.org/resource/SIO_000844') : _namespace_SIO('http://semanticscience.org/resource/SIO_000832') , _namespace_SIO('http://semanticscience.org/resource/SIO_000845') : _namespace_SIO('http://semanticscience.org/resource/SIO_000832') , _namespace_SIO('http://semanticscience.org/resource/SIO_000846') : _namespace_SIO('http://semanticscience.org/resource/SIO_000832') , _namespace_SIO('http://semanticscience.org/resource/SIO_000847') : _namespace_SIO('http://semanticscience.org/resource/SIO_000276') , _namespace_SIO('http://semanticscience.org/resource/SIO_000848') : _namespace_SIO('http://semanticscience.org/resource/SIO_000831') , _namespace_SIO('http://semanticscience.org/resource/SIO_000849') : _namespace_SIO('http://semanticscience.org/resource/SIO_000834') , _namespace_SIO('http://semanticscience.org/resource/SIO_000850') : _namespace_SIO('http://semanticscience.org/resource/SIO_000840') , _namespace_SIO('http://semanticscience.org/resource/SIO_000851') : _namespace_SIO('http://semanticscience.org/resource/SIO_000828') , _namespace_SIO('http://semanticscience.org/resource/SIO_000852') : _namespace_SIO('http://semanticscience.org/resource/SIO_000832') , _namespace_SIO('http://semanticscience.org/resource/SIO_000853') : _namespace_SIO('http://semanticscience.org/resource/SIO_000825') , _namespace_SIO('http://semanticscience.org/resource/SIO_000854') : _namespace_SIO('http://semanticscience.org/resource/SIO_000863') , _namespace_SIO('http://semanticscience.org/resource/SIO_000855') : _namespace_SIO('http://semanticscience.org/resource/SIO_000837') , _namespace_SIO('http://semanticscience.org/resource/SIO_000856') : _namespace_SIO('http://semanticscience.org/resource/SIO_000825') , _namespace_SIO('http://semanticscience.org/resource/SIO_000857') : _namespace_SIO('http://semanticscience.org/resource/SIO_000832') , _namespace_SIO('http://semanticscience.org/resource/SIO_000858') : _namespace_SIO('http://semanticscience.org/resource/SIO_000840') , _namespace_SIO('http://semanticscience.org/resource/SIO_000859') : _namespace_SIO('http://semanticscience.org/resource/SIO_000864') , _namespace_SIO('http://semanticscience.org/resource/SIO_000860') : _namespace_SIO('http://semanticscience.org/resource/SIO_000410') , _namespace_SIO('http://semanticscience.org/resource/SIO_000861') : _namespace_SIO('http://semanticscience.org/resource/SIO_000873') , _namespace_SIO('http://semanticscience.org/resource/SIO_000862') : _namespace_SIO('http://semanticscience.org/resource/SIO_000873') , _namespace_SIO('http://semanticscience.org/resource/SIO_000863') : _namespace_SIO('http://semanticscience.org/resource/SIO_000832') , _namespace_SIO('http://semanticscience.org/resource/SIO_000864') : _namespace_SIO('http://semanticscience.org/resource/SIO_000822') , _namespace_SIO('http://semanticscience.org/resource/SIO_000865') : _namespace_SIO('http://semanticscience.org/resource/SIO_000832') , _namespace_SIO('http://semanticscience.org/resource/SIO_000866') : _namespace_SIO('http://semanticscience.org/resource/SIO_000832') , _namespace_SIO('http://semanticscience.org/resource/SIO_000867') : _namespace_SIO('http://semanticscience.org/resource/SIO_000832') , _namespace_SIO('http://semanticscience.org/resource/SIO_000868') : _namespace_SIO('http://semanticscience.org/resource/SIO_000863') , _namespace_SIO('http://semanticscience.org/resource/SIO_000869') : _namespace_SIO('http://semanticscience.org/resource/SIO_000845') , _namespace_SIO('http://semanticscience.org/resource/SIO_000870') : _namespace_SIO('http://semanticscience.org/resource/SIO_000831') , _namespace_SIO('http://semanticscience.org/resource/SIO_000871') : _namespace_SIO('http://semanticscience.org/resource/SIO_000829') , _namespace_SIO('http://semanticscience.org/resource/SIO_000872') : _namespace_SIO('http://semanticscience.org/resource/SIO_000870') , _namespace_SIO('http://semanticscience.org/resource/SIO_000873') : _namespace_SIO('http://semanticscience.org/resource/SIO_000949') , _namespace_SIO('http://semanticscience.org/resource/SIO_000875') : _namespace_SIO('http://semanticscience.org/resource/SIO_000711') , _namespace_SIO('http://semanticscience.org/resource/SIO_000876') : _namespace_SIO('http://semanticscience.org/resource/SIO_000711') , _namespace_SIO('http://semanticscience.org/resource/SIO_000877') : _namespace_SIO('http://semanticscience.org/resource/SIO_000876') , _namespace_SIO('http://semanticscience.org/resource/SIO_000878') : _namespace_SIO('http://semanticscience.org/resource/SIO_000876') , _namespace_SIO('http://semanticscience.org/resource/SIO_000879') : _namespace_SIO('http://semanticscience.org/resource/SIO_000889') , _namespace_SIO('http://semanticscience.org/resource/SIO_000880') : _namespace_SIO('http://semanticscience.org/resource/SIO_000889') , _namespace_SIO('http://semanticscience.org/resource/SIO_000881') : _namespace_SIO('http://semanticscience.org/resource/SIO_000677') , _namespace_SIO('http://semanticscience.org/resource/SIO_000882') : _namespace_SIO('http://semanticscience.org/resource/SIO_000888') , _namespace_SIO('http://semanticscience.org/resource/SIO_000883') : _namespace_SIO('http://semanticscience.org/resource/SIO_000881') , _namespace_SIO('http://semanticscience.org/resource/SIO_000884') : _namespace_SIO('http://semanticscience.org/resource/SIO_000706') , _namespace_SIO('http://semanticscience.org/resource/SIO_000885') : _namespace_SIO('http://semanticscience.org/resource/SIO_000884') , _namespace_SIO('http://semanticscience.org/resource/SIO_000886') : _namespace_SIO('http://semanticscience.org/resource/SIO_000884') , _namespace_SIO('http://semanticscience.org/resource/SIO_000890') : _namespace_SIO('http://semanticscience.org/resource/SIO_000891') , _namespace_SIO('http://semanticscience.org/resource/SIO_000891') : _namespace_SIO('http://semanticscience.org/resource/SIO_000888') , _namespace_SIO('http://semanticscience.org/resource/SIO_000894') : _namespace_SIO('http://semanticscience.org/resource/SIO_000692') , _namespace_SIO('http://semanticscience.org/resource/SIO_000895') : _namespace_SIO('http://semanticscience.org/resource/SIO_000894') , _namespace_SIO('http://semanticscience.org/resource/SIO_000896') : _namespace_SIO('http://semanticscience.org/resource/SIO_000879') , _namespace_SIO('http://semanticscience.org/resource/SIO_000898') : _namespace_SIO('http://semanticscience.org/resource/SIO_000897') , _namespace_SIO('http://semanticscience.org/resource/SIO_000899') : _namespace_SIO('http://semanticscience.org/resource/SIO_010506') , _namespace_SIO('http://semanticscience.org/resource/SIO_000902') : _namespace_SIO('http://semanticscience.org/resource/SIO_000458') , _namespace_SIO('http://semanticscience.org/resource/SIO_000903') : _namespace_SIO('http://semanticscience.org/resource/SIO_000458') , _namespace_SIO('http://semanticscience.org/resource/SIO_000904') : _namespace_SIO('http://semanticscience.org/resource/SIO_000080') , _namespace_SIO('http://semanticscience.org/resource/SIO_000906') : _namespace_SIO('http://semanticscience.org/resource/SIO_000904') , _namespace_SIO('http://semanticscience.org/resource/SIO_000907') : _namespace_SIO('http://semanticscience.org/resource/SIO_000904') , _namespace_SIO('http://semanticscience.org/resource/SIO_000908') : _namespace_SIO('http://semanticscience.org/resource/SIO_000934') , _namespace_SIO('http://semanticscience.org/resource/SIO_000909') : _namespace_SIO('http://semanticscience.org/resource/SIO_000447') , _namespace_SIO('http://semanticscience.org/resource/SIO_000910') : _namespace_SIO('http://semanticscience.org/resource/SIO_000907') , _namespace_SIO('http://semanticscience.org/resource/SIO_000911') : _namespace_SIO('http://semanticscience.org/resource/SIO_000904') , _namespace_SIO('http://semanticscience.org/resource/SIO_000912') : _namespace_SIO('http://semanticscience.org/resource/SIO_000315') , _namespace_SIO('http://semanticscience.org/resource/SIO_000913') : _namespace_SIO('http://semanticscience.org/resource/SIO_000912') , _namespace_SIO('http://semanticscience.org/resource/SIO_000914') : _namespace_SIO('http://semanticscience.org/resource/SIO_000912') , _namespace_SIO('http://semanticscience.org/resource/SIO_000920') : _namespace_SIO('http://semanticscience.org/resource/SIO_000367') , _namespace_SIO('http://semanticscience.org/resource/SIO_000921') : _namespace_SIO('http://semanticscience.org/resource/SIO_000367') , _namespace_SIO('http://semanticscience.org/resource/SIO_000922') : _namespace_SIO('http://semanticscience.org/resource/SIO_000904') , _namespace_SIO('http://semanticscience.org/resource/SIO_000923') : _namespace_SIO('http://semanticscience.org/resource/SIO_000898') , _namespace_SIO('http://semanticscience.org/resource/SIO_000924') : _namespace_SIO('http://semanticscience.org/resource/SIO_000612') , _namespace_SIO('http://semanticscience.org/resource/SIO_000926') : _namespace_SIO('http://semanticscience.org/resource/SIO_000957') , _namespace_SIO('http://semanticscience.org/resource/SIO_000927') : _namespace_SIO('http://semanticscience.org/resource/SIO_000957') , _namespace_SIO('http://semanticscience.org/resource/SIO_000928') : _namespace_SIO('http://semanticscience.org/resource/SIO_000956') , _namespace_SIO('http://semanticscience.org/resource/SIO_000929') : _namespace_SIO('http://semanticscience.org/resource/SIO_000940') , _namespace_SIO('http://semanticscience.org/resource/SIO_000930') : _namespace_SIO('http://semanticscience.org/resource/SIO_000904') , _namespace_SIO('http://semanticscience.org/resource/SIO_000931') : _namespace_SIO('http://semanticscience.org/resource/SIO_000904') , _namespace_SIO('http://semanticscience.org/resource/SIO_000932') : _namespace_SIO('http://semanticscience.org/resource/SIO_000911') , _namespace_SIO('http://semanticscience.org/resource/SIO_000933') : _namespace_SIO('http://semanticscience.org/resource/SIO_000904') , _namespace_SIO('http://semanticscience.org/resource/SIO_000934') : _namespace_SIO('http://semanticscience.org/resource/SIO_000083') , _namespace_SIO('http://semanticscience.org/resource/SIO_000935') : _namespace_SIO('http://semanticscience.org/resource/SIO_000940') , _namespace_SIO('http://semanticscience.org/resource/SIO_000936') : _namespace_SIO('http://semanticscience.org/resource/SIO_000937') , _namespace_SIO('http://semanticscience.org/resource/SIO_000937') : _namespace_SIO('http://semanticscience.org/resource/SIO_000904') , _namespace_SIO('http://semanticscience.org/resource/SIO_000938') : _namespace_SIO('http://semanticscience.org/resource/SIO_000937') , _namespace_SIO('http://semanticscience.org/resource/SIO_000939') : _namespace_SIO('http://semanticscience.org/resource/SIO_000937') , _namespace_SIO('http://semanticscience.org/resource/SIO_000940') : _namespace_SIO('http://semanticscience.org/resource/SIO_000904') , _namespace_SIO('http://semanticscience.org/resource/SIO_000941') : _namespace_SIO('http://semanticscience.org/resource/SIO_000969') , _namespace_SIO('http://semanticscience.org/resource/SIO_000942') : _namespace_SIO('http://semanticscience.org/resource/SIO_000794') , _namespace_SIO('http://semanticscience.org/resource/SIO_000943') : _namespace_SIO('http://semanticscience.org/resource/SIO_000788') , _namespace_SIO('http://semanticscience.org/resource/SIO_000944') : _namespace_SIO('http://semanticscience.org/resource/SIO_000075') , _namespace_SIO('http://semanticscience.org/resource/SIO_000945') : _namespace_SIO('http://semanticscience.org/resource/SIO_000931') , _namespace_SIO('http://semanticscience.org/resource/SIO_000946') : _namespace_SIO('http://semanticscience.org/resource/SIO_000904') , _namespace_SIO('http://semanticscience.org/resource/SIO_000947') : _namespace_SIO('http://semanticscience.org/resource/SIO_000904') , _namespace_SIO('http://semanticscience.org/resource/SIO_000948') : _namespace_SIO('http://semanticscience.org/resource/SIO_000945') , _namespace_SIO('http://semanticscience.org/resource/SIO_000949') : _namespace_SIO('http://semanticscience.org/resource/SIO_000832') , _namespace_SIO('http://semanticscience.org/resource/SIO_000950') : _namespace_SIO('http://semanticscience.org/resource/SIO_000828') , _namespace_SIO('http://semanticscience.org/resource/SIO_000951') : _namespace_SIO('http://semanticscience.org/resource/SIO_000845') , _namespace_SIO('http://semanticscience.org/resource/SIO_000952') : _namespace_SIO('http://semanticscience.org/resource/SIO_000144') , _namespace_SIO('http://semanticscience.org/resource/SIO_000953') : _namespace_SIO('http://semanticscience.org/resource/SIO_000788') , _namespace_SIO('http://semanticscience.org/resource/SIO_000954') : _namespace_SIO('http://semanticscience.org/resource/SIO_010058') , _namespace_SIO('http://semanticscience.org/resource/SIO_000955') : _namespace_SIO('http://semanticscience.org/resource/SIO_000414') , _namespace_SIO('http://semanticscience.org/resource/SIO_000956') : _namespace_SIO('http://semanticscience.org/resource/SIO_010462') , _namespace_SIO('http://semanticscience.org/resource/SIO_000957') : _namespace_SIO('http://semanticscience.org/resource/SIO_000956') , _namespace_SIO('http://semanticscience.org/resource/SIO_000959') : _namespace_SIO('http://semanticscience.org/resource/SIO_000005') , _namespace_SIO('http://semanticscience.org/resource/SIO_000960') : _namespace_SIO('http://semanticscience.org/resource/SIO_000959') , _namespace_SIO('http://semanticscience.org/resource/SIO_000961') : _namespace_SIO('http://semanticscience.org/resource/SIO_000959') , _namespace_SIO('http://semanticscience.org/resource/SIO_000962') : _namespace_SIO('http://semanticscience.org/resource/SIO_000959') , _namespace_SIO('http://semanticscience.org/resource/SIO_000963') : _namespace_SIO('http://semanticscience.org/resource/SIO_000033') , _namespace_SIO('http://semanticscience.org/resource/SIO_000964') : _namespace_SIO('http://semanticscience.org/resource/SIO_001043') , _namespace_SIO('http://semanticscience.org/resource/SIO_000965') : _namespace_SIO('http://semanticscience.org/resource/SIO_000436') , _namespace_SIO('http://semanticscience.org/resource/SIO_000966') : _namespace_SIO('http://semanticscience.org/resource/SIO_000965') , _namespace_SIO('http://semanticscience.org/resource/SIO_000967') : _namespace_SIO('http://semanticscience.org/resource/SIO_000965') , _namespace_SIO('http://semanticscience.org/resource/SIO_000969') : _namespace_SIO('http://semanticscience.org/resource/SIO_000593') , _namespace_SIO('http://semanticscience.org/resource/SIO_000977') : _namespace_SIO('http://semanticscience.org/resource/SIO_000786') , _namespace_SIO('http://semanticscience.org/resource/SIO_000978') : _namespace_SIO('http://semanticscience.org/resource/SIO_000786') , _namespace_SIO('http://semanticscience.org/resource/SIO_000979') : _namespace_SIO('http://semanticscience.org/resource/SIO_000786') , _namespace_SIO('http://semanticscience.org/resource/SIO_000980') : _namespace_SIO('http://semanticscience.org/resource/SIO_000104') , _namespace_SIO('http://semanticscience.org/resource/SIO_000981') : _namespace_SIO('http://semanticscience.org/resource/SIO_000104') , _namespace_SIO('http://semanticscience.org/resource/SIO_000982') : _namespace_SIO('http://semanticscience.org/resource/SIO_000104') , _namespace_SIO('http://semanticscience.org/resource/SIO_000984') : _namespace_SIO('http://semanticscience.org/resource/SIO_010046') , _namespace_SIO('http://semanticscience.org/resource/SIO_000985') : _namespace_SIO('http://semanticscience.org/resource/SIO_010035') , _namespace_SIO('http://semanticscience.org/resource/SIO_000986') : _namespace_SIO('http://semanticscience.org/resource/SIO_010035') , _namespace_SIO('http://semanticscience.org/resource/SIO_000988') : _namespace_SIO('http://semanticscience.org/resource/SIO_010335') , _namespace_SIO('http://semanticscience.org/resource/SIO_000989') : _namespace_SIO('http://semanticscience.org/resource/SIO_000030') , _namespace_SIO('http://semanticscience.org/resource/SIO_000992') : _namespace_SIO('http://semanticscience.org/resource/SIO_000959') , _namespace_SIO('http://semanticscience.org/resource/SIO_000994') : _namespace_SIO('http://semanticscience.org/resource/SIO_000747') , _namespace_SIO('http://semanticscience.org/resource/SIO_000995') : _namespace_SIO('http://semanticscience.org/resource/SIO_000033') , _namespace_SIO('http://semanticscience.org/resource/SIO_000996') : _namespace_SIO('http://semanticscience.org/resource/SIO_000963') , _namespace_SIO('http://semanticscience.org/resource/SIO_000997') : _namespace_SIO('http://semanticscience.org/resource/SIO_000033') , _namespace_SIO('http://semanticscience.org/resource/SIO_001002') : _namespace_SIO('http://semanticscience.org/resource/SIO_001024') , _namespace_SIO('http://semanticscience.org/resource/SIO_001003') : _namespace_SIO('http://semanticscience.org/resource/SIO_001004') , _namespace_SIO('http://semanticscience.org/resource/SIO_001008') : _namespace_SIO('http://semanticscience.org/resource/SIO_001011') , _namespace_SIO('http://semanticscience.org/resource/SIO_001009') : _namespace_SIO('http://semanticscience.org/resource/SIO_001008') , _namespace_SIO('http://semanticscience.org/resource/SIO_001010') : _namespace_SIO('http://semanticscience.org/resource/SIO_001008') , _namespace_SIO('http://semanticscience.org/resource/SIO_001011') : _namespace_SIO('http://semanticscience.org/resource/SIO_000026') , _namespace_SIO('http://semanticscience.org/resource/SIO_001012') : _namespace_SIO('http://semanticscience.org/resource/SIO_010058') , _namespace_SIO('http://semanticscience.org/resource/SIO_001013') : _namespace_SIO('http://semanticscience.org/resource/SIO_000794') , _namespace_SIO('http://semanticscience.org/resource/SIO_001014') : _namespace_SIO('http://semanticscience.org/resource/SIO_000475') , _namespace_SIO('http://semanticscience.org/resource/SIO_001015') : _namespace_SIO('http://semanticscience.org/resource/SIO_000475') , _namespace_SIO('http://semanticscience.org/resource/SIO_001016') : _namespace_SIO('http://semanticscience.org/resource/SIO_001062') , _namespace_SIO('http://semanticscience.org/resource/SIO_001017') : _namespace_SIO('http://semanticscience.org/resource/SIO_000136') , _namespace_SIO('http://semanticscience.org/resource/SIO_001018') : _namespace_SIO('http://semanticscience.org/resource/SIO_000257') , _namespace_SIO('http://semanticscience.org/resource/SIO_001019') : _namespace_SIO('http://semanticscience.org/resource/SIO_000258') , _namespace_SIO('http://semanticscience.org/resource/SIO_001020') : _namespace_SIO('http://semanticscience.org/resource/SIO_001019') , _namespace_SIO('http://semanticscience.org/resource/SIO_001021') : _namespace_SIO('http://semanticscience.org/resource/SIO_000638') , _namespace_SIO('http://semanticscience.org/resource/SIO_001022') : _namespace_SIO('http://semanticscience.org/resource/SIO_001024') , _namespace_SIO('http://semanticscience.org/resource/SIO_001023') : _namespace_SIO('http://semanticscience.org/resource/SIO_001024') , _namespace_SIO('http://semanticscience.org/resource/SIO_001024') : _namespace_SIO('http://semanticscience.org/resource/SIO_000999') , _namespace_SIO('http://semanticscience.org/resource/SIO_001025') : _namespace_SIO('http://semanticscience.org/resource/SIO_000256') , _namespace_SIO('http://semanticscience.org/resource/SIO_001026') : _namespace_SIO('http://semanticscience.org/resource/SIO_000148') , _namespace_SIO('http://semanticscience.org/resource/SIO_001027') : _namespace_SIO('http://semanticscience.org/resource/SIO_000088') , _namespace_SIO('http://semanticscience.org/resource/SIO_001028') : _namespace_SIO('http://semanticscience.org/resource/SIO_001026') , _namespace_SIO('http://semanticscience.org/resource/SIO_001030') : _namespace_SIO('http://semanticscience.org/resource/SIO_000654') , _namespace_SIO('http://semanticscience.org/resource/SIO_001031') : _namespace_SIO('http://semanticscience.org/resource/SIO_000654') , _namespace_SIO('http://semanticscience.org/resource/SIO_001032') : _namespace_SIO('http://semanticscience.org/resource/SIO_000654') , _namespace_SIO('http://semanticscience.org/resource/SIO_001034') : _namespace_SIO('http://semanticscience.org/resource/SIO_001033') , _namespace_SIO('http://semanticscience.org/resource/SIO_001035') : _namespace_SIO('http://semanticscience.org/resource/SIO_001034') , _namespace_SIO('http://semanticscience.org/resource/SIO_001036') : _namespace_SIO('http://semanticscience.org/resource/SIO_001033') , _namespace_SIO('http://semanticscience.org/resource/SIO_001037') : _namespace_SIO('http://semanticscience.org/resource/SIO_001033') , _namespace_SIO('http://semanticscience.org/resource/SIO_001038') : _namespace_SIO('http://semanticscience.org/resource/SIO_001034') , _namespace_SIO('http://semanticscience.org/resource/SIO_001039') : _namespace_SIO('http://semanticscience.org/resource/SIO_001033') , _namespace_SIO('http://semanticscience.org/resource/SIO_001040') : _namespace_SIO('http://semanticscience.org/resource/SIO_000078') , _namespace_SIO('http://semanticscience.org/resource/SIO_001042') : _namespace_SIO('http://semanticscience.org/resource/SIO_000091') , _namespace_SIO('http://semanticscience.org/resource/SIO_001043') : _namespace_SIO('http://semanticscience.org/resource/SIO_000091') , _namespace_SIO('http://semanticscience.org/resource/SIO_001044') : _namespace_SIO('http://semanticscience.org/resource/SIO_010378') , _namespace_SIO('http://semanticscience.org/resource/SIO_001045') : _namespace_SIO('http://semanticscience.org/resource/SIO_001011') , _namespace_SIO('http://semanticscience.org/resource/SIO_001046') : _namespace_SIO('http://semanticscience.org/resource/SIO_001045') , _namespace_SIO('http://semanticscience.org/resource/SIO_001047') : _namespace_SIO('http://semanticscience.org/resource/SIO_001045') , _namespace_SIO('http://semanticscience.org/resource/SIO_001048') : _namespace_SIO('http://semanticscience.org/resource/SIO_000994') , _namespace_SIO('http://semanticscience.org/resource/SIO_001053') : _namespace_SIO('http://semanticscience.org/resource/SIO_000683') , _namespace_SIO('http://semanticscience.org/resource/SIO_001058') : _namespace_SIO('http://semanticscience.org/resource/SIO_001072') , _namespace_SIO('http://semanticscience.org/resource/SIO_001059') : _namespace_SIO('http://semanticscience.org/resource/SIO_000969') , _namespace_SIO('http://semanticscience.org/resource/SIO_001060') : _namespace_SIO('http://semanticscience.org/resource/SIO_000963') , _namespace_SIO('http://semanticscience.org/resource/SIO_001061') : _namespace_SIO('http://semanticscience.org/resource/SIO_000620') , _namespace_SIO('http://semanticscience.org/resource/SIO_001062') : _namespace_SIO('http://semanticscience.org/resource/SIO_001061') , _namespace_SIO('http://semanticscience.org/resource/SIO_001063') : _namespace_SIO('http://semanticscience.org/resource/SIO_000620') , _namespace_SIO('http://semanticscience.org/resource/SIO_001064') : _namespace_SIO('http://semanticscience.org/resource/SIO_000620') , _namespace_SIO('http://semanticscience.org/resource/SIO_001065') : _namespace_SIO('http://semanticscience.org/resource/SIO_001004') , _namespace_SIO('http://semanticscience.org/resource/SIO_001067') : _namespace_SIO('http://semanticscience.org/resource/SIO_000976') , _namespace_SIO('http://semanticscience.org/resource/SIO_001068') : _namespace_SIO('http://semanticscience.org/resource/SIO_000403') , _namespace_SIO('http://semanticscience.org/resource/SIO_001069') : _namespace_SIO('http://semanticscience.org/resource/SIO_000403') , _namespace_SIO('http://semanticscience.org/resource/SIO_001070') : _namespace_SIO('http://semanticscience.org/resource/SIO_000367') , _namespace_SIO('http://semanticscience.org/resource/SIO_001071') : _namespace_SIO('http://semanticscience.org/resource/SIO_000943') , _namespace_SIO('http://semanticscience.org/resource/SIO_001072') : _namespace_SIO('http://semanticscience.org/resource/SIO_000953') , _namespace_SIO('http://semanticscience.org/resource/SIO_001074') : _namespace_SIO('http://semanticscience.org/resource/SIO_001018') , _namespace_SIO('http://semanticscience.org/resource/SIO_001075') : _namespace_SIO('http://semanticscience.org/resource/SIO_000732') , _namespace_SIO('http://semanticscience.org/resource/SIO_001076') : _namespace_SIO('http://semanticscience.org/resource/SIO_000994') , _namespace_SIO('http://semanticscience.org/resource/SIO_001077') : _namespace_SIO('http://semanticscience.org/resource/SIO_000258') , _namespace_SIO('http://semanticscience.org/resource/SIO_001078') : _namespace_SIO('http://semanticscience.org/resource/SIO_001018') , _namespace_SIO('http://semanticscience.org/resource/SIO_001079') : _namespace_SIO('http://semanticscience.org/resource/SIO_000315') , _namespace_SIO('http://semanticscience.org/resource/SIO_001080') : _namespace_SIO('http://semanticscience.org/resource/SIO_000616') , _namespace_SIO('http://semanticscience.org/resource/SIO_001083') : _namespace_SIO('http://semanticscience.org/resource/SIO_000418') , _namespace_SIO('http://semanticscience.org/resource/SIO_001084') : _namespace_SIO('http://semanticscience.org/resource/SIO_010462') , _namespace_SIO('http://semanticscience.org/resource/SIO_001085') : _namespace_SIO('http://semanticscience.org/resource/SIO_010340') , _namespace_SIO('http://semanticscience.org/resource/SIO_001086') : _namespace_SIO('http://semanticscience.org/resource/SIO_010340') , _namespace_SIO('http://semanticscience.org/resource/SIO_001087') : _namespace_SIO('http://semanticscience.org/resource/SIO_000385') , _namespace_SIO('http://semanticscience.org/resource/SIO_001089') : _namespace_SIO('http://semanticscience.org/resource/SIO_000257') , _namespace_SIO('http://semanticscience.org/resource/SIO_001090') : _namespace_SIO('http://semanticscience.org/resource/SIO_000051') , _namespace_SIO('http://semanticscience.org/resource/SIO_001091') : _namespace_SIO('http://semanticscience.org/resource/SIO_000051') , _namespace_SIO('http://semanticscience.org/resource/SIO_001092') : _namespace_SIO('http://semanticscience.org/resource/SIO_000026') , _namespace_SIO('http://semanticscience.org/resource/SIO_001093') : _namespace_SIO('http://semanticscience.org/resource/SIO_001092') , _namespace_SIO('http://semanticscience.org/resource/SIO_001094') : _namespace_SIO('http://semanticscience.org/resource/SIO_000537') , _namespace_SIO('http://semanticscience.org/resource/SIO_001095') : _namespace_SIO('http://semanticscience.org/resource/SIO_000537') , _namespace_SIO('http://semanticscience.org/resource/SIO_001099') : _namespace_SIO('http://semanticscience.org/resource/SIO_000625') , _namespace_SIO('http://semanticscience.org/resource/SIO_001100') : _namespace_SIO('http://semanticscience.org/resource/SIO_000626') , _namespace_SIO('http://semanticscience.org/resource/SIO_001103') : _namespace_SIO('http://semanticscience.org/resource/SIO_010366') , _namespace_SIO('http://semanticscience.org/resource/SIO_001104') : _namespace_SIO('http://semanticscience.org/resource/SIO_010366') , _namespace_SIO('http://semanticscience.org/resource/SIO_001105') : _namespace_SIO('http://semanticscience.org/resource/SIO_000492') , _namespace_SIO('http://semanticscience.org/resource/SIO_001106') : _namespace_SIO('http://semanticscience.org/resource/SIO_000494') , _namespace_SIO('http://semanticscience.org/resource/SIO_001107') : _namespace_SIO('http://semanticscience.org/resource/SIO_000091') , _namespace_SIO('http://semanticscience.org/resource/SIO_001108') : _namespace_SIO('http://semanticscience.org/resource/SIO_000052') , _namespace_SIO('http://semanticscience.org/resource/SIO_001109') : _namespace_SIO('http://semanticscience.org/resource/SIO_001108') , _namespace_SIO('http://semanticscience.org/resource/SIO_001110') : _namespace_SIO('http://semanticscience.org/resource/SIO_001108') , _namespace_SIO('http://semanticscience.org/resource/SIO_001111') : _namespace_SIO('http://semanticscience.org/resource/SIO_001108') , _namespace_SIO('http://semanticscience.org/resource/SIO_001112') : _namespace_SIO('http://semanticscience.org/resource/SIO_000052') , _namespace_SIO('http://semanticscience.org/resource/SIO_001115') : _namespace_SIO('http://semanticscience.org/resource/SIO_000794') , _namespace_SIO('http://semanticscience.org/resource/SIO_001116') : _namespace_SIO('http://semanticscience.org/resource/SIO_000150') , _namespace_SIO('http://semanticscience.org/resource/SIO_001117') : _namespace_SIO('http://semanticscience.org/resource/SIO_000150') , _namespace_SIO('http://semanticscience.org/resource/SIO_001119') : _namespace_SIO('http://semanticscience.org/resource/SIO_001122') , _namespace_SIO('http://semanticscience.org/resource/SIO_001120') : _namespace_SIO('http://semanticscience.org/resource/SIO_000983') , _namespace_SIO('http://semanticscience.org/resource/SIO_001121') : _namespace_SIO('http://semanticscience.org/resource/SIO_000983') , _namespace_SIO('http://semanticscience.org/resource/SIO_001122') : _namespace_SIO('http://semanticscience.org/resource/SIO_001121') , _namespace_SIO('http://semanticscience.org/resource/SIO_001123') : _namespace_SIO('http://semanticscience.org/resource/SIO_001121') , _namespace_SIO('http://semanticscience.org/resource/SIO_001124') : _namespace_SIO('http://semanticscience.org/resource/SIO_001121') , _namespace_SIO('http://semanticscience.org/resource/SIO_001125') : _namespace_SIO('http://semanticscience.org/resource/SIO_010287') , _namespace_SIO('http://semanticscience.org/resource/SIO_001126') : _namespace_SIO('http://semanticscience.org/resource/SIO_010287') , _namespace_SIO('http://semanticscience.org/resource/SIO_001127') : _namespace_SIO('http://semanticscience.org/resource/SIO_010287') , _namespace_SIO('http://semanticscience.org/resource/SIO_001128') : _namespace_SIO('http://semanticscience.org/resource/SIO_001127') , _namespace_SIO('http://semanticscience.org/resource/SIO_001129') : _namespace_SIO('http://semanticscience.org/resource/SIO_001127') , _namespace_SIO('http://semanticscience.org/resource/SIO_001130') : _namespace_SIO('http://semanticscience.org/resource/SIO_001126') , _namespace_SIO('http://semanticscience.org/resource/SIO_001131') : _namespace_SIO('http://semanticscience.org/resource/SIO_001126') , _namespace_SIO('http://semanticscience.org/resource/SIO_001132') : _namespace_SIO('http://semanticscience.org/resource/SIO_000609') , _namespace_SIO('http://semanticscience.org/resource/SIO_001133') : _namespace_SIO('http://semanticscience.org/resource/SIO_001135') , _namespace_SIO('http://semanticscience.org/resource/SIO_001134') : _namespace_SIO('http://semanticscience.org/resource/SIO_001135') , _namespace_SIO('http://semanticscience.org/resource/SIO_001135') : _namespace_SIO('http://semanticscience.org/resource/SIO_000609') , _namespace_SIO('http://semanticscience.org/resource/SIO_001136') : _namespace_SIO('http://semanticscience.org/resource/SIO_000609') , _namespace_SIO('http://semanticscience.org/resource/SIO_001137') : _namespace_SIO('http://semanticscience.org/resource/SIO_001136') , _namespace_SIO('http://semanticscience.org/resource/SIO_001138') : _namespace_SIO('http://semanticscience.org/resource/SIO_001136') , _namespace_SIO('http://semanticscience.org/resource/SIO_001139') : _namespace_SIO('http://semanticscience.org/resource/SIO_000609') , _namespace_SIO('http://semanticscience.org/resource/SIO_001140') : _namespace_SIO('http://semanticscience.org/resource/SIO_001139') , _namespace_SIO('http://semanticscience.org/resource/SIO_001141') : _namespace_SIO('http://semanticscience.org/resource/SIO_001139') , _namespace_SIO('http://semanticscience.org/resource/SIO_001142') : _namespace_SIO('http://semanticscience.org/resource/SIO_001139') , _namespace_SIO('http://semanticscience.org/resource/SIO_001143') : _namespace_SIO('http://semanticscience.org/resource/SIO_001136') , _namespace_SIO('http://semanticscience.org/resource/SIO_001144') : _namespace_SIO('http://semanticscience.org/resource/SIO_001135') , _namespace_SIO('http://semanticscience.org/resource/SIO_001146') : _namespace_SIO('http://semanticscience.org/resource/SIO_001151') , _namespace_SIO('http://semanticscience.org/resource/SIO_001147') : _namespace_SIO('http://semanticscience.org/resource/SIO_001151') , _namespace_SIO('http://semanticscience.org/resource/SIO_001148') : _namespace_SIO('http://semanticscience.org/resource/SIO_001150') , _namespace_SIO('http://semanticscience.org/resource/SIO_001149') : _namespace_SIO('http://semanticscience.org/resource/SIO_001150') , _namespace_SIO('http://semanticscience.org/resource/SIO_001150') : _namespace_SIO('http://semanticscience.org/resource/SIO_001145') , _namespace_SIO('http://semanticscience.org/resource/SIO_001151') : _namespace_SIO('http://semanticscience.org/resource/SIO_001145') , _namespace_SIO('http://semanticscience.org/resource/SIO_001152') : _namespace_SIO('http://semanticscience.org/resource/SIO_001151') , _namespace_SIO('http://semanticscience.org/resource/SIO_001153') : _namespace_SIO('http://semanticscience.org/resource/SIO_001150') , _namespace_SIO('http://semanticscience.org/resource/SIO_001160') : _namespace_SIO('http://semanticscience.org/resource/SIO_000794') , _namespace_SIO('http://semanticscience.org/resource/SIO_001161') : _namespace_SIO('http://semanticscience.org/resource/SIO_000794') , _namespace_SIO('http://semanticscience.org/resource/SIO_001162') : _namespace_SIO('http://semanticscience.org/resource/SIO_000794') , _namespace_SIO('http://semanticscience.org/resource/SIO_001163') : _namespace_SIO('http://semanticscience.org/resource/SIO_001162') , _namespace_SIO('http://semanticscience.org/resource/SIO_001164') : _namespace_SIO('http://semanticscience.org/resource/SIO_001162') , _namespace_SIO('http://semanticscience.org/resource/SIO_001165') : _namespace_SIO('http://semanticscience.org/resource/SIO_000602') , _namespace_SIO('http://semanticscience.org/resource/SIO_001167') : _namespace_SIO('http://semanticscience.org/resource/SIO_000256') , _namespace_SIO('http://semanticscience.org/resource/SIO_001168') : _namespace_SIO('http://semanticscience.org/resource/SIO_000612') , _namespace_SIO('http://semanticscience.org/resource/SIO_001170') : _namespace_SIO('http://semanticscience.org/resource/SIO_000612') , _namespace_SIO('http://semanticscience.org/resource/SIO_010000') : _namespace_SIO('http://semanticscience.org/resource/SIO_010046') , _namespace_SIO('http://semanticscience.org/resource/SIO_010001') : _namespace_SIO('http://semanticscience.org/resource/SIO_010046') , _namespace_SIO('http://semanticscience.org/resource/SIO_010003') : _namespace_SIO('http://semanticscience.org/resource/SIO_010046') , _namespace_SIO('http://semanticscience.org/resource/SIO_010004') : _namespace_SIO('http://semanticscience.org/resource/SIO_000004') , _namespace_SIO('http://semanticscience.org/resource/SIO_010005') : _namespace_SIO('http://semanticscience.org/resource/SIO_010020') , _namespace_SIO('http://semanticscience.org/resource/SIO_010011') : _namespace_SIO('http://semanticscience.org/resource/SIO_010072') , _namespace_SIO('http://semanticscience.org/resource/SIO_010014') : _namespace_SIO('http://semanticscience.org/resource/SIO_011119') , _namespace_SIO('http://semanticscience.org/resource/SIO_010019') : _namespace_SIO('http://semanticscience.org/resource/SIO_000472') , _namespace_SIO('http://semanticscience.org/resource/SIO_010022') : _namespace_SIO('http://semanticscience.org/resource/SIO_011119') , _namespace_SIO('http://semanticscience.org/resource/SIO_010023') : _namespace_SIO('http://semanticscience.org/resource/SIO_011119') , _namespace_SIO('http://semanticscience.org/resource/SIO_010024') : _namespace_SIO('http://semanticscience.org/resource/SIO_011119') , _namespace_SIO('http://semanticscience.org/resource/SIO_010026') : _namespace_SIO('http://semanticscience.org/resource/SIO_010028') , _namespace_SIO('http://semanticscience.org/resource/SIO_010028') : _namespace_SIO('http://semanticscience.org/resource/SIO_010019') , _namespace_SIO('http://semanticscience.org/resource/SIO_010029') : _namespace_SIO('http://semanticscience.org/resource/SIO_000475') , _namespace_SIO('http://semanticscience.org/resource/SIO_010030') : _namespace_SIO('http://semanticscience.org/resource/SIO_010072') , _namespace_SIO('http://semanticscience.org/resource/SIO_010031') : _namespace_SIO('http://semanticscience.org/resource/SIO_000732') , _namespace_SIO('http://semanticscience.org/resource/SIO_010032') : _namespace_SIO('http://semanticscience.org/resource/SIO_000729') , _namespace_SIO('http://semanticscience.org/resource/SIO_010033') : _namespace_SIO('http://semanticscience.org/resource/SIO_010005') , _namespace_SIO('http://semanticscience.org/resource/SIO_010034') : _namespace_SIO('http://semanticscience.org/resource/SIO_010496') , _namespace_SIO('http://semanticscience.org/resource/SIO_010035') : _namespace_SIO('http://semanticscience.org/resource/SIO_010335') , _namespace_SIO('http://semanticscience.org/resource/SIO_010038') : _namespace_SIO('http://semanticscience.org/resource/SIO_011125') , _namespace_SIO('http://semanticscience.org/resource/SIO_010039') : _namespace_SIO('http://semanticscience.org/resource/SIO_010411') , _namespace_SIO('http://semanticscience.org/resource/SIO_010040') : _namespace_SIO('http://semanticscience.org/resource/SIO_010049') , _namespace_SIO('http://semanticscience.org/resource/SIO_010041') : _namespace_SIO('http://semanticscience.org/resource/SIO_010049') , _namespace_SIO('http://semanticscience.org/resource/SIO_010042') : _namespace_SIO('http://semanticscience.org/resource/SIO_010335') , _namespace_SIO('http://semanticscience.org/resource/SIO_010044') : _namespace_SIO('http://semanticscience.org/resource/SIO_010004') , _namespace_SIO('http://semanticscience.org/resource/SIO_010045') : _namespace_SIO('http://semanticscience.org/resource/SIO_010005') , _namespace_SIO('http://semanticscience.org/resource/SIO_010046') : _namespace_SIO('http://semanticscience.org/resource/SIO_010462') , _namespace_SIO('http://semanticscience.org/resource/SIO_010047') : _namespace_SIO('http://semanticscience.org/resource/SIO_010020') , _namespace_SIO('http://semanticscience.org/resource/SIO_010048') : _namespace_SIO('http://semanticscience.org/resource/SIO_010029') , _namespace_SIO('http://semanticscience.org/resource/SIO_010049') : _namespace_SIO('http://semanticscience.org/resource/SIO_000019') , _namespace_SIO('http://semanticscience.org/resource/SIO_010050') : _namespace_SIO('http://semanticscience.org/resource/SIO_010040') , _namespace_SIO('http://semanticscience.org/resource/SIO_010051') : _namespace_SIO('http://semanticscience.org/resource/SIO_010046') , _namespace_SIO('http://semanticscience.org/resource/SIO_010052') : _namespace_SIO('http://semanticscience.org/resource/SIO_010029') , _namespace_SIO('http://semanticscience.org/resource/SIO_010053') : _namespace_SIO('http://semanticscience.org/resource/SIO_010028') , _namespace_SIO('http://semanticscience.org/resource/SIO_010054') : _namespace_SIO('http://semanticscience.org/resource/SIO_010046') , _namespace_SIO('http://semanticscience.org/resource/SIO_010056') : _namespace_SIO('http://semanticscience.org/resource/SIO_000475') , _namespace_SIO('http://semanticscience.org/resource/SIO_010057') : _namespace_SIO('http://semanticscience.org/resource/SIO_000475') , _namespace_SIO('http://semanticscience.org/resource/SIO_010058') : _namespace_SIO('http://semanticscience.org/resource/SIO_010057') , _namespace_SIO('http://semanticscience.org/resource/SIO_010059') : _namespace_SIO('http://semanticscience.org/resource/SIO_010057') , _namespace_SIO('http://semanticscience.org/resource/SIO_010060') : _namespace_SIO('http://semanticscience.org/resource/SIO_010053') , _namespace_SIO('http://semanticscience.org/resource/SIO_010061') : _namespace_SIO('http://semanticscience.org/resource/SIO_010028') , _namespace_SIO('http://semanticscience.org/resource/SIO_010064') : _namespace_SIO('http://semanticscience.org/resource/SIO_010444') , _namespace_SIO('http://semanticscience.org/resource/SIO_010065') : _namespace_SIO('http://semanticscience.org/resource/SIO_000472') , _namespace_SIO('http://semanticscience.org/resource/SIO_010066') : _namespace_SIO('http://semanticscience.org/resource/SIO_010065') , _namespace_SIO('http://semanticscience.org/resource/SIO_010067') : _namespace_SIO('http://semanticscience.org/resource/SIO_010066') , _namespace_SIO('http://semanticscience.org/resource/SIO_010068') : _namespace_SIO('http://semanticscience.org/resource/SIO_010066') , _namespace_SIO('http://semanticscience.org/resource/SIO_010070') : _namespace_SIO('http://semanticscience.org/resource/SIO_010444') , _namespace_SIO('http://semanticscience.org/resource/SIO_010074') : _namespace_SIO('http://semanticscience.org/resource/SIO_010471') , _namespace_SIO('http://semanticscience.org/resource/SIO_010075') : _namespace_SIO('http://semanticscience.org/resource/SIO_010335') , _namespace_SIO('http://semanticscience.org/resource/SIO_010076') : _namespace_SIO('http://semanticscience.org/resource/SIO_010038') , _namespace_SIO('http://semanticscience.org/resource/SIO_010077') : _namespace_SIO('http://semanticscience.org/resource/SIO_010338') , _namespace_SIO('http://semanticscience.org/resource/SIO_010085') : _namespace_SIO('http://semanticscience.org/resource/SIO_010444') , _namespace_SIO('http://semanticscience.org/resource/SIO_010086') : _namespace_SIO('http://semanticscience.org/resource/SIO_010085') , _namespace_SIO('http://semanticscience.org/resource/SIO_010087') : _namespace_SIO('http://semanticscience.org/resource/SIO_010338') , _namespace_SIO('http://semanticscience.org/resource/SIO_010088') : _namespace_SIO('http://semanticscience.org/resource/SIO_000542') , _namespace_SIO('http://semanticscience.org/resource/SIO_010089') : _namespace_SIO('http://semanticscience.org/resource/SIO_010088') , _namespace_SIO('http://semanticscience.org/resource/SIO_010090') : _namespace_SIO('http://semanticscience.org/resource/SIO_010088') , _namespace_SIO('http://semanticscience.org/resource/SIO_010091') : _namespace_SIO('http://semanticscience.org/resource/SIO_010088') , _namespace_SIO('http://semanticscience.org/resource/SIO_010094') : _namespace_SIO('http://semanticscience.org/resource/SIO_000542') , _namespace_SIO('http://semanticscience.org/resource/SIO_010099') : _namespace_SIO('http://semanticscience.org/resource/SIO_010450') , _namespace_SIO('http://semanticscience.org/resource/SIO_010278') : _namespace_SIO('http://semanticscience.org/resource/SIO_000476') , _namespace_SIO('http://semanticscience.org/resource/SIO_010284') : _namespace_SIO('http://semanticscience.org/resource/SIO_000576') , _namespace_SIO('http://semanticscience.org/resource/SIO_010287') : _namespace_SIO('http://semanticscience.org/resource/SIO_000609') , _namespace_SIO('http://semanticscience.org/resource/SIO_010295') : _namespace_SIO('http://semanticscience.org/resource/SIO_000609') , _namespace_SIO('http://semanticscience.org/resource/SIO_010296') : _namespace_SIO('http://semanticscience.org/resource/SIO_000609') , _namespace_SIO('http://semanticscience.org/resource/SIO_010298') : _namespace_SIO('http://semanticscience.org/resource/SIO_010019') , _namespace_SIO('http://semanticscience.org/resource/SIO_010307') : _namespace_SIO('http://semanticscience.org/resource/SIO_010345') , _namespace_SIO('http://semanticscience.org/resource/SIO_010308') : _namespace_SIO('http://semanticscience.org/resource/SIO_010013') , _namespace_SIO('http://semanticscience.org/resource/SIO_010309') : _namespace_SIO('http://semanticscience.org/resource/SIO_010308') , _namespace_SIO('http://semanticscience.org/resource/SIO_010310') : _namespace_SIO('http://semanticscience.org/resource/SIO_010308') , _namespace_SIO('http://semanticscience.org/resource/SIO_010334') : _namespace_SIO('http://semanticscience.org/resource/SIO_010071') , _namespace_SIO('http://semanticscience.org/resource/SIO_010336') : _namespace_SIO('http://semanticscience.org/resource/SIO_010075') , _namespace_SIO('http://semanticscience.org/resource/SIO_010337') : _namespace_SIO('http://semanticscience.org/resource/SIO_010075') , _namespace_SIO('http://semanticscience.org/resource/SIO_010338') : _namespace_SIO('http://semanticscience.org/resource/SIO_011125') , _namespace_SIO('http://semanticscience.org/resource/SIO_010340') : _namespace_SIO('http://semanticscience.org/resource/SIO_000376') , _namespace_SIO('http://semanticscience.org/resource/SIO_010344') : _namespace_SIO('http://semanticscience.org/resource/SIO_011125') , _namespace_SIO('http://semanticscience.org/resource/SIO_010347') : _namespace_SIO('http://semanticscience.org/resource/SIO_000343') , _namespace_SIO('http://semanticscience.org/resource/SIO_010349') : _namespace_SIO('http://semanticscience.org/resource/SIO_000698') , _namespace_SIO('http://semanticscience.org/resource/SIO_010351') : _namespace_SIO('http://semanticscience.org/resource/SIO_000376') , _namespace_SIO('http://semanticscience.org/resource/SIO_010353') : _namespace_SIO('http://semanticscience.org/resource/SIO_000494') , _namespace_SIO('http://semanticscience.org/resource/SIO_010354') : _namespace_SIO('http://semanticscience.org/resource/SIO_010347') , _namespace_SIO('http://semanticscience.org/resource/SIO_010355') : _namespace_SIO('http://semanticscience.org/resource/SIO_010347') , _namespace_SIO('http://semanticscience.org/resource/SIO_010358') : _namespace_SIO('http://semanticscience.org/resource/SIO_010360') , _namespace_SIO('http://semanticscience.org/resource/SIO_010359') : _namespace_SIO('http://semanticscience.org/resource/SIO_010360') , _namespace_SIO('http://semanticscience.org/resource/SIO_010360') : _namespace_SIO('http://semanticscience.org/resource/SIO_000376') , _namespace_SIO('http://semanticscience.org/resource/SIO_010362') : _namespace_SIO('http://semanticscience.org/resource/SIO_010423') , _namespace_SIO('http://semanticscience.org/resource/SIO_010364') : _namespace_SIO('http://semanticscience.org/resource/SIO_000692') , _namespace_SIO('http://semanticscience.org/resource/SIO_010365') : _namespace_SIO('http://semanticscience.org/resource/SIO_010364') , _namespace_SIO('http://semanticscience.org/resource/SIO_010366') : _namespace_SIO('http://semanticscience.org/resource/SIO_010364') , _namespace_SIO('http://semanticscience.org/resource/SIO_010367') : _namespace_SIO('http://semanticscience.org/resource/SIO_010364') , _namespace_SIO('http://semanticscience.org/resource/SIO_010368') : _namespace_SIO('http://semanticscience.org/resource/SIO_000692') , _namespace_SIO('http://semanticscience.org/resource/SIO_010369') : _namespace_SIO('http://semanticscience.org/resource/SIO_010364') , _namespace_SIO('http://semanticscience.org/resource/SIO_010370') : _namespace_SIO('http://semanticscience.org/resource/SIO_010369') , _namespace_SIO('http://semanticscience.org/resource/SIO_010371') : _namespace_SIO('http://semanticscience.org/resource/SIO_010369') , _namespace_SIO('http://semanticscience.org/resource/SIO_010372') : _namespace_SIO('http://semanticscience.org/resource/SIO_010374') , _namespace_SIO('http://semanticscience.org/resource/SIO_010373') : _namespace_SIO('http://semanticscience.org/resource/SIO_010374') , _namespace_SIO('http://semanticscience.org/resource/SIO_010374') : _namespace_SIO('http://semanticscience.org/resource/SIO_010364') , _namespace_SIO('http://semanticscience.org/resource/SIO_010377') : _namespace_SIO('http://semanticscience.org/resource/SIO_010000') , _namespace_SIO('http://semanticscience.org/resource/SIO_010378') : _namespace_SIO('http://semanticscience.org/resource/SIO_010000') , _namespace_SIO('http://semanticscience.org/resource/SIO_010379') : _namespace_SIO('http://semanticscience.org/resource/SIO_010378') , _namespace_SIO('http://semanticscience.org/resource/SIO_010383') : _namespace_SIO('http://semanticscience.org/resource/SIO_000619') , _namespace_SIO('http://semanticscience.org/resource/SIO_010411') : _namespace_SIO('http://semanticscience.org/resource/SIO_010462') , _namespace_SIO('http://semanticscience.org/resource/SIO_010412') : _namespace_SIO('http://semanticscience.org/resource/SIO_001050') , _namespace_SIO('http://semanticscience.org/resource/SIO_010414') : _namespace_SIO('http://semanticscience.org/resource/SIO_010000') , _namespace_SIO('http://semanticscience.org/resource/SIO_010415') : _namespace_SIO('http://semanticscience.org/resource/SIO_010000') , _namespace_SIO('http://semanticscience.org/resource/SIO_010416') : _namespace_SIO('http://semanticscience.org/resource/SIO_010427') , _namespace_SIO('http://semanticscience.org/resource/SIO_010417') : _namespace_SIO('http://semanticscience.org/resource/SIO_010427') , _namespace_SIO('http://semanticscience.org/resource/SIO_010418') : _namespace_SIO('http://semanticscience.org/resource/SIO_010427') , _namespace_SIO('http://semanticscience.org/resource/SIO_010419') : _namespace_SIO('http://semanticscience.org/resource/SIO_011125') , _namespace_SIO('http://semanticscience.org/resource/SIO_010420') : _namespace_SIO('http://semanticscience.org/resource/SIO_010437') , _namespace_SIO('http://semanticscience.org/resource/SIO_010424') : _namespace_SIO('http://semanticscience.org/resource/SIO_010426') , _namespace_SIO('http://semanticscience.org/resource/SIO_010425') : _namespace_SIO('http://semanticscience.org/resource/SIO_010426') , _namespace_SIO('http://semanticscience.org/resource/SIO_010426') : _namespace_SIO('http://semanticscience.org/resource/SIO_011126') , _namespace_SIO('http://semanticscience.org/resource/SIO_010427') : _namespace_SIO('http://semanticscience.org/resource/SIO_010462') , _namespace_SIO('http://semanticscience.org/resource/SIO_010428') : _namespace_SIO('http://semanticscience.org/resource/SIO_000881') , _namespace_SIO('http://semanticscience.org/resource/SIO_010429') : _namespace_SIO('http://semanticscience.org/resource/SIO_010462') , _namespace_SIO('http://semanticscience.org/resource/SIO_010430') : _namespace_SIO('http://semanticscience.org/resource/SIO_010428') , _namespace_SIO('http://semanticscience.org/resource/SIO_010431') : _namespace_SIO('http://semanticscience.org/resource/SIO_010428') , _namespace_SIO('http://semanticscience.org/resource/SIO_010433') : _namespace_SIO('http://semanticscience.org/resource/SIO_010033') , _namespace_SIO('http://semanticscience.org/resource/SIO_010434') : _namespace_SIO('http://semanticscience.org/resource/SIO_010436') , _namespace_SIO('http://semanticscience.org/resource/SIO_010435') : _namespace_SIO('http://semanticscience.org/resource/SIO_010436') , _namespace_SIO('http://semanticscience.org/resource/SIO_010437') : _namespace_SIO('http://semanticscience.org/resource/SIO_011125') , _namespace_SIO('http://semanticscience.org/resource/SIO_010438') : _namespace_SIO('http://semanticscience.org/resource/SIO_010437') , _namespace_SIO('http://semanticscience.org/resource/SIO_010439') : _namespace_SIO('http://semanticscience.org/resource/SIO_010437') , _namespace_SIO('http://semanticscience.org/resource/SIO_010440') : _namespace_SIO('http://semanticscience.org/resource/SIO_010439') , _namespace_SIO('http://semanticscience.org/resource/SIO_010442') : _namespace_SIO('http://semanticscience.org/resource/SIO_001011') , _namespace_SIO('http://semanticscience.org/resource/SIO_010445') : _namespace_SIO('http://semanticscience.org/resource/SIO_010444') , _namespace_SIO('http://semanticscience.org/resource/SIO_010446') : _namespace_SIO('http://semanticscience.org/resource/SIO_010085') , _namespace_SIO('http://semanticscience.org/resource/SIO_010447') : _namespace_SIO('http://semanticscience.org/resource/SIO_010444') , _namespace_SIO('http://semanticscience.org/resource/SIO_010448') : _namespace_SIO('http://semanticscience.org/resource/SIO_010444') , _namespace_SIO('http://semanticscience.org/resource/SIO_010451') : _namespace_SIO('http://semanticscience.org/resource/SIO_010095') , _namespace_SIO('http://semanticscience.org/resource/SIO_010452') : _namespace_SIO('http://semanticscience.org/resource/SIO_010049') , _namespace_SIO('http://semanticscience.org/resource/SIO_010453') : _namespace_SIO('http://semanticscience.org/resource/SIO_010427') , _namespace_SIO('http://semanticscience.org/resource/SIO_010454') : _namespace_SIO('http://semanticscience.org/resource/SIO_010427') , _namespace_SIO('http://semanticscience.org/resource/SIO_010456') : _namespace_SIO('http://semanticscience.org/resource/SIO_010410') , _namespace_SIO('http://semanticscience.org/resource/SIO_010461') : _namespace_SIO('http://semanticscience.org/resource/SIO_000810') , _namespace_SIO('http://semanticscience.org/resource/SIO_010462') : _namespace_SIO('http://semanticscience.org/resource/SIO_011126') , _namespace_SIO('http://semanticscience.org/resource/SIO_010463') : _namespace_SIO('http://semanticscience.org/resource/SIO_011126') , _namespace_SIO('http://semanticscience.org/resource/SIO_010464') : _namespace_SIO('http://semanticscience.org/resource/SIO_000810') , _namespace_SIO('http://semanticscience.org/resource/SIO_010465') : _namespace_SIO('http://semanticscience.org/resource/SIO_010497') , _namespace_SIO('http://semanticscience.org/resource/SIO_010468') : _namespace_SIO('http://semanticscience.org/resource/SIO_010471') , _namespace_SIO('http://semanticscience.org/resource/SIO_010469') : _namespace_SIO('http://semanticscience.org/resource/SIO_010471') , _namespace_SIO('http://semanticscience.org/resource/SIO_010471') : _namespace_SIO('http://semanticscience.org/resource/SIO_010071') , _namespace_SIO('http://semanticscience.org/resource/SIO_010496') : _namespace_SIO('http://semanticscience.org/resource/SIO_010005') , _namespace_SIO('http://semanticscience.org/resource/SIO_010498') : _namespace_SIO('http://semanticscience.org/resource/SIO_011118') , _namespace_SIO('http://semanticscience.org/resource/SIO_010499') : _namespace_SIO('http://semanticscience.org/resource/SIO_011118') , _namespace_SIO('http://semanticscience.org/resource/SIO_010500') : _namespace_SIO('http://semanticscience.org/resource/SIO_011118') , _namespace_SIO('http://semanticscience.org/resource/SIO_010501') : _namespace_SIO('http://semanticscience.org/resource/SIO_011118') , _namespace_SIO('http://semanticscience.org/resource/SIO_010502') : _namespace_SIO('http://semanticscience.org/resource/SIO_010498') , _namespace_SIO('http://semanticscience.org/resource/SIO_010503') : _namespace_SIO('http://semanticscience.org/resource/SIO_010005') , _namespace_SIO('http://semanticscience.org/resource/SIO_010504') : _namespace_SIO('http://semanticscience.org/resource/SIO_010005') , _namespace_SIO('http://semanticscience.org/resource/SIO_010505') : _namespace_SIO('http://semanticscience.org/resource/SIO_010005') , _namespace_SIO('http://semanticscience.org/resource/SIO_010507') : _namespace_SIO('http://semanticscience.org/resource/SIO_010345') , _namespace_SIO('http://semanticscience.org/resource/SIO_010510') : _namespace_SIO('http://semanticscience.org/resource/SIO_010345') , _namespace_SIO('http://semanticscience.org/resource/SIO_010511') : _namespace_SIO('http://semanticscience.org/resource/SIO_010510') , _namespace_SIO('http://semanticscience.org/resource/SIO_010512') : _namespace_SIO('http://semanticscience.org/resource/SIO_010510') , _namespace_SIO('http://semanticscience.org/resource/SIO_010513') : _namespace_SIO('http://semanticscience.org/resource/SIO_010512') , _namespace_SIO('http://semanticscience.org/resource/SIO_010514') : _namespace_SIO('http://semanticscience.org/resource/SIO_010512') , _namespace_SIO('http://semanticscience.org/resource/SIO_010515') : _namespace_SIO('http://semanticscience.org/resource/SIO_010510') , _namespace_SIO('http://semanticscience.org/resource/SIO_010516') : _namespace_SIO('http://semanticscience.org/resource/SIO_010345') , _namespace_SIO('http://semanticscience.org/resource/SIO_010517') : _namespace_SIO('http://semanticscience.org/resource/SIO_010345') , _namespace_SIO('http://semanticscience.org/resource/SIO_010518') : _namespace_SIO('http://semanticscience.org/resource/SIO_010516') , _namespace_SIO('http://semanticscience.org/resource/SIO_010519') : _namespace_SIO('http://semanticscience.org/resource/SIO_010518') , _namespace_SIO('http://semanticscience.org/resource/SIO_010520') : _namespace_SIO('http://semanticscience.org/resource/SIO_010518') , _namespace_SIO('http://semanticscience.org/resource/SIO_010521') : _namespace_SIO('http://semanticscience.org/resource/SIO_010520') , _namespace_SIO('http://semanticscience.org/resource/SIO_010522') : _namespace_SIO('http://semanticscience.org/resource/SIO_010519') , _namespace_SIO('http://semanticscience.org/resource/SIO_010523') : _namespace_SIO('http://semanticscience.org/resource/SIO_010519') , _namespace_SIO('http://semanticscience.org/resource/SIO_010525') : _namespace_SIO('http://semanticscience.org/resource/SIO_010526') , _namespace_SIO('http://semanticscience.org/resource/SIO_010527') : _namespace_SIO('http://semanticscience.org/resource/SIO_010526') , _namespace_SIO('http://semanticscience.org/resource/SIO_010528') : _namespace_SIO('http://semanticscience.org/resource/SIO_010526') , _namespace_SIO('http://semanticscience.org/resource/SIO_010530') : _namespace_SIO('http://semanticscience.org/resource/SIO_010023') , _namespace_SIO('http://semanticscience.org/resource/SIO_010531') : _namespace_SIO('http://semanticscience.org/resource/SIO_010065') , _namespace_SIO('http://semanticscience.org/resource/SIO_010532') : _namespace_SIO('http://semanticscience.org/resource/SIO_010525') , _namespace_SIO('http://semanticscience.org/resource/SIO_010533') : _namespace_SIO('http://semanticscience.org/resource/SIO_010525') , _namespace_SIO('http://semanticscience.org/resource/SIO_010673') : _namespace_SIO('http://semanticscience.org/resource/SIO_010298') , _namespace_SIO('http://semanticscience.org/resource/SIO_010775') : _namespace_SIO('http://semanticscience.org/resource/SIO_010455') , _namespace_SIO('http://semanticscience.org/resource/SIO_010776') : _namespace_SIO('http://semanticscience.org/resource/SIO_010775') , _namespace_SIO('http://semanticscience.org/resource/SIO_010777') : _namespace_SIO('http://semanticscience.org/resource/SIO_010775') , _namespace_SIO('http://semanticscience.org/resource/SIO_010778') : _namespace_SIO('http://semanticscience.org/resource/SIO_010775') , _namespace_SIO('http://semanticscience.org/resource/SIO_010779') : _namespace_SIO('http://semanticscience.org/resource/SIO_010455') , _namespace_SIO('http://semanticscience.org/resource/SIO_010781') : _namespace_SIO('http://semanticscience.org/resource/SIO_010780') , _namespace_SIO('http://semanticscience.org/resource/SIO_010782') : _namespace_SIO('http://semanticscience.org/resource/SIO_010780') , _namespace_SIO('http://semanticscience.org/resource/SIO_010783') : _namespace_SIO('http://semanticscience.org/resource/SIO_010780') , _namespace_SIO('http://semanticscience.org/resource/SIO_010785') : _namespace_SIO('http://semanticscience.org/resource/SIO_010037') , _namespace_SIO('http://semanticscience.org/resource/SIO_010787') : _namespace_SIO('http://semanticscience.org/resource/SIO_010786') , _namespace_SIO('http://semanticscience.org/resource/SIO_010788') : _namespace_SIO('http://semanticscience.org/resource/SIO_010786') , _namespace_SIO('http://semanticscience.org/resource/SIO_010789') : _namespace_SIO('http://semanticscience.org/resource/SIO_010786') , _namespace_SIO('http://semanticscience.org/resource/SIO_010790') : _namespace_SIO('http://semanticscience.org/resource/SIO_010786') , _namespace_SIO('http://semanticscience.org/resource/SIO_010791') : _namespace_SIO('http://semanticscience.org/resource/SIO_010786') , _namespace_SIO('http://semanticscience.org/resource/SIO_010792') : _namespace_SIO('http://semanticscience.org/resource/SIO_010786') , _namespace_SIO('http://semanticscience.org/resource/SIO_010793') : _namespace_SIO('http://semanticscience.org/resource/SIO_010786') , _namespace_SIO('http://semanticscience.org/resource/SIO_010794') : _namespace_SIO('http://semanticscience.org/resource/SIO_010786') , _namespace_SIO('http://semanticscience.org/resource/SIO_010795') : _namespace_SIO('http://semanticscience.org/resource/SIO_010786') , _namespace_SIO('http://semanticscience.org/resource/SIO_011000') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011001') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011002') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011003') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011004') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011005') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011006') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011007') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011008') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011009') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011010') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011011') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011012') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011013') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011014') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011015') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011016') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011017') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011018') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011019') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011020') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011021') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011022') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011023') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011024') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011025') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011026') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011027') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011028') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011029') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011030') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011031') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011032') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011033') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011034') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011035') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011036') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011037') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011038') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011039') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011040') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011041') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011042') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011043') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011044') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011045') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011046') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011047') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011048') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011049') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011050') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011051') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011052') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011053') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011054') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011055') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011056') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011057') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011058') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011059') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011060') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011061') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011062') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011063') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011064') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011065') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011066') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011067') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011068') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011069') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011070') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011071') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011072') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011073') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011074') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011075') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011076') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011077') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011078') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011079') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011080') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011081') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011082') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011083') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011084') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011085') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011086') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011087') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011088') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011089') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011090') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011091') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011092') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011093') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011094') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011095') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011096') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011097') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011098') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011099') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011100') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011101') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011102') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011103') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011104') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011105') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011106') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011107') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011108') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011109') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011110') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011111') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011112') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011113') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011114') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011115') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011116') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011117') : _namespace_SIO('http://semanticscience.org/resource/SIO_010044') , _namespace_SIO('http://semanticscience.org/resource/SIO_011123') : _namespace_SIO('http://semanticscience.org/resource/SIO_000472') , _namespace_SIO('http://semanticscience.org/resource/SIO_011126') : _namespace_SIO('http://semanticscience.org/resource/SIO_010004') , _namespace_SIO('http://semanticscience.org/resource/SIO_011130') : _namespace_SIO('http://semanticscience.org/resource/SIO_011120') }
11772
12543