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. MySQL/InnoDB中,对于锁的认识

    MySQL/InnoDB的加锁,一直是一个面试中常问的话题.例如,数据库如果有高并发请求,如何保证数据完整性?产生死锁问题如何排查并解决?我在工作过程中,也会经常用到,乐观锁,排它锁,等.于是今天就对 ...

  2. 点击复制内容到剪切板(clipboard)

    clipboard官方文档:https://clipboardjs.com/ 安装: 1.用npm:npm install clipboard --save 2.下载:https://github.c ...

  3. hadoop2.4集群的搭建

    hadoop中的三大组件: hdfs:分布式文件管理系统 (namenode管理所有的datanode) yarn:资源调度系统(ResourceManager管理所有的nodemanager) ma ...

  4. IDEA搭建Spring框架环境

      一.spring 框架概念 spring 是众多开源 java 项目中的一员,基于分层的 javaEE 应用一站式轻量 级开源框架,主要核心是 Ioc(控制反转/依赖注入) 与 Aop(面向切面) ...

  5. 【sql小坑】在group by里用select字段的别名?

    背景 -- 求每个用户的拥有的产品数,其中userid需要简单split出来 SELECT split (id, '-') [ 0 ] AS userid, count(DISTINCT produc ...

  6. 《算法》第五章部分程序 part 3

    ▶ 书中第五章部分程序,包括在加上自己补充的代码,字符串高位优先排序(美国国旗排序) ● 美国国旗排序 package package01; import edu.princeton.cs.algs4 ...

  7. python学习笔记_week21

    note 上节内容回顾: 1.请求周期 url> 路由 > 函数或类 > 返回字符串或者模板语言? Form表单提交: 提交 -> url > 函数或类中的方法 - .. ...

  8. getent passwd 不能访问到 ldap 的用户

    getent passwd  不能访问到 ldap 的用户,搞了一整个下午! 依然没搞定, 一开始是不知道nslcd 需要启动,另外getent passwd 域, 无有用结果, 换个方式搜索 get ...

  9. VC编译错误,把类误认为是函数

    这段代码是在一个动态库中,我像把这个类导出,于是加上 SC_EXPORTS 宏.class SC_EXPORTS CProtocolCheck{public: CProtocolCheck(void) ...

  10. python 阿狸的进阶之路(7)

    面向对象 转自林海峰的博客  http://www.cnblogs.com/linhaifeng/articles/6182264.html 面向对象的理解: 将数据分类,比如学生类.数据有关的函数, ...