Practical Bioinformatics Mark Voorhies 5/21/2019 Mark Voorhies - - PowerPoint PPT Presentation

practical bioinformatics
SMART_READER_LITE
LIVE PREVIEW

Practical Bioinformatics Mark Voorhies 5/21/2019 Mark Voorhies - - PowerPoint PPT Presentation

Practical Bioinformatics Mark Voorhies 5/21/2019 Mark Voorhies Practical Bioinformatics Change of Coordinates http://xkcd.com/123/ Mark Voorhies Practical Bioinformatics Principal Components Analysis (PCA) Is there a point of view that


slide-1
SLIDE 1

Practical Bioinformatics

Mark Voorhies 5/21/2019

Mark Voorhies Practical Bioinformatics

slide-2
SLIDE 2

Change of Coordinates

http://xkcd.com/123/ Mark Voorhies Practical Bioinformatics

slide-3
SLIDE 3

Principal Components Analysis (PCA)

Is there a point of view that makes our data easier to look at?

Mark Voorhies Practical Bioinformatics

slide-4
SLIDE 4

x′ = ax + by + cz y′ = dx + ey + fz z′ = gx + hy + iz   x′ y′ z′   =   a b c d e f g h i     x y z  

Mark Voorhies Practical Bioinformatics

slide-5
SLIDE 5

Principal Components Analysis (PCA)

Is there a point of view that makes our data easier to look at?

Mark Voorhies Practical Bioinformatics

slide-6
SLIDE 6

Principal Components Analysis (PCA)

Is there a point of view that makes our data easier to look at? Implemented as Singular Value Decomposition (SVD) after centering (covariance PCA) and, possibly, scaling (correlation PCA)

Mark Voorhies Practical Bioinformatics

slide-7
SLIDE 7

Correlations among more than two samples

Y X

Mark Voorhies Practical Bioinformatics

slide-8
SLIDE 8

Correlations among more than two samples

Y X Y X

Mark Voorhies Practical Bioinformatics

slide-9
SLIDE 9

Correlations among more than two samples

Y X Y X Y X Z

Mark Voorhies Practical Bioinformatics

slide-10
SLIDE 10

Correlations among more than two samples

Y X Y X Y X Z Y X Z

Mark Voorhies Practical Bioinformatics

slide-11
SLIDE 11

Homework: Dictionaries

1 Write a function to return the antisense strand of a DNA

sequence in 3’→5’ orientation.

2 Write a function to return the complement of a DNA

sequence in 5’→3’ orientation.

3 Write a function to translate a DNA sequence Mark Voorhies Practical Bioinformatics