Profile {TargetSearch} | R Documentation |
This function makes a profile from the masses that correlate for each metabolite.
Profile(samples, Lib, peakData, r_thres = 0.95, method = "dayNorm", minPairObs = 5)
samples |
A |
Lib |
A |
peakData |
A |
r_thres |
A correlation threshold. |
method |
Normalisation method. Options are |
minPairObs |
Minimum number of pair observations. Correlations between two variables are computed using all complete pairs of observations in those variables. If the number of observations is too small, you may get high correlations values just by chance, so this parameters is used to avoid that. Cannot be set lower than 5. |
A tsProfile
object. The slots are:
Info |
A data frame with a profile of all masses that correlate. |
Intensity |
A list containing peak-intensity matrices, one matrix per metabolite. |
RI |
A list containing RI matrices, one matrix per metabolite. |
profInt |
A matrix with the averaged intensities of the correlating masses. |
profRI |
A matrix with the averaged RI of the correlating masses. |
Alvaro Cuadros-Inostroza, Matthew Hannah, Henning Redestig
ImportSamples
, ImportLibrary
, medianRILib
,
peakFind
, tsProfile
require(TargetSearchData) data(TSExample) # get RI file path RI.path <- file.path(find.package("TargetSearchData"), "gc-ms-data") # update RI file path RIpath(sampleDescription) <- RI.path # Import Library refLibrary <- ImportLibrary(file.path(RI.path,'library.txt')) # update median RI refLibrary <- medianRILib(sampleDescription, refLibrary) # get the sample RI corRI <- sampleRI(sampleDescription, refLibrary, r_thres = 0.95) # obtain the peak Intensities of all the masses in the library peakData <- peakFind(sampleDescription, refLibrary, corRI) # make a profile of the metabolite data metabProfile <- Profile(sampleDescription, refLibrary, peakData, r_thres = 0.95) # same as above, but with different thresholds. metabProfile <- Profile(sampleDescription, refLibrary, peakData, r_thres = 0.9, minPairObs = 5)