Package reaction

Examples of reaction.Reaction


   
  }
 
  public Reaction getTranscriptionRxn()
  {
    Reaction ret = new Reaction();
   
    // POL + TEMPLATE
    ret.addReactant(cell, POL, 1, 1);
    ret.addReactant(cell, TEMPLATE, 1, 1);
   
    // ---> POL + TEMPLATE + Nt
    ret.addProduct(cell, POL, (1 - alphaLtNt), tNt);
    ret.addProduct(cell, POL, alphaLtNt, tPOLt);
    ret.addProduct(cell, TEMPLATE, 1, polDelay);
    ret.addProduct(cell, Nt, 1, tNt);
    ret.addProduct(cell, POLt, alphaLtNt, tPOLt);
   
    // K
    ret.setk(1258 * 1000 * kReplication);
   
    return ret;
  }
View Full Code Here


    return ret;
  }
 
  public Reaction getNtRxn()
  {
    Reaction ret = new Reaction();
   
    // POL + TEMPLATE
    ret.addReactant(cell, RIB, 1, 1);
    ret.addReactant(cell, Nt, 1, 1);
   
    // ---> POL + TEMPLATE + Nt
    ret.addProduct(cell, RIB, 1, tNp);
    ret.addProduct(cell, Nt, 1, ribDelay);
    ret.addProduct(cell, N, 1, tNp);
   
    // K
    ret.setk(kTranslation);
   
    return ret;
  }
View Full Code Here

    return ret;
  }
 
  public Reaction getPOLtRxn()
  {
    Reaction ret = new Reaction();
   
    // POL + TEMPLATE
    ret.addReactant(cell, RIB, 1, 1);
    ret.addReactant(cell, POLt, 1, 1);
   
    // ---> POL + TEMPLATE + Nt
    ret.addProduct(cell, RIB, 1, tPOLp);
    ret.addProduct(cell, POLt, 1, ribDelay);
    ret.addProduct(cell, POL, 1, tPOLp);
   
    // K
    ret.setk(kTranslation);
   
    return ret;
  }
View Full Code Here

    return ret;
  }
 
  public Reaction getTemplateRxn()
  {
    Reaction ret = new Reaction();
   
    // POL + TEMPLATE
    ret.addReactant(cell, POL, 1, 1);
    ret.addReactant(cell, TEMPLATE, 1, 1);
    ret.addReactant(cell, N, 1258, 1);
   
    // ---> POL + TEMPLATE + NmRNA
    ret.addProduct(cell, POL, 1, tPOLt);
    ret.addProduct(cell, TEMPLATE, 1, polDelay);
    ret.addProduct(cell, rTEMPLATE, 1, tPOLt);
   
    // K
    ret.setk(kReplication);
   
    return ret;
  }
View Full Code Here

    return ret;
  }
 
  public Reaction getrTemplateRxn()
  {
    Reaction ret = new Reaction();
   
    // POL + TEMPLATE
    ret.addReactant(cell, POL, 1, 1);
    ret.addReactant(cell, rTEMPLATE, 1, 1);
    ret.addReactant(cell, N, 1258, 1);
   
    // ---> POL + TEMPLATE + NmRNA
    ret.addProduct(cell, POL, 1, tPOLt);
    ret.addProduct(cell, rTEMPLATE, 1, polDelay);
    ret.addProduct(cell, TEMPLATE, 1, tPOLt);
   
    // K
    ret.setk(kReplication);
   
    return ret;
  }
View Full Code Here

TOP

Related Classes of reaction.Reaction

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.