Skip to content

Commit

Permalink
Updagte aggregation funcs
Browse files Browse the repository at this point in the history
  • Loading branch information
samWieczorek committed Dec 14, 2024
1 parent 3b4a081 commit 63d64a9
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
3 changes: 1 addition & 2 deletions R/mod_download_dataset.R
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,7 @@ download_dataset_server <- function(id,
rv$export_file_xlsx <- tryCatch({

out.xlsx <- tempfile(fileext = ".xlsx")
obj.cleaned <- DaparToolshed::CleanRowData(dataIn())
DaparToolshed::write.excel(obj = obj.cleaned, filename = out.xlsx)
DaparToolshed::write.excel(obj = dataIn(), filename = out.xlsx)
out.xlsx

},
Expand Down
2 changes: 0 additions & 2 deletions inst/workflow/PipelinePeptide/R/PipelinePeptide_Aggregation.R
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,6 @@ PipelinePeptide_Aggregation_server <- function(id,
Aggregation_considerPeptides = "allPeptides",
Aggregation_proteinId = "None",
Aggregation_topN = 3,
Aggregation_filterProtAfterAgregation = NULL,
Aggregation_addRowData = FALSE,
Addmetadata_columnsForProteinDataset = NULL
)
Expand Down Expand Up @@ -569,7 +568,6 @@ PipelinePeptide_Aggregation_server <- function(id,
rv.custom$history[['Aggregation_considerPeptides']] <- as.numeric(rv.widgets$Aggregation_considerPeptides)
rv.custom$history[['Aggregation_proteinId']] <- as.numeric(rv.widgets$Aggregation_proteinId)
rv.custom$history[['Aggregation_topN']] <- as.numeric(rv.widgets$Aggregation_topN)
rv.custom$history[['Aggregation_filterProtAfterAgregation']] <- as.numeric(rv.widgets$Aggregation_filterProtAfterAgregation)
rv.custom$history[['Aggregation_addRowData']] <- rv.widgets$Aggregation_addRowData

paramshistory(rv.custom$temp.aggregate[[length(rv.custom$temp.aggregate)]]) <- rv.custom$history
Expand Down

0 comments on commit 63d64a9

Please sign in to comment.