Esempio n. 1
0
    def _set_rel_paths(self):
        """Convert all file/directory locations to paths relative to the current working directory.

        BASEML requires that all paths specified in the control file be
        relative to the directory from which it is called rather than
        absolute paths.
        """
        Paml._set_rel_paths(self)
        if self.tree is not None:
            self._rel_tree = _relpath(self.tree, self.working_dir)
Esempio n. 2
0
 def _set_rel_paths(self):
     """Convert all file/directory locations to paths relative to the current working directory.
     
     CODEML requires that all paths specified in the control file be
     relative to the directory from which it is called rather than 
     absolute paths.
     """
     Paml._set_rel_paths(self)
     if self.tree is not None:
         self._rel_tree = _relpath(self.tree, self.working_dir)