Skip to content

Commit 5fa2ce5

Browse files
author
Laurent Gatto
committed
Merge branch 'master' into local-hedgehog
git-svn-id: file:///home/git/bioc-data.hedgehog.fhcrc.org/trunk/experiment/pkgs/RforProteomics@2972 db2202da-8704-0410-b924-b125b3cd84ef
1 parent 9297d1e commit 5fa2ce5

22 files changed

+1495
-75
lines changed

.Rbuildignore

+2
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,7 @@ vignettes/vigsrc/cache
66
vignettes/vigsrc/F063721.dat-mztab.txt
77
vignettes/vigsrc/P00924.fasta
88
vignettes/vigsrc/TMT_Erwinia_1uLSike_Top10HCD_isol2_45stepped_60min_01.mzXML
9+
vignettes/vigsrc/PXD000001_mztab.txt
10+
vignettes/vigsrc/RforProteomics-stub.Rnw
911
.gitignore
1012
README.md

.gitignore

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
11
IMPORTANT
22
sandbox/
33
vignettes/Bioc2013_poster.pdf
4-
vignettes/Bioc2014Workshop/
54
vignettes/RforProteomics.pdf
5+
vignettes/RProtVis.html
66
vignettes/vigsrc/F063721.dat-mztab.txt
77
vignettes/vigsrc/P00924.fasta
88
vignettes/vigsrc/PXD000001_mztab.txt
99
vignettes/vigsrc/TMT_Erwinia_1uLSike_Top10HCD_isol2_45stepped_60min_01.mzXML
1010
vignettes/vigsrc/cache/
1111
vignettes/vigsrc/figure/
1212

13+
vignettes/cache
14+
vignettes/figure
15+
vignettes/TMT_Erwinia_1uLSike_Top10HCD_isol2_45stepped_60min_01.mzXML

DESCRIPTION

