-
Notifications
You must be signed in to change notification settings - Fork 17
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
Multiple errors: samples argument and Matrix #103
Comments
Hi, regarding your problem 1, for obvious reasons passing the name of a column doesn't work if your object is just a matrix of counts (as it is in your case). I've now added to devel a check and clear error message to this effect. In your case, you can simply use Regarding problem 2, see issue #91 . Rather than downgrading Matrix, you can simply re-build irlba from source. |
Thank you very much for your fast response. I did the followings and problem is still there. 2: 3; Errors other attached packages: |
Were the install commands actually successful? |
Great, You are right, It is working now. Thank you very much. |
Dear Pierre,
Thanks for the package!
Please see following code. I have a seurat object called Tcells that contains many samples from different experiments.
sce <- scDblFinder(GetAssayData(Tcells, slot= "counts"), samples = "experiment", multiSampleMode = "split", BPPARAM=MulticoreParam(3), clusters = Idents(Tcells))
1: It seems that samples is not an argument
Assuming the input to be a matrix of counts or expected counts. Error in .checkColArg(sce, samples) : Could not find
samplescolumn in
2: when I delete the samples argument, I have another errors, which might have something to do with the Matrix version (1.6-5). But I am not able to downgrade the Matrix to version 1.6-2 by using following code :
remotes::install_version(package = 'Matrix', version = '1.6-2')
. It will be great if you could help. I also noticed that people reported that downgrading Matrix is not enough as well.Assuming the input to be a matrix of counts or expected counts. 15 clusters Creating ~8633 artificial doublets... Dimensional reduction Error in (function (A, nv = 5, nu = nv, maxit = 1000, work = nv + 7, reorth = TRUE, : function 'as_cholmod_sparse' not provided by package 'Matrix'
I appreciate for your kind help!
Best,
Harry
The text was updated successfully, but these errors were encountered: