├── .gitignore ├── DESCRIPTION ├── NAMESPACE ├── README.md └── vignettes └── Template.Rmd /.gitignore: -------------------------------------------------------------------------------- 1 | .Rhistory 2 | .RData 3 | -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAdvanced/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- 1 | # Generated by roxygen2: do not edit by hand 2 | 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAdvanced/HEAD/README.md -------------------------------------------------------------------------------- /vignettes/Template.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bioconductor/BiocAdvanced/HEAD/vignettes/Template.Rmd --------------------------------------------------------------------------------