Usage
getBM(attributes, filters = "", values = "", mart, curl = NULL, checkFilters = TRUE, verbose = FALSE, uniqueRows = TRUE, bmHeader = FALSE)
Arguments
attributes
Attributes you want to retrieve. A possible list of attributes can be retrieved using the function listAttributes.
filters
Filters (one or more) that should be used in the query. A possible list of filters can be retrieved using the function listFilters.
values
Values of the filter, e.g. vector of affy IDs. If multiple filters are specified then the argument should be a list of vectors of which the position of each vector corresponds to the position of the filters in the filters argument.
mart
object of class Mart, created with the useMart function.
curl
An optional 'CURLHandle' object, that can be used to speed up getBM when used in a loop.
checkFilters
Sometimes attributes where a value needs to be specified, for example upstream\_flank with value 20 for obtaining upstream sequence flank regions of length 20bp, are treated as filters in BioMarts. To enable such a query to work, one must specify the attribute as a filter and set checkFilters = FALSE for the query to work.
verbose
When using biomaRt in webservice mode and setting verbose to TRUE, the XML query to the webservice will be printed.
uniqueRows
If the result of a query contains multiple identical rows, setting this argument to TRUE (default) will result in deleting the duplicated rows in the query result at the server side.
bmHeader
Boolean to indicate if the result retrieved from the
BioMart server should include the data headers or not, defaults to FALSE. This should
only be switched on if the default behavior results in errors,
setting to on might still be able to retrieve your data in that case