An object of class ORdensity includes all potential differentially expressed genes given microarray data measured in two experimental conditions.
Exp_cond_1Matrix including microarray data measured under experimental condition 1.
Exp_cond_2matrix including microarray data measured under experimental condition 2.
labelsVector of characters identifying the genes, by default
rownames(Exp_cond_1) is inherited. If NULL,
the genes are named ‘Gene1’, ..., ‘Genen' according to the order given in Exp_cond_1.
BNumeric value indicating the number of permutations. By default, B=100.
scaleLogical value to indicate whether the scaling of the difference of quantiles should be done.
alphaNumeric value used by the method to calculate the percentile (1-α)100 of all the elements of the matrix with the permuted samples. By default 0.05.
foldNumeric value, by default fold=10. It controls the number of partitions.
probsVector of numerics. It sets the quantiles to be considered. By default
probs = c(0.25, 0.5, 0.75).
weightsVector of numerics. It controls the weights given to the quantiles set in probs.
By default weights = c(1/4, 1/2, 1/4).
numneighboursNumeric value to set the number of nearest neighbours. By default numneighbours=10.
numclustoseekNumeric value to set the number of maximum clusters to consider. By default numclustoseek=10.
outList containing the potential DE genes and their characteristics.
OROutlyingness index (See Martínez-Otzeta, J. M. et al. 2020; Irigoien, I., and Arenas, C. 2018).
FPAverage number of false positive permuted cases in the neighbourhood (See Martínez-Otzeta, J. M. et al. 2020; Irigoien, I., and Arenas, C. 2018).
dFPAverage density of false positive permuted cases in the neighbourhood (See Martínez-Otzeta, J. M. et al. 2020; Irigoien, I., and Arenas, C. 2018).
charMatrix holding internal computations. Non-developers should left this parameter as default.
bestKclusteringNumber of clusters for partitioning the data. It is advisable to let the object to automatically estimate the best partition.
verboseBoolean indicating if log messages are going to be printed.
parallelBoolean indicating if parallel process is used.
nprocsInteger indicating the number of processors to be used. If nprocs is 0 or negative, the number of processors detected in the machine is used.
replicableBoolean indicating if the same seed is used for the pseudorandom number generation.
seedInteger used as seed by the pseudorandom number generator.
1 2 3 4 5 6 7 | # To create an instance of a class ORdensity given data from 2 experimental conditions
simexpr_reduced <- simexpr[c(1:15,101:235),]
x <- simexpr_reduced[, 3:32]
y <- simexpr_reduced[, 33:62]
EXC.1 <- as.matrix(x)
EXC.2 <- as.matrix(y)
myORdensity <- new("ORdensity", Exp_cond_1 = EXC.1, Exp_cond_2 = EXC.2, B = 20)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.