gff文件_如何提取gff文件中的基因注释信息

gff文件_如何提取gff文件中的基因注释信息原标题 如何提取 gff 文件中的基因注释信息 gff3 格式注释文件是最常见的基因注释 https archive broadinstitu org annotation argo help gff3 html 简单来说 gff3 是以 tab 分隔的文本文件 共有 9 列 对应信息如下 1 seqnameThena Typicallyach

原标题:如何提取gff文件中的基因注释信息

gff3格式注释文件是最常见的基因注释,(https://archive.broadinstitute.org/annotation/argo/help/gff3.html)

简单来说,gff3是以tab分隔的文本文件,共有9列,对应信息如下:

1、seqname

The name of the sequence. Typically a chromosome or a contig. Argo does not care what you put here. It will superimpose gff features on any sequence you like.

2、source

The program that generated this feature. Argo displays the value of this field in the inspector but does not do anything special with it.

3、feature

The name of this type of feature. The official GFF3 spec states that this should be a term from the SOFA ontology, but Argo does not do anything with this value except display it.

4、start

The starting position of the feature in the sequence. The first base is numbered 1.

5、end

The ending position of the feature (inclusive).

6、score

A score between 0 and 1000. If there is no score value, enter “.”.

7、strand

Valid entries include ‘+’, ‘-‘, or ‘.’ (for don’t know/don’t care).

8、frame

If the feature is a coding exon, frame should be a number between 0-2 that represents the reading frame of the first base. If the feature is not a coding exon, the value should be ‘.’. Argo does not do anything with this field except display its value.

9、GFF3: grouping attributes

Attribute keys and values are separated by ‘=’ signs. Values must be URI encoded.quoted. Attribute pairs are separated by semicolons. Certain, special attributes are used for grouping and identification (See below). This field is the one important difference betweenGFF flavor

(https://archive.broadinstitute.org/annotation/argo/help/gff.html).

在进行生物信息分析的时候,常需要把gene的注释信息(第9列)提取出来附加到差异基因或目的基因的表格结果中,但第9列的注释信息通常较多,且不同基因含部分注释信息不全部一致,一般我们只需要部分重要的a信息,如Dbxref、gene_biotype、deion。

本文以ncbi上发布的人类GRCh38.p7版本注释文件为示例,使用awk命令进行该操作。

(https://www.gnu.org/software/gawk/manual/gawk.html)

1、下载目的物种注释文件:

(ftp://ftp.ncbi.nlm.nih.gov/genomes/all/GCF_000001405.33_GRCh38.p7/GCF_000001405.33_GRCh38.p7_genomic.gff.gz)

然后对GCF_000001405.33_GRCh38.p7_genomic.gff.gz进行解压操作,

得到解压文GCF_000001405.33_GRCh38.p7_genomic.gff;

2、查看第9列有哪些注释信息:

$ awk ‘BEGIN{FS=OFS=”\t”} $3==”gene”{split($9, a, “;”); for(i in a){split(a[i], b, “=”); if(++c[b[1]]==1) print b[1]}}’ GCF_000001405.33_GRCh38.p7_genomic.gff

运行显示结果有:

ID、Dbxref、Name、deion

gbkey、gene、gene_biotype、pseudo、gene_synonym、partial、start_range、end_range

exception、Note

然后使用以下命令查看gff3文件中的结果:

$ awk -F “\t” ‘$3==”gene”{print $9}’ GCF_000001405.33_GRCh38.p7_genomic.gff | cat -n | less

可以看到

gff文件_如何提取gff文件中的基因注释信息

3、下面使用awk进行基因注释信息提取(以提取Dbxref、gene_biotype、deion信息为例):

$ awk ‘BEGIN{FS=OFS=”\t”} $3==”gene”{print $0}’ GCF_000001405.33_GRCh38.p7_genomic.gff |

sed ‘s/;/\t/g’ |

awk ‘BEGIN{FS=OFS=”\t”} {for(i=1; i<=NF; i++){split($i, a, “=”);

b[a[1]]=a[2]}} {print b[“Name”],b[“Dbxref”],b[“gene_biotype”],b[“deion”]}

{split(“”, b, “:”)}’

终端显示的提取信息(tab分隔,依次为Name、Dbxref、gene_biotype、deion):

gff文件_如何提取gff文件中的基因注释信息

说明:部分基因不包含某些注释信息,如LOC基因没有deion信息,则在对应列为空字符。

4、对应终端打印的提取信息,可以添加表头和生成文件,同时对应部分出现在多个染色体的基因在第1列会重复,请对3中的结果进行以下操作即可:

$ sed ‘1i Name\tDbxref\tgene_biotype\tdeion’ | awk -F “\t” ‘++a[$1]==1’返回搜狐,查看更多

责任编辑:

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请联系我们举报,一经查实,本站将立刻删除。

发布者:全栈程序员-站长,转载请注明出处:https://javaforall.net/232662.html原文链接:https://javaforall.net

(0)
全栈程序员-站长的头像全栈程序员-站长


相关推荐

  • python与java的比较_Python和Java两者有什么区别?

    python与java的比较_Python和Java两者有什么区别?Java是具有悠久历史的老牌开发语言,Python是如今人工智能时代的首选语言,无论是Java还是Python都相当强大,这两门语言有很多的相似之处,但是也有很多的不同,难免会拿来比较。今天千锋小编就和大家对比一下Python和Java,看看两者有什么区别?1.开源这两者都是开源语言,换言之你可以随意的使用这两门语言而不需要付费,你也可以阅读他们的源代码学习,并且对它们做一些改动。在这一点上,两者…

    2022年7月8日
    18
  • pycharm安装opencv-python_查看pycharm有哪些库

    pycharm安装opencv-python_查看pycharm有哪些库方法1:直接通过cmd命令pipinstallopencv-python方法2:https://www.jb51.net/article/181975.htm

    2022年8月27日
    8
  • stm32 sd卡读写_sd卡引脚定义图

    stm32 sd卡读写_sd卡引脚定义图SD卡   SD卡(SecureDigitalMemoryCard)即:安全数码卡,它是在MMC的基础上发展而来,是一种基于半导体快闪记忆器的新一代记忆设备,它被广泛地于便携式装置上使用,例如数码相机、个人数码助理(PDA)和多媒体播放器等。SD卡由日本松下、东芝及美国SanDisk公司于1999年8月共同开发研制。   SD卡按容量分类,可以分为3类:SD卡、SDHC卡、SDXC…

    2022年10月3日
    3
  • 在线navicat16 激活码 键[在线序列号]

    在线navicat16 激活码 键[在线序列号],https://javaforall.net/100143.html。详细ieda激活码不妨到全栈程序员必看教程网一起来了解一下吧!

    2022年3月18日
    2.0K
  • mac电脑卸载软件_docker卸载镜像

    mac电脑卸载软件_docker卸载镜像  在Mac上卸载docker,首先要关闭docker软件,然后进入/usr/local/bin/目录,依次使用如下命令:##1)进入docker的安装目录cd/usr/local/bin/##2)删除与docker相关的文件夹sudorm-rfdocker*sudorm-rfcom.docker.*sudorm-rfhub-tool*sudorm-rfkube*sudorm-rfvpnkit*  如图(1)所示:图(1)完成删除

    2022年8月30日
    5
  • StartActivityForResult详解

    StartActivityForResult详解转载自:https://www.cnblogs.com/zgqys1980/p/5286208.html 一、如果想在Activity中得到新打开Activity关闭后返回的数据,需要使用系统提供的startActivityForResult(Intentintent,intrequestCode)方法打开新的Activity,新的Activity关闭后会向前面的Activity…

    2022年7月11日
    16

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注

关注全栈程序员社区公众号