Skip to content

Commit 3d39880

Browse files
committed
fix readme
1 parent 014c993 commit 3d39880

File tree

2 files changed

+19
-18
lines changed

2 files changed

+19
-18
lines changed

README.Rmd

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ Package website: [release](https://batchtools.mlr-org.com/) | [dev](https://batc
1717
As a successor of the packages [BatchJobs](https://github.com/tudo-r/BatchJobs) and [BatchExperiments](https://github.com/tudo-r/Batchexperiments), batchtools provides a parallel implementation of Map for high performance computing systems managed by schedulers like Slurm, Sun Grid Engine, OpenLava, TORQUE/OpenPBS, Load Sharing Facility (LSF) or Docker Swarm (see the setup section in the [vignette](https://batchtools.mlr-org.com/batchtools/articles/batchtools.html)).
1818

1919
Main features:
20+
2021
* Convenience: All relevant batch system operations (submitting, listing, killing) are either handled internally or abstracted via simple R functions
2122
* Portability: With a well-defined interface, the source is independent from the underlying batch system - prototype locally, deploy on any high performance cluster
2223
* Reproducibility: Every computational part has an associated seed stored in a data base which ensures reproducibility even when the underlying batch system changes
@@ -30,7 +31,8 @@ Install the stable version from CRAN:
3031
install.packages("batchtools")
3132
```
3233
For the development version, use [devtools](https://cran.r-project.org/package=devtools):
33-
```{R}
34+
35+
```{R, eval = FALSE}
3436
devtools::install_github("mlr-org/batchtools")
3537
```
3638

README.md

Lines changed: 16 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -23,17 +23,20 @@ Engine, OpenLava, TORQUE/OpenPBS, Load Sharing Facility (LSF) or Docker
2323
Swarm (see the setup section in the
2424
[vignette](https://batchtools.mlr-org.com/batchtools/articles/batchtools.html)).
2525

26-
Main features: \* Convenience: All relevant batch system operations
27-
(submitting, listing, killing) are either handled internally or
28-
abstracted via simple R functions \* Portability: With a well-defined
29-
interface, the source is independent from the underlying batch system -
30-
prototype locally, deploy on any high performance cluster \*
31-
Reproducibility: Every computational part has an associated seed stored
32-
in a data base which ensures reproducibility even when the underlying
33-
batch system changes \* Abstraction: The code layers for algorithms,
34-
experiment definitions and execution are cleanly separated and allow to
35-
write readable and maintainable code to manage large scale computer
36-
experiments
26+
Main features:
27+
28+
- Convenience: All relevant batch system operations (submitting,
29+
listing, killing) are either handled internally or abstracted via
30+
simple R functions
31+
- Portability: With a well-defined interface, the source is independent
32+
from the underlying batch system - prototype locally, deploy on any
33+
high performance cluster
34+
- Reproducibility: Every computational part has an associated seed
35+
stored in a data base which ensures reproducibility even when the
36+
underlying batch system changes
37+
- Abstraction: The code layers for algorithms, experiment definitions
38+
and execution are cleanly separated and allow to write readable and
39+
maintainable code to manage large scale computer experiments
3740

3841
## Installation
3942

@@ -50,11 +53,6 @@ For the development version, use
5053
devtools::install_github("mlr-org/batchtools")
5154
```
5255

53-
## Using github PAT from envvar GITHUB_PAT. Use `gitcreds::gitcreds_set()` and unset GITHUB_PAT in .Renviron (or elsewhere) if you want to use the more secure git credential store instead.
54-
55-
## Skipping install of 'batchtools' from a github remote, the SHA1 (e4b9dacd) has not changed since last install.
56-
## Use `force = TRUE` to force installation
57-
5856
Next, you need to setup `batchtools` for your HPC (it will run
5957
sequentially otherwise). See the
6058
[vignette](https://mlr-org.github.io/batchtools/articles/batchtools.html#setup)
@@ -88,7 +86,8 @@ contains a section comparing the packages.
8886
## Resources
8987

9088
- [NEWS](https://batchtools.mlr-org.com/batchtools/news/)
91-
- [Function reference](https://batchtools.mlr-org.com/batchtools/reference/)
89+
- [Function
90+
reference](https://batchtools.mlr-org.com/batchtools/reference/)
9291
- [Vignette](https://batchtools.mlr-org.com/batchtools/articles/batchtools.html)
9392
- [JOSS Paper](https://doi.org/10.21105/joss.00135): Short paper on
9493
batchtools. Please cite this if you use batchtools.

0 commit comments

Comments
 (0)