Beispiel #1
0
    def cleanup(self):
        """
        remove temporary files
        """
        Executor.cleanup( self )

        if not self.debug:
            T.tryRemove( self.inp1 )
            T.tryRemove( self.inp2 )
Beispiel #2
0
    def cleanup(self):
        """
        remove temporary files
        """
        Executor.cleanup(self)

        if not self.debug:
            T.tryRemove(self.inp1)
            T.tryRemove(self.inp2)
Beispiel #3
0
    def deletePdbs(self):
        """
        Deletes the pdb-files in the list from disc
        """
        for key in self.dic.keys():

            for model in self.dic[key]:
                ## only remove files created by PymolInput!
                if model.temporary:
                    T.tryRemove(model.fname)
Beispiel #4
0
 def cleanTmp(self):
     """
     Remove temporary file if created with :meth:`writeTmp`
     """
     import tools as T
     if self.tmpfile:
         return T.tryRemove(self.tmpfile)
Beispiel #5
0
 def cleanUp(self):
     T.tryRemove( self.fout )
Beispiel #6
0
 def cleanUp(self):
     if self.f_out: T.tryRemove(self.f_out, tree=1)
Beispiel #7
0
 def cleanUp(self):
     T.tryRemove( self.feps )
Beispiel #8
0
 def cleanUp(self):
     T.tryRemove(self.outPath + '/1A2P_waters.pdb')
     T.tryRemove(self.outPath + '/1A2A_seg.PDB')
Beispiel #9
0
 def cleanUp(self):
     T.tryRemove(self.feps)
Beispiel #10
0
    def cleanup(self):
        if not self.debug:
            T.tryRemove(self.foutName)
            self.deletePdbs()

        Executor.cleanup(self)
Beispiel #11
0
 def cleanUp(self):
     T.tryRemove(self.cleaner.log.fname)
Beispiel #12
0
 def cleanUp(self):
     T.tryRemove( self.outPath + '/1A2P_waters.pdb' )
     T.tryRemove( self.outPath + '/1A2A_seg.PDB' )
Beispiel #13
0
 def cleanUp(self):
     T.tryRemove(self.testdir, tree=1)
Beispiel #14
0
 def cleanUp(self):
     T.tryRemove( self.cleaner.log.fname )