remake
remake copied to clipboard
Make-like declarative workflows in R
In my project, I have a `RATE` parameter (set by a function) which controls if I'm working with the full dataset or only with a small sample. Many other targets...
Given that remake maps out the dependency tree, is it easy to detect unused functions in your code? The use case is as follows. You're working on a project, storing...
Relates to #13 but also separate. The `remake::install_missing_packages()` function is awesome! A nice compliment could be `remake::update_packages()`, which would reinstall all packages, or at least check if the package had...
Would you consider supporting ``` r targets: : some_r_func(deps) ``` as a shorthand for ``` r targets: : command: some_r_func(deps) ``` ? If I understand YAML correctly, this only works...
It should be possible to run maker directly from an .R file, rather than going through yaml: all the yaml is doing is holding lists of things. Something like ```...
If a .yml includes another file, the `sources` in that file should be run first. Currently, it seems that "own" sources are run before "included" sources. Use case: a "base"...
When using remake I find myself often doing something like ``` x
[`ProjectTemplate`](http://projecttemplate.net/index.html) has been around since at least 2010, and it seems to be very popular. Are there any plans for a collaboration? I suggested a possible integration as a [`ProjectTemplate`...
Maybe I'm missing something here, but it would be nice if `remake` went through the code chunks of a knitr report like `report.Rmd` and automatically detected dependencies. This would include...
Wrong, but no warning: ``` MS/SuppMatt.md: knitr: options: auto_figure_prefix: true chdir: true ``` intended ``` MS/SuppMatt.md: knitr: auto_figure_prefix: true chdir: true ``` docs need clearing up https://github.com/richfitz/remake/blob/master/doc/format.md#knitr-targets @aammd