Match a species query to the regularized species info.

species_info(query = NULL, ...)

Arguments

query

the species name to lookup, if NULL (default), returns the internal species info table, otherwise the row of the table that matches query.

...

pass through

Value

a data.frame of species-related information that is used to fetch appropriate annotation files and conversion functions between species for gene identifiers, and such.

Examples

species_info()
#>        alias                  species taxonomy_id bioc_full bioc_abbrev kegg
#> 1                                              NA                    Ag  aga
#> 2                                              NA                    At  ath
#> 3                                              NA                    Bt  bta
#> 4       worm   Caenorhabditis elegans        6239                    Ce  cel
#> 5        fly  Drosophila melanogaster        7227                    Dm  dme
#> 6  zebrafish              Danio rerio        7955                    Dr  dre
#> 7                                              NA                 EcK12  eco
#> 8                                              NA               EcSakai  ecs
#> 9                                              NA                    Gg  gga
#> 10     human             Homo sapiens        9606                    Hs  hsa
#> 11      cyno      Macaca fascicularis        9541                    Mf  mcf
#> 12     mouse             Mus musculus       10090                    Mm  mmu
#> 13    rhesus           Macaca mulatta        9544                   Mmu  mcc
#> 14                                             NA                    Pf  pfa
#> 15                                             NA                    Pt  ptr
#> 16       rat        Rattus norvegicus       10116                    Rn  rno
#> 17       dog   Canis lupus familiaris        9615                           
#> 18     yeast Saccharomyces cerevisiae        4932                    Ss  ssc
#> 19                                             NA        Xl         xla     
#>                  mart_dataset                symbol_name
#> 1                                                       
#> 2                                                       
#> 3                                                       
#> 4                                                       
#> 5            flybasename_gene dmelanogaster_gene_ensembl
#> 6         drerio_gene_ensembl             zfin_id_symbol
#> 7                                                       
#> 8                                                       
#> 9                                                       
#> 10      hsapiens_gene_ensembl                hgnc_symbol
#> 11 mfascicularis_gene_ensembl         external_gene_name
#> 12     mmusculus_gene_ensembl                 mgi_symbol
#> 13                                                      
#> 14                                                      
#> 15                                                      
#> 16                                                      
#> 17                                                      
#> 18                                                      
#> 19                                                      
species_info("human")
#> $alias
#> [1] "human"
#> 
#> $species
#> [1] "Homo sapiens"
#> 
#> $taxonomy_id
#> [1] 9606
#> 
#> $bioc_full
#> [1] ""
#> 
#> $bioc_abbrev
#> [1] "Hs"
#> 
#> $kegg
#> [1] "hsa"
#> 
#> $mart_dataset
#> [1] "hsapiens_gene_ensembl"
#> 
#> $symbol_name
#> [1] "hgnc_symbol"
#>