├── .github └── workflows │ └── deploy.yml ├── .travis.yml ├── CITATION.cff ├── LICENSE ├── README.md ├── config.py ├── documentation ├── .github │ └── workflows │ │ └── deploy.yml └── DCP-documentation │ ├── AWS_hygiene_scripts.md │ ├── SQS_QUEUE_information.md │ ├── _config.yml │ ├── _toc.yml │ ├── advanced_configuration.md │ ├── config_examples.md │ ├── costs.md │ ├── dashboard.md │ ├── external_buckets.md │ ├── images │ ├── AMIID.jpg │ ├── DCP-chronological_schematic.png │ ├── ECS.jpg │ ├── InstanceID.jpg │ ├── Launch.jpg │ ├── LoadDataCSV.png │ ├── Network.jpg │ ├── Snapshot.jpg │ ├── adjust_dashboard_view.png │ ├── blip_in_messagesnotvisible.png │ ├── dashboard_overview.png │ ├── expand_error_log.png │ ├── fulfilledcapacity.png │ ├── logs_comparison.png │ ├── memoryutilization.png │ ├── messages_change_slope.png │ ├── messages_deleted_received.png │ ├── sample_DCP_config_1.png │ ├── sample_DCP_config_2.png │ └── zoom_into_dashboard.png │ ├── overview.md │ ├── overview_2.md │ ├── passing_files_to_DCP.md │ ├── step_0_prep.md │ ├── step_1_configuration.md │ ├── step_2_submit_jobs.md │ ├── step_3_start_cluster.md │ ├── step_4_monitor.md │ ├── troubleshooting_runs.md │ ├── troubleshooting_start_cluster.md │ └── versions.md ├── example_project ├── README.md ├── config.py ├── demo_project_folder │ ├── images │ │ ├── 01_POS002_D.TIF │ │ ├── 01_POS002_F.TIF │ │ ├── 01_POS002_R.TIF │ │ ├── 01_POS076_D.TIF │ │ ├── 01_POS076_F.TIF │ │ ├── 01_POS076_R.TIF │ │ ├── 01_POS218_D.TIF │ │ ├── 01_POS218_F.TIF │ │ └── 01_POS218_R.TIF │ └── workspace │ │ ├── ExampleFly.cppipe │ │ └── load_data.csv └── files │ └── exampleJob.json ├── example_project_CPG ├── README.md ├── config.py ├── demo_project_folder │ └── workspace │ │ ├── ExampleCPG.cppipe │ │ └── load_data.csv └── files │ └── exampleCPGJob.json ├── files ├── ManualMetadata.py ├── batches.sh ├── exampleFleet_us-east-1.json ├── exampleFleet_us-west-2.json ├── exampleJob.json └── requirements.txt ├── lambda_function.py ├── python2worker ├── Dockerfile ├── Makefile ├── cp-worker.py ├── instance-monitor.py └── run-worker.sh ├── run.py ├── run_batch_general.py ├── setup_AWS.py └── worker ├── Dockerfile ├── Makefile ├── cp-worker.py ├── instance-monitor.py └── run-worker.sh /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DistributedScience/Distributed-CellProfiler/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DistributedScience/Distributed-CellProfiler/HEAD/.travis.yml -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DistributedScience/Distributed-CellProfiler/HEAD/CITATION.cff -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DistributedScience/Distributed-CellProfiler/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DistributedScience/Distributed-CellProfiler/HEAD/README.md -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DistributedScience/Distributed-CellProfiler/HEAD/config.py -------------------------------------------------------------------------------- /documentation/.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DistributedScience/Distributed-CellProfiler/HEAD/documentation/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /documentation/DCP-documentation/AWS_hygiene_scripts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DistributedScience/Distributed-CellProfiler/HEAD/documentation/DCP-documentation/AWS_hygiene_scripts.md -------------------------------------------------------------------------------- /documentation/DCP-documentation/SQS_QUEUE_information.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DistributedScience/Distributed-CellProfiler/HEAD/documentation/DCP-documentation/SQS_QUEUE_information.md -------------------------------------------------------------------------------- /documentation/DCP-documentation/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DistributedScience/Distributed-CellProfiler/HEAD/documentation/DCP-documentation/_config.yml -------------------------------------------------------------------------------- /documentation/DCP-documentation/_toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DistributedScience/Distributed-CellProfiler/HEAD/documentation/DCP-documentation/_toc.yml -------------------------------------------------------------------------------- /documentation/DCP-documentation/advanced_configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DistributedScience/Distributed-CellProfiler/HEAD/documentation/DCP-documentation/advanced_configuration.md -------------------------------------------------------------------------------- /documentation/DCP-documentation/config_examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DistributedScience/Distributed-CellProfiler/HEAD/documentation/DCP-documentation/config_examples.md -------------------------------------------------------------------------------- /documentation/DCP-documentation/costs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DistributedScience/Distributed-CellProfiler/HEAD/documentation/DCP-documentation/costs.md -------------------------------------------------------------------------------- /documentation/DCP-documentation/dashboard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DistributedScience/Distributed-CellProfiler/HEAD/documentation/DCP-documentation/dashboard.md -------------------------------------------------------------------------------- /documentation/DCP-documentation/external_buckets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DistributedScience/Distributed-CellProfiler/HEAD/documentation/DCP-documentation/external_buckets.md -------------------------------------------------------------------------------- /documentation/DCP-documentation/images/AMIID.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DistributedScience/Distributed-CellProfiler/HEAD/documentation/DCP-documentation/images/AMIID.jpg -------------------------------------------------------------------------------- /documentation/DCP-documentation/images/DCP-chronological_schematic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DistributedScience/Distributed-CellProfiler/HEAD/documentation/DCP-documentation/images/DCP-chronological_schematic.png -------------------------------------------------------------------------------- /documentation/DCP-documentation/images/ECS.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DistributedScience/Distributed-CellProfiler/HEAD/documentation/DCP-documentation/images/ECS.jpg -------------------------------------------------------------------------------- /documentation/DCP-documentation/images/InstanceID.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DistributedScience/Distributed-CellProfiler/HEAD/documentation/DCP-documentation/images/InstanceID.jpg -------------------------------------------------------------------------------- /documentation/DCP-documentation/images/Launch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DistributedScience/Distributed-CellProfiler/HEAD/documentation/DCP-documentation/images/Launch.jpg -------------------------------------------------------------------------------- /documentation/DCP-documentation/images/LoadDataCSV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DistributedScience/Distributed-CellProfiler/HEAD/documentation/DCP-documentation/images/LoadDataCSV.png -------------------------------------------------------------------------------- /documentation/DCP-documentation/images/Network.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DistributedScience/Distributed-CellProfiler/HEAD/documentation/DCP-documentation/images/Network.jpg -------------------------------------------------------------------------------- /documentation/DCP-documentation/images/Snapshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DistributedScience/Distributed-CellProfiler/HEAD/documentation/DCP-documentation/images/Snapshot.jpg -------------------------------------------------------------------------------- /documentation/DCP-documentation/images/adjust_dashboard_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DistributedScience/Distributed-CellProfiler/HEAD/documentation/DCP-documentation/images/adjust_dashboard_view.png -------------------------------------------------------------------------------- /documentation/DCP-documentation/images/blip_in_messagesnotvisible.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DistributedScience/Distributed-CellProfiler/HEAD/documentation/DCP-documentation/images/blip_in_messagesnotvisible.png -------------------------------------------------------------------------------- /documentation/DCP-documentation/images/dashboard_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DistributedScience/Distributed-CellProfiler/HEAD/documentation/DCP-documentation/images/dashboard_overview.png -------------------------------------------------------------------------------- /documentation/DCP-documentation/images/expand_error_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DistributedScience/Distributed-CellProfiler/HEAD/documentation/DCP-documentation/images/expand_error_log.png -------------------------------------------------------------------------------- /documentation/DCP-documentation/images/fulfilledcapacity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DistributedScience/Distributed-CellProfiler/HEAD/documentation/DCP-documentation/images/fulfilledcapacity.png -------------------------------------------------------------------------------- /documentation/DCP-documentation/images/logs_comparison.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DistributedScience/Distributed-CellProfiler/HEAD/documentation/DCP-documentation/images/logs_comparison.png -------------------------------------------------------------------------------- /documentation/DCP-documentation/images/memoryutilization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DistributedScience/Distributed-CellProfiler/HEAD/documentation/DCP-documentation/images/memoryutilization.png -------------------------------------------------------------------------------- /documentation/DCP-documentation/images/messages_change_slope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DistributedScience/Distributed-CellProfiler/HEAD/documentation/DCP-documentation/images/messages_change_slope.png -------------------------------------------------------------------------------- /documentation/DCP-documentation/images/messages_deleted_received.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DistributedScience/Distributed-CellProfiler/HEAD/documentation/DCP-documentation/images/messages_deleted_received.png -------------------------------------------------------------------------------- /documentation/DCP-documentation/images/sample_DCP_config_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DistributedScience/Distributed-CellProfiler/HEAD/documentation/DCP-documentation/images/sample_DCP_config_1.png -------------------------------------------------------------------------------- /documentation/DCP-documentation/images/sample_DCP_config_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DistributedScience/Distributed-CellProfiler/HEAD/documentation/DCP-documentation/images/sample_DCP_config_2.png -------------------------------------------------------------------------------- /documentation/DCP-documentation/images/zoom_into_dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DistributedScience/Distributed-CellProfiler/HEAD/documentation/DCP-documentation/images/zoom_into_dashboard.png -------------------------------------------------------------------------------- /documentation/DCP-documentation/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DistributedScience/Distributed-CellProfiler/HEAD/documentation/DCP-documentation/overview.md -------------------------------------------------------------------------------- /documentation/DCP-documentation/overview_2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DistributedScience/Distributed-CellProfiler/HEAD/documentation/DCP-documentation/overview_2.md -------------------------------------------------------------------------------- /documentation/DCP-documentation/passing_files_to_DCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DistributedScience/Distributed-CellProfiler/HEAD/documentation/DCP-documentation/passing_files_to_DCP.md -------------------------------------------------------------------------------- /documentation/DCP-documentation/step_0_prep.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DistributedScience/Distributed-CellProfiler/HEAD/documentation/DCP-documentation/step_0_prep.md -------------------------------------------------------------------------------- /documentation/DCP-documentation/step_1_configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DistributedScience/Distributed-CellProfiler/HEAD/documentation/DCP-documentation/step_1_configuration.md -------------------------------------------------------------------------------- /documentation/DCP-documentation/step_2_submit_jobs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DistributedScience/Distributed-CellProfiler/HEAD/documentation/DCP-documentation/step_2_submit_jobs.md -------------------------------------------------------------------------------- /documentation/DCP-documentation/step_3_start_cluster.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DistributedScience/Distributed-CellProfiler/HEAD/documentation/DCP-documentation/step_3_start_cluster.md -------------------------------------------------------------------------------- /documentation/DCP-documentation/step_4_monitor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DistributedScience/Distributed-CellProfiler/HEAD/documentation/DCP-documentation/step_4_monitor.md -------------------------------------------------------------------------------- /documentation/DCP-documentation/troubleshooting_runs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DistributedScience/Distributed-CellProfiler/HEAD/documentation/DCP-documentation/troubleshooting_runs.md -------------------------------------------------------------------------------- /documentation/DCP-documentation/troubleshooting_start_cluster.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DistributedScience/Distributed-CellProfiler/HEAD/documentation/DCP-documentation/troubleshooting_start_cluster.md -------------------------------------------------------------------------------- /documentation/DCP-documentation/versions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DistributedScience/Distributed-CellProfiler/HEAD/documentation/DCP-documentation/versions.md -------------------------------------------------------------------------------- /example_project/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DistributedScience/Distributed-CellProfiler/HEAD/example_project/README.md -------------------------------------------------------------------------------- /example_project/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DistributedScience/Distributed-CellProfiler/HEAD/example_project/config.py -------------------------------------------------------------------------------- /example_project/demo_project_folder/images/01_POS002_D.TIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DistributedScience/Distributed-CellProfiler/HEAD/example_project/demo_project_folder/images/01_POS002_D.TIF -------------------------------------------------------------------------------- /example_project/demo_project_folder/images/01_POS002_F.TIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DistributedScience/Distributed-CellProfiler/HEAD/example_project/demo_project_folder/images/01_POS002_F.TIF -------------------------------------------------------------------------------- /example_project/demo_project_folder/images/01_POS002_R.TIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DistributedScience/Distributed-CellProfiler/HEAD/example_project/demo_project_folder/images/01_POS002_R.TIF -------------------------------------------------------------------------------- /example_project/demo_project_folder/images/01_POS076_D.TIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DistributedScience/Distributed-CellProfiler/HEAD/example_project/demo_project_folder/images/01_POS076_D.TIF -------------------------------------------------------------------------------- /example_project/demo_project_folder/images/01_POS076_F.TIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DistributedScience/Distributed-CellProfiler/HEAD/example_project/demo_project_folder/images/01_POS076_F.TIF -------------------------------------------------------------------------------- /example_project/demo_project_folder/images/01_POS076_R.TIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DistributedScience/Distributed-CellProfiler/HEAD/example_project/demo_project_folder/images/01_POS076_R.TIF -------------------------------------------------------------------------------- /example_project/demo_project_folder/images/01_POS218_D.TIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DistributedScience/Distributed-CellProfiler/HEAD/example_project/demo_project_folder/images/01_POS218_D.TIF -------------------------------------------------------------------------------- /example_project/demo_project_folder/images/01_POS218_F.TIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DistributedScience/Distributed-CellProfiler/HEAD/example_project/demo_project_folder/images/01_POS218_F.TIF -------------------------------------------------------------------------------- /example_project/demo_project_folder/images/01_POS218_R.TIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DistributedScience/Distributed-CellProfiler/HEAD/example_project/demo_project_folder/images/01_POS218_R.TIF -------------------------------------------------------------------------------- /example_project/demo_project_folder/workspace/ExampleFly.cppipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DistributedScience/Distributed-CellProfiler/HEAD/example_project/demo_project_folder/workspace/ExampleFly.cppipe -------------------------------------------------------------------------------- /example_project/demo_project_folder/workspace/load_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DistributedScience/Distributed-CellProfiler/HEAD/example_project/demo_project_folder/workspace/load_data.csv -------------------------------------------------------------------------------- /example_project/files/exampleJob.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DistributedScience/Distributed-CellProfiler/HEAD/example_project/files/exampleJob.json -------------------------------------------------------------------------------- /example_project_CPG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DistributedScience/Distributed-CellProfiler/HEAD/example_project_CPG/README.md -------------------------------------------------------------------------------- /example_project_CPG/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DistributedScience/Distributed-CellProfiler/HEAD/example_project_CPG/config.py -------------------------------------------------------------------------------- /example_project_CPG/demo_project_folder/workspace/ExampleCPG.cppipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DistributedScience/Distributed-CellProfiler/HEAD/example_project_CPG/demo_project_folder/workspace/ExampleCPG.cppipe -------------------------------------------------------------------------------- /example_project_CPG/demo_project_folder/workspace/load_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DistributedScience/Distributed-CellProfiler/HEAD/example_project_CPG/demo_project_folder/workspace/load_data.csv -------------------------------------------------------------------------------- /example_project_CPG/files/exampleCPGJob.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DistributedScience/Distributed-CellProfiler/HEAD/example_project_CPG/files/exampleCPGJob.json -------------------------------------------------------------------------------- /files/ManualMetadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DistributedScience/Distributed-CellProfiler/HEAD/files/ManualMetadata.py -------------------------------------------------------------------------------- /files/batches.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DistributedScience/Distributed-CellProfiler/HEAD/files/batches.sh -------------------------------------------------------------------------------- /files/exampleFleet_us-east-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DistributedScience/Distributed-CellProfiler/HEAD/files/exampleFleet_us-east-1.json -------------------------------------------------------------------------------- /files/exampleFleet_us-west-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DistributedScience/Distributed-CellProfiler/HEAD/files/exampleFleet_us-west-2.json -------------------------------------------------------------------------------- /files/exampleJob.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DistributedScience/Distributed-CellProfiler/HEAD/files/exampleJob.json -------------------------------------------------------------------------------- /files/requirements.txt: -------------------------------------------------------------------------------- 1 | boto3>=1.0.0 2 | -------------------------------------------------------------------------------- /lambda_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DistributedScience/Distributed-CellProfiler/HEAD/lambda_function.py -------------------------------------------------------------------------------- /python2worker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DistributedScience/Distributed-CellProfiler/HEAD/python2worker/Dockerfile -------------------------------------------------------------------------------- /python2worker/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DistributedScience/Distributed-CellProfiler/HEAD/python2worker/Makefile -------------------------------------------------------------------------------- /python2worker/cp-worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DistributedScience/Distributed-CellProfiler/HEAD/python2worker/cp-worker.py -------------------------------------------------------------------------------- /python2worker/instance-monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DistributedScience/Distributed-CellProfiler/HEAD/python2worker/instance-monitor.py -------------------------------------------------------------------------------- /python2worker/run-worker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DistributedScience/Distributed-CellProfiler/HEAD/python2worker/run-worker.sh -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DistributedScience/Distributed-CellProfiler/HEAD/run.py -------------------------------------------------------------------------------- /run_batch_general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DistributedScience/Distributed-CellProfiler/HEAD/run_batch_general.py -------------------------------------------------------------------------------- /setup_AWS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DistributedScience/Distributed-CellProfiler/HEAD/setup_AWS.py -------------------------------------------------------------------------------- /worker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DistributedScience/Distributed-CellProfiler/HEAD/worker/Dockerfile -------------------------------------------------------------------------------- /worker/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DistributedScience/Distributed-CellProfiler/HEAD/worker/Makefile -------------------------------------------------------------------------------- /worker/cp-worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DistributedScience/Distributed-CellProfiler/HEAD/worker/cp-worker.py -------------------------------------------------------------------------------- /worker/instance-monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DistributedScience/Distributed-CellProfiler/HEAD/worker/instance-monitor.py -------------------------------------------------------------------------------- /worker/run-worker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DistributedScience/Distributed-CellProfiler/HEAD/worker/run-worker.sh --------------------------------------------------------------------------------