Extract {INSPEcT} | R Documentation |
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.
## 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
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]