renderMeltCurves {shinyMolBio} | R Documentation |
Renders a melting curves viewer
Description
Renders a reactive melting plot that is suitable for assigning to an UI
output
slot.
Usage
renderMeltCurves(inputId, label = NULL, meltCurves, colorBy = NULL,
linetypeBy = NULL, showTm = FALSE, showLegend = FALSE, plotlyCode = NULL,
cssFile = NULL, cssText = NULL, interactive = TRUE)
Arguments
inputId |
The |
label |
Display label for the control, or |
meltCurves |
Melting curves data with |
colorBy |
Column name that contains color levels data. |
linetypeBy |
Column name that contains linetype levels data. |
showTm |
Shows Tm with dots ( |
showLegend |
Show plot legend. |
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: renderAmpCurves
Examples
library(RDML)
rdml <- RDML$new(system.file("/extdata/test.rdml", package = "shinyMolBio"))
curves <- renderMeltCurves("curves1", meltCurves = rdml$GetFData(dp.type = "mdp",
long.table = TRUE))
curves[[2]][[3]][[2]]
[Package shinyMolBio version 0.2 Index]