Skip to content

Commit

Permalink
suppress warnings (#92)
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinrue authored Aug 1, 2024
1 parent f711a4a commit 4d74137
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions episodes/06-biological-sequences.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ information is provided in the other package vignettes, accessible as

To get started, we load the package.

```{r, message=FALSE}
```{r, message=FALSE, warning=FALSE}
library(Biostrings)
```

Expand Down Expand Up @@ -406,7 +406,7 @@ available in other Bioconductor packages, as we demonstrate in the next section.

To get started, we load the package.

```{r, message=FALSE}
```{r, message=FALSE, warning=FALSE}
library(BSgenome)
```

Expand Down Expand Up @@ -437,7 +437,7 @@ BiocManager::install("BSgenome.Hsapiens.UCSC.hg38.masked")
Once installed, BSgenome packages can be loaded like any other R package,
using the `library()` function.

```{r, message=FALSE}
```{r, message=FALSE, warning=FALSE}
library(BSgenome.Hsapiens.UCSC.hg38.masked)
```

Expand Down

0 comments on commit 4d74137

Please sign in to comment.