View source: R/TP-library_formula.R
generateTPsLibraryFormula | R Documentation |
Automatically obtains transformation products from a library with formula data.
generateTPsLibraryFormula(
parents = NULL,
TPLibrary,
generations = 1,
skipInvalid = TRUE,
prefCalcChemProps = TRUE,
neutralChemProps = FALSE,
matchParentsBy = "name",
matchGenerationsBy = "name"
)
parents |
The parents for which transformation products should be obtained. This should be either a suspect list
(see suspect screening for more information) or the resulting output of
|
TPLibrary |
A |
generations |
An |
skipInvalid |
If set to |
prefCalcChemProps |
If |
neutralChemProps |
If |
matchParentsBy |
A |
matchGenerationsBy |
Similar to |
This function uses a library to obtain transformation products. This function is called when calling generateTPs
with
algorithm="library_formula"
.
This function is similar to generateTPsLibrary
, however, it only require formula information
of the parent and TPs.
The TPs are stored in an object derived from the transformationProductsFormula
class.
The TPLibrary
argument is used to specify a custom TP library. This should be a
data.frame
where each row specifies a TP for a parent, with the following columns:
parent_name
and TP_name
: The name of the parent/TP.
parent_formula
and TP_formula
The formula of the parent/TP structure.
retDir
The retention direction of the TP compared to its parent: ‘-1’ (elutes before), ‘1’
(elutes after) or ‘0’ (elutes similarly or unknown). If not specified then the log P
values below may
be used to calculate retention time directions. (optional)
parent_LogP
and TP_LogP
The log P
values for the parent/TP. (optional)
LogPDiff
The difference between parent and TP Log P
values. Ignored if both
parent_LogP
and TP_LogP
are specified. (optional)
Other columns are allowed, and will be included in the final object. Multiple TPs for a single parent are specified
by repeating the value within parent_
columns.
Chemical properties such as SMILES, InChIKey and formula in the parent suspect list are automatically validated and calculated if missing/invalid.
The internal validation/calculation process performs the following steps:
Validation of SMILES, InChI, InChIKey and formula data (if present). Invalid
entries will be set to NA
.
If neutralChemProps=TRUE
then chemical data (SMILES, formulae etc.) is neutralized by
(de-)protonation (using the --neutralized
option of OpenBabel
). An additional column
molNeutralized
is added to mark those molecules that were neutralized. Note that neutralization requires
either SMILES or InChI data to be available.
The SMILES and InChI data are used to calculate missing or invalid SMILES,
InChI, InChIKey and formula data. If prefCalcChemProps=TRUE
then existing
InChIKey and formula data is overwritten by calculated values whenever possible.
The chemical formulae which were not calculated are verified and normalized. This process may be time
consuming, and is potentially largely avoided by setting prefCalcChemProps=TRUE
.
Neutral masses are calculated for missing values (prefCalcChemProps=FALSE
) or whenever possible
(prefCalcChemProps=TRUE
).
Note that calculation of formulae for molecules that are isotopically labelled is currently only supported for deuterium (2H) elements.
This functionality relies heavily on OpenBabel, please make sure it is installed.
Unlike generateTPsLibrary
, this function defaults the matchParentsBy
and
matchGenerationsBy
arguments to "name"
. While matching by formula
is also possible, it is
likely that duplicate parent formulae (i.e. isomers) are present in parents
and/or TPLibrary
,
making matching by formula unsuitable. However, if you are sure that no duplicate formulae are present, it may be
better to set the matching method to "formula"
.
OBoyle2011patRoon
generateTPs
for more details and other algorithms.
generateTPsLibrary
to generate TPs from a library that contains structural information.
genFormulaTPLibrary
to automatically generate formula TP libraries.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.