}
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;
}