Usage
useMart(biomart, dataset, host="www.ensembl.org",
path="/biomart/martservice", port=80, archive=FALSE, ssl.verifypeer =
TRUE, version, verbose = FALSE)
Arguments
biomart
BioMart database name you want to connect to. Possible database names can be retrieved with the functio listMarts
dataset
Dataset you want to use. To see the different datasets available within a biomaRt you can e.g. do: mart = useMart('ensembl'), followed by listDatasets(mart).
host
Host to connect to if different then www.biomart.org
path
Path that should be pasted after to host to get access to the web service URL
port
port to connect to, will be pasted between host and path
archive
Boolean to indicate if you want to access archived versions of BioMart databases. Note that this gives access to only a limited number of archived BioMarts and the most recent archives are often not available. A better alternative is to leave archive = FALSE and to specify the url of the archived BioMart you want to access see vignette for an example.
ssl.verifypeer
Set SSL peer verification on or off. By default ssl.verifypeer is set to TRUE
version
Use version name instead of biomart name to specify which BioMart you want to use
verbose
Give detailed output of what the method is doing while in
use, for debugging