Skip to content

Commit

Permalink
DAOTHER-9743 workflow tasks should not leave rxsb_xxxx directories in…
Browse files Browse the repository at this point in the history
… archive/deposit
  • Loading branch information
Ezra Peisach committed Oct 31, 2024
1 parent b4176ca commit 2741832
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion wwpdb/utils/wf/plugins/AnnotationUtils.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ class AnnotationUtils(UtilsBase):

def __init__(self, verbose=False, log=sys.stderr):
super(AnnotationUtils, self).__init__(verbose, log)
self.__cleanUp = False
self.__cleanUp = True
"""Flag to remove any temporary directories created by this class.
"""
#
Expand Down
2 changes: 1 addition & 1 deletion wwpdb/utils/wf/plugins/EmUtils.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ class EmUtils(UtilsBase):

def __init__(self, verbose=True, log=sys.stderr):
super(EmUtils, self).__init__(verbose, log)
self.__cleanUp = False
self.__cleanUp = True
"""Flag to remove any temporary directories created by this class.
"""

Expand Down
2 changes: 1 addition & 1 deletion wwpdb/utils/wf/plugins/ReportUtils.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ class ReportUtils(UtilsBase):
def __init__(self, verbose=False, log=sys.stderr):
super(ReportUtils, self).__init__(verbose, log)
# Flag to remove any temporary directories created by this class.
# self.__cleanUp = False
# self.__cleanUp = True
#

def combineLigandInfoOp(self, **kwArgs):
Expand Down
2 changes: 1 addition & 1 deletion wwpdb/utils/wf/plugins/ValidationUtils.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ class ValidationUtils(UtilsBase):

def __init__(self, verbose=False, log=sys.stderr):
super(ValidationUtils, self).__init__(verbose, log)
self.__cleanUp = False
self.__cleanUp = True
"""Flag to remove any temporary directories created by this class.
"""

Expand Down

0 comments on commit 2741832

Please sign in to comment.