-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from royfrancis/v2.1.1
Adding changes for v2.1.1
- Loading branch information
Showing
81 changed files
with
3,672 additions
and
2,406 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
^.*\.Rproj$ | ||
^\.Rproj\.user$ | ||
^\.Rhistory | ||
^\.Rdata | ||
pkgdown/ | ||
_pkgdown.yml | ||
docs/ | ||
index.md | ||
NEWS.md | ||
^\.github/ | ||
^\.git/ | ||
vignettes/ | ||
vignettes/* | ||
^\.\.Rcheck/ | ||
Dockerfile |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
inst/doc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,43 +1,36 @@ | ||
Package: pophelperShiny | ||
Type: Package | ||
Title: Interactive shiny GUI around pophelper R package | ||
Version: 2.1.0 | ||
Date: 2019-08-15 | ||
Version: 2.1.1 | ||
Date: 2020-12-28 | ||
Author: Roy Mathew Francis | ||
Authors@R: person("Roy", "Francis", email = "[email protected]",role = c("aut", "cre")) | ||
Maintainer: Roy Mathew Francis <[email protected]> | ||
Description: Interactive interface to pophelper using shiny web framework. | ||
URL: https://github.com/royfrancis/pophelperShiny | ||
Depends: | ||
R(>= 3.5.0), | ||
ggplot2, | ||
highcharter, | ||
magrittr, | ||
pophelper(>= 2.3.0), | ||
shiny | ||
R(>= 3.6) | ||
Imports: | ||
colourpicker, | ||
DT, | ||
ggplot2, | ||
gridExtra, | ||
highcharter, | ||
htmlwidgets, | ||
magrittr, | ||
markdown, | ||
pophelper(>= 2.3.1), | ||
RColorBrewer, | ||
shiny, | ||
shinyAce, | ||
shinyBS, | ||
shinythemes, | ||
shinyWidgets, | ||
tidyr, | ||
viridisLite, | ||
writexl | ||
Suggests: | ||
bookdown, | ||
captioner, | ||
ggpubr, | ||
knitr, | ||
markdown | ||
Remotes: | ||
royfrancis/pophelper | ||
License: GPL-3 | ||
Encoding: UTF-8 | ||
BugReports: https://github.com/royfrancis/pophelperShiny/issues | ||
VignetteBuilder: knitr | ||
RoxygenNote: 6.1.1 | ||
RoxygenNote: 7.1.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# DOCKER FILE FOR POPHELPERSHINY | ||
# 2021 Roy Francis | ||
|
||
FROM rocker/shiny:4.0.3 | ||
LABEL Description="Docker image for R package pophelperShiny" | ||
LABEL Maintainer="[email protected]" | ||
|
||
RUN apt-get update -y \ | ||
&& apt-get install --no-install-recommends -y \ | ||
libfreetype6-dev \ | ||
libcurl4-openssl-dev \ | ||
libssl-dev \ | ||
libudunits2-dev \ | ||
libxml2-dev \ | ||
libgeos-dev \ | ||
libfontconfig1-dev \ | ||
gdal-bin \ | ||
libgdal-dev \ | ||
libcairo2-dev \ | ||
libxt-dev \ | ||
libnlopt-dev \ | ||
mesa-common-dev \ | ||
libglu1-mesa-dev \ | ||
libx11-dev \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
# install r packages | ||
RUN Rscript -e 'install.packages(c("ggplot2","gridExtra","label.switching","tidyr","remotes","colourpicker","DT","highcharter","htmlwidgets","magrittr","markdown","RColorBrewer","shiny","shinyAce","shinyBS","shinythemes","shinyWidgets","viridisLite","writexl"),repos = "http://cran.us.r-project.org");' | ||
|
||
# install pophelper package from github | ||
RUN Rscript -e 'remotes::install_github("royfrancis/pophelper")' | ||
RUN Rscript -e 'remotes::install_github("royfrancis/pophelperShiny")' | ||
|
||
RUN cd /srv/shiny-server && \ | ||
ln -s /usr/local/lib/R/site-library/pophelperShiny/app && \ | ||
sudo chown -R shiny:shiny /srv/shiny-server/app | ||
|
||
EXPOSE 3838 | ||
|
||
CMD ["R", "-e", "shiny::runApp('/srv/shiny-server/app/', host = '0.0.0.0', port = 8787)"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,32 @@ | ||
#### v2.1.0 | ||
# pophelperShiny 2.1.1 | ||
|
||
* 28-Dec-2020 | ||
* Based on pophelper_v2.3.1 | ||
* Error bars in first plot of Evanno method showed max/min rather than SD. Fixed to show SD. | ||
* Legend is now sorted numerically | ||
* Better CRAN compatibility | ||
|
||
# pophelperShiny 2.1.0 | ||
|
||
* 15-Aug-2019 | ||
* R dependency set to >=3.5.0 | ||
* Based on pophelper_v2.3.0 | ||
* Added cluster colour palette picker with palette image | ||
* 'Colorbrewer' option removed and added to regular colours | ||
* Added R package **shinyWidgets** | ||
* Runs selection for plots do not maintain selection order | ||
* Runs selection options using datatable widget or picker widget | ||
* Excel dependency changed from **xlsx** to **writexl** | ||
* Dependency on CLUMPP executable removed | ||
* Align function added to align clusters within and across K | ||
* Temporary files and plots written in temporary directory | ||
|
||
#### v2.0.1 | ||
# pophelperShiny 2.0.1 | ||
|
||
* 17-Sep-2018 | ||
* Removed dependency on **fields** package | ||
* Temporary directory is set to OS default | ||
|
||
#### v2.0.0 | ||
# pophelperShiny 2.0.0 | ||
|
||
* 13-Aug-2018 | ||
* First v2 release | ||
|
||
|
||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,17 @@ | ||
<img src="man/figures/logo.png" align="right" width="96" height="96"> | ||
|
||
# pophelperShiny | ||
|
||
`pophelperShiny` is an interactive shiny application to use the R package pophelper interactively. This is packaged as an R package to enable easy installation. See the [project website](http://royfrancis.github.io/pophelperShiny) for more details. | ||
|
||
### Disclaimer | ||
|
||
The `pophelperShiny` R package is offered free and without warranty of any kind, either expressed or implied. I will not be held liable to you for any damage arising out of the use, modification or inability to use this program. `pophelperShiny` R package can be used, redistributed and/or modified freely for non-commercial purposes subject to the original source being properly cited. Licensed under GPL-3. Please make sure you verify all your results. | ||
|
||
### Contact | ||
|
||
If you have an comments, suggestions, corrections or ideas on ways to improve or extend this package, feel free to contact me. Submit an issue on the [Github issues page](https://github.com/royfrancis/pophelperShiny/issues). | ||
|
||
2019 | Roy M Francis | ||
<img src="man/figures/logo.png" align="right" width="96" height="96"> | ||
|
||
# pophelperShiny | ||
|
||
[![ci_badge](https://github.com/royfrancis/pophelperShiny/workflows/build/badge.svg)](https://github.com/royfrancis/pophelperShiny/actions?workflow=build) [![Docker Image Size (latest by date)](https://img.shields.io/docker/image-size/royfrancis/pophelpershiny?label=dockerhub)](https://hub.docker.com/repository/docker/royfrancis/pophelpershiny) | ||
|
||
`pophelperShiny` is an interactive shiny application to use the R package pophelper interactively. This is packaged as an R package to enable easy installation. See the [project website](http://royfrancis.github.io/pophelperShiny) for more details. | ||
|
||
### Disclaimer | ||
|
||
This R package is offered free and without warranty of any kind, either expressed or implied. I will not be held liable to you for any damage arising out of the use, modification or inability to use this program. This R package can be used, redistributed and/or modified freely for non-commercial purposes subject to the original source being properly cited. Licensed under GPL-3. Please make sure you verify all your results. | ||
|
||
### Contact | ||
|
||
If you have an comments, suggestions, corrections or ideas on ways to improve or extend this package, feel free to contact me. Submit an issue on the [Github issues page](https://github.com/royfrancis/pophelperShiny/issues). | ||
|
||
2021 | Roy M Francis |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
title: pophelperShiny | ||
url: https://github.com/royfrancis/pophelperShiny | ||
template: | ||
params: | ||
bootswatch: flatly | ||
|
||
navbar: | ||
structure: | ||
left: | ||
- home | ||
- articles | ||
- reference | ||
- news | ||
right: | ||
- github | ||
components: | ||
home: | ||
icon: fa-home fa-lg | ||
href: index.html | ||
articles: | ||
text: "Guide" | ||
icon: fa-tools | ||
href: articles/index.html | ||
reference: | ||
text: Reference | ||
icon: fa-book | ||
href: reference/index.html | ||
news: | ||
text: Versions | ||
icon: fa-history | ||
href: news/index.html | ||
github: | ||
icon: fa-github fa-lg | ||
href: https://github.com/royfrancis/pophelperShiny |
Oops, something went wrong.