Package reaction

Examples of reaction.Reaction.addReactant()


  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);
View Full Code Here


  {
    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);
View Full Code Here

  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);
View Full Code Here

  {
    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);
View Full Code Here

  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);
View Full Code Here

  {
    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);
View Full Code Here

  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);
View Full Code Here

  {
    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);
View Full Code Here

    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);
View Full Code Here

  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);
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.