
Explore how DNA, RNA, and proteins flow from gene to function, contrasting prokaryotic and eukaryotic genomes, transcription and splicing, and the roles of nucleotides and amino acids.
Explore the translation process, where messenger rna is read by ribosomes, aided by transfer rna, to assemble amino acids into polypeptides according to the genetic code.
In the previous 'solution' lecture, until minute 0:40, I show the formula of recombination frequency to be like this:
rec1 + rec2 + nonrec1 + nonrec2 / rec1 + rec2
After 0:40, the formula is inverted to rec1 + rec2 /rec1 + rec2 + nonrec1 + nonrec2, which is the correct formula
Locate the start and termination codons in an RNA sequence and extract the open reading frame using Python, demonstrating the positions and the sequence between them.
Convert a lowercase dna string to uppercase, extract characters five through ten, and transcribe dna to rna by replacing t with u.
Explore the while loop in Python, including counting numbers and iterating strings by index. Learn how to use true loops, conditions, and break for input validation.
Learn to compute the Hamming distance between two equal-length DNA strings using a while loop in Python, and calculate their similarity percentage.
Write code that translates an RNA sequence into a polypeptide chain using a codon dictionary and a loop that processes codons until a stop codon terminates.
Build a python tool to locate ORFs in a pre messenger RNA sequence by scanning for start codons, collecting sequences until stop codons, and listing ORFs.
Many students and professionals of biosciences are not familiar with programming. However, the increasing amount of biological data generated every year, along with advances in biotechnology and the increasing role of informatics in life sciences makes the programming knowledge essential for biologists, biotechnologists, and so on! In this introductory course, you will learn how to model simple genetics problems using the programming language Python. First, you will learn how to implement the commands or data structures in Python. And Finally, we will model some problems in the field of genetics using the knowledge acquired so far.
Since this is an introductory course, we will not use third-party libraries, such as Biopython, matplotlib, pandas, etc., but only the built-in commands, modules, and data structures.
In the first section of the course, we have a very brief introduction to refresh some concepts of genetics, such as genes, alleles, frequency, etc... In the second part of the course, you'll learn the basic commands, data structures, and functions of Python. In these chapters, you must apply the knowledge acquired so far in the chapter to solve some problems related to genetics in Python! There are more than 20 exercises and challenges to be solved throughout the course!
Therefore, if you want to:
Learn to think algorithmically
Model problems of genetics in a programming language
Learn how to use the most popular programming languages to model problems of biology
...this course is for you!