-
Notifications
You must be signed in to change notification settings - Fork 136
Expand file tree
/
Copy pathdev_env.yml
More file actions
28 lines (24 loc) · 824 Bytes
/
dev_env.yml
File metadata and controls
28 lines (24 loc) · 824 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# This file is used to provide a development environment for Augur.
# <https://docs.conda.io/projects/conda/en/latest/user-guide/tasks/manage-environments.html#creating-an-environment-file-manually>
# Channel priority should be set per package.
channels:
- bioconda
- conda-forge
# While Augur is available as a Conda package, it is not listed here.
# Augur itself and its Python dependencies should be installed via pip.
#
# Version constraints should mirror the Biopython recipe.
# <https://github.com/bioconda/bioconda-recipes/blob/-/recipes/augur/meta.yaml>
dependencies:
- conda-forge::python >=3.10
# Augur's non-Python dependencies
- mafft
- raxml
- fasttree
- iqtree
- vcftools
- seqkit
- conda-forge::sqlite >=3.39,<4
# Tools used in tests
- conda-forge::jq
- conda-forge::tsv-utils