-
Notifications
You must be signed in to change notification settings - Fork 3
/
README.Rmd
63 lines (48 loc) · 2.64 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
---
output: github_document
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r, include = FALSE}
knitr::opts_chunk$set( # nolint: extraction_operator_linter.
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
# drugfindR
<!-- badges: start -->
[![Lifecycle: experimental](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](https://lifecycle.r-lib.org/articles/stages.html#experimental)
[![Continuous Integration / R Workflows](https://github.com/CogDisResLab/drugfindR/actions/workflows/rworkflows.yml/badge.svg)](https://github.com/CogDisResLab/drugfindR/actions/workflows/rworkflows.yml)
[![latest-version](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Fcogdisreslab.r-universe.dev%2Fapi%2Fpackages%2FdrugfindR&query=%24.Version&style=flat&label=latest-release&color=orange)](https://github.com/CogDisResLab/drugfindR/releases/latest)
[![license](https://img.shields.io/github/license/CogDisResLab/drugfindR)](https://github.com/CogDisResLab/drugfindR/blob/main/LICENSE)
[![DOI](https://zenodo.org/badge/338354715.svg)](https://zenodo.org/badge/latestdoi/338354715)
[![Codecov test coverage](https://codecov.io/gh/CogDisResLab/drugfindR/branch/devel/graph/badge.svg)](https://app.codecov.io/gh/CogDisResLab/drugfindR?branch=devel)
<!-- badges: end -->
drugfindR allows convenient access to the iLINCS Gene Knockdown, Gene Overexpression and Chemical Perturbagen databases and allows you to generate and investigate signatures to identify relevant genes and drugs.
## Installation
You can install the released version of drugfindR from [r-universe](https://cogdisreslab.r-universe.dev/drugfindR) with:
```{r, eval = FALSE}
install.packages("drugfindR",
repos = c(
"https://cogdisreslab.r-universe.dev",
"https://cran.r-project.org"
)
)
```
And the development version from [GitHub](https://github.com/) with:
```{r, eval = FALSE}
if (!requireNamespace("devtools", quietly = TRUE)) {
install.packages("devtools")
}
devtools::install_github("CogDisResLab/drugfindR")
```
## Usage
This package has two different interfaces that can be used to generate the results:
1. The first way is to use the individual building block functions to generate results.
This is useful if you want to use the results in your own analysis pipeline or want more
control over the results.
2. The second way is to use one of the convenience functions (`investigateSignatures` or `investigateTarget`)
to generate results.
This approach uses the building block functions under the hood with sensible defaults and
returns a final result that can be used for further analysis.