-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathREADME.Rmd
68 lines (46 loc) · 1.69 KB
/
README.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
---
output: github_document
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
# TissueTMDD
<!-- badges: start -->
[![Lifecycle: experimental](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](https://lifecycle.r-lib.org/articles/stages.html#experimental)
<!-- badges: end -->
TissueTMDD is a shiny that provide an interactive way to run simulations of drug-target binding in tissue interstitial space.
Using TissueTMDD, you can:
- Setup simulation parameters,
- Run simulations,
- Compare simulations,
- Export and import simulation settings
[**Try the Web Application Here ↗️**](https://tissuetmdd.azurewebsites.net/)
![](vignettes/assets/tmdd_preview.gif)
## Installation
### Prerequisites
- Git Installation and GitHub setup ([instructions](https://gist.github.com/z3tt/3dab3535007acf108391649766409421)),
- R Installation (>= 4.3.0),
- (optional) RTools Installation (for Windows users, [instructions](https://cran.r-project.org/bin/windows/Rtools/rtools40.html)).
### Install TissueTMDD
```r
# install.packages("remotes")
remotes::install_github("esqLABS/TissueTMDD@release")
```
To install the latest development version, use:
```r
# install.packages("remotes")
remotes::install_github("esqLABS/TissueTMDD")
```
## Run the App
```r
library(TissueTMDD)
run_app()
```
## Code of Conduct
Please note that the TissueTMDD project is released with a [Contributor Code of Conduct](https://contributor-covenant.org/version/2/1/CODE_OF_CONDUCT.html). By contributing to this project, you agree to abide by its terms.