Skip to content

Commit

Permalink
Merge pull request #809 from erikrikarddaniel/fix-missing-library
Browse files Browse the repository at this point in the history
Fix missing library
  • Loading branch information
erikrikarddaniel authored Dec 3, 2024
2 parents be2d1b5 + fa76188 commit e17ab62
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### `Fixed`

- [#800](https://github.com/nf-core/ampliseq/pull/800) - Fixed SH files for UNITE9.0, they were missing some entries due to a bug caused by API update in PlutoF
- [#808](https://github.com/nf-core/ampliseq/pull/808) - Add missing library declaration in R script.

### `Dependencies`

Expand Down
2 changes: 1 addition & 1 deletion modules/local/format_pplacetax.nf
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ process FORMAT_PPLACETAX {
# then, check if reduced entries are identical > if yes, choose any row, if no, repeat
# at that step the taxonomies have same length
print( paste ( asvid,"enters STEP 3" ) )
list_taxonpath <- str_split( temp\$taxopath, ";")
list_taxonpath <- stringr::str_split( temp\$taxopath, ";")
df_taxonpath <- as.data.frame(do.call(rbind, list_taxonpath))
for (i in ncol(df_taxonpath):0) {
# choose first column and change taxon to reduced overlap
Expand Down

0 comments on commit e17ab62

Please sign in to comment.