-
Notifications
You must be signed in to change notification settings - Fork 3
/
README.Rmd
39 lines (31 loc) · 1.2 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
---
output: github_document
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
[![DOI](https://zenodo.org/badge/175870293.svg)](https://zenodo.org/badge/latestdoi/175870293) [![License](https://img.shields.io/badge/License-BSD%203--Clause-orange.svg)](https://opensource.org/licenses/BSD-3-Clause)
```{r setup, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
# gemini
The `gemini` package allows users to analyze combinatorial CRISPR screens as described in Zamanighomi et al. ?.
## Installation
To install the latest development version of `gemini`, use the [`devtools`]("https://github.com/r-lib/devtools") package as follows:
```{r, eval = F}
devtools::install_github(repo = "sellerslab/gemini", build_vignettes = TRUE)
```
You can (eventually) install the stable release version of gemini from [Bioconductor](https://www.bioconductor.org/) with:
```{r, eval = F}
if (!requireNamespace("BiocManager", quietly = TRUE))
install.packages("BiocManager")
BiocManager::install("gemini")
```
## Details
See the vignette for usage instructions:
```{r}
vignette("gemini-quickstart", package = "gemini")
```