Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/biocpy/biocworkshop2024


https://github.com/biocpy/biocworkshop2024

bioconductor biocpy rpython

Last synced: 24 days ago
JSON representation

Awesome Lists containing this project

README

        

## Bioc 2024 workshop tutorial

This is a reproducible Quarto book with reusable snippets. If you're new to Quarto books, you can explore more about them [here](https://quarto.org/docs/books).

## Setting Up the Tutorial Locally

To get started locally, follow these steps:

- Install [quarto-cli](https://quarto.org/docs/get-started/).
- Install the necessary packages listed in [requirements.txt](./requirements.txt) and [rpackages.R](rpackages.R).

```sh
pip install -r requirements.txt
Rscript rpackages.R
```

- Run quarto preview to view the HTML version of the site.

```sh
qurto preview
```

GitHub actions automatically publish the tutorial book whenever changes are made on the **master** branch.

## Dockerfile

To build the docker image, (defaults to port 8889)

```sh
docker build -t bioc .
docker run -it -p 8889:8889 bioc
```