mzcore 0.1.0

Core logic for handling massspectrometry in Rust.
Documentation
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
//! The available ontologies

use std::sync::LazyLock;

use context_error::*;
use mzcv::{CVIndex, CVStructure, CVVersion};
use serde::{Deserialize, Serialize};

use crate::{
    ontology::{Custom, Gnome, PsiMod, Resid, Unimod, XlMod},
    sequence::SimpleModification,
};

/// A single shared static access to the static data in the ontologies for cases where no runtime resolution is needed (like tests).
pub static STATIC_ONTOLOGIES: LazyLock<Ontologies> = LazyLock::new(Ontologies::init_static);

/// Handle all ProForma needed ontologies.
///
/// Get a copy via [`Self::init()`], [`Self::init_static()`] (or [`STATIC_ONTOLOGIES`]), or even
/// [`Self::empty`]. Then find modifications using either [`Self::get_by_name`],
/// , [`Self::search`], or the same methods on one particular ontology
/// as `Self::unimod().get_by_index()`.
///
/// ```rust
/// use mzcore::{molecular_formula, ontology::STATIC_ONTOLOGIES, prelude::*};
/// // Using the static version to not do IO in test, but more logical in library users:
/// // let ontologies = Self::init();
/// let ontologies = &STATIC_ONTOLOGIES;
/// // Get modifications by name
/// let modification = ontologies.get_by_name(&[], "Oxidation").unwrap();
/// assert_eq!(modification.formula(), molecular_formula!(O 1));
/// // or by index from a particular ontology
/// let modification2 = ontologies.unimod().get_by_index(&35).unwrap();
/// assert_eq!(modification, modification2);
/// // or search all (or a subset) for fuzzy matches
/// let search = ontologies.search(&[], "Oxidated");
/// assert!(search.contains(&(modification, None)));
/// ```
pub struct Ontologies {
    custom: CVIndex<Custom>,
    gnome: CVIndex<Gnome>,
    psimod: CVIndex<PsiMod>,
    resid: CVIndex<Resid>,
    unimod: CVIndex<Unimod>,
    xlmod: CVIndex<XlMod>,
}

impl std::fmt::Debug for Ontologies {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        f.debug_struct("Ontologies")
            .field("Unimod", &self.unimod.len())
            .field("PSI-MOD", &self.psimod.len())
            .field("XL-MOD", &self.xlmod.len())
            .field("GNOme", &self.gnome.len())
            .field("RESID", &self.resid.len())
            .field("Custom", &self.custom.len())
            .finish()
    }
}

impl Ontologies {
    /// Initialize all ontologies, also returns all warnings detected when initialising the ontologies
    pub fn init() -> (Self, Vec<BoxedError<'static, mzcv::CVError>>) {
        let mut errors = Vec::new();
        let (unimod, mut warnings) = CVIndex::init();
        errors.append(&mut warnings);
        let (psimod, mut warnings) = CVIndex::init();
        errors.append(&mut warnings);
        let (xlmod, mut warnings) = CVIndex::init();
        errors.append(&mut warnings);
        let (gnome, mut warnings) = CVIndex::init();
        errors.append(&mut warnings);
        let (resid, mut warnings) = CVIndex::init();
        errors.append(&mut warnings);
        let (custom, mut warnings) = CVIndex::init();
        errors.append(&mut warnings);

        (
            Self {
                custom,
                gnome,
                psimod,
                resid,
                unimod,
                xlmod,
            },
            errors,
        )
    }

    /// Initialize all ontologies with their static data (or empty in the case of Custom)
    pub fn init_static() -> Self {
        Self {
            custom: CVIndex::init_static(),
            gnome: CVIndex::init_static(),
            psimod: CVIndex::init_static(),
            resid: CVIndex::init_static(),
            unimod: CVIndex::init_static(),
            xlmod: CVIndex::init_static(),
        }
    }

    /// Initialize all ontologies with their empty indices
    pub fn empty() -> Self {
        Self {
            custom: CVIndex::empty(),
            gnome: CVIndex::empty(),
            psimod: CVIndex::empty(),
            resid: CVIndex::empty(),
            unimod: CVIndex::empty(),
            xlmod: CVIndex::empty(),
        }
    }

