ConsensusAlign: Takes a vector of paths to input files and aligns common...

Description Usage Arguments Value Examples

Description

Takes a vector of paths to input files and aligns common metabolites into a final table. Will also identify metabolites if a reference library is provided

Usage

1
2
3
4
5
6
7
ConsensusAlign(inputFileList, RT1_Standards = NULL, RT2_Standards = NULL,
  seedFile = 1, RT1Penalty = 1, RT2Penalty = 10,
  autoTuneMatchStringency = TRUE, similarityCutoff = 90,
  disimilarityCutoff = similarityCutoff - 90, numCores = 1,
  commonIons = c(), missingValueLimit = 0.75,
  missingPeakFinderSimilarityLax = 0.85, quantMethod = "T",
  standardLibrary = NULL)

Arguments

inputFileList

Vector of file paths to align

RT1_Standards

Vector of standard names used to adjust first retention time. All names must be found in input files. Defaults to NULL.

RT2_Standards

Vector of standard names used to adjust second retention time. All names must be found in input files. Defaults to NULL.

seedFile

File number in inputFileList to initialize alignment. Can also input a vector of different seed files (3 is usually sufficient) to prevent bias from seed file. Defaults to 1.

RT1Penalty

Penalty used for first retention time errors. Defaults to 1.

RT2Penalty

Penalty used for first retention time errors. Defaults to 10.

autoTuneMatchStringency

Will automatically find optimal match threshold. If TRUE, will ignore similarityCutoff. Defaults to TRUE.

similarityCutoff

Adjusts peak similarity threshold required for alignment. Adjust in concordance with RT1 and RT2 penalties. Will be ignored if autoTuneMatchStrigency is TRUE. Defaults to 90.

disimilarityCutoff

Defaults to similarityCutoff-90. Sets the threshold for including a new peak in the alignment table to ensure new metabolites aren't just below alignment thresholds

numCores

Number of cores used to parallelize alignment. See parallel package. Defaults to 4.

commonIons

Provide a vector of ions to ignore from the FindProblemIons function. Defaults to empty vector.

missingValueLimit

Maximum fraction (Numeric between 0 and 1) of missing values acceptable for retaining a metabolite in the final alignment table. Defaults to 0.25.

missingPeakFinderSimilarityLax

Fraction of Similarity Cutoff to use to find missing alignments just below threshold. Set to 1 to prevent searching for missing peaks. Defaults to 0.85.

quantMethod

Set to U, A, or T to indicate if unique mass (U), appexing masses (A), or total ion chormatograph (T) was used to quantify peak areas. Defaults to T. If "T" or "A", peaks meeting similarity thresholds will simply be summed. If "U", peaks with the same unique mass with be summed and a proportional conversion will be used before combining peaks with different unique masses.

standardLibrary

Defaults to NULL. Provide standard library generated from MakeReference function to ID metabolites with retention index.

Value

A list with three items: AlignmentMatix - A dataframe with peak areas for all metabolites matched in sufficient number of samples. MetaboliteInfo - An info file with RT, spectra, and metabolite ID info for each metabolite in the AlignmentMatrix. UnmatchedQuantMasses- Info on metabolites combined that had different unique masses (if quantMethod="U") or greater than 50

Examples

1
2
ConsensusAlign(c(system.file("extdata", "SampleA.txt", package="R2DGC"),
    system.file("extdata", "SampleB.txt", package="R2DGC")), RT1_Standards= c())

R2DGC documentation built on May 1, 2019, 8:20 p.m.