Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/openanalytics/BIGL
https://github.com/openanalytics/BIGL
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/openanalytics/BIGL
- Owner: openanalytics
- License: gpl-3.0
- Created: 2017-06-29T20:14:33.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2023-06-13T15:35:53.000Z (over 1 year ago)
- Last Synced: 2024-11-28T17:16:00.809Z (about 2 months ago)
- Language: R
- Size: 469 KB
- Stars: 7
- Watchers: 8
- Forks: 8
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - openanalytics/BIGL - (R)
README
[![CRAN_Status_Badge](http://www.r-pkg.org/badges/version-ago/BIGL)](https://cran.r-project.org/package=BIGL)
# Biochemically Intuitive Generalized Loewe Model
`BIGL` package for R can be used in studying synergistic effects between two drugs or compounds. It uses response surface approach to study deviations of the observed effects from a predicted response surface.
To install the package from CRAN, run:
```r
install.packages("BIGL")
```To install the latest development version from Github, we suggest using `devtools`:
```r
devtools::install_github("OpenAnalytics/BIGL", build_vignettes = TRUE)
````BIGL` methodology currently allows generalized Loewe, classical Loewe and Highest Single Agent models for predicted response surface generation. Generalized Loewe approach allows in particular to treat compounds with differing maximal response and is detailed in the accompanying BIGL paper (pending submission).
Scientific workflow is briefly explained in the `methodology` vignette provided with the package. `analysis` vignette will guide the user through the main functionality of the package. If you have built the vignettes for the package during the installation, these can be accessed by
```r
## User guide
vignette("analysis", package = "BIGL")## Methodology overview
vignette("methodology", package = "BIGL")
```If you have `shiny` and `DT` packages installed, you might be interested in trying out the demo for the type of response surfaces that the package works with.
```r
library(BIGL)
runBIGL()
```