1 2 3 4 5 6 7 8 9 10 11
use crate::{ab1::ab1_file, pileup_counter::PlpInfo}; pub trait TPlp2Ab1 { fn transform( &self, plp_info: &PlpInfo, target_seq: &str, peak_width: Option<usize>, sample_name: Option<String>, ) -> ab1_file::AbiFile; }