+21-16
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,32 @@
11
Package: RforProteomics
22
Type: Package
3-
Title: Companion package to the 'Using R and Bioconductor for proteomics data analysis' publication
4-
Version: 1.3.1
3+
Title: Companion package to the 'Using R and Bioconductor for
4+
proteomics data analysis' publication
5+
Version: 1.3.2
56
Authors@R: c(person("Laurent", "Gatto", role=c("aut", "cre"),
67
78
person("Sebastian", "Gibb", role="ctb",
89
910
Maintainer: Laurent Gatto <[email protected]>
10-
Imports: R.utils, Biobase, rpx, biocViews, interactiveDisplay,
11-
BiocInstaller
12-
Suggests: mzR, MSnbase, xcms, msdata, isobar, MALDIquant,
13-
MALDIquantForeign, readBrukerFlexData, rTANDEM, synapter,
14-
synapterdata, IPPD, Rdisop, OrgMassSpecR, BRAIN, rols, hpar,
15-
GO.db, org.Hs.eg.db, biomaRt, RColorBrewer, ggplot2,
16-
reshape2, knitr, xtable
11+
Depends: MSnbase
12+
Imports: R.utils, Biobase, rpx, biocViews, BiocInstaller,
13+
interactiveDisplay, shiny
14+
Suggests: mzR, xcms, msdata, isobar, MALDIquant (>= 1.11),
15+
MALDIquantForeign, readBrukerFlexData, rTANDEM, synapter,
16+
synapterdata, IPPD, Rdisop, OrgMassSpecR, BRAIN, rols, hpar,
17+
GO.db, org.Hs.eg.db, biomaRt, RColorBrewer, ggplot2, reshape2,
18+
knitr, xtable
1719
Enhances: cleaver
18-
Description: This package contains code to illustrate the
19-
'Using R and Bioconductor for proteomics data analysis'
20-
manuscript. The vignette describes the code and data
21-
needed to reproduce the examples and figures descibed
22-
in the paper as well as functions to download the
23-
PXD000001 data files.
20+
Description: This package contains code to illustrate the 'Using R and
21+
Bioconductor for proteomics data analysis' paper. Two
22+
vignettes describe the code and data needed to reproduce
23+
the examples and figures descibed in the paper and
24+
functionality for proteomics visualisation.
2425
URL: http://lgatto.github.com/RforProteomics/
25-
biocViews: ExperimentData, MassSpectrometry, Proteomics, MassSpectrometryData
26+
biocViews: ExperimentData, MassSpectrometry, Proteomics,
27+
MassSpectrometryData
2628
License: Artistic-2.0
2729
VignetteBuilder: knitr
30+
Packaged: 2014-08-12 08:21:42 UTC; lg390
31+
Author: Laurent Gatto [aut, cre],
32+
Sebastian Gibb [ctb]

NAMESPACE

+12-5
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,25 @@
1-
importFrom("Biobase", "addVigs2WinMenu")
2-
importFrom("interactiveDisplay", "display")
3-
importFrom("BiocInstaller", "biocVersion")
4-
import("R.utils")
51
import("biocViews")
62
import("rpx")
3+
import("shiny")
4+
import("MSnbase")
5+
6+
importFrom("Biobase", "addVigs2WinMenu")
7+
importFrom("BiocInstaller", "biocVersion")
8+
importFrom("R.utils", "gunzip")
9+
importFrom("interactiveDisplay", "display")
10+
11+
712

813
export(getPXD000001mzXML,
914
getPXD000001mzTab,
1015
getPXD000001mzData,
1116
getThermoHelaPRTC,
1217
downloadData,
1318
RforProteomics,
19+
ProtViz,
1420
proteomicsPackages,
1521
massSpectrometryPackages,
1622
massSpectrometryDataPackages,
17-
display)
23+
display,
24+
shinyMA)
1825

NEWS

+10-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
1+
CHANGES IN VERSION 1.3.2
2+
------------------------
3+
o RforProteomics wiki on github [2014-08-02 Sat]
4+
o Proteomics viz vignette [2014-08-06 Wed]
5+
o shinyMA function [2014-08-07 Thu]
6+
o fix PXD000001 PRIDE urls [2014-08-08 Fri]
7+
o add protViz CRAN package to vig [2014-08-09 Sat]
8+
o RProtVis vignette needs MALDIquant >= 1.11 now [2014-08-11 Mon]
9+
110
CHANGES IN VERSION 1.3.1
2-
-------------------------
11+
------------------------
312
o get biocView packages as a function [2014-07-23 Wed]
413
o various typos and updates in vignette [2014-07-23 Wed]
514
o functions to get packages for a biocView [2014-07-23 Wed]

R/PXD000001.R

+3-3
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ getPXD000001mzXML <- function(destdir = ".") {
8484
msg = paste0("Please use the rpx package to download data ",
8585
"from the ProteomeXchaneg repository."))
8686
## src <- "http://proteome.sysbiol.cam.ac.uk/lgatto/RforProteomics/TMT_Erwinia_1uLSike_Top10HCD_isol2_45stepped_60min_01.mzXML.gz"
87-
src2 <- "ftp://ftp.pride.ebi.ac.uk/2012/03/PXD000001/TMT_Erwinia_1uLSike_Top10HCD_isol2_45stepped_60min_01.mzXML"
87+
src2 <- "ftp://ftp.pride.ebi.ac.uk/pride/data/archive/2012/03/PXD000001/TMT_Erwinia_1uLSike_Top10HCD_isol2_45stepped_60min_01.mzXML"
8888
downloadData(src2, destdir, FALSE)
8989
}
9090

@@ -102,7 +102,7 @@ getPXD000001mzTab <- function(destdir = ".") {
102102
package = "rpx",
103103
msg = paste0("Please use the rpx package to download data ",
104104
"from the ProteomeXchaneg repository."))
105-
src <- "ftp://ftp.pride.ebi.ac.uk/2012/03/PXD000001/F063721.dat-mztab.txt"
105+
src <- "ftp://ftp.pride.ebi.ac.uk/pride/data/archive/2012/03/PXD000001/F063721.dat-mztab.txt"
106106
downloadData(src, destdir, FALSE)
107107
}
108108

@@ -120,7 +120,7 @@ getPXD000001mzData <- function(destdir = ".") {
120120
package = "rpx",
121121
msg = paste0("Please use the rpx package to download data ",
122122
"from the ProteomeXchaneg repository."))
123-
src <- "ftp://ftp.pride.ebi.ac.uk/2012/03/PXD000001/PRIDE_Exp_Complete_Ac_22134.xml.gz"
123+
src <- "ftp://ftp.pride.ebi.ac.uk/pride/data/archive/2012/03/PXD000001/PRIDE_Exp_Complete_Ac_22134.xml.gz"
124124
downloadData(src, destdir, TRUE)
125125
}
126126

R/r4prot.R

