Basically this but with ggplot2, which makes much prettier graphs IMO.
• 0 views
•
link
Is there any tool to create graphic representation of amino acid composition like in predictprotein.org? I understand it can be easily created in excel, but it will be good if any tool available online.

In R:
rand_seq <- "WYEGYQERKMKKNLLGYEQMLRSDFMNTMHPHEDTWICWDYALNQIALNPKTWKVQKSCKASLMPTVDSMYFWYIAHMEMKMQYEWTEWFIHVPYFFDRCFVWYDEFCCQVCMAFLERFRDTNQSSGQLCAWVGYLKNIGYSHYISTILYRYPQEYNIVPTWNIAIMHMQDKVDVECKLNKSMSEHCHHHFPLLAYIDFPLWKPNIYKSPWLMDPFMANLA"
aa_tab <- table(strsplit(rand_seq,""))
pie(aa_tab, col=rainbow(length(aa_tab)), main="Amino Acid Composition")
Unless you didn't mean the pie chart, in which case I can't help, sorry!

Basically this but with ggplot2, which makes much prettier graphs IMO.
Log in to answer this question.
You expect us to register at some site just so we might get an idea of what it is that you actually want to do?
Now I have added the image