Description Usage Arguments Details Value References See Also Examples
Produces Woods' plot based on theoretical or experimental HDX-MS data.
1 2 3 4 5 6 7 | woods_plot(
calc_dat,
theoretical = FALSE,
relative = TRUE,
confidence_limit = 0.98,
confidence_limit_2 = 0.99
)
|
calc_dat |
data as imported by the |
theoretical |
|
relative |
|
confidence_limit |
confidence limit. |
confidence_limit_2 |
confidence limit 2. |
...
This is the first version - multi-state calculations are not supported.
a ggplot
object.
Woods, V.L., and Hamuro, Y. (2001). High resolution, high-throughput amide deuterium exchange-mass spectrometry (DXMS) determination of protein binding site structure and dynamics: utility in pharmaceutical design. J. Cell. Biochem. Suppl. Suppl 37, 89–98.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | # load example data
dat <- read_hdx(system.file(package = "HaDeX",
"HaDeX/data/KD_180110_CD160_HVEM.csv"))
# prepare dataset for states `CD160` and `CD160_HVEM`
# in given time parameters
calc_dat <- prepare_dataset(dat,
in_state_first = "CD160_0.001",
chosen_state_first = "CD160_1",
out_state_first = "CD160_1440",
in_state_second = "CD160_HVEM_0.001",
chosen_state_second = "CD160_HVEM_1",
out_state_second = "CD160_HVEM_1440")
# plot Woods plot - theoretical & relative
woods_plot(calc_dat = calc_dat,
theoretical = TRUE,
relative = TRUE,
confidence_limit = 0.98,
confidence_limit_2 = 0.99)
# plot Woods plot - experimental & relative
woods_plot(calc_dat = calc_dat,
theoretical = FALSE,
relative = TRUE,
confidence_limit = 0.98,
confidence_limit_2 = 0.99)
# plot Woods plot - theoretical & absolute
woods_plot(calc_dat = calc_dat,
theoretical = TRUE,
relative = FALSE,
confidence_limit = 0.98,
confidence_limit_2 = 0.99)
# plot Woods plot - experimental & absolute
woods_plot(calc_dat = calc_dat,
theoretical = FALSE,
relative = FALSE,
confidence_limit = 0.98,
confidence_limit_2 = 0.99)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.