mllg / batchtools

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

findConfFile missing from pkgdown reference #256

Closed maelle closed 4 years ago

maelle commented 4 years ago

Maybe you could use regex or another method to group functions in your reference without having to remember to add them? (Or maybe you don't want findConfFile in the ref)

maelle commented 4 years ago

What I mean reg using regex. https://pkgdown.r-lib.org/articles/pkgdown.html#reference

Another method is

maelle commented 4 years ago

Is it so that the user has to create the configuration file by hand? (I'm working on a blog post about package configs, not really using batchtools).

mllg commented 4 years ago

findConfFile() is an internal function (and has keyword internal), I don't want it listed in the package index. IIRC it was exported so that third party packages (future.batchtools?) can call it, but not intended to be called by a user.

You have to create configuration files by hand to select a parallelization backend. See argument conf.file in https://mllg.github.io/batchtools/reference/makeRegistry.html for possible locations. Let me know if you have more questions.

maelle commented 4 years ago

Aaah ok thanks, it makes sense!