Skip to content

Commit

Permalink
Add blast and vsearch to pkgdown action
Browse files Browse the repository at this point in the history
  • Loading branch information
adrientaudiere committed Sep 6, 2023
1 parent 65ff067 commit a13e630
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions .github/workflows/pkgdown.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,12 @@ jobs:
extra-packages: any::pkgdown, local::.
needs: website

- name: Install vsearch
run: sudo apt-get install vsearch

- name: Install blastn
run: sudo apt-get install ncbi-blast+

- name: Build site
run: pkgdown::build_site_github_pages(new_process = FALSE, install = FALSE)
shell: Rscript {0}
Expand Down
2 changes: 1 addition & 1 deletion vignettes/filter.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ knitr::opts_chunk$set(

```{r setup, message=FALSE}
library(MiscMetabar)
library(formattable)
```

## Filter samples
Expand Down Expand Up @@ -71,7 +72,6 @@ track_formattable <-

```{r}
if (class(blast_error_or_not) != "try-error") {
library(formattable)
formattable(track_formattable,
list(
area(col = nb_sequences) ~ color_bar("cyan", na.rm = T),
Expand Down

0 comments on commit a13e630

Please sign in to comment.