Description Usage Arguments Value See Also Examples
Operators acting on INSPEcT, INSPEcT_model or INSPEcT_diffsteady objects to extract parts. INSPEcT_model objects can be subsetted only by gene. INSPEcT objects can be subsetted either by gene id or time point. In case of subsetting an INSPEcT object by time point, the model should be empty.
1 2 3 4 5 6 7 8 | ## S4 method for signature 'INSPEcT_model,ANY,ANY,ANY'
x[i]
## S4 method for signature 'INSPEcT,ANY,ANY,ANY'
x[i, j]
## S4 method for signature 'INSPEcT_diffsteady,ANY,ANY,ANY'
x[i, j]
|
x |
An object of class INSPEcT or INSPEcT_model |
i |
A numeric, a vector of logicals or a vector of names indicating the features to be extracted |
j |
A numeric, a vector of logicals indicating the time points to be extracted |
An Object of class INSPEcT
removeModel
1 2 3 4 5 6 7 8 9 | nascentInspObj10 <- readRDS(system.file(package='INSPEcT', 'nascentInspObj10.rds'))
nascentInspObj10_5genes <- nascentInspObj10[1:5]
## Not run:
## This will turn out into an error:
nascentInspObj10_5genes_5tpts <- nascentInspObj10[1:5, 1:5]
## End(Not run)
## Before subsetting time points, the model should be removed:
nascentInspObj10_5genes_5tpts <- removeModel(nascentInspObj10)[1:5, 1:5]
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.