Skip to content

Commit

Permalink
bugfix retry R-CMD-check github action
Browse files Browse the repository at this point in the history
  • Loading branch information
adrientaudiere committed Dec 12, 2023
1 parent 283f98f commit 23118e2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/R-CMD-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,4 @@ jobs:
- uses: r-lib/actions/check-r-package@v2
with:
upload-snapshots: true
args: 'c("--no-tests", "--no-examples", "--no-vignettes", "--no-build-vignettes")'
args: 'c("--no-tests", "--no-examples", "--no-vignettes", "--no-build-vignettes", "--no-manual")'
2 changes: 1 addition & 1 deletion R/controls.R
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ search_exact_seq_pq <- function(physeq, sequences) {
res <- list()
for (i in seq_along(sequences)) {
original <- sequences[[i]]
rev <- reverse(sequences[[i]])
rev <- Biostrings::reverse(sequences[[i]])
rev_comp <- Biostrings::reverseComplement(sequences[[i]])
comp <- Biostrings::complement(sequences[[i]])

Expand Down

0 comments on commit 23118e2

Please sign in to comment.