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.
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
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.
Login before adding your answer.
Use of this site constitutes acceptance of our User Agreement and Privacy Policy.
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