I have a data table where I would like to plot the sequence logo based on my Input data.
Input:
data <- data.frame(
Cns = c("H", "H", "H", "Q", "D", "D", "I", "S", "M", "P"),
variable = c("H", "Q", "R", "Q", "D", "N", "I", "S", "M", "P"),
rate = c(99.1, 0.236, 0.708, 100, 99.3, 0.708, 100, 100, 100, 100)
)
How can I draw a logo plot based on the Input (not alignment files), while having "Cns" on the x-axis, "rate" on the y-axis and a "variable" column as the logo and their size change based on the rate column?
This is a bit of a faff. There was a package for creating sequence logos in R, but it was removed from CRAN last month. You can install and load the latest working version by doing:
You then need to get your data into matrix format, which requires a bit of manipulation:
If you want a colorful result that plots the letter heights according to
rate
, you can then do: