Read and write the PLINK BED format, simply and efficiently.
Features:
pip install bed-reader
Read genomic data from a .bed file.
```python
import numpy as np from bedreader import openbed, sample_file
filename = samplefile("small.bed") bed = openbed(filename) val = bed.read() print(val) [[ 1. 0. nan 0.] [ 2. 0. nan 2.] [ 0. 1. 2. 0.]] del bed
```
Read every second individual and SNPs (variants) from 20 to 30.
```python
filename2 = samplefile("somemissing.bed") bed2 = openbed(filename2) val2 = bed2.read(index=np.s[::2,20:30]) print(val2.shape) (50, 10) del bed2
```
List the first 5 individual (sample) ids, the first 5 SNP (variant) ids, and every unique chromosome. Then, read every value in chromosome 5.
```python
with openbed(filename2) as bed3: ... print(bed3.iid[:5]) ... print(bed3.sid[:5]) ... print(np.unique(bed3.chromosome)) ... val3 = bed3.read(index=np.s[:,bed3.chromosome=='5']) ... print(val3.shape) ['iid0' 'iid1' 'iid2' 'iid3' 'iid4'] ['sid0' 'sid1' 'sid2' 'sid3' 'sid_4'] ['1' '10' '11' '12' '13' '14' '15' '16' '17' '18' '19' '2' '20' '21' '22' '3' '4' '5' '6' '7' '8' '9'] (100, 6)
```