计算生物学环境搭建

Python Setup

Anaconda

  1. install conda in Ubuntu/Debian

    1
    2
    3
    # Download latest Anaconda (2024.02-1)
    wget https://repo.anaconda.com/archive/Anaconda3-2024.02-1-Linux-x86_64.sh
    bash Anaconda3-2024.02-1-Linux-x86_64.sh
  2. install conda in Fedora/RHEL/CentOS

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    # Method 1: Direct download and install
    wget https://repo.anaconda.com/archive/Anaconda3-2024.02-1-Linux-x86_64.sh
    bash Anaconda3-2024.02-1-Linux-x86_64.sh

    # Method 2: Using dnf package manager (recommended for Fedora)
    sudo dnf install conda
    # or install Anaconda Navigator
    sudo dnf install anaconda-navigator

    # Method 3: Using Mambaforge (lightweight alternative)
    curl -L -O https://github.com/conda-forge/miniforge/releases/latest/download/Mambaforge-Linux-x86_64.sh
    bash Mambaforge-Linux-x86_64.sh

Python environment

  1. create a new environment with specific Python version

    1
    conda create -n myenv python=3.12
  2. create a new environment with specific Python version and packages

    1
    conda create -n myenv python=3.12 numpy pandas matplotlib
  3. create a new environment with specific Python version and packages from a YAML file

    1
    conda env create -f environment.yml
  4. remove an environment

    1
    conda env remove -n myenv
  5. copy an environment

    1
    conda create -n newenv --clone myenv
  6. export an environment to a YAML file

    1
    conda env export -n myenv > environment.yml

Docking Setup

AutoDock Vina

vina available at https://github.com/ccsb-scripps/AutoDock-Vina

  • different versions will have different arguments and scoring value!

AutoDock-GPU

AutoDock available at https://github.com/ccsb-scripps/AutoDock-GPU

ADFRSuite

ADFRSuite available at https://ccsb.scripps.edu/adfr/downloads/

AutoDock Tools

AutoDock Tools available at https://autodocksuite.scripps.edu/adt/

GROMACS Setup

Install


计算生物学环境搭建
https://bhm-bob.github.io/2026/02/25/tech_notes/CompBio/setup/
作者
BHM-Bob G
发布于
2026年2月25日
许可协议