    /// Update the custom database with the given data, mostly there to quickly create some test data.
    /// This does not store the new data on the disk
    #[must_use]
    pub fn with_custom(mut self, data: impl IntoIterator<Item = SimpleModification>) -> Self {
        self.custom
            .update_do_not_save_to_disk(CVVersion::default(), data);
        self
    }

    /// Get Unimod
    pub const fn unimod(&self) -> &CVIndex<Unimod> {
        &self.unimod
    }

    /// Get Unimod
    pub const fn unimod_mut(&mut self) -> &mut CVIndex<Unimod> {
        &mut self.unimod
    }

    /// Get PSI-MOD
    pub const fn psimod(&self) -> &CVIndex<PsiMod> {
        &self.psimod
    }

    /// Get PSI-MOD
    pub const fn psimod_mut(&mut self) -> &mut CVIndex<PsiMod> {
        &mut self.psimod
    }

    /// Get XL-MOD
    pub const fn xlmod(&self) -> &CVIndex<XlMod> {
        &self.xlmod
    }

    /// Get XL-MOD
    pub const fn xlmod_mut(&mut self) -> &mut CVIndex<XlMod> {
        &mut self.xlmod
    }

    /// Get GNOme
    pub const fn gnome(&self) -> &CVIndex<Gnome> {
        &self.gnome
    }

    /// Get GNOme
    pub const fn gnome_mut(&mut self) -> &mut CVIndex<Gnome> {
        &mut self.gnome
    }

    /// Get RESID
    pub const fn resid(&self) -> &CVIndex<Resid> {
        &self.resid
    }

    /// Get RESID
    pub const fn resid_mut(&mut self) -> &mut CVIndex<Resid> {
        &mut self.resid
    }

    /// Get Custom
    pub const fn custom(&self) -> &CVIndex<Custom> {
        &self.custom
    }

    /// Get Custom
    pub const fn custom_mut(&mut self) -> &mut CVIndex<Custom> {
        &mut self.custom
    }

    /// Find the closest names in the given ontologies, or if empty in all ontologies. Also
    /// returns the matched synonym if a synonym was matched (if it was matched on a name returns None)
    pub fn search(
        &self,
        ontologies: &[Ontology],
        term: &str,
    ) -> Vec<(SimpleModification, Option<String>)> {
        let ontologies = if ontologies.is_empty() {
            &[
                Ontology::Unimod,
                Ontology::Psimod,
                Ontology::Xlmod,
                Ontology::Gnome,
                Ontology::Resid,
                Ontology::Custom,
            ]
        } else {
            ontologies
        };

        let mut options = Vec::new();
        for ontology in ontologies {
            options.append(&mut match ontology {
                Ontology::Unimod => self.unimod.search(term, 5, 6),
                Ontology::Psimod => self.psimod.search(term, 5, 6),
                Ontology::Xlmod => self.xlmod.search(term, 5, 6),
                Ontology::Gnome => self.gnome.search(term, 5, 6),
                Ontology::Resid => self.resid.search(term, 5, 6),
                Ontology::Custom => self.custom.search(term, 5, 6),
            });
        }

        // Filter out obsolete modifications
        options.retain(|o| !o.0.description().is_some_and(|d| d.obsolete));

        // Make them nicely stabelly sorted
        options.sort_unstable_by(|a, b| a.2.cmp(&b.2).then(a.1.cmp(&b.1)).then(a.0.cmp(&b.0)));

        options
            .into_iter()
            .map(|(m, n, _)| (m, n))
            .take(10)
            .collect()
    }

    /// Load a data item by name or if that fails by synonym, names are matched in a case insensitive manner. Returns a boolean indicating if it matches a name `true` or a synonym `false`
    pub fn get_by_name_or_synonym(
        &self,
        ontologies: &[Ontology],
        term: &str,
    ) -> Option<(bool, SimpleModification)> {
        let ontologies = if ontologies.is_empty() {
            &[
                Ontology::Unimod,
                Ontology::Psimod,
                Ontology::Xlmod,
                Ontology::Gnome,
                Ontology::Resid,
                Ontology::Custom,
            ]
        } else {
            ontologies
        };

        for ontology in ontologies {
            match ontology {
                Ontology::Unimod => {
                    if let Some(m) = self.unimod.get_by_name_or_synonym(term) {
                        return Some(m);
                    }
                }
                Ontology::Psimod => {
                    if let Some(m) = self.psimod.get_by_name_or_synonym(term) {
                        return Some(m);
                    }
                }
                Ontology::Xlmod => {
                    if let Some(m) = self.xlmod.get_by_name_or_synonym(term) {
                        return Some(m);
                    }
                }
                Ontology::Gnome => {
                    if let Some(m) = self.gnome.get_by_name_or_synonym(term) {
                        return Some(m);
                    }
                }
                Ontology::Resid => {
                    if let Some(m) = self.resid.get_by_name_or_synonym(term) {
                        return Some(m);
                    }
                }
                Ontology::Custom => {
                    if let Some(m) = self.custom.get_by_name_or_synonym(term) {
                        return Some(m);
                    }
                }
            }
        }

        None
    }

