-
Notifications
You must be signed in to change notification settings - Fork 1
/
ontology_all.owl
2119 lines (2118 loc) · 127 KB
/
ontology_all.owl
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
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:terms="http://purl.org/dc/terms/"
xmlns:vaem="http://www.linkedmodel.org/schema/vaem#"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:vann1="https://w3id.org/enigma#vann:"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:vann="http://purl.org/vocab/vann/"
xmlns="https://w3id.org/enigma#"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#" >
<rdf:Description rdf:about="https://w3id.org/enigma#hasBriefDescription">
<vann:example xml:lang="en">SZCohort hasBriefDescription "finds correlations between schizophrenia and other conditions"</vann:example>
<vann:example xml:lang="en">ProjectSZ hasBriefDescription "reports effect size for corticol thickness"</vann:example>
<rdfs:domain rdf:nodeID="A0"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/description"/>
<vann:example xml:lang="en">SZWG hasBriefDescription "finds correlations between schizophrenia and other conditions"</vann:example>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<rdfs:comment xml:lang="en">Provides a brief description of the working group or project or cohort or image acquisition protocol</rdfs:comment>
<rdfs:domain rdf:nodeID="A1"/>
<rdfs:label xml:lang="en">has brief description</rdfs:label>
<rdfs:comment xml:lang="en">Provides a brief description of the working group or project or cohort</rdfs:comment>
<rdfs:domain rdf:nodeID="A2"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/enigma#hasName_Short">
<rdfs:label xml:lang="en">has short name</rdfs:label>
<rdfs:comment xml:lang="en">A short name for the working group, in case the working group name is too long</rdfs:comment>
<vann:example xml:lang="en">SchizophreniaWG hasName_Short SZWG</vann:example>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<rdfs:domain rdf:resource="https://w3id.org/enigma#WorkingGroup"/>
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/title"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/enigma#isPartOfWorkingGroup">
<rdfs:label xml:lang="en">is part of working group</rdfs:label>
<rdfs:comment xml:lang="en">Property that indicates the cohorts which are a part of a working group</rdfs:comment>
<rdfs:range rdf:resource="https://w3id.org/enigma#WorkingGroup"/>
<rdfs:domain rdf:nodeID="A3"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/enigma#rationale">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AnnotationProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://www.w3.org/2006/vcard/ns#locality">
<rdfs:label xml:lang="en">locality</rdfs:label>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/2006/vcard/ns"/>
<rdfs:comment xml:lang="en">The locality (e.g. city or town) associated with the address of the object</rdfs:comment>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<rdfs:domain rdf:resource="https://w3id.org/enigma#Address"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/enigma#hasCohort">
<vann:example xml:lang="en">BipolarWorkingGroup hasCohort AmsterdamBipolarCohort --> Bipolar Working Group includes the Amsterdam Bipolar Cohort</vann:example>
<rdfs:domain rdf:nodeID="A4"/>
<rdfs:label xml:lang="en">has cohort</rdfs:label>
<rdfs:comment xml:lang="en">Describes what cohorts are part of a project or working group</rdfs:comment>
<vann:example xml:lang="en">BipolarProject hasCohort AmsterdamBipolarCohort</vann:example>
<rdfs:range rdf:resource="https://w3id.org/enigma#Cohort"/>
<rdfs:domain rdf:nodeID="A5"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
</rdf:Description>
<rdf:Description rdf:nodeID="A6">
<rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
<rdf:first rdf:resource="https://w3id.org/enigma#Project"/>
</rdf:Description>
<rdf:Description rdf:nodeID="A7">
<owl:unionOf rdf:nodeID="A8"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:nodeID="A9">
<rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
<rdf:first rdf:resource="https://w3id.org/enigma#CohortProject"/>
</rdf:Description>
<rdf:Description rdf:nodeID="A10">
<rdf:rest rdf:nodeID="A11"/>
<rdf:first rdf:resource="https://w3id.org/enigma#Cohort"/>
</rdf:Description>
<rdf:Description rdf:nodeID="A12">
<rdf:rest rdf:nodeID="A13"/>
<rdf:first rdf:resource="https://w3id.org/enigma#CohortGroup"/>
</rdf:Description>
<rdf:Description rdf:nodeID="A14">
<rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
<rdf:first rdf:resource="https://w3id.org/enigma#CohortProject"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/enigma#hasWorkingGroupMember">
<rdfs:comment xml:lang="en">Describes who the members of the working group are</rdfs:comment>
<rdfs:label xml:lang="en">has working group member</rdfs:label>
<rdfs:comment xml:lang="en">Describes what working group a person is a member of</rdfs:comment>
<vann:example xml:lang="en">BipolarWorkingGroup hasWorkingGroupMember JohnSmith</vann:example>
<rdfs:range rdf:resource="https://w3id.org/enigma#Person"/>
<rdfs:domain rdf:resource="https://w3id.org/enigma#WorkingGroup"/>
<rdfs:subPropertyOf rdf:resource="http://xmlns.com/foaf/0.1/member"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://www.linkedmodel.org/schema/vaem#rationale">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AnnotationProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://www.w3.org/2006/vcard/ns#Address">
<rdfs:label xml:lang="en">Address</rdfs:label>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/2006/vcard/ns"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/enigma#hasFundingSource">
<rdfs:label xml:lang="en">has funding source</rdfs:label>
<rdfs:comment xml:lang="en">Describes the funding source of the cohort</rdfs:comment>
<vann:example xml:lang="en">Cohort1 hasFundingSource "NIMH, 5P50MH080272"</vann:example>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<rdfs:domain rdf:nodeID="A15"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://www.w3.org/2006/vcard/ns#street-address">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</rdf:Description>
<rdf:Description rdf:nodeID="A16">
<rdf:rest rdf:nodeID="A17"/>
<rdf:first rdf:resource="https://w3id.org/enigma#Project"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/enigma#hasExclusionCriteria">
<rdfs:label xml:lang="en">has exclusion criteria</rdfs:label>
<rdfs:comment xml:lang="en">Criteria used to exclude cohort patients</rdfs:comment>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<rdfs:domain rdf:nodeID="A18"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</rdf:Description>
<rdf:Description rdf:nodeID="A19">
<owl:unionOf rdf:nodeID="A20"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:nodeID="A21">
<rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
<rdf:first rdf:resource="https://w3id.org/enigma#WorkingGroup"/>
</rdf:Description>
<rdf:Description rdf:nodeID="A22">
<rdf:rest rdf:nodeID="A23"/>
<rdf:first rdf:resource="https://w3id.org/enigma#Cohort"/>
</rdf:Description>
<rdf:Description rdf:nodeID="A24">
<owl:unionOf rdf:nodeID="A25"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/enigma#contributor">
<rdfs:label xml:lang="en">contributor</rdfs:label>
<rdfs:comment xml:lang="en">Property that indicates who is a contributor to a project or cohort</rdfs:comment>
<vaem:rationale xml:lang="en">Property added to restrict the domain to projects, cohorts and academic articles. This is done for facilitating the interaction with the wiki interface</vaem:rationale>
<rdfs:range rdf:resource="https://w3id.org/enigma#Person"/>
<rdfs:domain rdf:nodeID="A26"/>
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/contributor"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/enigma#vann:example">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AnnotationProperty"/>
</rdf:Description>
<rdf:Description rdf:nodeID="A27">
<rdf:rest rdf:nodeID="A28"/>
<rdf:first rdf:resource="https://w3id.org/enigma#Cohort"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/enigma#GeneticDataType">
<rdfs:label xml:lang="en">Genetic Data Type</rdfs:label>
<rdfs:comment xml:lang="en">Specifies the kinds of genetic data collected</rdfs:comment>
<vann:example xml:lang="en">Epigenetic</vann:example>
<rdfs:subClassOf rdf:resource="https://w3id.org/enigma#DataType"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/enigma#hasResearchInterest">
<rdfs:label xml:lang="en">has research interest</rdfs:label>
<rdfs:comment xml:lang="en">Describes a research interest of a person</rdfs:comment>
<vann:example xml:lang="en">JohnSmith hasReasearchInterest "bipolar disorder", "schizophrenia"</vann:example>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<rdfs:domain rdf:resource="https://w3id.org/enigma#Person"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/enigma#RespiratoryDisorder">
<rdfs:label xml:lang="en">Respiratory Disorder</rdfs:label>
<rdfs:comment xml:lang="en">Disorders which affect the respiratory system</rdfs:comment>
<vann:example xml:lang="en">Asthma</vann:example>
<rdfs:subClassOf rdf:resource="https://w3id.org/enigma#Disorder"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/enigma#Organization">
<rdfs:isDefinedBy rdf:resource="http://xmlns.com/foaf/0.1"/>
<rdfs:comment xml:lang="en">An organization contributing to a given ENIGMA project</rdfs:comment>
<vann:example xml:lang="en">Information Sciences Institute</vann:example>
<vann1:example>Information Sciences Institute</vann1:example>
<rdfs:label xml:lang="en">Organization</rdfs:label>
<rdfs:comment xml:lang="en">An organization belonging to the ENIGMA consortium. Organization can be hospitals, universities, departments, etc.</rdfs:comment>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/enigma#hasDiagnosticGroup">
<rdfs:label xml:lang="en">has diagnostic group</rdfs:label>
<rdfs:comment xml:lang="en">Describes the patient group of a cohort</rdfs:comment>
<vann:example xml:lang="en">BipolarCohort hasPatientGroup BipolarPatientGroup</vann:example>
<rdfs:range rdf:resource="https://w3id.org/enigma#CohortGroup"/>
<rdfs:domain rdf:nodeID="A29"/>
<rdfs:subPropertyOf rdf:resource="https://w3id.org/enigma#hasCohortGroup"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://xmlns.com/foaf/0.1/Person">
<rdfs:isDefinedBy xml:lang="en">http://xmlns.com/foaf/0.1/</rdfs:isDefinedBy>
<owl:equivalentClass rdf:resource="https://w3id.org/enigma#Person"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:nodeID="A11">
<rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
<rdf:first rdf:resource="https://w3id.org/enigma#Person"/>
</rdf:Description>
<rdf:Description rdf:nodeID="A13">
<rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
<rdf:first rdf:resource="https://w3id.org/enigma#CohortProject"/>
</rdf:Description>
<rdf:Description rdf:nodeID="A30">
<owl:unionOf rdf:nodeID="A31"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/enigma#isPublic">
<rdfs:label xml:lang="en">is public</rdfs:label>
<rdfs:comment xml:lang="en">Describes if a cohort's data is publicly available</rdfs:comment>
<vann:example xml:lang="en">SZCohort isPublic "true"</vann:example>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#boolean"/>
<rdfs:domain rdf:nodeID="A32"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/enigma#hasPersonRole_MainPrincipalInvestigator">
<rdfs:label xml:lang="en">has main person role principal investigator</rdfs:label>
<rdfs:comment xml:lang="en">Describes which cohorts somone is a main PI of</rdfs:comment>
<vann:example xml:lang="en">Cohort1 hasMainPrincipalInvestigatorof JohnSmith</vann:example>
<rdfs:range rdf:resource="https://w3id.org/enigma#Person"/>
<rdfs:domain rdf:nodeID="A33"/>
<rdfs:subPropertyOf rdf:resource="https://w3id.org/enigma#hasPersonRole_PrincipalInvestigator"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/enigma#Protocol">
<rdfs:label xml:lang="en">Protocol</rdfs:label>
<rdfs:comment xml:lang="en">An image processing or genetic analysis protocol used to extract brain feature data</rdfs:comment>
<vann:example xml:lang="en">ENIGMA-Sulci Protocol</vann:example>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:nodeID="A8">
<rdf:rest rdf:nodeID="A34"/>
<rdf:first rdf:resource="https://w3id.org/enigma#CohortGroup"/>
</rdf:Description>
<rdf:Description rdf:nodeID="A35">
<owl:unionOf rdf:nodeID="A36"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:nodeID="A20">
<rdf:rest rdf:nodeID="A37"/>
<rdf:first rdf:resource="https://w3id.org/enigma#AcademicArticle"/>
</rdf:Description>
<rdf:Description rdf:nodeID="A38">
<owl:unionOf rdf:nodeID="A39"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:nodeID="A23">
<rdf:rest rdf:nodeID="A40"/>
<rdf:first rdf:resource="https://w3id.org/enigma#CohortGroup"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/enigma#usesScanner">
<rdfs:label xml:lang="en">uses scanner</rdfs:label>
<rdfs:comment xml:lang="en">Describes the scanner used by the cohort</rdfs:comment>
<vann:example xml:lang="en">SZCohort usesScanner "1.5T-GE-Signa"</vann:example>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<rdfs:domain rdf:nodeID="A41"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</rdf:Description>
<rdf:Description rdf:nodeID="A25">
<rdf:rest rdf:nodeID="A42"/>
<rdf:first rdf:resource="https://w3id.org/enigma#CohortGroup"/>
</rdf:Description>
<rdf:Description rdf:about="https://schema.org/name">
<rdfs:isDefinedBy rdf:resource="https://schema.org"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</rdf:Description>
<rdf:Description rdf:nodeID="A28">
<rdf:rest rdf:nodeID="A43"/>
<rdf:first rdf:resource="https://w3id.org/enigma#CohortGroup"/>
</rdf:Description>
<rdf:Description rdf:nodeID="A44">
<rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
<rdf:first rdf:resource="https://w3id.org/enigma#Project"/>
</rdf:Description>
<rdf:Description rdf:nodeID="A45">
<owl:unionOf rdf:nodeID="A46"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/enigma">
<terms:description xml:lang="en">An ontology for describing the feature protocols used within ENIGMA.</terms:description>
<owl:versionIRI rdf:resource="https://w3id.org/enigma/person/1.1.0"/>
<terms:contributor>Agnes McMahon</terms:contributor>
<owl:priorVersion rdf:resource="https://w3id.org/enigma/organization/1.1.0"/>
<rdfs:comment>An ontology for describing people's roles in ENIGMA projects.</rdfs:comment>
<terms:creator>MiHyun Jang</terms:creator>
<terms:title xml:lang="en">The Working Group Ontology</terms:title>
<terms:title>The Organization Ontology</terms:title>
<owl:versionIRI rdf:resource="https://w3id.org/enigma/protocol/1.0.0"/>
<terms:contributor>Yolanda Gil</terms:contributor>
<vann:preferredNamespaceUri rdf:resource="https://w3id.org/enigma#"/>
<owl:versionIRI rdf:resource="https://w3id.org/enigma/organization/1.1.0"/>
<owl:priorVersion>https://w3id.org/enigma/cohort/1.0.0</owl:priorVersion>
<terms:creator>Neda Jahanshad</terms:creator>
<terms:title xml:lang="en">The Project Ontology</terms:title>
<owl:versionIRI rdf:resource="https://w3id.org/enigma/roles/1.1.0"/>
<terms:contributor>Haripriya Dharmala</terms:contributor>
<terms:title xml:lang="en">The Roles Ontology</terms:title>
<terms:creator>Michael Bornstein</terms:creator>
<vann:preferredNamespacePrefix rdf:resource="https://w3id.org/enigma"/>
<owl:versionInfo>v1.1.0</owl:versionInfo>
<terms:creator>Daniel Garijo</terms:creator>
<owl:versionIRI rdf:resource="https://w3id.org/enigma/wg/1.1.0"/>
<terms:creator>Ryan Espiritu</terms:creator>
<terms:license rdf:resource="http://creativecommons.org/licenses/by/2.0/"/>
<owl:priorVersion rdf:resource="https://w3id.org/enigma/roles/1.0.0"/>
<owl:versionIRI rdf:resource="https://w3id.org/enigma/project/1.1.0"/>
<owl:versionIRI rdf:resource="https://w3id.org/enigma/cohort/1.1.0"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<owl:versionInfo>v1.0.0</owl:versionInfo>
<vann:preferredNamespacePrefix>enigma</vann:preferredNamespacePrefix>
<owl:priorVersion rdf:resource="https://w3id.org/enigma/wg/1.0.0"/>
<owl:priorVersion rdf:resource="https://w3id.org/enigma/person/1.0.0"/>
<terms:creator>Haripriya Dharmala</terms:creator>
<terms:description xml:lang="en">An ontology that describes ENIGMA projects and their properties.</terms:description>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Ontology"/>
<terms:title xml:lang="en">The Cohort Ontology</terms:title>
<terms:title>The Person Ontology</terms:title>
<terms:title xml:lang="en">The Protocol Ontology</terms:title>
<terms:description xml:lang="en">An ontology representing roles different persons play in ENIGMA projects, organizations, papers, or working groups.</terms:description>
<terms:description xml:lang="en">An ontology to describe cohorts of patients participating in ENIGMA projects.</terms:description>
<terms:description xml:lang="en">An ontology representing organizations that participate in the ENIGMA consortium.</terms:description>
<terms:contributor>Daniel Garijo</terms:contributor>
<terms:description xml:lang="en">An ontology representing Working Groups that participate in the ENIGMA consortium.</terms:description>
<terms:description xml:lang="en">A cohort ontology that describes persons participating in ENIGMA and their properties.</terms:description>
</rdf:Description>
<rdf:Description rdf:nodeID="A31">
<rdf:rest rdf:nodeID="A47"/>
<rdf:first rdf:resource="https://w3id.org/enigma#Cohort"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/enigma#hasWorkingGroupChair">
<rdfs:comment xml:lang="en">Describes who the chairs of a working group are</rdfs:comment>
<vann:example xml:lang="en">SZWorkingGroup hasWorkingGroupChair JohnSmith</vann:example>
<rdfs:label xml:lang="en">has working group chair</rdfs:label>
<rdfs:comment xml:lang="en">Describes the working groups that someone is a chair of</rdfs:comment>
<vann:example xml:lang="en">BipolarWorkingGroup hasWorkingGroupChair JohnSmith</vann:example>
<rdfs:range rdf:resource="https://w3id.org/enigma#Person"/>
<rdfs:domain rdf:resource="https://w3id.org/enigma#WorkingGroup"/>
<rdfs:subPropertyOf rdf:resource="https://w3id.org/enigma#hasWorkingGroupMember"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
</rdf:Description>
<rdf:Description rdf:about="https://schema.org/contentUrl">
<rdfs:isDefinedBy rdf:resource="https://schema.org/"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</rdf:Description>
<rdf:Description rdf:nodeID="A1">
<owl:unionOf rdf:nodeID="A48"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/enigma#hasPersonRole_ProjectLead">
<rdfs:label xml:lang="en">has project lead</rdfs:label>
<rdfs:comment xml:lang="en">Describes what project someone is a project lead of</rdfs:comment>
<vann:example xml:lang="en">BipolarProject hasPersonRole_ProjectLead JohnSmith</vann:example>
<rdfs:range rdf:resource="https://w3id.org/enigma#Person"/>
<rdfs:domain rdf:resource="https://w3id.org/enigma#Project"/>
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/enigma#checksum">
<rdfs:label>checksum</rdfs:label>
<rdfs:comment>checksum of data file to check if there are modifications</rdfs:comment>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<rdfs:domain rdf:resource="https://w3id.org/enigma#DataDownload"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/enigma#MoodDisorder">
<rdfs:label xml:lang="en">Mood Disorder</rdfs:label>
<rdfs:comment xml:lang="en">A mental health disorder defined by mood or behavioral swings</rdfs:comment>
<vann:example xml:lang="en">Bipolar Disorder</vann:example>
<rdfs:subClassOf rdf:resource="https://w3id.org/enigma#MentalHealthDisorder"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/enigma#DataDownload">
<rdfs:label xml:lang="en">Data Download</rdfs:label>
<rdfs:comment xml:lang="en">Dataset in downloadable form</rdfs:comment>
<rdfs:subClassOf rdf:resource="http://schema.org/DataDownload"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/enigma#Methodology">
<rdfs:label xml:lang="en">Methodology</rdfs:label>
<rdfs:comment xml:lang="en">Working groups that develop protocols (imaging or genetics)</rdfs:comment>
<rdfs:subClassOf rdf:resource="https://w3id.org/enigma#WorkingGroup"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/dc/terms/isPartOf">
<rdfs:label>is Part of</rdfs:label>
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
<rdfs:comment>A related resource in which the described resource is included.</rdfs:comment>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://xmlns.com/foaf/0.1/member">
<rdfs:isDefinedBy rdf:resource="http://xmlns.com/foaf/0.1/member"/>
<rdfs:label>member</rdfs:label>
<rdfs:isDefinedBy rdf:resource="http://xmlns.com/foaf/0.1/"/>
<rdfs:comment>Indicates member of a group</rdfs:comment>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
</rdf:Description>
<rdf:Description rdf:nodeID="A34">
<rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
<rdf:first rdf:resource="https://w3id.org/enigma#Project"/>
</rdf:Description>
<rdf:Description rdf:nodeID="A49">
<owl:unionOf rdf:nodeID="A50"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:nodeID="A39">
<rdf:rest rdf:nodeID="A44"/>
<rdf:first rdf:resource="https://w3id.org/enigma#Cohort"/>
</rdf:Description>
<rdf:Description rdf:nodeID="A40">
<rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
<rdf:first rdf:resource="https://w3id.org/enigma#CohortProject"/>
</rdf:Description>
<rdf:Description rdf:about="http://schema.org/DataDownload">
<rdfs:label>Data Download</rdfs:label>
<rdfs:isDefinedBy rdf:resource="http://schema.org"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:nodeID="A51">
<rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
<rdf:first>Two or More Races</rdf:first>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/enigma#hasPublication">
<rdfs:label xml:lang="en">has publication</rdfs:label>
<rdfs:comment xml:lang="en">Property that links a project to a publication that resulted from it.</rdfs:comment>
<rdfs:range rdf:resource="https://w3id.org/enigma#AcademicArticle"/>
<rdfs:domain rdf:resource="https://w3id.org/enigma#Project"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
</rdf:Description>
<rdf:Description rdf:nodeID="A52">
<rdf:rest rdf:nodeID="A53"/>
<rdf:first rdf:resource="https://w3id.org/enigma#CohortGroup"/>
</rdf:Description>
<rdf:Description rdf:nodeID="A42">
<rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
<rdf:first rdf:resource="https://w3id.org/enigma#CohortProject"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/enigma#ClinicalPopulation">
<rdfs:label xml:lang="en">Clinical Population</rdfs:label>
<rdfs:comment xml:lang="en">Working groups that study clinical populations</rdfs:comment>
<rdfs:subClassOf rdf:resource="https://w3id.org/enigma#WorkingGroup"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/enigma#hasCohortGroup">
<rdfs:label xml:lang="en">has cohort group</rdfs:label>
<rdfs:comment xml:lang="en">Property that indicates the cohort groups part of a cohort</rdfs:comment>
<vann:example xml:lang="en">QTIM has cohort group QTIM_control</vann:example>
<rdfs:range rdf:resource="https://w3id.org/enigma#CohortGroup"/>
<rdfs:domain rdf:nodeID="A35"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
</rdf:Description>
<rdf:Description rdf:nodeID="A43">
<rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
<rdf:first rdf:resource="https://w3id.org/enigma#CohortProject"/>
</rdf:Description>
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#orcidId">
<rdfs:isDefinedBy xml:lang="en">http://vivoweb.org/ontology/core#</rdfs:isDefinedBy>
<rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">This is now an object property where the object value is a resource of the form <http://orcid.org/NNNN-NNNN-NNNN-NNNN>. This is to support connecting VIVO and ORCID in the linked data web. Note: a person can have multiple ORCID iDs.</rdfs:comment>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/enigma#hasPersonRole_DataAnalyst">
<rdfs:label xml:lang="en">has data analyst</rdfs:label>
<rdfs:comment xml:lang="en">Describes what project someone is a data analyst of</rdfs:comment>
<vann:example xml:lang="en">BipolarProject hasPersonRole_DataAnalyst JohnSmith</vann:example>
<rdfs:range rdf:resource="https://w3id.org/enigma#Person"/>
<rdfs:domain rdf:resource="https://w3id.org/enigma#Project"/>
<rdfs:subPropertyOf rdf:resource="https://w3id.org/enigma#contributor"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://xmlns.com/foaf/0.1/familyName">
<rdfs:isDefinedBy xml:lang="en">http://xmlns.com/foaf/0.1/</rdfs:isDefinedBy>
<rdfs:comment>The family name of some person.</rdfs:comment>
<rdfs:domain rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</rdf:Description>
<rdf:Description rdf:nodeID="A54">
<rdf:rest rdf:nodeID="A55"/>
<rdf:first rdf:resource="https://w3id.org/enigma#Cohort"/>
</rdf:Description>
<rdf:Description rdf:nodeID="A47">
<rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
<rdf:first rdf:resource="https://w3id.org/enigma#CohortProject"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/enigma#Location">
<rdfs:label xml:lang="en">Location</rdfs:label>
<rdfs:comment xml:lang="en">Geographic location of the cohort</rdfs:comment>
<vann:example xml:lang="en">Los Angeles, California</vann:example>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/enigma#GeneticStudy">
<rdfs:label xml:lang="en">Genetic study</rdfs:label>
<rdfs:comment xml:lang="en">Working groups dedicated to genetic analysis</rdfs:comment>
<rdfs:subClassOf rdf:resource="https://w3id.org/enigma#WorkingGroup"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:nodeID="A48">
<rdf:rest rdf:nodeID="A56"/>
<rdf:first rdf:resource="https://w3id.org/enigma#Cohort"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/enigma#hasPublishedPaper">
<rdfs:label xml:lang="en">has published paper</rdfs:label>
<rdfs:comment xml:lang="en">Describes the links to published papers or the paper title (if link does not exist) for the working group</rdfs:comment>
<vann:example xml:lang="en">WorkingGroup2 hasPublishedPaper "Article Title"</vann:example>
<vann:example xml:lang="en">WorkingGroup1 hasPublishedPaper www.publishedpaperexample.com</vann:example>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<rdfs:domain rdf:resource="https://w3id.org/enigma#WorkingGroup"/>
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topDataProperty"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</rdf:Description>
<rdf:Description rdf:nodeID="A57">
<owl:oneOf rdf:nodeID="A58"/>
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Datatype"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/enigma#CohortProject">
<rdfs:label xml:lang="en">Cohort Project</rdfs:label>
<rdfs:comment xml:lang="en">The subset of the individuals from a Cohort, which are used as samples for a specific project</rdfs:comment>
<vann:example xml:lang="en">"Healthy" individuals from the ASRB Cohort were sampled to form a Cohort Project of SZCorticol</vann:example>
<rdfs:subClassOf rdf:resource="https://w3id.org/enigma#Cohort"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/enigma#hasCohortProject">
<rdfs:label xml:lang="en">has cohort project</rdfs:label>
<rdfs:comment xml:lang="en">Describes the subcohorts, specific to a given project, that are part of that cohort</rdfs:comment>
<vann:example xml:lang="en">BipolarCohort hasCohortProject BipolarBarcelonaCohort</vann:example>
<rdfs:range rdf:resource="https://w3id.org/enigma#CohortProject"/>
<rdfs:domain rdf:nodeID="A59"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
</rdf:Description>
<rdf:Description rdf:nodeID="A50">
<rdf:rest rdf:nodeID="A60"/>
<rdf:first rdf:resource="https://w3id.org/enigma#Cohort"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/vocab/vann/preferredNamespaceUri">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AnnotationProperty"/>
</rdf:Description>
<rdf:Description rdf:nodeID="A46">
<rdf:rest rdf:nodeID="A61"/>
<rdf:first rdf:resource="https://w3id.org/enigma#Cohort"/>
</rdf:Description>
<rdf:Description rdf:nodeID="A41">
<owl:unionOf rdf:nodeID="A54"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/enigma#hasGrant">
<rdfs:label xml:lang="en">has grant</rdfs:label>
<rdfs:comment xml:lang="en">Data property that aims to capture the grants that have been obtained by a person, in order to properly list them in the acknowledgements of the corresponding publication</rdfs:comment>
<vann:example xml:lang="en">John Smith hasGrant "U54EB020403 (NIH)"</vann:example>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<rdfs:domain rdf:resource="https://w3id.org/enigma#Person"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</rdf:Description>
<rdf:Description rdf:nodeID="A18">
<owl:unionOf rdf:nodeID="A62"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:nodeID="A53">
<rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
<rdf:first rdf:resource="https://w3id.org/enigma#CohortProject"/>
</rdf:Description>
<rdf:Description rdf:nodeID="A63">
<owl:unionOf rdf:nodeID="A64"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:nodeID="A56">
<rdf:rest rdf:nodeID="A65"/>
<rdf:first rdf:resource="https://w3id.org/enigma#CohortGroup"/>
</rdf:Description>
<rdf:Description rdf:about="http://xmlns.com/foaf/0.1/mbox">
<rdfs:isDefinedBy xml:lang="en">http://xmlns.com/foaf/0.1/</rdfs:isDefinedBy>
<rdfs:comment>A personal mailbox, ie. an Internet mailbox associated with exactly one owner, the first owner of this mailbox. This is a 'static inverse functional property', in that there is (across time and change) at most one individual that ever has any particular value for foaf:mbox.</rdfs:comment>
<rdfs:range rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
<rdfs:domain rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/enigma#hasStudyDesign">
<rdfs:comment xml:lang="en">Describes the study design of the cohort group or project (Case/control; Population; Healthy only; Patients only)
NOTE: study design options are mutually exclusive for Cohort Groups but not Projects</rdfs:comment>
<vann:example xml:lang="en">Project1 hasStudyDesign "Case/control, Population"</vann:example>
<rdfs:domain rdf:nodeID="A7"/>
<rdfs:label xml:lang="en">has study design</rdfs:label>
<rdfs:comment xml:lang="en">Describes the study design of a project (Case/control; Population; Healthy only; Patients only)
NOTE: study design options are mutually exclusive for Cohort Groups but not Projects</rdfs:comment>
<vann:example xml:lang="en">CohortGroup1 hasStudyDesign "Population"</vann:example>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<rdfs:domain rdf:resource="https://w3id.org/enigma#Project"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/enigma#hasGeneticDataType">
<rdfs:label xml:lang="en">has genetic data type</rdfs:label>
<rdfs:comment xml:lang="en">Describes the genetic data types that were collected for a cohort or project</rdfs:comment>
<vann:example xml:lang="en">Cohort1 hasGeneticDataType epigenetic</vann:example>
<rdfs:range rdf:resource="https://w3id.org/enigma#GeneticDataType"/>
<rdfs:domain rdf:nodeID="A66"/>
<rdfs:subPropertyOf rdf:resource="https://w3id.org/enigma#hasDataType"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/enigma#isPartOfProject">
<rdfs:label xml:lang="en">is part of project</rdfs:label>
<rdfs:comment xml:lang="en">Property that indicates the cohort groups specific to a project</rdfs:comment>
<rdfs:range rdf:resource="https://w3id.org/enigma#Project"/>
<rdfs:domain rdf:nodeID="A67"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/enigma#MentalHealthDisorder">
<rdfs:label xml:lang="en">Mental Health Disorder</rdfs:label>
<rdfs:comment xml:lang="en">Disorders which can affect mood, behavior, and thinking</rdfs:comment>
<vann:example xml:lang="en">OCD</vann:example>
<rdfs:subClassOf rdf:resource="https://w3id.org/enigma#Disorder"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:nodeID="A55">
<rdf:rest rdf:nodeID="A68"/>
<rdf:first rdf:resource="https://w3id.org/enigma#CohortGroup"/>
</rdf:Description>
<rdf:Description rdf:about="http://www.w3.org/2006/vcard/ns#country-name">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/enigma#City">
<rdfs:label xml:lang="en">City</rdfs:label>
<rdfs:comment xml:lang="en">City in which a cohort is located</rdfs:comment>
<vann:example xml:lang="en">Los Angeles</vann:example>
<rdfs:subClassOf rdf:resource="https://w3id.org/enigma#Location"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:nodeID="A69">
<rdf:rest rdf:nodeID="A70"/>
<rdf:first rdf:resource="https://w3id.org/enigma#CohortGroup"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/enigma#SubstanceDependence">
<rdfs:label xml:lang="en">Substance Dependence</rdfs:label>
<rdfs:comment xml:lang="en">A subset of substance abuse in which symptoms of withdrawal may appeared after reduction of substance use</rdfs:comment>
<vann:example xml:lang="en">Alcohol Dependence</vann:example>
<rdfs:subClassOf rdf:resource="https://w3id.org/enigma#SubstanceAbuse"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/enigma#hasContentUrl">
<rdfs:label>has content URL</rdfs:label>
<rdfs:comment>Points to a media object, like an image or video file</rdfs:comment>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#anyURI"/>
<rdfs:domain rdf:resource="https://w3id.org/enigma#DataDownload"/>
<rdfs:subPropertyOf rdf:resource="https://schema.org/contentUrl"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/enigma#hasNumberOfFemaleSex">
<rdfs:label xml:lang="en">has number of females</rdfs:label>
<rdfs:comment xml:lang="en">Describing the number of females in a cohort project</rdfs:comment>
<vann:example xml:lang="en">CohortGroup2 hasNumberOfFemaleSex 16</vann:example>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#nonNegativeInteger"/>
<rdfs:domain rdf:resource="https://w3id.org/enigma#CohortProject"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/enigma#NeurologicalDisorder">
<rdfs:label xml:lang="en">Neurological Disorder</rdfs:label>
<rdfs:comment xml:lang="en">Disorders which affect the nervous system</rdfs:comment>
<vann:example xml:lang="en">Epilepsy</vann:example>
<rdfs:subClassOf rdf:resource="https://w3id.org/enigma#Disorder"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="http://www.w3.org/2006/vcard/ns#region">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/enigma#hasCurrentJobTitle">
<rdfs:label xml:lang="en">has current job title</rdfs:label>
<rdfs:comment xml:lang="en">Data property that aims to capture the current job title of a person. Examples are student, faculty, staff, postdoc, etc.</rdfs:comment>
<vann:example xml:lang="en">JohnSmith hasCurrentJobTitle "Postdoc"</vann:example>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<rdfs:domain rdf:resource="https://w3id.org/enigma#Person"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/enigma#hasAdditionalDemographic">
<rdfs:label xml:lang="en">has additional demographic</rdfs:label>
<rdfs:comment xml:lang="en">Describes the additional demographics defining a given cohort</rdfs:comment>
<vann:example xml:lang="en">CohortGroup1 hasAdditionalDemographic "handedness, IQ"</vann:example>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<rdfs:domain rdf:resource="https://w3id.org/enigma#Cohort"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</rdf:Description>
<rdf:Description rdf:nodeID="A71">
<rdf:rest rdf:nodeID="A72"/>
<rdf:first rdf:resource="https://w3id.org/enigma#Project"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/enigma#SubstanceAbuse">
<rdfs:label xml:lang="en">Substance Abuse</rdfs:label>
<rdfs:comment xml:lang="en">A mental health disorder defined by the overusage or abuse of a substance</rdfs:comment>
<vann:example xml:lang="en">Alcoholism</vann:example>
<rdfs:subClassOf rdf:resource="https://w3id.org/enigma#MentalHealthDisorder"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:nodeID="A64">
<rdf:rest rdf:nodeID="A73"/>
<rdf:first rdf:resource="https://w3id.org/enigma#Cohort"/>
</rdf:Description>
<rdf:Description rdf:nodeID="A58">
<rdf:rest rdf:nodeID="A74"/>
<rdf:first>gathering participants</rdf:first>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/enigma#hasDate_DataContributionDeadline">
<rdfs:label xml:lang="en">has data contribution deadline date</rdfs:label>
<rdfs:comment xml:lang="en">Describes the deadline date for data contribution of a project</rdfs:comment>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#date"/>
<rdfs:domain rdf:resource="https://w3id.org/enigma#Project"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</rdf:Description>
<rdf:Description rdf:nodeID="A60">
<rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
<rdf:first rdf:resource="https://w3id.org/enigma#Project"/>
</rdf:Description>
<rdf:Description rdf:nodeID="A61">
<rdf:rest rdf:nodeID="A75"/>
<rdf:first rdf:resource="https://w3id.org/enigma#CohortGroup"/>
</rdf:Description>
<rdf:Description rdf:nodeID="A76">
<owl:oneOf rdf:nodeID="A77"/>
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Datatype"/>
</rdf:Description>
<rdf:Description rdf:nodeID="A62">
<rdf:rest rdf:nodeID="A69"/>
<rdf:first rdf:resource="https://w3id.org/enigma#Cohort"/>
</rdf:Description>
<rdf:Description rdf:nodeID="A78">
<owl:unionOf rdf:nodeID="A79"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:nodeID="A80">
<rdf:rest rdf:nodeID="A81"/>
<rdf:first rdf:resource="https://w3id.org/enigma#CohortProject"/>
</rdf:Description>
<rdf:Description rdf:nodeID="A67">
<owl:unionOf rdf:nodeID="A82"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:nodeID="A72">
<rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
<rdf:first rdf:resource="https://w3id.org/enigma#WorkingGroup"/>
</rdf:Description>
<rdf:Description rdf:nodeID="A65">
<rdf:rest rdf:nodeID="A83"/>
<rdf:first rdf:resource="https://w3id.org/enigma#CohortProject"/>
</rdf:Description>
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#College">
<rdfs:label xml:lang="en">College</rdfs:label>
<rdfs:isDefinedBy rdf:resource="http://vivoweb.org/ontology/core"/>
<rdfs:comment xml:lang="en">A college contributing to a given ENIGMA project</rdfs:comment>
<vann:example xml:lang="en">Los Angeles City College</vann:example>
<rdfs:subClassOf rdf:resource="http://xmlns.com/foaf/0.1/Organization"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/enigma#hasCollectionSite">
<rdfs:label xml:lang="en">has collection site</rdfs:label>
<rdfs:comment xml:lang="en">Describes where the data of the cohort was collected</rdfs:comment>
<vann:example xml:lang="en">Cohort1 hasCollectionSite Toronto</vann:example>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<rdfs:domain rdf:resource="https://w3id.org/enigma#Cohort"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</rdf:Description>
<rdf:Description rdf:nodeID="A70">
<rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
<rdf:first rdf:resource="https://w3id.org/enigma#CohortProject"/>
</rdf:Description>
<rdf:Description rdf:nodeID="A84">
<rdf:rest rdf:nodeID="A85"/>
<rdf:first rdf:resource="https://w3id.org/enigma#CohortGroup"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/enigma#hasCountry">
<rdfs:label xml:lang="en">has country</rdfs:label>
<rdfs:comment xml:lang="en">The country name associated with the address of the object</rdfs:comment>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<rdfs:domain rdf:resource="https://w3id.org/enigma#Address"/>
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2006/vcard/ns#country-name"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/enigma#Address">
<rdfs:label xml:lang="en">Address</rdfs:label>
<rdfs:comment xml:lang="en">To specify the components of the delivery address for the object</rdfs:comment>
<rdfs:subClassOf rdf:resource="http://www.w3.org/2006/vcard/ns#Address"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/enigma#WorkingGroup">
<rdfs:label xml:lang="en">Working Group</rdfs:label>
<rdfs:comment xml:lang="en">Group of researchers studying a certain topic/disease</rdfs:comment>
<vann:example xml:lang="en">BipolarWG</vann:example>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/enigma#AnxietyDisorder">
<rdfs:label xml:lang="en">Anxiety Disorder</rdfs:label>
<rdfs:comment xml:lang="en">A mental health disorder defined by feelings of anxiety, fear, or worry</rdfs:comment>
<vann:example xml:lang="en">PTSD</vann:example>
<rdfs:subClassOf rdf:resource="https://w3id.org/enigma#MentalHealthDisorder"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:nodeID="A82">
<rdf:rest rdf:nodeID="A86"/>
<rdf:first rdf:resource="https://w3id.org/enigma#CohortGroup"/>
</rdf:Description>
<rdf:Description rdf:nodeID="A73">
<rdf:rest rdf:nodeID="A87"/>
<rdf:first rdf:resource="https://w3id.org/enigma#CohortGroup"/>
</rdf:Description>
<rdf:Description rdf:about="http://www.w3.org/2001/XMLSchema#gYear">
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Datatype"/>
</rdf:Description>
<rdf:Description rdf:nodeID="A74">
<rdf:rest rdf:nodeID="A88"/>
<rdf:first>protocol preparation</rdf:first>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
</rdf:Description>
<rdf:Description rdf:nodeID="A75">
<rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
<rdf:first rdf:resource="https://w3id.org/enigma#CohortProject"/>
</rdf:Description>
<rdf:Description rdf:nodeID="A77">
<rdf:rest rdf:nodeID="A89"/>
<rdf:first>African American</rdf:first>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
</rdf:Description>
<rdf:Description rdf:nodeID="A79">
<rdf:rest rdf:nodeID="A84"/>
<rdf:first rdf:resource="https://w3id.org/enigma#Cohort"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/enigma#hasNumberOfParticipants">
<rdfs:label xml:lang="en">has number of participants</rdfs:label>
<rdfs:comment xml:lang="en">Describes the number of participants in a cohort group or cohort project</rdfs:comment>
<vann:example xml:lang="en">CohortGroup2 hasNumberOfParticipants 200</vann:example>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#int"/>
<rdfs:domain rdf:nodeID="A90"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://vivoweb.org/ontology/core#Hospital">
<rdfs:label xml:lang="en">Hospital</rdfs:label>
<rdfs:isDefinedBy rdf:resource="http://vivoweb.org/ontology/core"/>
<rdfs:comment xml:lang="en">A hospital contributing to a given ENIGMA project</rdfs:comment>
<vann:example xml:lang="en">Children's Hospital Los Angeles</vann:example>
<rdfs:subClassOf rdf:resource="http://xmlns.com/foaf/0.1/Organization"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/enigma#DataType">
<rdfs:label xml:lang="en">Data Type</rdfs:label>
<rdfs:comment xml:lang="en">Specifies the kinds of data collected</rdfs:comment>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:nodeID="A81">
<rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
<rdf:first rdf:resource="https://w3id.org/enigma#Person"/>
</rdf:Description>
<rdf:Description rdf:nodeID="A91">
<owl:unionOf rdf:nodeID="A92"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/enigma#hasMemorandumOfUnderstanding">
<rdfs:label xml:lang="en">has memorandum of understanding</rdfs:label>
<rdfs:comment xml:lang="en">Describes the memorandum of understanding links of the working group</rdfs:comment>
<vann:example xml:lang="en">WorkingGroup1 hasMemorandumOfUnderstanding www.mouexample.com</vann:example>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<rdfs:domain rdf:resource="https://w3id.org/enigma#WorkingGroup"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</rdf:Description>
<rdf:Description rdf:nodeID="A93">
<owl:unionOf rdf:nodeID="A94"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="http://xmlns.com/foaf/0.1/givenName">
<rdfs:isDefinedBy rdf:resource="http://xmlns.com/foaf/0.1/"/>
<rdfs:comment xml:lang="en">The given name of some person.</rdfs:comment>
<rdfs:domain rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</rdf:Description>
<rdf:Description rdf:nodeID="A83">
<rdf:rest rdf:nodeID="A95"/>
<rdf:first rdf:resource="https://w3id.org/enigma#ImageAcquisitionProtocol"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/enigma#hasDegree">
<rdfs:label xml:lang="en">has degree</rdfs:label>
<rdfs:comment xml:lang="en">Describes what degree a person has (e.g., BsC, PhD, etc.)</rdfs:comment>
<vann:example xml:lang="en">JohnSmith hasDegree PhD</vann:example>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<rdfs:domain rdf:resource="https://w3id.org/enigma#Person"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/enigma#hasDate_ProposalApproval">
<rdfs:label xml:lang="en">has proposal approval date</rdfs:label>
<rdfs:comment xml:lang="en">Describes the date the proposal for a project was approved</rdfs:comment>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#date"/>
<rdfs:domain rdf:resource="https://w3id.org/enigma#Project"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</rdf:Description>
<rdf:Description rdf:nodeID="A15">
<owl:unionOf rdf:nodeID="A96"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:nodeID="A85">
<rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
<rdf:first rdf:resource="https://w3id.org/enigma#CohortProject"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/enigma#hasNumberOfMaleSex">
<rdfs:label xml:lang="en">has number of males</rdfs:label>
<rdfs:comment xml:lang="en">Describing the number of males in a cohort project</rdfs:comment>
<vann:example xml:lang="en">CohortGroup2 hasNumberOfMaleSex 12</vann:example>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#nonNegativeInteger"/>
<rdfs:domain rdf:resource="https://w3id.org/enigma#CohortProject"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://xmlns.com/foaf/0.1/Organization">
<rdfs:comment xml:lang="en">An organization contributing to a given ENIGMA project</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://xmlns.com/foaf/0.1"/>
<owl:equivalentClass rdf:resource="https://w3id.org/enigma#Organization"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="http://xmlns.com/foaf/0.1/homepage">
<rdfs:label>homepage</rdfs:label>
<rdfs:isDefinedBy rdf:resource="http://xmlns.com/foaf/0.1/"/>
<rdfs:comment>A homepage for some thing.</rdfs:comment>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
</rdf:Description>
<rdf:Description rdf:nodeID="A97">
<owl:unionOf rdf:nodeID="A98"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:nodeID="A86">
<rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
<rdf:first rdf:resource="https://w3id.org/enigma#CohortProject"/>
</rdf:Description>
<rdf:Description rdf:nodeID="A87">
<rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
<rdf:first rdf:resource="https://w3id.org/enigma#CohortProject"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/enigma#OrganicMedicalDisorder">
<rdfs:label xml:lang="en">Organic Medical Disorder</rdfs:label>
<rdfs:comment xml:lang="en">Disorder characterized by decreased mental function due to a medical or physical disease</rdfs:comment>
<vann:example xml:lang="en">Delirium</vann:example>
<rdfs:subClassOf rdf:resource="https://w3id.org/enigma#Disorder"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/enigma#requiresDataType">
<rdfs:label xml:lang="en">requires data type</rdfs:label>
<rdfs:comment xml:lang="en">Describes which data type is required by a project</rdfs:comment>
<rdfs:range rdf:resource="https://w3id.org/enigma#DataType"/>
<rdfs:domain rdf:resource="https://w3id.org/enigma#Project"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
</rdf:Description>
<rdf:Description rdf:nodeID="A88">
<rdf:rest rdf:nodeID="A99"/>
<rdf:first>published</rdf:first>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/enigma#hasMiddleInitial">
<rdfs:label xml:lang="en">has middle initial</rdfs:label>
<rdfs:comment>Describes middle initial of a person</rdfs:comment>
<vann:example>John A Smith hasMiddleInitial "A"</vann:example>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<rdfs:domain rdf:resource="https://w3id.org/enigma#Person"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</rdf:Description>
<rdf:Description rdf:nodeID="A32">
<owl:unionOf rdf:nodeID="A22"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
</rdf:Description>
<rdf:Description rdf:nodeID="A89">
<rdf:rest rdf:nodeID="A100"/>
<rdf:first>Asian</rdf:first>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/vocab/vann/preferredNamespacePrefix">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AnnotationProperty"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/dc/terms/contributor">
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/contributor"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AnnotationProperty"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/enigma#hasSpecies">
<rdfs:label xml:lang="en">has species</rdfs:label>
<rdfs:comment xml:lang="en">Describes the species of the subjects of a cohort (Humans, Chimps, Mice, etc.)</rdfs:comment>
<vann:example xml:lang="en">Cohort1 hasSpecies "humans"</vann:example>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<rdfs:domain rdf:nodeID="A45"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/enigma#hasPersonRole_ProtocolRunner">
<rdfs:label xml:lang="en">has protocol runner</rdfs:label>
<rdfs:comment xml:lang="en">Describes who ran a protocol for a given cohort</rdfs:comment>
<vann:example xml:lang="en">BipolarProject hasPersonRole_ProtocolRunner JohnSmith</vann:example>
<rdfs:range rdf:resource="https://w3id.org/enigma#Person"/>
<rdfs:domain rdf:resource="https://w3id.org/enigma#Project"/>
<rdfs:subPropertyOf rdf:resource="https://w3id.org/enigma#contributor"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/enigma#hasConflictOfInterest">
<rdfs:label xml:lang="en">has conflict of interest</rdfs:label>
<rdfs:comment xml:lang="en">Property linking an author with a conflict of interest that the author has on a paper</rdfs:comment>
<rdfs:range rdf:resource="https://w3id.org/enigma#ConflictOfInterest"/>
<rdfs:domain rdf:resource="https://w3id.org/enigma#Person"/>