Distributed-CellProfiler icon indicating copy to clipboard operation
Distributed-CellProfiler copied to clipboard

Add URL support to cp-worker

Open ErinWeisbart opened this issue 1 year ago • 1 comments

Support using URLs for file paths.

Currently, CellProfiler (when installed from source) can load from s3:// paths

ErinWeisbart avatar Jan 10 '25 20:01 ErinWeisbart

import re 

    if url.startswith("s3"):

        bucket_name, filename = (
            re.compile("s3://([\w\d\-.]+)/(.*)").search(url).groups()
        )

bethac07 avatar Jan 10 '25 20:01 bethac07