bascet 0.4.0

Bascet is a tool to preprocess single-cell data, handling barcode detection, trimming, QC, and managing the execution of custom tools for each cell
Documentation

/* 
use crate::fileformat::CellID;
use crate::fileformat::ReadPair;



pub trait CellReadPairProcessor {

    fn new(cellid: CellID) -> Self;
    fn process_read(&mut self, rp: ReadPair);

}
*/