Difference between revisions of "Tutorial"

From Transsyswiki
Jump to navigationJump to search
(Created page with '== Basics == === transsys Programs === Gene regulatory networks (GRNs) are specified by '''transsys programs'''. A transsys program consists of the keyword <code>transsys</code…')
 
Line 3: Line 3:
 
=== transsys Programs ===
 
=== transsys Programs ===
  
Gene regulatory networks (GRNs) are specified by '''transsys programs'''. A transsys program consists of the keyword <code>transsys</code>, followed by a name and a '''block'' containing the actual GRN specification. The block contains '''factor declarations''' and '''gene declarations''', as described below. The block may be empty. A minimal, empty transsys program is
+
Gene regulatory networks (GRNs) are specified by <b>transsys programs</b>. A transsys program consists of the keyword <code>transsys</code>, followed by a name and a '''block''' containing the actual GRN specification. The block contains '''factor declarations''' and '''gene declarations''', as described below. The block may be empty. A minimal, empty transsys program is
  
 
   transsys containsnothing
 
   transsys containsnothing
Line 10: Line 10:
  
 
Here, the program's name is "<code>containsnothing</code>".
 
Here, the program's name is "<code>containsnothing</code>".
 
  
 
=== Factor Declarations ===
 
=== Factor Declarations ===

Revision as of 10:27, 7 July 2010

Basics

transsys Programs

Gene regulatory networks (GRNs) are specified by transsys programs. A transsys program consists of the keyword transsys, followed by a name and a block containing the actual GRN specification. The block contains factor declarations and gene declarations, as described below. The block may be empty. A minimal, empty transsys program is

 transsys containsnothing
 {
 }

Here, the program's name is "containsnothing".

Factor Declarations

Gene Declarations

Introductory Example

The following is a transsys program comprised of one factor, firstfactor and one gene, called firstgene, which encodes that factor:

 transsys firstexample
 {
   factor firstfactor
   {
     decay: 0.1;
     diffusibility: 1.0;
   }
 
   gene firstgene
   {
     promoter
     {
       constitutive: 0.2;
     }
     product
     {
       default: firstfactor;
     }
   }
 }

You can see a demo of this here