generated from carpentries/workbench-template-rmd
-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Directions for serving locally, alongside a conda env
- Loading branch information
Showing
2 changed files
with
91 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
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,24 @@ | ||
# Conda environment for the HPC Carpentry Workflows lesson | ||
# | ||
--- | ||
name: workflows | ||
channels: | ||
- conda-forge # provides most software | ||
- bioconda # provides Snakemake | ||
dependencies: | ||
- git # version control system | ||
- libxslt # {sandpaper} build dependency | ||
- matplotlib # powerful Python plotting library | ||
- mpi4py # distributed-memory parallel library for Python | ||
- numpy # numerical algorithms for Python | ||
- pandoc # document converter | ||
- perl # pandoc/tinytex dependency | ||
- pip # Python package manager | ||
- python=3 # Snakemake runs Python code natively | ||
- r-base # basic R installation | ||
- r-essentials # essential R packages | ||
- radian # more colorful R REPL | ||
- snakemake # workflow manager | ||
- pip: # list of PyPI packages (not in Conda) | ||
- amdahl # HPC Carpentry gray-box parallel program | ||
- termplotlib # ASCII art plots |