1
我存儲在bed file在numpy的這樣提取特殊的數據:如何從如R numpy的
>>> t
array([['chr1', '2488152', '2488153'],
['chr1', '2488397', '2488398'],
['chr1', '2491262', '2491417'],
...,
['chrX', '153628144', '153628282'],
['chrX', '154292795', '154292796'],
['chrX', '154294899', '154294900']],
dtype='|S9')
通常情況下,我做這個工作有R
library(dplyr)
filter(t, chrom=='chr1')
我怎麼能得到相同的結果與numpy的?並有沒有更好的方法來存儲牀文件並提取我需要的特殊線?
感謝您的任何幫助。
你可能想看看'pandas'。 – cel
您可能也有興趣['pybedtools'](https://daler.github.io/pybedtools/)。 – bli