machine learning metabolic pathway descriptions using a
play

Machine Learning Metabolic Pathway descriptions using a - PowerPoint PPT Presentation

Machine Learning Metabolic Pathway descriptions using a Probabilistic Relational Representation Nicos Angelopoulos and Stephen Muggleton { nicos,shm } @doc.ic.ac.uk. Imperial College, London. Wye p.1 structure Structure of the talk


  1. Machine Learning Metabolic Pathway descriptions using a Probabilistic Relational Representation Nicos Angelopoulos and Stephen Muggleton { nicos,shm } @doc.ic.ac.uk. Imperial College, London. Wye – p.1

  2. structure Structure of the talk motivation (pathways, learning, relational, probabilistic) Stochastic Logic Programs parameter estimation with FAM experiments with chain probabilistic pathway experiments with branching probabilistic pathway Wye – p.2

  3. pathways Metabolic pathways represent biochemical reactions in the cell of organisms are publicly available in databases such as KEGG are cross-referenced with other data, such as gene sequences there are relationships across species due to evolution Wye – p.3

  4. aromatic amino acid C00631 C03356 YDR254W YDR254W YGL026C C00078 YHR174W YHR174W YMR323W YMR323W C00065 C00661 C00463 C00279 C00074 C00661 YGL026C YBR249C YGL026C YDR035W C00082 C00079 C00065 C00009 C00026 C00026 C04691 C03506 YGL202W YGL202W YDR127W YHR137W YHR137W YKL211C C00009 C00025 C00025 C00944 C01179 C00166 C01302 C00005 YDR127W YBR166C YNL316C YDR007W C00006 C00254 C02637 C04302 C00013 C00014 YPR060C C00022 YDR354W YDR127W YER090W C00025 C00119 YER090W C02652 C00251 YKL211C C00064 C00108 C00005 C00009 C00022 YDR127W YGL148W C00006 C00025 C00493 C01269 C00074 C00009 C00002 C03175 YDR127W YDR127W C00008 Wye – p.4

  5. machine learning Public databases are, almost by definition, incomplete and containing incorrect information. Amongst other reasons incompleteness is due to: unknown enzymes lack of interest/resources for documenting secondary pathways Machine learning can use observational data to revise augment verify metabolic pathway descriptions. Of particular interest is Wye – p.5 the use of cross-species information.

  6. relational Relational representations can express background knowledge at various levels of biological detail. The ability to incorporate existing knowledge enhances ability to learn. For instance in metabolic pathways, additional knowledge might include physical properties of substrates and products for individual reactions the existence of required co-factors and absence of blocking inhibitors the availability of similar pathway in other cells Wye – p.6

  7. probabilistic Various forms of uncertainty arise when modelling biological systems. Two main sources are: competing biological processes lack of detail in the model We consider two scenarios of extending metabolic pathways in these directions. Wye – p.7

  8. rates as probabilities A) 1.1.1.25 B) 2.7.1.71 p p A B C00493 Pathways do not take into account the rates with which enzymes consume their substrates to produce metabolites. In the case of alternative production paths for a single metabolite it is impossible to distinguish the contribution of each path. One way to model the difference in rates is by way of probabilities which captures the rates as proportions. Wye – p.8

  9. rates for probabilistic ML A) 1.1.1.25 B) 2.7.1.71 p p A B C00493 Rate constants can be used in conjuction with Michaelis-Menten equation to derive this probabilities. However databases such as Brenda record very few rate constants. ML techniques can be used to extrapolate these from experimental data. Wye – p.9

  10. lack of detail as probabilities C00005 C02652 1.1.1.25 : p C00006 C00493 Due to a number of factors, such as physical chemistry, temperature, intracellular distance etc., reactions may not happen even if substrates are present. Lack of detail in the model can then be modelled as probability on the event of the reaction happening. Wye – p.10

  11. rest of talk modelling lack-of-detail in SLPs parameter estimation with FAM experiments with chain probabilistic pathway experiments with branching probabilistic pathway conclusions Wye – p.11

  12. SLPs A stochastic logic program, is a parameterised logic program. Each clause, of a probabilistic predicate, has attached to it a parameter (or label ). Example program 1/2 :: nat( 0 ). 1/2 :: nat( s(X) ) :- nat( X ). It is normalised if the sum of the parameters for the clauses of each probabilistic predicate is equal to 1. An SLP is pure if all its predicates are parametrised. Wye – p.12

  13. FAM, Cussens (2001) Parameter estimation: estimate tuple of parameters λ = ( λ 1 , λ 2 , . . . , λ m ) when given frequency of n observations y = ( y 1 − N 1 , y 2 − N 2 , . . . , y n − N n ) which are assumed to have been generated from S according to unknown distribution p ( λ, S ,G ) . Failure Adjusted Maximisation is an EM algorithm, where adjustment is expressed in terms of failure observations. The expected frequency of a clause is: T � N k ψ λ [ ν i | y k ] + N ( Z − 1 ψ λ [ ν i | y ] = − 1) ψ λ [ ν i | fail ] (1) λ k =1 Wye – p.13

  14. fam algorithm 1. Set h = 0 and λ (0) to some estimates such that Z λ (0) > 0 2. For parameterised clause C i compute ψ λ ( h ) [ ν i | y ] using (Eq. 1). 3. Let S ( h ) be the sum of ψ λ ( h ) [ ν i ′ | y ] for all C i ′ of the i same predicate as C i . 4. If S ( h ) = 0 then l ( h +1) = l ( h ) otherwise i i i ψ λ ( h ) [ ν i | y ] l ( h 1 ) = i S i ( h ) 5. Increment h and go to 2 unless λ ( h +1) has converged. Wye – p.14

  15. implementation SLP clauses are transformed so that, identification is added to each clause probability of a derivation is returned the path of a derivation as a list of ids, is returned would-be failures simply set a flag and succeed curtail infinite or very long computations, by approximating their probability to zero Wye – p.15

  16. FAM on singular SLPs Although FAM has been introduced for pure SLPs we applied it to a slightly more general class. Singular SLPs allow for impure/mixed SLPs in as far as that all derivations of a specific goal map to distinct stochastic path. A stochastic path is a sequence of the used probabilistic clauses. Wye – p.16

  17. probabilistic pathways C00005 C02652 C00005 C02652 1.1.1.25 1.1.1.25 : p C00006 C00493 C00006 C00493 (a) (b) enzyme( ’1.1.1.25’, rea_1_1_1_25, [c00005,c02652], [c00006,c00493] ). 0.80 :: rea_1_1_1_25( yes, yes, yes, yes ). 0.20 :: rea_1_1_1_25( yes, yes, no, no ). (c) Semantics of the attached probability are : “Given the inputs are present, the reaction will happen with probability p .” Probability is attached to the reaction not to the enzyme. Wye – p.17

  18. assumptions We have made two major simplifying assumptions reactions deplete their inputs each reaction is only considered, at most, once Wye – p.18

  19. simulation We run simulated experiments in order to obtain estimates on required learning data-size observe behaviour of FAM Wye – p.19

  20. PE scenario Our experiments observe the following pattern : an SLP with n true parameters λ = � λ 1 , λ 2 , . . . , λ n � is used to sample T samples sampling goal is can _ produce (+ Substrates, − Metabolites ) parameters replaced by uniformly distributed ones use FAM to obtain ¯ λ = � ¯ λ 1 , ¯ λ 2 , . . . , ¯ λ n � Wye – p.20

  21. chain pathway We have added direction and mock probabilities to the aromatic amino acid pathway and run the following two sets of experiments. S l t S u t S i t I t x t x x x x a 1 10 100 1000 100 2 20 110 1010 100 b 1 5 100 3300 400 2 10 110 3310 400 Wye – p.21

  22. measures FAM to observe two values accuracy, root mean square for parameters � �� N � p ( x,t,i,j ) ) 2 � j =1 ( p j − ¯ � R t i x = � n and taking mean and sdv over t raw execution times for runtimes Wye – p.22

  23. chain plots 0.26 chain_a_10 chain_a_10 chain_c_10 4000 chain_c_10 0.24 3500 runtimes in milliseconds 3000 0.22 rms(p) 2500 0.2 2000 0.18 1500 0.16 0 200 400 600 800 1000 1200 0 200 400 600 800 1000 1200 learning data size learning data size Wye – p.23

  24. branching To compare the effect of secondary paths we, artificially, extended the pathway with an alternative path of length five, near the top of the graph. The secondary path only fires when there is a failure in the primary path. Wye – p.24

  25. artificial pathway C00631 C03356 4.2.1.20 4.2.1.11 4.2.1.11 C00078 C00065 C00661 C00463 C00008 C00279 C00074 C00661 4.2.1.20 4.2.1.20 2.7.1.40 4.1.2.15 C00022 C00065 C00009 C00082 C00079 C00022 C00025 C04691 C00026 C00026 C03506 C00108 4.1.3.27 4.6.1.3 2.6.1.7 2.6.1.7 4.1.1.48 C00009 C00025 C00025 C00014 C00064 C00944 C01179 C00166 C01302 C00251 C00009 C00005 4.6.1.4 4.2.1.10 1.3.1.13 4.2.1.51 5.3.1.24 C00006 C01269 C00254 C02637 C04302 C00013 C00009 5.4.99.5 2.4.2.18 2.5.1.19 X C00014 or C00064 C00119 C00074 C03175 C02652 C00251 4.1.3.27 C00008 C00108 C00005 C00009 C00022 2.7.1.71 1.1.1.25 4.6.1.4 C00006 C00025 C00493 C00002 C01269 C00074 C00009 C00002 C03175 2.7.1.71 2.5.1.19 C00008 Wye – p.25

  26. comparative plots chain_a_10_rms chain_a_10_rtm branch_a_10_rms branch_a_10_rtm 0.3 200000 0.28 0.26 runtimes in milliseconds 150000 0.24 rms(p) 0.22 100000 0.2 0.18 50000 0.16 0 0.14 0 200 400 600 800 1000 0 200 400 600 800 1000 learning data size learning data size Wye – p.26

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