census-proteomics 0.3.3

Rust library for working with proteomics data quantified by the Census algorithm
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! A high-performance Rust library for parsing, filtering, and manipulating
//! multiplexed isobaric data that has been quantified using the Census
//! algorithm
mod dataset;
mod filter;
mod parser;
mod protein;
pub mod util;

pub use dataset::Dataset;
pub use filter::{Filter, PeptideFilter, ProteinFilter};
pub use parser::{Error, Parser};
pub use protein::{Peptide, Protein};

/// Parse a string containing a complete census file into a `Dataset`
pub fn read_census(input: &str) -> Result<Dataset, Error> {
    Parser::new(input).parse()
}