|
80 | 80 | #' if another assay is used for the actual analysis and comparison of |
81 | 81 | #' groups. If set to \code{NULL} or an assay name that does not exist in |
82 | 82 | #' the SingleCellExperiment object, the 'main' assay will be used. |
| 83 | +#' @param addAbundanceValues Logical scalar defining whether abundance values |
| 84 | +#' for individual samples should be added to the exported result tables. |
83 | 85 | #' @param addHeatmaps Logical scalar indicating whether to include heatmaps |
84 | 86 | #' or not. This controls both the heatmap showing the missing value |
85 | 87 | #' pattern in the data, as well as the summary heatmaps of the |
@@ -269,7 +271,8 @@ runMaxQuantAnalysis <- function( |
269 | 271 | iColPattern, sampleAnnot, |
270 | 272 | includeOnlySamples = "", excludeSamples = "", |
271 | 273 | minScore = 10, minPeptides = 2, imputeMethod = "MinProb", |
272 | | - assaysForExport = c("iBAQ", "Top3"), addHeatmaps = TRUE, |
| 274 | + assaysForExport = c("iBAQ", "Top3"), |
| 275 | + addAbundanceValues = TRUE, addHeatmaps = TRUE, |
273 | 276 | mergeGroups = list(), comparisons = list(), |
274 | 277 | ctrlGroup = "", allPairwiseComparisons = TRUE, singleFit = TRUE, |
275 | 278 | subtractBaseline = FALSE, baselineGroup = "", normMethod = "none", |
@@ -319,7 +322,8 @@ runMaxQuantAnalysis <- function( |
319 | 322 | includeOnlySamples = includeOnlySamples, |
320 | 323 | excludeSamples = excludeSamples, minScore = minScore, |
321 | 324 | minPeptides = minPeptides, imputeMethod = imputeMethod, |
322 | | - assaysForExport = assaysForExport, addHeatmaps = addHeatmaps, |
| 325 | + assaysForExport = assaysForExport, |
| 326 | + addAbundanceValues = addAbundanceValues, addHeatmaps = addHeatmaps, |
323 | 327 | mergeGroups = mergeGroups, |
324 | 328 | comparisons = comparisons, ctrlGroup = ctrlGroup, |
325 | 329 | allPairwiseComparisons = allPairwiseComparisons, singleFit = singleFit, |
@@ -372,8 +376,9 @@ runMaxQuantAnalysis <- function( |
372 | 376 | includeOnlySamples = includeOnlySamples, |
373 | 377 | excludeSamples = excludeSamples, minScore = minScore, |
374 | 378 | minPeptides = minPeptides, imputeMethod = imputeMethod, |
375 | | - assaysForExport = assaysForExport, addHeatmaps = addHeatmaps, |
376 | | - mergeGroups = mergeGroups, |
| 379 | + assaysForExport = assaysForExport, |
| 380 | + addAbundanceValues = addAbundanceValues, |
| 381 | + addHeatmaps = addHeatmaps, mergeGroups = mergeGroups, |
377 | 382 | comparisons = comparisons, ctrlGroup = ctrlGroup, |
378 | 383 | allPairwiseComparisons = allPairwiseComparisons, |
379 | 384 | singleFit = singleFit, |
|
0 commit comments