def createOutput(self): """ Generate output html file from the path containing chemkin and dictionary files. """ from rmgpy.chemkin import saveHTMLFile saveHTMLFile(self.path)
def createOutput(self): """ Generate output html file from the path containing chemkin and dictionary files. """ from rmgpy.chemkin import saveHTMLFile if self.Foreign: # Chemkin file was not from RMG, do not parse the comments when visualizing the file. saveHTMLFile(self.path, readComments=False) else: saveHTMLFile(self.path)
def createOutput(self): """ Generate output html file from the path containing chemkin and dictionary files. """ from rmgpy.chemkin import saveHTMLFile if self.Foreign: # Chemkin file was not from RMG, do not parse the comments when visualizing the file. saveHTMLFile(self.path, readComments = False) else: saveHTMLFile(self.path)