-
Notifications
You must be signed in to change notification settings - Fork 11
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
large part of the heatmap of select features is blank #17
Comments
and even when I project my dataset to itself, the the similarity is low and labels are all 'unassigned', is there any mistake I have made? thank you |
I set the n_feature very few till there is no blank, but still when I project the dataset to itself, most of the cells are 'unassigned' |
how does your |
@wikiselev thanks for your reply, here is the output: |
thanks, looks good to me. Hard to think why this happens without looking at your data, though... |
I have the same issue. I have no idea what happened. It seems associated with the selected feature genes. If I use the top 500 features, I got a small blank region, but if I use the top 1000 features, I got a huge gap of blank. |
when I draw heatmap after index cluster, it turned out a big blank, is this normal to see?
here is my code:
proj.sce <- SingleCellExperiment(assays = list(normcounts = proj.mat), colData = proj.cellname)
logcounts(proj.sce) <- log2(normcounts(proj.sce)+1)
rowData(proj.sce)$feature_symbol <- rownames(proj.sce)
proj.sce <- selectFeatures(proj.sce, suppress_plot=F)
proj.sce <- indexCluster(proj.sce)
heatmap(as.matrix(metadata(proj.sce)$scmap_cluster_index))
The text was updated successfully, but these errors were encountered: