-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenvironment.yml
More file actions
126 lines (105 loc) · 4.36 KB
/
environment.yml
File metadata and controls
126 lines (105 loc) · 4.36 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
name: raptor
channels:
- conda-forge
- defaults
dependencies:
# ==========================================================================
# Python - v2.2.1 supports Python 3.8-3.12
# ==========================================================================
- python>=3.8,<3.13
# ==========================================================================
# Core Scientific Computing
# ==========================================================================
- numpy>=1.19.0
- pandas>=1.1.0
- scipy>=1.5.0
- scikit-learn>=0.24.0
- joblib>=1.0.0
# ==========================================================================
# Visualization
# ==========================================================================
- matplotlib>=3.3.0
- seaborn>=0.11.0
- plotly>=5.0.0
# ==========================================================================
# Statistics
# ==========================================================================
- statsmodels>=0.12.0
# ==========================================================================
# Configuration Management
# ==========================================================================
- pyyaml>=5.3.0
- toml>=0.10.0 # NEW in v2.2.0 - TOML config support
# ==========================================================================
# CLI and Utilities
# ==========================================================================
- click>=7.0
- colorama>=0.4.0
- tqdm>=4.50.0
# ==========================================================================
# Optional: Dashboard (comment out if not needed)
# ==========================================================================
- streamlit>=1.20.0
- altair>=4.0.0
# ==========================================================================
# Optional: Development Tools (comment out for production)
# ==========================================================================
# - pytest>=6.0.0
# - pytest-cov>=2.10.0
# - pytest-mock>=3.6.0
# - black>=21.0
# - flake8>=3.8.0
# - isort>=5.0.0
# - mypy>=0.900
# ==========================================================================
# Optional: Documentation (comment out if not building docs)
# ==========================================================================
# - sphinx>=3.5.0
# - sphinx_rtd_theme>=0.5.0
# - myst-parser>=0.15.0
# ==========================================================================
# Pip packages and RAPTOR installation
# ==========================================================================
- pip
- pip:
# Install RAPTOR from PyPI
- raptor-rnaseq>=2.2.1
# Optional: Advanced features (uncomment if needed)
# - bayesian-optimization>=1.2.0 # Bayesian optimization for Module 8
# - jinja2>=3.0.0 # PDF report generation
# - markdown>=3.3.0 # PDF report generation
# - psutil>=5.8.0 # Resource monitoring
# - colorlog>=6.6.0 # Colored logging
# =============================================================================
# USAGE INSTRUCTIONS
# =============================================================================
# Create environment:
# conda env create -f environment.yml
# Activate environment:
# conda activate raptor
# Update environment:
# conda env update -f environment.yml --prune
# Remove environment:
# conda env remove -n raptor
# Export current environment:
# conda env export > environment-current.yml
# =============================================================================
# NOTES
# =============================================================================
# This is the CORE environment for RAPTOR Python package only.
#
# Does NOT include:
# - Bioinformatics tools (STAR, Salmon, Kallisto, etc.)
# - R packages (DESeq2, edgeR, limma)
# - Development tools (by default)
# - Documentation tools (by default)
#
# For full bioinformatics environment, see: environment-full.yml
#
# External tools required for pipelines (install separately):
# - STAR, HISAT2, Salmon, Kallisto (for alignment/quantification)
# - Samtools, featureCounts, RSEM (for post-processing)
# - R with DESeq2, edgeR, limma (for differential expression)
#
# Install R packages:
# Rscript raptor/external_modules/module6_de_analysis/r_scripts/install_packages.R