rustdf 0.4.1

A Rust library for interacting with Bruker TDF formatted Raw Data.
1
2
3
4
5
6
7
8
9
10
11
12
pub mod utility;
pub mod cluster;
pub mod feature;
pub mod io;
pub mod pseudo;
pub mod peak;
pub mod candidates;
pub mod scoring;

// Re-export commonly used types
pub use peak::ThresholdMode;
pub use utility::{robust_noise_mad, robust_noise_neighbor_diff};