CSCE555 Bioinformatics Lecture 3 Gene Finding Meeting: MW 4:00PM-5:15PM SWGN2A21 Instructor: Dr. Jianjun Hu Course page:

Slides:



Advertisements
Similar presentations
Chapter 10 How proteins are made.
Advertisements

Do Now:.  TRANSCRIPTION: process that makes an RNA copy of DNA.  RNA is single-stranded, and T is replaced by U (A-U; G-C)  RNA polymerase makes RNA,
RNA and Protein Synthesis
Chapter 13: RNA and Protein Synthesis
RNA and Protein Synthesis
Chapter 4 Transcription and Translation. The Central Dogma.
Gene Expression Overview
Regulation of Gene Expression. Questions? How can cells with different functions have the exact same DNA in their nucleus? How does the body use the exact.
What was the most interesting thing that you did over Winter Break? Create a double bubble map comparing/contrasting DNA and RNA.
RNA and Protein Synthesis
Finding prokaryotic genes and non intronic eukaryotic genes
How Proteins are Made. I. Decoding the Information in DNA A. Gene – sequence of DNA nucleotides within section of a chromosome that contain instructions.
DNA translations/ protein synthesis
Chapter 13.2 (Pgs ): Ribosomes and Protein Synthesis
Transcription Transcription is the synthesis of mRNA from a section of DNA. Transcription of a gene starts from a region of DNA known as the promoter.
13.1 RNA.
Transcription and Translation
Gene Expression. What is Gene Expression?  Expression can be defined as: –Shown –Manifested –Articulated We can determine a person’s genes by what is.
RNA and Protein Synthesis
VII RNA and Protein Synthesis
RNA Structure and Transcription Mrs. MacWilliams Academic Biology.
Chapter 13.1 and 13.2 RNA, Ribosomes, and Protein Synthesis
RNA. ________ are coded DNA instructions that control the ___________ of proteins. Genetic ______________ can be decoded by copying part of the ___________.
By: Anne Russell, Madelyn Stroder, Hannah Black, And Bailey Mills.
National 5 Biology Course Notes Part 4 : DNA and production of
12-3 RNA and Protein Synthesis
Protein Synthesis How’d you do? Nucleus Part of the cell containing DNA and RNA and responsible for growth and reproduction. In eukaryotic cells, the.
12-3 RNA AND PROTEIN SYNTHESIS. 1. THE STRUCTURE OF RNA.
GENETICS UNIT FIVE DAY 1. OPENER If you did your Spring Break Genetics Review HW, take it out and raise your hand in the NEXT 30 SECONDS.
DNA and Translation Gene: section of DNA that creates a specific protein Approx 25,000 human genes Proteins are used to build cells and tissue Protein.
Nucleic Acids Comparing DNA and RNA. Both are made of nucleotides that contain  5-carbon sugar,  a phosphate group,  nitrogenous base.
Gene Expression. Remember, every cell in your body contains the exact same DNA… …so why does a muscle cell have different structure and function than.
DNA RNA Cell Membrane - Protection, transporters, sensors Nucleus - Information (the genes) THE CELL.
Chapter 17.1 & 17.2 Process from Gene to Protein.
Finding genes in the genome
Starter What do you know about DNA and gene expression?
The Central Dogma of Molecular Biology DNA  RNA  Protein  Trait.
RNA and Protein Synthesis Chapter How are proteins made? In molecular terms, genes are coded DNA instructions that control the production of.
Placed on the same page as your notes Warm-up pg. 48 Complete the complementary strand of DNA A T G A C G A C T Diagram 1 A T G A C G A C T T A A C T G.
Regulating Gene Expression To accompany “Regulating Gene Expression” Packet -review packet reading, pictures, and questions.
From Genes to Proteins. Transcription in prokaryotes Simple process No nucleus; ribosomes lie close to the DNA in cytoplasm 1 st part of the mRNA attaches.
12-3 RNA and Protein Synthesis Page 300. A. Introduction 1. Chromosomes are a threadlike structure of nucleic acids and protein found in the nucleus of.
bacteria and eukaryotes
RNA and Protein Synthesis
Transcription Translation
13.3 RNA & Gene Expression I. An Overview of Gene _____________ A. RNA
From DNA to Proteins Transcription.
13.3 RNA & Gene Expression I. An Overview of Gene Expression A. RNA
Chapter 10 How Proteins are Made.
Gene Expression: from DNA to protein
The making of proteins for …..
RNA and Protein Synthesis
RNA and Protein Synthesis
Protein Synthesis.
Transcription & Translation.
Synthetic Biology: Protein Synthesis
How Proteins are Made.
Protein Synthesis Lecture 5
Gene Expression I pp
Central Dogma Central Dogma categorized by: DNA Replication Transcription Translation From that, we find the flow of.
Gene Expression Activation of a gene to transcribe DNA into RNA.
13.1: RNA & Transcription.
RNA and Protein Synthesis
Transcription/ Translation Notes 16-17
Structure of the Genome
From gene to protein.
Protein Synthesis.
Section 13.2 Protein Synthesis.
Protein Synthesis.
Presentation transcript:

