diff --git a/configs/docker/run/launchAndRunDockerEWS.sh b/configs/docker/run/launchAndRunDockerEWS.sh
index 7c3e9e3e53f1a18cef913c984a02b6bacb3bf28b..40a04f7ded453e5b2cf141e29fd7e79d34aacfaf 100755
--- a/configs/docker/run/launchAndRunDockerEWS.sh
+++ b/configs/docker/run/launchAndRunDockerEWS.sh
@@ -69,7 +69,7 @@ elif [ "$component" = "Scraper" ];then
 elif [ "$component" = "Epidemiology" ];then
     component_script="/storage/app/EWS_prod/code/coordinator/scripts/run_Epidemiology_Processor.sh"
 elif [ "$component" = "MetResample" ];then
-    component_script="/storage/app/EWS_prod/code/met_resample/scripts/run_MetResample_Processor.sh"
+    component_script="/storage/app/EWS_prod/code/met_resampling/scripts/run_MetResample_Processor.sh"
 else
     printf "component '%s' not recognised" "$component"
 fi
diff --git a/scripts/run_Advisory_Processor.sh b/scripts/run_Advisory_Processor.sh
index d34a1fe0f544bed95f3c5ef7dc4cef31d3cdf539..79bc07041eebab2d376f523f0d814d13095c4d55 100755
--- a/scripts/run_Advisory_Processor.sh
+++ b/scripts/run_Advisory_Processor.sh
@@ -7,7 +7,7 @@ source "${proc_path}"/run_utils.sh
 
 setup_virtual_env
 
-python "${proc_path}"/../coordinator/ProcessorAdvisory.py "$@"
+python "${proc_path}"/../coordinator/processor_advisory_py "$@"
 exit_code=$?
 
 teardown_virtual_env
diff --git a/scripts/run_Deposition_Processor.sh b/scripts/run_Deposition_Processor.sh
index 67c4b7aa8ad4914fa07b5bec9e7f7e6c012048b2..6b5f415b8463ea07b1874c5986b4960d52bc5e45 100755
--- a/scripts/run_Deposition_Processor.sh
+++ b/scripts/run_Deposition_Processor.sh
@@ -9,7 +9,7 @@ setup_virtual_env
 
 echo "Running ProcessorDeposition.py with path: "
 pwd;
-python "${proc_path}"/../coordinator/ProcessorDeposition.py "$@"
+python "${proc_path}"/../coordinator/processorDeposition.py "$@"
 exit_code=$?
 
 teardown_virtual_env
diff --git a/scripts/run_Environment_Processor.sh b/scripts/run_Environment_Processor.sh
index cb7046c7da9d8d3f20de3f3ffb57076997f09d27..1596a2c85630d3bd8f1e0135d5141608e6701e64 100755
--- a/scripts/run_Environment_Processor.sh
+++ b/scripts/run_Environment_Processor.sh
@@ -7,7 +7,7 @@ source "${proc_path}"/run_utils.sh
 
 setup_virtual_env
 
-python "${proc_path}"/../coordinator/ProcessorEnvironment.py "$@"
+python "${proc_path}"/../coordinator/processor_environment.py "$@"
 exit_code=$?
 
 teardown_virtual_env
diff --git a/scripts/run_Epidemiology_Processor.sh b/scripts/run_Epidemiology_Processor.sh
index 3606c5bcd6b0c8e07d6c64ddc97048ce6849c3d2..a52599163352d96aec234816e600071bfea51118 100755
--- a/scripts/run_Epidemiology_Processor.sh
+++ b/scripts/run_Epidemiology_Processor.sh
@@ -7,7 +7,7 @@ source "${proc_path}"/run_utils.sh
 
 setup_virtual_env
 
-python "${proc_path}"/../coordinator/ProcessorEpidemiology.py "$@"
+python "${proc_path}"/../coordinator/processor_epidemiology.py "$@"
 exit_code=$?
 
 teardown_virtual_env
diff --git a/scripts/run_Scraper_Processor.sh b/scripts/run_Scraper_Processor.sh
index 631b288c885a41b1618f3596775b0c09ff132471..9baf937092560ec1ee3594fd08a7e99c88cf35a7 100755
--- a/scripts/run_Scraper_Processor.sh
+++ b/scripts/run_Scraper_Processor.sh
@@ -7,7 +7,7 @@ source "${proc_path}"/run_utils.sh
 
 setup_virtual_env
 
-python "${proc_path}"/../coordinator/ProcessorScraper.py "$@"
+python "${proc_path}"/../coordinator/processor_scraper.py "$@"
 exit_code=$?
 
 teardown_virtual_env
diff --git a/scripts/run_Survey_Processor.sh b/scripts/run_Survey_Processor.sh
index 628d66f510ca05c227f9c1a8895186aa970ddde4..644099b41fdefdb5f85d3e39f9f8bbf058aee02c 100755
--- a/scripts/run_Survey_Processor.sh
+++ b/scripts/run_Survey_Processor.sh
@@ -7,7 +7,7 @@ source "${proc_path}"/run_utils.sh
 
 setup_virtual_env
 
-python "${proc_path}"/../coordinator/ProcessorSurveys.py "$@"
+python "${proc_path}"/../coordinator/processor_surveys.py "$@"
 exit_code=$?
 
 teardown_virtual_env