Esempio n. 1
0
    def setup_project(self, mkdirs=False):
        """Retrieves any missing flagfiles and sets the default flags for the tab.

        Args:
            mkdirs (bool, optional): Whether or not to make the directories where the
                outputs are saved by default.
        """
        common.setup_project(self, mkdirs)
Esempio n. 2
0
    def setup_project(self, mkdirs=False, run_thresholds=True):
        """Retrieves any missing flagfiles and sets the default flags for the tab.

        Args:
            mkdirs (bool, optional): Whether or not to make the directories where the
                outputs are saved by default.
            run_thresholds (bool, optional): Whether or not to run thresholds on start.
        """
        common.setup_project(self, mkdirs)
        if run_thresholds:
            self.run_thresholds("color_variance")