From 7427115e01c06e3c2ffd9fbca90d5e720b7e7b2f Mon Sep 17 00:00:00 2001 From: Liam McKay <35275985+liammckay19@users.noreply.github.com> Date: Mon, 2 Mar 2020 16:23:02 -0800 Subject: [PATCH] removed unnecessary bash scripts --- run_onePlate.sh | 18 ------------------ run_one_ip_change.sh | 15 --------------- 2 files changed, 33 deletions(-) delete mode 100644 run_onePlate.sh delete mode 100644 run_one_ip_change.sh diff --git a/run_onePlate.sh b/run_onePlate.sh deleted file mode 100644 index 2b86a81..0000000 --- a/run_onePlate.sh +++ /dev/null @@ -1,18 +0,0 @@ -#!/bin/bash -### Testing for the corect number of input arguments -if [ ! $# -eq 3 ];then - echo "Usage Error: incorrect number of arguments -sh run.sh [plateID] [output_plate_folder] [plate_temperature 4c/20c]" - exit 1 -fi - -### Take command-line arguments and set them to variables -output_dir=$1 -temperature=$2 -plateID=$3 - -bash transfer_imgs_1.sh "${plateID} ${output_dir} ${temperature}" 169.230.29.134 -python bounding_box_overlay_2.py "${output_dir}" -python pregui_img_analysis_3.py "${output_dir}" - - diff --git a/run_one_ip_change.sh b/run_one_ip_change.sh deleted file mode 100644 index 559c46e..0000000 --- a/run_one_ip_change.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/bash -### Testing for the corect number of input arguments -if [ ! $# -eq 3 ]; then - echo "Usage Error: incorrect number of arguments - sh run.sh [output_plate_folder] [plate_temperature 4c/20c] [plateID] " - exit 1 -fi -output_dir=$1 -temperature=$2 -plateID=$3 - -bash transfer_imgs_1.sh ${plateID} ${output_dir} ${temperature} 169.230.29.134 -python bounding_box_overlay_2.py ${output_dir} -python pregui_img_analysis_3.py ${output_dir} -