pybedtools文档--读取和写出

一、读取

pybedtools主要是使用BedTool对所有参考格式进行读取, 不但能够读取bed,gff, gtf,还可以读取gz等格式。

from pybedtools import BedTool

snps = BedTool('snps.bed.gz') # [1]

genes = BedTool('hg19.gff') # [1]



pybedtools.bedtool.BedTool

class?pybedtools.bedtool.BedTool(fn=None,?from_string=False,?remote=False)[source]

__init__(fn=None,?from_string=False,?remote=False)[source]

Wrapper around Aaron Quinlan's?BEDtools?suite of programs (https://github.com/arq5x/bedtools); also contains many useful methods for more detailed work with BED files.

fn?is typically the name of a BED-like file, but can also be one of the following:

a string filename

another BedTool object

an iterable of Interval objects

an open file object

a "file contents" string (see below)

If?from_string?is True, then you can pass a string that contains the contents of the BedTool you want to create. This will treat all spaces as TABs and write to tempfile, treating whatever you pass as?fn?as the contents of the bed file. This also strips empty lines.

Typical usage is to point to an existing file:

a=BedTool('a.bed')

But you can also create one from scratch from a string:

>>> s='''... chrX? 1? 100... chrX 25? 800... '''>>> a=BedTool(s,from_string=True)

Or use examples that come with pybedtools:

>>> example_files=pybedtools.list_example_files()>>> assert'a.bed'inexample_files>>> a=pybedtools.example_bedtool('a.bed')


二、写出

如果你想要保存结果为一个句柄,以便后续使用,使用BedTool.saveas()方法。通过Bedtool复制该文件进行操作。这个方法同事也会让你有选择的上传UCSC基因组浏览器的一个特征,而不是打开这些文件后,手动添加trackline。

>>> c=a_with_b.saveas('intersection-of-a-and-b.bed',trackline='track name="a and b"')

>>> print(c.fn)

intersection-of-a-and-b.bed

>>> # opening the underlying file shows the track line

>>> print(open(c.fn).read())

track name="a and b

"chr1? ? ? ? 155? ? 200? ? feature2? ? ? ? 0? ? ? +chr1? ? ? ? 155? ? 200? ? feature3? ? ? ? 0? ? ? -chr1? ? ? ? 900? ? 901? ? feature4? ? ? ? 0? ? ? +

>>> # printing file-based BedTool objects will not print the track line

>>> print(c)

chr1? ? ? ? 155? ? 200? ? feature2? ? ? ? 0? ? ? +chr1? ? ? ? 155? ? 200? ? feature3? ? ? ? 0? ? ? -chr1? ? ? ? 900? ? 901? ? feature4? ? ? ? 0? ? ? +

值得注意的是BedTool.saveas()方法是不是返回一个新的BedTool目标,这个目标指向于硬盘上新创建的文件。也可以允许你在你的多命令链中插入该命令。



BedTool.saveas(*args,?**kwargs)[source]

Make a copy of the BedTool.

Optionally adds?trackline?to the beginning of the file.

Optionally compresses output using gzip.

if the filename extension is .gz, or compressed=True, the output is compressed using gzip

Returns a new BedTool for the newly saved file.

A newline is automatically added to the trackline if it does not already have one.

Example usage:

>>> a=pybedtools.example_bedtool('a.bed')>>> b=a.saveas('other.bed')>>> b.fn'other.bed'>>> print(b==a)True

>>> b=a.saveas('other.bed',trackline="name='test run' color=0,55,0")>>> open(b.fn).readline()"name='test run' color=0,55,0\n">>> ifos.path.exists('other.bed'):... os.unlink('other.bed')



另外,如果你不想要加入一个track line,你也可以使用?BedTool.moveto() ,这个方法比较快,比较适合大文件。这个命名是重命名,而不是进行复制,也就意味着,如果试图使用原来的文件,就不会奏效,因为那个文件已经补存在了。

慎用

>>> d=a_with_b.moveto('another_location.bed')



BedTool.moveto(*args,?**kwargs)[source]?

Move to a new filename (can be much quicker than BedTool.saveas())

Move BED file to new filename,?fn.

Returns a new BedTool for the new file.

Example usage:

>>> # make a copy so we don't mess up the example file>>> a=pybedtools.example_bedtool('a.bed').saveas()>>> a_contents=str(a)>>> b=a.moveto('other.bed')>>> b.fn'other.bed'>>> b==a_contentsTrue


最后编辑于
?著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 214,172评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,346评论 3 389
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事?!?“怎么了?”我有些...
    开封第一讲书人阅读 159,788评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,299评论 1 288
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,409评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,467评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,476评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,262评论 0 269
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,699评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,994评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,167评论 1 343
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,827评论 4 337
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,499评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,149评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,387评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,028评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,055评论 2 352

推荐阅读更多精彩内容

  • rljs by sennchi Timeline of History Part One The Cognitiv...
    sennchi阅读 7,319评论 0 10
  • **2014真题Directions:Read the following text. Choose the be...
    又是夜半惊坐起阅读 9,457评论 0 23
  • 不知道是自己长大了还是因为结婚了的原因 之前一直过着没心没肺的日子,除了上班就是吃喝玩乐的生活,逛商场还是网上购物...
    逸茶雅阅读 171评论 0 0
  • 三十多岁的年龄,丢掉上一份十几年的工作和经验,转战一个全新的未知行业,今天是第二天。昨天第一天正式到岗,莫名的焦虑...
    星朗月明阅读 131评论 0 0
  • 在我读初高中时就听说了「人」字有两笔的故事,高高在上的老师解释,为什么有二笔? 在老师的眼中起码有是这样认为的,其...
    我是一直流浪的猪阅读 294评论 0 1