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
use anyhow::{bail, Result};
use std::fmt;
use crate::utils::utils;
const TAX_RANKS: &[&str; 44] = &[
"biotype",
"clade",
"class",
"cohort",
"family",
"forma",
"forma specialis",
"genotype",
"genus",
"infraclass",
"infraorder",
"isolate",
"kingdom",
"morph",
"no rank",
"order",
"parvorder",
"pathogroup",
"phylum",
"section",
"series",
"serogroup",
"serotype",
"species",
"species group",
"species subgroup",
"strain",
"subclass",
"subcohort",
"subfamily",
"subgenus",
"subkingdom",
"suborder",
"subphylum",
"subsection",
"subspecies",
"subtribe",
"superclass",
"superfamily",
"superkingdom",
"superorder",
"superphylum",
"tribe",
"varietas",
];
pub struct TaxRanks<'a> {
pub ranks: &'a [&'a str; 44],
}
impl<'a> TaxRanks<'a> {
pub fn init() -> Self {
Self { ranks: TAX_RANKS }
}
pub fn parse(&self, cmp: &str, report: bool) -> Result<String> {
if report {
let needle = cmp;
if self.ranks.contains(&needle) {
return Ok(needle.to_string());
} else {
bail!(
"Taxonomic rank \"{}\" is not recognised.\n\nEnter one of: {}",
needle,
Self::init()
);
}
}
let split = utils::parse_comma_separated(cmp);
let mut tax_rank_string = String::new();
tax_rank_string += "%20AND%20tax_rank%28";
let mut ranks_vec = Vec::new();
for el in split {
if self.ranks.contains(&&el[..]) {
ranks_vec.push(el);
} else {
bail!(
"Taxonomic rank \"{}\" is not recognised.\n\nEnter one of: {}",
el,
Self::init()
);
}
}
tax_rank_string += &ranks_vec.join("%2C");
tax_rank_string += "%29";
Ok(tax_rank_string)
}
}
impl<'a> fmt::Display for TaxRanks<'a> {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
let tax_ranks_csv = self.ranks.join(", ");
write!(f, "{}", tax_ranks_csv)
}
}