-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbro.owl.ttl
4576 lines (3098 loc) · 242 KB
/
bro.owl.ttl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
@prefix : <http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix xsp: <http://www.owl-ontologies.com/2005/08/07/xsp.owl#> .
@prefix area: <http://bioontology.org/ontologies/ResearchArea.owl#> .
@prefix desc: <http://bioontology.org/ontologies/biositemap.owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix protege: <http://protege.stanford.edu/plugins/owl/protege#> .
@prefix activity: <http://bioontology.org/ontologies/Activity.owl#> .
@base <https://github.com/biocypher/biomedical-resource-ontology/blob/main/bro.owl#> .
<http://bioontology.org/ontologies/BiomedicalResources.owl> rdf:type owl:Ontology ;
owl:imports <http://www.w3.org/2004/02/skos/core> ;
owl:versionInfo "3.2.1" .
#################################################################
# Annotation properties
#################################################################
### http://bioontology.org/ontologies/biositemap.owl#definition
desc:definition rdf:type owl:AnnotationProperty ;
rdfs:range xsd:string .
### http://bioontology.org/ontologies/biositemap.owl#replacedBy
desc:replacedBy rdf:type owl:AnnotationProperty .
#################################################################
# Object Properties
#################################################################
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#AlgorithmPurpose
:AlgorithmPurpose rdf:type owl:ObjectProperty ;
rdfs:domain :Algorithm ;
rdfs:comment "Scientific purpose of algorithm" ;
rdfs:label "AlgorithmPurpose" .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#DocumentGoal
:DocumentGoal rdf:type owl:ObjectProperty ;
rdfs:domain :Document ;
rdfs:comment "What are the goals of the document" ;
rdfs:label "DocumentGoal" .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#InteractionType
:InteractionType rdf:type owl:ObjectProperty ;
rdfs:comment "What type of interaction is this?" ;
rdfs:label "InteractionType" .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#MeasurementType
:MeasurementType rdf:type owl:ObjectProperty ;
rdfs:domain :Experimental_Measurment ;
rdfs:comment "what kind of information is being capture in this measurement?" ;
rdfs:label "MeasurementType" .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#OutputForm
:OutputForm rdf:type owl:ObjectProperty ;
rdfs:domain :Algorithm ;
rdfs:comment "What form of output is produced by this thing" ;
rdfs:label "OutputForm" .
### http://bioontology.org/ontologies/biositemap.owl#data_input
desc:data_input rdf:type owl:ObjectProperty ;
rdfs:range :Data_Resource ;
desc:definition "Data input API for resource" ;
rdfs:label "Data input" ,
"data input" .
### http://bioontology.org/ontologies/biositemap.owl#data_output
desc:data_output rdf:type owl:ObjectProperty ;
rdfs:range :Data_Resource ;
desc:definition "Data output API for resource" ;
rdfs:label "Data output" ,
"data output" .
### http://bioontology.org/ontologies/biositemap.owl#related_activities
desc:related_activities rdf:type owl:ObjectProperty ;
desc:definition "Related activity represented by a subclass of the activity:Activity class in the BRO -- multiple values allowed" ;
rdfs:label "related activities" .
### http://bioontology.org/ontologies/biositemap.owl#related_areas_of_research
desc:related_areas_of_research rdf:type owl:ObjectProperty ;
desc:definition "Related area of research represented by a subclass of the area:Area_of_Research class in the BRO -- multiple values allowed" ;
rdfs:label "related areas of research" .
### http://bioontology.org/ontologies/biositemap.owl#related_resource
desc:related_resource rdf:type owl:ObjectProperty ;
rdfs:label "Cross reference to another Resource Description, which describes a resource that is related in some way to this resource." .
### http://bioontology.org/ontologies/biositemap.owl#replacedBy
desc:replacedBy rdf:type owl:ObjectProperty ;
rdfs:domain owl:DeprecatedClass .
### http://bioontology.org/ontologies/biositemap.owl#resource_type
desc:resource_type rdf:type owl:ObjectProperty ;
rdfs:range :Resource ;
desc:definition "The class in the BRO that describes the type of the resource -- multiple values allowed" ;
rdfs:label "Resource type" ,
"resource type" .
### http://bioontology.org/ontologies/biositemap.owl#version_information
desc:version_information rdf:type owl:ObjectProperty ;
desc:definition "The version information for the resource defined by a desc:Version_Information instance (containing information about version number, development stage and release date)" ;
rdfs:label "version information" .
#################################################################
# Data properties
#################################################################
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#Identifier
:Identifier rdf:type owl:DatatypeProperty ;
rdfs:comment "Any kind of identifier" ;
rdfs:label "Identifier" .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#Implementation_Language
:Implementation_Language rdf:type owl:DatatypeProperty ;
rdfs:label "Implementation Language" ,
"Implementation_Language" .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#Originator
:Originator rdf:type owl:DatatypeProperty ;
rdfs:domain :Algorithm ;
rdfs:comment "Originator of a class" ;
rdfs:label "Originator" .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#Other_Information
:Other_Information rdf:type owl:DatatypeProperty ;
rdfs:domain :Algorithm ;
rdfs:label "Other Information" ,
"Other_Information" .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#PeerReviewStatus
:PeerReviewStatus rdf:type owl:DatatypeProperty ;
rdfs:domain :Publication ;
rdfs:comment "is this a peer-reviewed scientific publication?" ;
rdfs:label "PeerReviewStatus" .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#ProteinType
:ProteinType rdf:type owl:DatatypeProperty ;
rdfs:comment "broad classification of protein type based on structure or function" ;
rdfs:label "ProteinType" .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#Target_User_Type
:Target_User_Type rdf:type owl:DatatypeProperty ;
rdfs:label "Target User Type" ,
"Target_User_Type" .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#TranscriptType
:TranscriptType rdf:type owl:DatatypeProperty ;
rdfs:comment "Type of biological transcript" ;
rdfs:label "TranscriptType" .
### http://bioontology.org/ontologies/biositemap.owl#URL
desc:URL rdf:type owl:DatatypeProperty ;
rdfs:range xsd:string ;
desc:definition "The URL to access the resource" ;
rdfs:label "URL" .
### http://bioontology.org/ontologies/biositemap.owl#biositemap_author
desc:biositemap_author rdf:type owl:DatatypeProperty ;
rdfs:range xsd:string ;
desc:definition "The person who edits or is responsible for the content of this biositemap file or of a particular resource description entry." ;
rdfs:label "biositemap author" .
### http://bioontology.org/ontologies/biositemap.owl#byline
desc:byline rdf:type owl:DatatypeProperty ;
rdfs:range xsd:string ;
rdfs:label "byline" ;
owl:deprecated "true"^^xsd:boolean .
### http://bioontology.org/ontologies/biositemap.owl#center
desc:center rdf:type owl:DatatypeProperty ;
rdfs:range xsd:string ;
desc:definition "Name and/or acronym of the research center or institute (if appropriate) that produced, shares, or uses the resource (usually a sub-unit of Organization)" ;
rdfs:label "Center or Institute" ,
"center" .
### http://bioontology.org/ontologies/biositemap.owl#contact_person
desc:contact_person rdf:type owl:DatatypeProperty ;
rdfs:range xsd:string ;
desc:definition "The contact person for the resource" ;
rdfs:label "Contact Person(s)" ,
"contact person" .
### http://bioontology.org/ontologies/biositemap.owl#contact_person_email
desc:contact_person_email rdf:type owl:DatatypeProperty ;
desc:definition "Email address contact for the resource" ;
rdfs:label "contact person email" .
### http://bioontology.org/ontologies/biositemap.owl#contact_person_phone
desc:contact_person_phone rdf:type owl:DatatypeProperty ;
rdfs:range xsd:string ;
desc:definition "Phone number contact for the resource" ;
rdfs:label "contact person phone" .
### http://bioontology.org/ontologies/biositemap.owl#definition
desc:definition rdf:type owl:DatatypeProperty .
### http://bioontology.org/ontologies/biositemap.owl#description
desc:description rdf:type owl:DatatypeProperty ;
rdfs:range xsd:string ;
desc:definition "The description of the resource" ;
rdfs:label "Description" ,
"description" .
### http://bioontology.org/ontologies/biositemap.owl#development_stage
desc:development_stage rdf:type owl:DatatypeProperty ;
rdfs:range xsd:string ;
desc:definition "Development stage (e.g. pre-alpha, alpha, beta, pre-release, release)" ;
rdfs:label "Development stage" ,
"development stage" .
### http://bioontology.org/ontologies/biositemap.owl#documentation_URL
desc:documentation_URL rdf:type owl:DatatypeProperty ;
rdfs:range xsd:string ;
rdfs:label "documentation URL" ;
owl:deprecated "true"^^xsd:boolean .
### http://bioontology.org/ontologies/biositemap.owl#documentation_available
desc:documentation_available rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:range xsd:string ;
desc:definition "Is there available documentation [yes | no]" ;
rdfs:label "documentation available" .
### http://bioontology.org/ontologies/biositemap.owl#keywords
desc:keywords rdf:type owl:DatatypeProperty ;
rdfs:range xsd:string ;
desc:definition "The list of keywords" ;
rdfs:comment "choice of either many individual keyword elements or one element with comma-separated-values" ;
rdfs:label "keywords" .
### http://bioontology.org/ontologies/biositemap.owl#language
desc:language rdf:type owl:DatatypeProperty ;
rdfs:range xsd:string ;
desc:definition "Software programming language in which resource was written or can be accessed" ;
rdfs:label "Implementation Language" ,
"language" .
### http://bioontology.org/ontologies/biositemap.owl#license
desc:license rdf:type owl:DatatypeProperty ;
rdfs:range xsd:string ;
desc:definition "The license under which the resource is distributed" ;
rdfs:label "License model" ,
"license" .
### http://bioontology.org/ontologies/biositemap.owl#mailing_list_URL
desc:mailing_list_URL rdf:type owl:DatatypeProperty ;
rdfs:range xsd:string ;
rdfs:label "mailing list URL" ;
owl:deprecated "true"^^xsd:boolean .
### http://bioontology.org/ontologies/biositemap.owl#organization
desc:organization rdf:type owl:DatatypeProperty ;
rdfs:range xsd:string ;
desc:definition "Name of the organization that produced, shares, or uses the resource (for example Stanford University, University of Pittsburgh, etc.)" ;
rdfs:label "Organization" ,
"organization" .
### http://bioontology.org/ontologies/biositemap.owl#platforms
desc:platforms rdf:type owl:DatatypeProperty ;
rdfs:range xsd:string ;
desc:definition "The software platforms on which the resource was tested (for software resources)" ;
rdfs:label "Platforms tested" ,
"platforms" .
### http://bioontology.org/ontologies/biositemap.owl#publication_identifier
desc:publication_identifier rdf:type owl:DatatypeProperty ;
rdfs:range xsd:string ;
desc:definition "Publication identifier for the resource from a publicly available publication database (e.g. PMID: 19483092 or doi: 10.1093/nar/gkp440)." ;
rdfs:label "publication identifier" .
### http://bioontology.org/ontologies/biositemap.owl#release_date
desc:release_date rdf:type owl:DatatypeProperty ;
desc:definition "Date of release of version (can be specified as xsd:date or as an xsd:string)" ;
rdfs:label "release date" .
### http://bioontology.org/ontologies/biositemap.owl#research_program
desc:research_program rdf:type owl:DatatypeProperty ;
rdfs:range xsd:string ;
desc:definition "Name of the research cluster as identified through a funding program or other generally-accepted organizational cluster (for example NCBC, CTSA, etc.)" ;
rdfs:label "Research Program" ,
"research program" .
### http://bioontology.org/ontologies/biositemap.owl#resource_name
desc:resource_name rdf:type owl:DatatypeProperty ;
rdfs:range xsd:string ;
desc:definition "The name of the resource" ;
rdfs:label "Name" ,
"resource name" .
### http://bioontology.org/ontologies/biositemap.owl#resource_sharable
desc:resource_sharable rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:range xsd:string ;
desc:definition "Is this resource sharable [yes | no]" ;
rdfs:label "resource sharable" .
### http://bioontology.org/ontologies/biositemap.owl#technical_support
desc:technical_support rdf:type owl:DatatypeProperty ;
rdfs:range xsd:string ;
desc:definition "What technical support is available [available | limited | none]" ;
rdfs:label "technical support" .
### http://bioontology.org/ontologies/biositemap.owl#version
desc:version rdf:type owl:DatatypeProperty ;
rdfs:range xsd:string ;
desc:definition "The version number" ;
rdfs:label "Version number" ,
"version" .
#################################################################
# Classes
#################################################################
### http://bioontology.org/ontologies/Activity.owl#Deprecated_Activity
activity:Deprecated_Activity rdf:type owl:Class ;
desc:definition "Former subclasses of activity:Activity that have been deprecated and their usage is not recommended." ;
rdfs:label "Deprecated Activity" ;
owl:deprecated "true"^^xsd:boolean .
### http://bioontology.org/ontologies/Activity.owl#Heath_Services
activity:Heath_Services rdf:type owl:Class ;
rdfs:subClassOf activity:Deprecated_Activity .
### http://bioontology.org/ontologies/Activity.owl#Novel_Therapeutics
activity:Novel_Therapeutics rdf:type owl:Class ;
rdfs:subClassOf activity:Deprecated_Activity .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#Adapter
:Adapter rdf:type owl:Class ;
rdfs:subClassOf :Data_Processing_Software ;
desc:definition "Resource that provides access to software, applications, or toolkits that convert or manipulate the representation of data." ;
rdfs:label "Adapter" .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#Aggregate_Human_Data
:Aggregate_Human_Data rdf:type owl:Class ;
rdfs:subClassOf :Clinical_Care_Data ;
desc:definition "A resource that provides data from clinical care that comprises combined data from multiple individual human subjects." ;
rdfs:label "Aggregate Human Data" .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#Algorithm
:Algorithm rdf:type owl:Class ;
rdfs:subClassOf :Software ;
desc:definition "Resource that provides access to software or application that perform numerical analysis or other canonical computational methods that act either on experimental or synthetic data." ;
rdfs:label "Algorithm" .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#Amplifier
:Amplifier rdf:type owl:Class ;
rdfs:subClassOf :Instrument ;
desc:definition "An instrument that increases the output of another instrument." ;
rdfs:label "Amplifier" ;
skos:editorialNote "pending final vetting: work with eagle-i to define terms since out of scope of BRO" .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#Analysis_of_Gel-Electrophoresis
:Analysis_of_Gel-Electrophoresis rdf:type owl:Class ;
rdfs:subClassOf :Image_Processing ;
desc:definition "Resource that provides access to software, applications, or toolkits that can be used to provide quantitative data on the molecules being analyzed such as molecular weight, abundance or purity." ;
rdfs:label "Analysis of Gel-Electrophoresis" .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#Anatomic_Atlas
:Anatomic_Atlas rdf:type owl:Class ;
rdfs:subClassOf :Deprecated_Resource .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#Animal_Care_Facility
:Animal_Care_Facility rdf:type owl:Class ;
rdfs:subClassOf :Research_Animals_Facility ;
desc:definition "A facility or core devoted to the care of research animals. " ;
rdfs:label "Animal Care Facility" ;
skos:editorialNote "pending final vetting: Refine definition" .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#Animal_Compliance_Resource
:Animal_Compliance_Resource rdf:type owl:Class ;
rdfs:subClassOf :Regulatory_Compliance_Resource ;
desc:definition "A resource which can include a committee or a board that reviews research protocols and conducts evaluations of the animal care facilities. The resource can be used to ensure the use of animals in research follows the required legal and ethical guidelines." ;
rdfs:label "Animal Compliance Resource" .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#Animal_Models_Facility
:Animal_Models_Facility rdf:type owl:Class ;
rdfs:subClassOf :Research_Animals_Facility ;
desc:definition "A facility or core devoted to developing animal research models (http://en.wikipedia.org/wiki/Animal_models)" ;
rdfs:label "Animal Models Facility" ;
skos:editorialNote "pending final vetting: Refine definition" .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#Antibody_Production
:Antibody_Production rdf:type owl:Class ;
rdfs:subClassOf :Material_Service ;
desc:definition "A resource that provides access to the ability to generate antibodies that bind to a specific antigen." ;
rdfs:label "Antibody Production" .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#Application_Programming_Interface
:Application_Programming_Interface rdf:type owl:Class ;
rdfs:subClassOf :Integration ;
desc:definition "Resource that provides access to software, application, or toolkit that enables or can be used to develop application programming interfaces." ;
rdfs:label "Application Programming Interface" .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#Approximate_Graph_Alignment
:Approximate_Graph_Alignment rdf:type owl:Class ;
rdfs:subClassOf :Graph_Alignment ,
:Searching_Sorting_and_Indexing ;
desc:definition "Resource that provides access to software, applications, or toolkits that allows insertions, deletions, or mismatches in nodes/edges." ;
rdfs:label "Approximate Graph Alignment" .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#Assessment_Material_Resource
:Assessment_Material_Resource rdf:type owl:Class ;
rdfs:subClassOf :Material_Resource ;
desc:definition "A resource that provides access to scientific data assessment instruments, for example behavioral assessment tests. " ;
rdfs:label "Assessment Material Resource" .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#Atlas
:Atlas rdf:type owl:Class ;
rdfs:subClassOf :Semi-Structured_Knowledge_Resource .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#Atlas_Generation
:Atlas_Generation rdf:type owl:Class ;
rdfs:subClassOf :Image_Processing ;
desc:definition "Resource that provides access to software, applications, or toolkits that generate computational atlases of biological objects using imaging techniques." ;
rdfs:label "Atlas Generation" .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#Authentication
:Authentication rdf:type owl:Class ;
rdfs:subClassOf :Identity_Management ;
desc:definition "The process of confirming the correctness of the claimed identity. " ;
rdfs:label "Authentication" .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#Authorization
:Authorization rdf:type owl:Class ;
rdfs:subClassOf :Identity_Management ;
desc:definition "The process of specifying access rights to a resource." ;
rdfs:label "Authorization" .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#Automated_Natural_Language_Output
:Automated_Natural_Language_Output rdf:type owl:Class ;
rdfs:subClassOf :Deprecated_Resource .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#Averaging_and_Agglomeration
:Averaging_and_Agglomeration rdf:type owl:Class ;
rdfs:subClassOf :Signal_Processing .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#Averaging_and_Aglomeration
:Averaging_and_Aglomeration rdf:type owl:Class ;
rdfs:subClassOf :Deprecated_Resource .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#Backup_Archive_Service
:Backup_Archive_Service rdf:type owl:Class ;
rdfs:subClassOf :Computational_Service .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#Backup_Archives_and_Disaster_Recovery
:Backup_Archives_and_Disaster_Recovery rdf:type owl:Class ;
rdfs:subClassOf :Deprecated_Resource .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#Behavioral_Analysis_Service
:Behavioral_Analysis_Service rdf:type owl:Class ;
rdfs:subClassOf :Computational_Service ;
desc:definition "A resource that provides data from whole behaving animals, which are either provided to the service provider or purchased by the service provider specifically for the experiment which the provider was contracted to perform. Viewing this as an input/output relationship the input would be an animal and the output would be data such as an excel sheet of times of escape from the Morris water maze." ;
rdfs:label "Behavioral Analysis Service" ;
skos:editorialNote "pending final vetting: review hierarchy location" .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#Bibliographic_Resource
:Bibliographic_Resource rdf:type owl:Class ;
rdfs:subClassOf :Semi-Structured_Knowledge_Resource .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#Binary_Executable
:Binary_Executable rdf:type owl:Class ;
rdfs:subClassOf :Deprecated_Resource .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#Biobank_Facility
:Biobank_Facility rdf:type owl:Class ;
rdfs:subClassOf :Tissue_Organ_Facility ;
desc:definition "A facility or core that provides storage for any type of biospecimen." ;
rdfs:label "Biobank Facility" .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#Biochemical_Supply_Resource
:Biochemical_Supply_Resource rdf:type owl:Class ;
rdfs:subClassOf :Deprecated_Resource .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#Biomaterial_Analysis_Service
:Biomaterial_Analysis_Service rdf:type owl:Class ;
rdfs:subClassOf :Computational_Service ;
desc:definition "A resource that provides data from any biomaterial sample that was given to the service provider. This can also be a service that performs an experiment such as electrophysiological examination of LTP in a transgenic mouse. Viewing this as an input/output relationship the input would be a tissue or an animal and the output would be data." ;
rdfs:label "Biomaterial Analysis Service" .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#Biomaterial_Manufacture
:Biomaterial_Manufacture rdf:type owl:Class ;
rdfs:subClassOf :Material_Service ;
desc:definition "A resource that produces a product that is of organismal origin. An example of a biomaterial service is the production of a knockout mouse or cell culture. Note, for simplicity of definitions all molecules including antibodies and toxins are considered reagents even though some may have an organismal origin." ;
rdfs:label "Biomaterial Manufacture" .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#Biomaterial_Supply_Resource
:Biomaterial_Supply_Resource rdf:type owl:Class ;
rdfs:subClassOf :Material_Resource ;
desc:definition "A resource that provides access to physical materials like tissue samples or organisms. For example, the IMSR enables acquisition of a transgenic mouse or cell line. Note, for the sake of simplicity we have excluded molecules of organismal origin from this category as these can be manufactured chemically and have included them under the reagent category (eg. antibodies, toxins)." ;
rdfs:label "Biomaterial Supply Resource" .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#Biomedical_Supply_Resource
:Biomedical_Supply_Resource rdf:type owl:Class ;
rdfs:subClassOf :Material_Resource ;
desc:definition "Biomedical (http://en.wikipedia.org/wiki/Biomedicine) supplies provided for a laboratory (http://en.wikipedia.org/wiki/Laboratory)" ;
rdfs:label "Biomedical Supply Resource" ;
skos:editorialNote "pending final vetting: suggest to deprecate" .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#Biomolecular_Interaction_Facility
:Biomolecular_Interaction_Facility rdf:type owl:Class ;
rdfs:subClassOf :Molecular_Biology_Facility ;
desc:definition "A molecular biology facility devoted to the study of interactions between molecules in biology." ;
rdfs:label "Biomolecular Interaction Facility" ;
skos:editorialNote "pending final vetting: Refine definition" .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#Biosafety_Level_Facility
:Biosafety_Level_Facility rdf:type owl:Class ;
rdfs:subClassOf :Facility_Core ;
desc:definition "A resource that provides access to an enclosed facility that takes specified precautions for containment of dangerous biological agents, as defined by http://en.wikipedia.org/wiki/Biosafety_level" ;
rdfs:label "Biosafety Level Facility" .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#Book
:Book rdf:type owl:Class ;
rdfs:subClassOf :Narrative_Resource ;
desc:definition "A resource that provides access to a written or printed work of fiction or nonfiction, usually on sheets of paper fastened or bound together within covers." ;
rdfs:label "Book" .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#Bug_Reporting
:Bug_Reporting rdf:type owl:Class ;
rdfs:subClassOf :Interactive_Web-Based_Tool ;
desc:definition "Resource that provides access to software, application, or toolkit that enable web-based tools that provide structure to indicate a problem or issue. Typically, bug reporting software provides a mechanism to indicate the severity of the problem and a contact person to review the issue." ;
rdfs:label "Bug Reporting" .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#CT_Scanner
:CT_Scanner rdf:type owl:Class ;
rdfs:subClassOf :Instrument ,
:Medical_Device ;
desc:definition "A measurement (or image acquisition) device that generates a three-dimensional image of the inside of an object from a series of two-dimensional X-ray images taken around a single axis of rotation." ;
rdfs:label "CT Scanner" ;
skos:editorialNote "pending final vetting: location in hierarchy and harmonize with OBI/eagle-i" .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#Calculation_of_Solvent_Accessible_Area
:Calculation_of_Solvent_Accessible_Area rdf:type owl:Class ;
rdfs:subClassOf :Molecular_Modeling_and_Classification ;
desc:definition "Resource that provides access to software, applications, or toolkits that can be used to determine the surface area of a molecule such as DNA or protein. " ;
rdfs:label "Calculation of Solvent Accessible Area" .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#Calendar_Schedule_and_Resource_Management
:Calendar_Schedule_and_Resource_Management rdf:type owl:Class ;
rdfs:subClassOf :Data_Service ;
desc:definition "A resource that provides functionality to allocate resources based on a method of timekeeping." ;
rdfs:label "Calendar Schedule and Resource Management" .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#Calorimeter
:Calorimeter rdf:type owl:Class ;
rdfs:subClassOf :Instrument ;
desc:definition "A measurement device that is used to calculate the heat flow of a chemical reaction or physical change." ;
rdfs:label "Calorimeter" ;
skos:editorialNote "pending final vetting: work with eagle-i to define terms since out of scope of BRO" .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#Cardiovascular_Facility
:Cardiovascular_Facility rdf:type owl:Class ;
rdfs:subClassOf :Physiology_Facility ;
desc:definition "A physiology facility devoted to cardiovascular (http://en.wikipedia.org/wiki/Cardiovascular_disease) research." ;
rdfs:label "Cardiovascular Facility" ;
skos:editorialNote "pending final vetting: Refine definition" .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#Cardiovascular_Model
:Cardiovascular_Model rdf:type owl:Class ;
rdfs:subClassOf :Physioloigcal_Model ;
desc:definition "Resource that provides access to software, applications, or toolkits that can be used to model physiological processes of the cardiovascular system. " ;
rdfs:label "Cardiovascular Model" .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#Cell_Biology_Facility
:Cell_Biology_Facility rdf:type owl:Class ;
rdfs:subClassOf :Facility_Core ;
desc:definition "A resource that provides access to instruments, technologies, facilities, and/or expert support devoted to cell biology (http://en.wikipedia.org/wiki/Cell_biology) research" ;
rdfs:label "Cell Biology Facility" .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#Cell_Culture_Facility
:Cell_Culture_Facility rdf:type owl:Class ;
rdfs:subClassOf :Cell_Biology_Facility ;
desc:definition "A facility or core that provides resources for the growth of cells." ;
rdfs:label "Cell Culture Facility" .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#Cell_Model
:Cell_Model rdf:type owl:Class ;
rdfs:subClassOf :Physico-Chemical_Model ;
desc:definition "Resource that provides access to software, applications, or toolkits that model the processes of a cell. " ;
rdfs:label "Cell Model" .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#Cell_Processing_Clean_Room_Facility
:Cell_Processing_Clean_Room_Facility rdf:type owl:Class ;
rdfs:subClassOf :Cell_Biology_Facility ;
desc:definition "A resource that provides access to an enclosed environment that has a low and controlled level of environmental pollutants such as dust, airborne microbes, aerosol particles and chemical vapors. " ;
rdfs:label "Cell Processing Clean Room Facility" .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#Centrality_Analsysis
:Centrality_Analsysis rdf:type owl:Class ;
rdfs:subClassOf :Deprecated_Resource .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#Centrality_Analysis
:Centrality_Analysis rdf:type owl:Class ;
rdfs:subClassOf :Graph_Algorithm .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#Certificate_Program
:Certificate_Program rdf:type owl:Class ;
rdfs:subClassOf :Training_Resource ;
desc:definition "A resource that provides a document that certifies completion of the program. " ;
rdfs:label "Certificate Program" .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#Chamber
:Chamber rdf:type owl:Class ;
rdfs:subClassOf :Instrument ;
desc:definition "An instrument that forms an enclosed space." ;
rdfs:label "Chamber" ;
skos:editorialNote "pending final vetting: work with eagle-i to define terms since out of scope of BRO" .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#Clinical_Care_Data
:Clinical_Care_Data rdf:type owl:Class ;
rdfs:subClassOf :Data_Resource .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#Clinical_Chart
:Clinical_Chart rdf:type owl:Class ;
rdfs:subClassOf :Deprecated_Resource .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#Clinical_Charts
:Clinical_Charts rdf:type owl:Class ;
rdfs:subClassOf :Deprecated_Resource .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#Clinical_Data
:Clinical_Data rdf:type owl:Class ;
rdfs:subClassOf :Deprecated_Resource .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#Clinical_Research_Data
:Clinical_Research_Data rdf:type owl:Class ;
rdfs:subClassOf :Data_Resource .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#Clinical_Trial_Data
:Clinical_Trial_Data rdf:type owl:Class ;
rdfs:subClassOf :Deprecated_Resource .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#Code_Profiler
:Code_Profiler rdf:type owl:Class ;
rdfs:subClassOf :Software_Development_Tool ;
desc:definition "A resource that provides a performance analysis tool that measures the behavior of a program as it executes, particularly the frequency and duration of function calls. The profiling process helps to determine which subroutines (or just snippets of code) take longest to execute and which subroutines are called most often. Code profilers are used when you suspect that some part of your code is called very often and maybe there is a need to optimize it, which could significantly improve the overall performance. Profilers use a wide variety of techniques to collect data, including hardware interrupts, code instrumentation, instruction set simulation, operating system hooks, and performance counters." ;
rdfs:label "Code Profiler" .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#Code_Testing_Framework
:Code_Testing_Framework rdf:type owl:Class ;
rdfs:subClassOf :Software_Development_Tool ;
desc:definition "A resource that provides a software environment created to investigate the quality of the product or service under test, with respect to the context in which it is intended to operate. This includes, but is not limited to, the process of executing a program or application with the intent of finding software bugs." ;
rdfs:label "Code Testing Framework" .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#Communication_Interface
:Communication_Interface rdf:type owl:Class ;
rdfs:subClassOf :Data_Transfer_and_Communication ;
desc:definition "Resource that provides access to software, applications, or toolkits that enable electronic communication." ;
rdfs:label "Communication Interface" .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#Communication_and_Collaborative_Work
:Communication_and_Collaborative_Work rdf:type owl:Class ;
rdfs:subClassOf :Interactive_Tool ;
desc:definition "Resource that provides access to software, application, or toolkit that has mechanisms for sharing information between members of a group working on a shared project." ;
rdfs:label "Communication and Collaborative Work" .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#Community_Structure_Analysis
:Community_Structure_Analysis rdf:type owl:Class ;
rdfs:subClassOf :Graph_Algorithm ;
desc:definition "Resource that provides access to a graph algorithm that identifies densely interlinked nodes in the graph." ;
rdfs:label "Community Structure Analysis" .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#Compiler
:Compiler rdf:type owl:Class ;
rdfs:subClassOf :Software_Development_Tool ;
desc:definition "A resource that provides a computer program (or set of programs) that transforms source code written in a computer language (the source language) into another computer language (the target language, often having a binary form known as object code). The most common reason for wanting to transform source code is to create an executable program. A \\\\u201ccompiler\\\\u201d is primarily used for programs that translate source code from a high-level programming language to a lower level language (e.g., assembly language or machine language), and is likely to perform many or all of the following operations: lexical analysis, pre-processing, parsing, semantic analysis, code generation, and code optimization." ;
rdfs:label "Compiler" .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#Computational_Geometry
:Computational_Geometry rdf:type owl:Class ;
rdfs:subClassOf :Image_Algorithm ,
:Numerical_Method ;
desc:definition "Resource that provides access to tools for computational geometric representation and analysis." ;
rdfs:label "Computational Geometry" .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#Computational_Hosting
:Computational_Hosting rdf:type owl:Class ;
rdfs:subClassOf :Hosting ;
desc:definition "" ;
rdfs:label "Computational Hosting" ;
skos:editorialNote "pending final vetting: propose definition" .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#Computational_Model
:Computational_Model rdf:type owl:Class ;
rdfs:subClassOf :Structured_Knowledge_Resource ;
desc:definition "A resource that provides a simplified or symbolic representation of a system or phenomenon." ;
rdfs:label "Computational Model" .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#Computational_Service
:Computational_Service rdf:type owl:Class ;
rdfs:subClassOf :Service_Resource .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#Computer-Instrumentation_Interface
:Computer-Instrumentation_Interface rdf:type owl:Class ;
rdfs:subClassOf :Instrument ;
desc:definition "A part of an instrument that provides for human user input to operate the instrument." ;
rdfs:label "Computer-Instrumentation Interface" ;
skos:editorialNote "pending final vetting: work with eagle-i to define terms since out of scope of BRO" .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#Conference_Proceeding
:Conference_Proceeding rdf:type owl:Class ;
rdfs:subClassOf :Narrative_Resource ;
desc:definition "A resource the provides access to papers and/or talk and poster abstracts that are presented at a conference." ;
rdfs:label "Conference Proceeding" .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#Conflict_of_Interest_Resource
:Conflict_of_Interest_Resource rdf:type owl:Class ;
rdfs:subClassOf :Regulatory_Compliance_Resource ;
desc:definition "A resource that develops policies and procedures related to associations between academia and industry to ensure that the advantages of these connections are not being achieved at the expense of the fundamental values of objectivity in research." ;
rdfs:label "Conflict of Interest Resource" .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#Connectivity_Matrix
:Connectivity_Matrix rdf:type owl:Class ;
rdfs:subClassOf :Deprecated_Resource .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#Contact_Modeling
:Contact_Modeling rdf:type owl:Class ;
rdfs:subClassOf :Mechanical_Simulation ;
desc:definition "Resource that provides access to software, applications, or toolkits that simulate the effect of contact between objects. For example an articular contact model to study articular surface stresses." ;
rdfs:label "Contact Modeling" .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#Continuing_Medical_Education
:Continuing_Medical_Education rdf:type owl:Class ;
rdfs:subClassOf :Training_Resource ;
desc:definition "A resource that provides post-grad education for physicians. " ;
rdfs:label "Continuing Medical Education" .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#Continuous_Data
:Continuous_Data rdf:type owl:Class ;
rdfs:subClassOf :Deprecated_Resource .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#Continuum_Method_Simulation
:Continuum_Method_Simulation rdf:type owl:Class ;
rdfs:subClassOf :Mechanical_Simulation ;
desc:definition "Resource that provides access to software, applications, or toolkits that uses all data points in a simulation." ;
rdfs:label "Continuum Method Simulation" .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#Controllers
:Controllers rdf:type owl:Class ;
rdfs:subClassOf :Mechanical_Simulation ;
desc:definition "Resource that provides access to software, applications, or toolkits that use controllers in the performance of a simulation." ;
rdfs:label "Controllers" .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#Convolution
:Convolution rdf:type owl:Class ;
rdfs:subClassOf :Image_Algorithm ,
:Numerical_Method ;
desc:definition "Resource the provides access to tools or functions that implements the canonical convolution or operation that describes the action of a linear system on a signal." ;
rdfs:label "Convolution" .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#Cortical_Modeling
:Cortical_Modeling rdf:type owl:Class ;
rdfs:subClassOf :Image_Processing ;
desc:definition "Resource that provides access to software, applications, or toolkits that perform detection, extraction, representation and analysis of cortical brain structure." ;
rdfs:label "Cortical Modeling" .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#Course_Material
:Course_Material rdf:type owl:Class ;
rdfs:subClassOf :Education ;
desc:definition "Resource that provides access to educational material that can be used to disseminate information about a course of study. " ;
rdfs:label "Course Material" .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#Cross-Language_Wrapping
:Cross-Language_Wrapping rdf:type owl:Class ;
rdfs:subClassOf :Software_Development_Tool ;
desc:definition "Resource that provides access to software, application, or toolkit that enables an interactive software development tool that creates language bindings." ;
rdfs:label "Cross-Language Wrapping" .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#Cross-Platform_Tool
:Cross-Platform_Tool rdf:type owl:Class ;
rdfs:subClassOf :Software_Development_Tool ;
desc:definition "Resource that provides access to software, application, or toolkit that enables an interactive software development tool that runs on different computer operating systems." ;
rdfs:label "Cross-Platform Tool" .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#Cross-Sectional_Viewer
:Cross-Sectional_Viewer rdf:type owl:Class ;
rdfs:subClassOf :Imaging ;
desc:definition "Resource that provides access to data visualization tools relying on displays of lower-dimensional cross-sectional (hyper)planes." ;
rdfs:label "Cross-Sectional Viewer" .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#Data_Acquisition_Software
:Data_Acquisition_Software rdf:type owl:Class ;
rdfs:subClassOf :Software ;
desc:definition "Resource that provides access to software or application that support collection of real-world conditions and converts these to a numerical representation that can be processed by a computer, http://en.wikipedia.org/wiki/Data_acquisition." ;
rdfs:label "Data Acquisition Software" ;
skos:editorialNote "pending final vetting: review term in comparison to siblings data analysis software and data processing software" .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#Data_Analysis_Software
:Data_Analysis_Software rdf:type owl:Class ;
rdfs:subClassOf :Software ;
desc:definition "A resource that provides access to software or application that is used to analyze, model, and transform data with the goal of testing a research hypothesis, highlighting useful information, suggesting conclusions, or supporting decision making." ;
rdfs:label "Data Analysis Software" .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#Data_Annotation
:Data_Annotation rdf:type owl:Class ;
rdfs:subClassOf :Ontology_Development_and_Management ;
desc:definition "Resource that provides access an interactive software tool that enables tagging data with ontology terms." ;
rdfs:label "Data Annotation" .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#Data_Compression
:Data_Compression rdf:type owl:Class ;
rdfs:subClassOf :Data_Processing_Software ;
desc:definition "Resource that provides access to software, applications, or toolkits that reduce the bits (information units) needed to encode the data." ;
rdfs:label "Data Compression" .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#Data_Computation_Service
:Data_Computation_Service rdf:type owl:Class ;
rdfs:subClassOf :Computational_Service ;
desc:definition "A resource that provides calculating or processing over a data input, such as interpreting EEG data. Note, this may include human and/or computer expertise, so that a software tool may be included as a data computation service." ;
rdfs:label "Data Computation Service" .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#Data_Distribution
:Data_Distribution rdf:type owl:Class ;
rdfs:subClassOf :Deprecated_Resource .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#Data_Editor
:Data_Editor rdf:type owl:Class ;
rdfs:subClassOf :Interactive_Tool .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#Data_Exploration
:Data_Exploration rdf:type owl:Class ;
rdfs:subClassOf :Visualization ;
desc:definition "Resource that provides access to a visualization tool that is able to display data as an image or graphical representation." ;
rdfs:label "Data Exploration" .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#Data_Mining_and_Inference
:Data_Mining_and_Inference rdf:type owl:Class ;
rdfs:subClassOf :Data_Analysis_Software ,
:Statistical_Analysis ;
desc:definition "A resource that provides access to software, application, or toolkits that merge data with analysis tools with the goal of testing a research hypothesis, highlighting useful information, suggesting conclusions, or supporting decision making." ;
rdfs:label "Data Mining and Inference" ;
skos:editorialNote "pending final vetting: review location in hierarchy and child terms" .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#Data_Normalization
:Data_Normalization rdf:type owl:Class ;
rdfs:subClassOf :Signal_Processing ;
desc:definition "Resource that provides access to software, applications, or toolkits that reduces systematic sources of variation from data. " ;
rdfs:label "Data Normalization" .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#Data_Object
:Data_Object rdf:type owl:Class ;
rdfs:subClassOf :Deprecated_Resource .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#Data_Processing_Software
:Data_Processing_Software rdf:type owl:Class ;
rdfs:subClassOf :Software ;
desc:definition "A resource that provides access to software or application that is used to convert or manipulate data into information or knowledge. " ;
rdfs:label "Data Processing Software" .
### http://bioontology.org/ontologies/BiomedicalResourceOntology.owl#Data_Repository
:Data_Repository rdf:type owl:Class ;
rdfs:subClassOf :Deprecated_Resource .