R语言【taxa】——df_ref():有效的 分类信息数据库

Package taxa version 0.4.2


Description

定义可以被 taxon_db 对象使用或使用 taxon_db 对象的有效分类数据库,例如 taxon_id 和 taxon。

使用 db_ref$get 查看数据库的详细信息。

用户可以使用 db_ref$set 创建自定义的数据库,并添加到数据库列表中。

每个数据库都必须包含下列信息:

  • 数据库对应的网站的URL
  • 一段简短的描述
  • 定义有效的类群ID的正则表达式
  • 数据库中有效的分类等级

Usage

R 复制代码
db_ref

Format

一个长度为3的列表对象。


Attribution

此代码基于knitr包中的代码处理选项。


Examples

查看所有的数据库定义:

R 复制代码
db_ref$get()
R 复制代码
<taxon_db_def[8]>
   _____________________ ncbi ______________________
   url:         http://www.ncbi.nlm.nih.gov/taxonomy
   desc:        NCBI Taxonomy Database              
   id_regex:    [0-9]+                              
   rank_levels:                                     

   _____________________________ gbif _____________________________
   url:         http://www.gbif.org/developer/species              
   desc:        GBIF Taxonomic Backbone                            
   id_regex:    [0-9]+                                             
   rank_levels: kingdom < phylum < order < family < genus < species

   _____________________________________ bold _____________________________________
   url:         http://www.boldsystems.org                                         
   desc:        Barcode of Life                                                    
   id_regex:    [0-9]+                                                             
   rank_levels: phylum < class < order < family < subfamily < genus < species < su...

   ___________________ col ___________________
   url:         http://www.catalogueoflife.org
   desc:        Catalogue of Life             
   id_regex:    [a-z0-9]{32}                  
   rank_levels:                               

   ______________ eol ______________
   url:         http://eol.org      
   desc:        Encyclopedia of Life
   id_regex:    [0-9]+              
   rank_levels:                     

   ____________________ nbn ____________________
   url:         https://nbn.org.uk              
   desc:        UK National Biodiversity Network
   id_regex:    [A-Z]{5}[0-9]{10}               
   rank_levels:                                 

   ________________ tps ________________
   url:         http://www.tropicos.org/
   desc:        Tropicos                
   id_regex:    [0-9]+                  
   rank_levels:                         

   _______________________ itis _______________________
   url:         http://www.itis.gov                    
   desc:        Integrated Taxonomic Information System
   id_regex:    [0-9]+                                 
   rank_levels:                                        

自定义数据库:

R 复制代码
db_ref$set(
  name = "my_new_database",
  url = "http://www.my_tax_database.com",
  desc = "I just made this up",
  id_regex = ".*"
)

db_ref$get()
R 复制代码
<taxon_db_def[9]>
   _____________________ ncbi ______________________
   url:         http://www.ncbi.nlm.nih.gov/taxonomy
   desc:        NCBI Taxonomy Database              
   id_regex:    [0-9]+                              
   rank_levels:                                     

   _____________________________ gbif _____________________________
   url:         http://www.gbif.org/developer/species              
   desc:        GBIF Taxonomic Backbone                            
   id_regex:    [0-9]+                                             
   rank_levels: kingdom < phylum < order < family < genus < species

   ________________________________________ bold _________________________________________
   url:         http://www.boldsystems.org                                                
   desc:        Barcode of Life                                                           
   id_regex:    [0-9]+                                                                    
   rank_levels: phylum < class < order < family < subfamily < genus < species < subspecies

   ___________________ col ___________________    ______________ eol ______________
   url:         http://www.catalogueoflife.org    url:         http://eol.org      
   desc:        Catalogue of Life                 desc:        Encyclopedia of Life
   id_regex:    [a-z0-9]{32}                      id_regex:    [0-9]+              
   rank_levels:                                   rank_levels:                     

   ____________________ nbn ____________________    ________________ tps ________________
   url:         https://nbn.org.uk                  url:         http://www.tropicos.org/
   desc:        UK National Biodiversity Network    desc:        Tropicos                
   id_regex:    [A-Z]{5}[0-9]{10}                   id_regex:    [0-9]+                  
   rank_levels:                                     rank_levels:                         

   _______________________ itis _______________________    _____________ my_new_database _____________
   url:         http://www.itis.gov                        url:         http://www.my_tax_database.com
   desc:        Integrated Taxonomic Information System    desc:        I just made this up           
   id_regex:    [0-9]+                                     id_regex:    .*                            
   rank_levels:                                            rank_levels:                               

恢复默认设置:

R 复制代码
db_ref$reset()

db_ref$get()
R 复制代码
<taxon_db_def[8]>
   _____________________ ncbi ______________________
   url:         http://www.ncbi.nlm.nih.gov/taxonomy
   desc:        NCBI Taxonomy Database              
   id_regex:    [0-9]+                              
   rank_levels:                                     

   _____________________________ gbif _____________________________
   url:         http://www.gbif.org/developer/species              
   desc:        GBIF Taxonomic Backbone                            
   id_regex:    [0-9]+                                             
   rank_levels: kingdom < phylum < order < family < genus < species

   ________________________________________ bold _________________________________________
   url:         http://www.boldsystems.org                                                
   desc:        Barcode of Life                                                           
   id_regex:    [0-9]+                                                                    
   rank_levels: phylum < class < order < family < subfamily < genus < species < subspecies

   ___________________ col ___________________    ______________ eol ______________
   url:         http://www.catalogueoflife.org    url:         http://eol.org      
   desc:        Catalogue of Life                 desc:        Encyclopedia of Life
   id_regex:    [a-z0-9]{32}                      id_regex:    [0-9]+              
   rank_levels:                                   rank_levels:                     

   ____________________ nbn ____________________    ________________ tps ________________
   url:         https://nbn.org.uk                  url:         http://www.tropicos.org/
   desc:        UK National Biodiversity Network    desc:        Tropicos                
   id_regex:    [A-Z]{5}[0-9]{10}                   id_regex:    [0-9]+                  
   rank_levels:                                     rank_levels:                         

   _______________________ itis _______________________
   url:         http://www.itis.gov                    
   desc:        Integrated Taxonomic Information System
   id_regex:    [0-9]+                                 
   rank_levels:                                        
相关推荐
jiayou649 小时前
KingbaseES 实战:深度解析数据库对象访问权限管理
数据库
李广坤1 天前
MySQL 大表字段变更实践(改名 + 改类型 + 改长度)
数据库
爱可生开源社区2 天前
2026 年,优秀的 DBA 需要具备哪些素质?
数据库·人工智能·dba
随逸1772 天前
《从零搭建NestJS项目》
数据库·typescript
加号33 天前
windows系统下mysql多源数据库同步部署
数据库·windows·mysql
シ風箏3 天前
MySQL【部署 04】Docker部署 MySQL8.0.32 版本(网盘镜像及启动命令分享)
数据库·mysql·docker
李慕婉学姐3 天前
Springboot智慧社区系统设计与开发6n99s526(程序+源码+数据库+调试部署+开发环境)带论文文档1万字以上,文末可获取,系统界面在最后面。
数据库·spring boot·后端
百锦再3 天前
Django实现接口token检测的实现方案
数据库·python·django·sqlite·flask·fastapi·pip
tryCbest3 天前
数据库SQL学习
数据库·sql
jnrjian3 天前
ORA-01017 查找机器名 用户名 以及library cache lock 参数含义
数据库·oracle