+11-4
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,20 @@
11
##' Opens the package vignettes.
22
##'
3-
##' @title Opens RforProteomics vignettes
4-
##' @return An instance of class \code{vignette},
5-
##' as returned by \code{\link{vignette}}
3+
##' @title Opens the RforProteomics vignette
4+
##' @return An instance of class \code{vignette}. Used for its side
5+
##' effect, opening the vignette.
66
##' @author Laurent Gatto
77
RforProteomics <- function()
88
vignette("RforProteomics", package = "RforProteomics")
99

10-
10+
##' Opens the visualisation vignette
11+
##'
12+
##' @title Opens the visualisation vignette
13+
##' @return An instance of class \code{vignette}. Used for its side
14+
##' effect, opening the vignette.
15+
##' @author Laurent Gatto
16+
ProtViz <- function()
17+
vignette("ProtViz", package = "RforProteomics")
1118

1219
##' Finds the package names that have a specific biocView.
1320
##'

R/shinyMA.R

+64
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
shinyMA <- function() {
2+
qnt <- NULL
3+
data(qnt, envir = environment())
4+
findClosest <- function(input) {
5+
if (is.null(input$plotma_click)) {
6+
1
7+
} else {
8+
pt <- c(input$plotma_click$x, y=input$plotma_click$y)
9+
sqdists <- colMeans((t(fData(qnt)[, c("baseMean", "log2FC")]) - pt)^2)
10+
which.min(sqdists)
11+
}
12+
}
13+
14+
app <- list(
15+
ui = fluidPage(
16+
titlePanel("MA-plot + expression plot with shiny"),
17+
18+
## flow layout fills out left to right then down
19+
flowLayout(
20+
plotOutput("plotma", clickId="plotma_click", width=400, height=400),
21+
plotOutput("plotcounts", width=400, height=400)
22+
)
23+
),
24+
25+
server = function(input, output) {
26+
## MA-plot
27+
output$plotma <- renderPlot({
28+
## process possible input
29+
idx <- findClosest( input )
30+
par(mar = c(5,5,3,2), cex.lab = 1.5)
31+
## MA-plot of all genes
32+
plot(fData(qnt)$baseMean, fData(qnt)$log2FC,
33+
xlab = "A", ylab = "M")
34+
grid()
35+
abline(v = 0)
36+
## add circle for the selected point
37+
points(fData(qnt)$baseMean[idx],
38+
fData(qnt)$log2FC[idx],
39+
col="dodgerblue", cex=3, lwd=3)
40+
})
41+
42+
## counts plot
43+
output$plotcounts <- renderPlot({
44+
## process possible input
45+
idx <- findClosest( input )
46+
par(mar = c(5,5,3,2), cex.lab = 1.5)
47+
## plot the counts for the selected gene
48+
i <- exprs(qnt)[idx, ]
49+
plot(1:6, i,
50+
col = c("red", "steelblue")[as.numeric(qnt$conditions)],
51+
pch = 19,
52+
main = paste0(fData(qnt)$accession[idx],
53+
" (", fData(qnt)$sequence[idx], ")"),
54+
xlab = "samples",
55+
ylab = "intensity")
56+
abline(h = mean(i[qnt$conditions == "A"]),
57+
col = "red", lty = "dotted")
58+
abline(h = mean(i[qnt$conditions == "B"]),
59+
col = "steelblue", lty = "dotted")
60+
})
61+
}
62+
)
63+
runApp(app)
64+
}

R/zzz.R

+9-6
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
11
.onAttach <- function(libname, pkgname) {
2-
packageStartupMessage(paste0("This is the 'RforProteomics' version ",
3-
utils::packageVersion("RforProteomics"), ".\n",
4-
"Run 'RforProteomics()' in R or visit \n",
5-
"'http://lgatto.github.com/RforProteomics/' to get started.\n\n",
6-
sep=""))
7-
addVigs2WinMenu("synapter")
2+
packageStartupMessage(paste0("\nThis is the 'RforProteomics' version ",
3+
utils::packageVersion("RforProteomics"), ".\n\n",
4+
" To get started, visit\n",
5+
" http://lgatto.github.com/RforProteomics/\n\n",
6+
" or, in R, open package vignettes by typing\n",
7+
" RforProteomics() # R/Bioc for proteomics overview\n",
8+
" ProtViz() # R/Bioc for proteomics visualisation\n\n"))
9+
10+
addVigs2WinMenu("RforProteomics")
811
}
912

README.md

