annonars 0.36.2

Rust template repository
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Code generate for protobufs by `prost-build`.

include!(concat!(env!("OUT_DIR"), "/annonars.gnomad.vep_common.rs"));
include!(concat!(
    env!("OUT_DIR"),
    "/annonars.gnomad.vep_common.serde.rs"
));

impl From<(String, f32)> for Prediction {
    fn from((prediction, score): (String, f32)) -> Self {
        Self { prediction, score }
    }
}