| probes.in.range {exonmap} | R Documentation |
Return the probes,probesets,exons,transcripts or genes between the specified locations.
probes.in.range(start, stop, strand, chr,unique=TRUE) probesets.in.range(start, stop, strand, chr,unique=TRUE) exons.in.range(start, stop, strand, chr,unique=TRUE) transcripts.in.range(start, stop, strand, chr,unique=TRUE) genes.in.range(start, stop, strand, chr,unique=TRUE)
start |
Starting nucleotide position |
stop |
Ending nucleotide position |
strand |
1 is forward, -1 is reverse |
chr |
Chromosome |
unique |
If TRUE remove duplicates |
Connects to the X:Map database to retrieve data. Before these functions can be used, xmapConnect must have been called.
A character vector, of database identifiers.
C.J. Miller, M.J. Okoniewski
if(interactive()) {
xmapConnect()
probes.in.range(1,1000,1,"1")
probesets.in.range(1,1000,1,"1")
exons.in.range(1,1000,1,"1")
transcripts.in.range(1,1000,1,"1")
genes.in.range(1,1000,1,"1")
}