-
-
Notifications
You must be signed in to change notification settings - Fork 183
Expand file tree
/
Copy pathconda-env.yml
More file actions
30 lines (30 loc) · 723 Bytes
/
conda-env.yml
File metadata and controls
30 lines (30 loc) · 723 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
29
30
# Usage:
# conda env create -f conda-env.yml
# or:
# conda env update -v -n [base] -f conda-env.yml [--prune]
# This does not install CNVkit itself. Use pip to install either a stable release from
# PyPI (pip install cnvkit), or this local repo (pip install -e .).
name: cnvkit
channels:
- conda-forge
- bioconda
- defaults
dependencies:
- python>=3.10
- atlas # [not osx]
- bioconductor-dnacopy
- biopython >=1.85
- hypothesis
- matplotlib >=3.9.0
- mypy
- numpy >=2.2.3
- pandas >=2.2.3
- pyparsing >=3.1.2,<3.3.0
- pyfaidx >=0.8.1.3
- pysam >=0.23.0
- pytest
- reportlab >=4.3.1
- ruff
- scikit-learn >=1.5.0
- scipy >=1.14.1
- tox