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
error_chain! {
foreign_links {
Io(std::io::Error)
;
Anyhow(anyhow::Error)
;
}
links {
BCalm2IoError(crate::io::bcalm2::Error, crate::io::bcalm2::ErrorKind)
;
FastaIoError(crate::io::fasta::Error, crate::io::fasta::ErrorKind)
;
}
errors {
#[allow(missing_docs)]
GfaUnknownOverlapPattern {
description("an L-line was encountered, but the overlap pattern is unknown")
display("an L-line was encountered, but the overlap pattern is unknown")
}
#[allow(missing_docs)]
GfaMissingOverlapPattern {
description("an L-line was encountered, but the overlap pattern is missing")
display("an L-line was encountered, but the overlap pattern is missing")
}
#[allow(missing_docs)]
GfaMissingNode {
description("an L-line was encountered, at least one of the nodes is missing")
display("an L-line was encountered, at least one of the nodes is missing")
}
}
}