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
use alphabets::Alphabet;
use utils::IntoTextIterator;
pub fn alphabet() -> Alphabet {
Alphabet::new(b"ACGTacgt")
}
pub fn n_alphabet() -> Alphabet {
Alphabet::new(b"ACGTNacgtn")
}
pub fn iupac_alphabet() -> Alphabet {
Alphabet::new(b"ACGTURYSWKMBDHVNacgturyswkmbdhvn")
}
lazy_static! {
static ref COMPLEMENT: Vec<u8> = {
let mut comp = Vec::new();
comp.resize(256, 0);
for (v, mut a) in comp.iter_mut().enumerate() {
*a = v as u8;
}
for (&a, &b) in b"AGCTYRWSKMDVHBN".iter().zip(b"TCGARYWSMKHBDVN".iter()) {
comp[a as usize] = b;
comp[a as usize + 32] = b + 32;
}
comp
};
}
pub fn complement(a: u8) -> u8 {
COMPLEMENT[a as usize]
}
pub fn revcomp<'a, T: IntoTextIterator<'a>>(text: T) -> Vec<u8> where
T::IntoIter: DoubleEndedIterator {
text.into_iter().rev().map(|&a| complement(a)).collect()
}