Skip to content

Commit

Permalink
updates on the intro
Browse files Browse the repository at this point in the history
  • Loading branch information
danymukesha committed Oct 3, 2024
1 parent 3905c25 commit 394630e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
1 change: 1 addition & 0 deletions man/BioGA-package.Rd
100644 → 100755

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 7 additions & 4 deletions vignettes/Introduction.Rmd → vignettes/BioGA.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ abstract:
a population of candidate solutions over successive generations,
with each individual representing a potential solution to the optimization
problem at hand. Through the application of genetic operators
such as selection, crossover, and mutation, genetic algorithms
iteratively improve the population, eventually converging towards
such as selection, crossover, and mutation, the genetic algorithms
iteratively improve the population by eventually converging towards
optimal or near-optimal solutions.

In the field of genomics, where data sets are often large, complex,
and high-dimensional, genetic algorithms offer a good approach
and high-dimensional, the genetic algorithms offer a good approach
for addressing optimization challenges such as feature selection,
parameter tuning, and model optimization. By harnessing the power
of evolutionary principles, genetic algorithms can effectively explore
Expand Down Expand Up @@ -57,7 +57,10 @@ To install this package, start R (version "4.4") and enter:
if (!require("BiocManager", quietly = TRUE))
install.packages("BiocManager")
BiocManager::install("BioGA")
# 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
Expand Down

0 comments on commit 394630e

Please sign in to comment.