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
Hi developers, I tried running the DiffusionMap() function on the "guo" dummy dataset:
data(guo) dm_guo <- DiffusionMap(guo)
However, this throws the following error:
Error: as(, "dsTMatrix") is deprecated since Matrix 1.5-0; do as(., "TsparseMatrix") instead
Traceback is as follows:
warning.(gettextf("as(<%s>, "%s") is deprecated since Matrix 1.5-0; do %s instead", cln1, cln2, deparse1(.as.via.virtual(Class1, Class2, quote(.)))), call. = FALSE, domain = NA) Matrix.DeprecatedCoerce(cd1, cd2) asMethod(object) as(d2, "dsTMatrix") no_censoring(dists, sigma, cb) verbose_timing(verbose, "Calculating transition probabilities", { if (censor) censoring(imputed_data, sigma, dists, censor_val, ... transition_probabilities(imputed_data, sigma, knn$dist_mat, censor, censor_val, censor_range, missing_range, verbose) DiffusionMap(guo)
This seems to be an issue with the latest version of the Matrix package, version 1.5-1.
Any idea how I could solve this issue?
Thanks in advance,
Basiel
The text was updated successfully, but these errors were encountered:
It’s a warning, not an error, so you just need to stop using options(warn=2) to turn warnings into errors, then you can ignore it.
options(warn=2)
Thank you for notifying me, I’ll make sure a future version of destiny doesn’t use deprecated APIs anymore
Sorry, something went wrong.
Thank you for your swift response!
Setting options(Matrix.warnDeprecatedCoerce = 0) resolved the issue.
options(Matrix.warnDeprecatedCoerce = 0)
No branches or pull requests
Hi developers, I tried running the DiffusionMap() function on the "guo" dummy dataset:
However, this throws the following error:
Traceback is as follows:
This seems to be an issue with the latest version of the Matrix package, version 1.5-1.
Any idea how I could solve this issue?
Thanks in advance,
Basiel
The text was updated successfully, but these errors were encountered: