Description Usage Arguments Details Value Author(s) References See Also Examples
Asssuming that the targets are provided in a NIST mass spectral library, i.e. MSL, format, this function reads the list of targets and the related information.
1 2 3 4 |
Method |
a srting with three possible values: "target", "library", and "combined". The "target" case means the user only provides a |
target.file |
a string including the full name of a |
library.file |
a string including the full name of a |
path |
a string including the full path to the location of the file.name, optional |
library.path |
a string inlcuding the full path to the location of the library file, optional |
Library |
a list of library information, this is used when the library file is not provided. |
target.table |
a list including the name of the compounds, this is required when a library is provided to extract the targets information from the library. This value can be obtained using |
deltaRI |
a numeric value for the penalty on the retention index similarity score |
deltaRT |
a numeric value for the penalty on the retention time similarity score |
Save |
if |
By calling readMSL
, this function reads the target list and retrieves the reltated informatin such as retention time, retention index, mass and intensity of the fragments, and compound names. The user can determine the quantifier mass by using a single value for all targets, or a vector of values pointing to the index of the fragment of ineterest for each target. Also, the targets can be chosen by omptimization based on overlapping compounds if a library is provided. The library should not include any targets, but it can be an in-house library built from background compounds detected in measurements of the same type of samples.
A list containing:
compound |
a character vector containing the names of the targets |
ms |
a list of numeric vectors of fragment mass of the targets |
sp |
a list of numeric vectors of fragment intensities of the targets |
rt |
a numeric vector of retention times of the targets |
ri |
a numeric vector of the retention indexed of the targets |
quantFrag |
a numeric vector showing the index of quantifier fragment in |
sortedFrag |
a list of numeric vectors showing the order of fragments from the most favorable to the list favorable choice for a quantifier. |
Mo R. Nezami Ranjbar
http://omics.georgetown.edu/SIMAT.html
1 2 3 4 5 6 7 8 9 | # load the target table information
data(target.table)
# load the background library to be used with fragment selection
data(Library)
# get targets info using target table and provided library
Targets <- getTarget(Method = "library", Library = Library,
target.table = target.table)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.