Amino Acid Composition-Graphic Representation
1
0
Entering edit mode
10.3 years ago

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. enter image description here

amino-acids graphs visualization • 3.9k views
ADD COMMENT
0
Entering edit mode

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?

ADD REPLY
0
Entering edit mode

Now I have added the image

ADD REPLY
3
Entering edit mode
10.3 years ago
secretjess ▴ 210

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!

simple pie chart

ADD COMMENT
0
Entering edit mode

Basically this but with ggplot2, which makes much prettier graphs IMO.

ADD REPLY

Login before adding your answer.

Traffic: 2785 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6