pedigree 0.3.0

Build a pedigree from WGS data.
Documentation
1
2
3
4
5
6
7
8
9
use thiserror::Error;

#[derive(Debug, Error)]
pub enum Error {
    #[error("No nodes could be parsed from the nodelist")]
    NodeParsing,
    #[error("Could not open node file {0}")]
    NodeFile(#[from] std::io::Error),
}