-
Notifications
You must be signed in to change notification settings - Fork 942
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 group bars on heatmap #2201
Comments
We don't support this in the package, primarily because we would have to switch to other heatmap plotting functions which can be dramatically slower. For example, I believe the aheatmap (http://nmf.r-forge.r-project.org/aheatmap.html) package supports this, but I'm not quite sure. If you do find other packages that support this, please feel free to post here. |
FWIW, I modified DoHeatmap to do this in a simple way. I didn't get to adding a legend for the additional groups but the bar on the top can be seen to better understand your data. E.g.:
This is the result (genes and clusters, etc are redacted since this is unpublished work ;) ) Here's the code
|
@arkal Thanks for this code, very helpful! I have used it on my data to add two colour bars on the heatmap, however I am having trouble with two aspects:
However, when I change the Idents of the object to "clusters_new" and use "clusters_new" in the group.by section, the order of the heatmap still appears as 1, 2, 3, 4, 5 instead of 2, 1, 3, 5, 4. Is there a way to switch the order the clusters appear on the heatmap?
|
@HomairaH I'm glad it helped you. Silly me I was recalculating levels instead of inheriting. I modified the code and The Code is at the bottom. I added a new parameter
Here's all the code!
|
@arkal thanks so much again! |
Thanks for the code @arkal . It's very helpful. I noticed that the legend is missing for the new group bars. Could you add it to the heatmap? thank you. |
Yeah that's what i mentioned upfront, it's a feature i don't have the time to add. Feel free to modify that code to do it :) FWIW the new group bars are ordered the same as your metadata object. Maybe i'll have free time in the future to get to this but not right now sorry :( |
Hi @arkal , I was using your function
Do you know what might be causing this error? Thanks |
Hey @kaizen89 - I was wondering the same! I'm a complete newbie, so not completely sure if this is the correct answer, but replacing one line of code did the trick for me. Looks like it's an issue with the ggplot2 version. I found the replacement line in the DoHeatmap code. You could also set Replace: With: Hope this helps! |
Indeed I was setting |
@arkal Thanks!! |
@iheartfoosball Below is the code that I ran. |
@csung331 Looks like you haven't loaded the function yet, so R does not recognize it when you try to call it. I'd suggest copying the code at the end of arkal's Dec 16 post (after the line that reads "Here's all the code") and pasting it into an empty R Script file. Then you can run that code to load the function into the R session. You can then save that file separately so that you can use it to load the function in the future (using the 'source' function, as described here). |
@iheartfoosball Great! Thank you. It seems like the code is working. But now I am confronted with a different issue which might be due to the way how I processed and integrated my datasets. Below is the error message that I'm getting. |
@csung331 No prob! If you want to use the values resulting from SCTransform, you can set the assay to 'SCT' instead of 'RNA' when you call the DoMultiBarHeatmap function. I believe you can also specify the slot when you call the function (eg |
@iheartfoosball Thanks for all your insight. I SCT processed my data from individual group but used NormalizeData() when integrating all datasets. So I should use assay='RNA', slot='data'. The code that I would use is But when I run this code, I also get the below error message. |
@csung331 no prob hmm have you tried without the features argument? i would try with just the first 3 arguments (object, assay, slot) and see if it runs. |
Indeed, this is what I was looking for too, did you manage it? |
Thanks Arkal you are doing god's work However, I got the warning message ` Error in gpar(cex = 0.75) : could not find function "gpar" ` EDIT: nvm |
I think you just have to load library(grid) to use the function gpar. |
Has anyone tried running this recently? I keep getting the following error and have no idea how to fix it. Error still appears even without cols.use. I've included my sessionInfo() below in case it's helpful! Would appreciate any help I can get with this. Thanks!
|
Do you know if all your cells have both a 'condition' and 'cell.identity' value? Maybe check by doing:
|
Hello, whenever I run the code above from
Hello, This is not working for me. For the code with the looping, did we need to change anything? I left everything untouched in the long code and then just changed the one line that you provided first to reflect my object. I keep getting this error: Thanks in advance to whomever helps me! |
Error: Must request at least one colour from a hue palette. Error in ((scales::hue_pal())(4))(length(x = levels(x = group.use[[colname]]))) : |
Hi everyone, I fixed the issues in the script above. Looks like a few things were deprecated like Hope that helps! |
Hello, mesenchymalmarkers <- FindAllMarkers(mesenchymal, only.pos = TRUE, min.pct = 0.1, logfc.threshold = 0.10) Heatmapsample<- DoMultiBarHeatmap(mesenchymal, features = mesenchymalmarkers$gene, group.by = "CellType", additional.group.by = "samples" + theme(axis.text.y = element_text(size = 1.2))) Warning: CombinePlots is being deprecated. Plots should now be combined using the patchwork system. I also tried removing the argument features and didn't work either. I also tried using the code above source code, which worked before and now it doesn't work either. In the past year around March 2020, I used the function as described above and now it stopped working. I downloaded and updated the latest R version for mac as well as the packages. Thanks for your help! |
@ondp15 I had a similar issue -- my error was "could not find function CombinePlots". I just deleted the part about the CombinePlots, i.e., |
Hey! I think you need to close the heatmap function parentheses before changing the theme. So add a ) after "samples" and remove one from the end of your code. There may be additional issues after fixing that though :P |
Hi @iheartfoosball , @ondp15 also commented this on my own github page and I responded there. The CombinePlots deprecation message is only a warning. It does not (in my case) stop the package running and right now I do not have the time to change the plot combination function. If you have any other error message that is preventing the package from working please let me know! |
Hi @elliefewings - thanks for clarifying! I have not attempted this recently, just wanted to suggest that syntax edit for @ondp15. If the function has no other issues, moving the parenthesis should do the trick :) |
I would like to recommend the R package Scillus I wrote for this functionality. It takes advantage of the ComplexHeatmap. The full vignette is at https://scillus.netlify.app/ Following are the examples:
|
I also get the following error and have no idea how to fix it. How did you solve it?
@iheartfoosball @arkal @xmc811 @elliefewings @MinBio |
same, I can't use this function and I don't understand why. I try to pass over it with draw.lines = F, but it's the same problem line 112... Any suggestion ? |
I found that adding the argument "group.bar=T" at least gets me to display the heatmap. |
DoMultiBarHeatmap is easy to use for me who don't have coding experience. It did give more details on group bar. I tried to set specific color for the group bars for the seurat clusters and conditions using script below:
While R reports "unused argument (cols.use = cols.use)", I also tried "group.colors" also not working. Then the color is the same as without adding "cols.use" (cluster color is the default one of UMAP, while sample color is new, wanted to change it as in the UMAP). Anyone can help? Thank you! |
thanks for creating this @arkal ! this is very useful for people in my group did you figure out how to add a legend for this additional group? Thanks Elodie |
Hi @arkal ,
I also tried change additional.group.by = to additional.group.sort.by = and got this errors
Could you please help to point_ Best |
|
Hi @xmc811 --- Does this heatmap group the cells by hierarchical clustering for a metadata variable? Or is there a way to do that here? Thank you so much |
Hello! If anyone can have a go at fixing the script it would be great! For now I'll use Seurat v4 to generate the heatmap. |
Hello, I have run this code and it worked. But I need to know more about the data that are grouping in the additional.group.by, I want to show these data the same as the way that group.by (Identity) is showing and plotting (additional labelling for columns used in additional.group.by). How can I perform this? Thanks a lot. |
It seems that the Doheatmap function provides only one group bar coloring one metadata. Is there any way to add more group bars to color different metadata in one plot?
The text was updated successfully, but these errors were encountered: