Skip to content

Commit

Permalink
Update material for CompBiol course
Browse files Browse the repository at this point in the history
  • Loading branch information
mblumuga committed Oct 2, 2017
1 parent a781a4e commit 0c0a087
Show file tree
Hide file tree
Showing 9 changed files with 289 additions and 0 deletions.
Binary file added Sujet_Mblum_masterMSIAM_20172018.pdf
Binary file not shown.
Binary file added Washington_case.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added agglo_clustering.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
13 changes: 13 additions & 0 deletions gitcompbiol.Rproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
Version: 1.0

RestoreWorkspace: Default
SaveWorkspace: Default
AlwaysSaveHistory: Default

EnableCodeIndexing: Yes
UseSpacesForTab: Yes
NumSpacesForTab: 2
Encoding: UTF-8

RnwWeave: Sweave
LaTeX: pdfLaTeX
72 changes: 72 additions & 0 deletions intro_ComBiol_20172018.Rmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
---
title: "Computational Biology"
author: "[email protected]"
date: "`r Sys.Date()`"
output:
ioslides_presentation:
css: style.css
---


```{r setup, include=FALSE}
knitr::opts_chunk$set(fig.align="center",echo = TRUE)
options(Encoding="UTF-8")
```

## Schedule
###First part of the course ([email protected]) is about how to build phylogenetic trees based on DNA sequences. You will have to work, not me!

- October 3, 09h45-12h45, D208: Introduction and mathematical computations
- October 10, 09h45-12h45, E300: Mathematical computations, practical in R, and report writing
- October 17, 09h45-12h45, E300: Practical in R, and report writing
- October 20: Deadline to submit your report


###Second part of the course (Olivier François)

## An example of Phylogeny: Hominidae
```{r, echo=FALSE,out.width = "500px"}
knitr::include_graphics("tree_primates.jpg")
```

## A second example of phylogeny: US criminal case: State of Washington v Anthony Eugene Whitfield
```{r, echo=FALSE,out.width = "400px"}
knitr::include_graphics("Washington_case.jpg")
```

## A third example of phylogeny: Tracking SARS back to its source
```{r, echo=FALSE,out.width = "800px"}
knitr::include_graphics("sars.jpg")
```

***
### There are different methods to reconstruct phylogeny.
- Distance-based methods (this course).
- Parcimonious approach (old school).
- Maximum likelihood (computer intensive).

###What are you going to learn about data science (methods) if you are moderately interested in phylogeny.
- Agglomerative hierarchical clustering: how to make clusters.
- Bootstrap methods: how to evaluate uncertainty.

##Agglomerative hierarchical clustering
```{r, echo=FALSE,out.width = "800px"}
knitr::include_graphics("agglo_clustering.jpg")
```

##Hierarchical clustering

###Cluster dissimilarity
A measure of dissimilarity between sets of observations (Euclidean distance,…).

###Linkage criteria
Distance between sets of observations as a function of the pairwise distances between observations (see [Wikipedia webpage about Hierarchical hierarchical clustering](https://en.wikipedia.org/wiki/Hierarchical_clustering) for examples).

##What are you going to learn about data science (software) if you are moderately interested in phylogeny.
- How to use [R](https://cran.r-project.org/).
- How to use [RStudio](https://www.rstudio.com/).
- Perform dynamic reporting with [R Markdown](http://rmarkdown.rstudio.com/) documents.

This presentation has been written in .Rmd.


198 changes: 198 additions & 0 deletions intro_ComBiol_20172018.html

Large diffs are not rendered by default.

Binary file added sars.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 6 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
pre {
width: 100%; /* 106%; */
left: 0; /* -60px; */
padding: 10px 15px 10px 15px; /* 10px 0 10px 60px; */
border-radius: 10px;
}
Binary file added tree_primates.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 0c0a087

Please sign in to comment.