User:Vincent Rouilly/Computational Biology With R: Difference between revisions

From OpenWetWare
Jump to navigationJump to search
(New page: =Computational Biology with R= ==Tutorials== ===Running SBML models in R=== # Install '''SBMLR''' package ## Start R, and enter: ## source("http://bioconductor.org/biocLite.R") ## biocLi...)
 
Line 4: Line 4:


===Running SBML models in R===
===Running SBML models in R===
# Install '''SBMLR''' package
# Install '''[http://www.bioconductor.org/packages/bioc/html/SBMLR.html SBMLR]''' package
## Start R, and enter:
## Start R, and enter:
## source("http://bioconductor.org/biocLite.R")
## > source("http://bioconductor.org/biocLite.R")
## biocLite("SBMLR")
## > biocLite("SBMLR")
# Dowload this SBML file that describes a simple Enzymatic reaction with Michaelis-Menten reaction
# Load library 'SBMLR' in R by typing:
# ...
## > library("SBMLR")
#

Revision as of 08:50, 10 December 2009

Computational Biology with R

Tutorials

Running SBML models in R

  1. Install SBMLR package
    1. Start R, and enter:
    2. > source("http://bioconductor.org/biocLite.R")
    3. > biocLite("SBMLR")
  2. Load library 'SBMLR' in R by typing:
    1. > library("SBMLR")