Skip to content

Commit

Permalink
docs: update vignettes to include correct install order
Browse files Browse the repository at this point in the history
  • Loading branch information
Bryce-Davidson authored Oct 31, 2024
1 parent dfaf7ca commit ef24cbd
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions vignettes/package_vignette.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,15 @@ First, let's install necessary packages. You may skip this step if you have
installed the packages before.

```{r, warning=FALSE, message=FALSE, eval=FALSE}
# install iimi
install.packages(c("iimi", "dplyr"))
# install Biostrings
if (!require("BiocManager", quietly = TRUE))
install.packages("BiocManager")
BiocManager::install(c("GenomicAlignments", "Rsamtools"))
BiocManager::install("Biostrings")
# install iimi
install.packages(c("iimi", "dplyr"))
```

### 1.2. Loading packages
Expand Down

0 comments on commit ef24cbd

Please sign in to comment.