Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
OpenFold
Commits
74675b73
Commit
74675b73
authored
Jan 20, 2022
by
Karl Leswing
Browse files
Ready For PR
parent
b45f6234
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
35 additions
and
18 deletions
+35
-18
environment.yml
environment.yml
+30
-0
scripts/install_third_party_dependencies.sh
scripts/install_third_party_dependencies.sh
+5
-18
No files found.
environment.yml
0 → 100644
View file @
74675b73
name
:
openfold_venv
channels
:
-
conda-forge
-
bioconda
-
pytorch
dependencies
:
-
pip
:
-
biopython==1.79
-
deepspeed==0.5.3
-
dm-tree==0.1.6
-
ml-collections==0.1.0
-
numpy==1.21.2
-
PyYAML==5.4.1
-
requests==2.26.0
-
scipy==1.7.1
-
tqdm==4.62.2
-
typing-extensions==3.10.0.2
-
pytorch_lightning==1.5.0
-
nvidia-pyindex
-
nvidia-dllogger
-
pytorch::pytorch=1.10.*
-
conda-forge::python=3.7
-
conda-forge::setuptools=59.5.0
-
conda-forge::pip
-
conda-forge::openmm=7.5.1
-
conda-forge::pdbfixer
-
bioconda::aria2
-
bioconda::hmmer==3.3.2
-
bioconda::hhsuite==3.3.0
-
bioconda::kalign2==2.04
scripts/install_third_party_dependencies.sh
View file @
74675b73
#!/bin/bash
export
CONDA_INSTALL_URL
=
${
CONDA_INSTALL_URL
:-
"https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh"
}
source
scripts/vars.sh
# Install Miniconda locally
rm
-rf
lib/conda
rm
-f
/tmp/Miniconda3-latest-Linux-x86_64.sh
wget
-q
-P
/tmp
\
https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh
\
wget
-P
/tmp
\
"
${
CONDA_INSTALL_URL
}
"
\
&&
bash /tmp/Miniconda3-latest-Linux-x86_64.sh
-b
-p
lib/conda
\
&&
rm
/tmp/Miniconda3-latest-Linux-x86_64.sh
# Grab conda-only packages
PATH
=
lib/conda/bin:
$PATH
conda update
-qy
conda
\
&&
conda create
--name
$ENV_NAME
-y
python
==
3.7
\
&&
source
lib/conda/etc/profile.d/conda.sh
\
&&
conda activate
$ENV_NAME
\
&&
pip
install
-r
requirements.txt
\
&&
conda
install
-qy
-c
conda-forge
\
openmm
=
7.5.1
\
pdbfixer
# Comment out if you have these already installed on your system, for example in /usr/bin/
conda
install
-c
bioconda aria2
conda
install
-y
-c
bioconda
hmmer
==
3.3.2
hhsuite
==
3.3.0
kalign2
==
2.04
pip
install
nvidia-pyindex
pip
install
nvidia-dllogger
export
PATH
=
lib/conda/bin:
$PATH
conda
env
create
--name
=
${
ENV_NAME
}
-f
environment.yml
# Install DeepMind's OpenMM patch
OPENFOLD_DIR
=
$PWD
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment