Skip to content

Commit

Permalink
Merge pull request #230 from RECETOX/hechth/issue229
Browse files Browse the repository at this point in the history
Re-enable parallelism in feature.align.R
  • Loading branch information
hechth authored Oct 30, 2024
2 parents 6e3ac2e + 3131194 commit 8ec24bc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [dev] - unreleased
### Changed
- re-enabled parallelism in alignment step [#230](https://github.com/RECETOX/recetox-aplcms/pull/230)

## [0.13.3] - 2024-09-16
### Changed
- fixed not working eic splitting code [#226](https://github.com/RECETOX/recetox-aplcms/pull/226)
Expand Down
2 changes: 1 addition & 1 deletion R/feature.align.R
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ create_aligned_feature_table <- function(features_table,
# retention time alignment
aligned_features <- foreach::foreach(
i = seq_along(sel.labels), .combine = "comb", .multicombine = TRUE
) %do% {
) %dopar% {
rows <- create_features_from_cluster(
dplyr::filter(features_table, cluster == sel.labels[i]),
mz_tol_relative,
Expand Down

0 comments on commit 8ec24bc

Please sign in to comment.