摘要:
一个坑:pybedtools 使用和不用saveas 会导致结果不同,有时saveas 或 count 就会清空数据。 It looks like filter function doesn't return a BedTool object ready to use. a = pybedtools 阅读全文
摘要:
ndarray的合并 定义要使用的数据源 a = np.array([1, 1, 1]) b = np.array([2, 2, 2]) print('a', a) print('b', b) <class 'numpy.ndarray'> a [1 1 1] b [2 2 2] numpy.vst 阅读全文