| align_mQTL {mQTL} | R Documentation |
Recursive Segment-Wise Peak Alignment (RSPA) for accounting peak position variation across metabolomic data
align_mQTL(datafile, outdat)
datafile |
raw spectra |
outdat |
aligned spectra |
The algorithm is based on the following workflow:
Quotient probabilistic normalisation of metabolomic data.
Automatic selection of a reference spectrum.
Segmentate a reference spectrum.
Then for each test spectrum:
segmentate a test spectrum.
match test and reference segments.
align a test spectrum.
It returns aligned data.
Lyamine Hedjazi
Veselkov,K. et al (2009) Recursive Segment-Wise Peak Alignment of Biological 1H NMR Spectra for Improved Metabolic Biomarker Recovery, Anal. Chem., 81(1), 56-66.
alignSp, attachSegments, matchSegments, segmentateSp,format_mQTL, format_mQTL
## Not run: ## Align metabolomic data profiles cleandat<-"CleanMetaboFile.dat" ## Metabolomic data file in csvs format aligdat<-"AlignData.dat" ## Aligned metabolomic profiles in csvs format align_mQTL(cleandat,aligdat) ## End(Not run)