Skip to content

Commit a10748c

Browse files
author
Daniel Schwalbe-Koda
committed
change name in readme
1 parent 3bb6ddf commit a10748c

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Molecular Docking Tool
1+
# VOID: Voronoi Organic-Inorganic Docker
22

3-
The Molecular Docking Tool (`moldocker`) is a software designed to create conformations of molecules docked inside crystal structures. The package provides a library and scripts that include:
3+
The VOID: Voronoi Organic-Inorganic Docker package (`VOID`) is a software designed to create conformations of molecules docked inside crystal structures. The package provides a library and scripts that include:
44
- Sampling of the space using Voronoi diagrams
55
- Geometrical fitness functions
66
- Batched docking using tensorial operations
@@ -16,16 +16,16 @@ This software requires the following packages:
1616

1717
```bash
1818
conda upgrade conda
19-
conda create -n moldocker python=3.7 numpy networkx pymatgen>=2020.3.2 scikit-learn -c conda-forge
19+
conda create -n VOID python=3.7 numpy networkx pymatgen>=2020.3.2 scikit-learn -c conda-forge
2020
```
2121

22-
You need to activate the `moldocker` environment to install the `moldocker` package:
22+
You need to activate the `VOID` environment to install the `VOID` package:
2323

2424
```bash
25-
conda activate moldocker
25+
conda activate VOID
2626
```
2727

28-
Finally, install the `moldocker` package by running:
28+
Finally, install the `VOID` package by running:
2929

3030
```bash
3131
pip install .
@@ -38,10 +38,10 @@ Zeo++ and its interface to pymatgen are required to use the Voronoi sampler. Ple
3838
## Usage
3939

4040
### Command line
41-
The simplest way to use the `moldocker` package is to use the premade script `dock.py` (in the `scripts`) folder. As an example, we provide a molecule and a zeolite in [moldocker/tests/files](moldocker/tests/files). With `moldocker` installed, you can dock the molecule to the zeolite using the following command:
41+
The simplest way to use the `VOID` package is to use the premade script `dock.py` (in the `scripts`) folder. As an example, we provide a molecule and a zeolite in [VOID/tests/files](VOID/tests/files). With `VOID` installed, you can dock the molecule to the zeolite using the following command:
4242

4343
```bash
44-
dock.py moldocker/tests/files/{AFI.cif,molecule.xyz} -o ~/Desktop/docked -d batch -s voronoi_cluster -f min_distance
44+
dock.py VOID/tests/files/{AFI.cif,molecule.xyz} -o ~/Desktop/docked -d batch -s voronoi_cluster -f min_distance
4545
```
4646

4747
This will dock the molecule contained in `molecule.xyz` to the zeolite in `AFI.cif` using the batch docker, Voronoi sampler with predefined number of clusters and a fitness function that considers the minimum distance between the host and the guest. All output files are saved in the folder `~/Desktop/docked`. All input files for crystals and molecules supported by pymatgen can be given as inputs, including [xyz, Gaussian inputs and outputs for molecules](https://pymatgen.org/pymatgen.core.structure.html#pymatgen.core.structure.IMolecule.from_file) and [CIF, VASP inputs and outputs, CSSR and others for crystals](https://pymatgen.org/pymatgen.core.structure.html#pymatgen.core.structure.IStructure.from_file).

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@ def read(fname):
2020
python_requires=">=3.5",
2121
install_requires=["numpy", "networkx", "pymatgen>=2020.3.2", "scikit-learn"],
2222
license="MIT",
23-
description="Voronoi Organic-Inorganic Docking",
23+
description="Voronoi Organic-Inorganic Docker",
2424
long_description=read("README.md"),
2525
)

0 commit comments

Comments
 (0)