Answered step by step
Verified Expert Solution
Link Copied!

Question

00
1 Approved Answer

I have an output from a FASTA file. Output : S: 74803, (5.8%) R: 71819, (5.5%) T: 69645, (5.4%) W: 20019, (1.5%) V: 91683, (7.1%)

I have an output from a FASTA file.

Output:

S: 74803, (5.8%) R: 71819, (5.5%) T: 69645, (5.4%) W: 20019, (1.5%) V: 91683, (7.1%) Y: 36836, (2.8%)

etc...

using this code ...

for key,val in counts.items():

print ("{}: {}, ({:.1%})".format(key,val, val / total))

My questions is how can i sort this so that

a) the biggest percentage numbers ar on top

b) only top 3 results are shown

thanks!

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions