MATH 5610, Computational Biology

Size: px
Start display at page:

Download "MATH 5610, Computational Biology"

Transcription

1 MATH 5610, Computational Biology Lecture 2 Intro to Molecular Biology (cont) Stephen Billups University of Colorado at Denver MATH 5610, Computational Biology p.1/24

2 Announcements Error on syllabus Class meets 5:30-6:45, not 7:00-8:15. Office hours for Christiaan Van Woudenberg: TR after class (6:45-7:45) MATH 5610, Computational Biology p.2/24

3 Key Ideas from Last Lecture DNA and RNA are strings from 4 letter alphabet. Orientation Complementarity Central Dogma MATH 5610, Computational Biology p.3/24

4 Tonight More Molecular Biology Proteins Translation & the genetic code Genes: reading frames, introns/exons Protein Structure and Function Hydrophobicity/Hydrophilicity Sequence Alignment MATH 5610, Computational Biology p.4/24

5 Proteins Do most of the work in a cell. Enzymes: catalysts for chemical reactions. Structural Proteins: form cellular structure. Regulatory Proteins: control expression of genes or activities of other proteins. Transport Proteins: carry molecules across membranes or around body. Composed of strings of amino acids. Translated from RNA by ribosome complexes. Fold up into 3 dimensional structure which largely determines protein function. MATH 5610, Computational Biology p.5/24

6 Translation mrna is translated to form proteins. Genetic Code: 3 nucleotides translate to 1 amino acid. 20 amino acids + stop codon = 21 codes needed. Question: How many possible sequences of 3 nucleotides are there? MATH 5610, Computational Biology p.6/24

7 Translation mrna is translated to form proteins. Genetic Code: 3 nucleotides translate to 1 amino acid. 20 amino acids + stop codon = 21 codes needed. Question: How many possible sequences of 3 nucleotides are there? Answer: 4 3 = 64. Duplication: different codons code for same amino acids. Often an error in 3rd position in codon results in same amino acid. MATH 5610, Computational Biology p.6/24

8 Translation mrna is translated to form proteins. Genetic Code: 3 nucleotides translate to 1 amino acid. 20 amino acids + stop codon = 21 codes needed. Question: How many possible sequences of 3 nucleotides are there? Answer: 4 3 = 64. Duplication: different codons code for same amino acids. Often an error in 3rd position in codon results in same amino acid. MATH 5610, Computational Biology p.6/24

9 Genes A gene is a sequence of nucleotides in the DNA molecule coding for one unit of genetic information. A gene is expressed when that segment of DNA is transcribed into mrna. RNA polymerase binds to DNA molecule, and then moves along the DNA building the complementary RNA molecule. For binding to occur, there must be a promoter sequence on the DNA, which is a set of specific nucleotide sequences in just the right positions relative to the gene. Gene expression is regulated by proteins (or RNA molecules) that bind to the promoter regions. Sometimes, such a protein makes it easier for RNA polymerase to bind to the DNA and begin transcription (positive regulation). Other times, the protein makes it harder (negative regulation). MATH 5610, Computational Biology p.7/24

10 Reading Frames Recall: nucleotides in the mrna molecule are translated to proteins in triplets. If you shifted by one nucleotide, you would get an entirely different amino acid sequence: tyr leu arg leu U A C C U U A G A C U C G thr leu asp ser There are 3 possible reading frames, which correspond to the 3 possible ways of dividing the sequence up into triplets. MATH 5610, Computational Biology p.8/24

11 Open reading frames The choice of reading frame depends on where the ribosome binds to the mrna. This always occurs at a start codon (AUG). Translation begins immediately following a start codon (AUG), and continues until a stop codon is reached (UAA, UAG, or UGA). An open reading frame (ORF) is a sequence of mrna beginning with a start codon, and ending at the first stop codon encountered. All proteins are translated from ORFs. But not all ORFs are translated. Long ORFs are rare, unless the ORF corresponds to an actual protein. In a random Nucleotide sequence, stop codons make up 3/64 of the codons, so average ORF length is about 21 codons. Most proteins are hundreds of amino acids long. MATH 5610, Computational Biology p.9/24

12 Introns and Exons In prokaryotes, the mrna is transcribed directly from the DNA. In Eukaryotes, the mrna can be modified by splicing before it is translated. Splicing involves removing internal sequences called introns from the mrna. Introns do not code for proteins. The parts of the mrna that are not removed are called exons. Exons contain the sequence information for the protein. Alternative splicing: Many RNA sequences can be spliced in multiple ways (called alternative splicings). MATH 5610, Computational Biology p.10/24

13 Protein Structure and Function The 3-D structure of a protein largely determines the function. Hierarchy of structure: Primary structure: Linear order of the amino acids. Secondary structure: Location and direction of common structures called α-helices and β-sheets. Tertiary structure: The 3-dimensional shape of the protein. Quaternary structure: The overall 3-D structure of a complex of multiple proteins. (Image from MATH 5610, Computational Biology p.11/24

14 Hydrophobicity/Hydrophilicity Some amino acids have polar side chains. (the charge of the molecule is not symmetric. These residues are attracted to water. Such amino acids are called Hydrophilic. Other amino acids involve nonpolar side chains. These are called Hydrophobic. Because proteins reside in water, they tend to fold up in ways such that the hydrophylic residues are on the outside and the hydrophobic residues are in the inside. MATH 5610, Computational Biology p.12/24

15 Topics not covered from Ch. 1 Read about this on your own. Chemical details. Molecular Biology Tools Genomic Information Content (Optional). MATH 5610, Computational Biology p.13/24

16 Sequence Comparison/Alignment Dot Plots Sequence Alignment Scoring methods Derivation of scoring matrices Dynamic Programming MATH 5610, Computational Biology p.14/24

17 Dot Plot A C T C G A G C A C A G T A G C MATH 5610, Computational Biology p.15/24

18 Sequence Alignment Definition: Alignment = pairwise matching between the characters of each sequence. often requires inserting gaps into the sequences. Ex: 2 alignments of the same sequences: AATCTATA AAG-AT-A Which is better? AATCTATA AA--GATA MATH 5610, Computational Biology p.16/24

19 Sequence Alignment Definition: Alignment = pairwise matching between the characters of each sequence. often requires inserting gaps into the sequences. Ex: 2 alignments of the same sequences: AATCTATA AAG-AT-A Which is better? AATCTATA AA--GATA MATH 5610, Computational Biology p.17/24

20 Types of Alignments Global best alignment of two fixed sequences Semiglobal Finds best overlap of two sequences. Doesn t penalize gaps at beginning or end. Local Finds the best scoring alignment of subsequences. Multiple Sequence Alignment aligns multiple sequences. MATH 5610, Computational Biology p.18/24

21 Scoring Alignments Goal: Devise a scoring function for an alignment such that the best alignment gets the highest score. Once the scoring function is defined, we will then be able to devise algorithms to search for the highest scoring alignments. Simple Example: Matches = +1 Mismatches = 0 Gaps = -1 AATCTATA AAG-AT-A = +1 AATCTATA AA--GATA = +3 MATH 5610, Computational Biology p.19/24

22 Discussion Question What makes a good scoring function? MATH 5610, Computational Biology p.20/24

23 Ideas for Scoring Functions: Edit distance. (how many edits (sub., ins., del.) are needed to transform one sequence to another?) Homology. Assume both sequences evolved from a common (but unknown) ancestor. Which alignment best reflects this evolutionary relationship? Avoid unintended mathematical biases. Computational efficiency. Complex scoring functions may be harder to compute with. MATH 5610, Computational Biology p.21/24

24 Substitution Score Matrix Evolutionarily, some substitutions are more probable than others. Physical/Chemical properties. Ex: in DNA, transitional substitutions (purine purine) are more probable than transverional substitutions (purine pyrimidine) Selective pressure during evolution. Ex: in protein, substitutions that change structure are selected against. MATH 5610, Computational Biology p.22/24

25 Nucleotide Score Matrices Usually quite simple: BLAST matrix (match=5, mismatch=-4) A T C G A T C G Transition/Transversion matrix A T C G A T C G MATH 5610, Computational Biology p.23/24

26 Amino Acid Substitution Score Matrix Based on statistical model of accepted mutations (i.e., mutations that survive evolution). Example: (BLOSUM62 amino acid substitution matrix) C S T P A G C 9 S -1 4 T P A G MATH 5610, Computational Biology p.24/24

3'A C G A C C A G T A A A 5'

3'A C G A C C A G T A A A 5' AP Biology Chapter 14 Reading Guide Gene Expression: From Gene to Protein Overview 1. What is gene expression? Concept 14.1 Genes specify proteins via transcription and translation Basic Principles of

More information

Genes and How They Work. Chapter 15

Genes and How They Work. Chapter 15 Genes and How They Work Chapter 15 The Nature of Genes They proposed the one gene one enzyme hypothesis. Today we know this as the one gene one polypeptide hypothesis. 2 The Nature of Genes The central

More information

Introduction to Cellular Biology and Bioinformatics. Farzaneh Salari

Introduction to Cellular Biology and Bioinformatics. Farzaneh Salari Introduction to Cellular Biology and Bioinformatics Farzaneh Salari Outline Bioinformatics Cellular Biology A Bioinformatics Problem What is bioinformatics? Computer Science Statistics Bioinformatics Mathematics...

More information

Videos. Lesson Overview. Fermentation

Videos. Lesson Overview. Fermentation Lesson Overview Fermentation Videos Bozeman Transcription and Translation: https://youtu.be/h3b9arupxzg Drawing transcription and translation: https://youtu.be/6yqplgnjr4q Objectives 29a) I can contrast

More information

Bioinformatics. ONE Introduction to Biology. Sami Khuri Department of Computer Science San José State University Biology/CS 123A Fall 2012

Bioinformatics. ONE Introduction to Biology. Sami Khuri Department of Computer Science San José State University Biology/CS 123A Fall 2012 Bioinformatics ONE Introduction to Biology Sami Khuri Department of Computer Science San José State University Biology/CS 123A Fall 2012 Biology Review DNA RNA Proteins Central Dogma Transcription Translation

More information

Videos. Bozeman Transcription and Translation: Drawing transcription and translation:

Videos. Bozeman Transcription and Translation:   Drawing transcription and translation: Videos Bozeman Transcription and Translation: https://youtu.be/h3b9arupxzg Drawing transcription and translation: https://youtu.be/6yqplgnjr4q Objectives 29a) I can contrast RNA and DNA. 29b) I can explain

More information

Hello! Outline. Cell Biology: RNA and Protein synthesis. In all living cells, DNA molecules are the storehouses of information. 6.

Hello! Outline. Cell Biology: RNA and Protein synthesis. In all living cells, DNA molecules are the storehouses of information. 6. Cell Biology: RNA and Protein synthesis In all living cells, DNA molecules are the storehouses of information Hello! Outline u 1. Key concepts u 2. Central Dogma u 3. RNA Types u 4. RNA (Ribonucleic Acid)

More information

6.C: Students will explain the purpose and process of transcription and translation using models of DNA and RNA

6.C: Students will explain the purpose and process of transcription and translation using models of DNA and RNA 6.C: Students will explain the purpose and process of transcription and translation using models of DNA and RNA DNA mrna Protein DNA is found in the nucleus, but making a protein occurs at the ribosome

More information

The Nature of Genes. The Nature of Genes. Genes and How They Work. Chapter 15/16

The Nature of Genes. The Nature of Genes. Genes and How They Work. Chapter 15/16 Genes and How They Work Chapter 15/16 The Nature of Genes Beadle and Tatum proposed the one gene one enzyme hypothesis. Today we know this as the one gene one polypeptide hypothesis. 2 The Nature of Genes

More information

I. Gene Expression Figure 1: Central Dogma of Molecular Biology

I. Gene Expression Figure 1: Central Dogma of Molecular Biology I. Gene Expression Figure 1: Central Dogma of Molecular Biology Central Dogma: Gene Expression: RNA Structure RNA nucleotides contain the pentose sugar Ribose instead of deoxyribose. Contain the bases

More information

Basic concepts of molecular biology

Basic concepts of molecular biology Basic concepts of molecular biology Gabriella Trucco Email: gabriella.trucco@unimi.it Life The main actors in the chemistry of life are molecules called proteins nucleic acids Proteins: many different

More information

From Gene to Protein. How Genes Work

From Gene to Protein. How Genes Work From Gene to Protein How Genes Work 2007-2008 The Central Dogma Flow of genetic information in a cell How do we move information from DNA to proteins? DNA RNA protein replication phenotype You! Step 1:

More information

PROTEIN SYNTHESIS Flow of Genetic Information The flow of genetic information can be symbolized as: DNA RNA Protein

PROTEIN SYNTHESIS Flow of Genetic Information The flow of genetic information can be symbolized as: DNA RNA Protein PROTEIN SYNTHESIS Flow of Genetic Information The flow of genetic information can be symbolized as: DNA RNA Protein This is also known as: The central dogma of molecular biology Protein Proteins are made

More information

Chapter 12 Packet DNA 1. What did Griffith conclude from his experiment? 2. Describe the process of transformation.

Chapter 12 Packet DNA 1. What did Griffith conclude from his experiment? 2. Describe the process of transformation. Chapter 12 Packet DNA and RNA Name Period California State Standards covered by this chapter: Cell Biology 1. The fundamental life processes of plants and animals depend on a variety of chemical reactions

More information

Roadmap. The Cell. Introduction to Molecular Biology. DNA RNA Protein Central dogma Genetic code Gene structure Human Genome

Roadmap. The Cell. Introduction to Molecular Biology. DNA RNA Protein Central dogma Genetic code Gene structure Human Genome Introduction to Molecular Biology Lodish et al Ch1-4 http://www.ncbi.nlm.nih.gov/books EECS 458 CWRU Fall 2004 DNA RNA Protein Central dogma Genetic code Gene structure Human Genome Roadmap The Cell Lodish

More information

BIOLOGY - CLUTCH CH.17 - GENE EXPRESSION.

BIOLOGY - CLUTCH CH.17 - GENE EXPRESSION. !! www.clutchprep.com CONCEPT: GENES Beadle and Tatum develop the one gene one enzyme hypothesis through their work with Neurospora (bread mold). This idea was later revised as the one gene one polypeptide

More information

Gene function at the level of traits Gene function at the molecular level

Gene function at the level of traits Gene function at the molecular level Gene expression Gene function at the level of traits Gene function at the molecular level Two levels tied together since the molecular level affects the structure and function of cells which determines

More information

From DNA to Protein: Genotype to Phenotype

From DNA to Protein: Genotype to Phenotype 12 From DNA to Protein: Genotype to Phenotype 12.1 What Is the Evidence that Genes Code for Proteins? The gene-enzyme relationship is one-gene, one-polypeptide relationship. Example: In hemoglobin, each

More information

Lecture 2: Central Dogma of Molecular Biology & Intro to Programming

Lecture 2: Central Dogma of Molecular Biology & Intro to Programming Lecture 2: Central Dogma of Molecular Biology & Intro to Programming Central Dogma of Molecular Biology Proteins: workhorse molecules of biological systems Proteins are synthesized from the genetic blueprints

More information

Lecture for Wednesday. Dr. Prince BIOL 1408

Lecture for Wednesday. Dr. Prince BIOL 1408 Lecture for Wednesday Dr. Prince BIOL 1408 THE FLOW OF GENETIC INFORMATION FROM DNA TO RNA TO PROTEIN Copyright 2009 Pearson Education, Inc. Genes are expressed as proteins A gene is a segment of DNA that

More information

Biology 3201 Genetics Unit #5

Biology 3201 Genetics Unit #5 Biology 3201 Genetics Unit #5 Protein Synthesis Protein Synthesis Protein synthesis: this is the process whereby instructions from DNA are used to create polypeptides that make up a protein. This process

More information

Lesson Overview. Fermentation 13.1 RNA

Lesson Overview. Fermentation 13.1 RNA 13.1 RNA The Role of RNA Genes contain coded DNA instructions that tell cells how to build proteins. The first step in decoding these genetic instructions is to copy part of the base sequence from DNA

More information

Translation BIT 220 Chapter 13

Translation BIT 220 Chapter 13 Translation BIT 220 Chapter 13 Making protein from mrna Most genes encode for proteins -some make RNA as end product Proteins -Monomer Amino Acid 20 amino acids -peptides -polypeptides -Structure of Amino

More information

7.2 Protein Synthesis. From DNA to Protein Animation

7.2 Protein Synthesis. From DNA to Protein Animation 7.2 Protein Synthesis From DNA to Protein Animation Proteins Why are proteins so important? They break down your food They build up muscles They send signals through your brain that control your body They

More information

The Structure of Proteins The Structure of Proteins. How Proteins are Made: Genetic Transcription, Translation, and Regulation

The Structure of Proteins The Structure of Proteins. How Proteins are Made: Genetic Transcription, Translation, and Regulation How Proteins are Made: Genetic, Translation, and Regulation PLAY The Structure of Proteins 14.1 The Structure of Proteins Proteins - polymer amino acids - monomers Linked together with peptide bonds A

More information

From DNA to Protein: Genotype to Phenotype

From DNA to Protein: Genotype to Phenotype 12 From DNA to Protein: Genotype to Phenotype 12.1 What Is the Evidence that Genes Code for Proteins? The gene-enzyme relationship is one-gene, one-polypeptide relationship. Example: In hemoglobin, each

More information

CH 17 :From Gene to Protein

CH 17 :From Gene to Protein CH 17 :From Gene to Protein Defining a gene gene gene Defining a gene is problematic because one gene can code for several protein products, some genes code only for RNA, two genes can overlap, and there

More information

Bioinformatics: Sequence Analysis. COMP 571 Luay Nakhleh, Rice University

Bioinformatics: Sequence Analysis. COMP 571 Luay Nakhleh, Rice University Bioinformatics: Sequence Analysis COMP 571 Luay Nakhleh, Rice University Course Information Instructor: Luay Nakhleh (nakhleh@rice.edu); office hours by appointment (office: DH 3119) TA: Leo Elworth (DH

More information

Ch 12.DNA and RNA.Biology.Landis

Ch 12.DNA and RNA.Biology.Landis Identity Section 12 1 DNA (pages 287 294) This section tells about the experiments that helped scientists discover the relationship between genes and DNA. It also describes the chemical structure of the

More information

Protein Synthesis Notes

Protein Synthesis Notes Protein Synthesis Notes Protein Synthesis: Overview Transcription: synthesis of mrna under the direction of DNA. Translation: actual synthesis of a polypeptide under the direction of mrna. Transcription

More information

Griffith and Transformation (pages ) 1. What hypothesis did Griffith form from the results of his experiments?

Griffith and Transformation (pages ) 1. What hypothesis did Griffith form from the results of his experiments? Section 12 1 DNA (pages 287 294) This section tells about the experiments that helped scientists discover the relationship between genes and DNA. It also describes the chemical structure of the DNA molecule.

More information

Basic concepts of molecular biology

Basic concepts of molecular biology Basic concepts of molecular biology Gabriella Trucco Email: gabriella.trucco@unimi.it What is life made of? 1665: Robert Hooke discovered that organisms are composed of individual compartments called cells

More information

Molecular Biology. Biology Review ONE. Protein Factory. Genotype to Phenotype. From DNA to Protein. DNA à RNA à Protein. June 2016

Molecular Biology. Biology Review ONE. Protein Factory. Genotype to Phenotype. From DNA to Protein. DNA à RNA à Protein. June 2016 Molecular Biology ONE Sami Khuri Department of Computer Science San José State University Biology Review DNA RNA Proteins Central Dogma Transcription Translation Genotype to Phenotype Protein Factory DNA

More information

The Nature of Genes. The Nature of Genes. The Nature of Genes. The Nature of Genes. The Nature of Genes. The Genetic Code. Genes and How They Work

The Nature of Genes. The Nature of Genes. The Nature of Genes. The Nature of Genes. The Nature of Genes. The Genetic Code. Genes and How They Work Genes and How They Work Chapter 15 Early ideas to explain how genes work came from studying human diseases. Archibald Garrod studied alkaptonuria, 1902 Garrod recognized that the disease is inherited via

More information

From DNA to Protein. Chapter 14

From DNA to Protein. Chapter 14 From DNA to Protein Chapter 14 What do genes code for? How does DNA code for cells & bodies? How are cells and bodies made from the instructions in DNA? DNA proteins cells bodies The Central Dogma Flow

More information

MATH 5610, Computational Biology

MATH 5610, Computational Biology MATH 5610, Computational Biology Lecture 1 Intro to Molecular Biology Stephen Billups University of Colorado at Denver MATH 5610, Computational Biology p.1/14 Announcements Homework 1 due next Tuesday

More information

Textbook Reading Guidelines

Textbook Reading Guidelines Understanding Bioinformatics by Marketa Zvelebil and Jeremy Baum Last updated: May 1, 2009 Textbook Reading Guidelines Preface: Read the whole preface, and especially: For the students with Life Science

More information

Fig Ch 17: From Gene to Protein

Fig Ch 17: From Gene to Protein Fig. 17-1 Ch 17: From Gene to Protein Basic Principles of Transcription and Translation RNA is the intermediate between genes and the proteins for which they code Transcription is the synthesis of RNA

More information

Biology. Biology. Slide 1 of 39. End Show. Copyright Pearson Prentice Hall

Biology. Biology. Slide 1 of 39. End Show. Copyright Pearson Prentice Hall Biology Biology 1 of 39 12-3 RNA and Protein Synthesis 2 of 39 Essential Question What is transcription and translation and how do they take place? 3 of 39 12 3 RNA and Protein Synthesis Genes are coded

More information

Biology. Biology. Slide 1 of 39. End Show. Copyright Pearson Prentice Hall

Biology. Biology. Slide 1 of 39. End Show. Copyright Pearson Prentice Hall Biology Biology 1 of 39 12-3 RNA and Protein Synthesis 2 of 39 12 3 RNA and Protein Synthesis Genes are coded DNA instructions that control the production of proteins. Genetic messages can be decoded by

More information

Analysis of Biological Sequences SPH

Analysis of Biological Sequences SPH Analysis of Biological Sequences SPH 140.638 swheelan@jhmi.edu nuts and bolts meet Tuesdays & Thursdays, 3:30-4:50 no exam; grade derived from 3-4 homework assignments plus a final project (open book,

More information

RNA, & PROTEIN SYNTHESIS. 7 th Grade, Week 4, Day 1 Monday, July 15, 2013

RNA, & PROTEIN SYNTHESIS. 7 th Grade, Week 4, Day 1 Monday, July 15, 2013 RNA, & PROTEIN SYNTHESIS 7 th Grade, Week 4, Day 1 Monday, July 15, 2013 The Central Dogma RNA vs. DNA Ribonucleic Acid RNA is required for translation of genetic information stored in DNA into protein

More information

NUCLEIC ACID METABOLISM. Omidiwura, B.R.O

NUCLEIC ACID METABOLISM. Omidiwura, B.R.O NUCLEIC ACID METABOLISM Omidiwura, B.R.O Nucleic Acids Nucleic acids are molecules that store information for cellular growth and reproduction There are two types of nucleic acids: - deoxyribonucleic acid

More information

Key Area 1.3: Gene Expression

Key Area 1.3: Gene Expression Key Area 1.3: Gene Expression RNA There is a second type of nucleic acid in the cell, called RNA. RNA plays a vital role in the production of protein from the code in the DNA. What is gene expression?

More information

Transcription. Unit: DNA. Central Dogma. 2. Transcription converts DNA into RNA. What is a gene? What is transcription? 1/7/2016

Transcription. Unit: DNA. Central Dogma. 2. Transcription converts DNA into RNA. What is a gene? What is transcription? 1/7/2016 Warm Up Questions 1. Where is DNA located? 2. Name the 3 parts of a nucleotide. 3. Enzymes can catalyze many different reactions (T or F) 4. How many variables should you have in an experiment? 5. A red

More information

Gene Expression: Transcription, Translation, RNAs and the Genetic Code

Gene Expression: Transcription, Translation, RNAs and the Genetic Code Lecture 28-29 Gene Expression: Transcription, Translation, RNAs and the Genetic Code Central dogma of molecular biology During transcription, the information in a DNA sequence (a gene) is copied into a

More information

Protein Synthesis

Protein Synthesis HEBISD Student Expectations: Identify that RNA Is a nucleic acid with a single strand of nucleotides Contains the 5-carbon sugar ribose Contains the nitrogen bases A, G, C and U instead of T. The U is

More information

Nucleic acids deoxyribonucleic acid (DNA) ribonucleic acid (RNA) nucleotide

Nucleic acids deoxyribonucleic acid (DNA) ribonucleic acid (RNA) nucleotide Nucleic Acids Nucleic acids are molecules that store information for cellular growth and reproduction There are two types of nucleic acids: - deoxyribonucleic acid (DNA) and ribonucleic acid (RNA) These

More information

From RNA To Protein

From RNA To Protein From RNA To Protein 22-11-2016 Introduction mrna Processing heterogeneous nuclear RNA (hnrna) RNA that comprises transcripts of nuclear genes made by RNA polymerase II; it has a wide size distribution

More information

Fermentation. Lesson Overview. Lesson Overview 13.1 RNA

Fermentation. Lesson Overview. Lesson Overview 13.1 RNA 13.1 RNA THINK ABOUT IT DNA is the genetic material of cells. The sequence of nucleotide bases in the strands of DNA carries some sort of code. In order for that code to work, the cell must be able to

More information

Algorithms in Bioinformatics ONE Transcription Translation

Algorithms in Bioinformatics ONE Transcription Translation Algorithms in Bioinformatics ONE Transcription Translation Sami Khuri Department of Computer Science San José State University sami.khuri@sjsu.edu Biology Review DNA RNA Proteins Central Dogma Transcription

More information

Lecture Overview. Overview of the Genetic Information. Marieb s Human Anatomy and Physiology. Chapter 3 DNA & RNA Protein Synthesis Lecture 6

Lecture Overview. Overview of the Genetic Information. Marieb s Human Anatomy and Physiology. Chapter 3 DNA & RNA Protein Synthesis Lecture 6 Marieb s Human Anatomy and Physiology Marieb Hoehn Chapter 3 DNA & RNA Protein Synthesis Lecture 6 Lecture Overview The Genetic Information Structure of DNA/RNA DNA Replication Overview of protein synthesis

More information

RNA and PROTEIN SYNTHESIS. Chapter 13

RNA and PROTEIN SYNTHESIS. Chapter 13 RNA and PROTEIN SYNTHESIS Chapter 13 DNA Double stranded Thymine Sugar is RNA Single stranded Uracil Sugar is Ribose Deoxyribose Types of RNA 1. Messenger RNA (mrna) Carries copies of instructions from

More information

GENE EXPRESSION AT THE MOLECULAR LEVEL. Copyright (c) The McGraw-Hill Companies, Inc. Permission required for reproduction or display.

GENE EXPRESSION AT THE MOLECULAR LEVEL. Copyright (c) The McGraw-Hill Companies, Inc. Permission required for reproduction or display. GENE EXPRESSION AT THE MOLECULAR LEVEL Copyright (c) The McGraw-Hill Companies, Inc. Permission required for reproduction or display. 1 Gene expression Gene function at the level of traits Gene function

More information

Unit 1. DNA and the Genome

Unit 1. DNA and the Genome Unit 1 DNA and the Genome Gene Expression Key Area 3 Vocabulary 1: Transcription Translation Phenotype RNA (mrna, trna, rrna) Codon Anticodon Ribosome RNA polymerase RNA splicing Introns Extrons Gene Expression

More information

From Gene to Protein

From Gene to Protein 8.2 Structure of DNA From Gene to Protein deoxyribonucleic acid - (DNA) - the ultimate source of all information in a cell This information is used by the cell to produce the protein molecules which are

More information

BIO 311C Spring Lecture 36 Wednesday 28 Apr.

BIO 311C Spring Lecture 36 Wednesday 28 Apr. BIO 311C Spring 2010 1 Lecture 36 Wednesday 28 Apr. Synthesis of a Polypeptide Chain 5 direction of ribosome movement along the mrna 3 ribosome mrna NH 2 polypeptide chain direction of mrna movement through

More information

Gene Expression Transcription/Translation Protein Synthesis

Gene Expression Transcription/Translation Protein Synthesis Gene Expression Transcription/Translation Protein Synthesis 1. Describe how genetic information is transcribed into sequences of bases in RNA molecules and is finally translated into sequences of amino

More information

ENGR 213 Bioengineering Fundamentals April 25, A very coarse introduction to bioinformatics

ENGR 213 Bioengineering Fundamentals April 25, A very coarse introduction to bioinformatics A very coarse introduction to bioinformatics In this exercise, you will get a quick primer on how DNA is used to manufacture proteins. You will learn a little bit about how the building blocks of these

More information

Chapter 10: Gene Expression and Regulation

Chapter 10: Gene Expression and Regulation Chapter 10: Gene Expression and Regulation Fact 1: DNA contains information but is unable to carry out actions Fact 2: Proteins are the workhorses but contain no information THUS Information in DNA must

More information

Biology. DNA & the Language of Life

Biology. DNA & the Language of Life Biology DNA & the Language of Life Genes are Made of DNA Fredrick Griffith (1928) studied pneumonia strains (one was harmless while the other was pathogenic, or disease-causing) Made non-harmful strains

More information

Unit II Problem 3 Genetics: Summary of Basic Concepts in Molecular Biology

Unit II Problem 3 Genetics: Summary of Basic Concepts in Molecular Biology Unit II Problem 3 Genetics: Summary of Basic Concepts in Molecular Biology - The central dogma (principle) of molecular biology: Information from DNA are transcribed to mrna which will be further translated

More information

iclicker Question #28B - after lecture Shown below is a diagram of a typical eukaryotic gene which encodes a protein: start codon stop codon 2 3

iclicker Question #28B - after lecture Shown below is a diagram of a typical eukaryotic gene which encodes a protein: start codon stop codon 2 3 Bio 111 Handout for Molecular Biology 4 This handout contains: Today s iclicker Questions Information on Exam 3 Solutions Fall 2008 Exam 3 iclicker Question #28A - before lecture Which of the following

More information

PRINCIPLES OF BIOINFORMATICS

PRINCIPLES OF BIOINFORMATICS PRINCIPLES OF BIOINFORMATICS BIO540/STA569/CSI660, Fall 2010 Lecture 3 (Sep-13-2010) Primer on Molecular Biology/Genomics Igor Kuznetsov Department of Epidemiology & Biostatistics Cancer Research Center

More information

PROTEIN SYNTHESIS. Higher Level

PROTEIN SYNTHESIS. Higher Level PROTEIN SYNTHESIS Higher Level Lesson Objectives At the end of this lesson you should be able to 1. Outline the steps in protein synthesis 2. Understand DNA contains the code for protein 3. Understand

More information

MOLECULAR GENETICS PROTEIN SYNTHESIS. Molecular Genetics Activity #2 page 1

MOLECULAR GENETICS PROTEIN SYNTHESIS. Molecular Genetics Activity #2 page 1 AP BIOLOGY MOLECULAR GENETICS ACTIVITY #2 NAME DATE HOUR PROTEIN SYNTHESIS Molecular Genetics Activity #2 page 1 GENETIC CODE PROTEIN SYNTHESIS OVERVIEW Molecular Genetics Activity #2 page 2 PROTEIN SYNTHESIS

More information

3. The following sequence is destined to be translated into a protein: However, a mutation occurs that results in the molecule being altered to:

3. The following sequence is destined to be translated into a protein: However, a mutation occurs that results in the molecule being altered to: 1. Please identify the molecule below: 5 -ACTCGATTACGATACGA-3ʼ a) DNA b) mrna c) trna d) rrna e) It cannot be determined 2. If a complimentary strand of RNA were made to the molecule in question 1, what

More information

Chapter 12-3 RNA & Protein Synthesis Notes From DNA to Protein (DNA RNA Protein)

Chapter 12-3 RNA & Protein Synthesis Notes From DNA to Protein (DNA RNA Protein) Chapter 12-3 RNA & Protein Synthesis Notes From DNA to Protein (DNA RNA Protein) I. Review A. Cells copy their DNA (in S phase of Interphase)-Why? Prepare for Cell Division (Mitosis & Cytokinesis) Genes

More information

Section 10.3 Outline 10.3 How Is the Base Sequence of a Messenger RNA Molecule Translated into Protein?

Section 10.3 Outline 10.3 How Is the Base Sequence of a Messenger RNA Molecule Translated into Protein? Section 10.3 Outline 10.3 How Is the Base Sequence of a Messenger RNA Molecule Translated into Protein? Messenger RNA Carries Information for Protein Synthesis from the DNA to Ribosomes Ribosomes Consist

More information

Ch 10 Molecular Biology of the Gene

Ch 10 Molecular Biology of the Gene Ch 10 Molecular Biology of the Gene For Next Week Lab -Hand in questions from 4 and 5 by TUES in my mailbox (Biology Office) -Do questions for Lab 6 for next week -Lab practical next week Lecture Read

More information

Algorithms in Bioinformatics

Algorithms in Bioinformatics Algorithms in Bioinformatics Sami Khuri Department of Computer Science San José State University San José, California, USA khuri@cs.sjsu.edu www.cs.sjsu.edu/faculty/khuri Outline Central Dogma of Molecular

More information

DNA. Essential Question: How does the structure of the DNA molecule allow it to carry information?

DNA. Essential Question: How does the structure of the DNA molecule allow it to carry information? DNA Essential Question: How does the structure of the DNA molecule allow it to carry information? Fun Website to Explore! http://learn.genetics.utah.edu/content/molecules/ DNA History Griffith Experimented

More information

Chapter 17: From Gene to Protein

Chapter 17: From Gene to Protein Name Period Chapter 17: From Gene to Protein This is going to be a very long journey, but it is crucial to your understanding of biology. Work on this chapter a single concept at a time, and expect to

More information

C. Incorrect! Threonine is an amino acid, not a nucleotide base.

C. Incorrect! Threonine is an amino acid, not a nucleotide base. MCAT Biology - Problem Drill 05: RNA and Protein Biosynthesis Question No. 1 of 10 1. Which of the following bases are only found in RNA? Question #01 (A) Ribose. (B) Uracil. (C) Threonine. (D) Adenine.

More information

Course Information. Introduction to Algorithms in Computational Biology Lecture 1. Relations to Some Other Courses

