mining co expression networks
play

Mining co-expression networks Nathalie Villa-Vialaneix - PowerPoint PPT Presentation

Overview on co-expression network analysis Case study 1 Case study 2 References Mining co-expression networks Nathalie Villa-Vialaneix http://www.nathalievilla.org INRA, Unit MIA-T, INRA, Toulouse (France) School for advanced sciences of


  1. Overview on co-expression network analysis Case study 1 Case study 2 References Mining co-expression networks Nathalie Villa-Vialaneix http://www.nathalievilla.org INRA, Unité MIA-T, INRA, Toulouse (France) School for advanced sciences of Luchon Network analysis and applications NV 2 | Mining co-expression networks 1/32

  2. Overview on co-expression network analysis Case study 1 Case study 2 References Outline Overview on co-expression network analysis 1 Case study 1: gene network analysis in relations with meat 2 quality Case study 2: gene network analysis in LCD experiment 3 NV 2 | Mining co-expression networks 2/32

  3. Overview on co-expression network analysis Case study 1 Case study 2 References Outline Overview on co-expression network analysis 1 Case study 1: gene network analysis in relations with meat 2 quality Case study 2: gene network analysis in LCD experiment 3 NV 2 | Mining co-expression networks 3/32

  4. Overview on co-expression network analysis Case study 1 Case study 2 References Transcriptomic data DNA transcripted into mRNA to produce proteins NV 2 | Mining co-expression networks 4/32

  5. Overview on co-expression network analysis Case study 1 Case study 2 References Transcriptomic data transcriptomic data: measure of the quantity of mRNA corresponding to a given gene in given cells (blood, muscle...) of a living organism DNA transcripted into mRNA to produce proteins NV 2 | Mining co-expression networks 4/32

  6. Overview on co-expression network analysis Case study 1 Case study 2 References Systems biology Some genes’ expressions activate or repress other genes’ expressions ⇒ understanding the whole cascade helps to comprehend the global functioning of living organisms 1 1 Picture taken from: Abdollahi A et al. , PNAS 2007, 104 :12890-12895. c � 2007 by National Academy of Sciences NV 2 | Mining co-expression networks 5/32

  7. Overview on co-expression network analysis Case study 1 Case study 2 References Standard issues in network analysis Inference Giving expression data, how to build a graph whose edges represent the direct links between genes? Example: co-expression networks built from microarray/RNAseq data (nodes = genes; edges = significant “direct links” between expressions of two genes) NV 2 | Mining co-expression networks 6/32

  8. Overview on co-expression network analysis Case study 1 Case study 2 References Standard issues in network analysis Inference Giving expression data, how to build a graph whose edges represent the direct links between genes? Graph mining (examples) Network visualization: nodes are not a priori given a position. 1 Positions aiming at representing connected Random positions nodes closer NV 2 | Mining co-expression networks 6/32

  9. Overview on co-expression network analysis Case study 1 Case study 2 References Standard issues in network analysis Inference Giving expression data, how to build a graph whose edges represent the direct links between genes? Graph mining (examples) Network visualization: nodes are not a priori given a position. 1 Important node extraction (high degree, high centrality...) 2 NV 2 | Mining co-expression networks 6/32

  10. Overview on co-expression network analysis Case study 1 Case study 2 References Standard issues in network analysis Inference Giving expression data, how to build a graph whose edges represent the direct links between genes? Graph mining (examples) Network visualization: nodes are not a priori given a position. 1 Important node extraction (high degree, high centrality...) 2 3 Network clustering: identify “communities” NV 2 | Mining co-expression networks 6/32

  11. Overview on co-expression network analysis Case study 1 Case study 2 References Network inference Data: large scale gene expression data       . . . . . .          individuals     X j  X =   . . . . .        n ≃ 30 / 50 i     . . . . . . � ������������������������������ �� ������������������������������ � variables (genes expression) , p ≃ 10 3 / 4 What we want to obtain: a graph/network with nodes: genes (a selected sublist of interest 2 ; usually, DE genes); edges: “strong relations” between gene expressions. 2 See [Verzelen, 2012] for conditions on respective n / p suited for inference. NV 2 | Mining co-expression networks 7/32

  12. Overview on co-expression network analysis Case study 1 Case study 2 References Advantages of this network model over raw data: focuses on the strongest direct relationships: 1 irrelevant or indirect relations are removed (more robust) and the data are easier to visualize and understand (track transcription relations). NV 2 | Mining co-expression networks 8/32

  13. Overview on co-expression network analysis Case study 1 Case study 2 References Advantages of this network model over raw data: focuses on the strongest direct relationships: 1 irrelevant or indirect relations are removed (more robust) and the data are easier to visualize and understand (track transcription relations). Expression data are analyzed all together and not by pairs (systems model). NV 2 | Mining co-expression networks 8/32

  14. Overview on co-expression network analysis Case study 1 Case study 2 References Advantages of this network model over raw data: focuses on the strongest direct relationships: 1 irrelevant or indirect relations are removed (more robust) and the data are easier to visualize and understand (track transcription relations). Expression data are analyzed all together and not by pairs (systems model). over bibliographic network: can handle interactions with yet 2 unknown (not annotated) genes and deal with data collected in a particular condition. NV 2 | Mining co-expression networks 8/32

  15. Overview on co-expression network analysis Case study 1 Case study 2 References Using correlations : relevance network [Butte and Kohane, 1999, Butte and Kohane, 2000] First (naive) approach: calculate correlations between expressions for all pairs of genes, threshold the smallest ones and build the network. Thresholding Graph Correlations NV 2 | Mining co-expression networks 9/32

  16. Overview on co-expression network analysis Case study 1 Case study 2 References Using partial correlations x y z strong indirect correlation NV 2 | Mining co-expression networks 10/32

  17. Overview on co-expression network analysis Case study 1 Case study 2 References Using partial correlations x y z strong indirect correlation set.seed(2807); x <- rnorm(100) y <- 2*x+1+rnorm(100,0,0.1); cor(x,y) [1] 0.998826 z <- 2*x+1+rnorm(100,0,0.1); cor(x,z) [1] 0.998751 cor(y,z) [1] 0.9971105 NV 2 | Mining co-expression networks 10/32

  18. Overview on co-expression network analysis Case study 1 Case study 2 References Using partial correlations x y z strong indirect correlation set.seed(2807); x <- rnorm(100) y <- 2*x+1+rnorm(100,0,0.1); cor(x,y) [1] 0.998826 z <- 2*x+1+rnorm(100,0,0.1); cor(x,z) [1] 0.998751 cor(y,z) [1] 0.9971105 ♯ Partial correlation cor(lm(x ∼ z)$residuals,lm(y ∼ z)$residuals) [1] 0.7801174 cor(lm(x ∼ y)$residuals,lm(z ∼ y)$residuals) [1] 0.7639094 cor(lm(y ∼ x)$residuals,lm(z ∼ x)$residuals) [1] -0.1933699 NV 2 | Mining co-expression networks 10/32

  19. Overview on co-expression network analysis Case study 1 Case study 2 References Partial correlation and GGM Gaussian Graphical Model framework: ( X i ) i = 1 ,..., n are i.i.d. Gaussian random variables N ( 0 , Σ) (gene expression); then � � j ←→ j ′ (genes j and j ′ are linked) ⇔ C or X j , X j ′ | ( X k ) k � j , j ′ � 0 NV 2 | Mining co-expression networks 11/32

  20. Overview on co-expression network analysis Case study 1 Case study 2 References Partial correlation and GGM Gaussian Graphical Model framework: ( X i ) i = 1 ,..., n are i.i.d. Gaussian random variables N ( 0 , Σ) (gene expression); then � � j ←→ j ′ (genes j and j ′ are linked) ⇔ C or X j , X j ′ | ( X k ) k � j , j ′ � 0 If (concentration matrix) S = Σ − 1 , � � S jj ′ X j , X j ′ | ( X k ) k � j , j ′ = − � C or S jj S j ′ j ′ ⇒ Estimate Σ − 1 to unravel the graph structure NV 2 | Mining co-expression networks 11/32

  21. Overview on co-expression network analysis Case study 1 Case study 2 References Partial correlation and GGM Gaussian Graphical Model framework: ( X i ) i = 1 ,..., n are i.i.d. Gaussian random variables N ( 0 , Σ) (gene expression); then � � j ←→ j ′ (genes j and j ′ are linked) ⇔ C or X j , X j ′ | ( X k ) k � j , j ′ � 0 If (concentration matrix) S = Σ − 1 , � � S jj ′ X j , X j ′ | ( X k ) k � j , j ′ = − � C or S jj S j ′ j ′ ⇒ Estimate Σ − 1 to unravel the graph structure Σ n ) − 1 is a poor Problem: Σ : p -dimensional matrix and n ≪ p ⇒ ( � estimate of S )! NV 2 | Mining co-expression networks 11/32

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend