From 90625ff561c70ce586ef99da7249aab1f63e6090 Mon Sep 17 00:00:00 2001 From: Charlotte Soneson Date: Tue, 14 Jan 2025 14:00:00 +0100 Subject: [PATCH] Add README --- README.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..708bc0e --- /dev/null +++ b/README.md @@ -0,0 +1,18 @@ +# BiocHowTo + +This repository contains short, stand-alone "How To" documents related to +Bioconductor. + +## How to contribute + +To contribute, first fork this repository and create a new branch. Then +copy and rename the `howto_template.qmd` file (inside the `vignettes` +directory), and edit the copy accordingly. Next, add any new package that you +are using to the dependencies of the package, e.g. using + +``` +usethis::use_package("new_dependency") +``` + +Then, push the changes to your forked repository and open a pull request to +the `devel` branch of the parent repository.