1、数据库

orthodb数据:

odb10v0_levels.tab.gz:          NCBI taxonomy nodes where Ortho DB orthologous groups (OGs) are calculated
odb10v0_species.tab.gz: Ortho DB individual organism (aka species) ids based on NCBI taxonomy ids (mostly species level)
odb10v0_level2species.tab.gz: correspondence between level ids and species ids
odb10v0_genes.tab.gz: Ortho DB genes with some info
odb10v0_OGs.tab.gz: Ortho DB orthologous groups
odb10v0_OG2genes.tab.gz: OGs to genes correspondence
odb10v0_OG_xrefs.tab.gz: OG associations with GO, COG and InterPro ids
v9_v10_OGs_map.tab.gz mappings between the previous and current release orthologous group ids
odb10v0_fasta_<root>.tgz tar-ball with one fasta file per taxon id in the given root (bacteria,metazoa,fungi,plants)

2、odb10v0_levels.tab:

1. level NCBI taxonomy id

2. scientific name

3. total non-redundant count of genes in all underneath clustered species(在聚集的物种下面的所有的基因的总非重复计数)

4. total count of OGs built on it

5. total non-redundant count of species underneath

3、odb10v0_species.tab.gz

1. Ortho DB individual organism id, based on NCBI tax id

2. scientific name inherited from the most relevant NCBI tax id

3. genome asssembly id, when available

4. total count of clustered genes in this species

5. total count of the OGs it participates

6. mapping type, clustered(C) or mapped(M)

4、odb10v0_level2species.tab

1. top-most level NCBI tax id, one of [2,2157,2759,10239]

2. Ortho DB organism id

3. number of hops between the top-most level id and the NCBI tax id assiciated with the organism

4. ordered list of Ortho DB selected intermediate levels from the top-most level to the bottom one

5、odb10v0_genes.tab

1. Ortho DB unique gene id (not stable between releases)

2. organism tax id

3. protein original sequence id, as downloaded along with the sequence

4. Uniprot id, evaluated by mapping

5. ENSEMBL gene name, evaluated by mapping

6. NCBI gid, evaluated by mapping

7. description, evaluated by mapping

6、odb10v0_OG2genes.tab

1. OG unique id

2. Ortho DB gene id

7、odb10v0_OG_xrefs.tab

1. OG unique id

2. external DB or DB section

3. external identifier

4. number of genes in the OG associated with the identifier

参考

https://www.orthodb.org/?page=filelist

orthodb的更多相关文章

  1. 【基因组预测】braker2基因结构注释要点记录

    目录 流程使用 问题 记录下braker2的使用要点,以备忘记. 流程使用 braker2有很多流程,根据你的数据:组装的基因组.转录组.蛋白(同源,包括近缘或远缘)选择不同流程,官网有说明: htt ...

随机推荐

  1. 网易微专业 UI设计师

    网易云课堂的UI设计师微专业,需要的留言

  2. elasticssearch+kibanna入门(撰写中)

    看到一篇elasticssearch+kibanna的文章,觉得很好,不过例子是python的,所以使用java自己安装一下: https://mp.weixin.qq.com/s?__biz=MjM ...

  3. 获取get请求后面的参数

    var str = "www.baidu.com?id=1&name=zhangsan"; var data = str.split("?"); con ...

  4. 使用DolphinPHP的框架中的excel插件导入数据

    直接上函数吧 public function importfile() { if ($this->request->isPost()) { if($_POST['files']) { Cu ...

  5. js: 字符集

    用js生成字符集 一般网页制作中需要一些向上向下的小箭头,用图片非常不合算(一个页面发起多个http请求.css.文件大小等方面考虑) 所以用一些字符集的字符图形,效果很好 下面是用js生成字符集,以 ...

  6. 使用RecyclerView打造Gallery

    RecyclerView概述 RecyclerView是谷歌推出的用于向大型数据集提供有限窗口的灵活视图.可以通过导入support-v7对其进行使用. 据官方的介绍,该控件用于在有限的窗口中展示大量 ...

  7. 在IAR调用Notepad++

    之前写过在keil调用Notepad++,这次讲一下怎么在IAR调用Notepad++. 好了上步骤: 打开IAR软件,选择‘Tools’-->'Configure Tools' 2.如下图,在 ...

  8. [转]講講 John Carmack 的快速反平方根演算法

    講講 John Carmack 的快速反平方根演算法  原地址http://213style.blogspot.com/2014/07/john-carmack.html 本篇的主題很簡單,講講怎麼快 ...

  9. JS中,如何判断一个被转换的数是否是NaN

    var x="abc"; //isNaN()函数判断是否是NaN if (isNaN(parseInt(x))) { alert("非数字"); } else{ ...

  10. shell脚本运行springboot项目jar包

    #!/bin/bash APP_NAME=AutomationGuide-0.0.1-SNAPSHOT.jar #使用说明,用来提示输入参数 usage() { echo "please e ...