From 3905c25d5f3f409b677f0c35ef0fc0df0dfae3ba Mon Sep 17 00:00:00 2001 From: danymukesha Date: Thu, 3 Oct 2024 18:07:56 +0200 Subject: [PATCH] update the readme --- README.Rmd | 19 +- README.html | 623 ---------------------------------------------------- README.md | 16 +- 3 files changed, 31 insertions(+), 627 deletions(-) delete mode 100755 README.html diff --git a/README.Rmd b/README.Rmd index 1d53847..824cf88 100755 --- a/README.Rmd +++ b/README.Rmd @@ -27,9 +27,24 @@ with an easy-to-use interface for use within R. ## Installation -You can install the package directly from GitHub using the `devtools` package: -```{r eval=FALSE} +To install this package, start R (version "4.4") and enter folliw: + +```{r installation , eval=FALSE} +if (!require("BiocManager", quietly = TRUE)) + install.packages("BiocManager") + +# The following initializes usage of Bioc devel +BiocManager::install(version='devel') + +BiocManager::install(pkgs = "BioGA", version = "devel", force = TRUE) +``` + +You can also install the package directly from GitHub +using the `devtools` package: + +```{r installation_from_github , eval=FALSE} devtools::install_github("danymukesha/BioGA") ``` + diff --git a/README.html b/README.html deleted file mode 100755 index 6376806..0000000 --- a/README.html +++ /dev/null @@ -1,623 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - -

R-CMD-check

- - -

BioGA -BioGA website

-

The BioGA package provides a set of functions for -genetic algorithm optimization tailored for analyzing high throughput -genomic data. These functions are implemented in C++ for improved speed -and efficiency, with an easy-to-use interface for use within R.

-

Installation

-

You can install the package directly from GitHub using the -devtools package:

-
devtools::install_github("danymukesha/BioGA")
- - - diff --git a/README.md b/README.md index 3bf6dcb..64806b3 100644 --- a/README.md +++ b/README.md @@ -15,8 +15,20 @@ an easy-to-use interface for use within R. ## Installation -You can install the package directly from GitHub using the `devtools` -package: +To install this package, start R (version “4.4”) and enter folliw: + +``` r +if (!require("BiocManager", quietly = TRUE)) + install.packages("BiocManager") + +# The following initializes usage of Bioc devel +BiocManager::install(version='devel') + +BiocManager::install(pkgs = "BioGA", version = "devel", force = TRUE) +``` + +You can also install the package directly from GitHub using the +`devtools` package: ``` r devtools::install_github("danymukesha/BioGA")