Created
December 2, 2013 20:03
-
-
Save ericminikel/7757326 to your computer and use it in GitHub Desktop.
What percent of maximum inhibition will be achieved after 1, 5, or 6 days for assay readouts if we inhibit PrP transcription?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
########### what percent of possible degradation is achieved by 1 day, 5 days and 6 days? | |
maxint = .Machine$integer.max # longest possible time in future to model | |
# transcription inhibition | |
r = l0 * 0.50 # | |
l = l0 * 1.00 # | |
a = m0 * 1.00 | |
m = m0 * 1.00 | |
b = v0 * 1.00 | |
v = v0 * 1.00 | |
# percent of maximum inhibition achived after various time periods | |
(1 - prpc(1*24))/(1-prpc(maxint)) # .76 | |
(1 - prpsc(5*24))/(1-prpsc(maxint)) # .90 | |
(1 - prpsc(6*24))/(1-prpsc(maxint)) # .94 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment