Skip to content

Commit

Permalink
Merge pull request #5 from data-fun/fix-env
Browse files Browse the repository at this point in the history
Fix production environment and create dev env
  • Loading branch information
Thibault-Poinsignon authored Apr 24, 2023
2 parents 898faf9 + 581950f commit 7236573
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 20 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ mamba env create -f binder/environment.yml
Load conda environment:

```bash
conda activate 3d-genome-builder
conda activate 3DGB
```

### Download HiC-Pro Singularity image
Expand Down
34 changes: 34 additions & 0 deletions binder/environment-dev.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: 3DGB-dev
# channels priority
# see https://bioconda.github.io/
# conda-forge has highest priority
channels:
- defaults
- bioconda
- conda-forge
dependencies:
- python=3.10
# Data analysis
- pandas
- scipy
- matplotlib
- jupyterlab
# Snakemake
- snakemake-minimal
# Build DAG with Snakemake
- graphviz
# Code formating
- black
- flake8
- pydocstyle
# FASTQ file manipulation
# https://anaconda.org/bioconda/seqkit
# https://bioinf.shenwei.me/seqkit/
- seqkit
# FASTA files manipulation
- biopython
# PDB files manipulation
- biopandas



20 changes: 1 addition & 19 deletions binder/environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,28 +7,10 @@ channels:
- bioconda
- conda-forge
dependencies:
- python=3.9
# Data analysis
- pandas
- scipy
- matplotlib
- jupyterlab
- python=3.10
# Snakemake
- snakemake-minimal
# Build DAG with Snakemake
- graphviz
# Code formating
- black
- flake8
- pydocstyle
# FASTQ file manipulation
# https://anaconda.org/bioconda/seqkit
# https://bioinf.shenwei.me/seqkit/
- seqkit
# FASTA files manipulation
- biopython
# PDB files manipulation
- biopandas



0 comments on commit 7236573

Please sign in to comment.