Description Usage Arguments Value Author(s) See Also Examples
This function retrieves exon information from an object of PatCNVSession-class
or PatCNVData-class
1 |
obj |
an object of |
gene.name |
a character vector containing gene names. A value of NULL instructs the function to select all the genes |
capture.only |
a logical value indicating if only captured exons should be outputted |
attri |
NULL or a character vector containing specified exon attributes |
If attri=NULL, a data.frame of exon information is outputted (each row is an exon):
gene.name |
gene name or identifier of corresponding exon |
chr |
exon chromosome |
start |
exon start position |
start |
exon end position |
is.captured |
a binary value, whether this exon is captured |
otherwise, a data.frame of specified exon attributes is outputted
Chen Wang
1 2 3 4 5 6 7 8 9 10 | #=== load a simulation example
config.filename <- "sim1.ini"
makeSimulation(config.filename)
sim.session <- createSession(config.filename)
#=== print first parts of exon information
head(exonInfo(sim.session))
#=== print first parts of exon information with selected attributes
head(exonInfo(sim.session,attri=c("gene.name","chr","start")))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.