    /// Find the given name in this ontology.
    pub fn get_by_name(&self, ontologies: &[Ontology], term: &str) -> Option<SimpleModification> {
        let ontologies = if ontologies.is_empty() {
            &[
                Ontology::Unimod,
                Ontology::Psimod,
                Ontology::Xlmod,
                Ontology::Gnome,
                Ontology::Resid,
                Ontology::Custom,
            ]
        } else {
            ontologies
        };

        for ontology in ontologies {
            match ontology {
                Ontology::Unimod => {
                    if let Some(m) = self.unimod.get_by_name(term) {
                        return Some(m);
                    }
                }
                Ontology::Psimod => {
                    if let Some(m) = self.psimod.get_by_name(term) {
                        return Some(m);
                    }
                }
                Ontology::Xlmod => {
                    if let Some(m) = self.xlmod.get_by_name(term) {
                        return Some(m);
                    }
                }
                Ontology::Gnome => {
                    if let Some(m) = self.gnome.get_by_name(term) {
                        return Some(m);
                    }
                }
                Ontology::Resid => {
                    if let Some(m) = self.resid.get_by_name(term) {
                        return Some(m);
                    }
                }
                Ontology::Custom => {
                    if let Some(m) = self.custom.get_by_name(term) {
                        return Some(m);
                    }
                }
            }
        }

        None
    }

    /// Get all modifications in the selected ontologies (or in all if the list is empty).
    pub fn data(&self, ontologies: &[Ontology]) -> impl Iterator<Item = SimpleModification> {
        let ontologies = if ontologies.is_empty() {
            &[
                Ontology::Unimod,
                Ontology::Psimod,
                Ontology::Xlmod,
                Ontology::Gnome,
                Ontology::Resid,
                Ontology::Custom,
            ]
        } else {
            ontologies
        };

        ontologies.iter().flat_map(|ontology| match ontology {
            Ontology::Unimod => self.unimod().data().iter_data(),
            Ontology::Psimod => self.psimod().data().iter_data(),
            Ontology::Xlmod => self.xlmod().data().iter_data(),
            Ontology::Gnome => self.gnome().data().iter_data(),
            Ontology::Resid => self.resid().data().iter_data(),
            Ontology::Custom => self.custom().data().iter_data(),
        })
    }
}

/// All allowed ontologies for modification names
#[derive(
    Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash, Debug, Default, Serialize, Deserialize,
)]
pub enum Ontology {
    #[default]
    /// Unimod
    Unimod,
    /// PSI-MOD
    Psimod,
    /// GNOme
    Gnome,
    /// XLMOD
    Xlmod,
    /// Resid
    Resid,
    /// Custom
    Custom,
}

impl Ontology {
    /// Get the prefix character for the ontology
    pub const fn char(self) -> char {
        match self {
            Self::Unimod => 'U',
            Self::Psimod => 'M',
            Self::Gnome => 'G',
            Self::Xlmod => 'X',
            Self::Resid => 'R',
            Self::Custom => 'C',
        }
    }

    /// Get the accession number name for the ontology
    pub const fn name(self) -> &'static str {
        match self {
            Self::Unimod => "UNIMOD",
            Self::Psimod => "MOD",
            Self::Gnome => "GNO",
            Self::Xlmod => "XLMOD",
            Self::Resid => "RESID",
            Self::Custom => "CUSTOM",
        }
    }
}

impl std::fmt::Display for Ontology {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        write!(
            f,
            "{}",
            match self {
                Self::Unimod => "Unimod",
                Self::Psimod => "PSI-MOD",
                Self::Gnome => "GNOme",
                Self::Xlmod => "XLMOD",
                Self::Resid => "Resid",
                Self::Custom => "Custom",
            },
        )
    }
}