├── .gitignore ├── README.md ├── cheat-sheet.Rmd ├── cheat-sheet.pdf ├── cooking-with-files ├── README.md ├── cooking-with-files.Rmd ├── cooking-with-files.Rproj ├── make.R └── raw-meat.txt ├── drake-sib-zurich.Rproj └── learnr ├── .gitignore ├── cooking-drake-tutorial.Rmd └── cooking-tutorial.Rmd /.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .drake 3 | .Rhistory 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krlmlr/drake-sib-zurich/HEAD/README.md -------------------------------------------------------------------------------- /cheat-sheet.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krlmlr/drake-sib-zurich/HEAD/cheat-sheet.Rmd -------------------------------------------------------------------------------- /cheat-sheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krlmlr/drake-sib-zurich/HEAD/cheat-sheet.pdf -------------------------------------------------------------------------------- /cooking-with-files/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krlmlr/drake-sib-zurich/HEAD/cooking-with-files/README.md -------------------------------------------------------------------------------- /cooking-with-files/cooking-with-files.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krlmlr/drake-sib-zurich/HEAD/cooking-with-files/cooking-with-files.Rmd -------------------------------------------------------------------------------- /cooking-with-files/cooking-with-files.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krlmlr/drake-sib-zurich/HEAD/cooking-with-files/cooking-with-files.Rproj -------------------------------------------------------------------------------- /cooking-with-files/make.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krlmlr/drake-sib-zurich/HEAD/cooking-with-files/make.R -------------------------------------------------------------------------------- /cooking-with-files/raw-meat.txt: -------------------------------------------------------------------------------- 1 | raw meat 2 | -------------------------------------------------------------------------------- /drake-sib-zurich.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krlmlr/drake-sib-zurich/HEAD/drake-sib-zurich.Rproj -------------------------------------------------------------------------------- /learnr/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krlmlr/drake-sib-zurich/HEAD/learnr/.gitignore -------------------------------------------------------------------------------- /learnr/cooking-drake-tutorial.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krlmlr/drake-sib-zurich/HEAD/learnr/cooking-drake-tutorial.Rmd -------------------------------------------------------------------------------- /learnr/cooking-tutorial.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krlmlr/drake-sib-zurich/HEAD/learnr/cooking-tutorial.Rmd --------------------------------------------------------------------------------