dockECR

(★ 28)

dockECR: open consensus docking and ranking protocol for virtual screening of small molecules

File Explorer

  • config_5re4.txt
  • config_6y2e.txt
  • dockECR.py
  • LICENSE
  • list_ligands.txt
  • list_software.txt
  • list_targets.txt
  • README.md

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

conda config

View Details ▼

Modify configuration values in `.condarc`.

conda config --show

Show all configuration values:

conda config --show {{config_option}}

Show current value of a configuration option:

conda config --set {{key}} {{value}}

Set a configuration value:

🔍

conda install

View Details ▼

Install packages into an existing conda environment.

conda install {{package1 package2 ...}}

Install one or more package into the currently active conda environment:

conda install {{[-c|--channel]}} conda-forge {{package}}

Install a single package into the currently active conda environment using channel conda-forge:

conda install {{[-c|--channel]}} conda-forge --override-channels {{package}}

Install a single package into the currently active conda environment using channel conda-forge and ignoring other channels:

🔍

python

View Details ▼

Python language interpreter.

python

Start a REPL (interactive shell):

python {{path/to/file.py}}

Execute a specific Python file:

python -i {{path/to/file.py}}

Execute a specific Python file and start a REPL:

// repository documentation