vSep: Select Peptides of a Particular Length/Charge Combination

Description Usage Arguments Value Author(s) Examples

Description

Select Peptides that have a specified length/charge combination, a subfunction for lcScan, and all methods of LCMotif and LcComp

Usage

1
vSep(File, Length = NULL, Charge = NULL)

Arguments

File

An R object, usually a data.frame generally created by the function FLoad()

Length

An integer value, specifies the desired length to subset.

Charge

An integer value, specified the desired charge to subset.

Value

Returns a data.frame with peptides of the selected Length/Charge combination.

Author(s)

Cody Moore

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
protExChargeSep <- data.frame(Peptides = c("PWRGPWARVGSG","GYNRVGQGSG","PWRGPWARVGSG"),
Length = c(12,10,12), Charge = c(2,1,2))

## Length/Charge Combination ##

hitSelEx <- vSep(protExChargeSep,10,1)

## Charge only ##

hitSelEx <- vSep(protExChargeSep,Charge = 1)

## Length Only ##

hitSelEx <- vSep(protExChargeSep,Length = 12)

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

Related to vSep in VDAP...