egenn commited on
Commit
c162a6e
·
1 Parent(s): 977cc7d
Files changed (1) hide show
  1. app.R +6 -5
app.R CHANGED
@@ -4,6 +4,7 @@
4
 
5
  # shiny::runApp("./")
6
  # Setup
 
7
  library(rtemis)
8
  library(rtemisbio)
9
  library(shiny)
@@ -31,7 +32,7 @@ success <- "#B4DC55"
31
  #' @author EDG
32
  #' @export
33
  #' @return A shiny app that can be converted to a shinylive app
34
- rtemisseq_version <- "0.2.6"
35
  seqvizlive <- function(
36
  default_theme = "dark",
37
  protein_plotly_height = "900px",
@@ -44,10 +45,10 @@ seqvizlive <- function(
44
  # Version
45
  platform <- sessionInfo()[["platform"]]
46
  svl <- paste0(
47
- "rtemisseq v.", rtemisseq_version,
48
- " | ", "rtemis v.0.97.3", utils::packageVersion("rtemis"), # doesn't work in shinylive
49
- " | ", "rtemisbio v.", utils::packageVersion("rtemisbio"),
50
- " | R v.", version$major, ".", version$minor,
51
  " | running on ", platform
52
  )
53
 
 
4
 
5
  # shiny::runApp("./")
6
  # Setup
7
+ rtemisseq_version <- "0.2.6"
8
  library(rtemis)
9
  library(rtemisbio)
10
  library(shiny)
 
32
  #' @author EDG
33
  #' @export
34
  #' @return A shiny app that can be converted to a shinylive app
35
+
36
  seqvizlive <- function(
37
  default_theme = "dark",
38
  protein_plotly_height = "900px",
 
45
  # Version
46
  platform <- sessionInfo()[["platform"]]
47
  svl <- paste0(
48
+ "rtemisseq v", rtemisseq_version,
49
+ " | ", "rtemisbio v", utils::packageVersion("rtemisbio"),
50
+ " | ", "rtemis v", utils::packageVersion("rtemis"),
51
+ " | R v", version$major, ".", version$minor,
52
  " | running on ", platform
53
  )
54