Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

reference to the presentation of xyz2mol #35

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 12 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Convert Cartesian coordinates to one or more molecular graphs

Given Cartesian coordinates in the form of a `.xyz` file, the code constructs a list of one or more molecular graphs. In cases where there are several possible resonance forms xyz2mol returns a list of all, otherwise just a list of one.
Given Cartesian coordinates in the form of a `.xyz` file, the code constructs a
list of one or more molecular graphs. In cases where there are several possible
resonance forms xyz2mol returns a list of all, otherwise just a list of one.

This code is based on the work of
DOI: [10.1002/bkcs.10334](http://dx.doi.org/10.1002/bkcs.10334)
Expand All @@ -11,13 +13,19 @@ DOI: [10.1002/bkcs.10334](http://dx.doi.org/10.1002/bkcs.10334)
Bull. Korean Chem. Soc.
2015, Vol. 36, 1769-1777

At the 2020 RDKit Virtual UGM, Jan H. Jensen presented the tool with his talk
"Dealing with organometallic molecules in RDKit"
([slides](https://github.com/rdkit/UGM_2020/blob/master/Presentations/JanJensen.pdf),
[video recording](https://www.youtube.com/watch?v=HD6IpXMVKeo)).

## Setup

Depends on `rdkit`, `numpy`, and `networkx`. Easiest to setup via anaconda/conda:

`conda install -c conda-forge xyz2mol`

Setup for a standalone enviroment is avaliable via `Makefile`. To setup and test simply clone the project and make.
Setup for a standalone enviroment is avaliable via `Makefile`. To setup and test
simply clone the project and make.

git clone https://github.com/jensengroup/xyz2mol

Expand All @@ -26,7 +34,8 @@ and then run the following the the `xyz2mol` folder
make
make test

Note, it is also possible to run the code without the `networkx` dependencies, but is slower.
Note, it is also possible to run the code without the `networkx` dependencies,
but is slower.


## Example usage
Expand Down