Synbio course

From CSBLwiki

Revision as of 07:54, 29 October 2010 by Igchoi (Talk | contribs)
Jump to: navigation, search

Contents

2010 Fall LMB904

Practices in R

Practice #1

library(odesolve)
# Michaelis-menten equation
# E + S <-> ES -> E + P
#      k1,k2   k3
# rate equations
# dE = -k1*E*S+k2*ES
# dS = -k1*E*S+k2*ES+k3*ES
# dES = k1*E*S-k2*ES-k3*ES
# v= dp/dt = k3*E0*S/(S+(k2+k3)/k1)
# E0 = E + ES
# initial parameter
k1 = 1e3
k2 = 1
k3 = 0.05
E0 = 0.5e-3
parms = c(k1,k2,k3)
# ode

Practice #2

Error fetching PMID 10681449:
  1. Error fetching PMID 10681449: [LAM]

Practice #3

Error fetching PMID 10659857:
  1. Error fetching PMID 10659857: [TOG]
Personal tools
Namespaces
Variants
Actions
Site
Choi lab
Resources
Toolbox