#6,346 in Computers & technology books
Use arrows to jump to the previous/next product

Reddit mentions of Python for Biologists: A complete programming course for beginners

Sentiment score: 1
Reddit mentions: 3

We found 3 Reddit mentions of Python for Biologists: A complete programming course for beginners. Here are the top ones.

Python for Biologists: A complete programming course for beginners
Buying options
View on Amazon.com
or
Specs:
Height9.69 Inches
Length7.44 Inches
Number of items1
Weight0.97 Pounds
Width0.51 Inches

idea-bulb Interested in what Redditors like? Check out our Shuffle feature

Shuffle: random products popular on Reddit

Found 3 comments on Python for Biologists: A complete programming course for beginners:

u/ultraDross · 34 pointsr/biology

Python for Biologists will take you through all basic Python concepts (for loops, data structures etc.) in context to a biological problem e.g. how to get GC% from a given DNA sequence. It Aimee's you know nothing about programming so it's perfect for the absolute beginner. I can't recommend it enough, it's what got me started and excited about programming.

u/TheBigApple11 · 1 pointr/biology

DNA to Amino Acid

RNA to Amino Acid

The examples I provided should read the same way forwards/5' to 3' and backwards/3' to 5' (ATA/UAU and GCG/CGC). The program just takes in a text file, then generates two new files of both the new RNA and polypeptide sequences. The DNA is converted into RNA and the RNA strand is read into amino acids. My code began with an example from a bioinformatics book that provided a dictionary of DNA codons to their corresponding amino acids. This was the basis that I used to test my program before I incorporated any RNA sequences. And this is where I noticed that the DNA codons apparent amino acids do not match to what their transcribed RNA codon translate into. Technically it is not necessary, but it is a discrepancy that makes me wonder if I am doing something wrong.