Skip to content

Commit

Permalink
Fix select statement
Browse files Browse the repository at this point in the history
  • Loading branch information
lmiq authored Sep 30, 2022
1 parent 67faaaa commit 1124239
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/src/contrib.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ using:
```julia
using PDBTools, ComplexMixtures
atoms = readPDB("system.pdb")
protein = select(atoms,"protein",nmols=1)
water = select(atoms,"water",natomspermol=3)
protein = select(atoms,"protein")
water = select(atoms,"water")
solute = Selection(protein,nmols=1)
solvent = Selection(water,natomspermol=3)
```
Expand Down

0 comments on commit 1124239

Please sign in to comment.