View source: R/preProcessing.R
confirmColumnNames | R Documentation |
The function selects the correct columns. Please note that the column name is case-sensitive.
confirmColumnNames(
rawMaxQuant = rawMaxQuant,
positionCol = positionCol,
reverseCol = reverseCol,
localizationProbCol = localizationProbCol,
potentialContaminationCol = potentialContaminationCol,
aminoAcidCol = aminoAcidCol,
uniqueIDCol = uniqueID,
seqWindowIDCol = seqWindowID,
fastaIDCol = NULL
)
rawMaxQuant |
(Required). Loaded raw MaxQuant data |
positionCol |
(Required). List the column name with the phosphorylation position. |
reverseCol |
(Required). List the column with the reverse information. |
localizationProbCol |
(Required). List the column name with the localization probability. |
potentialContaminationCol |
(Required). List the column name with the contamination information. |
aminoAcidCol |
(Required). List the column name with the amino acid. |
uniqueIDCol |
(Required). List the column name with the protein for the peptides. |
seqWindowIDCol |
(Required). List the column name with the sequence window. |
fastaIDCol |
(Optional). List the column name with the FASTA header. |
A list of data.frames
## Not run:
## Loading One Condition Data
data("oneConditionExample")
## Identify the Columns needed for Data Processing
identifiedCols <- confirmColumnNames(rawMaxQuant = oneConditionExample,
positionCol = "Position",
reverseCol = "Reverse",
localizationProbCol = "Localization prob",
potentialContaminationCol = "Potential contaminant",
aminoAcidCol = "Amino acid",
uniqueIDCol = "Protein",
seqWindowIDCol = "Sequence window",
fastaIDCol = "Fasta headers")
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.