An open API service indexing awesome lists of open source software.

https://github.com/danymukesha/bioga

Apply multi-objective genetic algorithms to genomic data for biologically informed feature selection and pattern discovery.
https://github.com/danymukesha/bioga

data-analysis gene-expression genetic-algorithms genomics optimization-algorithms

Last synced: 9 months ago
JSON representation

Apply multi-objective genetic algorithms to genomic data for biologically informed feature selection and pattern discovery.

Awesome Lists containing this project

README

          

---
output: github_document
---

```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)

library(BiocStyle)
```

[![R-CMD-check](https://github.com/danymukesha/BioGA/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/danymukesha/BioGA/actions/workflows/R-CMD-check.yaml)
[![](https://img.shields.io/badge/devel%20version-0.99.6-blue.svg)](https://github.com/danymukesha/BioGA)
[![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.15801072.svg)](https://doi.org/10.5281/zenodo.15801072)


# BioGA BioGA website

`r Biocpkg("BioGA")` package provides a set of functions for genetic algorithm
optimization adapted 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

To install this package, start R (preferably version "4.4") and enter:

```{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")
```