geneRegionBiomart(chr, start, end, strand, biomart, dp = NULL, chrFunction = function(x) x, strandFunction = function(x) x)
chr
An integerstart
The start location end
The end location strand
An integer -1, 0, 1biomart
A martdp
DisplayPars objectchrFunction
A function which takes
chr
and converts it into the correct representation for
biomaRt. For instance yeast likes to have chromosomes as roman
numerals so you can use as.roman here.strandFunction
Analagous to chrFunction,
but for strand. The internal representation of strand is -1,0,1
whereas biomaRt has different species dependent representations.