readProteinGroups | R Documentation |
readProteinGroups
reads a MaxQuant's protein groups file (usually
named proteinGroups.txt
), extracts intensity data and creates a
proteusData
object.
readProteinGroups(file, meta, measure.cols = NULL, data.cols = proteinColumns)
file |
Input file |
meta |
Metadata data frame. As a minimum, it should contain two columns:
|
measure.cols |
A named list with measure columns to read. These are
columns in the proteinGroup files containing intensity measurements per
sample. Usually they are called |
data.cols |
A named list with columns to read in addition to measure
columns. It should contain three columns named |
This function allows to read MaxQuant's proteinGroups file directly, without reading and processing the evidence file. Apart from the proteinGroups file name, a metadata data frame needs to be provided.
A proteusData
object with protein intensity data.
library(proteusLabelFree)
proteinGroupsFile <- system.file("extdata", "proteinGroups.txt.gz", package="proteusLabelFree")
prot.MQ <- readProteinGroups(proteinGroupsFile, meta)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.