-
Notifications
You must be signed in to change notification settings - Fork 1
/
emi_no_import.ttl
1522 lines (1195 loc) · 78.4 KB
/
emi_no_import.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://purl.org/emi/abox#> .
@prefix sw: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
@prefix up: <http://purl.uniprot.org/core/> .
@prefix wd: <http://www.wikidata.org/entity/> .
@prefix emi: <https://purl.org/emi#> .
@prefix npc: <https://purl.org/npc#> .
@prefix org: <http://www.w3.org/ns/org#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix sdo: <http://schema.org/> .
@prefix usi: <https://metabolomics-usi.ucsd.edu/dashinterface/?usi1=> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix bibo: <http://purl.org/ontology/bibo/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix obda: <https://w3id.org/obda/vocabulary#> .
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix qudt: <http://qudt.org/schema/qudt/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix sosa: <http://www.w3.org/ns/sosa/> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix voaf: <http://purl.org/vocommons/voaf#> .
@prefix void: <http://rdfs.org/ns/void#> .
@prefix orcid: <http://orcid.org/> .
@prefix widoco: <https://w3id.org/widoco/vocab#> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix geo: <http://www.w3.org/2003/01/geo/wgs84_pos#> .
@base <https://purl.org/emi/abox#> .
<https://purl.org/emi> rdf:type owl:Ontology ;
owl:versionIRI <https://purl.org/emi/version/0.3> ;
dcterms:abstract "The Earth Metabolome Initiative ontology is mainly designed as data schema to structure and describe natural product taxonomy, spectrum annotation provenance, sample and observation data, mass spectrometry data and analysis, and chemical structure representations. The EMI ontology replaces the [ENPKG vocabulary](https://enpkg.commons-lab.org/doc/index.html)." ;
dcterms:bibliographicCitation "The Earth Metabolome Initiative Consortium. The Earth Metabolome Initiative (EMI) ontology. Revision: 0.3. Retrieved from: https://purl.org/emi/version/0.3" ;
dcterms:contributor <https://orcid.org/0000-0001-9292-9463> ,
<https://orcid.org/0000-0002-3648-7362> ,
<https://orcid.org/0000-0002-9619-1707> ,
<https://orcid.org/0000-0003-3389-2191> ,
<https://orcid.org/0000-0002-1269-2038> ,
<https://orcid.org/0000-0002-3175-5372> ,
<https://orcid.org/0000-0003-3213-4495> ,
<https://orcid.org/0009-0005-5515-1230>;
dcterms:created "2023-11-02"^^xsd:date ;
dcterms:creator <https://orcid.org/0000-0002-3175-5372> ;
dcterms:description "The Earth Metabolome Initiative (EMI) ontology is designed to capture and structure the metabolic content of all currently known species on our planet."@en ;
dcterms:issue "2024-04-03"^^xsd:date ;
dcterms:license <https://creativecommons.org/publicdomain/zero/1.0> ;
dcterms:modified "2024-12-18"^^xsd:date ;
dcterms:publisher <https://www.earthmetabolome.org> ;
dcterms:replaces <https://enpkg.commons-lab.org/kg/ontology_version/0.1.0> ;
dcterms:title "The Earth Metabolome Initiative (EMI) ontology"@en ;
bibo:status <http://purl.org/ontology/bibo/status/draft> ;
vann:preferredNamespacePrefix "emi" ;
vann:preferredNamespaceUri emi: ;
sdo:codeRepository "https://github.com/digital-botanical-gardens-initiative/earth_metabolome_ontology"^^xsd:anyURI ;
sdo:image <http://www.dbgi.org/earth_metabolome_ontology/images/EMI-diagram.png> ;
rdfs:seeAlso <https://bioschemas.org> ,
<https://schema.org> ,
<https://enpkg.commons-lab.org/doc/index.html> ;
owl:versionInfo "0.3" ;
foaf:logo <https://www.dbgi.org/earth_metabolome_ontology/images/logo.png> ;
widoco:introduction """The Earth Metabolome Initiative (EMI) ontology replaces the Experimental Natural Products Knowledge Graph [(ENPKG) vocabulary]( https://enpkg.commons-lab.org/doc/index.html). The EMI ontology is used to structure spectrum annotation provenance by reusing the [PROV-O ontology](https://www.w3.org/TR/prov-o/) (a W3C recommendation) and sample and observation data by applying the [SOSA ontology](https://www.w3.org/TR/vocab-ssn/). EMI reuses the SOSA ontology as a data schema for struturing the Sample and Observation data. SOSA (Sensor, Observation, Sample, and Actuator) is a subset of SSN (Semantic Sensor Network Ontology) that is a W3C recommendation. Although, the SSN was developed with ontology engineers in mind as the primary audience. They addressed changes in scope and audience that currently also includes scientific observations that may make heavy use of sampling strategies, and, therefore, the Sampling, Sampler, and Sample classes, as well as their corresponding properties, have been added to SOSA and SSN. Chemical taxonomy is also highly structure in EMI by relying on a taxonomy derived from NPClassifier (i.e., EMI imports [Natural Product Classifier vocabulary](https://purl.org/npc)). This taxonomy was defined for EMI with the [SKOS vocabulary](https://www.w3.org/TR/skos-reference). Indeed, it is an SKOS-based vocabulary for the structural classification of natural products. The skos:broder term is used to represent the hierarchy among Classes, Superclasses and Pathways. npc:Class, npc:Superclass and npc:Pathway are subclasses of skos:Concept. rdfs:label is assigned for each term of the taxonomy that are instances of one of the subclasses of skos:Concept.
SOSA reuse. We consider a Mass Spectrometer as a sosa:Platform. The MS detector that belongs to a Mass Spectrometer is a Sensor. If we do not want to capture the equipment (Mass Spectrometer for provenance) of the generated analysis such as by Liquid chromatography–mass spectrometry (LCMS), we can ignore/ommit it. The observation is interpreted as a prov:Activity/sosa:Observation/emi:Analysis (the Analysis as defined in the Earth Metabolome Intiative model). This observation (a.k.a. LCMS Analysis) uses (prov:use/sosa:hasFeatureOfInterest) some sample. This sample comes from some emi:System (e.g., species or another sample like a Raw Material, a broader specimen). All EMI model classes related to samples are subclasses of sosa:Sample, notably emi:Aliquot, emi:Blank, emi:ExtractSample, emi:RawMaterial and emi:QCSample.
We can classify each Specimen by using some Specimen taxonomy, for example, [specimenType](https://isamplesorg.github.io/models/generated/vocabularies/specimenType.html) that relies on SKOS. Moreover, we can also classify a sample with an external material taxonomy (e.g., [materialType](https://isamplesorg.github.io/models/generated/vocabularies/materialType.html#organicmaterial)). The raw material (emi:RawMaterial) is also a sosa:sample. In case it is needed to describe the \"Mass Spectrometer\" as a sampler too, we can apply the sosa:Sampler class to define it. The sampling process resuts on subsamples (e.g., emi:Aliquot). The extracted sample can be classified with an external taxonomy (e.g., an Specimen taxonomy) with the term emi:isClassifiedWith.
Other metabolomics data are structured with specific EMI classes such as emi:ChemicalStrucutre for represeting molecules, emi:MS2Spectrum for the mass spectrometry (MS2 spectra), emi:LCMSFeatureSet that represents features obtained from the processing of a given LCMS analysis, please refer to classes and properties descriptions. """ .
#################################################################
# Annotation properties
#################################################################
### http://purl.org/dc/elements/1.1/date
<http://purl.org/dc/elements/1.1/date> rdf:type owl:AnnotationProperty .
### http://purl.org/dc/elements/1.1/description
<http://purl.org/dc/elements/1.1/description> rdf:type owl:AnnotationProperty .
### http://purl.org/dc/elements/1.1/title
<http://purl.org/dc/elements/1.1/title> rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/bibliographicCitation
dcterms:bibliographicCitation rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/contributor
dcterms:contributor rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/creator
dcterms:creator rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/description
dcterms:description rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/issued
dcterms:issued rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/license
dcterms:license rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/publisher
dcterms:publisher rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/replaces
dcterms:replaces rdf:type owl:AnnotationProperty ;
dcterms:description "This property is intended to be used with non-literal values. This property is an inverse property of Is Replaced By."@en ;
dcterms:issued "2000-07-11"^^xsd:date ;
rdfs:comment "A related resource that is supplanted, displaced, or superseded by the described resource."@en ;
rdfs:isDefinedBy dcterms: ;
rdfs:label "Replaces"@en .
### http://purl.org/dc/terms/title
dcterms:title rdf:type owl:AnnotationProperty .
### http://purl.org/vocab/vann/example
vann:example rdf:type owl:AnnotationProperty .
### http://purl.org/vocab/vann/preferredNamespacePrefix
vann:preferredNamespacePrefix rdf:type owl:AnnotationProperty .
### http://purl.org/vocab/vann/preferredNamespaceUri
vann:preferredNamespaceUri rdf:type owl:AnnotationProperty .
### http://schema.org/image
sdo:image rdf:type owl:AnnotationProperty .
### http://www.w3.org/2004/02/skos/core#altLabel
skos:altLabel rdf:type owl:AnnotationProperty ;
rdfs:comment "The range of skos:altLabel is the class of RDF plain literals."@en ,
"skos:prefLabel, skos:altLabel and skos:hiddenLabel are pairwise disjoint properties."@en ;
rdfs:isDefinedBy <http://www.w3.org/2004/02/skos/core> ;
rdfs:label "alternative label"@en ;
skos:definition "An alternative lexical label for a resource."@en ;
skos:example "Acronyms, abbreviations, spelling variants, and irregular plural/singular forms may be included among the alternative labels for a concept. Mis-spelled terms are normally included as hidden labels (see skos:hiddenLabel)."@en ;
rdfs:subPropertyOf rdfs:label .
### http://www.w3.org/2004/02/skos/core#definition
skos:definition rdf:type owl:AnnotationProperty .
### http://www.w3.org/2004/02/skos/core#example
skos:example rdf:type owl:AnnotationProperty .
### http://www.w3.org/2004/02/skos/core#prefLabel
skos:prefLabel rdf:type owl:AnnotationProperty ;
rdfs:comment "A resource has no more than one value of skos:prefLabel per language tag, and no more than one value of skos:prefLabel without language tag."@en ,
"The range of skos:prefLabel is the class of RDF plain literals."@en ,
"""skos:prefLabel, skos:altLabel and skos:hiddenLabel are pairwise
disjoint properties."""@en ;
rdfs:isDefinedBy <http://www.w3.org/2004/02/skos/core> ;
rdfs:label "preferred label"@en ;
skos:definition "The preferred lexical label for a resource, in a given language."@en ;
rdfs:subPropertyOf rdfs:label .
### http://xmlns.com/foaf/0.1/based_near
foaf:based_near rdf:type owl:AnnotationProperty .
### http://xmlns.com/foaf/0.1/logo
foaf:logo rdf:type owl:AnnotationProperty .
### https://purl.org/emi#hasIonization
emi:hasIonization rdf:type owl:AnnotationProperty ;
rdfs:range xsd:string .
#################################################################
# Datatypes
#################################################################
### http://www.w3.org/2001/XMLSchema#date
xsd:date rdf:type rdfs:Datatype .
#################################################################
# Object Properties
#################################################################
### http://purl.uniprot.org/core/rank
up:rank rdf:type owl:ObjectProperty ;
rdfs:domain up:Taxon ;
rdfs:range up:Rank ;
rdfs:comment "The rank of a taxon." ;
rdfs:isDefinedBy up: ;
rdfs:label "rank" .
### http://www.w3.org/ns/sosa/hasResult
sosa:hasResult vann:example """@prefix : <https://purl.org/emi/abox#> .
@prefix emi: <https://purl.org/emi#> .
@prefix sosa: <http://www.w3.org/ns/sosa/> .
:VGF153_A02_neg.mzXML rdf:type emi:LCMSAnalysisNeg, emi:LCMSAnalysis, sosa:Observation ;
sosa:hasResult :VGF153_A02_lcms_feature_list_neg .
:VGF153_A02_lcms_feature_list_neg rdf:type emi:LCMSFeatureSet.""" .
### http://xmlns.com/foaf/0.1/depiction
foaf:depiction rdf:type owl:ObjectProperty ;
rdfs:comment "http://www.simolecule.com/cdkdepict/depict/bow/svg?smi=CCCCCCCCCCCC%5BC%40%40H%5D(O)%5BC%40H%5D1CCC(C2CCC(CC(O)CCCCC%5BC%40%40H%5D(O)CC3%3DC%5BC%40H%5D(C)OC3%3DO)O2)O1&zoom=2.0&annotate=cip" .
### https://purl.org/emi#hasAnatomicalEntity
emi:hasAnatomicalEntity rdf:type owl:ObjectProperty ;
rdfs:domain sosa:Sample ;
rdfs:range emi:AnatomicalEntity ;
rdfs:label "has anatomical entity"@en ;
rdfs:comment "It can be used to assign an anatomical entity (e.g., body parts) to a source and/or target organism sample in an interaction system such as GloBI. When applicable, we recommend to state UBERON vocabulary anatomical entity terms." .
### https://purl.org/emi#hasAnnotation
emi:hasAnnotation rdf:type owl:ObjectProperty ;
rdfs:domain emi:MS2Spectrum ;
rdfs:range emi:SpectrumAnnotation ;
rdfs:label "has annotation" .
### https://purl.org/emi#hasChemicalStructure
emi:hasChemicalStructure rdf:type owl:ObjectProperty ;
rdfs:domain emi:StructuralAnnotation ;
rdfs:range emi:ChemicalStructure ;
rdfs:comment "Recommendation: prefer the chemical structure representation 2D InChIKey that also represents a collection of InChIKeys (i.e. chemicals) with common attributes. As a result, we can reduce the number of triples and redundacy to represent the same information that are common to many chemicals." ;
rdfs:label "has chemical structure representation" .
### https://purl.org/emi#hasClass
emi:hasClass rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf emi:isClassifiedWith ;
rdfs:domain [ rdf:type owl:Class ;
owl:unionOf ( emi:ChemicalStructure
emi:ChemicalTaxonAnnotation
)
] ;
rdfs:range npc:Class ;
owl:propertyDisjointWith emi:hasSuperClass ;
vann:example """@prefix : <https://purl.org/emi/abox#> .
@prefix emi: <https://purl.org/emi#> .
@prefix npc: <https://purl.org/npc#> .
:CANOPUS-mzspec%3AMSV000087728%3AVGF147_E06_features_ms2_neg.mgf%3Ascan%3A45 rdf:type emi:ChemicalTaxonAnnotation ;
emi:hasClass \"npc:CADINANE_SESQUITERPENOIDS\" .""" ;
rdfs:label "has class" .
### https://purl.org/emi#hasConsensusSpectrum
emi:hasConsensusSpectrum rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf emi:hasSpectrum ;
rdf:type owl:FunctionalProperty ;
rdfs:domain emi:LCMSFeature ;
rdfs:range emi:GNPSConsensusSpectrum ;
rdfs:label "has consensus spectrum" .
### https://purl.org/emi#hasDevelopmentalStage
emi:hasDevelopmentalStage rdf:type owl:ObjectProperty ;
rdfs:domain sosa:Sample ;
rdfs:range emi:DevelopmentalStage ;
rdfs:comment "The source or target organism sample of an interaction system such as GloBI can have a developmental stage." ;
rdfs:label "has developmental stage" .
### https://purl.org/emi#hasFBMNComponent
emi:hasFBMNComponent rdf:type owl:ObjectProperty ;
rdfs:domain emi:LCMSFeature ;
vann:example """@prefix emi: <https://purl.org/emi#> .
@prefix usi: <https://metabolomics-usi.ucsd.edu/dashinterface/?usi1=> .
usi:mzspec%3AMSV000087728%3AVGF153_A02_features_ms2_neg.mgf%3Ascan%3A356 rdf:type emi:LCMSFeature ;
emi:hasFBMNComponent :VGF153_A02_fbmn_neg_componentindex_0 .""" ;
rdfs:comment "Feature-based molecular network component." ;
rdfs:label "has FBMN component" .
### https://purl.org/emi#hasFirstMember
emi:hasFirstMember rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf emi:hasPairMember ;
rdf:type owl:FunctionalProperty ;
rdfs:domain emi:LFpair ;
rdfs:range emi:LCMSFeature ;
rdfs:comment "The first member of a spectral pair." ;
rdfs:label "has first member" .
### https://purl.org/emi#hasInChIKey
emi:hasInChIKey rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
owl:inverseOf emi:isInChIKeyOf ;
rdfs:domain [ rdf:type owl:Class ;
owl:unionOf ( emi:Chemical
emi:SpectrumAnnotation
)
] ;
rdfs:range emi:InChIKey ;
owl:propertyChainAxiom ( emi:hasChemicalStructure
emi:isInChIKey2DOf
) ;
vann:example """@prefix : <https://purl.org/emi/abox#> .
@prefix emi: <https://purl.org/emi#> .
@prefix wd: <http://www.wikidata.org/entity/> .
wd:Q27145340 rdf:type emi:Chemical ;
dcterms:identifier \"Q27145340\" ;
emi:hasInChIKey :ZCCLDKGWJIREQF-PDBXOOCHSA-N .""" ;
rdfs:comment "It can be used to assign an InChIKey either to a chemical or to an spectrum annotation." ;
rdfs:label "has InChIKey" .
### https://purl.org/emi#hasInChIKey2D
emi:hasInChIKey2D rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
owl:inverseOf emi:isInChIKey2DOf ;
rdf:type owl:FunctionalProperty ;
rdfs:domain emi:InChIKey ;
rdfs:range emi:InChIKey2D ;
vann:example """@prefix : <https://purl.org/emi/abox#> .
@prefix emi: <https://purl.org/emi#> .
@prefix wd: <http://www.wikidata.org/entity/> .
:ZCCLDKGWJIREQF-PDBXOOCHSA-N rdf:type emi:InChIKey ;
emi:hasInChIKey2D :ZCCLDKGWJIREQF .""" ;
rdfs:comment "It can be used to represent the InChIKey2D of an emi:InChIKey that is chemical structure." ;
rdfs:label "has InChIKey2D" .
### https://purl.org/emi#hasLCMS
#emi:hasLCMS rdf:type owl:ObjectProperty ,
# owl:FunctionalProperty ;
# rdfs:domain sosa:Sample ;
# rdfs:range emi:LCMSAnalysis ;
# rdfs:label "has LCMS analysis" ;
# owl:deprecated "replaced by sosa:isFeatureOfInterestOf and its inverse property sosa:hasFeatureOfInterest" .
### https://purl.org/emi#hasLCMSFeature
emi:hasLCMSFeature rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf emi:hasSpectrum ;
rdfs:domain emi:LCMSFeatureSet ;
rdfs:range emi:LCMSFeature ;
vann:example """@prefix emi: <https://purl.org/emi#> .
@prefix : <https://purl.org/emi/abox#> .
@prefix usi: <https://metabolomics-usi.ucsd.edu/dashinterface/?usi1=> .
:VGF153_A02_lcms_feature_list_neg rdf:type emi:LCMSFeatureSet ;
emi:hasLCMSFeature usi:mzspec%3AMSV000087728%3AVGF153_A02_features_ms2_neg.mgf%3Ascan%3A1 .""" ;
rdfs:comment "It relates a LCMS feature set to a feature." ;
rdfs:label "has LCMS feature" .
### https://purl.org/emi#hasLCMSFeatureSet
emi:hasLCMSFeatureSet rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf sosa:hasResult ;
rdfs:domain emi:LCMSAnalysis ;
rdfs:range emi:LCMSFeatureSet ;
vann:example """@prefix emi: <https://purl.org/emi#> .
:VGF138_A02_neg.mzXML rdf:type emi:LCMSAnalysis ;
emi:hasLCMSFeatureSet :VGF153_A02_lcms_feature_list_neg .""" ;
rdfs:comment "It relates a LCMS analysis to a set of features." ;
rdfs:label "has LCMS feature set" .
### https://purl.org/emi#hasLabProcess
#emi:hasLabProcess rdf:type owl:ObjectProperty ;
# rdfs:domain emi:RawMaterial ;
# rdfs:range emi:ExtractSample ;
# rdfs:comment "The resulted extract after performing a sampling (e.g., a lab process)." ;
# rdfs:label "has processed sample" ;
# owl:deprecated "replaced by \"sosa:hasSample\" and its inverse property \"sosa:isSampleOf\"" .
### https://purl.org/emi#hasMassiveDOI
emi:hasMassiveDOI rdf:type owl:ObjectProperty ;
rdfs:domain emi:LCMSAnalysis ;
vann:example """@prefix emi: <https://purl.org/emi#> .
@prefix : <https://purl.org/emi/abox#> .
@prefix usi: <https://metabolomics-usi.ucsd.edu/dashinterface/?usi1=> .
:VGF138_A02_neg.mzXML rdf:type emi:LCMSAnalysis ;
emi:hasMassiveDOI <https://massive.ucsd.edu/ProteoSAFe/dataset.jsp?accession=MSV000087728> .""" ;
rdfs:comment "It assigns a Massive repository DOI to a LCMS Analysis." ;
rdfs:label "has Massive DOI." .
### https://purl.org/emi#hasPairMember
emi:hasPairMember rdf:type owl:ObjectProperty ;
rdfs:domain emi:SpectralPair ;
rdfs:range emi:MS2Spectrum ;
rdfs:comment "LCMSFeature" ;
rdfs:label "has pair member" .
### https://purl.org/emi#hasPathway
emi:hasPathway rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf emi:isClassifiedWith ;
rdfs:domain [ rdf:type owl:Class ;
owl:unionOf ( emi:ChemicalStructure
emi:ChemicalTaxonAnnotation
)
] ;
rdfs:range npc:Pathway ;
vann:example """@prefix emi: <https://purl.org/emi#> .
@prefix : <https://purl.org/emi/abox#> .
@prefix npc: <https://purl.org/npc#> .
:CANOPUS-mzspec%3AMSV000087728%3AVGF147_E06_features_ms2_neg.mgf%3Ascan%3A45 rdf:type emi:ChemicalTaxonAnnotation ;
emi:hasPathway npc:TERPENOIDS .""" ;
rdfs:label "has pathway" .
### https://purl.org/emi#hasPhysiologicalStage
emi:hasPhysiologicalStage rdf:type owl:ObjectProperty ;
rdfs:domain sosa:Sample ;
rdfs:range emi:PhysiologicalStage ;
rdfs:comment "It can be used to assign a physiological stage to a source and/or target organism sample in an interaction system such as GloBI. When applicable, we recommend to state PATO vocabulary anatomical entity terms." ;
rdfs:label "has physiological stage" .
### https://purl.org/emi#hasSecondMember
emi:hasSecondMember rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf emi:hasPairMember ;
rdf:type owl:FunctionalProperty ;
rdfs:domain emi:LFpair ;
rdfs:range emi:LCMSFeature ;
rdfs:comment "The second member of a spectral pair." ;
rdfs:label "has second member" .
### https://purl.org/emi#hasSex
emi:hasSex rdf:type owl:ObjectProperty ;
rdfs:domain [ rdf:type owl:Class ;
owl:unionOf ( emi:Organism
emi:OrganismGroup )
] ;
rdfs:range emi:BiologicalSex ;
rdfs:label "has sex" ;
rdfs:comment "It can be used to assign a biological sex to a source and/or target organism sample in an interaction system such as GloBI. When applicable, we recommend to state PATO vocabulary biological sex terms." .
### https://purl.org/emi#hasSpec2VecDoc
emi:hasSpec2VecDoc rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdfs:domain emi:LCMSFeature ;
rdfs:range emi:Spec2VecDoc ;
vann:example """@prefix emi: <https://purl.org/emi#> .
@prefix : <https://purl.org/emi/abox#> .
@prefix usi: <https://metabolomics-usi.ucsd.edu/dashinterface/?usi1=> .
usi:mzspec%3AMSV000087728%3AVGF153_A02_features_ms2_neg.mgf%3Ascan%3A356 rdf:type emi:LCMSFeature ;
emi:hasSpec2VecDoc :spec2vec_doc_mzspec%3AMSV000087728%3AVGF153_A02_features_ms2_neg.mgf%3Ascan%3A356 .""" ;
rdfs:label "has spec2vec documentation" .
### https://purl.org/emi#hasSpectrum
emi:hasSpectrum rdf:type owl:ObjectProperty ;
rdfs:range emi:MS2Spectrum ;
vann:example """@prefix emi: <https://purl.org/emi#> .
@prefix : <https://purl.org/emi/abox#> .
@prefix usi: <https://metabolomics-usi.ucsd.edu/dashinterface/?usi1=> .
:VGF153_A02_lcms_feature_list_neg rdf:type emi:LCMSFeatureSet ;
emi:hasSpectrum usi:mzspec%3AMSV000087728%3AVGF153_A02_features_ms2_neg.mgf%3Ascan%3A1 .""" ;
rdfs:comment "It assigns a MS2 spectrum to, for instance, a LCMS feature set. The domain is not defined to provide flexibility. For a LCMS feature set prefer to state the emi:hasLCMSFeature property." ;
rdfs:label "has spectrum" .
### https://purl.org/emi#hasSuperClass
emi:hasSuperClass rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf emi:isClassifiedWith ;
rdfs:domain [ rdf:type owl:Class ;
owl:unionOf ( emi:ChemicalStructure
emi:ChemicalTaxonAnnotation
)
] ;
rdfs:range npc:Superclass ;
vann:example """@prefix emi: <https://purl.org/emi#> .
@prefix : <https://purl.org/emi/abox#> .
@prefix npc: <https://purl.org/npc#> .
:CANOPUS-mzspec%3AMSV000087728%3AVGF147_E06_features_ms2_neg.mgf%3Ascan%3A45 rdf:type emi:ChemicalTaxonAnnotation ;
emi:hasSuperClass npc:SESQUITERPENOIDS .""" ;
rdfs:label "has super class" .
### https://purl.org/emi#hasSource
emi:hasSource rdf:type owl:ObjectProperty ;
rdfs:domain emi:Interaction ;
rdfs:range sosa:Sample ;
rdfs:label "has source" ;
rdfs:comment "An interaction system has a source sample that interacts with a target one. emi:hasSource should state the origin of an interaction." .
### https://purl.org/emi#hasTarget
emi:hasTarget rdf:type owl:ObjectProperty ;
rdfs:domain emi:Interaction ;
rdfs:range sosa:Sample ;
rdfs:label "has target" ;
rdfs:comment "An interaction system has a source sample that interacts with a target one. emi:hasTarget should state the target of an interaction." .
### https://purl.org/emi#has_habitat
emi:hasHabitat rdf:type owl:ObjectProperty ;
rdfs:domain emi:Interaction ;
rdfs:range emi:Habitat ;
rdfs:comment "It can be used to assign a habitat to an interaction system such as from GloBI. When applicable, we recommend to state ENVO or CMECS vocabulary terms." ;
rdfs:label "has habitat" .
### https://purl.org/emi#inTaxon
emi:inTaxon rdf:type owl:ObjectProperty ;
rdfs:domain [ rdf:type owl:Class ;
owl:unionOf ( sosa:Sample
emi:InChIKey
emi:Organism
)
] ;
rdfs:range [ rdf:type owl:Class ;
owl:unionOf ( up:Taxon
emi:Taxon
)
] ;
rdfs:label "found in taxon" .
### https://purl.org/emi#isClassifiedWith
emi:isClassifiedWith rdf:type owl:ObjectProperty ;
vann:example """@prefix : <https://purl.org/emi/abox#> .
@prefix emi: <https://purl.org/emi#> .
@prefix npc: <https://purl.org/npc#> .
:CANOPUS-mzspec%3AMSV000087728%3AVGF147_E06_features_ms2_neg.mgf%3Ascan%3A45 rdf:type emi:ChemicalTaxonAnnotation ;
emi:isClassifiedWith npc:CADINANE_SESQUITERPENOIDS .""" ;
rdfs:comment "It is used to classify any individidual with an external controlled-vocabulary in case rdf:type is not the most suitable solution." ;
rdfs:label "is classified with" .
### https://purl.org/emi#isInChIKey2DOf
emi:isInChIKey2DOf rdf:type owl:ObjectProperty ,
owl:InverseFunctionalProperty ;
rdfs:domain emi:InChIKey2D ;
rdfs:range emi:InChIKey ;
vann:example """@prefix : <https://purl.org/emi/abox#> .
@prefix emi: <https://purl.org/emi#> .
@prefix wd: <http://www.wikidata.org/entity/> .
:ZCCLDKGWJIREQF-PDBXOOCHSA-N rdf:type emi:InChIKey2D ;
emi:isInChIKey2DOf :ZCCLDKGWJIREQF ;
rdfs:label \"ZCCLDKGWJIREQF\" .
:ZCCLDKGWJIREQF-PDBXOOCHSA-N rdf:type emi:InChIKey. """ ;
rdfs:comment "It can be used to assign an InChIKey2D to an InChIKey that represents a chemical structure." ;
rdfs:label "is InChIKey2D of" .
### https://purl.org/emi#isInChIKeyOf
emi:isInChIKeyOf rdf:type owl:ObjectProperty ;
rdfs:domain emi:InChIKey ;
rdfs:range [ rdf:type owl:Class ;
owl:unionOf ( emi:Chemical
emi:SpectrumAnnotation
)
] ;
vann:example """@prefix : <https://purl.org/emi/abox#> .
@prefix emi: <https://purl.org/emi#> .
@prefix wd: <http://www.wikidata.org/entity/> .
@prefix dcterms: < http://purl.org/dc/terms/> .
wd:Q27145340 rdf:type emi:Chemical ;
dcterms:identifier \"Q27145340\" .
:ZCCLDKGWJIREQF-PDBXOOCHSA-N emi:isInChIKeyOf wd:Q27145340 . """ ;
rdfs:label "is InChIKey of" .
#################################################################
# Data properties
#################################################################
### https://purl.org/emi#componentLink
emi:componentLink rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain emi:GNPSConsensusSpectrum ;
rdfs:range xsd:anyURI ;
rdfs:label "component link" .
### https://purl.org/emi#hasAdduct
emi:hasAdduct rdf:type owl:DatatypeProperty ;
rdfs:domain emi:StructuralAnnotation ;
rdfs:range xsd:string ;
rdfs:label "has adduct" .
### https://purl.org/emi#hasClassProbability
emi:hasClassProbability rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf emi:hasProbability ;
rdfs:domain emi:ChemicalTaxonAnnotation ;
rdfs:range xsd:double ;
vann:example """@prefix : <https://purl.org/emi/abox#> .
@prefix emi: <https://purl.org/emi#> .
:CANOPUS-mzspec%3AMSV000087728%3AVGF147_E06_features_ms2_neg.mgf%3Ascan%3A45 rdf:type emi:ChemicalTaxonAnnotation ;
emi:hasClassProbability \"0.6451306343078613\"^^xsd:double .""" .
### https://purl.org/emi#hasConsistencyScore
emi:hasConsistencyScore rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf emi:hasScore ;
rdfs:domain emi:StructuralAnnotation ;
rdfs:range xsd:integer ;
rdfs:comment "An ISDB score." ;
rdfs:label "has consistency score" .
### https://purl.org/emi#hasCosine
emi:hasCosine rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain emi:SpectralPair ;
rdfs:range xsd:double ;
rdfs:label "has cosine" .
### https://purl.org/emi#hasCosmicScore
emi:hasCosmicScore rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf emi:hasScore ;
rdfs:domain emi:StructuralAnnotation ;
rdfs:range xsd:double ;
rdfs:label "has cosmic score" .
### https://purl.org/emi#hasFeatureArea
emi:hasFeatureArea rdf:type owl:DatatypeProperty ;
rdfs:range xsd:double ;
vann:example """@prefix emi: <https://purl.org/emi#> .
@prefix usi: <https://metabolomics-usi.ucsd.edu/dashinterface/?usi1=> .
usi:mzspec%3AMSV000087728%3AVGF153_A02_features_ms2_neg.mgf%3Ascan%3A356 rdf:type emi:LCMSFeature ;
emi:hasFeatureArea \"1180836.665658199\"^^xsd:double .""" ;
rdfs:comment "Assign a feature area to a MS2 spectrum." ;
rdfs:label "has feature area" .
### https://purl.org/emi#hasFinalScore
emi:hasFinalScore rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf emi:hasScore ;
rdf:type owl:FunctionalProperty ;
rdfs:domain emi:StructuralAnnotation ;
rdfs:range xsd:double ;
rdfs:comment "An ISDB score." ;
rdfs:label "has final score" .
### https://purl.org/emi#hasGNPSLCMSLink
emi:hasGNPSLCMSLink rdf:type owl:DatatypeProperty ;
rdfs:domain emi:LCMSAnalysis ;
rdfs:range xsd:anyURI ;
vann:example """@prefix emi: <https://purl.org/emi#> .
@prefix : <https://purl.org/emi/abox#> .
@prefix usi: <https://metabolomics-usi.ucsd.edu/dashinterface/?usi1=> .
:VGF138_A02_neg.mzXML rdf:type emi:LCMSAnalysis ;
emi:hasGNPSLCMSLink \"https://dashboard.gnps2.org/?usi=mzspec%3AMSV000087728%3AVGF138_A02_neg.mzXML\"^^xsd:anyURI .""" ;
rdfs:comment "It relates GNPS LCMS link to a LCMS Analysis." ;
rdfs:label "has GNPS LCMS link" .
### https://purl.org/emi#hasIonization
emi:hasIonization rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain <http://org.semanticweb.owlapi/error#Error1> .
### https://purl.org/emi#hasMassDifference
emi:hasMassDifference rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain emi:SpectralPair ;
rdfs:range xsd:double ;
rdfs:label "has Mass difference" .
### https://purl.org/emi#hasParentMass
emi:hasParentMass rdf:type owl:DatatypeProperty ;
rdfs:domain emi:LCMSFeature ;
rdfs:range xsd:double ;
vann:example """@prefix emi: <https://purl.org/emi#> .
@prefix usi: <https://metabolomics-usi.ucsd.edu/dashinterface/?usi1=> .
usi:mzspec%3AMSV000087728%3AVGF153_A02_features_ms2_neg.mgf%3Ascan%3A356 rdf:type emi:LCMSFeature ;
emi:hasParentMass \"833.447509765625\"^^xsd:double .""" ;
rdfs:comment "The parent mass of a LCMS feature." ;
rdfs:label "has parent mass" .
### https://purl.org/emi#hasPathwayProbability
emi:hasPathwayProbability rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf emi:hasProbability ;
rdfs:domain emi:ChemicalTaxonAnnotation ;
rdfs:range xsd:double ;
vann:example """@prefix : <https://purl.org/emi/abox#> .
@prefix emi: <https://purl.org/emi#> .
:CANOPUS-mzspec%3AMSV000087728%3AVGF147_E06_features_ms2_neg.mgf%3Ascan%3A45 rdf:type emi:ChemicalTaxonAnnotation ;
emi:hasPathwayProbability \"0.5601769685745239\"^^xsd:double .""" .
### https://purl.org/emi#hasProbability
emi:hasProbability rdf:type owl:DatatypeProperty ;
rdfs:range xsd:double ;
vann:example """@prefix : <https://purl.org/emi/abox#> .
@prefix emi: <https://purl.org/emi#> .
:CANOPUS-mzspec%3AMSV000087728%3AVGF147_E06_features_ms2_neg.mgf%3Ascan%3A45 rdf:type emi:ChemicalTaxonAnnotation ;
emi:hasProbability \"0.5601769685745239\"^^xsd:double .""" ;
rdfs:label "has probability" .
### https://purl.org/emi#hasRawSpectrum
emi:hasRawSpectrum rdf:type owl:DatatypeProperty ;
rdfs:domain emi:LCMSFeature ;
rdfs:range xsd:string ;
vann:example """@prefix emi: <https://purl.org/emi#> .
@prefix usi: <https://metabolomics-usi.ucsd.edu/dashinterface/?usi1=> .
usi:mzspec%3AMSV000087728%3AVGF153_A02_features_ms2_neg.mgf%3Ascan%3A356 rdf:type emi:LCMSFeature ;
emi:hasRawSpectrum \"((58.7747, 0.034375), (107.3847, 0.0453125), (177.2855, 0.0375), (185.9186, 0.0375), (243.0295, 0.484375), (257.0457, 0.21875), (270.0167, 0.0765625), (271.0244, 0.4375), (285.0398, 0.359375), (300.028, 0.15625), (313.0341, 0.171875), (314.0425, 1.0), (315.0507, 0.640625), (551.4942, 0.0453125), (619.0516, 0.0375), (675.5888, 0.0421875))\" .""" ;
rdfs:comment "The raw spectrum of a LCMS individual MS2 spectrum. Its value is a tuple of binary tuples (see vann:example)." .
### https://purl.org/emi#hasRelativeFeatureArea
emi:hasRelativeFeatureArea rdf:type owl:DatatypeProperty ;
rdfs:domain emi:LCMSFeature ;
rdfs:range xsd:double ;
vann:example """@prefix emi: <https://purl.org/emi#> .
@prefix usi: <https://metabolomics-usi.ucsd.edu/dashinterface/?usi1=> .
usi:mzspec%3AMSV000087728%3AVGF153_A02_features_ms2_neg.mgf%3Ascan%3A356 rdf:type emi:LCMSFeature ;
emi:hasRelativeFeatureArea \"0.0004294112935902454\"^^xsd:double .""" ;
rdfs:comment "The relative feature area of a LCMS individual MS2 spectrum." ;
rdfs:label "has relative feature area" .
### https://purl.org/emi#hasRetentionTime
emi:hasRetentionTime rdf:type owl:DatatypeProperty ;
rdfs:domain emi:LCMSFeature ;
rdfs:range xsd:double ;
vann:example """@prefix emi: <https://purl.org/emi#> .
@prefix usi: <https://metabolomics-usi.ucsd.edu/dashinterface/?usi1=> .
usi:mzspec%3AMSV000087728%3AVGF153_A02_features_ms2_neg.mgf%3Ascan%3A356 rdf:type emi:LCMSFeature ;
emi:hasRetentionTime \"7.663716666666667\"^^xsd:double .""" ;
rdfs:comment "The retention time of a LCMS individual MS2 spectrum." ;
rdfs:label "has retention time" .
### https://purl.org/emi#hasRowId
emi:hasRowId rdf:type owl:DatatypeProperty ;
rdfs:domain emi:LCMSFeature ;
rdfs:range xsd:integer ;
vann:example """@prefix emi: <https://purl.org/emi#> .
@prefix usi: <https://metabolomics-usi.ucsd.edu/dashinterface/?usi1=> .
usi:mzspec%3AMSV000087728%3AVGF153_A02_features_ms2_neg.mgf%3Ascan%3A356 rdf:type emi:LCMSFeature ;
emi:hasRowId \"356\"^^xsd:integer .""" ;
rdfs:comment "The row id of a LCMS individual MS2 spectrum." ;
rdfs:label "has row id" .
### https://purl.org/emi#hasSMILES
emi:hasSMILES rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain emi:ChemicalStructure ;
rdfs:range xsd:string ;
rdfs:comment "The simplified molecular-input line-entry system (SMILES) is a specification in the form of a line notation for describing the structure of chemical species using short ASCII strings." ;
rdfs:label "has SMILES" .
### https://purl.org/emi#hasScore
emi:hasScore rdf:type owl:DatatypeProperty ;
rdfs:domain [ rdf:type owl:Class ;
owl:unionOf ( emi:Spec2VecDoc
emi:StructuralAnnotation
)
] ;
vann:example """@prefix emi: <https://purl.org/emi#> .
@prefix : <https://purl.org/emi/abox#> .
:spec2vec_doc_mzspec%3AMSV000087728%3AVGF153_A02_features_ms2_neg.mgf%3Ascan%3A356 rdf:type emi:Spec2VecDoc ;
emi:hasSpec2VecValue \"271.02\"^^xsd:double .""" ;
rdfs:label "has score" .
### https://purl.org/emi#hasSpec2VecLoss
emi:hasSpec2VecLoss rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf emi:hasSpec2VecValue ;
rdfs:domain emi:Spec2VecDoc ;
rdfs:range xsd:double ;
vann:example """@prefix emi: <https://purl.org/emi#> .
@prefix : <https://purl.org/emi/abox#> .
:spec2vec_doc_mzspec%3AMSV000087728%3AVGF153_A02_features_ms2_neg.mgf%3Ascan%3A356 rdf:type emi:Spec2VecDoc ;
emi:hasSpec2VecLoss \"157.86\"^^xsd:double .""" ;
rdfs:comment "The Spec2Vec losses of a Spec2Vec document." ;
rdfs:label "has spec2vec loss" .
### https://purl.org/emi#hasSpec2VecPeak
emi:hasSpec2VecPeak rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf emi:hasSpec2VecValue ;
rdfs:domain emi:Spec2VecDoc ;
rdfs:range xsd:double ;
vann:example """@prefix emi: <https://purl.org/emi#> .
@prefix : <https://purl.org/emi/abox#> .
:spec2vec_doc_mzspec%3AMSV000087728%3AVGF153_A02_features_ms2_neg.mgf%3Ascan%3A356 rdf:type emi:Spec2VecDoc ;
emi:hasSpec2VecPeak \"271.02\"^^xsd:double .""" ;
rdfs:comment "The Spec2Vec peaks of a Spec2Vec document." ;
rdfs:label "has spec2vec peak" .
### https://purl.org/emi#hasSpec2VecValue
emi:hasSpec2VecValue rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf emi:hasScore ;
rdfs:domain emi:Spec2VecDoc ;
rdfs:range xsd:double ;
vann:example """@prefix emi: <https://purl.org/emi#> .
@prefix : <https://purl.org/emi/abox#> .
:spec2vec_doc_mzspec%3AMSV000087728%3AVGF153_A02_features_ms2_neg.mgf%3Ascan%3A356 rdf:type emi:Spec2VecDoc ;
emi:hasSpec2VecValue \"271.02\"^^xsd:double .""" ;
rdfs:comment "A mass spectral similarity scoring through learning of structural relationships. Spec2vec is a novel spectral similarity score inspired by a natural language processing algorithm -- Word2Vec. Where Word2Vec learns relationships between words in sentences, spec2vec does so for mass fragments and neutral losses in MS/MS spectra. The spectral similarity score is based on spectral embeddings learnt from the fragmental relationships within a large set of spectral data. Analysis and benchmarking of mass spectra similarity measures using gnps data set." ;
rdfs:label "has spec2vec value" .
### https://purl.org/emi#hasSpectralScore
emi:hasSpectralScore rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf emi:hasScore ;
rdf:type owl:FunctionalProperty ;
rdfs:domain emi:StructuralAnnotation ;
rdfs:range xsd:double ;
rdfs:comment "An ISDB score." ;
rdfs:label "has spectral score" .
### https://purl.org/emi#hasSuperClassProbability
emi:hasSuperClassProbability rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf emi:hasProbability ;
rdfs:domain emi:ChemicalTaxonAnnotation ;
rdfs:range xsd:double ;
vann:example """@prefix : <https://purl.org/emi/abox#> .
@prefix emi: <https://purl.org/emi#> .
:CANOPUS-mzspec%3AMSV000087728%3AVGF147_E06_features_ms2_neg.mgf%3Ascan%3A45 rdf:type emi:ChemicalTaxonAnnotation ;
emi:hasSuperClassProbability \"0.34501510858535767\"^^xsd:double .""" .
### https://purl.org/emi#hasTaxoScore
emi:hasTaxoScore rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf emi:hasScore ;
rdf:type owl:FunctionalProperty ;
rdfs:domain emi:StructuralAnnotation ;
rdfs:range xsd:integer ;
rdfs:comment "An ISDB score." ;
rdfs:label "has taxo score" .
### https://purl.org/emi#hasUSI
emi:hasUSI rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf owl:topDataProperty ;
rdf:type owl:FunctionalProperty ;
rdfs:domain [ rdf:type owl:Class ;
owl:unionOf ( emi:MS2Spectrum
emi:StructuralAnnotation
)
] ;
rdfs:range xsd:string ;
vann:example """@prefix emi: <https://purl.org/emi#> .
@prefix usi: <https://metabolomics-usi.ucsd.edu/dashinterface/?usi1=> .
usi:mzspec%3AMSV000087728%3AVGF153_A02_features_ms2_neg.mgf%3Ascan%3A356 rdf:type emi:LCMSFeature ;
emi:hasUSI \"mzspec:MSV000087728:VGF153_A02_features_ms2_neg.mgf:scan:356\" .""" ;
rdfs:comment "The universal spectrum identifier provided by GNPS." ;
rdfs:label "has universal spectrum identifier" .
### https://purl.org/emi#hasZodiacScore
emi:hasZodiacScore rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf emi:hasScore ;
rdfs:domain emi:StructuralAnnotation ;
rdfs:range xsd:double ;
rdfs:label "has zodiac score" .
### https://purl.org/emi#inChIKey
emi:inChIKey rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain emi:InChIKey ;
rdfs:range xsd:string ;
rdfs:comment "The InChIKey data value, that is a textual representation of chemical structures. This value is composed of 27 characters and it is a condensed digital representation of the InChI." ;
rdfs:label "InChIKey value" .
### https://purl.org/emi#inChIKey2D
emi:inChIKey2D rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain emi:InChIKey2D ;
rdfs:range xsd:string ;
rdfs:comment "The InChIKey 2D data value, that is a textual representation of chemical structures. This value is composed of the first 14 characters of its corresponding InChIKey of 27 character fixed length." ;
rdfs:label "InChIKey 2D value" .
### https://purl.org/emi#scientificName
emi:scientificName rdf:type owl:DatatypeProperty ;
rdfs:domain emi:Taxon ;
rdfs:range xsd:string ;
rdfs:label "scientific name" .
### https://purl.org/emi#spectrumLink
emi:spectrumLink rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain emi:GNPSConsensusSpectrum ;
rdfs:range xsd:anyURI ;
rdfs:label "spectrum link" .
#################################################################
# Classes
#################################################################
### http://org.semanticweb.owlapi/error#Error1
<http://org.semanticweb.owlapi/error#Error1> rdf:type owl:Class .
### http://purl.uniprot.org/core/Rank
up:Rank rdf:type owl:Class ;
rdfs:comment "A rank of a taxon." ;
rdfs:isDefinedBy up: ;
rdfs:label "Taxon rank" .
### http://purl.uniprot.org/core/Taxon
up:Taxon rdf:type owl:Class ;
rdfs:comment "An element of a taxonomy for classifying life forms." ;
rdfs:isDefinedBy up: ;
rdfs:label "Taxon" .
### http://www.w3.org/ns/sosa/Observation
sosa:Observation vann:example """@prefix : <https://purl.org/emi/abox#> .
@prefix sosa: <http://www.w3.org/ns/sosa/> .
:VGF138_A02_neg.mzXML rdf:type sosa:Observation .""" .
### http://www.wikidata.org/entity/Q16521
wd:Q16521 rdf:type owl:Class ;
rdfs:subClassOf emi:Taxon ;
rdfs:comment "An organism taxon in Wikidata." ;
rdfs:label "Wikidata taxon" .
### https://purl.org/emi#Aliquot
emi:Aliquot rdf:type owl:Class ;
rdfs:subClassOf sosa:Sample ;
rdfs:comment "A sample taken from an extract sample for chemical analysis or other treatment." ;
rdfs:label "Aliquot" .
### https://purl.org/emi#Analysis
emi:Analysis rdf:type owl:Class ;
rdfs:subClassOf sosa:Observation ,
[ rdf:type owl:Restriction ;
owl:onProperty prov:used ;
owl:allValuesFrom prov:Entity
] ,
[ rdf:type owl:Restriction ;
owl:onProperty prov:wasAssociatedWith ;
owl:allValuesFrom prov:Agent
] ;
vann:example """@prefix : <https://purl.org/emi/abox#> .
@prefix emi: <https://purl.org/emi#> .
:VGF138_A02_neg.mzXML rdf:type emi:Analysis .""" ;
rdfs:comment "Any analysis performed over a sample." .
### https://purl.org/emi#AnatomicalEntity
emi:AnatomicalEntity rdf:type owl:Class ;
rdfs:comment "An anatomical entity can be an organism part (e.g. brain, blood, liver and so on) or a material anatomical entity such as a cell." ;
rdfs:label "Anatomical entity"@en ;
skos:closeMatch <http://purl.org/genex#AnatomicalEntity> .
### https://purl.org/emi#BioAssayResults
emi:BioAssayResults rdf:type owl:Class ;
rdfs:comment "An object to store bioactivity results." ;
rdfs:label "Bioassay result" .
### https://purl.org/emi#BioassayAnalysis
emi:BioassayAnalysis rdf:type owl:Class ;
rdfs:subClassOf emi:Analysis ;
rdfs:comment "A bioassay is an analytical method to determine the concentration or potency of a substance by its effect on living animals or plants (in vivo), or on living cells or tissues(in vitro)." ;
rdfs:isDefinedBy "https://en.wikipedia.org/wiki/Bioassay" ;
rdfs:label "Bioassay analysis" .
### https://purl.org/emi#Blank
emi:Blank rdf:type owl:Class ;
rdfs:subClassOf sosa:Sample ;