Since your reply, I've gotten a little python script up-and-running that does the rending for me, instead of using indigo-depict. However, I'm not sure how to change the S-group behavior... could you give me a little more info? The only rendering option I can find that mentions superatoms is render-superatom-mode, but when I try to change this to 'collapse' it crashes with this error:
indigo.IndigoException: 'red-black tree: insert(): key already present'
which I'm afraid I don't understand. I apologize if this is a trivial problem -- I don't know much python (and zero C++/java)... thanks very much in advance for your patience and for any tips you can give me.
Best,
Gabe
PS - here's my little script:
#!/usr/bin/python
import sys
import indigo_renderer
from indigo import *
indigo = Indigo()
renderer = indigo_renderer.IndigoRenderer(indigo)
mol1 = indigo.loadMoleculeFromFile(sys.argv[1])
print "\tmol weight: " + str(mol1.molecularWeight())
print "\trendering PNG..."
indigo.setOption("render-output-format","png")
#indigo.setOption("render-superatom-mode", "collapse") #<-- causes crash
indigo.setOption("render-margins",50,50)
mol1.layout()
renderer.renderToFile(mol1, sys.argv[1] + ".png")