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
use crate::sbml::import::{child_tags, read_unique_child, SBML_QUAL};
use roxmltree::Node;
#[derive(Clone, Debug, PartialEq, Eq)]
pub struct SbmlSpecie {
pub id: String,
pub compartment: Option<String>,
pub name: Option<String>,
pub max_level: Option<u32>,
pub is_constant: bool,
}
pub fn read_species(model: Node) -> Result<Vec<SbmlSpecie>, String> {
let mut result = Vec::new();
let list = read_unique_child(model, (SBML_QUAL, "listOfQualitativeSpecies"));
let list = match list {
Ok(list) => list,
Err(e) => {
return Err(format!(
"List of qualitative species is missing ({}). Are you sure this is an SBML-qual model?",
e
))
}
};
let species = child_tags(list, (SBML_QUAL, "qualitativeSpecies"));
for specie in species {
if let Some(id) = specie.attribute((SBML_QUAL, "id")) {
let compartment = specie
.attribute((SBML_QUAL, "compartment"))
.map(|s| s.to_string());
let name = specie.attribute((SBML_QUAL, "name")).map(|s| s.to_string());
let max_level = specie.attribute((SBML_QUAL, "maxLevel"));
let max_level = if let Some(max_level) = max_level {
let value = max_level.parse::<u32>();
if value.is_err() {
return Err(format!("Invalid maxLevel value: {}", max_level));
} else {
value.ok()
}
} else {
None
};
let is_constant = specie
.attribute((SBML_QUAL, "constant"))
.map(|s| s == "true");
result.push(SbmlSpecie {
id: id.to_string(),
is_constant: is_constant.unwrap_or(false),
compartment,
name,
max_level,
});
} else {
return Err("Qualitative specie with a missing ID.".to_string());
}
}
Ok(result)
}