diff --git a/Data/README.md b/Data/README.md index fa50d5d4a28c7d70b8b9ddbb3f9824ecc75f6950..09e46b34731b9d6cbd4b52f26bdefe401105a7a5 100644 --- a/Data/README.md +++ b/Data/README.md @@ -1,5 +1,5 @@ ### Example dataset -Example datasets can be found at ``corplot\Data\`. The datasets have been downloaded from GEO database (DataSet Record GDS3973,GDS5072). +Example datasets can be found at `corplot\Data\` or can be obtained from [gitlab](https://gitlab.utu.fi/dhajam/corplot/tree/master/Data). The datasets have been downloaded from GEO database (DataSet Record GDS3973,GDS5072) and formatted so that they can be used with CORPLOT. For more information on the dataset format, please refer `FAQ`. -For more information on the dataset format, please refer `FAQ` +Note: The image in the manuscript was generated using in-house unpublished data, so it is not provided as example data. diff --git a/server.R b/server.R index e3c7e9cea3f9947f9428391f63efdeb10b5c88d2..029712ffdc2b0b2f55fe96504ddb8bb8c08bea8a 100755 --- a/server.R +++ b/server.R @@ -609,15 +609,12 @@ shinyServer(function(input, output, session) { - observeEvent(input$show1, { + observeEvent(input$showEx, { showModal( modalDialog( - HTML( - '<img src="https://gitlab.utu.fi/dhajam/corplot/blob/master/Markdown/FAQ.md">' - ), title = "Example expression file", - easyClose = TRUE, - footer = NULL + "Formatted example datasets from the GEO database can be obatined from <https://gitlab.utu.fi/dhajam/corplot/tree/master/Data>", + easyClose = TRUE ) ) }) diff --git a/ui.R b/ui.R index 1b9c68707493d4138175786b6b47ef0422287bf4..645c330bbc29f39ee1c4e22caccef186119cc3cd 100755 --- a/ui.R +++ b/ui.R @@ -16,7 +16,7 @@ navbarPage( sidebarLayout( sidebarPanel( fileInput('uploadData', 'Choose Data File'), - actionLink(inputId = "show1", label = "Example file"), + actionLink(inputId = "showEx", label = "Example file"), uiOutput('idColSelect'), uiOutput('columnSelect'), shinyBS::bsButton('doBiomart', "Get Gene Symbols", style="primary", size="small", type="action"),