Description Usage Arguments Value Author(s) Examples
Allow usage of ImpulseDE2 ouput object like a list with respect to the core output: dfImpulseDE2Results and vecDEGenes.
1 2 3 4 5 6 7 8 |
x |
(ImpulseDE2Object) ImpulseDE2 output object. |
i, name |
(idx or str) Name or index of core output element of ImpulseDE2Object. |
j |
Not used, only vectors. |
... |
Not used. |
Names of core output in ImpulseDE2Object.
Target element from ImpulseDE2Object.
Target element from ImpulseDE2Object.
David Sebastian Fischer
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | lsSimulatedData <- simulateDataSetImpulseDE2(
vecTimePointsA = rep(seq(1,8),3),
vecTimePointsB = NULL,
vecBatchesA = NULL,
vecBatchesB = NULL,
scaNConst = 30,
scaNImp = 10,
scaNLin = 10,
scaNSig = 10)
objectImpulseDE2 <- runImpulseDE2(
matCountData = lsSimulatedData$matObservedCounts,
dfAnnotation = lsSimulatedData$dfAnnotation,
boolCaseCtrl = FALSE,
vecConfounders = NULL,
scaNProc = 1 )
names(objectImpulseDE2) # Display core output
# With respect to this core output, objectImpulseDE2
# can be treated like a list.
head(objectImpulseDE2[['dfImpulseDE2Results']])
head(objectImpulseDE2$dfImpulseDE2Results)
head(objectImpulseDE2[['vecDEGenes']])
head(objectImpulseDE2$vecDEGenes)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.