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
The help for get_normalized indicates that
get_normalized
If ‘scone’ was run with ‘return_norm="no"’, this function will compute the normalized matrix on the fly.
Unfortunately, doesn't seem to work for me because of some error in computing the imputation:
> tmp <- get_normalized(scone_obj, "none,fq,ruv_k=3,no_bio,batch") Error in x@imputation_fn[[params[1]]](assay(x), impute_args) : attempt to apply non-function > traceback() 3: .local(x, method, ...) 2: get_normalized(scone_obj, "none,fq,ruv_k=3,no_bio,batch") 1: get_normalized(scone_obj, "none,fq,ruv_k=3,no_bio,batch") > package.version("scone") [1] "1.4.0"
The issue derives from:
scone/R/get_normalized.R
Line 41 in e2436a3
impute_args
NULL
The text was updated successfully, but these errors were encountered:
Hey @diyadas - thanks for reporting this! What does scone_obj@imputation_fn look like for this object?
scone_obj@imputation_fn
Sorry, something went wrong.
Hi!
> scone_obj@imputation_fn list()
That's interesting because the default is list(none=impute_null). Maybe this was overwritten at some point?
list(none=impute_null)
No branches or pull requests
The help for
get_normalized
indicates thatUnfortunately, doesn't seem to work for me because of some error in computing the imputation:
The issue derives from:
scone/R/get_normalized.R
Line 41 in e2436a3
as
impute_args
has been set toNULL
by L38.The text was updated successfully, but these errors were encountered: