Description Slots Features Functions Author(s) See Also Examples
This S4 class represents a data set containing NBTest results results.
results
Data.frame with NBTest results of expressed isoforms.
lowExpIndex
Numeric indicating the positions of low expressed isoforms.
contrast
Character indicating the contrast used for NBTest.
dispersion
Numeric model dispersions.
Explore differential splicing occurrence.
Explore isoform relative expression an its changes.
Combine the results of both gene and isoform levels analysis.
NBSpliceRes S4 class includes the following functions:
Constructor of NBSpliceRes objects.
Gets the results slot.
Gets the contrast slot.
Gets the lowExpIdx slot.
Gets the dispersion slot.
Shows a NBSpliceRes object.
Shows a NBSpliceRes object.
Returns the list of differentially spliced genes.
Returns the differential splicing results.
Returns the NBSplice results for an specific gene.
Gabriela A. Merino merino.gabriela33@gmail.com and Elmer A. Fernandez efernandez@bdmg.com.ar
Other NBSpliceRes: GetDSGenes
,
GetDSResults
, GetGeneResults
,
NBSpliceRes-initialize
,
NBSpliceRes
, myDSResults
,
plotGeneResults
,
plotRatiosDisp
, plotVolcano
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | data(myDSResults, package="NBSplice")
myResults<-results(myDSResults, filter=FALSE)
myLowExpIdx<-lowExpIndex(myDSResults)
myContrast<-contrast(myDSResults)
myNewDSResults<-NBSpliceRes(myResults, myLowExpIdx, myContrast)
##Getting differentially spliced genes
myDSGenes<-GetDSGenes(myDSResults)
##Getting the results for differentially spliced genes
myDSResultsDF<-GetDSResults(myDSResults)
##Getting the results for a particular differentially spliced gene
myResults<-results(myDSResults)
## Select the first gene
gene<-myResults[,"gene"][1]
myGeneResults<-GetGeneResults(myDSResults, gene)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.