getRefExpFeatureMap | R Documentation |
Construct an alignment feature mapping table for star align method, to map aligned features in experiment runs to the reference run
getRefExpFeatureMap(precursors, features, applyFun = lapply)
precursors |
(data-frames) Contains precursors and associated transition IDs. |
features |
(list of data-frames) Contains features and their properties identified in each run. |
applyFun |
(function) value must be either lapply or BiocParallel::bplapply. |
(list) of dataframes per precursor peptide id having following columns:
reference_feature_id |
(integer) id of reference feature. |
experiment_feature_id |
(integer) id of experiment feature aligned to reference feature. |
Justin Sing, justinc.sing@mail.utoronto.ca
ORCID: 0000-0003-0386-0092
License: (c) Author (2020) + GPL-3 Date: 2022-11-07
getPrecursors, getFeatures
dataPath <- system.file("extdata", package = "DIAlignR")
fileInfo <- getRunNames(dataPath, oswMerged = TRUE)
precursors <- getPrecursors(fileInfo, oswMerged = TRUE, context = "experiment-wide")
features <- getFeatures(fileInfo, maxFdrQuery = 0.05)
multiFeatureAlignmentMap <- getRefExpFeatureMap(precursors, features)
multiFeatureAlignmentMap[["9861"]]
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.