Skip to content

Commit

Permalink
Updated readmes
Browse files Browse the repository at this point in the history
  • Loading branch information
Jfortin1 committed Aug 31, 2022
1 parent 0c06287 commit 520494c
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 60 deletions.
27 changes: 6 additions & 21 deletions README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -45,35 +45,20 @@ Package was developed and tested on R version 4.2.1.

## Installation from Bioconductor

`crisprBwa` can be installed from Bioconductor using the following
commands in a fresh R session:
`crisprBwa` can be installed from from the Bioconductor devel branch
using the following commands in a fresh R session:

```{r, eval=FALSE}
install.packages("BiocManager")
BiocManager::install("crisprBwa")
```

The complete documentation for the package can be found [here](https://bioconductor.org/packages/devel/bioc/manuals/crisprBwa/man/crisprBwa.pdf).

## Installation from GitHub

Alternatively, `crisprBwa` and its dependencies can be installed by typing the
following commands inside of an R session:
if (!require("BiocManager", quietly = TRUE))
install.packages("BiocManager")
```r
install.packages("devtools")
library(devtools)
install_github("crisprVerse/Rbwa")
install_github("crisprVerse/crisprBase")
install_github("crisprVerse/crisprBwa")
BiocManager::install(version="devel")
BiocManager::install("crisprBwa")
```







# Building a bwa index

To use `runBwa` or `runCrisprBwa`, users need to first build a BWA
Expand Down
27 changes: 6 additions & 21 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@ crisprBwa: alignment of gRNA spacer sequences using BWA
- <a href="#installation-from-bioconductor"
id="toc-installation-from-bioconductor">Installation from
Bioconductor</a>
- <a href="#installation-from-github"
id="toc-installation-from-github">Installation from GitHub</a>
- <a href="#building-a-bwa-index" id="toc-building-a-bwa-index">Building a
bwa index</a>
- <a href="#alignment-using-runcrisprbwa"
Expand Down Expand Up @@ -58,28 +56,15 @@ developed and tested on R version 4.2.1.

## Installation from Bioconductor

`crisprBwa` can be installed from Bioconductor using the following
commands in a fresh R session:
`crisprBwa` can be installed from from the Bioconductor devel branch
using the following commands in a fresh R session:

``` r
install.packages("BiocManager")
BiocManager::install("crisprBwa")
```

The complete documentation for the package can be found
[here](https://bioconductor.org/packages/devel/bioc/manuals/crisprBwa/man/crisprBwa.pdf).

## Installation from GitHub
if (!require("BiocManager", quietly = TRUE))
install.packages("BiocManager")

Alternatively, `crisprBwa` and its dependencies can be installed by
typing the following commands inside of an R session:

``` r
install.packages("devtools")
library(devtools)
install_github("crisprVerse/Rbwa")
install_github("crisprVerse/crisprBase")
install_github("crisprVerse/crisprBwa")
BiocManager::install(version="devel")
BiocManager::install("crisprBwa")
```

# Building a bwa index
Expand Down
24 changes: 6 additions & 18 deletions vignettes/crisprBwa.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -59,27 +59,15 @@ Package was developed and tested on R version 4.2.1.

## Installation from Bioconductor

`crisprBwa` can be installed from Bioconductor using the following
commands in a fresh R session:
`crisprBwa` can be installed from from the Bioconductor devel branch
using the following commands in a fresh R session:

```{r, eval=FALSE}
install.packages("BiocManager")
BiocManager::install("crisprBwa")
```


if (!require("BiocManager", quietly = TRUE))
install.packages("BiocManager")
## Installation from GitHub

Alternatively, `crisprBwa` and its dependencies can be installed by typing the
following commands inside of an R session:

```r
install.packages("devtools")
library(devtools)
install_github("crisprVerse/Rbwa")
install_github("crisprVerse/crisprBase")
install_github("crisprVerse/crisprBwa")
BiocManager::install(version="devel")
BiocManager::install("crisprBwa")
```


Expand Down

0 comments on commit 520494c

Please sign in to comment.