Course Information. Introduction to Algorithms in Computational Biology Lecture 1. Relations to Some Other Courses Course Information Introduction to Algorithms in Computational Biology Lecture 1 Meetings: Lecture, by Dan Geiger: Mondays 16:30 18:30, Taub 4. Tutorial, by Ydo Wexler: Tuesdays 10:30 11:30, Taub 2. Grade:

More information

From Gene to Protein. How Genes Work (Ch. 17)

From Gene to Protein. How Genes Work (Ch. 17) From Gene to Protein How Genes Work (Ch. 17) What do genes code for? How does DNA code for cells & bodies? how are cells and bodies made from the instructions in DNA DNA proteins cells bodies The Central

More information

CHAPTER 21 LECTURE SLIDES

CHAPTER 21 LECTURE SLIDES CHAPTER 21 LECTURE SLIDES Prepared by Brenda Leady University of Toledo To run the animations you must be in Slideshow View. Use the buttons on the animation to play, pause, and turn audio/text on or off.

More information

Molecular Genetics. Before You Read. Read to Learn

Molecular Genetics. Before You Read. Read to Learn 12 Molecular Genetics section 3 DNA,, and Protein DNA codes for, which guides protein synthesis. What You ll Learn the different types of involved in transcription and translation the role of polymerase

