Release 1.0.0

This commit is contained in:
Elias Projahn 2024-03-28 21:05:47 +01:00
parent 9e95f8bbfb
commit 89ee4e5377
2 changed files with 12 additions and 6 deletions

View file

@ -1,6 +1,6 @@
Package: geposanui Package: geposanui
Title: Graphical user interface for geposan Title: Graphical user interface for geposan
Version: 0.0.0.9000 Version: 1.0.0
Authors@R: Authors@R:
person( person(
"Elias", "Elias",
@ -15,7 +15,7 @@ Description: This package provides a graphical user interface for analyzing
License: AGPL (>= 3) License: AGPL (>= 3)
Encoding: UTF-8 Encoding: UTF-8
Roxygen: list(markdown = TRUE) Roxygen: list(markdown = TRUE)
RoxygenNote: 7.2.0 RoxygenNote: 7.3.1
Depends: Depends:
R (>= 4.1) R (>= 4.1)
Imports: Imports:
@ -26,6 +26,8 @@ Imports:
geposan, geposan,
glue, glue,
gprofiler2, gprofiler2,
htmltools,
markdown,
plotly, plotly,
purrr, purrr,
rlang, rlang,

View file

@ -1,8 +1,8 @@
# geposanui # geposanui
This package provides a graphical user interface for analyzing genes based on This R package provides a graphical user interface for analyzing genes based
position data across species. It is a frontend for the R package on position data across species. It is a frontend for the R package
[`geposan`](https://code.johrpan.de/johrpan/geposan). You can visit an example [`geposan`](https://github.com/johrpan/geposan). You can visit an example
instance of the application [here](https://tpe-old.uni-rostock.de) where the instance of the application [here](https://tpe-old.uni-rostock.de) where the
method is used to find new method is used to find new
[TPE-OLD](https://www.ncbi.nlm.nih.gov/pmc/articles/PMC4233240/) candidate [TPE-OLD](https://www.ncbi.nlm.nih.gov/pmc/articles/PMC4233240/) candidate
@ -10,11 +10,15 @@ genes based on the currently known ones.
## Installation ## Installation
This package depends on [`geposan`](https://github.com/johrpan/geposan'),
which should be installed first.
You can install the development version of `geposanui` using: You can install the development version of `geposanui` using:
```r ```r
# install.packages("remotes") # install.packages("remotes")
remotes::install_git("https://code.johrpan.de/johrpan/geposanui.git") # remotes::install_github("johrpan/geposan")
remotes::install_github("johrpan/geposanui")
``` ```
See [this page](https://remotes.r-lib.org/reference/install_git.html) for more See [this page](https://remotes.r-lib.org/reference/install_git.html) for more