Dups: Average duplicated peptides from a VDAP dataset

Description Usage Arguments Value Note Author(s) Examples

Description

Looks for duplicate peptides in the first column of the dataset, averages the signal of duplicates and replaces them with a single row. A subfunction of vFormat

Usage

1
Dups(x)

Arguments

x

An R object, generally a data.frame with peptides in column 1, followed by signal values at various concentrations.

Value

Returns a data.frame without duplicated peptides. Duplicate entries display the mean of the signal at each concentration

Note

Duplicated peptide entries will generally be at the top of the dataset

Author(s)

Cody Moore

Examples

1
2
3
4
5
protExDups <- data.frame(Peptides = c("PWRGPWARVGSG","GYNRVGQGSG","PWRGPWARVGSG"),
C_6uM = c(65011.48,47462.24,24778), C_3uM = c(62637.81,31899.85,21313.67),
C_1.5uM = c(57893.22,25911.35,10397.99))

exDups <- Dups(protExDups)

VDAP documentation built on May 2, 2019, 5:13 a.m.

Related to Dups in VDAP...