Description Usage Arguments Value Examples
Insert results
1 2 3 4 |
db |
Database object created by |
experimentName |
Experiment name |
regulatorName |
Regulator name (more detailed experiment identifier) |
figurePath |
URL path to figures |
loglikelihoods |
A vector of log-likelihoods of elements identified by names |
baselineloglikelihoods |
A vector of baseline log-likelihoods of elements identified by names (optional) |
experimentDesc |
Optional experiment description |
loopVariable |
Optional: Loop variable (1=regulator, 2=target (default)) |
modelTranslation |
Optional: For gene regulation models, is translation modelled |
numberOfParameters |
Optional: Number of parameters |
parameterNames |
Optional: Parameter names |
experimentProducer |
Optional: Experiment producer (string) |
experimentTimestamp |
Optional: Experiment timestamp (string) |
parameters |
Optional: A vector of parameter values for the model |
An updated database object db
1 2 3 4 5 6 7 8 | db <- initializeDb("", "My Dataset")
logl <- c(-4.0, -2.0, 0.0)
names(logl) <- c("A", "B", "C")
baselogl <- c(1.0, -1.0, 4.0)
names(baselogl) <- names(logl)
db <- insertResults(db, "testexperiment", "testregulator", "",
logl, baselineloglikelihoods=baselogl)
closeDb(db)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.