-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
First major release of APCalign. A preprint is available at https://www.biorxiv.org/content/10.1101/2024.02.02.578715v1. Article has been accepted for publication at Australian Journal of Botany. Following review, a number of changes have been implemented. These have sped & streamlined the package. * Update function documentation * Speed up `extract_genus` * Write a replacement function for `stringr::word` that is much faster. * Additional speed up and accuracy of `fuzzy_match` function by - Restricting reference list to names with the same first letter as input string. - Switch from using `utils::adist` to `stringdist:stringdist(method = "dl")` * Rework `standardise_names` to remove punctuation from the start of the string * Rework `strip_names_extra` (previously `strip_names_2`) to just perform additional functions to `strip_names`, rather than repeating those performed by `strip_names`. * Avoid importing entire packages by using package::function format throughout and removing functions from @import * Add fuzzy match arguments to `create_taxonomic_update_lookup` * Add 3 additional family-level APC matches to `match_taxa`. * Refine tests * Make messages to console optional * Fix issue with fails when github is down (#205) --------- Co-authored-by: Elizabeth Wenk <ehwenk@gmail.com> Co-authored-by: Fonti Kar <f.kar@unsw.edu.au> Co-authored-by: Daniel Falster <daniel.falster@unsw.edu.au> Co-authored-by: Will Cornwell <w.cornwell@unsw.edu.au>
- Loading branch information
Showing
57 changed files
with
2,617 additions
and
1,103 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,37 @@ | ||
# APCalign 0.1.4 | ||
# APCalign 1.0.0 | ||
|
||
First major release of APCalign. A preprint is available at | ||
https://www.biorxiv.org/content/10.1101/2024.02.02.578715v1. | ||
Article has been accepted for publication at Australian journal of Botany. | ||
|
||
* Better handling of errors when API/network connection is down for `load_taxonomic_resources` | ||
Following review, a number of changes have been implemented. These have sped & | ||
streamlined the package. | ||
|
||
* Refined testing for `load_taxonomic_resources` | ||
* Update function documentation | ||
* Speed up `extract_genus` | ||
* Write a replacement function for `stringr::word` that is much faster. | ||
* Additional speed up and accuracy of fuzzy_match function by | ||
- Restricting reference list to names with the same first letter as input string. | ||
- Switch from using `utils::adist` to `stringdist:stringdist(method = "dl")` | ||
* Rework `standardise_names` to remove punctuation from the start of the string | ||
* Rework `strip_names_extra` (previously `strip_names_2`) to just perform | ||
additional functions to `strip_names`, rather than repeating those performed by `strip_names`. | ||
* Avoid importing entire packages by using package::function format throughout | ||
and removing functions from @import | ||
* Add fuzzy match arguments to `create_taxonomic_update_lookup` | ||
* Add 3 additional family-level APC matches to `match_taxa`. | ||
* Refine tests | ||
* Make messages to console optional | ||
* Fix issue with fails when github is down (https://github.com/traitecoevo/APCalign/issues/205) | ||
|
||
# APCalign 0.1.5 | ||
|
||
|
||
* Update installation instructions | ||
* Added how to cite and version APCalign as an article | ||
* Exported `default_version` | ||
* Add citing method for R package | ||
* Update GitHub Actions | ||
* Improved family alignments | ||
* Added `standardise_taxon_rank` | ||
* Improved messaging during alignment |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.