ui <- dashboardPage( dashboardHeader(title = "AtSRGA"), dashboardSidebar( sidebarMenu( menuItem("Home", tabName = "Home", icon = icon("home")), menuItem("Microarray", tabName = "Microarray", menuSubItem("Atlas", tabName = "Atlasm"), menuSubItem("Template Matching", tabName = "TemplateMatchingm") ), menuItem("RNA-Seq", tabName = "RNA-Seq", menuSubItem("Atlas", tabName = "Atlasr"), menuSubItem("Template Matching", tabName = "TemplateMatchingr") ), menuItem("Help", tabName = "Help") ) ), dashboardBody( tags$style(type = "text/css", ".shiny-output-error { visibility: hidden; }", ".shiny-output-error:before { visibility: hidden; }" ), tabItems( ## ======================================================== ## ## Menu : Home ## ======================================================== ## tabItem(tabName = "Home", titlePanel("Wellcome to AtSRGA") ), ## ======================================================== ## ## Menu : Microarray ## ======================================================== ## ## ======================================== ## ## Sub Menu : Atlas ## ======================================== ## tabItem(tabName = "Atlasm", tabBox( title = "", width = "100%", tabPanel("Overview", overviewUI("microarray")), tabPanel("ABA", stressUI("ABAm")), tabPanel("cold", stressUI("coldm")), tabPanel("DC3000", stressUI("DC3000m")), tabPanel("drought", stressUI("droughtm")), tabPanel("heat", stressUI("heatm")), tabPanel("highlight", stressUI("highlightm")), tabPanel("hypoxia", stressUI("hypoxiam")), tabPanel("osmotic", stressUI("osmoticm")), tabPanel("oxidation", stressUI("oxidationm")), tabPanel("salt", stressUI("saltm")), tabPanel("wound", stressUI("woundm")) ) ), ## ======================================== ## ## Sub Menu : Template Matching ## ======================================== ## tabItem(tabName = "TemplateMatchingm", box( title = "", width = "100%", TemplateMatchUI("microarray") ) ), ## ========================================================= ## ## Menu : RNA-Seq ## ========================================================= ## ## ======================================== ## ## Sub Menu : Atlas ## ======================================== ## tabItem(tabName = "Atlasr", tabBox( title = "", width = "100%", tabPanel("Overview", overviewUI("rnaseq")), tabPanel("ABA", stressUI("ABAr")), tabPanel("cold", stressUI("coldr")), tabPanel("DC3000", stressUI("DC3000r")), tabPanel("heat", stressUI("heatr")), tabPanel("drought", stressUI("droughtr")), tabPanel("highlight", stressUI("highlightr")), tabPanel("hypoxia", stressUI("hypoxiar")), tabPanel("osmotic", stressUI("osmoticr")), tabPanel("oxidation", stressUI("oxidationr")), tabPanel("salt", stressUI("saltr")), tabPanel("wound", stressUI("woundr")) ) ), ## ======================================== ## ## Sub Menu : Template Matching ## ======================================== ## tabItem(tabName = "TemplateMatchingr", box( title = "", width = "100%", TemplateMatchUI("rnaseq") ) ), ## ======================================================== ## ## Menu : Help ## ======================================================== ## tabItem(tabName = "Help", box( title = "", width = "100%", h1("Tutorial"), br(), HTML("

Please see ", " our tutorial file. "), br(), br(), br(), br(), h1("Contact us"), br(), HTML("

To get in contact with our group, please visit : ", " https://www.kpu-g.com/english "), br(), br(), br(), br(), h1("Report bugs"), br(), HTML("

The R code for this application is available on ", " Github ", ".
To report bugs and/or request features, please use the following GitHub issue channel :

https://github.com/fusk-kpu/StressResponseGenesAtlas/issues "), br(), br(), br(), br(), h1("Citation"), br(), HTML("

If you find AtSRGA, useful, please consider citing our publication :

Coming soon :)"), img(src = "hexsticker_AtSRGA.png", width = "250px", height = "300px", style="position:absolute; top:50px; right:50px;") )) ) ) )