We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Command from the FastANI workflow produces the following error in R v4.1.2
identity.sorted <- identity[order(identity["V2"]),] Warning message: In xtfrm.data.frame(x) : cannot xtfrm data frames
Seems like this is an issue with R >= 4.1 and the order function, see here:
https://stackoverflow.com/questions/68101279/warning-in-xtfrm-data-framex-cannot-xtfrm-data-frames-error-while-ordering
Changing to identity.sorted <- identity[order(identity[,"V2"]),] works.
identity.sorted <- identity[order(identity[,"V2"]),]
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Command from the FastANI workflow produces the following error in R v4.1.2
identity.sorted <- identity[order(identity["V2"]),] Warning message: In xtfrm.data.frame(x) : cannot xtfrm data frames
Seems like this is an issue with R >= 4.1 and the order function, see here:
https://stackoverflow.com/questions/68101279/warning-in-xtfrm-data-framex-cannot-xtfrm-data-frames-error-while-ordering
Changing to
identity.sorted <- identity[order(identity[,"V2"]),]
works.The text was updated successfully, but these errors were encountered: