コード例 #1
0
ファイル: models.py プロジェクト: sean-v8/RMG-website
    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
ファイル: models.py プロジェクト: mliu49/RMG-website
 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)