Description Usage Arguments Value Examples
Insert figure links
| 1 2 | insertFigures(db, experimentName, regulatorName, filename, name = "",
  description = "", priority = 0)
 | 
| db | Database object created by  | 
| experimentName | Experiment name | 
| regulatorName | Regulator name (more detailed experiment identifier) | 
| filename | URL path to figures. The path can contain the
special form  | 
| name | Optional figure name | 
| description | Optional figure description | 
| priority | Integer priority used for sorting figures (default: 0) | 
An updated database object db
| 1 2 3 4 5 6 7 8 9 10 |   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)
  db <- insertFigures(db, "testexperiment", "testregulator",
                      "http://foo.invalid/path/${probe_name}_fit.png")
  closeDb(db)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.