【问题标题】:How to cache reads?如何缓存读取?
【发布时间】:2016-03-22 00:47:33
【问题描述】:
【问题讨论】:
标签:
python
caching
bioinformatics
samtools
pysam
【解决方案1】:
Caching 是加速长时间运行操作的典型方法。为了计算速度,它牺牲了内存。
假设你有一个给定一组参数的函数总是返回相同的结果。不幸的是,这个函数很慢,你需要调用它相当多的时间来减慢你的程序。
您可以做的是存储有限数量的 {parameters: result} 组合,并在使用相同参数调用函数时跳过其逻辑。
这是一个肮脏的技巧,但非常有效,尤其是在参数组合与函数速度相比较低的情况下。
在 Python 3 中有一个 decorator 用于此目的。
在 Python 2 中,library 可以提供帮助,但您需要做更多工作。
【解决方案2】:
AlignmentFile 作为第一个参数:
文件路径或对象
因此,您可以提供一个支持类文件接口的对象,即方法seek、read、tell,而不是提供文件名。
在为此实现类时,您还可以在读取上实现缓存,这当然必须取决于当前光标位置。
如果文件大小足够小以适合内存,您可以读取完整的文件并对io.BytesIO 对象进行操作,无需创建自己的类:
data = io.BytesIO(open('datafile','rb').read())
your_object = AlignmentFile(data, <other args>)
我不确定这是否会加快速度,因为我假设现代操作系统(我知道 linux 会这样做)会缓存文件访问。所以也许依靠它就足够了。
【解决方案3】:
我发现其他答案没有解决如何在实践中实际缓存读取。
这是一个简单的方法:
from collections import defaultdict
from pysam import AlignmentFile
def get_mate(read_pairs, read):
if read.qname not in read_pairs or not (read.is_read1 ^ read.is_read2):
return None
pos = 1 if read.is_read1 else 0
return read_pairs[read.qname][pos]
# maps QNAME to a read pair
read_pairs = defaultdict(lambda : [None, None])
fin = AlignmentFile("your_filepath")
for read in fin.fetch(your_chrom,your_start,your_stop):
if read.is_paired and (read.is_read1 ^ read.is_read2):
pos = 0 if read.is_read1 else 1
read_pairs[read.qname][pos] = read
## Now compare execution time of these two commands
your_read_mate = fin.mate(your_read) # pysam, non-cached
your_read_mate = get_mate(read_pairs, your_read) # cached
其中读取对的操作定义为 (c.f. SAM format):
- 两个读取具有相同的 QNAME
- 每次读取都设置了标志 0x1 (
read.is_paired)
- 每次读取仅设置标志 0x40 (
read.is_read1) 或 0x80 (read.is_read2) 之一(XOR read.is_read1 ^ read.is_read2 对此进行检查)
在我的机器上,使用 ipython 的%timeit 命令,我得到18.9 ms ± 510 µs 用于非缓存调用,854 ns ± 28.7 ns 用于给定读取的缓存调用(我知道这对在read_pairs 中) :-)