More information

Chapter 10 - Molecular Biology of the Gene

Chapter 10 - Molecular Biology of the Gene Bio 100 - Molecular Genetics 1 A. Bacterial Transformation Chapter 10 - Molecular Biology of the Gene Researchers found that they could transfer an inherited characteristic (e.g. the ability to cause pneumonia),

More information

1. DNA, RNA structure. 2. DNA replication. 3. Transcription, translation

1. DNA, RNA structure. 2. DNA replication. 3. Transcription, translation 1. DNA, RNA structure 2. DNA replication 3. Transcription, translation DNA and RNA are polymers of nucleotides DNA is a nucleic acid, made of long chains of nucleotides Nucleotide Phosphate group Nitrogenous

More information

DNA & RNA. Chapter Twelve and Thirteen Biology One

DNA & RNA. Chapter Twelve and Thirteen Biology One DNA & RNA Chapter Twelve and Thirteen Biology One I. DNA Structure A. DNA monomers = nucleotides *1. sugar bonded to PO4 & one of four possible nitrogen bases 2. bases = Adenine, Guanine, Cytosine, Thymine

More information

O C. 5 th C. 3 rd C. the national health museum

O C. 5 th C. 3 rd C. the national health museum Elements of Molecular Biology Cells Cells is a basic unit of all living organisms. It stores all information to replicate itself Nucleus, chromosomes, genes, All living things are made of cells Prokaryote,

