Skip to content

Commit cd89bcd

Browse files
committed
Add fragment module for rmstest
1 parent 4e8274c commit cd89bcd

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/rmstest.jl

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
11
using PyCall
22
const Chem = PyNULL()
33
const molecule = PyNULL()
4+
const fragment = PyNULL()
45
const pydot = PyNULL()
56
copy!(Chem,pyimport_conda("rdkit.Chem","rdkit","rmg"))
67
try
78
copy!(molecule, pyimport("rmgpy.molecule"))
9+
copy!(fragment, pyimport("rmgpy.molecule.fragment"))
810
catch e
911
copy!(molecule, pyimport_conda("molecule.molecule", "rmgmolecule", "hwpang"))
12+
copy!(fragment, pyimport_conda("molecule.molecule.fragment", "rmgmolecule", "hwpang"))
1013
end
1114
copy!(pydot,pyimport_conda("pydot","pydot","rmg"))
1215

0 commit comments

Comments
 (0)