dataProcessPlotsTMTPTM: Visualization for explanatory data analysis - TMT experiment

Description Usage Arguments Value Examples

View source: R/dataProcessPlotsTMTPTM.R

Description

To illustrate the quantitative data and quality control of MS runs, dataProcessPlotsTMT takes the quantitative data from MSstatsTMT converter functions as input and generate two types of figures in pdf files as output : (1) profile plot (specify "ProfilePlot" in option type), to identify the potential sources of variation for each protein; (2) quality control plot (specify "QCPlot" in option type), to evaluate the systematic bias between MS runs.

Usage

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
dataProcessPlotsTMTPTM(
  data.ptm,
  data.protein,
  data.ptm.summarization,
  data.protein.summarization,
  type,
  ylimUp = FALSE,
  ylimDown = FALSE,
  x.axis.size = 10,
  y.axis.size = 10,
  text.size = 4,
  text.angle = 90,
  legend.size = 7,
  dot.size.profile = 2,
  ncol.guide = 5,
  width = 10,
  height = 12,
  which.Protein = "all",
  originalPlot = TRUE,
  summaryPlot = TRUE,
  address = ""
)

Arguments

data.ptm

name of the data with PTM sites in protein name, which can be the output of MSstatsTMT converter functions.

data.protein

name of the data with peptide level, which can be the output of MSstatsTMT converter functions.

data.ptm.summarization

name of the data with ptm sites in protein-level name, which can be the output of the MSstatsTMT proteinSummarization function.

data.protein.summarization

name of the data with protein-level, which can be the output of the MSstatsTMT proteinSummarization function.

type

choice of visualization. "ProfilePlot" represents profile plot of log intensities across MS runs. "QCPlot" represents box plots of log intensities across channels and MS runs.

ylimUp

upper limit for y-axis in the log scale. FALSE(Default) for Profile Plot and QC Plot uses the upper limit as rounded off maximum of log2(intensities) after normalization + 3..

ylimDown

lower limit for y-axis in the log scale. FALSE(Default) for Profile Plot and QC Plot uses 0..

x.axis.size

size of x-axis labeling for "Run" and "channel in Profile Plot and QC Plot.

y.axis.size

size of y-axis labels. Default is 10.

text.size

size of labels represented each condition at the top of Profile plot and QC plot. Default is 4.

text.angle

angle of labels represented each condition at the top of Profile plot and QC plot. Default is 0.

legend.size

size of legend above Profile plot. Default is 7.

dot.size.profile

size of dots in Profile plot. Default is 2.

ncol.guide

number of columns for legends at the top of plot. Default is 5.

width

width of the saved pdf file. Default is 10.

height

height of the saved pdf file. Default is 10.

which.Protein

Protein list to draw plots. List can be names of Proteins or order numbers of Proteins. Default is "all", which generates all plots for each protein. For QC plot, "allonly" will generate one QC plot with all proteins.

originalPlot

TRUE(default) draws original profile plots, without normalization.

summaryPlot

TRUE(default) draws profile plots with protein summarization for each channel and MS run.

address

the name of folder that will store the results. Default folder is the current working directory. The other assigned folder has to be existed under the current working directory. An output pdf file is automatically created with the default name of "ProfilePlot.pdf" or "QCplot.pdf". The command address can help to specify where to store the file as well as how to modify the beginning of the file name. If address=FALSE, plot will be not saved as pdf file but showed in window.

Value

plot or pdf

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
data(raw.ptm)
data(raw.protein)
data(quant.msstats.ptm)
data(quant.msstats.protein)

## Profile plot
dataProcessPlotsTMTPTM(data.ptm=raw.ptm,
                   data.protein=raw.protein,
                   data.ptm.summarization=quant.msstats.ptm,
                   data.protein.summarization=quant.msstats.protein,
                   which.Protein = 1,
                   type='ProfilePlot',
                   address=FALSE)

MSstatsTMTPTM documentation built on Feb. 18, 2021, 2 a.m.