Can anybody help me in writing the basic code using phoenix for simulating xenograft model for covalent inhibition?
For this kind of model, we can use indirect model including Ksyn and Kdeg to simulate the biomarker itself. Bt the covalent compound that inhibit the target protein is also associated Kon/Koff those are related to occupany and Kinact and Ki those are associated with the activity of inhibition, the finaly the Kout of the effect such as tumor size.
Could someone help to provide the code for this complex and challenging case?
I think that you should send the differential equations that represent your mode. Then I can help you with the implementation. It is too vague to just describe your system as you did.
Thank you for your reply. Here are the differential eqations that represent my case. The initial estimates may not fit this case well. Just want to know whether the DE that I created make sense for this kind of model.
Many thanks
Jian
#PK
deriv(Aa = - Ka * Aa)
deriv(A1 = Ka * Aa - Cl * C)
inhibition effect of drug on target enzyme E via a reversible occupancy (Kd =Koff/Kon)and covalent inhibition (Kinact
deriv(Inh=KinactE0(C/((koff/kon+C))
Inhibition response (R), such as the size of tumor size
Thank you very much for the feedback. Attached are the proposed mechanism based model for this case and a paper on covalent enzyme inhibition. Following your concern, I am trying to convert the product KinactE0 to KinactE. In that case, should I add the DE deriv(E= Ksyn-KdegE) and sequence{E= Ksyn/Kdeg}? Don’t how to link it with the reversible binding and covalent inhibition equation. It would be highly appreciated if you could kindly share your thoughts and experience about coding for a such complex case. Looking forward to your reply.