renderAmpCurves {shinyMolBio} | R Documentation |
Renders an amplification curves viewer
Description
Renders a reactive PCR amplification plot that is suitable for assigning to
an UI output
slot.
Usage
renderAmpCurves(inputId, label = NULL, ampCurves, colorBy = NULL,
linetypeBy = NULL, logScale = FALSE, showCq = FALSE, showLegend = FALSE,
thBy = NULL, plotlyCode = NULL, cssFile = NULL, cssText = NULL,
interactive = TRUE)
Arguments
inputId |
The |
label |
Display label for the control, or |
ampCurves |
Amplification curves data with
|
colorBy |
Column name that contains color levels data. |
linetypeBy |
Column name that contains linetype levels data. |
logScale |
Converts plot to |
showCq |
Shows Cq with dots ( |
showLegend |
Show plot legend. |
thBy |
Column name that separates threshold values ( |
plotlyCode |
Your quoted custom plotly code. |
cssFile |
Path to the css styles file. |
cssText |
CSS styles as text. |
interactive |
Should be this |
Author(s)
Konstantin A. Blagodatskikh <k.blag@yandex.ru>
See Also
Other render elements: renderMeltCurves
Examples
library(RDML)
rdml <- RDML$new(system.file("/extdata/test.rdml", package = "shinyMolBio"))
curves <- renderAmpCurves("curves1", ampCurves = rdml$GetFData(long.table = TRUE))
curves[[2]][[3]][[2]]
[Package shinyMolBio version 0.2 Index]