Closed zhiyhu closed 7 years ago
Hi @ZYBunnyHu
By way of explanation, the SCESet object contains all (transformations of) expression data (e.g. count matrix, exprs matrix) in an "assayData" slot inherited from the ExpressionSet class. This is why you see a reference to "assayData" in the error message.
This is obviously not intended behaviour. Could you please provide the output of sessionInfo()
after getting this error, and (if you can) share the dataset so that I can run this code myself and try to replicate the error?
There is a mismatch introduced somewhere between featureNames(sceset)
and rownames(featureData(sceset))
, but this should be discovered internally, so there is a bug. Could you try running identical(featureNames(sceset), rownames(featureData(sceset)))
after the calls to newSCESet
, getBMFeatureAnnos
and calculateQCMetrics
to see where these become non-identical?
Best Davis
Hi @ZYBunnyHu - has this issue persisted? If not, I will close the issue presently.
No. Please go ahead.
Cheers!
On 10 Jan 2017, at 12:11, Davis McCarthy notifications@github.com wrote:
Hi @ZYBunnyHu https://github.com/ZYBunnyHu - has this issue persisted? If not, I will close the issue presently.
— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/davismcc/scater/issues/89#issuecomment-271559998, or mute the thread https://github.com/notifications/unsubscribe-auth/AL_1m4NvIKlX72YF3FqxNQifeKfZHpjJks5rQ3VVgaJpZM4LN7Y6.
Thanks. We appreciate the feedback - happy scater'ing.
When I tried to plot PCA figures by filter, it gives the error massege. The following is the simplified codes. Some of them were borrowed from the materials in the workshop.
First I read in the files and create the SCEset.
If I simply plot all, it works well.
> plotPCA(sceset, colour_by = "description")
But if I try to use filter, it gives the following massage.
It bothers me when I tried to plot some other plots also. I am not very sure where the assayData comes from.