findBeta {ypssc} | R Documentation |
Beta Sheet Calculator
Description
Form bottom-up proteomics data of proteins (peptides), this function determines the sections of proteins (in percentage) with beta-sheet, structure.
Usage
findBeta(pathFileInput = NULL, pathDirOutput = NULL, ...)
Arguments
pathFileInput |
Path of the input csv file generated from MaxQuant. |
pathDirOutput |
Path of the directory to which the output files will be generated. |
... |
(for developer use only) |
Value
The output of the program is a csv file (.csv) that contains 5 columns, and the number of rows depends on the number of
proteins in the sample.
First column contains the ID of the identified alpha-helix proteins in the sample, second column contains the number of identified
amino acids from the corresponding protein, third column contains number of identified amino acids with secondary structure,
fourth column contains the number of amino acids that the protein originally has in the SSDYP, and fifth column contains the
number of amino acids with beta-sheet that the protein originally has in the SSDYP.
These columns should provide all information that the user needs to know about the protein and its structural information as
well as structural information about the parts of the protein that has been identified in the sample.
In addition, it also generates 4 more '.csv' files.
The no. of proteins found in the sample.
The no. of peptides found in the sample.
The no. of amino acids for each protein in database.
It is the input file from MaxQuant that's been cleaned up for the sole purpose of calculating secondary structures.
See Also
findSecondary
, findAlpha
, findChain
Examples
## Not run:
findBeta( pathFileInput = "some/path/to/inputFile.csv",
pathDirOutput = "some/path/to/outputDir/" )
findBeta()
## End(Not run)