Read and write the PLINK BED format, simply and efficiently.
Sample files available here on Github.
Read all genotype data from a .bed file.
```rust use ndarray as nd; use bedreader::{Bed, ReadOptions, asserteq_nan};
let filename = "small.bed"; let mut bed = Bed::new(filename)?; let val = ReadOptions::builder().f64().read(&mut bed)?;
asserteqnan( &val, &nd::array![ [1.0, 0.0, f64::NAN, 0.0], [2.0, 0.0, f64::NAN, 2.0], [0.0, 1.0, 2.0, 0.0] ], ); ```
Read individual (samples) from 20 to 30 and every second SNP (variant).
```rust use ndarray::s;
let filename = "somemissing.bed"; let mut bed = Bed::new(filename)?; let val = ReadOptions::builder() .iidindex(s![..;2]) .sid_index(20..30) .f64() .read(&mut bed)?;
assert!(val.dim() == (50, 10)); ```
List the first 5 individual (sample) ids, the first 5 SNP (variant) ids, and every unique chromosome. Then, read every value in chromosome 5.
use bed_reader;
```rust use std::collections::HashSet;
let mut bed = Bed::new(filename)?;
println!("{:?}", bed.iid()?.slice(s![..5])); // Outputs ndarray: ["iid0", "iid1", "iid2", "iid3", "iid4"]
println!("{:?}", bed.sid()?.slice(s![..5])); // Outputs ndarray: ["sid0", "sid1", "sid2", "sid3", "sid4"]
println!("{:?}", bed.chromosome()?.iter().collect::
assert!(val.dim() == (100, 6)); ```