Skip to content

Commit

Permalink
set links
Browse files Browse the repository at this point in the history
  • Loading branch information
njzjz authored Sep 3, 2024
1 parent 56e07ff commit b7057a9
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion docs/plugin.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Plugins

One can follow a simple example under `plugin_example/` directory to add their own format by creating and installing plugins.
It's critical to add the {class}`Format` class to `entry_points['dpdata.plugins']` in `pyproject.toml`:
It's critical to add the {class}`Format <dpdata.format.Format>` class to `entry_points['dpdata.plugins']` in `pyproject.toml`:

```toml
[project.entry-points.'dpdata.plugins']
Expand Down
6 changes: 3 additions & 3 deletions docs/systems/bond_order_system.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

## BondOrderSystem
A new class {class}`BondOrderSystem` which inherits from class {class}`System` is introduced in dpdata. This new class contains information of chemical bonds and formal charges (stored in `BondOrderSystem.data['bonds']`, `BondOrderSystem.data['formal_charges']`). Now BondOrderSystem can only read from .mol/.sdf formats, because of its dependency on rdkit (which means rdkit must be installed if you want to use this function). Other formats, such as pdb, must be converted to .mol/.sdf format (maybe with software like open babel).
A new class {class}`BondOrderSystem <dpdata.BondOrderSystem>` which inherits from class {class}`System <dpdata.System>` is introduced in dpdata. This new class contains information of chemical bonds and formal charges (stored in `BondOrderSystem.data['bonds']`, `BondOrderSystem.data['formal_charges']`). Now BondOrderSystem can only read from .mol/.sdf formats, because of its dependency on rdkit (which means rdkit must be installed if you want to use this function). Other formats, such as pdb, must be converted to .mol/.sdf format (maybe with software like open babel).
```python
import dpdata

Expand All @@ -12,7 +12,7 @@ system_2 = dpdata.BondOrderSystem(
) # read from .sdf file
```
In sdf file, all molecules must be of the same topology (i.e. conformers of the same molecular configuration).
`BondOrderSystem` also supports initialize from a {class}`rdkit.Chem.rdchem.Mol` object directly.
`BondOrderSystem <dpdata.BondOrderSystem>` also supports initialize from a {class}`rdkit.Chem.rdchem.Mol` object directly.
```python
from rdkit import Chem
from rdkit.Chem import AllChem
Expand All @@ -25,7 +25,7 @@ system = dpdata.BondOrderSystem(rdkit_mol=mol)
```

### Bond Order Assignment
The {class}`BondOrderSystem` implements a more robust sanitize procedure for rdkit Mol, as defined in {class}`dpdata.rdkit.santizie.Sanitizer`. This class defines 3 level of sanitization process by: low, medium and high. (default is medium).
The {class}`BondOrderSystem <dpdata.BondOrderSystem>` implements a more robust sanitize procedure for rdkit Mol, as defined in {class}`dpdata.rdkit.santizie.Sanitizer`. This class defines 3 level of sanitization process by: low, medium and high. (default is medium).
+ low: use `rdkit.Chem.SanitizeMol()` function to sanitize molecule.
+ medium: before using rdkit, the programm will first assign formal charge of each atom to avoid inappropriate valence exceptions. However, this mode requires the rightness of the bond order information in the given molecule.
+ high: the program will try to fix inappropriate bond orders in aromatic hetreocycles, phosphate, sulfate, carboxyl, nitro, nitrine, guanidine groups. If this procedure fails to sanitize the given molecule, the program will then try to call `obabel` to pre-process the mol and repeat the sanitization procedure. **That is to say, if you wan't to use this level of sanitization, please ensure `obabel` is installed in the environment.**
Expand Down
10 changes: 5 additions & 5 deletions docs/systems/system.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,20 +20,20 @@ or let dpdata infer the format (`vasp/poscar`) of the file from the file name ex
d_poscar = dpdata.System("my.POSCAR")
```
The number of atoms, atom types, coordinates are loaded from the `POSCAR` and stored to a data {class}`System` called `d_poscar`.
A data {class}`System` (a concept used by [deepmd-kit](https://github.com/deepmodeling/deepmd-kit)) contains frames that has the same number of atoms of the same type. The order of the atoms should be consistent among the frames in one {class}`System`.
A data {class}`System <dpdata.System>` (a concept used by [deepmd-kit](https://github.com/deepmodeling/deepmd-kit)) contains frames that has the same number of atoms of the same type. The order of the atoms should be consistent among the frames in one {class}`System <dpdata.System>`.
It is noted that `POSCAR` only contains one frame.
If the multiple frames stored in, for example, a `OUTCAR` is wanted,
```python
d_outcar = dpdata.LabeledSystem("OUTCAR")
```
The labels provided in the `OUTCAR`, i.e. energies, forces and virials (if any), are loaded by {class}`LabeledSystem`. It is noted that the forces of atoms are always assumed to exist. {class}`LabeledSystem` is a derived class of {class}`System`.
The labels provided in the `OUTCAR`, i.e. energies, forces and virials (if any), are loaded by {class}`LabeledSystem <dpdata.LabeledSystem>`. It is noted that the forces of atoms are always assumed to exist. {class}`LabeledSystem <dpdata.LabeledSystem>` is a derived class of {class}`System <dpdata.System>`.

The {class}`System` or {class}`LabeledSystem` can be constructed from the following file formats with the `format key` in the table passed to argument `fmt`:
The {class}`System <dpdata.System>` or {class}`LabeledSystem <dpdata.LabeledSystem>` can be constructed from the following file formats with the `format key` in the table passed to argument `fmt`:



### Access data
These properties stored in {class}`System` and {class}`LabeledSystem` can be accessed by operator `[]` with the key of the property supplied, for example
These properties stored in {class}`System <dpdata.System>` and {class}`LabeledSystem <dpdata.LabeledSystem>` can be accessed by operator `[]` with the key of the property supplied, for example
```python
coords = d_outcar["coords"]
```
Expand All @@ -52,7 +52,7 @@ Available properties are (nframe: number of frames in the system, natoms: total


### Dump data
The data stored in {class}`System` or {class}`LabeledSystem` can be dumped in 'lammps/lmp' or 'vasp/poscar' format, for example:
The data stored in {class}`System <dpdata.System>` or {class}`LabeledSystem <dpdata.LabeledSystem>` can be dumped in 'lammps/lmp' or 'vasp/poscar' format, for example:
```python
d_outcar.to("lammps/lmp", "conf.lmp", frame_idx=0)
```
Expand Down

0 comments on commit b7057a9

Please sign in to comment.