コード例 #1
0
ファイル: flowviewer.py プロジェクト: xue-smile/abipy
 def OnShowLogs(self, event):
     """Show all the log files of the selected `Workflow`."""
     work = self.GetSelectedWork()
     if work is None: return
     TextNotebookFrame.from_files_and_dir(self,
                                          dirpath=work.workdir,
                                          walk=True,
                                          wildcard="*.log").Show()
コード例 #2
0
ファイル: flowviewer.py プロジェクト: xue-smile/abipy
 def OnShowJobOutErrs(self, event):
     """Show all the queue output/error files files of the selected `Workflow`."""
     work = self.GetSelectedWork()
     if work is None: return
     TextNotebookFrame.from_files_and_dir(self,
                                          dirpath=work.workdir,
                                          walk=True,
                                          wildcard="*.qout|*.qerr").Show()
コード例 #3
0
ファイル: flowviewer.py プロジェクト: davidwaroquiers/abipy
 def OnShowLogs(self, event):
     """Show all the log files of the selected `Workflow`."""
     work = self.GetSelectedWork() 
     if work is None: return
     TextNotebookFrame.from_files_and_dir(self, dirpath=work.workdir, walk=True, wildcard="*.log").Show()
コード例 #4
0
ファイル: flowviewer.py プロジェクト: davidwaroquiers/abipy
 def OnShowJobOutErrs(self, event):
     """Show all the queue output/error files files of the selected `Workflow`."""
     work = self.GetSelectedWork() 
     if work is None: return
     TextNotebookFrame.from_files_and_dir(self, dirpath=work.workdir, walk=True, wildcard="*.qout|*.qerr").Show()
コード例 #5
0
ファイル: flowviewer.py プロジェクト: srirampr/abipy
 def OnShowJobScripts(self, event):
     """Show all the job script files of the selected `Workflow`."""
     work = self.GetSelectedWork() 
     if work is None: return
     frame = TextNotebookFrame.from_files_and_dir(self, dirpath=work.workdir, walk=True, wildcard="*.sh")
     frame.Show()