Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Package: miaDash
Version: 0.99.11
Version: 0.99.12
Authors@R:
c(person(given = "Giulio", family = "Benedetti", role = c("aut", "cre"),
email = "giulio.benedetti@utu.fi",
Expand All @@ -21,7 +21,7 @@ License: Artistic-2.0
Encoding: UTF-8
Depends:
R (>= 4.4.0),
iSEE,
iSEE (>= 2.19.4),
shiny
Imports:
ape,
Expand Down
5 changes: 4 additions & 1 deletion NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,7 @@ Changes in version 0.99.3

Changes in version 0.99.5
* Implemented error check system
* Added mia logo
* Added mia logo

Changes in version 0.99.12
* Fixed tab title
13 changes: 5 additions & 8 deletions R/miaDash.R
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,11 @@ miaDash <- function() {

addResourcePath("assets", system.file("assets", package = "miaDash"))

iSEE(
landingPage = .landing_page,
appTitle = tags$div(
paste0("Microbiome Analysis Dashboard - v", packageVersion("miaDash")),
tags$img(src = "assets/mia_logo.png", height = "40px", style = "margin-left: 10px"),
style = "cursor: pointer; font-weight: 500",
onclick = "window.location='https://miadash-microbiome.2.rahtiapp.fi/'")
)
iSEE(landingPage = .landing_page, tabTitle = "miaDash", appTitle = tags$div(
paste0("Microbiome Analysis Dashboard - v", packageVersion("miaDash")),
tags$img(src = "assets/mia_logo.png", height = "40px", style = "margin-left: 10px"),
style = "cursor: pointer; font-weight: 500",
onclick = "window.location='https://miadash-microbiome.2.rahtiapp.fi/'"))
}

#' @importFrom shinyjs enable
Expand Down
Loading