Thanks!! I double checked all my spacings/column designations and found the issue which was a residue-name mismatch between my .pdb file and what I called the molecule in the bonds and angles definition.
I'm also trying to implement the Improper Angle Constraint, and am getting the following error message:
2020-04-29 15:42:28 - fullrmc <INFO> Given constraints will be added to all normal frames in engine
C:\Users\emily\Anaconda3\lib\site-packages\fullrmc\Core\Collection.py:883: RuntimeWarning: invalid value encountered in true_divide
gr = 1+Gr[:,1]/(-slope*Gr[:,0])
C:/Users/emily/Desktop/Co cubane RMC with bonds and angles with water shell/run.py:56: RuntimeWarning: invalid value encountered in greater
dataWeights[:np.nonzero(gr[:,1]>0)[0][0]] = 0
2020-04-29 15:42:29 - fullrmc <ERROR> angle third items can't be the same
Traceback (most recent call last):
File "<ipython-input-1-5e79fabbc72b>", line 1, in <module>
runfile('C:/Users/emily/Desktop/Co cubane RMC with bonds and angles with water shell/run.py', wdir='C:/Users/emily/Desktop/Co cubane RMC with bonds and angles with water shell')
File "C:\Users\emily\Anaconda3\lib\site-packages\spyder_kernels\customize\spydercustomize.py", line 827, in runfile
execfile(filename, namespace)
File "C:\Users\emily\Anaconda3\lib\site-packages\spyder_kernels\customize\spydercustomize.py", line 110, in execfile
exec(compile(f.read(), filename, 'exec'), namespace)
File "C:/Users/emily/Desktop/Co cubane RMC with bonds and angles with water shell/run.py", line 287, in <module>
('N00Q','C00T','C017','C010',-15,15)]})
File "C:\Users\emily\Anaconda3\lib\site-packages\fullrmc\Constraints\ImproperAngleConstraints.py", line 460, in create_angles_by_definition
raise Exception(err)
Exception: Nonewhere my constraint definition looks like this:
IA_CONSTRAINT.create_angles_by_definition( anglesDefinition={"UNK": [ ('C00Z','C00S','C019','C018', -15, 15),
('C016','C019','C016','N00P', -15, 15),
('N00P','C00S','C019','C018', -15, 15),
('C013','C01D','C00Y','C00U', -15, 15),
('C01A','C01D','C00Y','C00U', -15, 15),
('N00O','C01D','C00Y','C00U', -15, 15),
('C01H','C01B','C01E','C01F', -15, 15),
('C012','C01B','C01E','C01F',-15, 15),
('N00R','C01B','C01E','C01F',-15, 15),
('C01G','C00T','C017','C010',-15,15),
('C00V','C00T','C017','C010',-15,15),
('N00Q','C00T','C017','C010',-15,15)]})
any ideas what could be going on? Thanks so much