From 214302d028a0b0ed997a559e09ce4b84a96a2c98 Mon Sep 17 00:00:00 2001 From: yuanlizhanshi <826907860@qq.com> Date: Mon, 6 Nov 2023 00:42:52 +0800 Subject: [PATCH] Update app.R --- scLT/app.R | 20 +++++++++----------- 1 file changed, 9 insertions(+), 11 deletions(-) diff --git a/scLT/app.R b/scLT/app.R index 7751508..ca2b380 100644 --- a/scLT/app.R +++ b/scLT/app.R @@ -209,17 +209,9 @@ body <- dashboardBody( title = h2('Select dataset'), status = "warning", solidHeader = FALSE, - width = 6, + width = 12, height = '250px', selectInput('Select_dataset',label =NULL,choices = unique(coretable$Dataset)) - ), - box( - title = h2('Please input barcode'), - status = "warning", - solidHeader = FALSE, - width = 6, - height = '250px', - textInput('input_barcode',NULL,value = '394') ) ), fluidRow( @@ -228,11 +220,17 @@ body <- dashboardBody( id = "umap", height = "600px", #static umap tabPanel("raw_uamp", - div(imageOutput("show_umap1"),style = "margin-left: auto; margin-right: auto;middle;background:#FFFFFF;") + div(imageOutput("show_umap1"),style = "margin-left: auto; margin-right: auto;background:#FFFFFF;") ), #dynamic umap tabPanel("barcode_uamp", - div(plotOutput("show_umap2"),style = "margin-left: auto; margin-right: auto;middle;background:#FFFFFF;") + fluidRow( + + column(4,h4('Please input barcode...')), + column(2,textInput('input_barcode',NULL,value = '394')) + + ), + div(plotOutput("show_umap2"),style = "margin-left: auto; margin-right: auto;background:#FFFFFF;") ) ), tabBox(