Reaction Network is a Python package for predicting likely inorganic chemical reaction pathways using graph theoretical methods. Project led by @mattmcdermott (formerly at Berkeley Lab).
When from_structure is called using a structure object with Species in its composition as input, the resulting GibbsComputedEnergy object will have a composition with Species objects. This will then cause creation of phase diagrams using that entry to fail to identify the correct chemsys.
This could be fixed by changing line 273 in gibbs.py to;
composition = Composition(structure.composition).element_composition
When from_structure is called using a structure object with Species in its composition as input, the resulting GibbsComputedEnergy object will have a composition with Species objects. This will then cause creation of phase diagrams using that entry to fail to identify the correct chemsys. This could be fixed by changing line 273 in gibbs.py to; composition = Composition(structure.composition).element_composition