run_TIGER {TIGERr} | R Documentation |
Run TIGER to eliminate technical variation
Description
Use TIGER algorithm to eliminate the technical variation in metabolomics data. TIGER supports targeted and untargeted metabolomics data and is competent to perform both intra- and inter-batch technical variation removal.
Usage
run_TIGER(
test_samples,
train_samples,
col_sampleID,
col_sampleType,
col_batchID,
col_order = NULL,
col_position = NULL,
targetVal_external = NULL,
targetVal_method = c("mean", "median"),
targetVal_batchWise = FALSE,
targetVal_removeOutlier = !targetVal_batchWise,
selectVar_external = NULL,
selectVar_corType = c("cor", "pcor"),
selectVar_corMethod = c("pearson", "spearman"),
selectVar_minNum = 5,
selectVar_maxNum = 10,
selectVar_batchWise = FALSE,
mtry_percent = seq(0.2, 0.8, 0.2),
nodesize_percent = seq(0.2, 0.8, 0.2),
...,
parallel.cores = 2
)
Arguments
test_samples |
(required) a data.frame containing the samples to be corrected (for example, subject samples). This data.frame should contain columns of
Row: sample. Column: variable. See Examples. |
train_samples |
(required) a data.frame containing the quality control (QC) samples used for model training. The columns in this data.frame should correspond to the columns in |
col_sampleID |
(required) a character string indicating the name of the column that specifies the sample ID of each sample. The values in this column will not affect the data correction process but can act as labels for different samples. See Examples. |
col_sampleType |
(required) a character string indicating the name of the column that specifies the type (such as QC1, QC2, subject) of each sample. This column can be used to indicate different kinds of QC samples in |
col_batchID |
(required) a character string indicating the name of the column that specifies the batch ID of each sample. See Examples. |
col_order |
(optional) |
col_position |
(optional) |
targetVal_external |
(optional) a list generated by function |
targetVal_method |
a character string specifying how target values are to be computed. Can be |
targetVal_batchWise |
logical. If |
targetVal_removeOutlier |
logical. If |
selectVar_external |
(optional) a list generated by function |
selectVar_corType |
a character string indicating correlation ( |
selectVar_corMethod |
a character string indicating which correlation coefficient is to be computed. One of |
selectVar_minNum |
an integer specifying the minimum number of the selected metabolite variables (injection order and well position are not regarded as metabolite variables). If |
selectVar_maxNum |
an integer specifying the maximum number of the selected metabolite variables (injection order and well position are not regarded as metabolite variables). If |
selectVar_batchWise |
(advanced) logical. Specify whether the variable selection should be performed based on each batch. Default: |
mtry_percent |
(advanced) a numeric vector indicating the percentages of selected variables randomly sampled as candidates at each split when training random forest models (base learners). Note: providing more arguments will include more base learners into the ensemble model, which will increase the processing time. Default: |
nodesize_percent |
(advanced) a numeric vector indicating the percentages of sample size used as the minimum sizes of the terminal nodes in random forest models (base learners). Note: providing more arguments will include more base learners into the ensemble model, which will increase the processing time. Default: |
... |
(advanced) optional arguments (except |
parallel.cores |
an integer (== -1 or >= 1) specifying the number of cores for parallel computation. Setting |
Details
TIGER can effectively process the datasets with its default setup. The following hyperparameters are provided to customise the algorithm and achieve the best possible performance. These hyperparameters are also practical for some special purposes (such as cross-kit adjustment, longitudinal dataset correction) or datasets requiring special processing (for example, data with very strong temporal drifts or batch effects). We recommend users to examine the normalised result with different metrics, such as RSD (relative standard deviation), MAPE (mean absolute percentage error) and PCA (principal component analysis), especially when using advanced options of TIGER.
Hyperparameters for target value computation
-
targetVal_external
TIGER by default captures and eliminate the technical variation within the input dataset, and the target values are automatically computed from
train_samples
. The target values can also be calculated from a reference dataset using functioncompute_targetVal
and then passed to this function as an argument. This will enable TIGER to aligntest_samples
with the reference dataset. In this case,train_samples
is still the accompanying QC samples oftest_samples
. And argumenttargetVal_external
accepts external target values (a list). If the list of external target values is provided, values intargetVal_method
,targetVal_batchWise
andtargetVal_removeOutlier
will be ignored. -
targetVal_method
The target values can be the mean or median values of metabolite values. The target values of different kinds of QC samples are computed separately.
"mean"
is recommended here, but the optimal selection can differ for different datasets. -
targetVal_batchWise
The target values can be computed from the whole dataset or from different batches. By default, the target values are computed based on the whole dataset. Computing based on batches (
targetVal_batchWise = TRUE
) is only recommended when the samples has very strong batch effects. For example, we set this asTRUE
when normalising WaveICA's Amide dataset in our original paper. -
targetVal_removeOutlier
If computing is based on the whole dataset (
targetVal_batchWise = TRUE
), users can remove the outliers in each metabolite by settingtargetVal_removeOutlier
asTRUE
. This can weaken the impact of extreme values. IftargetVal_batchWise = FALSE
, it is generally not recommended to remove outliers, as we assume the input data have strong batch effects and contain extreme values—we hope TIGER can take these into account. Code for checking outliers is adapted fromboxplot.stats
.
Hyperparameters for variable selection
-
selectVar_external
:This argument accepts a list of selected variables generated by
select_variable
. This is helpful when you want to use the same selected variables to correct several datasets. You can also pass a self-defined list to this argument, as long as the self-defined list has similar data structure as the one generated byselect_variable
. -
selectVar_corType
andselectVar_corMethod
:TIGER supports Pearson product-moment correlation (
"pearson"
) and Spearman's rank correlation ("spearman"
) to compute correlation coefficients ("cor"
) or partial correlation coefficients ("por"
) for variable selection. Seecor
andpcor
for further details. -
selectVar_minNum
andselectVar_maxNum
:For an objective metabolite to be corrected, the intersection of its top t highly-correlated metabolites calculated from training and test samples are selected to train the ensemble model. The highly-correlated metabolites are the ones with correlation coefficients greater than 0.5 (the objective metabolite itself will not be regarded as its highly-correlated metabolite). Arguments
selectVar_minNum
andselectVar_maxNum
are used to avoid selecting too many or too few metabolites. Selecting too many metabolites can lower the process, sometimes even lower the accuracy. -
selectVar_batchWise
:Advanced option designed for special cases. Setting it
TRUE
might be useful when your data have very obvious batch effects.
Hyperparameters for model construction
-
mtry_percent
,nodesize_percent
and...
:Advanced options to specify
mtry
,nodesize
and other related arguments inrandomForest
for a customised ensemble learning architecture. See Examples.
Value
This function returns a data.frame with the same data structure as the input test_samples
, but the metabolite values are the normalised/corrected ones. NA
and zeros in the original test_samples
will not be changed or normalised.
Reference
Han S. et al. TIGER: technical variation elimination for metabolomics data using ensemble learning architecture. Briefings in Bioinformatics (2022) bbab535. doi: 10.1093/bib/bbab535.
Examples
data(FF4_qc) # load demo dataset
# QC as training samples; QC1, QC2 and QC3 as test samples:
train_samples <- FF4_qc[FF4_qc$sampleType == "QC",]
test_samples <- FF4_qc[FF4_qc$sampleType != "QC",]
# col_sampleID includes labels. You can assign names for different samples:
train_samples$sampleID <- "train"
test_samples$sampleID <- "test"
# Use default setting and
# include injection order and well position into feature set:
test_norm_1 <- run_TIGER(test_samples = test_samples,
train_samples = train_samples,
col_sampleID = "sampleID", # input column name
col_sampleType = "sampleType", # input column name
col_batchID = "plateID", # input column name
col_order = "injectionOrder", # input column name
col_position = "wellPosition", # input column name
parallel.cores = 2)
# If the information of injection order and well position is not available,
# or you don't want to use them:
train_data <- train_samples[-c(4:5)] # remove the two columns
test_data <- test_samples[-c(4:5)] # remove the two columns
test_norm_2 <- run_TIGER(test_samples = test_data,
train_samples = train_data,
col_sampleID = "sampleID",
col_sampleType = "sampleType",
col_batchID = "plateID",
col_order = NULL, # set NULL
col_position = NULL, # set NULL
parallel.cores = 2)
# If use external target values and selected variables with
# customised settings:
target_val <- compute_targetVal(QC_num = train_samples[-c(1:5)],
sampleType = train_samples$sampleType,
batchID = train_samples$plateID,
targetVal_method = "median",
targetVal_batchWise = TRUE)
select_var <- select_variable(train_num = train_samples[-c(1:5)],
test_num = test_samples[-c(1:5)],
train_batchID = train_samples$plateID,
test_batchID = test_samples$plateID,
selectVar_corType = "pcor",
selectVar_corMethod = "spearman",
selectVar_minNum = 10,
selectVar_maxNum = 30,
selectVar_batchWise = TRUE)
test_norm_3 <- run_TIGER(test_samples = test_samples,
train_samples = train_samples,
col_sampleID = "sampleID",
col_sampleType = "sampleType",
col_batchID = "plateID",
col_order = "injectionOrder",
col_position = "wellPosition",
targetVal_external = target_val,
selectVar_external = select_var,
parallel.cores = 2)
# The definitions of other hyperparameters correspond to
# randomForest::randomForest().
# If want to include more hyperparameters into model training,
# put hyperparameter values like this:
mtry_percent <- c(0.4, 0.8)
nodesize_percent <- c(0.4, 0.8)
replace <- c(TRUE, FALSE)
ntree <- c(100, 200, 300)
test_norm_4 <- run_TIGER(test_samples = test_data,
train_samples = train_data,
col_sampleID = "sampleID",
col_sampleType = "sampleType",
col_batchID = "plateID",
mtry_percent = mtry_percent,
nodesize_percent = nodesize_percent,
replace = replace,
ntree = ntree,
parallel.cores = 2)
# test_norm_4 is corrected by the ensemble model consisted of base learners
# trained with (around) 24 different hyperparameter combinations:
expand.grid(mtry_percent, nodesize_percent, replace, ntree)
# Note: mtry and nodesize are calculated by mtry_percent and nodesize_percent,
# duplicated hyperparameter combinations, if any, will be removed.
# Thus, the total number of hyperparameter combinations can be less than 24.
# This is determined by the shape of your input datasets.