-
Notifications
You must be signed in to change notification settings - Fork 0
/
ontology.ttl
4934 lines (4138 loc) · 582 KB
/
ontology.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 : <https://purls.helmholtz-metadaten.de/hob/hdo.owl#> .
@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 rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@base <https://purls.helmholtz-metadaten.de/hob/hdo.owl#> .
<https://purls.helmholtz-metadaten.de/hob/hdo.owl> rdf:type owl:Ontology ;
owl:imports <https://purls.helmholtz-metadaten.de/hob/hdo/imports/bfo_import.owl> ,
<https://purls.helmholtz-metadaten.de/hob/hdo/imports/iao_import.owl> ,
<https://purls.helmholtz-metadaten.de/hob/hdo/imports/ro_import.owl> ;
<http://purl.obolibrary.org/obo/IAO_0000116> "Main contributors to the HDO development are credited as dce:contributor in the ontology metadata. In addition, micro-contributions (to the definition of a specific term) by people that are not main contributors are credited as dce:contributor at the term-level."@en ;
<http://purl.org/dc/elements/1.1/contributor> <https://orcid.org/0000-0001-6243-1728> ,
<https://orcid.org/0000-0001-9040-636X> ,
<https://orcid.org/0000-0002-4263-4234> ,
<https://orcid.org/0000-0003-0000-4784> ,
<https://orcid.org/0009-0006-1229-4503> ;
<http://purl.org/dc/elements/1.1/creator> <https://orcid.org/0000-0001-6243-1728> ,
<https://orcid.org/0000-0001-7764-1517> ,
<https://orcid.org/0000-0002-2818-5890> ,
<https://orcid.org/0000-0002-4366-3088> ,
<https://orcid.org/0000-0002-5149-603X> ;
<http://purl.org/dc/terms/description> "The Helmholtz Digitisation Ontology (HDO) provides precise and comprehensive semantics of the concepts and practices used to manage digital assets such as research data. It is developed in alignment with the practices and conventions of the OBO Foundry and released as a machine readable artifact with high semantic expressiveness. HDO is semantically top-level aligned with the basic formal ontology (BFO: https://basic-formal-ontology.org/). HDO is developed by the Helmholtz Metadata Collaboration (HMC: (https://helmholtz-metadaten.de/en)."@en ;
<http://purl.org/dc/terms/license> <https://creativecommons.org/licenses/by/4.0/> ;
<http://purl.org/dc/terms/title> "Helmholtz Digitisation Ontology" .
#################################################################
# Annotation properties
#################################################################
### http://purl.obolibrary.org/obo/IAO_0000114
<http://purl.obolibrary.org/obo/IAO_0000114> rdf:type owl:AnnotationProperty .
### http://purl.obolibrary.org/obo/IAO_0000115
<http://purl.obolibrary.org/obo/IAO_0000115> rdf:type owl:AnnotationProperty .
### http://purl.obolibrary.org/obo/IAO_0000116
<http://purl.obolibrary.org/obo/IAO_0000116> rdf:type owl:AnnotationProperty .
### http://purl.obolibrary.org/obo/IAO_0000118
<http://purl.obolibrary.org/obo/IAO_0000118> rdf:type owl:AnnotationProperty .
### http://purl.obolibrary.org/obo/IAO_0000231
<http://purl.obolibrary.org/obo/IAO_0000231> rdf:type owl:AnnotationProperty .
### http://purl.obolibrary.org/obo/IAO_0000424
<http://purl.obolibrary.org/obo/IAO_0000424> rdf:type owl:AnnotationProperty .
### http://purl.obolibrary.org/obo/IAO_0000600
<http://purl.obolibrary.org/obo/IAO_0000600> rdf:type owl:AnnotationProperty .
### http://purl.obolibrary.org/obo/IAO_0100001
<http://purl.obolibrary.org/obo/IAO_0100001> rdf:type owl:AnnotationProperty .
### http://purl.obolibrary.org/obo/OMO_0003000
<http://purl.obolibrary.org/obo/OMO_0003000> rdf:type owl:AnnotationProperty ;
<http://purl.obolibrary.org/obo/IAO_0000112> "CHEBI:26523 (reactive oxygen species) has an exact synonym (ROS), which is of type OMO:0003000 (abbreviation)" ;
<http://purl.obolibrary.org/obo/IAO_0000115> "A synonym type for describing abbreviations or initalisms" ;
<http://purl.obolibrary.org/obo/IAO_0000233> <https://github.com/information-artifact-ontology/ontology-metadata/issues/122> ;
<http://purl.org/dc/terms/contributor> <https://orcid.org/0000-0003-4423-4370> ;
<http://purl.org/dc/terms/created> "2023-03-03"^^xsd:date ;
rdfs:label "abbreviation"@en ,
"abbreviation" ;
rdfs:subPropertyOf <http://www.geneontology.org/formats/oboInOwl#SynonymTypeProperty> .
### http://purl.obolibrary.org/obo/OMO_0003012
<http://purl.obolibrary.org/obo/OMO_0003012> rdf:type owl:AnnotationProperty ;
<http://purl.obolibrary.org/obo/IAO_0000112> "NASA is an word acronym for the US National Aeronautics and Space Administration because the acronym is pronounced. FBI is an initialism (also known as alphabetism) for the US Federal Bureau of Investigation since the letters are pronounced one at a time. JPEG is an acronym for Joint Photographic Experts Group but does not count as a word acronym nor an initialism since it is mixed how it is pronounced." ;
<http://purl.obolibrary.org/obo/IAO_0000115> "A synonym type for describing abbreviations that are a part of the full name's words, such as initialisms or alphabetisms." ;
<http://purl.obolibrary.org/obo/IAO_0000233> <https://github.com/information-artifact-ontology/ontology-metadata/issues/135> ;
<http://purl.org/dc/terms/contributor> <https://orcid.org/0000-0003-4423-4370> ;
<http://purl.org/dc/terms/created> "2023-11-01"^^xsd:date ;
rdfs:label "acronym"@en ,
"acronym" ;
rdfs:subPropertyOf <http://www.geneontology.org/formats/oboInOwl#SynonymTypeProperty> .
### http://purl.obolibrary.org/obo/RO_0001900
<http://purl.obolibrary.org/obo/RO_0001900> rdf:type owl:AnnotationProperty .
### http://purl.obolibrary.org/obo/RO_0040042
<http://purl.obolibrary.org/obo/RO_0040042> rdf:type owl:AnnotationProperty .
### http://purl.org/dc/elements/1.1/contributor
<http://purl.org/dc/elements/1.1/contributor> rdf:type owl:AnnotationProperty .
### http://purl.org/dc/elements/1.1/creator
<http://purl.org/dc/elements/1.1/creator> rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/contributor
<http://purl.org/dc/terms/contributor> rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/created
<http://purl.org/dc/terms/created> rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/description
<http://purl.org/dc/terms/description> rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/license
<http://purl.org/dc/terms/license> rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/title
<http://purl.org/dc/terms/title> rdf:type owl:AnnotationProperty .
### http://www.geneontology.org/formats/oboInOwl#SynonymTypeProperty
<http://www.geneontology.org/formats/oboInOwl#SynonymTypeProperty> rdf:type owl:AnnotationProperty .
### http://www.geneontology.org/formats/oboInOwl#consider
<http://www.geneontology.org/formats/oboInOwl#consider> rdf:type owl:AnnotationProperty .
### http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym
<http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym> rdf:type owl:AnnotationProperty .
### http://www.geneontology.org/formats/oboInOwl#hasDbXref
<http://www.geneontology.org/formats/oboInOwl#hasDbXref> rdf:type owl:AnnotationProperty .
### http://www.geneontology.org/formats/oboInOwl#hasExactSynonym
<http://www.geneontology.org/formats/oboInOwl#hasExactSynonym> rdf:type owl:AnnotationProperty .
### http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym
<http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym> rdf:type owl:AnnotationProperty .
### http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym
<http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym> rdf:type owl:AnnotationProperty .
### http://www.geneontology.org/formats/oboInOwl#inSubset
<http://www.geneontology.org/formats/oboInOwl#inSubset> rdf:type owl:AnnotationProperty .
### http://www.geneontology.org/formats/oboInOwl#source
<http://www.geneontology.org/formats/oboInOwl#source> rdf:type owl:AnnotationProperty .
### http://www.w3.org/2002/07/owl#sameAs
owl:sameAs rdf:type owl:AnnotationProperty .
### http://www.w3.org/2003/06/sw-vocab-status/ns#term_status
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> rdf:type owl:AnnotationProperty .
### http://www.w3.org/2004/02/skos/core#altLabel
<http://www.w3.org/2004/02/skos/core#altLabel> rdf:type owl:AnnotationProperty .
### http://www.w3.org/2004/02/skos/core#note
<http://www.w3.org/2004/02/skos/core#note> rdf:type owl:AnnotationProperty .
### https://purls.helmholtz-metadaten.de/hob/HDO_00001024
<https://purls.helmholtz-metadaten.de/hob/HDO_00001024> rdf:type owl:AnnotationProperty ;
rdfs:label "plural" .
### https://purls.helmholtz-metadaten.de/hob/HDO_00001026
<https://purls.helmholtz-metadaten.de/hob/HDO_00001026> rdf:type owl:AnnotationProperty ;
rdfs:label "singular" .
#################################################################
# Datatypes
#################################################################
### http://www.w3.org/2001/XMLSchema#date
xsd:date rdf:type rdfs:Datatype .
#################################################################
# Object Properties
#################################################################
### http://purl.obolibrary.org/obo/BFO_0000050
<http://purl.obolibrary.org/obo/BFO_0000050> rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf <http://purl.obolibrary.org/obo/RO_0002131> ;
owl:inverseOf <http://purl.obolibrary.org/obo/BFO_0000051> ;
rdf:type owl:TransitiveProperty ;
<http://purl.obolibrary.org/obo/IAO_0000111> "is part of"@en ;
<http://purl.obolibrary.org/obo/IAO_0000112> "my brain is part of my body (continuant parthood, two material entities)"@en ,
"my stomach cavity is part of my stomach (continuant parthood, immaterial entity is part of material entity)"@en ,
"this day is part of this year (occurrent parthood)"@en ;
<http://purl.obolibrary.org/obo/IAO_0000115> "a core relation that holds between a part and its whole"@en ;
<http://purl.obolibrary.org/obo/IAO_0000116> "Everything is part of itself. Any part of any part of a thing is itself part of that thing. Two distinct things cannot be part of each other."@en ,
"Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/"@en ,
"""Parthood requires the part and the whole to have compatible classes: only an occurrent can be part of an occurrent; only a process can be part of a process; only a continuant can be part of a continuant; only an independent continuant can be part of an independent continuant; only an immaterial entity can be part of an immaterial entity; only a specifically dependent continuant can be part of a specifically dependent continuant; only a generically dependent continuant can be part of a generically dependent continuant. (This list is not exhaustive.)
A continuant cannot be part of an occurrent: use 'participates in'. An occurrent cannot be part of a continuant: use 'has participant'. A material entity cannot be part of an immaterial entity: use 'has location'. A specifically dependent continuant cannot be part of an independent continuant: use 'inheres in'. An independent continuant cannot be part of a specifically dependent continuant: use 'bearer of'."""@en ;
<http://purl.obolibrary.org/obo/IAO_0000118> "part_of"@en ;
<http://purl.obolibrary.org/obo/RO_0001900> <http://purl.obolibrary.org/obo/RO_0001901> ;
<http://purl.obolibrary.org/obo/RO_0040042> <http://purl.obolibrary.org/obo/BFO_0000002> ,
<http://purl.obolibrary.org/obo/BFO_0000003> ,
<http://purl.obolibrary.org/obo/BFO_0000004> ,
<http://purl.obolibrary.org/obo/BFO_0000019> ,
<http://purl.obolibrary.org/obo/BFO_0000020> ,
<http://purl.obolibrary.org/obo/BFO_0000031> ;
<http://www.geneontology.org/formats/oboInOwl#inSubset> <http://purl.obolibrary.org/obo/valid_for_go_annotation_extension> ,
<http://purl.obolibrary.org/obo/valid_for_go_gp2term> ,
<http://purl.obolibrary.org/obo/valid_for_go_ontology> ,
<http://purl.obolibrary.org/obo/valid_for_gocam> ;
rdfs:label "part of"@en ;
rdfs:seeAlso <http://ontologydesignpatterns.org/wiki/Community:Parts_and_Collections> ,
<http://ontologydesignpatterns.org/wiki/Submissions:PartOf> ,
"https://wiki.geneontology.org/Part_of"^^xsd:anyURI ,
"http://www.obofoundry.org/ro/#OBO_REL:part_of" .
### http://purl.obolibrary.org/obo/BFO_0000051
<http://purl.obolibrary.org/obo/BFO_0000051> rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf <http://purl.obolibrary.org/obo/RO_0002131> ;
rdf:type owl:TransitiveProperty ;
<http://purl.obolibrary.org/obo/IAO_0000111> "has part"@en ;
<http://purl.obolibrary.org/obo/IAO_0000112> "my body has part my brain (continuant parthood, two material entities)"@en ,
"my stomach has part my stomach cavity (continuant parthood, material entity has part immaterial entity)"@en ,
"this year has part this day (occurrent parthood)"@en ;
<http://purl.obolibrary.org/obo/IAO_0000115> "a core relation that holds between a whole and its part"@en ;
<http://purl.obolibrary.org/obo/IAO_0000116> "Everything has itself as a part. Any part of any part of a thing is itself part of that thing. Two distinct things cannot have each other as a part."@en ,
"Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/"@en ,
"""Parthood requires the part and the whole to have compatible classes: only an occurrent have an occurrent as part; only a process can have a process as part; only a continuant can have a continuant as part; only an independent continuant can have an independent continuant as part; only a specifically dependent continuant can have a specifically dependent continuant as part; only a generically dependent continuant can have a generically dependent continuant as part. (This list is not exhaustive.)
A continuant cannot have an occurrent as part: use 'participates in'. An occurrent cannot have a continuant as part: use 'has participant'. An immaterial entity cannot have a material entity as part: use 'location of'. An independent continuant cannot have a specifically dependent continuant as part: use 'bearer of'. A specifically dependent continuant cannot have an independent continuant as part: use 'inheres in'."""@en ;
<http://purl.obolibrary.org/obo/IAO_0000118> "has_part"@en ;
<http://purl.obolibrary.org/obo/RO_0001900> <http://purl.obolibrary.org/obo/RO_0001901> ;
<http://www.geneontology.org/formats/oboInOwl#inSubset> <http://purl.obolibrary.org/obo/valid_for_go_annotation_extension> ,
<http://purl.obolibrary.org/obo/valid_for_go_ontology> ,
<http://purl.obolibrary.org/obo/valid_for_gocam> ;
rdfs:label "has part"@en .
### http://purl.obolibrary.org/obo/BFO_0000054
<http://purl.obolibrary.org/obo/BFO_0000054> rdf:type owl:ObjectProperty ;
owl:inverseOf <http://purl.obolibrary.org/obo/BFO_0000055> ;
rdfs:range <http://purl.obolibrary.org/obo/BFO_0000015> ;
<http://purl.obolibrary.org/obo/IAO_0000111> "realized in"@en ;
<http://purl.obolibrary.org/obo/IAO_0000112> "this disease is realized in this disease course"@en ,
"this fragility is realized in this shattering"@en ,
"this investigator role is realized in this investigation"@en ;
<http://purl.obolibrary.org/obo/IAO_0000118> "is realized by"@en ,
"realized_in"@en ;
<http://purl.obolibrary.org/obo/IAO_0000600> "[copied from inverse property 'realizes'] to say that b realizes c at t is to assert that there is some material entity d & b is a process which has participant d at t & c is a disposition or role of which d is bearer_of at t& the type instantiated by b is correlated with the type instantiated by c. (axiom label in BFO2 Reference: [059-003])"@en ;
rdfs:comment "Paraphrase of elucidation: a relation between a realizable entity and a process, where there is some material entity that is bearer of the realizable entity and participates in the process, and the realizable entity comes to be realized in the course of the process" ;
rdfs:isDefinedBy <http://purl.obolibrary.org/obo/bfo.owl> ;
rdfs:label "realized in"@en .
### http://purl.obolibrary.org/obo/BFO_0000055
<http://purl.obolibrary.org/obo/BFO_0000055> rdf:type owl:ObjectProperty ;
rdfs:domain <http://purl.obolibrary.org/obo/BFO_0000015> ;
<http://purl.obolibrary.org/obo/IAO_0000111> "realizes"@en ;
<http://purl.obolibrary.org/obo/IAO_0000112> "this disease course realizes this disease"@en ,
"this investigation realizes this investigator role"@en ,
"this shattering realizes this fragility"@en ;
<http://purl.obolibrary.org/obo/IAO_0000600> "to say that b realizes c at t is to assert that there is some material entity d & b is a process which has participant d at t & c is a disposition or role of which d is bearer_of at t& the type instantiated by b is correlated with the type instantiated by c. (axiom label in BFO2 Reference: [059-003])"@en ;
rdfs:comment "Paraphrase of elucidation: a relation between a process and a realizable entity, where there is some material entity that is bearer of the realizable entity and participates in the process, and the realizable entity comes to be realized in the course of the process" ;
rdfs:isDefinedBy <http://purl.obolibrary.org/obo/iao.owl> ;
rdfs:label "realizes"@en .
### http://purl.obolibrary.org/obo/IAO_0000136
<http://purl.obolibrary.org/obo/IAO_0000136> rdf:type owl:ObjectProperty ;
rdfs:range <https://purls.helmholtz-metadaten.de/hob/HDO_00000009> .
### http://purl.obolibrary.org/obo/RO_0000053
<http://purl.obolibrary.org/obo/RO_0000053> rdfs:domain <http://purl.obolibrary.org/obo/BFO_0000031> .
### http://purl.obolibrary.org/obo/RO_0000086
<http://purl.obolibrary.org/obo/RO_0000086> rdfs:domain <http://purl.obolibrary.org/obo/BFO_0000001> .
### http://purl.obolibrary.org/obo/RO_0000087
<http://purl.obolibrary.org/obo/RO_0000087> owl:equivalentProperty <https://purls.helmholtz-metadaten.de/hob/HDO_00006036> .
### http://purl.obolibrary.org/obo/RO_0002131
<http://purl.obolibrary.org/obo/RO_0002131> rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf <http://purl.obolibrary.org/obo/RO_0002323> ;
rdf:type owl:SymmetricProperty ;
<http://purl.obolibrary.org/obo/IAO_0000114> <http://purl.obolibrary.org/obo/IAO_0000125> ;
<http://purl.obolibrary.org/obo/IAO_0000115> "x overlaps y if and only if there exists some z such that x has part z and z part of y" ;
<http://purl.obolibrary.org/obo/IAO_0000424> "http://purl.obolibrary.org/obo/BFO_0000051 some (http://purl.obolibrary.org/obo/BFO_0000050 some ?Y)" ;
<http://purl.obolibrary.org/obo/RO_0001900> <http://purl.obolibrary.org/obo/RO_0001901> ;
<http://www.geneontology.org/formats/oboInOwl#inSubset> <http://purl.obolibrary.org/obo/valid_for_go_annotation_extension> ,
<http://purl.obolibrary.org/obo/valid_for_gocam> ,
<http://purl.obolibrary.org/obo/ro/subsets#ro-eco> ;
rdfs:label "overlaps"@en .
### http://purl.obolibrary.org/obo/RO_0002233
<http://purl.obolibrary.org/obo/RO_0002233> rdfs:range <http://purl.obolibrary.org/obo/BFO_0000001> .
### http://purl.obolibrary.org/obo/RO_0002234
<http://purl.obolibrary.org/obo/RO_0002234> rdfs:domain <http://purl.obolibrary.org/obo/BFO_0000015> ;
rdfs:range [ rdf:type owl:Class ;
owl:unionOf ( <https://purls.helmholtz-metadaten.de/hob/HDO_00000009>
<https://purls.helmholtz-metadaten.de/hob/HDO_00000025>
)
] .
### http://purl.obolibrary.org/obo/RO_0002327
<http://purl.obolibrary.org/obo/RO_0002327> rdfs:domain <https://purls.helmholtz-metadaten.de/hob/HDO_00002012> ;
rdfs:range <http://purl.obolibrary.org/obo/BFO_0000019> .
### http://purl.org/dc/terms/identifier
<http://purl.org/dc/terms/identifier> rdf:type owl:ObjectProperty .
### https://purls.helmholtz-metadaten.de/hob/HDO_00000001
<https://purls.helmholtz-metadaten.de/hob/HDO_00000001> rdf:type owl:ObjectProperty ;
<http://purl.obolibrary.org/obo/IAO_0000114> <http://purl.obolibrary.org/obo/IAO_0000125> ;
<http://purl.obolibrary.org/obo/IAO_0000115> "A relation which holds between a representational entity and the entity or entities it represents, in whole or in part."@en ,
"Eine Beziehung, die zwischen zwei Entitäten besteht, wenn eine der Entitäten die andere ganz oder teilweise repräsentiert."@de ;
<http://www.geneontology.org/formats/oboInOwl#hasDbXref> <http://ceur-ws.org/Vol-1515/regular10.pdf> ,
<http://purl.obolibrary.org/obo/IAO_0000136> ,
<https://www.merriam-webster.com/dictionary/about> ;
<http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym> "concerned with"@en ,
"on the subject of"@en ;
rdfs:comment "Aboutness holds between a representational entity (data, information, knowledge, etc) and the material or immaterial entities which are described or otherwise represented by it. Subspecifications of aboutness will likely follow some of the more clear logic in IAO, with specialisations such as \"mentions\" and \"denotes\" wth more complex relations such as \"misrepresents\" also to be considered."@en ;
rdfs:label "about"@en ,
"über"@de .
### https://purls.helmholtz-metadaten.de/hob/HDO_00006033
<https://purls.helmholtz-metadaten.de/hob/HDO_00006033> rdf:type owl:ObjectProperty ;
rdfs:label "classifies"@en .
### https://purls.helmholtz-metadaten.de/hob/HDO_00006034
<https://purls.helmholtz-metadaten.de/hob/HDO_00006034> rdf:type owl:ObjectProperty ;
owl:inverseOf <https://purls.helmholtz-metadaten.de/hob/HDO_00006062> ;
rdfs:domain <https://purls.helmholtz-metadaten.de/hob/HDO_00001005> ;
rdfs:range <http://purl.obolibrary.org/obo/BFO_0000002> ;
rdfs:label "specifies"@en .
### https://purls.helmholtz-metadaten.de/hob/HDO_00006035
<https://purls.helmholtz-metadaten.de/hob/HDO_00006035> rdf:type owl:ObjectProperty ;
rdfs:domain <https://purls.helmholtz-metadaten.de/hob/HDO_00000004> ;
rdfs:range <https://purls.helmholtz-metadaten.de/hob/HDO_00000009> ;
rdfs:label "generates"@en .
### https://purls.helmholtz-metadaten.de/hob/HDO_00006036
<https://purls.helmholtz-metadaten.de/hob/HDO_00006036> rdf:type owl:ObjectProperty ;
rdfs:domain <http://purl.obolibrary.org/obo/BFO_0000002> ;
rdfs:range <http://purl.obolibrary.org/obo/BFO_0000023> ;
<http://purl.obolibrary.org/obo/IAO_0000116> "This relation is equivalent to ro:hasRole but it has a broader domain than RO's because it is used in HDO in a wider context." ;
rdfs:label "has role"@en .
### https://purls.helmholtz-metadaten.de/hob/HDO_00006037
<https://purls.helmholtz-metadaten.de/hob/HDO_00006037> rdf:type owl:ObjectProperty ;
rdfs:domain <http://purl.obolibrary.org/obo/BFO_0000001> ;
rdfs:range <https://purls.helmholtz-metadaten.de/hob/HDO_00000009> ;
rdfs:label "accesses"@en .
### https://purls.helmholtz-metadaten.de/hob/HDO_00006038
<https://purls.helmholtz-metadaten.de/hob/HDO_00006038> rdf:type owl:ObjectProperty ;
rdfs:label "bears"@en .
### https://purls.helmholtz-metadaten.de/hob/HDO_00006039
<https://purls.helmholtz-metadaten.de/hob/HDO_00006039> rdf:type owl:ObjectProperty ;
rdfs:domain <https://purls.helmholtz-metadaten.de/hob/HDO_00001023> ;
rdfs:range [ rdf:type owl:Class ;
owl:unionOf ( <https://purls.helmholtz-metadaten.de/hob/HDO_00001023>
<https://purls.helmholtz-metadaten.de/hob/HDO_00006007>
)
] ;
rdfs:label "communicates with"@en .
### https://purls.helmholtz-metadaten.de/hob/HDO_00006040
<https://purls.helmholtz-metadaten.de/hob/HDO_00006040> rdf:type owl:ObjectProperty ;
rdfs:domain <http://purl.obolibrary.org/obo/BFO_0000001> ;
rdfs:range <https://purls.helmholtz-metadaten.de/hob/HDO_00000009> ;
rdfs:label "acts upon"@en .
### https://purls.helmholtz-metadaten.de/hob/HDO_00006041
<https://purls.helmholtz-metadaten.de/hob/HDO_00006041> rdf:type owl:ObjectProperty ;
rdfs:domain <https://purls.helmholtz-metadaten.de/hob/HDO_00001018> ;
rdfs:range <https://purls.helmholtz-metadaten.de/hob/HDO_00001005> ;
rdfs:label "agrees on"@en .
### https://purls.helmholtz-metadaten.de/hob/HDO_00006042
<https://purls.helmholtz-metadaten.de/hob/HDO_00006042> rdf:type owl:ObjectProperty ;
rdfs:domain <https://purls.helmholtz-metadaten.de/hob/HDO_00006025> ;
rdfs:range <https://purls.helmholtz-metadaten.de/hob/HDO_00000009> ;
rdfs:label "assigns data type to"@en .
### https://purls.helmholtz-metadaten.de/hob/HDO_00006043
<https://purls.helmholtz-metadaten.de/hob/HDO_00006043> rdf:type owl:ObjectProperty ;
rdfs:domain <https://purls.helmholtz-metadaten.de/hob/HDO_00001001> ;
rdfs:range <https://purls.helmholtz-metadaten.de/hob/HDO_00002016> ;
rdfs:label "based on standard"@en .
### https://purls.helmholtz-metadaten.de/hob/HDO_00006044
<https://purls.helmholtz-metadaten.de/hob/HDO_00006044> rdf:type owl:ObjectProperty ;
rdfs:domain <http://purl.obolibrary.org/obo/BFO_0000015> ;
rdfs:range <https://purls.helmholtz-metadaten.de/hob/HDO_00001005> ;
rdfs:label "creates specification"@en .
### https://purls.helmholtz-metadaten.de/hob/HDO_00006045
<https://purls.helmholtz-metadaten.de/hob/HDO_00006045> rdf:type owl:ObjectProperty ;
rdfs:domain <https://purls.helmholtz-metadaten.de/hob/HDO_00001023> ;
rdfs:range <https://purls.helmholtz-metadaten.de/hob/HDO_00007001> ;
rdfs:label "directs"@en .
### https://purls.helmholtz-metadaten.de/hob/HDO_00006046
<https://purls.helmholtz-metadaten.de/hob/HDO_00006046> rdf:type owl:ObjectProperty ;
rdfs:domain <https://purls.helmholtz-metadaten.de/hob/HDO_00001009> ;
rdfs:range <https://purls.helmholtz-metadaten.de/hob/HDO_00001033> ;
rdfs:label "exchanges"@en .
### https://purls.helmholtz-metadaten.de/hob/HDO_00006047
<https://purls.helmholtz-metadaten.de/hob/HDO_00006047> rdf:type owl:ObjectProperty ;
rdfs:domain <http://purl.obolibrary.org/obo/BFO_0000015> ;
rdfs:range <https://purls.helmholtz-metadaten.de/hob/HDO_00001005> ;
rdfs:label "follows"@en .
### https://purls.helmholtz-metadaten.de/hob/HDO_00006048
<https://purls.helmholtz-metadaten.de/hob/HDO_00006048> rdf:type owl:ObjectProperty ;
rdfs:domain <https://purls.helmholtz-metadaten.de/hob/HDO_00002011> ;
rdfs:range <https://purls.helmholtz-metadaten.de/hob/HDO_00006007> ;
rdfs:label "grants permission to"@en .
### https://purls.helmholtz-metadaten.de/hob/HDO_00006049
<https://purls.helmholtz-metadaten.de/hob/HDO_00006049> rdf:type owl:ObjectProperty ;
rdfs:domain <https://purls.helmholtz-metadaten.de/hob/HDO_00002010> ;
rdfs:range <https://purls.helmholtz-metadaten.de/hob/HDO_00006007> ;
rdfs:label "guides"@en .
### https://purls.helmholtz-metadaten.de/hob/HDO_00006050
<https://purls.helmholtz-metadaten.de/hob/HDO_00006050> rdf:type owl:ObjectProperty ;
rdfs:range <https://purls.helmholtz-metadaten.de/hob/HDO_00000009> ;
rdfs:label "handles"@en .
### https://purls.helmholtz-metadaten.de/hob/HDO_00006051
<https://purls.helmholtz-metadaten.de/hob/HDO_00006051> rdf:type owl:ObjectProperty ;
rdfs:domain <https://purls.helmholtz-metadaten.de/hob/HDO_00000033> ;
rdfs:range <https://purls.helmholtz-metadaten.de/hob/HDO_00006014> ;
rdfs:label "has data format"@en .
### https://purls.helmholtz-metadaten.de/hob/HDO_00006052
<https://purls.helmholtz-metadaten.de/hob/HDO_00006052> rdf:type owl:ObjectProperty ;
rdfs:domain <https://purls.helmholtz-metadaten.de/hob/HDO_00000020> ;
rdfs:range <https://purls.helmholtz-metadaten.de/hob/HDO_00001031> ;
rdfs:label "has expressiveness"@en .
### https://purls.helmholtz-metadaten.de/hob/HDO_00006053
<https://purls.helmholtz-metadaten.de/hob/HDO_00006053> rdf:type owl:ObjectProperty ;
rdfs:label "indicates"@en .
### https://purls.helmholtz-metadaten.de/hob/HDO_00006054
<https://purls.helmholtz-metadaten.de/hob/HDO_00006054> rdf:type owl:ObjectProperty ;
rdfs:domain <https://purls.helmholtz-metadaten.de/hob/HDO_00001006> ;
rdfs:range <https://purls.helmholtz-metadaten.de/hob/HDO_00001023> ;
rdfs:label "interacts with"@en .
### https://purls.helmholtz-metadaten.de/hob/HDO_00006055
<https://purls.helmholtz-metadaten.de/hob/HDO_00006055> rdf:type owl:ObjectProperty ;
rdfs:domain <https://purls.helmholtz-metadaten.de/hob/HDO_00000037> ;
rdfs:range <https://purls.helmholtz-metadaten.de/hob/HDO_00000028> ;
rdfs:label "points to"@en .
### https://purls.helmholtz-metadaten.de/hob/HDO_00006056
<https://purls.helmholtz-metadaten.de/hob/HDO_00006056> rdf:type owl:ObjectProperty ;
rdfs:label "manages"@en .
### https://purls.helmholtz-metadaten.de/hob/HDO_00006057
<https://purls.helmholtz-metadaten.de/hob/HDO_00006057> rdf:type owl:ObjectProperty ;
rdfs:domain <https://purls.helmholtz-metadaten.de/hob/HDO_00007001> ;
rdfs:range <https://purls.helmholtz-metadaten.de/hob/HDO_00007004> ;
rdfs:label "processes"@en .
### https://purls.helmholtz-metadaten.de/hob/HDO_00006058
<https://purls.helmholtz-metadaten.de/hob/HDO_00006058> rdf:type owl:ObjectProperty ;
rdfs:range <http://purl.obolibrary.org/obo/BFO_0000001> ;
rdfs:label "represents"@en .
### https://purls.helmholtz-metadaten.de/hob/HDO_00006059
<https://purls.helmholtz-metadaten.de/hob/HDO_00006059> rdf:type owl:ObjectProperty ;
rdfs:domain <https://purls.helmholtz-metadaten.de/hob/HDO_00000009> ;
rdfs:range <https://purls.helmholtz-metadaten.de/hob/HDO_00001078> ;
rdfs:label "serialized as"@en .
### https://purls.helmholtz-metadaten.de/hob/HDO_00006060
<https://purls.helmholtz-metadaten.de/hob/HDO_00006060> rdf:type owl:ObjectProperty ;
owl:inverseOf <https://purls.helmholtz-metadaten.de/hob/HDO_00006061> ;
rdfs:domain <https://purls.helmholtz-metadaten.de/hob/HDO_00006030> ;
rdfs:range <https://purls.helmholtz-metadaten.de/hob/HDO_00000009> ;
rdfs:label "stores"@en .
### https://purls.helmholtz-metadaten.de/hob/HDO_00006061
<https://purls.helmholtz-metadaten.de/hob/HDO_00006061> rdf:type owl:ObjectProperty ;
rdfs:label "stored in"@en .
### https://purls.helmholtz-metadaten.de/hob/HDO_00006062
<https://purls.helmholtz-metadaten.de/hob/HDO_00006062> rdf:type owl:ObjectProperty ;
rdfs:label "serializes"@en .
### https://purls.helmholtz-metadaten.de/hob/HDO_00006063
<https://purls.helmholtz-metadaten.de/hob/HDO_00006063> rdf:type owl:ObjectProperty ;
rdfs:label "uses"@en .
### https://purls.helmholtz-metadaten.de/hob/HDO_00006064
<https://purls.helmholtz-metadaten.de/hob/HDO_00006064> rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf <https://purls.helmholtz-metadaten.de/hob/HDO_00006063> ;
rdfs:range <http://purl.obolibrary.org/obo/BFO_0000015> ;
rdfs:label "uses process"@en .
#################################################################
# Classes
#################################################################
### http://purl.obolibrary.org/obo/BFO_0000001
<http://purl.obolibrary.org/obo/BFO_0000001> rdf:type owl:Class .
### http://purl.obolibrary.org/obo/BFO_0000182
<http://purl.obolibrary.org/obo/BFO_0000182> rdf:type owl:Class .
### http://purl.obolibrary.org/obo/IAO_0000005
<http://purl.obolibrary.org/obo/IAO_0000005> rdf:type owl:Class .
### http://purl.obolibrary.org/obo/IAO_0000006
<http://purl.obolibrary.org/obo/IAO_0000006> rdf:type owl:Class .
### http://purl.obolibrary.org/obo/IAO_0000007
<http://purl.obolibrary.org/obo/IAO_0000007> rdf:type owl:Class .
### http://purl.obolibrary.org/obo/IAO_0000030
<http://purl.obolibrary.org/obo/IAO_0000030> owl:equivalentClass <https://purls.helmholtz-metadaten.de/hob/HDO_00000025> .
### http://purl.obolibrary.org/obo/IAO_0000033
<http://purl.obolibrary.org/obo/IAO_0000033> rdf:type owl:Class ;
owl:equivalentClass <https://purls.helmholtz-metadaten.de/hob/HDO_00001005> .
### http://purl.obolibrary.org/obo/IAO_0000104
<http://purl.obolibrary.org/obo/IAO_0000104> rdf:type owl:Class ;
owl:equivalentClass <https://purls.helmholtz-metadaten.de/hob/HDO_00002010> .
### https://purls.helmholtz-metadaten.de/hob/HDO_00000002
<https://purls.helmholtz-metadaten.de/hob/HDO_00000002> rdf:type owl:Class ;
rdfs:subClassOf <https://purls.helmholtz-metadaten.de/hob/HDO_00001049> ;
<http://purl.obolibrary.org/obo/IAO_0000114> <http://purl.obolibrary.org/obo/IAO_0000125> ;
<http://purl.obolibrary.org/obo/IAO_0000115> "A system which is capable of assigning entities to one or more classes based on their attributes. "@en ,
"Ein System, das es vermag, Entitäten anhand ihrer Eigenschaften einer oder mehreren Klassen zuzuordnen."@de ;
<http://purl.org/dc/elements/1.1/contributor> <https://orcid.org/0000-0003-2804-688X> ;
<http://www.geneontology.org/formats/oboInOwl#hasDbXref> <https://en.wikipedia.org/wiki/Category:Classification_systems> ;
rdfs:comment "The structure, technical construction and level of detail of the here mentioned system, as well as the nature of the process which assigns a given entity to one or more classes, might differ considerably depending on the content and the context of the system, the entities that are classified and the attributes the classification is based on. "@en ;
rdfs:label "Klassifizierungssystem"@de ,
"classification system"@en ;
<https://purls.helmholtz-metadaten.de/hob/HDO_00001024> "Klassifizierungssysteme"@de ,
"classification systems"@en ;
<https://purls.helmholtz-metadaten.de/hob/HDO_00001026> "Klassifizierungssystem"@de ,
"classification system"@en .
### https://purls.helmholtz-metadaten.de/hob/HDO_00000003
<https://purls.helmholtz-metadaten.de/hob/HDO_00000003> rdf:type owl:Class ;
rdfs:subClassOf <https://purls.helmholtz-metadaten.de/hob/HDO_00000029> ;
<http://purl.obolibrary.org/obo/IAO_0000114> <http://purl.obolibrary.org/obo/IAO_0000125> ;
<http://purl.obolibrary.org/obo/IAO_0000115> "Metadata which describe entities and circumstances involved in or influencing the generation, modification, or other processing of data, which are not part of the data itself."@en ,
"Metadaten, welche Entitäten und Umstände beschreiben, die an der Aufnahme, der Änderung oder der sonstigen Verarbeitung von Daten beteiligt sind oder diese beeinflussen, ohne selbst Teil der Daten zu sein."@de ;
<http://purl.org/dc/elements/1.1/contributor> <https://orcid.org/0000-0002-0065-0762> ,
<https://orcid.org/0000-0002-1008-4530> ,
<https://orcid.org/0000-0002-2209-9385> ,
<https://orcid.org/0000-0002-8941-954X> ,
<https://orcid.org/0000-0003-0575-2853> ,
<https://orcid.org/0000-0003-2804-688X> ;
<http://www.geneontology.org/formats/oboInOwl#hasDbXref> <https://en.wikipedia.org/wiki/Metadata> ,
<https://techterms.com/definition/metadata> ,
<https://www.ahdictionary.com/word/search.html?q=metadata> ;
<http://www.geneontology.org/formats/oboInOwl#hasExactSynonym> "extrinsic metadata"@en ,
"extrinsische Metadaten"@de ,
"kontextuelle Metadaten"@de ;
rdfs:label "Kontextmetadaten"@de ,
"contextual metadata"@en ;
<https://purls.helmholtz-metadaten.de/hob/HDO_00001024> "Kontextmetadaten"@de ,
"contextual metadata"@en ;
<https://purls.helmholtz-metadaten.de/hob/HDO_00001026> "Kontextmetadatum"@de ,
"contextual metadatum"@en .
### https://purls.helmholtz-metadaten.de/hob/HDO_00000004
<https://purls.helmholtz-metadaten.de/hob/HDO_00000004> rdf:type owl:Class ;
rdfs:subClassOf <http://purl.obolibrary.org/obo/BFO_0000001> ,
[ owl:intersectionOf ( <http://purl.obolibrary.org/obo/BFO_0000001>
[ rdf:type owl:Restriction ;
owl:onProperty <http://purl.obolibrary.org/obo/BFO_0000055> ;
owl:someValuesFrom <https://purls.helmholtz-metadaten.de/hob/HDO_00007015>
]
) ;
rdf:type owl:Class
] ;
<http://purl.obolibrary.org/obo/IAO_0000114> <http://purl.obolibrary.org/obo/IAO_0000125> ;
<http://purl.obolibrary.org/obo/IAO_0000115> "An entity which realizes a data source role."@en ,
"Eine Entität welche ene Rolle als Datenquelle einnimmt."@de ;
<http://www.geneontology.org/formats/oboInOwl#hasDbXref> <http://purl.obolibrary.org/obo/MI_1053> ;
rdfs:comment """A broad range of material & non-material entities could be data sources, this class should be populated by inference.
Examples of material entities that can behave as data sources are: scientific instruments, measuring devices, experimental setups, hard drives containing the results of simulation software and databases. The term data source is widely used in relation to databases but, because of the nature of HMC, a more general definition that can also be applied in the context of scientific research is provided."""@en ;
rdfs:label "Datenquelle"@de ,
"data source"@en .
### https://purls.helmholtz-metadaten.de/hob/HDO_00000005
<https://purls.helmholtz-metadaten.de/hob/HDO_00000005> rdf:type owl:Class ;
rdfs:subClassOf <https://purls.helmholtz-metadaten.de/hob/HDO_00001037> ,
[ rdf:type owl:Restriction ;
owl:onProperty <http://purl.obolibrary.org/obo/RO_0000086> ;
owl:someValuesFrom <https://purls.helmholtz-metadaten.de/hob/HDO_00000118>
] ;
<http://purl.obolibrary.org/obo/IAO_0000115> "A data set which has structuredness according to a data structure specification."@en ,
"Daten, die entsprechend einer Datenstrukturspezifikation strukturiert sind."@de ;
<http://www.geneontology.org/formats/oboInOwl#hasDbXref> <https://en.wikipedia.org/wiki/Data_structure> ,
<https://www.merriam-webster.com/dictionary/data%20structure> ;
rdfs:comment "In this ontology, the idea of structure (e.g. for a data set) is approached as \"structuredness\" being a quality of an entity. The \"structuredness\" can have different kinds and can conform to different \"data structure specifications\" which might be implicit or explicit. This is how different kinds of structured data can be semantically classified. For example a list has a \"structuredness\" quality which conforms to a \"list specification\" which is a subclass of \"data structure specification\"."@en ;
rdfs:label "structured data"@en ,
"strukturierte Daten"@de .
### https://purls.helmholtz-metadaten.de/hob/HDO_00000006
<https://purls.helmholtz-metadaten.de/hob/HDO_00000006> rdf:type owl:Class ;
rdfs:subClassOf <https://purls.helmholtz-metadaten.de/hob/HDO_00000002> ;
<http://purl.obolibrary.org/obo/IAO_0000114> <http://purl.obolibrary.org/obo/IAO_0000428> ;
<http://purl.obolibrary.org/obo/IAO_0000115> "A classification system used to assign data types to data."@en ,
"Ein Klassifizierungssystem, mit dem den Datentypen Daten zugeordnet werden können."@de ;
<http://purl.org/dc/elements/1.1/contributor> <https://orcid.org/0000-0003-2804-688X> ;
rdfs:label "data type classification system"@en .
### https://purls.helmholtz-metadaten.de/hob/HDO_00000007
<https://purls.helmholtz-metadaten.de/hob/HDO_00000007> rdf:type owl:Class ;
rdfs:subClassOf <https://purls.helmholtz-metadaten.de/hob/HDO_00001005> ;
<http://purl.obolibrary.org/obo/IAO_0000115> "A specification which defines (1) a set of valid values which data can conform to, and (2) a set of valid operations that can be carried out on that data."@en ,
"Eine Spezifikation, welche für Daten definiert, (1) welche gültigen Werte sie annehmen und (2) welche gültigen Operationen mit diesen durchgeführt werden können."@de ;
<http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym> "Typ"@de ,
"type"@en ;
<http://www.geneontology.org/formats/oboInOwl#hasDbXref> <https://techterms.com/definition/datatype> ,
<https://www.ahdictionary.com/word/search.html?q=data+type> ,
<https://www.computerhope.com/jargon/d/datatype.htm> ;
<http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym> "abstract data type"@en ,
"abstrakter Datentyp"@de ;
rdfs:comment "The data type of data (often as a machine-readable attribute associated with that data) constrains operations that can or should be done on that data and the way the values of that data may be stored. When assigned to variables or objects in computer programming, a data type dictates what kind of data those variables and objects can hold. Data types can be expressed in a formal language to define abstract data types which are independent of concrete implementation. Data types may be assigned incorrectly, thus conformance to the data type is more of an assertion than a guarantee. If the assertion is incorrect, the data type is no longer information, rather it is misinformation."@en ;
rdfs:label "Datentyp"@de ,
"data type"@en ;
<http://www.w3.org/2004/02/skos/core#note> "Der Datentyp erlaubt, Entscheidungen hinsichtlich der Darstellung oder der erlaubten Operationen zugehöriger Daten zu treffen."@de ,
"The data type allows to make decisions regarding the representation or valid operations of corresponding data."@en ;
<https://purls.helmholtz-metadaten.de/hob/HDO_00001024> "Datentypen"@de ,
"data types"@en .
### https://purls.helmholtz-metadaten.de/hob/HDO_00000008
<https://purls.helmholtz-metadaten.de/hob/HDO_00000008> rdf:type owl:Class ;
rdfs:subClassOf <https://purls.helmholtz-metadaten.de/hob/HDO_00001011> ;
<http://purl.obolibrary.org/obo/IAO_0000114> <http://purl.obolibrary.org/obo/IAO_0000125> ;
<http://purl.obolibrary.org/obo/IAO_0000115> "A planned process during which data are assigned to a category in a data type classification system."@en ,
"Ein geplanter Prozess, bei dem Daten einer Kategorie in einem Datentypklassifikationssystem zugeordnet werden."@de ;
<http://purl.org/dc/elements/1.1/contributor> <https://orcid.org/0000-0003-2804-688X> ;
<http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym> "data classification"@en ;
<http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym> "classification of data type"@en ,
"data type classification"@en ;
rdfs:label "Datentypisierung"@de ,
"data typing"@en .
### https://purls.helmholtz-metadaten.de/hob/HDO_00000009
<https://purls.helmholtz-metadaten.de/hob/HDO_00000009> rdf:type owl:Class ;
owl:equivalentClass [ owl:intersectionOf ( <http://purl.obolibrary.org/obo/BFO_0000031>
[ rdf:type owl:Restriction ;
owl:onProperty <http://purl.obolibrary.org/obo/RO_0002353> ;
owl:someValuesFrom [ owl:intersectionOf ( <https://purls.helmholtz-metadaten.de/hob/HDO_00001010>
[ rdf:type owl:Restriction ;
owl:onProperty <http://purl.obolibrary.org/obo/RO_0002233> ;
owl:someValuesFrom <https://purls.helmholtz-metadaten.de/hob/HDO_00007004>
]
) ;
rdf:type owl:Class
]
]
) ;
rdf:type owl:Class
] ;
rdfs:subClassOf <http://purl.obolibrary.org/obo/BFO_0000031> ;
<http://purl.obolibrary.org/obo/IAO_0000114> <http://purl.obolibrary.org/obo/IAO_0000125> ;
<http://purl.obolibrary.org/obo/IAO_0000115> "A generally dependent contiuant which is the encoding of a signifier."@en ,
"Ein generisches abhängiges Kontinuum, welches die Kodierung eines Zeichen ist."@de ;
<http://purl.org/dc/elements/1.1/contributor> <https://orcid.org/0000-0002-3949-818X> ;
<http://www.geneontology.org/formats/oboInOwl#hasDbXref> <http://purl.obolibrary.org/obo/IAO_0000030> ,
<https://en.wikipedia.org/wiki/Encoding_%28semiotics%29> ,
<https://www.oceandecade.org/assets/uploads/documents/Ocean-Decade-Implementation-Plan-Version-2-0-min_1596634145.pdf> ;
rdfs:comment """TODO Integrate this
A collection of signs, signals, symbols, or other signifiers (e.g. numbers, characters in a known alphabet, strings with an assigned meaning, known graphical symbols, viewable images) which (1) represent one or more entities or their properties and (2) have been recorded in a manner that allows their transmission.
An example: A collection of numbers which represent radio waves and have been recorded on a hard drive. The numbers are the signs mentioned above. The radio waves are also signals but not the ones mentioned above.
Colloquially, \"data\" is sometimes used to refer to anything that can be perceived. Here, however, we require that those sense-impressions are encoded such that they can be recorded, transmitted, and understood by at least one agent.
')."""@en ,
"The difference between a signifier and data is, that the latter has been encoded or somehow formalised for transmission. We use \"encoding\" in the semiotic sense of \"recording a message intended to be sent from an sender to an receiver\"."@en ,
"What is considered a single point or multiples of data (i.e. a data point, data element, data set, etc) can vary between cases. In some cases, an entire image may be considered a single data element (e.g. for qualitative coding), while in others a pixel in that image will be considered a single data element and the picture a data set. The definition used here intentionally allows flexibility at the instance level: the user can assert what the \"element\" of a given volume of data is."@en ,
"""Wir verwenden \"Kodierung\" in der semiotischen Bedeutung \"eine Nachricht aufzeichnen, mit Absicht diese von einem:r Sender:in zu einem:r Emfänger:in zu schicken\".
Zeichen, Symbole, Markierungen, Werte oder andere Muster in jedwedem Medium, die zur Darstellung von etwas verwendet werden."""@de ;
rdfs:label "Daten"@de ,
"data"@en ;
<http://www.w3.org/2004/02/skos/core#note> "A sign, symbol, or other signifier which (1) represents an entity or its properties and (2) has been recorded in a manner that allows the transmission of meaning, e.g. as a number, a character in a known alphabet, a string with an assigned meaning, a known graphical symbol, a viewable image."@en ;
<https://purls.helmholtz-metadaten.de/hob/HDO_00001024> "Daten"@de ,
"data"@en .
[ rdf:type owl:Axiom ;
owl:annotatedSource <https://purls.helmholtz-metadaten.de/hob/HDO_00000009> ;
owl:annotatedProperty <http://purl.org/dc/elements/1.1/contributor> ;
owl:annotatedTarget <https://orcid.org/0000-0002-3949-818X> ;
rdfs:comment "Jos Lehmann"
] .
### https://purls.helmholtz-metadaten.de/hob/HDO_00000010
<https://purls.helmholtz-metadaten.de/hob/HDO_00000010> rdf:type owl:Class ;
rdfs:subClassOf <http://purl.obolibrary.org/obo/BFO_0000016> ;
<http://purl.obolibrary.org/obo/IAO_0000114> <http://purl.obolibrary.org/obo/IAO_0000125> ;
<http://purl.obolibrary.org/obo/IAO_0000115> "A disposition which (1) inheres in a pointer and (2) is realised through dereferencing."@en ,
"Die Eigenschaft, die (1) ein Zeiger hat und (2) durch Dereferezieren umgesetzt wird."@de ;
<http://purl.org/dc/elements/1.1/contributor> <https://orcid.org/0000-0003-4322-180X> ;
<http://www.geneontology.org/formats/oboInOwl#hasDbXref> <https://en.wikipedia.org/wiki/Dereference_operator> ,
<https://en.wiktionary.org/wiki/dereference> ;
rdfs:comment "Informally, some data stored in a computer's memory is dereferenceable when it can be accessed by a machine and, using the location information stored inside it, used to find other data or information. Once it is used in this way, it has been dereferenced."@en ;
rdfs:label "Dereferenzierbarkeit"@de ,
"dereferenceability"@en .
### https://purls.helmholtz-metadaten.de/hob/HDO_00000011
<https://purls.helmholtz-metadaten.de/hob/HDO_00000011> rdf:type owl:Class ;
rdfs:subClassOf <http://purl.obolibrary.org/obo/BFO_0000015> ;
<http://purl.obolibrary.org/obo/IAO_0000114> <http://purl.obolibrary.org/obo/IAO_0000125> ;
<http://purl.obolibrary.org/obo/IAO_0000115> "A process during which a pointer is operated upon in order to access the memory address it stores."@en ,
"Ein Vorgang, bei dem einem Zeiger gefolgt wird, um auf die in ihm gespeicherte Speicheradresse zuzugreifen."@de ;
<http://www.geneontology.org/formats/oboInOwl#hasDbXref> <https://en.wikipedia.org/wiki/Dereference_operator> ,
<https://en.wiktionary.org/wiki/dereference> ;
rdfs:comment "Informally, dereferencing happens when data stored in a computer's memory is accessed and used by a machine to find other data or information."@en ;
rdfs:label "Dereferenzieren"@de ,
"dereferencing"@en .
### https://purls.helmholtz-metadaten.de/hob/HDO_00000012
<https://purls.helmholtz-metadaten.de/hob/HDO_00000012> rdf:type owl:Class ;
rdfs:subClassOf <https://purls.helmholtz-metadaten.de/hob/HDO_00001049> ,
[ rdf:type owl:Restriction ;
owl:onProperty <http://purl.obolibrary.org/obo/BFO_0000051> ;
owl:someValuesFrom <https://purls.helmholtz-metadaten.de/hob/HDO_00001017>
] ,
[ rdf:type owl:Restriction ;
owl:onProperty <http://purl.obolibrary.org/obo/BFO_0000051> ;
owl:someValuesFrom <https://purls.helmholtz-metadaten.de/hob/HDO_00001018>
] ;
<http://purl.obolibrary.org/obo/IAO_0000114> <http://purl.obolibrary.org/obo/IAO_0000125> ;
<http://purl.obolibrary.org/obo/IAO_0000115> "A system which (1) includes - as components - distributed, independent digital technologies and a human community which interact with them, (2) develops through interaction between its components, from which common norms and culture emerge, (3) is maintained by adaptive self-organisation of its parts as they become a part of or leave the system."@en ,
"Ein System, welches (1) aus verteilten Komponenten, in Form von unabhängigen Technologien und einer Menschengemeinschaft, die mit ihnen interagieren, besteht, (2) sich durch Interaktion zwischen seinen Komponenten entwickelt, aus der gemeinsame Normen und eine gemeinsame Kultur entstehen, (3) durch Selbstorganisation der Komponenten erhalten und/oder an Veränderungen angepasst wird, während sie in das System aufgenommen werden oder dieses verlassen."@de ;
<http://www.geneontology.org/formats/oboInOwl#hasDbXref> <https://en.wikipedia.org/wiki/Digital_ecosystem> ;
rdfs:comment "Digital ecosystems display many of the same properties of ecological systems in terms of creation, change, and destruction of niches, competition for niche space, symbiotic and predatory interactions, food web and energy transfer dynamics, etc. The definition above does not include the aspects of sustainability or scalability mentioned in the Wikipedia source, as these are both ambiguous terms and also not necessarily part of every digital ecosystem (which may be transient or have strong barriers to scalability [e.g. cost]). Further, we restrict this definition to those digital ecosystems which have human agents as parts, omitting systems that can react to the behaviours of other organisms (e.g. automated control of constructed animal enclosures or artificial habitats)."@en ;
rdfs:label "digital ecosystem"@en ,
"digitales Ökosystem"@de .
### https://purls.helmholtz-metadaten.de/hob/HDO_00000013
<https://purls.helmholtz-metadaten.de/hob/HDO_00000013> rdf:type owl:Class ;
rdfs:subClassOf <https://purls.helmholtz-metadaten.de/hob/HDO_00000005> ;
<http://purl.obolibrary.org/obo/IAO_0000115> "Eine Datenstruktur, die mindestens (1) Subjektdaten und (2) die dazugehörige Metadaten und (3) einen weltweit persistenten Identifer beinhaltet, der, wenn er dereferenziert wird, einem Akteur erlaubt, auf das digitale Objekt zuzugreifen."@de ,
"Structured data which has structuredness conforming to a digital object specification."@en ,
"Strukturierte Daten, deren Strukturiertheit einer Spezifikation für digitale Objekte entsprechen."@de ;
<http://purl.obolibrary.org/obo/OMO_0003012> "DO"@de ,
"DO"@en ;
<http://www.geneontology.org/formats/oboInOwl#hasDbXref> <https://www.doi.org/topics/2006_05_02_Kahn_Framework.pdf> ;
<http://www.geneontology.org/formats/oboInOwl#hasExactSynonym> "Digitalobjekt"@de ,
"dereferenceable"@en ,
"dereferenzierbar"@de ;
<http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym> "digital infrastructure object"@en ;
rdfs:comment "An entity which includes attributes of an object and may also include methods that perform operations on it. TODO: needs final approval"@en ;
rdfs:label "digital object"@en ,
"digitales Objekt"@de ;
rdfs:seeAlso "https://dictionary.archivists.org/entry/digital-object.html" ;
<https://purls.helmholtz-metadaten.de/hob/HDO_00001024> "digital Objects"@en ,
"digitale Objekte"@de .
### https://purls.helmholtz-metadaten.de/hob/HDO_00000014
<https://purls.helmholtz-metadaten.de/hob/HDO_00000014> rdf:type owl:Class ;
rdfs:subClassOf <https://purls.helmholtz-metadaten.de/hob/HDO_00000016> ;
<http://purl.obolibrary.org/obo/IAO_0000115> "A directed graph which has structuredness conforming to a directed acyclic graph specification."@en ,
"Ein gerichteter Graph, dessen Strukturiertheit der Spezifikation eines gerichteten azyklischen Graphen entspricht."@de ;
<http://purl.obolibrary.org/obo/OMO_0003012> "DAG"@en ;
<http://www.geneontology.org/formats/oboInOwl#hasDbXref> <https://en.wikipedia.org/wiki/Directed_acyclic_graph> ;
rdfs:comment "Some graphs contain more than one edge type. If there are no graphical cycles encountered when following graphical paths composed of edges of the same type, these are often considered DAGs."@en ;
rdfs:label "directed acyclic graph"@en ,
"gerichteter azyklischer Graph"@de ;
<https://purls.helmholtz-metadaten.de/hob/HDO_00001024> "directed acyclic graphs"@en ,
"gerichtete azyklische Graphen"@de .
### https://purls.helmholtz-metadaten.de/hob/HDO_00000015
<https://purls.helmholtz-metadaten.de/hob/HDO_00000015> rdf:type owl:Class ;
rdfs:subClassOf <https://purls.helmholtz-metadaten.de/hob/HDO_00000017> ;
<http://purl.obolibrary.org/obo/IAO_0000114> <http://purl.obolibrary.org/obo/IAO_0000125> ;
<http://purl.obolibrary.org/obo/IAO_0000115> "An edge with an ordered pair of nodes."@en ,
"Eine Kante mit einem geordnetes Paar von Knoten."@de ;
<http://www.geneontology.org/formats/oboInOwl#hasDbXref> <https://en.wikipedia.org/wiki/Directed_graph> ;
rdfs:label "directed edge"@en ,
"gerichtete Kanten"@de .
### https://purls.helmholtz-metadaten.de/hob/HDO_00000016
<https://purls.helmholtz-metadaten.de/hob/HDO_00000016> rdf:type owl:Class ;
rdfs:subClassOf <https://purls.helmholtz-metadaten.de/hob/HDO_00000020> ;
<http://purl.obolibrary.org/obo/IAO_0000115> "A graph which has structuredness conforming to a directed graph specification."@en ;
<http://www.geneontology.org/formats/oboInOwl#hasExactSynonym> "gerichteter Graf"@de ;
rdfs:comment "The directional constraints on graph edges define ordered paths across the graph."@en ;
rdfs:label "directed graph"@en ,
"gerichteter Graph"@de ;
rdfs:seeAlso "https://de.wikipedia.org/wiki/Kante_(Graphentheorie)" ,
"https://en.wikipedia.org/wiki/Graph_(discrete_mathematics)" ;
<https://purls.helmholtz-metadaten.de/hob/HDO_00001024> "directed graphs"@en ,
"gerichtete Graphen"@de .
### https://purls.helmholtz-metadaten.de/hob/HDO_00000017
<https://purls.helmholtz-metadaten.de/hob/HDO_00000017> rdf:type owl:Class ;
<http://purl.obolibrary.org/obo/IAO_0000114> <http://purl.obolibrary.org/obo/IAO_0000428> ;
<http://purl.obolibrary.org/obo/IAO_0000115> "A connection of nodes in a graph."@en ,
"Eine Verbindung von Knoten in einem Graphen. "@de ;
<http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym> "Verbindung"@de ,
"link"@en ;
<http://www.geneontology.org/formats/oboInOwl#hasDbXref> <https://de.wikipedia.org/wiki/Kante_(Graphentheorie)> ,
<https://en.wikipedia.org/wiki/Glossary_of_graph_theory#edge> ,
<https://en.wiktionary.org/wiki/edge> ;
rdfs:comment "This is the superclass. If necessary a ordinary edge (2 nodes) or hyperedge (more than that) can be defined as subclasses. Each edge has two (or in hypergraphs, more) vertices to which it is attached, called its endpoints."@en ;
rdfs:label "Kante"@de ,
"edge"@en ;
<https://purls.helmholtz-metadaten.de/hob/HDO_00001024> "Kanten"@de ,
"edges"@en .
### https://purls.helmholtz-metadaten.de/hob/HDO_00000018
<https://purls.helmholtz-metadaten.de/hob/HDO_00000018> rdf:type owl:Class ;
rdfs:subClassOf <https://purls.helmholtz-metadaten.de/hob/HDO_00000013> ;
<http://purl.obolibrary.org/obo/IAO_0000115> "A digital object which conforms to a system-specific implementation of the FAIR Principles."@en ,
"Ein digitales Objekt, das einer systemspezifischen Implentierung der FAIR-Prinzipien folgt. "@de ;
<http://purl.obolibrary.org/obo/OMO_0003012> "FDO"@de ,
"FDO"@en ;
<http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym> "digital object"@en ,
"digitales Objekt"@de ;
<http://www.geneontology.org/formats/oboInOwl#hasDbXref> <https://www.doi.org/topics/2006_05_02_Kahn_Framework.pdf> ,
<https://www.force11.org/fairprinciples> ;
<http://www.geneontology.org/formats/oboInOwl#hasExactSynonym> "FAIR Digitalobject"@de ,
"FAIRes digitales Objekt"@de ,
"digitales FAIR Objekt"@de ,
"digitales FAIRes Objekt"@de ;
<http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym> "FAIR digital infrastructure object"@en ;
rdfs:comment "Individual parts may not comply with the FAIR principles on their own. The HMC's interpretation of the FAIR Principles for implementation purposes is cited in the seeAlso attribute of this class, when published."@en ;
rdfs:label "FAIR digital object"@en ,
"FAIR digitales Objekt"@de ;
<http://www.w3.org/2004/02/skos/core#note> "A digitial container for data or links to data which has its own identifier (usually unique, persistent and web accessible) and contains metadata describing the data and/or the FAIR digital object itself. The container itself is findable, accessible, interoperable, and reusable according to an implementation of the FAIR principles."@en ,
"Ein digitaler Container für Daten oder Links zu Daten, der einen eigenen Identifier (in der Regel eindeutig, persistent und im Web zugänglich) und Metadaten enthält, die die Daten und/oder das FAIR-Digitalobjekt selbst beschreiben. Der Container selbst ist auffindbar, zugänglich, interoperabel und wiederverwendbar gemäß einer Umsetzung der FAIR-Prinzipien."@de .
### https://purls.helmholtz-metadaten.de/hob/HDO_00000019
<https://purls.helmholtz-metadaten.de/hob/HDO_00000019> rdf:type owl:Class ;
rdfs:subClassOf <https://purls.helmholtz-metadaten.de/hob/HDO_00000005> ;
<http://purl.obolibrary.org/obo/IAO_0000115> "Structured data which has structuredness conforming to a key-value pair specification."@en ,
"Strukturierte Daten, deren Strukturiertheit einer Schlüssel-Wert-Paar-Spezifikation entspricht."@de ;
<http://www.geneontology.org/formats/oboInOwl#hasDbXref> <http://www.sliccware.com/WebHelp/Load_Definition/Definitions/Data_Fields/Data_Fields.htm> ,
<https://computersciencewiki.org/index.php/Dictionaries> ,
<https://en.wikipedia.org/wiki/Field_(computer_science)> ;
<http://www.geneontology.org/formats/oboInOwl#hasExactSynonym> "Feld"@de ,
"field"@en ;
<http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym> "Datenfeld"@de ;
rdfs:comment "A field typically serves as the smallest subdivision of a record. This term has a broad definition which attempts to cover a range of usage in computer science. Precise terminology in different sub-domains varies, for example, relational databasing and object-oriented programming may use terms like data member or member variable which are more narrowly scoped to their application areas. Subclasses for such usage may be created as required. "@en ;
rdfs:label "Schlüssel-Wert Paar"@de ,
"key-value pair"@en .
### https://purls.helmholtz-metadaten.de/hob/HDO_00000020
<https://purls.helmholtz-metadaten.de/hob/HDO_00000020> rdf:type owl:Class ;
rdfs:subClassOf <https://purls.helmholtz-metadaten.de/hob/HDO_00006028> ;
<http://purl.obolibrary.org/obo/IAO_0000115> "Eine Datenstruktur, die Elemente (Ecken oder Knoten genannt) durch Beziehungen (Kanten genannt) miteinander verbindet."@de ,
"Structured data which has structuredness conforming to a graph specification."@en ,
"Strukturierte Daten, deren Strukturiertheit einer Graphenspezifikation entspricht."@de ;
<http://www.geneontology.org/formats/oboInOwl#hasExactSynonym> "Graf"@de ;
rdfs:label "Graph"@de ,
"graph"@en ;
rdfs:seeAlso "https://www.educba.com/graph-in-data-structure/" ;
<https://purls.helmholtz-metadaten.de/hob/HDO_00001024> "Graphen"@de ,
"graphs"@en .
### https://purls.helmholtz-metadaten.de/hob/HDO_00000021
<https://purls.helmholtz-metadaten.de/hob/HDO_00000021> rdf:type owl:Class ;
rdfs:subClassOf <https://purls.helmholtz-metadaten.de/hob/HDO_00000023> ;
<http://purl.obolibrary.org/obo/IAO_0000114> <http://purl.obolibrary.org/obo/IAO_0000428> ;
<http://purl.obolibrary.org/obo/IAO_0000115> "A graphical trail which is non-empty and has only the first and the last elements in the sequence of visited nodes refer to the same node."@en ,
"Eine Kantenfolge, welche nicht leer ist, und in der nur das erste und letzte Element in der Sequenz der zu besuchenden Knoten auf den gleichen Knoten verweisen."@de ;
<http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym> "Zyklus"@de ,
"cycle"@en ,
"simple circuit"@en ;
<http://www.geneontology.org/formats/oboInOwl#hasDbXref> <https://en.wikipedia.org/wiki/Cycle_(graph_theory)> ;
<http://www.geneontology.org/formats/oboInOwl#hasExactSynonym> "cycle in a graph"@en ;
<http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym> "cycle graph"@en ,
"graph cycle"@en ;
rdfs:comment "This strict definition excludes cycles with \"bubbles\" in them (that is, the node that occupies the first and last positions in the sequence may be visited somewhere in the middle of the sequence too). A graph with a graphical cycle is called a cyclic graph. The length of a graphical cycle is the number of edges involved."@en ;
rdfs:label "graphical cycle"@en ,
"graphischer Zyklus"@de ;
<https://purls.helmholtz-metadaten.de/hob/HDO_00001024> "graphical cycles"@en ,
"graphische Zyklen"@de .
### https://purls.helmholtz-metadaten.de/hob/HDO_00000022
<https://purls.helmholtz-metadaten.de/hob/HDO_00000022> rdf:type owl:Class ;
rdfs:subClassOf <https://purls.helmholtz-metadaten.de/hob/HDO_00000024> ;
<http://purl.obolibrary.org/obo/IAO_0000114> <http://purl.obolibrary.org/obo/IAO_0000125> ;
<http://purl.obolibrary.org/obo/IAO_0000115> "A graphical walk which does not include any repeated nodes."@en ,
"Ein graphischer Weg, der keine sich wiederholdende Knoten beinhaltet."@de ;
<http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym> "Pfad"@de ,
"path"@en ;
<http://www.geneontology.org/formats/oboInOwl#hasDbXref> <https://en.wikipedia.org/wiki/Path_(graph_theory)> ;
rdfs:comment "As a consequence of the limitation on the nodes, no edges are repeated either."@en ,
"Der Begriff des Weges wird in der Literatur nicht einheitlich verwendet."@de ;
rdfs:label "graphical path"@en ,
"graphischer Pfad"@de .
### https://purls.helmholtz-metadaten.de/hob/HDO_00000023
<https://purls.helmholtz-metadaten.de/hob/HDO_00000023> rdf:type owl:Class ;
rdfs:subClassOf <https://purls.helmholtz-metadaten.de/hob/HDO_00000024> ;
<http://purl.obolibrary.org/obo/IAO_0000114> <http://purl.obolibrary.org/obo/IAO_0000125> ;
<http://purl.obolibrary.org/obo/IAO_0000115> "A graphical walk which does not traverse any edge more than once."@en ,
"Ein grafischer Weg, der keine Kante mehr als einmal durchläuft."@de ;
<http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym> "trail"@en ;