Contents

1 Introduction

In recent years a wealth of biological data has become available in public data repositories. Easy access to these valuable data resources and firm integration with data analysis is needed for comprehensive bioinformatics data analysis. The biomaRt package, provides an interface to a growing collection of databases implementing the BioMart software suite. The package enables retrieval of large amounts of data in a uniform way without the need to know the underlying database schemas or write complex SQL queries. Examples of BioMart databases are Ensembl, Uniprot and HapMap. These major databases give biomaRt users direct access to a diverse set of data and enable a wide range of powerful online queries from R.

2 Using a BioMart other than Ensembl

There are a small number of non-Ensembl databases that offer a BioMart interface to their data. The biomaRt package can be used to access these in a very similar fashion to Ensembl. The majority of biomaRt functions will work in the same manner, but the construction of the initial Mart object requires slightly more setup. In this section we demonstrate the setting requires to query Wormbase ParaSite and Phytozome. First we need to load biomaRt.

library(biomaRt)

2.1 Wormbase

To demonstrate the use of the biomaRt package with non-Ensembl databases the next query is performed using the Wormbase ParaSite BioMart. In this example, we use the listMarts() function to find the name of the available marts, given the URL of Wormbase. We use this to connect to Wormbase BioMart using the useMart() function.1 Note that we use the https address and must provide the port as 443. Queries to WormBase will fail without these options.

listMarts(host = "parasite.wormbase.org")
##         biomart      version
## 1 parasite_mart WBPS 16 Mart
wormbase <- useMart(biomart = "parasite_mart", 
                    host = "https://parasite.wormbase.org", 
                    port = 443)

We can then use functions described earlier in this vignette to find and select the gene dataset, and print the first 6 available attributes and filters. Then we use a list of gene names as filter and retrieve associated transcript IDs and the transcript biotype.

listDatasets(wormbase)
##     dataset          description version
## 1 wbps_gene All Species (WBPS16)      16
wormbase <- useDataset(mart = wormbase, dataset = "wbps_gene")
head(listFilters(wormbase))
##                  name     description
## 1     species_id_1010          Genome
## 2 nematode_clade_1010  Nematode Clade
## 3     chromosome_name Chromosome name
## 4               start           Start
## 5                 end             End
## 6              strand          Strand
head(listAttributes(wormbase))
##                      name        description         page
## 1          species_id_key      Internal Name feature_page
## 2    production_name_1010     Genome project feature_page
## 3       display_name_1010        Genome name feature_page
## 4        taxonomy_id_1010        Taxonomy ID feature_page
## 5 assembly_accession_1010 Assembly accession feature_page
## 6     nematode_clade_1010     Nematode clade feature_page
getBM(attributes = c("external_gene_id", "wbps_transcript_id", "transcript_biotype"), 
      filters = "gene_name", 
      values = c("unc-26","his-33"), 
      mart = wormbase)
##   external_gene_id wbps_transcript_id transcript_biotype
## 1           his-33         F17E9.13.1     protein_coding
## 2           unc-26          JC8.10a.1     protein_coding
## 3           unc-26          JC8.10b.1     protein_coding
## 4           unc-26          JC8.10c.1     protein_coding
## 5           unc-26          JC8.10d.1     protein_coding

2.2 Phytozome

2.2.1 Version 12

The Phytozome 12 BioMart was retired in August 2021 and can not longer be accessed.

2.2.2 Version 13

Version 13 of Phyotozome can be found at https://phytozome-next.jgi.doe.gov/ and if you wish to query that version the URL used to create the Mart object must reflect that.

phytozome_v13 <- useMart(biomart = "phytozome_mart", 
                dataset = "phytozome", 
                host = "https://phytozome-next.jgi.doe.gov")

Once this is set up the usual biomaRt functions can be used to interrogate the database options and run queries.

getBM(attributes = c("organism_name", "gene_name1"), 
      filters = "gene_name_filter", 
      values = "82092", 
      mart = phytozome_v13)
##          organism_name gene_name1
## 1 Smoellendorffii_v1.0      82092

3 Session Info

sessionInfo()
## R version 4.2.0 RC (2022-04-19 r82224)
## Platform: x86_64-pc-linux-gnu (64-bit)
## Running under: Ubuntu 20.04.4 LTS
## 
## Matrix products: default
## BLAS:   /home/biocbuild/bbs-3.15-bioc/R/lib/libRblas.so
## LAPACK: /home/biocbuild/bbs-3.15-bioc/R/lib/libRlapack.so
## 
## locale:
##  [1] LC_CTYPE=en_US.UTF-8       LC_NUMERIC=C               LC_TIME=en_GB             
##  [4] LC_COLLATE=C               LC_MONETARY=en_US.UTF-8    LC_MESSAGES=en_US.UTF-8   
##  [7] LC_PAPER=en_US.UTF-8       LC_NAME=C                  LC_ADDRESS=C              
## [10] LC_TELEPHONE=C             LC_MEASUREMENT=en_US.UTF-8 LC_IDENTIFICATION=C       
## 
## attached base packages:
## [1] stats     graphics  grDevices utils     datasets  methods   base     
## 
## other attached packages:
## [1] biomaRt_2.52.0   BiocStyle_2.24.0
## 
## loaded via a namespace (and not attached):
##  [1] Rcpp_1.0.8.3           prettyunits_1.1.1      png_0.1-7              Biostrings_2.64.0     
##  [5] assertthat_0.2.1       digest_0.6.29          utf8_1.2.2             BiocFileCache_2.4.0   
##  [9] R6_2.5.1               GenomeInfoDb_1.32.0    stats4_4.2.0           RSQLite_2.2.12        
## [13] evaluate_0.15          highr_0.9              httr_1.4.2             pillar_1.7.0          
## [17] zlibbioc_1.42.0        rlang_1.0.2            progress_1.2.2         curl_4.3.2            
## [21] jquerylib_0.1.4        blob_1.2.3             S4Vectors_0.34.0       rmarkdown_2.14        
## [25] stringr_1.4.0          RCurl_1.98-1.6         bit_4.0.4              compiler_4.2.0        
## [29] xfun_0.30              pkgconfig_2.0.3        BiocGenerics_0.42.0    htmltools_0.5.2       
## [33] tidyselect_1.1.2       KEGGREST_1.36.0        tibble_3.1.6           GenomeInfoDbData_1.2.8
## [37] bookdown_0.26          codetools_0.2-18       IRanges_2.30.0         XML_3.99-0.9          
## [41] fansi_1.0.3            withr_2.5.0            crayon_1.5.1           dplyr_1.0.8           
## [45] dbplyr_2.1.1           bitops_1.0-7           rappdirs_0.3.3         jsonlite_1.8.0        
## [49] lifecycle_1.0.1        DBI_1.1.2              magrittr_2.0.3         cli_3.3.0             
## [53] stringi_1.7.6          cachem_1.0.6           XVector_0.36.0         xml2_1.3.3            
## [57] bslib_0.3.1            ellipsis_0.3.2         filelock_1.0.2         vctrs_0.4.1           
## [61] generics_0.1.2         tools_4.2.0            bit64_4.0.5            Biobase_2.56.0        
## [65] glue_1.6.2             purrr_0.3.4            hms_1.1.1              fastmap_1.1.0         
## [69] yaml_2.3.5             AnnotationDbi_1.58.0   BiocManager_1.30.17    memoise_2.0.1         
## [73] knitr_1.38             sass_0.4.1
warnings()