CSCE555 Bioinformatics Lecture 3 Gene Finding Meeting: MW 4:00PM-5:15PM SWGN2A21 Instructor: Dr. Jianjun Hu Course page: University of South Carolina Department of Computer Science and Engineering

Roadmap Transcription and Translation Structure and Organization of Genes Gene Finding in genomes of Prokaryotic organisms Introduction to Sequence Alignment Summary 4/22/20152

How to Do Great Bioinformatics? You need to understand biology You need to understand the NEEDS of biologists You know how to identify the key problems in biology that become addressable today

Transcription & Translation Prokaryotic Cells Eukaryotic Cells

Transcription Process: RNA Polymerase

Translation: How Ribosome Synthesizes Proteins Ribosomes manufacture proteins based on mRNA instructions. Each ribosome reads mRNA, recruits tRNA molecules to fetch amino acids, and assembles the amino acids in the proper order. Genetic Code

Gene Structure of Prokaryotic Cells TAA TGA TAG

Genes in Eukaryotic Cells

Pre-mRNA Splicing Process

1  M Alternative Splicing Gene Info: 1) A DNA sequence coding for the pre-mRNA 2) An additional DNA code or other regulating process, which regulates the alternative splicing.

Core Promoter Structure

Roadmap Transcription and Translation Structure and Organization of Genes Gene Finding in genomes of Prokaryotic organisms Introduction to Sequence Alignment Summary 4/22/201513

How to Find Genes TAA TGA TAG ATG

Gene-Finding Algorithm Input: DNA sequences, a threshold gene length K Output: All possible ORF sequences Procedure: Scan each of 3 ORFs, and find subsequence that start with ATG and end with one of (TAA, TAG, TGA) Repeat above for the complementary sequences also

Risk of the Simple Gene Finding Algorithm The identified ORFs may arise just from randomness. How likely is it for an ORF to be a result of random sequences? Significance of an ORF to be Gene: ◦ We expect the likelihood of ORF being result of random sequences to be less than p.

Calculating p 3 out of 64 are stopping condons P( run of k non-stop condons)=(61/64)^k (61/64)^62=0.051 Setting k=64 (62+1 ATG+ 1 StopCondon) will make sure the identified ORFs are less likely to be out of random permutation.

Permutation Test/Randomization Test A generic method to estimate significance level (p value) Example: how likely that a 10-condon ORF is result of random permutation? Method: ◦ Randomly generate (or permute given sequences) 10,000 sequences ◦ Draw a histogram of seq lengths of sequences that have a stop-condon (Null distribution) ◦ Calculate the percentage of random ORFs that have lengths >=10.

Estimating cut-off K for gene finding algorithm Exact theoretical calculation: sensitive to the assumptions, equal probability of condons, etc Randomized test: do a permutation test, find a length k such that <5% of random ORFs have lengths greater than k.

Sequence Alignment: the Problem Given two sequences, measure their similarity ATAACTTTAATTAA ATCCTTTTACTAAA

Web Tool to Align Two Sequences

Applications of Sequence Alignment Prediction of functions of (gene/protein/promoters)  homology Database search ◦ Find similar sequences that are similar to our query sequence (e.g. new gene) Gene finding by genome comparison Sequence divergence/phylogeny Sequence Assembly

Summary Transcription, Translation Gene structures of Prokaryotic and Eukaryotic cells Finding genes (ORFs) for prokaryotic cells Sequence alignment applications