diff --git a/cgatcore/pipeline/__init__.py b/cgatcore/pipeline/__init__.py index 40723965..1223ea63 100644 --- a/cgatcore/pipeline/__init__.py +++ b/cgatcore/pipeline/__init__.py @@ -185,6 +185,7 @@ def loadData(infile, outfile): # Expose the S3Mapper instance if it's needed elsewhere s3_mapper = S3Mapper() + # Add S3-related utility functions def configure_s3(aws_access_key_id=None, aws_secret_access_key=None, region_name=None): """ @@ -199,9 +200,6 @@ def configure_s3(aws_access_key_id=None, aws_secret_access_key=None, region_name ) s3_mapper.s3.S3 = session.resource('s3') -# You can add more S3-related utility functions here as needed - -# Add any other pipeline-related imports or functionality here # Add a docstring for the module __doc__ = """ diff --git a/cgatcore/remote/file_handler.py b/cgatcore/remote/file_handler.py index ed2de922..8c893565 100644 --- a/cgatcore/remote/file_handler.py +++ b/cgatcore/remote/file_handler.py @@ -106,4 +106,4 @@ def wrapped_func(*args, **kwargs): # The @follows decorator doesn't directly handle files, so we can use it as is -s3_follows = follows \ No newline at end of file +s3_follows = follows