bdb 0.0.1

Efficient APIs to parse from and export to file formats commonly used in biology, for both proteomics and genetics workflows.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Model for sequence read collections.

use super::record::Record;

/// UniProt record collection type.
pub type RecordList = Vec<Record>;

// TESTS
// -----

#[cfg(test)]
mod tests {
    // TODO(ahuszagh)
    //      implement...
}