Description Usage Arguments Details Value References See Also Examples
View source: R/find.params.pdnn.R
A function to find the paramaters specific to the chips in an AffyBatch object.
1 | find.params.pdnn(abatch, params.chiptype, optim.method = "BFGS", verbose = TRUE, give.warnings=TRUE)
|
abatch |
an instance of |
params.chiptype |
chip-type specific parameters (see details) |
optim.method |
method for the optimization function
|
verbose |
verbosity ( |
give.warnings |
report probeset IDs in the |
This function fits PDNN parameters that are specific to experimental
values. The parameters common to all the chips of a certain type
are returned by the function pdnn.params.chiptype
.
If NULL
, the parameter files included in the
package will be used whenever possible...
A list of
lambda |
The lambda's |
Bs |
The B's |
Ns |
The N's |
Fs |
The F's |
Li Zhang, Michael F. Miles and Kenneth D. Aldape - A model of molecular interactions on short oligonucleotide arrays, 2003, Nature Biotech., vol. 21, n.7
pdnn.params.chiptype
, generateExprVal.method.pdnn
1 2 3 4 5 6 7 8 9 10 11 12 | ## load a chip-specific parameter file
## (as returned by the function pdnn.params.chiptype)
data(hgu95av2.pdnn.params)
## load experimental data
library(affydata)
data(Dilution)
## one CEL to go faster
afbatch <- Dilution[, 1]
params <- find.params.pdnn(afbatch, hgu95av2.pdnn.params, optim.method =
FALSE, give.warnings=FALSE)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.