Function intspan::read_first_column

source ·
pub fn read_first_column(input: &str) -> Vec<String>
Expand description
let chrs = intspan::read_first_column("tests/spanr/S288c.chr.sizes");
assert_eq!(chrs.len(), 16);
assert_eq!(*chrs.get(1).unwrap(), "II");
assert_eq!(*chrs.get(15).unwrap(), "XVI");