Skip to content

Commit

Permalink
gitignore and bash run
Browse files Browse the repository at this point in the history
  • Loading branch information
kyle-messier committed Jul 15, 2024
1 parent 618be3e commit 4657a70
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -54,3 +54,12 @@ rsconnect/
.Rproj.user
inst/doc
docs

data-raw/

._*

*.error
*.log

data/geo_tox_data_manuscript.RData
13 changes: 13 additions & 0 deletions run.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#!/bin/bash

#SBATCH --job-name=paper_demo
#SBATCH --output=paper_demo.log
#SBATCH --error=paper_demo.error
#SBATCH --mail-user=messierkp@nih.gov
#SBATCH --mail-type=END,FAIL
#SBATCH --ntasks=1
#SBATCH --cpus-per-task=4
#SBATCH --mem=36g
#SBATCH --partition=highmem

Rscript -e "rmarkdown::render('vignettes/paper-demo-01.Rmd')"

0 comments on commit 4657a70

Please sign in to comment.