More information

Chapter 17 From Gene to Protein

Chapter 17 From Gene to Protein Chapter 17 From Gene to Protein Question? How does DNA control a cell? By controlling Protein Synthesis. Proteins are the link between genotype and phenotype. For tests: Name(s) of experimenters Outline

More information

Big Idea 3C Basic Review

Big Idea 3C Basic Review Big Idea 3C Basic Review 1. A gene is a. A sequence of DNA that codes for a protein. b. A sequence of amino acids that codes for a protein. c. A sequence of codons that code for nucleic acids. d. The end

More information

Adv Biology: DNA and RNA Study Guide

Adv Biology: DNA and RNA Study Guide Adv Biology: DNA and RNA Study Guide Chapter 12 Vocabulary -Notes What experiments led up to the discovery of DNA being the hereditary material? o The discovery that DNA is the genetic code involved many

More information

How to Use This Presentation

How to Use This Presentation How to Use This Presentation To View the presentation as a slideshow with effects select View on the menu bar and click on Slide Show. To advance through the presentation, click the right-arrow key or

More information

Genomics and Gene Recognition Genes and Blue Genes

Genomics and Gene Recognition Genes and Blue Genes Genomics and Gene Recognition Genes and Blue Genes November 1, 2004 Prokaryotic Gene Structure prokaryotes are simplest free-living organisms studying prokaryotes can give us a sense what is the minimum

