Skip to content

Commit

Permalink
Add template
Browse files Browse the repository at this point in the history
  • Loading branch information
csoneson committed Jan 16, 2025
1 parent b4a2061 commit cf3af38
Showing 1 changed file with 52 additions and 0 deletions.
52 changes: 52 additions & 0 deletions vignettes/howto_template.qmd
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>

0 comments on commit cf3af38

Please sign in to comment.