Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support shinyserver #3

Open
wants to merge 1 commit into
base: devel
Choose a base branch
from
Open
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
2 changes: 2 additions & 0 deletions .Rbuildignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,5 @@ $run_dev.*
^NEWS\.md$
^\.Rdata$
^\.Rhistory$
^app\.R$
^rsconnect$
77 changes: 39 additions & 38 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,38 +1,39 @@
Package: MicrobiomeProfiler
Title: An R/shiny package for microbiome functional enrichment analysis
Version: 0.99.9
Authors@R: c(
person(given = "Meijun",family = "Chen",role = c("aut", "cre"),email = "[email protected]",comment = c(ORCID = "0000-0003-2486-8106")),
person(given = "Guangchuang", family = "Yu", email = "[email protected]", role = c("aut", "ths"), comment = c(ORCID = "0000-0002-6485-8781"))
)
Description: This is an R/shiny package to perform functional enrichment analysis for microbiome data.
This package was based on clusterProfiler. Moreover, MicrobiomeProfiler support KEGG enrichment analysis,
COG enrichment analysis, Microbe-Disease association enrichment analysis, Metabo-Pathway analysis.
License: GPL-2
URL: https://github.com/YuLab-SMU/MicrobiomeProfiler/
BugReports: https://github.com/YuLab-SMU/MicrobiomeProfiler/issues
Imports:
clusterProfiler (>= 4.0.2),
config,
DT,
enrichplot,
golem,
magrittr,
shiny (>= 1.6.0),
shinyWidgets,
shinycustomloader,
htmltools,
ggplot2,
graphics,
utils
Encoding: UTF-8
biocViews: Microbiome, Software, Visualization,KEGG
RoxygenNote: 7.1.2
Depends:
R (>= 4.1.0)
Suggests:
rmarkdown,
knitr,
testthat (>= 3.0.0)
Config/testthat/edition: 3
VignetteBuilder: knitr
Package: MicrobiomeProfiler
Title: An R/shiny package for microbiome functional enrichment analysis
Version: 0.99.9
Authors@R: c(
person(given = "Meijun",family = "Chen",role = c("aut", "cre"),email = "[email protected]",comment = c(ORCID = "0000-0003-2486-8106")),
person(given = "Guangchuang", family = "Yu", email = "[email protected]", role = c("aut", "ths"), comment = c(ORCID = "0000-0002-6485-8781"))
)
Description: This is an R/shiny package to perform functional enrichment analysis for microbiome data.
This package was based on clusterProfiler. Moreover, MicrobiomeProfiler support KEGG enrichment analysis,
COG enrichment analysis, Microbe-Disease association enrichment analysis, Metabo-Pathway analysis.
License: GPL-2
URL: https://github.com/YuLab-SMU/MicrobiomeProfiler/
BugReports: https://github.com/YuLab-SMU/MicrobiomeProfiler/issues
Imports:
clusterProfiler (>= 4.0.2),
config,
DT,
enrichplot,
golem,
magrittr,
shiny (>= 1.6.0),
shinyWidgets,
shinycustomloader,
htmltools,
ggplot2,
graphics,
utils,
pkgload
Encoding: UTF-8
biocViews: Microbiome, Software, Visualization,KEGG
RoxygenNote: 7.1.2
Depends:
R (>= 4.1.0)
Suggests:
rmarkdown,
knitr,
testthat (>= 3.0.0)
Config/testthat/edition: 3
VignetteBuilder: knitr
3 changes: 3 additions & 0 deletions R/_disable_autoload.R
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Disabling shiny autoload

# See ?shiny::loadSupport for more information
7 changes: 7 additions & 0 deletions app.R
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Launch the ShinyApp (Do not remove this comment)
# To deploy, run: rsconnect::deployApp()
# Or use the blue button on top of this file

pkgload::load_all(export_all = FALSE,helpers = FALSE,attach_testthat = FALSE)
options( "golem.app.prod" = TRUE)
MicrobiomeProfiler::run_MicrobiomeProfiler() # add parameters here (if any)