+25-14
Original file line numberDiff line numberDiff line change
@@ -22,37 +22,48 @@ interaction between computational biologists working in the field of
2222
proteomics, in particular by facilitating interoperability between
2323
their software. The
2424
[rbioc-sig-proteomics](https://groups.google.com/forum/#!forum/rbioc-sig-proteomics)
25-
group has tentatively been set up to provide an question and
26-
discussion forum for interested parties. Do not hesitate to
25+
group has tentatively been set up to provide a forum for questions and
26+
discussion for interested parties. Do not hesitate to
2727
[get in touch](http://proteome.sysbiol.cam.ac.uk/lgatto/) for
28-
questions, comments or further suggestions.
28+
questions, comments or further suggestions. Note taking about
29+
plans/ideas/direction for R/Bioc and proteomics can be contributed to
30+
the
31+
[`RforProteomics` wiki](https://github.com/lgatto/RforProteomics/wiki).
2932

3033
## Data and vignette
3134

32-
The package also distributes a set of function to access data from the
33-
[ProteomeXchange](http://www.proteomexchange.org/)
35+
The package uses the dataset
3436
[`PXD000001`](http://proteomecentral.proteomexchange.org/cgi/GetDataset?ID=PXD000001)
35-
data, used in several examples, as well as a detailed document
37+
from the [ProteomeXchange](http://www.proteomexchange.org/) repository
38+
in several examples. The data can be queries and downloaded from `R`
39+
with the
40+
[`rpx`](http://bioconductor.org/packages/release/bioc/html/rpx.html)
41+
package. The `RforProteomics` vignette is a detailed document
3642
containing the exact code to reproduce all the analyses presented in
37-
the manuscript as well as other application examples. The latter
38-
document is called the package vignette, and can be accessed once the
39-
package is installed (see below) with the `RforProteomics()`
40-
function. Alternatively, the vignette can be downloaded as a pdf file
43+
the manuscript as well as other application examples. It can be
44+
accessed once the package is installed (see below) with the
45+
`RforProteomics()` function. Alternatively, the vignette can be
46+
downloaded as a pdf file
4147
[here](http://bioconductor.org/packages/devel/data/experiment/vignettes/RforProteomics/inst/doc/RforProteomics.pdf).
4248

49+
A second vignette, `RProtVis` is currently underdevelopmenet and will
50+
focus on the visualisation of mass spectrometry and proteomics data
51+
with `R` and Bioconductor. It can be accessed with the `RProtViz()`
52+
function.
53+
4354
## Installation
4455

45-
The package is now available in
56+
The package is available on
4657
[Bioconductor](http://bioconductor.org/packages/devel/data/experiment/html/RforProteomics.html)
47-
version 2.13. To install the package and its documentation, start `R`
48-
(>= `3.0.0` required) and type:
58+
(version >= 2.13). To install the package and its documentation, start
59+
`R` (>= `3.0.0` required) and type:
4960

5061
```c
5162
source("http://bioconductor.org/biocLite.R")
5263
biocLite("RforProteomics")
5364
```
5465
55-
To install all dependencies (78 packages, including `RforProteomics`)
66+
To install all dependencies (75+ packages, including `RforProteomics`)
5667
and reproduce the code in the vignette, replace the last line in the
5768
code chunk above with:
5869

data/qnt.rda

121 KB
Binary file not shown.

man/ProtViz.Rd

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
% Generated by roxygen2 (4.0.1): do not edit by hand
2+
\name{ProtViz}
3+
\alias{ProtViz}
4+
\title{Opens the visualisation vignette}
5+
\usage{
6+
ProtViz()
7+
}
8+
\value{
9+
An instance of class \code{vignette}. Used for its side
10+
effect, opening the vignette.
11+
}
12+
\description{
13+
Opens the visualisation vignette
14+
}
15+
\author{
16+
Laurent Gatto
17+
}
18+

man/RforProteomics.Rd

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
% Generated by roxygen2 (4.0.1): do not edit by hand
22
\name{RforProteomics}
33
\alias{RforProteomics}
4-
\title{Opens RforProteomics vignettes}
4+
\title{Opens the RforProteomics vignette}
55
\usage{
66
RforProteomics()
77
}
88
\value{
9-
An instance of class \code{vignette},
10-
as returned by \code{\link{vignette}}
9+
An instance of class \code{vignette}. Used for its side
10+
effect, opening the vignette.
1111
}
1212
\description{
1313
Opens the package vignettes.

0 commit comments

Comments
 (0)