├── .gitignore ├── NAMESPACE ├── README.md ├── vignettes └── Template.Rmd └── DESCRIPTION /.gitignore: -------------------------------------------------------------------------------- 1 | .Rhistory 2 | .RData 3 | -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- 1 | # Generated by roxygen2: do not edit by hand 2 | 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Courses 2 | 3 | - [TiB 2018, Cuernavaca, Mexico][], 2018 4 | - [University of Zurich][], 2017 5 | 6 | [TiB 2018, Cuernavaca, Mexico]: ../../blob/LatAm-2018/README.md 7 | [University of Zurich]: ../../blob/Zurich-2017/README.md 8 | -------------------------------------------------------------------------------- /vignettes/Template.Rmd: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Vignette Title" 3 | author: "Vignette Author" 4 | date: "June 19 - 20, 2017" 5 | vignette: > 6 | %\VignetteIndexEntry{Vignette Title} 7 | %\VignetteEngine{knitr::rmarkdown} 8 | output: 9 | BiocStyle::html_document 10 | --- 11 | -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- 1 | Package: AdvancedRBioc 2 | Title: Training material for advanced R / Bioconductor courses 3 | Version: 0.0.1 4 | Authors@R: c( 5 | person( 6 | "Martin", "Morgan", role = c("aut", "cre"), 7 | email = "Martin.Morgan@RoswellPark.org" 8 | ), 9 | person( 10 | "Herve", "Pages", role = "aut", email = "hpages@fredhutch.org" 11 | )) 12 | Description: This package contains training material for advanced R 13 | and Bioconductor courses. Each course is git branch; the README 14 | file links to the github-based source repository. 15 | Depends: R (>= 3.4.0) 16 | Suggests: BiocStyle, knitr, rmarkdown 17 | VignetteBuilder: knitr 18 | License: Artistic-2.0 19 | Encoding: UTF-8 20 | RoxygenNote: 6.0.1 21 | --------------------------------------------------------------------------------