More information

Introduction to Algorithms in Computational Biology Lecture 1

Introduction to Algorithms in Computational Biology Lecture 1 Introduction to Algorithms in Computational Biology Lecture 1 Background Readings: The first three chapters (pages 1-31) in Genetics in Medicine, Nussbaum et al., 2001. This class has been edited from

More information

Chapter 8 From DNA to Proteins. Chapter 8 From DNA to Proteins

Chapter 8 From DNA to Proteins. Chapter 8 From DNA to Proteins KEY CONCEPT Section 1 DNA was identified as the genetic material through a series of experiments. Griffith finds a transforming principle. Griffith experimented with the bacteria that cause pneumonia.

More information

Chapter 12: Molecular Biology of the Gene

Chapter 12: Molecular Biology of the Gene Biology Textbook Notes Chapter 12: Molecular Biology of the Gene p. 214-219 The Genetic Material (12.1) - Genetic Material must: 1. Be able to store information that pertains to the development, structure,

More information

Study Guide A. Answer Key

Study Guide A. Answer Key From DNA to Proteins Answer Key SECTION 1. IDENTIFYING DNA AS THE GENETIC MATERIAL 1. Mice lived 2. Mice died 3. Mice lived 4. Mice died 5. S 6. bacteria 7. DNA; DNA; DNA 8. protein 9. radioactive 10.

More information

Chapter 11. Gene Expression and Regulation. Lectures by Gregory Ahearn. University of North Florida. Copyright 2009 Pearson Education, Inc..

Chapter 11. Gene Expression and Regulation. Lectures by Gregory Ahearn. University of North Florida. Copyright 2009 Pearson Education, Inc.. Chapter 11 Gene Expression and Regulation Lectures by Gregory Ahearn University of North Florida Copyright 2009 Pearson Education, Inc.. 11.1 How Is The Information In DNA Used In A Cell? Most genes contain

More information

Annotating the Genome (H)

Annotating the Genome (H) Annotating the Genome (H) Annotation principles (H1) What is annotation? In general: annotation = explanatory note* What could be useful as an annotation of a DNA sequence? an amino acid sequence? What

More information

DNA is the MASTER PLAN. RNA is the BLUEPRINT of the Master Plan

DNA is the MASTER PLAN. RNA is the BLUEPRINT of the Master Plan Sec. 12-3 RNA and Protein Synthesis Roles of DNA and RNA DNA is the MASTER PLAN RNA is the BLUEPRINT of the Master Plan 1 RNA uses the information from DNA to make proteins Differs from DNA: 1. Ribose

More information

2. From the first paragraph in this section, find three ways in which RNA differs from DNA.

2. From the first paragraph in this section, find three ways in which RNA differs from DNA. Name Chapter 17: From Gene to Protein Begin reading at page 328 Basic Principles of Transcription and Translation. Work on this chapter a single concept at a time, and expect to spend at least 6 hours

More information

Protein Synthesis ~Biology AP~

Protein Synthesis ~Biology AP~ Protein Synthesis ~Biology AP~ A Meridian Study Guide by David Guan, Jennifer Zheng [Edited by Lei Gong] Introduction: - DNA and RNA are essential for life because they code for enzymes, which regulate

More information

PROTEIN SYNTHESIS. copyright cmassengale

PROTEIN SYNTHESIS. copyright cmassengale PROTEIN SYNTHESIS 1 DNA and Genes 2 Roles of RNA and DNA DNA is the MASTER PLAN RNA is the BLUEPRINT of the Master Plan 3 RNA Differs from DNA RNA has a sugar ribose DNA has a sugar deoxyribose 4 Other

More information

Unit IX Problem 3 Genetics: Basic Concepts in Molecular Biology

Unit IX Problem 3 Genetics: Basic Concepts in Molecular Biology Unit IX Problem 3 Genetics: Basic Concepts in Molecular Biology - The central dogma (principle) of molecular biology: Information from DNA are transcribed to mrna which will be further translated to synthesize

More information

Advanced Algorithms and Models for Computational Biology

Advanced Algorithms and Models for Computational Biology 10-810 Advanced Algorithms and Models for Computational Biology Ziv Bar-Joseph zivbj@cs.cmu.edu WeH 4107 Eric Xing epxing@cs.cmu.edu WeH 4127 http://www.cs.cmu.edu/~epxing/class/10810-06/ Topics Introduction

More information

PROTEIN SYNTHESIS. copyright cmassengale

PROTEIN SYNTHESIS. copyright cmassengale PROTEIN SYNTHESIS 1 DNA and Genes 2 Roles of RNA and DNA DNA is the MASTER PLAN RNA is the BLUEPRINT of the Master Plan 3 RNA Differs from DNA RNA has a sugar ribose DNA has a sugar deoxyribose 4 Other

More information