-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
52 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
--- | ||
title: EDIT:HowToTitle | ||
author: EDIT:HowToAuthor | ||
date: "`r Sys.Date()`" | ||
vignette: > | ||
%\VignetteIndexEntry{EDIT:HowToTitle} | ||
%\VignetteEngine{quarto::html} | ||
%\VignetteEncoding{UTF-8} | ||
knitr: | ||
opts_chunk: | ||
collapse: true | ||
comment: '#>' | ||
format: | ||
html: | ||
toc: true | ||
html-math-method: mathjax | ||
--- | ||
|
||
```{r} | ||
#| echo: false | ||
suppressPackageStartupMessages({ | ||
library(BiocStyle) | ||
}) | ||
``` | ||
|
||
EDIT:Short introduction | ||
|
||
# Bioconductor packages used in this document | ||
|
||
EDIT:Add list of packages used in the HowTo. Use `r Biocpkg("PkgName")` to | ||
refer to Bioconductor packages, and similarly for other package sources | ||
(see https://bioconductor.org/packages/release/bioc/vignettes/BiocStyle/inst/doc/AuthoringRmdVignettes.html#4_Style_macros). Example: | ||
* `r Biocpkg("pasillaBamSubset")` | ||
|
||
# EDIT:Main section | ||
|
||
EDIT:Here, put the code and explanations for your HowTo. Keep in mind that | ||
HowTos should be short, and address a well-defined, specific task using | ||
Bioconductor. | ||
|
||
# Session info | ||
|
||
<details> | ||
<summary><b> | ||
Click to display session info | ||
</b></summary> | ||
```{r} | ||
sessionInfo() | ||
``` | ||
</details> | ||
|