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

https://github.com/computorg/jds2025-workshop-template


https://github.com/computorg/jds2025-workshop-template

Last synced: about 13 hours ago
JSON representation

Awesome Lists containing this project

README

          

# jds2025-workshop-template

[Workshop site](https://computo.sfds.asso.fr/jds2025-workshop/) for the JDS 2025 workshop on reproducible research.

# Template installation

![](img/use-this-template.png)

![](img/create-new-repo.png)

![](img/select-all-branches.png)

![](img/clone-repo.png)

# Quarto render usage

There are two ways to make the render:

## Using [Apptainer](https://apptainer.org/docs/admin/main/installation.html) containers

First download the container image for your language of choice and your CPU architecture:

All downloads are available on this link :

[https://filesender.renater.fr/?s=download&token=097272f1-f3a6-40ba-98b9-d517e27d2f80](https://filesender.renater.fr/?s=download&token=097272f1-f3a6-40ba-98b9-d517e27d2f80)

### Apptainer usage

```shell
apptainer run --writable-tmpfs
```

Example for R:

```shell
apptainer run --writable-tmpfs ./jds2025-workshop-R.sif quarto render
```

## Environment installation (for advanced users)

R
:
```shell
Rscript -e 'install.packages("renv"); renv::restore()'
```

Python/pip
:
```shell
pip install -r requirements.txt
```

Python/conda (we recommend [micromamba](https://mamba.readthedocs.io/en/latest/installation/micromamba-installation.html))
:
```shell
conda env create -f environment.yml
```

```shell
quarto add computorg/computo-quarto-extension
```