combine {INSPEcT} | R Documentation |
This method combines the information coming from different Objects of INSPEcT class. Requirements for two or more object to be combined together are:
they must be either modeled or either not modeled
they must have the same time points
they must have the same modeling parameters
## S4 method for signature 'INSPEcT,INSPEcT' combine(x, y, ...)
x |
An object of class INSPEcT |
y |
An object of class INSPEcT |
... |
Additional objects of class INSPEcT |
In case the same gene is contained in more than one object that the user tries to combine, the information from one object will be used and a warning will be reported
An Object of class INSPEcT
data('mycerIds10', package='INSPEcT') mycerIds_2genes <- mycerIds10[1:2] mycerIds_5genes <- mycerIds10[6:10] mycerIds_7genes <- combine(mycerIds_2genes, mycerIds_5genes)