View source: R/batch_cleanup.R
batch_cleanup | R Documentation |
This convenient function deletes a batch script without having to provide the extension. Good practice after large submissions.
batch_cleanup(name)
name |
Either the full batch job file path, or its base name (excluding the extension |
batch_writer()
to write slurm batch scripts.
batch_submit()
to submit slurm batch scripts.
# set desired parameters
commands <- 'time echo "Hello world!"'
name <- 'hola'
# writes file `hola.q`
batch_writer(
commands,
name
)
# cleanup
batch_cleanup( name )
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.