findChain: Chain Calculator

Description Usage Arguments Value See Also Examples

View source: R/findChain.R

Description

Form bottom-up proteomics data of proteins (peptides), this function determines the sections of proteins (in percentage) with primary, structure.

Usage

1
findChain(pathFileInput = NULL, pathDirOutput = NULL, ...)

Arguments

pathFileInput

Path of the input csv file generated from MaxQuant.

MaxQuant is a quantitative proteomics software designed to analyze large mass-spectrometric data. The input of MaxQuant is a raw file (.raw) from high-resolution mass spectrometers. After analysis of the raw file in MaxQuant, the program generates a folder named “combined”.

In this folder there is another folder named “txt” which contains many files with text format (.txt). One of the files called “peptides” which is the input of the ypssc to calculate secondary structures. ypssc has been designed such a way that can analyzed and extract information regarding the sample regardless of the name that user chosen for the sample.

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 in chain structure 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.

  1. The no. of proteins found in the sample.

  2. The no. of peptides found in the sample.

  3. The no. of amino acids for each protein in database.

  4. It is the input file from MaxQuant that's been cleaned up for the sole purpose of calculating secondary structures.

See Also

findSecondary, findAlpha, findBeta

Examples

1
2
3
4
5
6
7
## Not run: 
findChain( pathFileInput = "some/path/to/inputFile.csv",
           pathDirOutput = "some/path/to/outputDir/" )

findChain()

## End(Not run)

ypssc documentation built on Nov. 28, 2021, 1:06 a.m.