HenrikBengtsson / aroma.seq

🔬 R package: aroma.seq: High-Throughput Sequence Analysis using the Aroma Framework
https://github.com/HenrikBengtsson/aroma.seq
0 stars 1 forks source link

Replace all dsApply() with for loops with futures #26

Closed HenrikBengtsson closed 7 years ago

HenrikBengtsson commented 8 years ago

Replace all dsApply() with for loops with futures, e.g.

res <- listenv()
for (ii in seq_along(ds)) {
  df <- ds[[ii]]
  res[[ii]] %<=% {
    ## Some function of df
  }
}
res <- as.list(res)
HenrikBengtsson commented 7 years ago

Implemented in branch feature/futures.