Browse code

Merge pull request #82 from Vitek-Lab/main

add warning fix to release

Devon Kohler authored on 16/11/2023 14:00:27 • GitHub committed on 16/11/2023 14:00:27
Showing 3 changed files

... ...
@@ -1,7 +1,7 @@
1 1
 Package: MSstatsShiny
2 2
 Type: Package
3 3
 Title: MSstats GUI for Statistical Anaylsis of Proteomics Experiments
4
-Version: 1.4.1
4
+Version: 1.5.2
5 5
 Description: MSstatsShiny is an R-Shiny graphical user interface (GUI) 
6 6
   integrated with the R packages MSstats, MSstatsTMT, and MSstatsPTM. It 
7 7
   provides a point and click end-to-end analysis pipeline applicable to a wide 
... ...
@@ -1,5 +1,9 @@
1 1
 #' @title Server function for the MSstatsShiny app
2 2
 #' @description This functions generates the Server object for MSstatsShiny app.
3
+#' 
4
+#' @param input shiny server input
5
+#' @param output shiny server output
6
+#' @param session session object for shiny to connect to
3 7
 #' @return Server object for shinyUI 
4 8
 #' @importFrom shinyjs toggleClass
5 9
 #' @export
... ...
@@ -6,6 +6,13 @@
6 6
 \usage{
7 7
 server(input, output, session)
8 8
 }
9
+\arguments{
10
+\item{input}{shiny server input}
11
+
12
+\item{output}{shiny server output}
13
+
14
+\item{session}{session object for shiny to connect to}
15
+}
9 16
 \value{
10 17
 Server object for shinyUI
11 18
 }