This repository was archived by the owner on Sep 9, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcat.rs
More file actions
97 lines (97 loc) · 1.92 KB
/
cat.rs
File metadata and controls
97 lines (97 loc) · 1.92 KB
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
use lazy_static::lazy_static;
use sophia::api::ns::Namespace;
use sophia_api::namespace;
namespace! {
"http://example.org/catplus/ontology/",
AddAction,
AutosamplerInjectionVolumeSetting,
Batch,
BravoAddAction,
BravoWell,
Campaign,
campaignClass,
campaignType,
Cartridge,
cartridgeName,
cartridgeComposition,
casNumber,
chemicalName,
ChromatogramDataCube,
ChromatographyColumnDocument,
containerBarcode,
containerID,
ContainerPositionAndQuantity,
criteria,
CubeStructure,
Dataframe,
DeviceSystemDocument,
dimension,
Dimension,
dispenseType,
endingDuration ,
errorMargin,
EvaporationAction,
expectedDatum,
Experiment,
FiltrateAction,
genericObjective,
hasBatch,
hasCampaign,
hasCartridge,
hasChemical,
hasContainerPositionAndQuantity,
hasProduct,
hasLiquidChromatography,
hasObjective,
hasPlate,
hasSample,
hasSolvent,
hasWell,
InjectionDocument,
internalBarCode,
isSpmeProcess,
measure,
measuredQuantity,
Measurement,
Objective,
Observation,
optimizationType,
order,
peak,
PeakList,
Plate,
ProcessedDataDocument,
preparesProduct,
producesProduct,
Product,
reactionSubType,
reactionType,
reactionName,
role,
Sample,
SampleDocument,
SetPressureAction,
SetTemperatureAction,
SetVacuumAction,
ShakeAction,
Solvent,
SolventChangeAction,
speedInRPM,
startDuration,
subEquipmentName,
swissCatNumber,
SynthAddAction,
SynthWell,
temperatureShaker,
temperatureTumbleStirrer,
ThreeDimensionalMassSpectrumDataCube,
ThreeDimensionalUltravioletSpectrumDataCube,
vacuum,
vialType,
volume,
volumeEvaporationFinal,
Well
}
lazy_static! {
pub static ref ns: Namespace<&'static str> = Namespace::new(PREFIX.as_str()).unwrap();
}