-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
108 make output messages optional #198
Conversation
@@ -149,29 +157,29 @@ align_taxa <- function(original_name, | |||
# take unique values so each name only processed once | |||
dplyr::filter(!duplicated(original_name)) | |||
|
|||
if (all(taxa$tocheck$checked)) { | |||
if (all(taxa$tocheck$checked)|all(is.na(taxa$tocheck$checked))) { | |||
message(" - all taxa are already checked, yay!") | |||
return(invisible(taxa$tocheck)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we also have a progress bar for alignment please like the load_taxonomic_resources
one? I think it will be useful for larger datasets.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes, but maybe needs to be part of #191 ? adding the progress bar before re-factoring might make re-factor more confusing
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Minor request for a progress bar for align_taxa
otherwise it looks great! I like the output
argument!
@wcornwell if you merge in |
Merge remote-tracking branch 'origin/develop' into 108-make-output-messages-optional # Conflicts: # DESCRIPTION
Working on #108 and #194