--
You received this message because you are subscribed to the Google Groups "cobra pie" group.
To unsubscribe from this group and stop receiving emails from it, send an email to cobra-pie+...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/cobra-pie/8453bd62-1c1b-4adc-a2d1-e06490db3899n%40googlegroups.com.
R_EX_3php: 3php_e -> (exchange reaction)
R_3php_cross_om_transport: 3php_e -> 3php_p (extracellular to periplasm)
R_3php_cross_im_transport: 3php_p + h_p -> 3php_c + h_c (periplasm)


Hi Matthias and Moritz,Sorry, I should have mention my objective for better understanding. My purpose of adding the exchange reaction 3php , is to predict model growth upon addition of exogenous metabolite. Thus, 3php should be an exchange reaction.My project aim is to predict changes in objective growth when 3php is added as an external source of metabolite.Is the 'dummy transport' suit for my case?Regards,
Karen
--
You received this message because you are subscribed to a topic in the Google Groups "cobra pie" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/cobra-pie/Vg-6qU-AsBI/unsubscribe.
To unsubscribe from this group and all its topics, send an email to cobra-pie+...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/cobra-pie/5bca9dad-df49-43d1-8788-2b4d98496a06n%40googlegroups.com.

R_3php_cross_om_transport: 3php_e -> 3php_p (transport via diffusion extracellular to periplasm)
R_3php_cross_im_transport: 3php_p + h_p -> 3php_c + h_c (periplasm)
@property
def medium(self):
def is_active(reaction):
"""Determine if a boundary reaction permits flux towards creating
metabolites
"""
return (bool(reaction.products) and (reaction.upper_bound > 0)) or (
bool(reaction.reactants) and (reaction.lower_bound < 0)
)
def get_active_bound(reaction):
"""For an active boundary reaction, return the relevant bound"""
if reaction.reactants:
return -reaction.lower_bound
elif reaction.products:
return reaction.upper_bound
return {
rxn.id: get_active_bound(rxn) for rxn in self.exchanges if is_active(rxn)
}
To view this discussion on the web visit https://groups.google.com/d/msgid/cobra-pie/b1b21c2d-30c3-4e0e-b814-b0fce82654bdn%40googlegroups.com.

--
You received this message because you are subscribed to a topic in the Google Groups "cobra pie" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/cobra-pie/Vg-6qU-AsBI/unsubscribe.
To unsubscribe from this group and all its topics, send an email to cobra-pie+...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/cobra-pie/e5ba650b-d377-4b4a-8e6c-f134db83a214n%40googlegroups.com.