R package used at PNNL for processing isobaric labeling (e.g. TMT) proteomics data. The key inputs are:
- MS/MS identifications from the MS-GF+ search engine
- Reporter ion intensities extracted using MASIC
- Tables outlining study design
- table linking dataset to plexes
- table linking reporter channels with sample names
- table identifying reference within each plex
Updates to this package are detailed in the NEWS.md file and in the releases.
The PlexedPiper pkgdown website contains pre-built vignettes as well as updates and documentation.
if(!require("remotes", quietly = T)) install.packages("remotes")
remotes::install_github("PNNL-Comp-Mass-Spec/PlexedPiper", build_vignettes = TRUE)
library(PlexedPiper)
vignette("tmt_pipeline_v1")
A companion R package with test data based on the MoTrPAC pilot study is available here
PlexedPiper can be run within a Docker Container
- This example
Dockerfile
shows the required system libraries, starting with the base rocker/TidyVerse image
FROM rocker/tidyverse:3.6.1
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
unixodbc \
unixodbc-dev \
freetds-dev \
freetds-bin \
tdsodbc \
libcurl4-openssl-dev \
libxml2-dev \
libnetcdf-dev \
libssl-dev
RUN R -e 'remotes::install_github("PNNL-Comp-Mass-Spec/PlexedPiper", build_vignettes = TRUE)'
On MacOS, install Homebrew, then use
brew install unixodbc
brew install freetds
Note, the --with-unixodbc
option in freetds installation is deprecated.
Create ~/.odbcinst.ini
file and add
[FreeTDS]
Driver = /usr/local/lib/libtdsodbc.so
If your location of libtdsodbc.so
differs, use the proper location.
If within PNNL network there may be an error associated with mount_smbfs
. This happens due to network access credentials. Options are either to wait or proactively access one of the PNNL servers. For example try mounting one of the public directories from the terminal window. Enter your network password once requested.
mount -t smbfs //protoapps/DataPkgs/Public/ ~/temp_msms_results
Then compilation of the vignettes that imply access to PNNL DMS should proceed smoothly.
The original location is on the vladpetyuk account, repo PlexedPiper.