Biol375 2018: Difference between revisions
imported>Weigang |
imported>Weigang |
||
Line 131: | Line 131: | ||
* 11/15 (TH). '''Midterm Exam 3''' | * 11/15 (TH). '''Midterm Exam 3''' | ||
===Part 4. | ===Part 4. Mechanisms of molecular evolution (Chapter 2) === | ||
* 11/19 (M). Mechanism of molecular evolution: Overview (pages 35-38); In-class exercise: SNP statistics | * 11/19 (M). Mechanism of molecular evolution: Overview (pages 35-38); In-class exercise: SNP statistics | ||
* 11/26 (M). Rates of nucleotide substitutions (pages 111-125).Neutral Theory & Molecular Clock (pages 58-59; 72-74) | * 11/26 (M). Rates of nucleotide substitutions (pages 111-125). Neutral Theory & Molecular Clock (pages 58-59; 72-74) | ||
{| class="wikitable sortable mw-collapsible" | |||
|- style="background-color:lightsteelblue;" | |||
! Assignment #7 (10 pts). Due 11/6 (Monday) | |||
|- style="background-color:white;" | |||
| | |||
# [Do NOT use computer for this part] Compare [[Datafile|these two Ebola VP30 sequences]], one from the 2014 outbreak and the other from the 1994 outbreak. | |||
## Calculate the proportion of difference (''p'') between the two sequences | |||
## Calculate Jukes-Cantor distance (''d'') between the two sequences (specify unit) | |||
## Count the number of transitions and transversions (arrange in a table, as we did in the class) | |||
## Identify the number of synonymous and nonysynonymous substitutions | |||
## Assuming that the total number of synonymous sites S=174 and the total number of nonsynonymous sites N=690, calculate <i>K<sub>S</sub> and K<sub>A</sub></i> (with Jukes-Cantor correction) | |||
# [Computer Exercise] Calculate & compare genetic distances among the primate mitochondria sequences using R-Studio | |||
## Make sure you have a file "Mt_primate.txt" in your working directory (e.g., "/Users/john/Documents") [Note: Refer back to Assignment #3 if you couldn't locate the file.] | |||
## Load library: library(ape) | |||
## Read alignment: mt = read.FASTA("Mt_primate.txt") | |||
## Calculate raw distance: mt.raw = dist.dna(mt, model = "raw") | |||
## Apply Juke-Cantor (one-parameter model) correction: mt.jc = dist.dna(mt, model = "JC") | |||
## Apply Kimura(two-parameter model, for Ts and Tv) correction: mt.k80 = dist.dna(mt, model = "K80") | |||
## Plot JC distance vs the raw distance: plot(mt.raw, mt.jc, xlab = "uncorrected distance (diff/site)", ylab = "corrected distance (sub/site)", xlim = c(0,0.4), ylim = c(0,0.5), las =1) | |||
## Add a 1:1 line: abline(0,1, col = "red") | |||
## Add K80 distances: points(mt.raw, mt.k80, pch = 3, col = "blue") | |||
## Add a legend: legend(0.05, 0.45, legend = c("JC (1-parameter)", "K80 (2-parameter)"), pch = c(1,3), col = c("black","blue"), bty = "n") | |||
## Export an PDF and print a copy | |||
## Use the graph to explain (1) Why it is necessary to correct for raw distances when comparing sequences from distantly related species; (2) What is the key difference between the K80 and JC models | |||
|} | |||
* 11/29 (TH). Ka/Ks test of natural selection (pg 116-124). In-class exercise | * 11/29 (TH). Ka/Ks test of natural selection (pg 116-124). In-class exercise | ||
* 12/3 (M). Genetic Drift (pages 47-49). In-class exercise: Simulation using R | * 12/3 (M). Genetic Drift (pages 47-49). In-class exercise: Simulation using R |
Revision as of 15:27, 20 November 2018
Course Description
Molecular evolution is the study of the change of DNA and protein sequences through time. Theories and techniques of molecular evolution are widely used in species classification, biodiversity studies, comparative genomics, and molecular epidemiology. Contents of the course include:
- Population genetics, which is a theoretical framework for understanding mechanisms of sequence evolution through mutation, recombination, gene duplication, genetic drift, and natural selection.
- Molecular systematics, which introduces statistical models of sequence evolution and methods for reconstructing species phylogeny.
- Bioinformatics, which provides hands-on training on data acquisition and the use of software tools for phylogenetic analyses.
This 3-credit course is designed for upper-level biology-major undergraduates. Hunter pre-requisites are BIOL203, and MATH150 or STAT113.
Please note that starting from fall 2015, completing this course no longer counts towards research credits for biology majors.
Textbooks
- (Required) Graur, 2016, Molecular and Genome Evolution, First Edition, Sinauer Associates, Inc. ISBN: 978-1-60535-469-9. Publisher's Website (Student discount: a 15% discount and receive free UPS standard shipping)
http://www.sinauer.com/molecular-and-genome-evolution.html)
- (Recommended) Baum & Smith, 2013. Tree Thinking: an Introduction to Phylogenetic Biology, Roberts & Company Publishers, Inc.
Learning Goals
- Be able to describe evolutionary relationships using phylogenetic trees
- Be able to use web-based as well as stand-alone software to infer phylogenetic trees
- Understand mechanisms of DNA sequence evolution
- Understand algorithms for building phylogenetic trees
Links for phylogenetic tools
- NCBI sequence databases
- R Tools
- R source: download & install from a mirror site
- R Studio: download & install
- APE package
- A Molecular Phylogeny Web Server
- EvolView: an online tree viewer
Exams & Grading
- Bonus for full attendance & active participation in classroom discussions.
- Assignments. All assignments should be handed in as hard copies only. Email submission will not be accepted. Late submissions will receive 10% deduction (of the total grade) per day.
- Three Mid-term Exams (30 pts each)
- Comprehensive Final Exam (50 pts)
Academic Honesty
While students may work in groups and help each other for assignments, duplicated answers in assignments will be flagged and investigated as possible acts of academic dishonesty. To avoid being investigated as such, do NOT copy anyone else's work, or let others copy your work. At the least, rephrase using your own words. Note that the same rule applies regarding the use of textbook and online resources: copied sentences are not acceptable and will be considered plagiarism.
Hunter College regards acts of academic dishonesty (e.g., plagiarism, cheating on examinations, obtaining unfair advantage, and falsification of records and official documents) as serious offenses against the values of intellectual honesty. The College is committed to enforcing the CUNY Policy on Academic Integrity and will pursue cases of academic dishonesty according to the Hunter College Academic Integrity Procedures.
Course Schedule
Part 1. Tree Thinking
- 8/27 (M). Overview & Introduction. Textbook Chapter: "Introduction" (pages 1-3)
Assignment 1 (10 pts; Due next class 8/30) |
---|
|
- 8/30 (TH). Introduction (Continued).
- Go over pre-test questions
- Tutorial: R & R-Studio (Bring your own computer).
Assignment 2 (5 pts; Due: next session) |
---|
R exercises
|
- 9/5 (Wed; Monday Schedule). Intro to trees.
- In-class exercise 1. (5 pts; Due next session)
- Introductory slide:
- 9/6 (TH). Intro to trees.
- In-class exercise 2. (5 pts; Due next session)
- Textbook Chapter 5: "Molecular Phylogenetics" (pages 170-175; 201-202)
- 9/13 (TH). Species Tree & Lineage Sorting.
- Textbook Chapter 5: "Molecular Phylogenetics" (pages 177-180).
- 9/17 (M). Consensus Tree & Review.
- Chapter 5. pages 199-200 (Figure 5.31)
- In-class exercise 3. (5 pts, due next session)
- Lecture Slides:
- 9/20 (Th). 4:10 - 5:10pm Midterm Exam I Bring pencils, erasers, and a calculator
Part 2. analysis of Trait Evolution
- 9/24 (M). Traits & trait matrix
- Textbook Chapter 5, pages 180-183
Assignment #3 (5 pts; Due next session) |
---|
Watch Origin of Species: Lizards in an Evolutionary Tree. Provide short answer (1-3 sentences) to each of the following three questions.
|
- 9/27 (TH). Homoplasy & consistency
Assignment #4 (5 pts; Due next session) |
---|
|
- 10/1 (M). Parsimony reconstruction (Chapter 5).
- Textbook Chapter 5, pages 188-191
- 10/4 (TH). Parsimony reconstruction (Continued)
- In-Class Exercise 4 (Due next session)
- 10/11 (TH). Genome & gene structure (Chapter 3)
- 10/15 (M). Review & Practices. Lecture Slides:
- In-Class Exercise 5. Pretest Part 2 (molecular phylogenetics in forensics)
- 10/18 (TH). Midterm Exam 2
Part 3. Tree Algorithms
- 10/22 (M). BLAST & Alignments (Chapter 3. pages 93-100). In-class exercise: Run BLAST; show alignment & explain E-value
- 10/25 (TH). Genetic distances & Sequence-evolutionary models (Chapter 3, pages 79-88). In-class exercise: Poisson simulation & explain
* 10/29 (Mon). No class (instructor traveling)
- 11/1 (TH). Maximum parsimony (Chapter 5, pages 191-194). In-class exercise: parsimony scores
- 11/5 (M). Distance methods (Chapter 5, pages 184-187). In class exercise: use APE package to calculate genetic distances
- 11/8 (TH). Likelihood & Bayesian methods; Tree Testing (Chapter 5, pages 194-198).
- 11/12 (M). Review (Chapter 5, pages 207-209). Review exercises. Lecture slides:
- 11/15 (TH). Midterm Exam 3
Part 4. Mechanisms of molecular evolution (Chapter 2)
- 11/19 (M). Mechanism of molecular evolution: Overview (pages 35-38); In-class exercise: SNP statistics
- 11/26 (M). Rates of nucleotide substitutions (pages 111-125). Neutral Theory & Molecular Clock (pages 58-59; 72-74)
Assignment #7 (10 pts). Due 11/6 (Monday) |
---|
|
- 11/29 (TH). Ka/Ks test of natural selection (pg 116-124). In-class exercise
- 12/3 (M). Genetic Drift (pages 47-49). In-class exercise: Simulation using R
- 12/6 (TH) Gene frequency analysis
- 12/11 (M). (Last Lecture) Review & Course evaluations. In-class exercise.
- Submit your Teacher's Evaluation, using either:
- Personal computer at www.hunter.cuny.edu/te; or,
- Smartphone at www.hunter.cuny.edu/mobilete
- 12/17 (Monday, 4-6pm) Comprehensive Final Exam