plot.MSThermResult: Plot MSThermResult object.

Description Usage Arguments Value Examples

View source: R/plot.R

Description

Generate a denaturation plot for an modeled protein/group.

Usage

1
2
3
## S3 method for class 'MSThermResult'
plot(x, table = T, col, CI.points = T, CI.Tm = T,
  ...)

Arguments

x

An MSThermResult object

table

(T/f) include table of per-replicate parameters

col

array of colors used to plot samples

CI.points

(T/F) plot temperature point confidence intervals

CI.Tm

(T/F) plot Tm confidence intervals

...

other parameters passed through to plot()

Value

Nothing

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
control <- system.file("extdata", "demo_project/control.tsv", package="mstherm")
annots  <- system.file("extdata", "demo_project/annots.tsv",  package="mstherm")
expt    <- MSThermExperiment(control, annotations=annots)
expt    <- normalize_to_std(expt, "cRAP_ALBU_BOVIN", plot=FALSE)
res     <- model_experiment(expt, bootstrap=FALSE, np=2)

# plot single MSThermResult
plot(res$P38707)

# plot all proteins (e.g. to pdf device, one-per-page)
plot(res)

mstherm documentation built on May 2, 2019, 9:31 a.m.