geneClass {INSPEcT} | R Documentation |
Retrieve the regulatory class for each gene
This method returns a factor that summarise the gene class (transcriptional regulatory mechanism) that INSPEcT has assigned to each gene. The classification depends on the chi-squared and Brown's method thresholds, that can be both provided as arguments. If the user decides a different thresholding respect to the default, these new values can be permanently set within the object.
geneClass(object, bTsh = NULL, cTsh = NULL) ## S4 method for signature 'INSPEcT_model' geneClass(object, bTsh = NULL, cTsh = NULL) ## S4 method for signature 'INSPEcT' geneClass(object, bTsh = NULL, cTsh = NULL)
object |
An object of class INSPEcT or INSPEcT_model |
bTsh |
A numeric representing the p-value threshold for considering a rate as variable. P-values are calculated through |
cTsh |
A numeric representing the threshold for the chi-squared test to consider a model as valid |
A character containing the regulatory class for each gene
data('mycerIds10', package='INSPEcT') geneClass(mycerIds10) # see the classification with another threshold for chi-squared test geneClass(mycerIds10, cTsh=.2) # set the new threshold permanently within the object thresholds(mycerIds10)$chisquare <- .2