mirror of
https://github.com/modelscope/modelscope.git
synced 2025-12-16 16:27:45 +01:00
12 lines
546 B
Bash
12 lines
546 B
Bash
apt-get update && apt-get install -y hmmer kalign curl cmake \
|
|
&& apt-get clean && rm -rf /var/lib/apt/lists/* \
|
|
&& git clone --branch v3.3.0 https://github.com/soedinglab/hh-suite.git /tmp/hh-suite \
|
|
&& mkdir /tmp/hh-suite/build \
|
|
&& pushd /tmp/hh-suite/build \
|
|
&& cmake -DCMAKE_INSTALL_PREFIX=/opt/hhsuite .. \
|
|
&& make -j 4 && make install \
|
|
&& ln -s /opt/hhsuite/bin/* /usr/bin \
|
|
&& popd \
|
|
&& rm -rf /tmp/hh-suite \
|
|
&& pip install --no-cache-dir biopython ipdb
|