Commit 3c417809 authored by BO ZHANG's avatar BO ZHANG 🏀
Browse files

update Pipeline

parent e9a8847b
Pipeline #2609 failed with stage
in 0 seconds
...@@ -11,9 +11,9 @@ Modified-History: ...@@ -11,9 +11,9 @@ Modified-History:
2023-12-15, Bo Zhang, add module header 2023-12-15, Bo Zhang, add module header
""" """
import json import json
import subprocess
import os import os
import shutil import shutil
import subprocess
import traceback import traceback
import warnings import warnings
from typing import Callable, NamedTuple, Optional, Any from typing import Callable, NamedTuple, Optional, Any
...@@ -70,6 +70,7 @@ class Pipeline: ...@@ -70,6 +70,7 @@ class Pipeline:
filter_warnings: bool = False, filter_warnings: bool = False,
dfs: bool = True, dfs: bool = True,
ccds: bool = False, ccds: bool = False,
clean_output_before_run: bool = True,
**kwargs: Any, **kwargs: Any,
): ):
# get pipeline information from env vars # get pipeline information from env vars
...@@ -85,6 +86,9 @@ class Pipeline: ...@@ -85,6 +86,9 @@ class Pipeline:
self.ccds_root = ccds_root self.ccds_root = ccds_root
self.ccds_cache = ccds_cache self.ccds_cache = ccds_cache
if clean_output_before_run:
self.clean_output()
# additional parameters # additional parameters
self.kwargs = kwargs self.kwargs = kwargs
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment