mllg / batchtools

Tools for computation on batch systems
https://mllg.github.io/batchtools/
GNU Lesser General Public License v3.0
170 stars 51 forks source link

Get the result without create a registry folder #227

Closed Idriss0peaccel closed 5 years ago

Idriss0peaccel commented 5 years ago

Hello, I would like to know how to not create a registry, i just want the result.

mllg commented 5 years ago

You can create the registry in a temporary folder, e.g. via

makeRegistry(file.dir = tempfile())

R will remove this folder on exit. But note that this folder needs to be accessible by all computational nodes, so this will not work out of the box for distributed computing.

Idriss0peaccel commented 5 years ago

Hello, Thank for your help.