merge_ibaq: Merge iBAQ intensities

Description Usage Arguments Value Examples

Description

merge_ibaq generates a data.frame with merged iBAQ intensities for proteins with shared peptides.

Usage

1
merge_ibaq(proteins_unique, peptides)

Arguments

proteins_unique

Data.frame, Protein table with unique names annotated in the 'name' column.

peptides

Data.frame, Peptides table from MaxQuant ('peptides.txt').

Value

A data.frame with iBAQ intensities per protein group. Every protein group contains peptides unique to this group.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
# Use example data
data <- GFPip
peptides <- GFPip_pep

# Make unique identifiers
data_unique <- make_unique(data, 'Gene.names', 'Protein.IDs')

# Merge iBAQ intensities
ibaq <- merge_ibaq(data_unique, peptides)

colnames(ibaq)
head(ibaq)

arnesmits/DEPstoi documentation built on May 3, 2019, 4:31 p.m.