diff --git a/README.md b/README.md index b4df224..234062e 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/binder/environment-dev.yml b/binder/environment-dev.yml new file mode 100644 index 0000000..df0122d --- /dev/null +++ b/binder/environment-dev.yml @@ -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 + + + \ No newline at end of file diff --git a/binder/environment.yml b/binder/environment.yml index ed10191..2b76364 100644 --- a/binder/environment.yml +++ b/binder/environment.yml @@ -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 - \ No newline at end of file