-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenvironment_stats.yml
More file actions
58 lines (51 loc) · 1.16 KB
/
environment_stats.yml
File metadata and controls
58 lines (51 loc) · 1.16 KB
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
name: stats
channels:
- https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/bioconda
- https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge
- https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main
- https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
- defaults
dependencies:
# compilers
- gxx_linux-64
- gcc_linux-64
- gfortran_linux-64
- cmake
- pkg-config
# code languages environment
- python=3.12
- openjdk=11 # Hail JDK requirement
# bioinformatics tools
- seqkit
- fastqc
- plink
- plink2
- samtools
- bcftools
- vcftools
- bedtools
# math libraries
- hdf5
- h5py
# complex environment solving python packages
- numpy
- pandas
- scipy
- scikit-learn
- matplotlib
- seaborn
- statsmodels
- scanpy
- fastcluster
- PyYAML
# pip packages
- pip
- pip:
- hail # Conda environment pip fine-grained installation
- cookiecutter
- upsetplot
- -e . # Editable install of your own python_script package
# 1. can be created with:
# conda env create -f environment_stats.yml
# 2. or update an existing environment with:
# conda env update -f environment_stats.yml