Title: | Bioconductor Web Interface |
---|---|
Description: | An integrated web interface for doing microarray analysis using several of the Bioconductor packages. It is intended to be deployed as a centralized bioinformatics resource for use by many users. (Currently only Affymetrix oligonucleotide analysis is supported.) |
Authors: | Colin A. Smith <[email protected]> |
Maintainer: | Colin A. Smith <[email protected]> |
License: | GPL (>= 2) |
Version: | 1.79.0 |
Built: | 2024-10-31 06:30:25 UTC |
Source: | https://github.com/bioc/webbioc |
Using reposTools, install/update all packages from given repositories.
installReps(repNames = "aData", lib = .libPaths()[1], type = getOption("pkgType"))
installReps(repNames = "aData", lib = .libPaths()[1], type = getOption("pkgType"))
repNames |
A character vector containing repository names. A listing of known repository names can be found with the getReposOption() function. |
lib |
A path to install/update the packages. If this directory does not exist, it will be created (if possible). |
type |
type of package do download |
Colin A. Smith [email protected]
A wrapper for some of the functionality for the multtest
package. It also includes hooks to calculate q-values with John
D. Storey's ‘q-value.R’ code.
mt.wrapper(proc, X, classlabel, test="t", rawpcalc="Parametric", side="abs", ...)
mt.wrapper(proc, X, classlabel, test="t", rawpcalc="Parametric", side="abs", ...)
proc |
A character string containing the name of the multiple
testing procedure for which adjusted |
X |
A data frame or matrix, with |
classlabel |
A vector of integers corresponding to observation (column)
class labels. For |
test |
A character string specifying the statistic to be
used to test the null hypothesis of no association between the
variables and the class labels. |
rawpcalc |
A character string specifying how to calculate
nominal/raw p-values. The possible choices are |
side |
A character string specifying the type of rejection region. |
... |
Further arguments for |
A data frame with components
index |
Vector of row indices, between 1 and |
teststat |
Vector of test statistics, ordered according to
|
rawp |
Vector of raw (unadjusted) |
adjp |
Vector of adjusted |
plower |
For |
Colin A. Smith [email protected]