Iniciar sección citometría. Botón para el directorio.
This commit is contained in:
+36
-1
@@ -72,6 +72,27 @@ ui <- fluidPage(
|
|||||||
tableOutput("nitrogen")
|
tableOutput("nitrogen")
|
||||||
)
|
)
|
||||||
),
|
),
|
||||||
|
|
||||||
|
# * Citometría --------------------------------------------------------------
|
||||||
|
tabPanel("Citometría",
|
||||||
|
sidebarPanel(
|
||||||
|
# shinyDirButton(id="cito_dir",label="Cito Dir", title="Citometría")
|
||||||
|
|
||||||
|
# fileInput(inputId = "cito_dir", label = "Cito Dir", multiple = F)
|
||||||
|
),
|
||||||
|
mainPanel(
|
||||||
|
actionButton("goButtonDir","load session to analyze"),
|
||||||
|
textOutput("session")
|
||||||
|
# tabsetPanel(
|
||||||
|
# tabPanel("Table", tableOutput("sc_table")),
|
||||||
|
# tabPanel("Plots",
|
||||||
|
# plotOutput("sc_plot", height = "1000px"),
|
||||||
|
# plotOutput("sc_expr"), height = "600px")
|
||||||
|
# )
|
||||||
|
)
|
||||||
|
),
|
||||||
|
|
||||||
|
# * scRNAseq ----------------------------------------------------------------
|
||||||
tabPanel("scRNAseq",
|
tabPanel("scRNAseq",
|
||||||
sidebarPanel(
|
sidebarPanel(
|
||||||
textInput("sqlquery", label = "sqlquery", value = ""),
|
textInput("sqlquery", label = "sqlquery", value = ""),
|
||||||
@@ -793,7 +814,21 @@ server <- function(input, output) {
|
|||||||
|
|
||||||
})
|
})
|
||||||
|
|
||||||
## scRNAseq
|
|
||||||
|
# Citometría --------------------------------------------------------------
|
||||||
|
|
||||||
|
observe({
|
||||||
|
if(input$goButtonDir > 0){
|
||||||
|
cito_dir<<-choose.dir() %>% gsub("\\","/",. ,fixed=T)
|
||||||
|
|
||||||
|
output$session <- renderText(
|
||||||
|
cito_dir
|
||||||
|
)
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
|
||||||
|
# scRNAseq ----------------------------------------------------------------
|
||||||
|
|
||||||
output$PATID = renderUI({
|
output$PATID = renderUI({
|
||||||
observeEvent(input$goButton, {})
|
observeEvent(input$goButton, {})
|
||||||
|
|||||||
Reference in New Issue
Block a user