예제 #1
0
    def createOutput(self):
        """
        Generate output html file from the path containing chemkin and dictionary files.
        """
        from rmgpy.chemkin import saveHTMLFile

        saveHTMLFile(self.path)
예제 #2
0
 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)
예제 #3
0
 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)