Nothing
bcdsHelpModal <- function() {
modalDialog(
tags$style(HTML("
div {
word-wrap: break-word;
}
")),
tags$div(
h3("BCDS Parameters"),
fluidRow(
column(4, tags$b("Parameter Name")),
column(8, tags$b("Description"))
),
tags$hr(),
fluidRow(
column(4, "ntop"),
column(8, "Integer. Indicating number of top variance genes to consider. Default: 500")
),
tags$hr(),
fluidRow(
column(4, "srat"),
column(8, 'Numeric. Indicating ratio between orginal number of "cells" and simulated doublets. Default: 1')
),
tags$hr(),
fluidRow(
column(4, "nmax"),
column(8, 'Maximum number of training rounds; integer or "tune". Default: "tune"')
),
tags$hr(),
fluidRow(
column(4, "verb"),
column(8, "Check off to print progress messages to the console. Default: TRUE")
),
tags$hr(),
fluidRow(
column(4, "retRes"),
column(8, "Check off to return the trained classifier.")
),
tags$hr(),
fluidRow(
column(4, "varImp"),
column(8, "Check off to return variable importance.")
),
tags$hr(),
fluidRow(
column(4, "estNdbl"),
column(8, "Check off to estimate the number of doublets from the data. Enables doublet calls.")
),
)
)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.