How to plot a image like this.
This is a mutation landscape plot. I just want to know the name of the plot of such type and how to plot it using R (which package)???
Any help is appreciated.
genome
r
plot
cancer
• 1,773 views
•
link
updated
by
Ram
4.5K
• |
written
by
lincaijin1994
5
0 answers
No answers yet.
Log in to answer this question.
More posts like this
-
Understanding IGV
written by zizigolu 438Hi I have targeted sequencing (WGS) I have uploaded bam and vcf file for sample; From these screenshot which one shows/support this mutation ![enter image …
-
Consistent cluster coloring
written by solo.albif 0Hi, I am using Seurat to create a UMAP plot with DimPlot, three spatial plots with ImageDimPlot and a heatmap plot with DoHeatmap: ![enter image …
-
How can I create a sample characteristic/mutation plot in R?
written by db4761 0I am wondering if anyone can help me figure out how to create a plot like this in R to show the characteristics of my …
-
How to infer gene-level CNV status from ICGC data?
written by lincaijin1994 5I've downloaded copy number data from ICGC portal but I found it provided only the mutation type (copy neutral, copy neutral LOH, gain, loss) and …
-
Is it possible to add significant stars besides oncoprint ?
written by Lillian 0I have create oncoPrint by `Complexheatmap` package in R like this: ![enter image description here][1] I'm wondering is it possible to make annotation of significant …
-
R can install .zip package but not .tar.gz package
written by Nickier 2My R version is 4.2.1 , and had installed Rtools42 . When I install a package which is .tar.gz , R return message "non-zero exit …
-
R - Merging and aligning two CSVs using common values in multiple columns
written by Michael 1I currently have two .csv files that look like this: File 1: ![enter image description here][1] File 2: ![enter image description here][2] I would like …
-
Dotplot with annotated features in Seurat/R
written by iatz 3Hello, I would like to plot a DotPlot in R with feature annotation over the top of the plot, as in Scanpy - see red …
-
How to plot a mutation barplot of the SARS-CoV-2 genome?
written by fhsantanna 62I would like to plot a mutation barplot such as that below. Do you know any R or Python library for this purpose? Initially, I …
-
R script or package for nested bubble plot
written by Confused_human 3Looking for R script or package that can make a nested bubble plot like this. ![enter image description here][1] [1]: /media/images/89e75cf7-da91-4d2f-87f1-dbd61249
GenVisR is a possible option.
Thank you! But it seems that GenVisR doesn't include the function to repeat such a plot after reading its user guides. I wonder if you can tell me the name of such a plot.
I hope someone directs you to a package that does what you want. If not, I have good news. This diagram is easy to make without a specialized package. You'll need to instantiate an array of an appropriate size, loop over the rows and columns, assign each (ith, jth) entry to the desired colour values, and then save the raster in your preferred format (example: png). There's a lot of freedom in how you assign the colours, but choose something clear and aesthetically pleasing.
I just noticed the colourbar above. For that it would be preferable to use slicing notation to assign those regions compared to looping and control flow. For the rest of the rows and columns a shift in the indices to account for the added rows at the top would work.