Skip to content
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

Documentation: <insert-descriptive-title>:vignettes>description mistake #9692

Open
XanUniv opened this issue Feb 19, 2025 · 0 comments
Open
Labels
documentation Error in documentation

Comments

@XanUniv
Copy link

XanUniv commented Feb 19, 2025

Issue Description

Dear editor,
in seurat->vignettes->PBMC3K-guided tutorial ->Finding differentially expressed features (cluster biomarkers)->heatmap part, there's a mistake in the description ,
the text describes:
DoHeatmap() generates an expression heatmap for given cells and features. In this case, we are plotting the top 20 markers (or all markers if less than 20) for each cluster.
however while the code writes:
pbmc.markers %>%
group_by(cluster) %>%
dplyr::filter(avg_log2FC > 1) %>%
slice_head(n = 10) %>%
ungroup() -> top10
DoHeatmap(pbmc, features = top10$gene) + NoLegend()
The text tells us that we extract 20 markers in each cluster,but the code shows we only take 10 of them.
It needs to be fixed.

@XanUniv XanUniv added the documentation Error in documentation label Feb 19, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
documentation Error in documentation
Projects
None yet
Development

No branches or pull requests

1 participant