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 pathagilent.rs
More file actions
525 lines (484 loc) · 19.3 KB
/
agilent.rs
File metadata and controls
525 lines (484 loc) · 19.3 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
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
use crate::{
graph::{
insert_into::{InsertIntoGraph, Link},
namespaces::{allodc, allores, allorole, cat, cat_resource, obo, purl, qb, qudt},
utils::hash_identifier,
},
models::{core::PeakList, enums::Unit},
};
use serde::{Deserialize, Serialize};
use sophia::{
api::ns::{rdf, rdfs, xsd},
inmem::graph::LightGraph,
iri::IriRef,
};
use sophia_api::term::{SimpleTerm, Term};
#[derive(Deserialize)]
pub struct LiquidChromatographyAggregateDocumentWrapper {
#[serde(rename = "liquid chromatography aggregate document")]
pub liquid_chromatography_aggregate_document: LiquidChromatographyAggregateDocument,
}
impl InsertIntoGraph for LiquidChromatographyAggregateDocumentWrapper {
fn insert_into(&self, graph: &mut LightGraph, iri: SimpleTerm) -> anyhow::Result<()> {
self.liquid_chromatography_aggregate_document.insert_into(graph, iri)
}
}
#[derive(Clone, Debug, Serialize, Deserialize)]
pub struct LiquidChromatographyAggregateDocument {
#[serde(rename = "liquid chromatography document")]
pub liquid_chromatography_document: Option<Vec<LiquidChromatographyDocument>>,
#[serde(rename = "device system document")]
pub device_system_document: Option<DeviceSystemDocument>,
}
impl InsertIntoGraph for LiquidChromatographyAggregateDocument {
fn insert_into(&self, graph: &mut LightGraph, iri: SimpleTerm) -> anyhow::Result<()> {
for (pred, value) in [
(rdf::type_, &allores::AFR_0002524.as_simple() as &dyn InsertIntoGraph),
(cat::hasLiquidChromatography, &self.liquid_chromatography_document),
(allores::AFR_0002526, &self.device_system_document),
] {
value.attach_into(
graph,
Link { source_iri: iri.clone(), pred: pred.as_simple(), target_iri: None },
)?;
}
Ok(())
}
}
#[derive(Clone, Debug, Serialize, Deserialize)]
pub struct LiquidChromatographyDocument {
pub analyst: String,
#[serde(rename = "measurement aggregate document")]
pub measurement_aggregate_document: MeasurementAggregateDocument,
}
impl InsertIntoGraph for LiquidChromatographyDocument {
fn insert_into(&self, graph: &mut LightGraph, iri: SimpleTerm) -> anyhow::Result<()> {
for (pred, value) in [
(rdf::type_, &allores::AFR_0002525.as_simple() as &dyn InsertIntoGraph),
(allores::AFR_0001116, &self.analyst.as_simple()),
] {
value.attach_into(
graph,
Link { source_iri: iri.clone(), pred: pred.as_simple(), target_iri: None },
)?;
}
// NOTE: measurement_aggregate_document is not materliazed in the ontology -> we will attach measurement_document directly to LiquidChromatigraphyDocument
let _ = &self.measurement_aggregate_document.insert_into(graph, iri)?;
Ok(())
}
}
#[derive(Clone, Debug, Serialize, Deserialize)]
pub struct MeasurementAggregateDocument {
#[serde(rename = "measurement document")]
pub measurement_documents: Vec<MeasurementDocument>,
}
impl InsertIntoGraph for MeasurementAggregateDocument {
fn insert_into(&self, graph: &mut LightGraph, iri: SimpleTerm) -> anyhow::Result<()> {
// NOTE: measurement_aggregate_document is not materliazed in the ontology -> we will attach measurement_document directly to LiquidChromatigraphyDocument
let _ = &self.measurement_documents.attach_into(
graph,
Link {
source_iri: iri.clone(),
pred: allores::AFR_0002374.as_simple(),
target_iri: None,
},
)?;
Ok(())
}
}
#[derive(Clone, Debug, Serialize, Deserialize)]
pub struct MeasurementDocument {
#[serde(rename = "measurement identifier")]
pub measurement_identifier: String,
// TO-DO: needs further definition to be integrated
// #[serde(rename = "chromatography column document")]
// pub chromatography_column_document: ChromatographyColumnDocument,
#[serde(rename = "device control aggregate document")]
pub device_control_aggregate_document: DeviceSystemDocument,
#[serde(rename = "sample document")]
pub sample_document: SampleDocument,
#[serde(rename = "injection document")]
pub injection_document: InjectionDocument,
#[serde(rename = "detection type")]
pub detection_type: String,
#[serde(rename = "chromatogram data cube")]
pub chromatogram_data_cube: Option<ChromatogramDataCube>,
#[serde(rename = "three-dimensional ultraviolet spectrum data cube")]
pub three_dimensional_ultraviolet_spectrum_data_cube:
Option<ThreeDimensionalUltravioletSpectrumDataCube>,
#[serde(rename = "three-dimensional mass spectrum data cube")]
pub three_three_dimensional_mass_spectrum_data_cube:
Option<ThreeDimensionalMassSpectrumDataCube>,
#[serde(rename = "processed data document")]
pub processed_data_document: Option<ProcessedDataDocument>,
}
impl InsertIntoGraph for MeasurementDocument {
fn insert_into(&self, graph: &mut LightGraph, iri: SimpleTerm) -> anyhow::Result<()> {
for (pred, value) in [
(rdf::type_, &allores::AFR_0002375.as_simple() as &dyn InsertIntoGraph),
(allores::AFR_0001121, &self.measurement_identifier.as_simple()),
// TO-DO: needs further definition to be integrated
// (allores::AFR_0002607, &self.chromatography_column_document),
(allores::AFR_0002526, &self.device_control_aggregate_document),
(allores::AFR_0002083, &self.sample_document),
(allores::AFR_0002529, &self.injection_document),
(allores::AFR_0002534, &self.detection_type.as_simple()),
(allores::AFR_0002550, &self.chromatogram_data_cube),
(allores::AFR_0002551, &self.three_dimensional_ultraviolet_spectrum_data_cube),
(allores::AFR_0002878, &self.three_three_dimensional_mass_spectrum_data_cube),
(allores::AFR_0002659, &self.processed_data_document),
] {
value.attach_into(
graph,
Link { source_iri: iri.clone(), pred: pred.as_simple(), target_iri: None },
)?;
}
Ok(())
}
}
#[derive(Clone, Debug, Serialize, Deserialize)]
pub struct ChromatographyColumnDocument {}
impl InsertIntoGraph for ChromatographyColumnDocument {
fn insert_into(&self, graph: &mut LightGraph, iri: SimpleTerm) -> anyhow::Result<()> {
for (pred, value) in
[(rdf::type_, &cat::ChromatographyColumnDocument.as_simple() as &dyn InsertIntoGraph)]
{
value.attach_into(
graph,
Link { source_iri: iri.clone(), pred: pred.as_simple(), target_iri: None },
)?;
}
Ok(())
}
}
#[derive(Clone, Debug, Serialize, Deserialize)]
pub struct DeviceSystemDocument {
#[serde(alias = "device document", alias = "device control document")]
pub device_document: Vec<DeviceDocument>,
#[serde(rename = "asset management identifier")]
pub asset_management_identifier: Option<String>,
}
impl InsertIntoGraph for DeviceSystemDocument {
fn insert_into(&self, graph: &mut LightGraph, iri: SimpleTerm) -> anyhow::Result<()> {
for (pred, value) in [
(rdf::type_, &cat::DeviceSystemDocument.as_simple() as &dyn InsertIntoGraph),
(allores::AFR_0002722, &self.device_document),
(
allores::AFR_0001976,
&self.asset_management_identifier.as_ref().clone().map(|s| s.as_simple()),
),
] {
value.attach_into(
graph,
Link { source_iri: iri.clone(), pred: pred.as_simple(), target_iri: None },
)?;
}
Ok(())
}
}
#[derive(Clone, Debug, Serialize, Deserialize)]
pub struct DeviceDocument {
#[serde(rename = "device identifier")]
pub device_identifier: String,
#[serde(rename = "device type")]
pub device_type: String,
#[serde(rename = "product manufacturer")]
pub product_manufacturer: String,
#[serde(rename = "equipment serial number")]
pub equipment_serial_number: String,
#[serde(rename = "model number")]
pub model_number: String,
#[serde(rename = "firmware version")]
pub firmware_version: String,
#[serde(rename = "detection type")]
pub detection_type: Option<String>,
#[serde(rename = "@index")]
pub index: Option<i64>,
}
impl InsertIntoGraph for DeviceDocument {
fn get_uri(&self) -> SimpleTerm<'static> {
// build URI based on self.device_identifier
let mut uri = cat_resource::ns.clone().as_str().to_owned();
uri.push_str(&hash_identifier(&self.device_identifier));
IriRef::new_unchecked(uri).try_into_term().unwrap()
}
fn insert_into(&self, graph: &mut LightGraph, iri: SimpleTerm) -> anyhow::Result<()> {
for (pred, value) in [
(rdf::type_, &allores::AFR_0002567.as_simple() as &dyn InsertIntoGraph),
(allores::AFR_0002018, &self.device_identifier.as_simple()),
(allores::AFR_0002568, &self.device_type.as_simple()),
(allores::AFR_0001258, &self.product_manufacturer.as_simple()),
(allores::AFR_0001119, &self.equipment_serial_number.as_simple()),
(obo::IAO_0000017, &self.model_number.as_simple()),
(allores::AFR_0001259, &self.firmware_version.as_simple()),
(allores::AFR_0002534, &self.detection_type.as_ref().clone().map(|s| s.as_simple())),
// TO-DO issue with unpacking the index
//(allohdfcube::Index, &self.index)
] {
value.attach_into(
graph,
Link { source_iri: iri.clone(), pred: pred.as_simple(), target_iri: None },
)?;
}
Ok(())
}
}
#[derive(Clone, Debug, Serialize, Deserialize)]
pub struct ProcessedDataDocument {
#[serde(rename = "peak list")]
pub peak_list: PeakList,
}
impl InsertIntoGraph for ProcessedDataDocument {
fn insert_into(&self, graph: &mut LightGraph, iri: SimpleTerm) -> anyhow::Result<()> {
for (pred, value) in [
(rdf::type_, &cat::ProcessedDataDocument.as_simple() as &dyn InsertIntoGraph),
(allores::AFR_0000432, &self.peak_list),
] {
value.attach_into(
graph,
Link { source_iri: iri.clone(), pred: pred.as_simple(), target_iri: None },
)?;
}
Ok(())
}
}
#[derive(Clone, Debug, Serialize, Deserialize)]
pub struct SampleDocument {
#[serde(rename = "sample identifier")]
pub sample_identifier: String,
#[serde(rename = "written name")]
pub product_identifier: String,
}
impl InsertIntoGraph for SampleDocument {
fn insert_into(&self, graph: &mut LightGraph, iri: SimpleTerm) -> anyhow::Result<()> {
let product = AgilentProduct { product_identifier: self.product_identifier.clone() };
for (pred, value) in [
(rdf::type_, &cat::SampleDocument.as_simple() as &dyn InsertIntoGraph),
(cat::hasProduct, &product),
(allores::AFR_0001118, &self.sample_identifier.as_simple()),
] {
value.attach_into(
graph,
Link { source_iri: iri.clone(), pred: pred.as_simple(), target_iri: None },
)?;
}
Ok(())
}
}
#[derive(Clone, Debug, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct AgilentProduct {
#[serde(rename = "sample identifier")]
pub product_identifier: String,
}
impl InsertIntoGraph for AgilentProduct {
fn get_uri(&self) -> SimpleTerm<'static> {
//same as in synth.rs set_product_uri function
//same as in bravo.rs get_uri function for BravoProduct
let mut uri = cat_resource::ns.clone().as_str().to_owned();
uri.push_str(&hash_identifier(&self.product_identifier));
IriRef::new_unchecked(uri).try_into_term().unwrap()
}
fn insert_into(&self, graph: &mut LightGraph, iri: SimpleTerm) -> anyhow::Result<()> {
for (pred, value) in [
(rdf::type_, &cat::Product.as_simple() as &dyn InsertIntoGraph),
(purl::identifier, &self.product_identifier.as_simple()),
] {
value.attach_into(
graph,
Link { source_iri: iri.clone(), pred: pred.as_simple(), target_iri: None },
)?;
}
Ok(())
}
}
#[derive(Clone, Debug, Serialize, Deserialize)]
pub struct InjectionDocument {
#[serde(rename = "autosampler injection volume setting (chromatography)")]
pub autosampler_injection: AutosamplerInjectionVolumeSetting,
#[serde(rename = "injection identifier")]
pub injection_identifier: String,
#[serde(rename = "injection time")]
pub injection_time: String,
}
impl InsertIntoGraph for InjectionDocument {
fn insert_into(&self, graph: &mut LightGraph, iri: SimpleTerm) -> anyhow::Result<()> {
for (pred, value) in [
(rdf::type_, &cat::InjectionDocument.as_simple() as &dyn InsertIntoGraph),
(allores::AFR_0001267, &self.autosampler_injection),
(allores::AFR_0002535, &self.injection_identifier.as_simple()),
(allores::AFR_0002536, &(self.injection_time.as_str() * xsd::dateTime).as_simple()),
] {
value.attach_into(
graph,
Link { source_iri: iri.clone(), pred: pred.as_simple(), target_iri: None },
)?;
}
Ok(())
}
}
#[derive(Clone, Debug, Serialize, Deserialize)]
pub struct ChromatogramDataCube {
pub label: Option<String>,
#[serde(rename = "cube-structure")]
pub cube_structure: CubeStructure,
pub identifier: Option<String>,
}
impl InsertIntoGraph for ChromatogramDataCube {
fn insert_into(&self, graph: &mut LightGraph, iri: SimpleTerm) -> anyhow::Result<()> {
for (pred, value) in [
(rdf::type_, &cat::ChromatogramDataCube.as_simple() as &dyn InsertIntoGraph),
(obo::IAO_0000009, &self.label.as_ref().clone().map(|s| s.as_simple())),
(qb::structure, &self.cube_structure),
(allores::AFR_0000917, &self.identifier.as_ref().clone().map(|s| s.as_simple())),
] {
value.attach_into(
graph,
Link { source_iri: iri.clone(), pred: pred.as_simple(), target_iri: None },
)?;
}
Ok(())
}
}
#[derive(Clone, Debug, Serialize, Deserialize)]
pub struct ThreeDimensionalUltravioletSpectrumDataCube {
pub label: String,
#[serde(rename = "cube-structure")]
pub cube_structure: CubeStructure,
pub identifier: String,
}
impl InsertIntoGraph for ThreeDimensionalUltravioletSpectrumDataCube {
fn insert_into(&self, graph: &mut LightGraph, iri: SimpleTerm) -> anyhow::Result<()> {
for (pred, value) in [
(
rdf::type_,
&cat::ThreeDimensionalUltravioletSpectrumDataCube.as_simple()
as &dyn InsertIntoGraph,
),
(obo::IAO_0000009, &self.label.as_simple()),
(qb::structure, &self.cube_structure),
(allores::AFR_0000917, &self.identifier.as_simple()),
] {
value.attach_into(
graph,
Link { source_iri: iri.clone(), pred: pred.as_simple(), target_iri: None },
)?;
}
Ok(())
}
}
#[derive(Clone, Debug, Serialize, Deserialize)]
pub struct ThreeDimensionalMassSpectrumDataCube {
pub label: String,
#[serde(rename = "cube-structure")]
pub cube_structure: CubeStructure,
pub identifier: String,
}
impl InsertIntoGraph for ThreeDimensionalMassSpectrumDataCube {
fn insert_into(&self, graph: &mut LightGraph, iri: SimpleTerm) -> anyhow::Result<()> {
for (pred, value) in [
(
rdf::type_,
&cat::ThreeDimensionalMassSpectrumDataCube.as_simple() as &dyn InsertIntoGraph,
),
(obo::IAO_0000009, &self.label.as_simple()),
(qb::structure, &self.cube_structure),
(allores::AFR_0000917, &self.identifier.as_simple()),
] {
value.attach_into(
graph,
Link { source_iri: iri.clone(), pred: pred.as_simple(), target_iri: None },
)?;
}
Ok(())
}
}
#[derive(Clone, Debug, Serialize, Deserialize)]
pub struct AutosamplerInjectionVolumeSetting {
pub value: f64,
pub unit: Unit,
}
impl InsertIntoGraph for AutosamplerInjectionVolumeSetting {
fn insert_into(&self, graph: &mut LightGraph, iri: SimpleTerm) -> anyhow::Result<()> {
for (pred, value) in [
(
rdf::type_,
&cat::AutosamplerInjectionVolumeSetting.as_simple() as &dyn InsertIntoGraph,
),
(qudt::value, &self.value.as_simple()),
(qudt::unit, &self.unit.iri().as_simple()),
] {
value.attach_into(
graph,
Link { source_iri: iri.clone(), pred: pred.as_simple(), target_iri: None },
)?;
}
Ok(())
}
}
#[derive(Clone, Debug, Serialize, Deserialize)]
pub struct CubeStructure {
pub measures: Vec<Measure>,
pub dimensions: Vec<Dimension>,
}
impl InsertIntoGraph for CubeStructure {
fn insert_into(&self, graph: &mut LightGraph, iri: SimpleTerm) -> anyhow::Result<()> {
for (pred, value) in [
(rdf::type_, &cat::CubeStructure.as_simple() as &dyn InsertIntoGraph),
(cat::measure, &self.measures),
(cat::dimension, &self.dimensions),
] {
value.attach_into(
graph,
Link { source_iri: iri.clone(), pred: pred.as_simple(), target_iri: None },
)?;
}
Ok(())
}
}
#[derive(Clone, Debug, Serialize, Deserialize)]
pub struct Measure {
#[serde(rename = "@componentDatatype")]
pub component_data_type: String, //subject to change
pub concept: String,
pub unit: Unit,
}
impl InsertIntoGraph for Measure {
fn insert_into(&self, graph: &mut LightGraph, iri: SimpleTerm) -> anyhow::Result<()> {
for (pred, value) in [
(rdf::type_, &allorole::AFRL_0000157.as_simple() as &dyn InsertIntoGraph),
(allodc::componentDataType, &self.component_data_type.as_simple()),
(rdfs::label, &self.concept.as_simple()),
(qudt::unit, &self.unit.iri().as_simple()),
] {
value.attach_into(
graph,
Link { source_iri: iri.clone(), pred: pred.as_simple(), target_iri: None },
)?;
}
Ok(())
}
}
#[derive(Clone, Debug, Serialize, Deserialize)]
pub struct Dimension {
#[serde(rename = "@componentDatatype")]
pub component_data_type: String, //subject to change
pub concept: String,
pub unit: Unit,
}
impl InsertIntoGraph for Dimension {
fn insert_into(&self, graph: &mut LightGraph, iri: SimpleTerm) -> anyhow::Result<()> {
for (pred, value) in [
(rdf::type_, &cat::Dimension.as_simple() as &dyn InsertIntoGraph),
(allodc::componentDataType, &self.component_data_type.as_simple()),
(rdfs::label, &self.concept.as_simple()),
(qudt::unit, &self.unit.iri().as_simple()),
] {
value.attach_into(
graph,
Link { source_iri: iri.clone(), pred: pred.as_simple(), target_iri: None },
)?;
}
Ok(())
}
}