From 78f31dc25afa93a690528b271f46ed4556ce1a3c Mon Sep 17 00:00:00 2001 From: Mauro Masiero Date: Tue, 16 Apr 2024 09:37:29 +0200 Subject: [PATCH] rename "Load" to "Analyze" datasets in several modules --- components/app/R/ui.R | 4 ++-- components/board.loading/R/loading_server.R | 6 +++--- components/board.loading/R/loading_ui.R | 4 ++-- components/board.upload/R/upload_server.R | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/components/app/R/ui.R b/components/app/R/ui.R index f0fd90d56..1dff14a89 100644 --- a/components/app/R/ui.R +++ b/components/app/R/ui.R @@ -307,10 +307,10 @@ app_ui <- function(x) { ), bigdash::sidebarTabHelp( "load-tab", - "Load dataset", + "Analyze dataset", "This panel shows the available datasets within the platform. These data sets have been pre-computed and are ready to be used. Select a - dataset in the table and load the data set by clicking the 'load' button." + dataset in the table and load the data set by clicking the 'Analyze dataset' button." ), # , # bigdash::sidebarTabHelp( diff --git a/components/board.loading/R/loading_server.R b/components/board.loading/R/loading_server.R index 7f6e20093..3e6bf2ad8 100644 --- a/components/board.loading/R/loading_server.R +++ b/components/board.loading/R/loading_server.R @@ -57,7 +57,7 @@ LoadingBoard <- function(id, output$sharing_alert <- renderUI({ if (!auth$options$ENABLE_USER_SHARE) { return( - bs_alert(HTML("This table shows the available datasets in your library. The table reports a brief description of each dataset. The Signature t-SNE shows similarity clustering of fold-change signatures using t-SNE. Select a dataset in the table and load the data by clicking the Load Dataset button below.")) + bs_alert(HTML("This table shows the available datasets in your library. The table reports a brief description of each dataset. The Signature t-SNE shows similarity clustering of fold-change signatures using t-SNE. Select a dataset in the table and analyze the data by clicking the Analyze Dataset button below.")) ) } received_files <- pgxreceived$getReceivedFiles() @@ -67,7 +67,7 @@ LoadingBoard <- function(id, if (num_received == 0 && num_shared == 0) { - tag <- bs_alert(HTML("This table shows the available datasets in your library. The table reports a brief description of each dataset. The Signature t-SNE shows similarity clustering of fold-change signatures using t-SNE. Select a dataset in the table and load the data by clicking the Load Dataset button below.")) + tag <- bs_alert(HTML("This table shows the available datasets in your library. The table reports a brief description of each dataset. The Signature t-SNE shows similarity clustering of fold-change signatures using t-SNE. Select a dataset in the table and analyze the data by clicking the Analyze Dataset button below.")) return(tag) } @@ -230,7 +230,7 @@ LoadingBoard <- function(id, genes, gene sets (or pathways), corresponding phenotypes and the creation date.

Selecting the dataset: Users can select a dataset in the table. The Dataset info shows the information of the dataset of - interest and users can load the data by clicking the 'Load dataset' + interest and users can analyze the data by clicking the 'Analyze dataset' button.