Skip to content

Commit

Permalink
Merge pull request #32 from NBISweden/devel
Browse files Browse the repository at this point in the history
Lectures day 2 and 3
  • Loading branch information
verku authored Sep 8, 2022
2 parents c57ff37 + 832f3a6 commit ffc7374
Show file tree
Hide file tree
Showing 27 changed files with 3,458 additions and 1,288 deletions.
593 changes: 0 additions & 593 deletions lectures/bestpractices-detail/bestpractices-detail.Rmd

This file was deleted.

948 changes: 948 additions & 0 deletions lectures/bestpractices-detail/bestpractices-detail.qmd

Large diffs are not rendered by default.

55 changes: 55 additions & 0 deletions lectures/custom.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
/* SCSS custom modifications for NBIS presentations using quarto, revealjs and rmarkdown */

/*-- scss:defaults --*/

/*-- scss:rules --*/

.scroll-1000 {
max-height: 1000px;
overflow-y: auto;
background-color: inherit;
}
.scroll-400 {
max-height: 400px;
overflow-y: auto;
background-color: inherit;
}
.scroll-300 {
max-height: 300px;
overflow-y: auto;
background-color: inherit;
}
.scroll-200 {
max-height: 200px;
overflow-y: auto;
background-color: inherit;
}

pre.out {
background-color: lightgreen;
}
pre.sourceCode.src {
background-color: lightblue;
}

.green { color: #85be42; font-weight: bold }

code.tree {
line-height: 8px;
font-size: 18px;
}

code.stree {
line-height: 6.6px;
font-size: 12px;
}

code.sstree {
line-height: 5.6px;
font-size: 10px;
}


code.large {
font-size: 20px;
}
8 changes: 8 additions & 0 deletions lectures/reproducibility-tools/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
all: reproducibility-tools.html

%.html: %.Rmd
Rscript -e 'rmarkdown::render("$<")'

# OPENSSL_CONF due to https://github.com/nodejs/node/issues/43132#issuecomment-1130503287
%.pdf: %.html
OPENSSL_CONF=/dev/null Rscript -e 'library(webshot); webshot("$<", "$@")'
Loading

0 comments on commit ffc7374

Please sign in to comment.