diff --git a/.github/.gitignore b/.github/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..2d19fc766d98a08d9d1437896bfb008a7b15f340 --- /dev/null +++ b/.github/.gitignore @@ -0,0 +1 @@ +*.html diff --git a/.github/ISSUE_TEMPLATE/issue_template.md b/.github/ISSUE_TEMPLATE/issue_template.md new file mode 100644 index 0000000000000000000000000000000000000000..d7c9eba80f02a71d5c7aa258264c4c881c3cfcf0 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/issue_template.md @@ -0,0 +1,16 @@ +--- +name: Bug report or feature request +about: Describe a bug you've seen or make a case for a new feature +--- + +Please briefly describe your problem and what output you expect. If you have a question, please don't use this form. Instead, ask on <https://stackoverflow.com/> or <https://community.rstudio.com/>. + +Please include a minimal reproducible example (AKA a reprex). If you've never heard of a [reprex](http://reprex.tidyverse.org/) before, start by reading <https://www.tidyverse.org/help/#reprex>. + +For more advice on how to write a great issue, see <https://code-review.tidyverse.org/issues/>. + +Brief description of the problem + +```r +# insert reprex here +``` diff --git a/.gitignore b/.gitignore index 5b6a0652566d10360493952aec6d4a4febc77083..13e0c9533dbd47d6df773658aec0e9d4c9226084 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,9 @@ .Rhistory .RData .Ruserdata +.Rprofile +*.txt +*.pdf +*.html +figures/** +temp/** diff --git a/DESCRIPTION b/DESCRIPTION index e1fbbd7fab8876373a1641734c92bc04d39c51a2..d29dd9e7b9de49b52faf4c7ca0d6fb5c8b28fb4d 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -3,7 +3,8 @@ Title: Get Data From QuPath For Data Analysis Version: 0.1.0 BugReports: https://git.scicore.unibas.ch/ovca-research/DRUGSENS/issues Authors@R: c( - person("Flavio", "Lombardo", "C.", "flavio.lombardo@unibas.ch", role = c("aut", "cre", "cph")), + person("Flavio", "Lombardo", , "flavio.lombardo@unibas.ch", role = c("aut", "cre", "cph")), + person("Ricardo Coelho", role = c("cph")), person("Ovarian Cancer Research", role = c("cph")), person("University of Basel and University Hospital Basel", role = c("cph")) ) @@ -15,12 +16,14 @@ License: MIT + file LICENSE Imports: dplyr, tidyr, + readr, stringr, knitr, - testthat, ggplot2, ggpubr, - roxygen2 + roxygen2, + tidyselect, + testthat Depends: R (>= 4.2) VignetteBuilder: diff --git a/NAMESPACE b/NAMESPACE index 9fa755bcbbcf15b67028b9d04a9a2c59ddf27429..0a598ef0e91c4a6d386a78fe2ea5266edc0d14ac 100644 --- a/NAMESPACE +++ b/NAMESPACE @@ -4,6 +4,7 @@ export(change_data_format_to_longer) export(data_binding) export(generate_qupath_script) export(get_QC_plots) +export(get_QC_plots_parsed_merged_data) export(make_count_dataframe) export(make_run_config) import(ggplot2) @@ -12,5 +13,8 @@ import(knitr) import(testthat) importFrom(dplyr,filter) importFrom(dplyr,select) +importFrom(readr,write_excel_csv) +importFrom(stringr,str_count) importFrom(stringr,str_extract) importFrom(tidyr,pivot_longer) +importFrom(tidyselect,any_of) diff --git a/R/change_data_format_to_longer.R b/R/change_data_format_to_longer.R index 08074e4c1b2ef8031084e78ce5c0a31a1bbf2495..ab13c54b8f98c9ead6fd16adcd26d2b61433de6d 100644 --- a/R/change_data_format_to_longer.R +++ b/R/change_data_format_to_longer.R @@ -3,6 +3,7 @@ #' This function gets the count data data.frame, that has a wider format and it returns a longer-formatted data.frame #' @importFrom tidyr pivot_longer #' @importFrom dplyr select +#' @importFrom tidyselect any_of #' @return A `dataframe`/`tibble`. #' @param .data The markers count dataframe that is coming from the processing of the microscopy data #' @param pattern_column_markers The markers' pattern name to obtain the column with ratios of the markers (it defaults to "_ratio_of_total_cells") @@ -21,30 +22,49 @@ change_data_format_to_longer <- function(.data, # names of the columns col_names_of_markers <- colnames(.data)[which(grepl(x = colnames(.data), pattern = pattern_column_markers))] - if (additional_columns){ - additional_columns_to_use <- c("Treatment", "PID", "Image_number", "Tissue", "Concentration", "DOC", "Treatment_complete", "ReplicaOrNot") + if (additional_columns) { + additional_columns_to_use <- c( + "PID", + "Date", + "DOC", + "Tissue", + "Image_number", + "Treatment", + "Concentration1", + "Concentration2", + "ConcentrationUnits1", + "ConcentrationUnits2", + "ReplicaOrNot", + "Treatment_complete" + ) } else { additional_columns_to_use <- NULL } if (length(col_names_of_markers) < 1) stop(paste0("Failed to find pattern: ", pattern_column_markers, " in the columnames")) - if (!all(additional_columns_to_use %in% colnames(.data))) stop(paste0('One or more of the following columnames: - c(Treatment", "PID", "Image_number", "Tissue", "Concentration", "DOC") could not be found. - Please check the names of your data.frame and/or provide your selection'), - "Those are the colnames found in the input data: ", - colnames(.data)) + # if (!all(additional_columns_to_use %in% colnames(.data))) stop(paste0('One or more of the following columnames: + # c(Treatment", "PID", "Image_number", "Tissue", "Concentration", "DOC") could not be found. + # Please check the names of your data.frame and/or provide your selection'), + # "Those are the colnames found in the input data: ", + # colnames(.data)) if (!"Image_number" %in% additional_columns_to_use) stop("Image_number has to be in the dataframe.") if (!"Treatment_complete" %in% additional_columns_to_use) stop("Treatment_complete has to be in the dataframe.") + longer_format <- .data |> - select(unique_name_row_identifier, col_names_of_markers, additional_columns_to_use) |> - pivot_longer(cols = c(col_names_of_markers), + select(any_of(c( + unique_name_row_identifier, + col_names_of_markers, + additional_columns_to_use + ))) |> + pivot_longer( + cols = c(col_names_of_markers), names_to = "marker_positivity", values_to = "marker_positivity_ratio" ) -return( - longer_format -) + return( + longer_format + ) } diff --git a/R/data_binding.R b/R/data_binding.R index f8f55fa70121026d6e5717c028c3682550e07c2c..2906a5e3f343525880b4ea3b3f8658217205c142 100644 --- a/R/data_binding.R +++ b/R/data_binding.R @@ -23,52 +23,42 @@ process_file <- function(file_path, message(paste0("Reading file: ", file_path)) # Read the CSV file into a data frame - data <- read.csv(file_path, stringsAsFactors = FALSE) + .data <- read.csv(file_path, stringsAsFactors = FALSE) extension <- sub(x = extension, pattern = "\\.", "") - # add the image name - data$Image_number <- stringr::str_extract( - string = data$Image, - pattern = "series.\\d*" - ) - - # extract information from the data - data$PID <- str_extract(data$Image, "[A-Z0-9]+(?=_)") - data$Tissue <- sapply(strsplit(data$Image, "_"), `[`, 2, simplify=FALSE) |> unlist() - data$Date1 <- str_extract(data$Image, "\\d{4}.\\d{2}.\\d{2}") - data$DOC <- str_extract(data$Image, "(?<=DOC)\\d{4}\\.\\d{2}\\.\\d{2}") - data$ReplicaOrNot <- ifelse(stringr::str_detect(data$Image, pattern = "Replica|Rep|rep|replica|REPLICA|REP"), "Replica", NA_character_) - - data$Treatment <- str_extract(string = data$Image, pattern = "(?<=\\d{4}\\.\\d{2}\\.\\d{2}_)[A-Za-z0-9]+(?=_.+)") - - data$Concentration <- str_extract(data$Image, "\\d+(?=_[un][Mm])") - data$ConcentrationUnits <- str_extract(data$Image, "[un][Mm](?=_)") - - # get the name, relabelling of the markers WIP - for(nam in names(list_of_relabeling)) { - data$Name <- gsub( - x = as.character(data$Name), + # get the name, relabeling of the markers WIP + for (nam in names(list_of_relabeling)) { + .data$Name <- gsub( + x = as.character(.data$Name), pattern = nam, replacement = list_of_relabeling[[nam]], ignore.case = FALSE ) } - ## create unique_identifier - data$filter_image <- paste( - data$PID, - data$Date1, - data$DOC, - data$Tissue, - data$Image_number, - data$Treatment, - data$Concentration, - data$ConcentrationUnits, - data$ReplicaOrNot, - sep = "_" - ) + # parse the data with the function + .data <- string_parsing(.data) + + .data$filter_image <- apply(.data, 1, function(row) { + paste( + row["PID"], + row["Date1"], + row["DOC"], + row["Tissue"], + row["Image_number"], + row["Treatment"], + row["Concentration1"], + row["Concentration2"], + row["ConcentrationUnits1"], + row["ConcentrationUnits2"], + row["ReplicaOrNot"], + row["Treatment_complete"], + collapse = "_", + sep = "_" + ) + }) - return(data) + return(.data) } #' Merge all the dataframes coming out from the QuPath @@ -76,24 +66,21 @@ process_file <- function(file_path, #' This function try to guess the string patterns that are in the dataset and then fill the dataframe #' with that information. Finally the data is combined and combined them into one file #' @import knitr -#' @import testthat #' @importFrom stringr str_extract #' @return A `dataframe`/`tibble`. -#' @param path_to_the_projects_folder The path where the files coming out of QuPath are located -#' @param files_extension_to_look_for The extension of the file outputted from QuPath +#' @param path_to_the_projects_folder String/Path The path where the files coming out of QuPath are located +#' @param files_extension_to_look_for String The extension of the file outputted from QuPath, (default is "csv") #' @param recursive_search Boolean, it defined the behavior of the file search, if recursive or not, (default is FALSE) #' #' @export #' @example #' dataframe_output <- data_binding(path_to_the_projects_folder = "<USER_DEFINED_PATH>" #' files_extension_to_look_for = "csv") -#'#This will return the dataframe of all the data in the folder +#' #This will return the dataframe of all the data in the folder # Main function to bind data from multiple files data_binding <- function(path_to_the_projects_folder, - files_extension_to_look_for, - recursive_search = FALSE - ) { - + files_extension_to_look_for = "csv", + recursive_search = FALSE) { # run configuration file make_run_config() @@ -111,21 +98,21 @@ data_binding <- function(path_to_the_projects_folder, } # List all files with the specified extension in the given folder - list_csv_files <- list_all_files(path_to_the_projects_folder, - files_extension_to_look_for, - recursive_search) + list_csv_files <- list_all_files( + path_to_the_projects_folder, + files_extension_to_look_for, + recursive_search + ) # Process each file and combine the results - df_list <- lapply(list_csv_files, - process_file, - # relabeling_map = use_custom_column_names, - files_extension_to_look_for) + df_list <- lapply( + list_csv_files, + process_file, + files_extension_to_look_for + ) combined_df <- do.call(rbind, df_list) - # # remove namings - # rm(list_csv_files, col_names_qupath_output_files) - # Return the combined dataframe return(combined_df) } diff --git a/R/generate_qu_path_script.R b/R/generate_qu_path_script.R index 114fe22b87bd3bed2c64b0820274b924f9076b7a..49725d0f63963736c737c3af3de25fdacc28342b 100644 --- a/R/generate_qu_path_script.R +++ b/R/generate_qu_path_script.R @@ -14,8 +14,6 @@ generate_qupath_script <- function() { x = paste0(' //This code script was tested with QuPath 4 -//This code script was tested with QuPath 4 - import qupath.lib.gui.tools.MeasurementExporter import qupath.lib.objects.PathCellObject import qupath.lib.objects.PathDetectionObject @@ -42,8 +40,8 @@ def exportType = PathCellObject.class // Choose your *full* output path def outputPath = "<USER_DEFINED_PATH>/<PID>_<TISSUE>_',Sys.Date(),'_<SAMPLE_DOC>_<TREATMENT_INITIALS>_<CONCENTRATION>_<CONCENTRATION_UNITS>_<REPLICA_OR_NOT>_<TUMOR_MARKER>_<APOPTOTIC_MARKER>.csv" def outputFile = new File(outputPath) -// example <USER_DEFINED_PATH>/B39_Ascites_2023.11.10_DOC2023.10.05_NIRAPARIB_1000_nM_Rep_EpCAM_Ecad_cCasp3_ QuPath will add (series 1) at the end of this line -// example <USER_DEFINED_PATH>/B39_Ascites_2023.11.10_DOC2023.10.05_NIRAPARIB_1000_nM_Rep_EpCAM_Ecad_cCasp3_(series 01).tif +// example <USER_DEFINED_PATH>/B39_Ascites_2023.11.10_DOC2023.10.05_Niraparib_1000_nM_Rep_EpCAM_Ecad_cCasp3_ QuPath will add (series 1) at the end of this line +// example <USER_DEFINED_PATH>/B39_Ascites_2023.11.10_DOC2023.10.05_Niraparib_1000_nM_Rep_EpCAM_Ecad_cCasp3_(series 01).tif // the part EpCAM_Ecad_cCasp3_ is optional but recommended // Create the measurementExporter and start the export diff --git a/R/get_QC_plots_and_stats.R b/R/get_QC_plots_and_stats.R new file mode 100644 index 0000000000000000000000000000000000000000..7872515943dbff57c0f35e1bddc24f63b28acef1 --- /dev/null +++ b/R/get_QC_plots_and_stats.R @@ -0,0 +1,164 @@ +#' Plot some QC plots for the bound data +#' @description +#' This plot can show trends within the dataset and run some basic statistics. +#' +#' @param .data The preprocessed data (after running make_count_dataframe() and change_data_format_to_longer()) merged data.frame that should be visualized +#' @param list_of_columns_to_plot The preprocessed data (after running make_count_dataframe() and change_data_format_to_longer()) merged data.frame that should be visualized +#' @param save_plots Boolean, TRUE if plots should be saved (default is FALSE) +#' @param saving_plots_folder String indicating the folder where the plots should be stored (default is "figures") +#' @param PID_column_name String, indicating the name of the sample to subset (default is "PID") +#' @param isolate_specific_drug String, indicating if there should be a Treatment specific data subset (default is NULL) +#' @param isolate_specific_patient String, indicating a spacific sample to plot only (default is NULL) +#' @param PID_column_name String, indicating the name of the sample to subset (default is "Treatment") +#' @param save_list_of_plots Boolean, if TRUE returns a named list of all the plots ran (default is TRUE), this can be usefult to isolate specific plots +#' @param save_plots_in_patient_specific_subfolders Boolean, if TRUE the plots will be saved (if `save_plots` TRUE) in sample specific folders (default is TRUE) +#' @param fill_color_variable Boolean, String, indicating the name of the variable (discrete) to use for the plot's filling +#' @param p_height Integer, indicate the plot's height (default is 10 inches) +#' @param p_width Integer, indicate the plot's width (default is 10 inches) +#' @param drug_column_name String, indicate the column indicating the Drug/Treament (default is "Treatment") +#' +#' @import ggplot2 +#' @import ggpubr +#' @importFrom readr write_excel_csv +#' @importFrom dplyr filter +#' @return A `list`/`NULL`. +#' @example +#' ui <- get_QC_plots_parsed_merged_data(bind_data, save_plots = TRUE, save_list_of_plots = TRUE) +#' @export + +get_QC_plots_parsed_merged_data <- function(.data, + list_of_columns_to_plot = NULL, + save_plots = FALSE, + saving_plots_folder = "figures", + save_plots_in_patient_specific_subfolders = TRUE, + fill_color_variable = NULL, + PID_column_name = "PID", + isolate_specific_drug = NULL, + isolate_specific_patient = NULL, + drug_column_name = "Treatment", + save_list_of_plots = TRUE, + p_height = 10, + p_width = 10) { + # List where plots could be stored + list_plottos <- list() + + if (!is.data.frame(.data) | nrow(.data) < 1) stop("ERROR: the data provided must be not empty of dataframe type.") + + # get the number of possible plotting variables + if (is.null(list_of_columns_to_plot)) { + list_of_columns_to_plot <- colnames(.data)[which(sapply(.data, is.numeric))] + } + + # check that the fill_color_variable is in the dataset and not null + if (!is.null(fill_color_variable) & !fill_color_variable %in% colnames(.data)) stop("ERROR: the fill_color_variable must be in the colum names variables.") + + # if the user decides to isolate a specific sample only + if (!is.null(isolate_specific_patient)) .data <- .data[.data[[PID_column_name]] == isolate_specific_patient, ] + + for (pid in unique(.data[[PID_column_name]])) { + subset_data <- .data[.data[[PID_column_name]] == pid, ] + + for (i in list_of_columns_to_plot) { + # if (!isolate_specific_drug %in% subset_data[[drug_column_name]] |> unique()) stop("ERROR: The `isolate_specific_drug` is not included in the name of the availble treaments.") + if (!is.null(isolate_specific_drug)) subset_data <- subset_data[subset_data[[drug_column_name]] %in% isolate_specific_drug, ] + + if (nrow(subset_data) < 1) { + print(unique(subset_data[[PID_column_name]])) + print(unique(subset_data[[drug_column_name]])) + stop("ERROR: Your filtering query has returned no observations") + } + + # browser() + + # Function to dynamically add layers to a ggplot object based on conditions + add_violin_layers <- function(p, fill_color_variable) { + if (!is.null(fill_color_variable)) { + p <- p + geom_violin(trim = FALSE, aes_string(fill = fill_color_variable), color = NA) + + geom_boxplot(width = 0.1, fill = "white") + } else { + p <- p + geom_violin(trim = FALSE, fill = "#A4A4A4", color = "darkred") + + geom_boxplot(width = 0.1, fill = "white") + } + return(p) + } + + # Initialize ggplot + p <- ggplot(subset_data, aes(x = Name, y = log2(unlist(subset_data[[i]])))) + + # Add violin and boxplot layers + p <- add_violin_layers(p, fill_color_variable) + + # More layers on top + p <- p + facet_wrap(~Treatment) + + theme(axis.text.x = element_text(angle = 45, hjust = 1)) + + labs( + title = colnames(subset_data[i]), + x = "Cell Markers", + y = paste0("Intensity of ", colnames(subset_data[i]), " (log2)"), + subtitle = paste0(pid, ".", isolate_specific_drug) + ) + + geom_jitter(shape = 16, position = position_jitter(0.01)) + + stat_summary(geom = "crossbar", fun = mean, colour = "red", width = 0.21) + + # Conditionally add to list of plots + if (save_list_of_plots) { + list_plottos[[paste0(isolate_specific_drug, ".", pid, ".", i)]] <- p + } + + + if (save_plots) { + if (save_plots_in_patient_specific_subfolders) { + if (!dir.exists(paste0(saving_plots_folder, "/", pid))) dir.create(paste0(saving_plots_folder, "/", pid)) + ggsave( + plot = p, + filename = paste0( + paste0(saving_plots_folder, "/", pid), + "/", + Sys.Date(), + "_", + pid, + ".", + isolate_specific_drug, + ".", + colnames(.data[i]), + ".pdf" + ), + device = "pdf", + dpi = 600 + ) + } else { + # Saving plots in .pdf at 600 dpi + if (!dir.exists(saving_plots_folder)) dir.create(saving_plots_folder) + ggsave( + plot = p, + width = p_width, + height = p_height, + filename = paste0( + saving_plots_folder, + "/", + Sys.Date(), + "_", + pid, + ".", + isolate_specific_drug, + ".", + colnames(.data[i]), + ".pdf" + ), + device = "pdf", + dpi = 600, + ) + } + + message(paste0( + "plots for: ", + pid, + ".", + isolate_specific_drug, + ".", + colnames(.data[i]), " saved" + )) + } + } + } +} diff --git a/R/make_count_dataframe.R b/R/make_count_dataframe.R index bfb66ad7463afed92f8bac3e180864f51b213a8b..114379041a6b1adb678f8b719cd91aef5c27d6e6 100644 --- a/R/make_count_dataframe.R +++ b/R/make_count_dataframe.R @@ -11,8 +11,7 @@ #' make_count_dataframe(data, name_of_the_markers_column = "Name", unique_name_row_identifier = "filter_image") # adding the image number so to identify the distribution make_count_dataframe <- function(.data, unique_name_row_identifier = "filter_image", - name_of_the_markers_column = "Name" - ) { + name_of_the_markers_column = "Name") { counts_total <- as.data.frame.matrix( table(.data[[unique_name_row_identifier]], .data[[name_of_the_markers_column]]) ) @@ -23,41 +22,26 @@ make_count_dataframe <- function(.data, unique_name_row_identifier = "filter_ima # add sum of the markers counts_total$sum_cells <- apply(MARGIN = 1, X = counts_total[, markers_names], FUN = sum) - # # calculate the ratios - # lapply(markers_names, \(marker) { - # counts_total[[paste0(marker, "_ratio_of_total_cells2")]] <<- round(counts_total[[marker]]/counts_total[["sum_cells"]], 2) - # }) - # Calculate the ratios counts_total[paste0(markers_names, "_ratio_of_total_cells")] <- round(counts_total[, markers_names] / counts_total[["sum_cells"]], 2) - # names of the columns - # col_names_of_markers <- colnames(counts_total)[which(grepl(x = colnames(counts_total), pattern = "_ratio_of_total_cells"))] - counts_total[[unique_name_row_identifier]] <- row.names(counts_total) - # get variables back - counts_total$PID <- sapply(strsplit(counts_total[[unique_name_row_identifier]], "_"), '[', 1) - counts_total$DOC <- sapply(strsplit(counts_total[[unique_name_row_identifier]], "_"), '[', 2) - counts_total$Date <- sapply(strsplit(counts_total[[unique_name_row_identifier]], "_"), '[', 3) - counts_total$Tissue <- sapply(strsplit(counts_total[[unique_name_row_identifier]], "_"), '[', 4) - counts_total$Image_number <- sapply(strsplit(counts_total[[unique_name_row_identifier]], "_"), '[', 5) - counts_total$Treatment <- sapply(strsplit(counts_total[[unique_name_row_identifier]], "_"), '[', 6) - counts_total$Concentration <- sapply(strsplit(counts_total[[unique_name_row_identifier]], "_"), '[', 7) - counts_total$ConcentrationUnits <- sapply(strsplit(counts_total[[unique_name_row_identifier]], "_"), '[', 8) - counts_total$ReplicaOrNot <- sapply(strsplit(counts_total[[unique_name_row_identifier]], "_"), '[', 9) + # get variables back from the filter column + counts_total$PID <- sapply(strsplit(counts_total[[unique_name_row_identifier]], "_"), "[", 1) + counts_total$Date <- sapply(strsplit(counts_total[[unique_name_row_identifier]], "_"), "[", 2) + counts_total$DOC <- sapply(strsplit(counts_total[[unique_name_row_identifier]], "_"), "[", 3) + counts_total$Tissue <- sapply(strsplit(counts_total[[unique_name_row_identifier]], "_"), "[", 4) + counts_total$Image_number <- sapply(strsplit(counts_total[[unique_name_row_identifier]], "_"), "[", 5) + counts_total$Treatment <- sapply(strsplit(counts_total[[unique_name_row_identifier]], "_"), "[", 6) + counts_total$Concentration1 <- sapply(strsplit(counts_total[[unique_name_row_identifier]], "_"), "[", 7) + counts_total$Concentration2 <- sapply(strsplit(counts_total[[unique_name_row_identifier]], "_"), "[", 8) + counts_total$ConcentrationUnits1 <- sapply(strsplit(counts_total[[unique_name_row_identifier]], "_"), "[", 9) + counts_total$ConcentrationUnits2 <- sapply(strsplit(counts_total[[unique_name_row_identifier]], "_"), "[", 10) + counts_total$ReplicaOrNot <- sapply(strsplit(counts_total[[unique_name_row_identifier]], "_"), "[", 11) + counts_total$Treatment_complete <- sapply(strsplit(counts_total[[unique_name_row_identifier]], "_"), "[", 12) - # add drug plus concentration plus units - for (i in unique(tolower(counts_total$Treatment))) { - rows <- tolower(counts_total$Treatment) == i - # Check if the current treatment is not in the specified list - if (!i %in% c("dmso", "control", "ctrl")) { - counts_total$Treatment_complete[rows] <- paste(counts_total$Treatment[rows], counts_total$Concentration[rows], counts_total$ConcentrationUnits[rows], sep = ".") - } else { - counts_total$Treatment_complete[rows] <- counts_total$Treatment[rows] - } - } # Return the data return( diff --git a/R/make_run_config.R b/R/make_run_config.R index e6d8ab5d9f37b363ae7bdb1a643e9d7c7f5d2016..2227812e32783121f73ab44b963249bded48c303 100644 --- a/R/make_run_config.R +++ b/R/make_run_config.R @@ -3,10 +3,11 @@ #' When this function run the first time, it will generated a config.txt file in the user working directory. #' It will import the data config file into the use environment. This data will be used to change the column names #' of the imported dataset and change the name of the markers that is often incorrectly exported. +#' @param overwrite_config Boolean, if TRUE the `config_DRUGSENS.txt` will be overwritten (default is FALSE) #' @export #' @return A `dataframe`/`tibble`. #' @example -make_run_config <- function() { +make_run_config <- function(overwrite_config = FALSE) { if (file.exists("config_DRUGSENS.txt")) { tryCatch( expr = { @@ -19,7 +20,8 @@ make_run_config <- function() { Once the 'config.txt' is available re-run run_config to veryfy that the data was correctly read") } ) - } else { + } else if (overwrite_config){ + message("Overwriting config_DRUGSENS.txt") write( x = ( @@ -27,7 +29,25 @@ make_run_config <- function() { # List of markers to relabel list_of_relabeling = list( - "PathCellObject" = "DAPI", + "PathCellObject" = "onlyDAPIPositve", + "cCasp3" = "cCASP3", + "E-Cadherin: cCASP3" = "E-Cadherin and cCASP3", + "EpCAM_E-Cadherin" = "E-Cadherin", + "EpCAM_E-Cadherin and cCASP3" = "E-Cadherin and cCASP3" + )' + ), + file = paste0(path.expand(getwd()), "/config_DRUGSENS.txt") + ) + message("config_DRUGSENS.txt has been overwritten correctly.") + } else { + write( + x = + ( + ' + # List of markers to relabel + list_of_relabeling = + list( + "PathCellObject" = "onlyDAPIPositve", "cCasp3" = "cCASP3", "E-Cadherin: cCASP3" = "E-Cadherin and cCASP3", "EpCAM_E-Cadherin" = "E-Cadherin", diff --git a/R/parsers.R b/R/parsers.R new file mode 100644 index 0000000000000000000000000000000000000000..79aadb17e35b5e182522f7b5b585c8ea0e1d1c42 --- /dev/null +++ b/R/parsers.R @@ -0,0 +1,82 @@ +#' Main parsing function +#' @description +#' This function will parse the data from the Image name and will return the metadata there contained +#' The metadata will be then associated to the count file as well +#' @import knitr +#' @import testthat +#' @importFrom stringr str_extract +#' @importFrom stringr str_count +#' @return A `dataframe`/`tibble`. +#' @param .data dataframe with parsed metadata +#' @example +#' data.parsed <- string_parsing(.data) +#' #This will return the dataframe of all the data in the folder +# Main function to bind data from multiple files +string_parsing <- function(.data) { + # add the image name + .data$Image_number <- stringr::str_extract( + string = .data$Image, + pattern = "series.\\d*" + ) + + multiple_drugs <- list() + + # Idea I could add the configuration of the relative position of the various elements of the text by providing this configuration in the config file + # in the case of more complex scenario, in the config file, we offer the possibility to manually define the parsing values for more than 3 drugs + # https://bioconductor.org/packages/release/bioc/vignettes/GSVA/inst/doc/GSVA.html + # extract information from the data + .data$PID <- sapply(strsplit(.data$Image, "_"), `[`, 1, simplify = FALSE) |> unlist() + # .data$PID <- str_extract(.data$Image, "[A-Z0-9]+(?=_)") + .data$Tissue <- sapply(strsplit(.data$Image, "_"), `[`, 2, simplify = FALSE) |> unlist() + .data$Date1 <- str_extract(.data$Image, "\\d{4}.\\d{2}.\\d{2}") + .data$DOC <- str_extract(.data$Image, "(?<=DOC)\\d{2,4}.\\d{2}.\\d{2,4}") + .data$ReplicaOrNot <- ifelse(stringr::str_detect(.data$Image, pattern = "Replica|Rep|rep|replica|REPLICA|REP"), "Replica", NA_character_) + + .data$Treatment <- sapply(strsplit(.data$Image, "_"), `[`, 5, simplify = FALSE) |> unlist() + + for (double_patterns in unique(.data$Treatment)) { + number_maiusc <- stringr::str_count(pattern = "[A-Z]", string = double_patterns) + if ((number_maiusc >= 2) & + (number_maiusc < nchar(double_patterns))) { + # save the double drugs + multiple_drugs[[double_patterns]] <- double_patterns + .data <- .data[.data$Treatment == double_patterns, ] + .data$Concentration1 <- sapply(strsplit(.data$Image, "_"), `[`, 6, simplify = FALSE) |> unlist() + .data$Concentration2 <- sapply(strsplit(.data$Image, "_"), `[`, 8, simplify = FALSE) |> unlist() + .data$ConcentrationUnits1 <- sapply(strsplit(.data$Image, "_"), `[`, 7, simplify = FALSE) |> unlist() + .data$ConcentrationUnits2 <- sapply(strsplit(.data$Image, "_"), `[`, 9, simplify = FALSE) |> unlist() + } else { + .data$Concentration1 <- str_extract(.data$Image, "\\d+(?=_[munp][Mm])") + .data$Concentration2 <- NA_integer_ + .data$ConcentrationUnits1 <- str_extract(.data$Image, "[munp][Mm](?=_)") + .data$ConcentrationUnits2 <- NA_character_ + } + } + + # add drug plus concentration plus units + for (i in unique(tolower(.data$Treatment))) { + rows <- tolower(.data$Treatment) == i + # Check if the current treatment is not in the specified list + if (i %in% c("dmso", "control", "ctrl", "original")) { + .data$Treatment_complete[rows] <- .data$Treatment[rows] + + } else if (i %in% tolower(names(multiple_drugs))){ + .data$Treatment_complete[rows] <- paste0(.data$Treatment[rows], + .data$Concentration1[rows], + .data$ConcentrationUnits1[rows], + "-", + .data$Concentration2[rows], + .data$ConcentrationUnits2[rows] + ) + } else { + .data$Treatment_complete[rows] <- paste0(.data$Treatment[rows], + .data$Concentration1[rows], + .data$ConcentrationUnits1[rows] + ) + } + } + + return( + .data + ) +} diff --git a/README.md b/README.md index 0b9dbdd22f8c5d7d29f292d184a1234d80e36bb0..8701752aac654d79464fcb96e8dcedb94e2617b5 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,10 @@  # Overview -Running DRUGSENS for QuPAth script with your project Here we provide the code to run a QuPath for a reproducible example. For more detailed examples please read [QuPath Documentation](https://qupath.readthedocs.io/en/stable/). This script should be placed into scripts within QuPath. We tested this code to a previous version of QuPath. +DRUGSENS is a R-package tha allow users to automatically analyze QuPath™ output data from imaging analysis. +Here we include a QuPath™ script to run reproducible QuPath™-based image analysis, and some examples on how DRUGSENS can be used. For more detailed examples of QuPath™ scripting please refer to [QuPath™'s Documentation](https://qupath.readthedocs.io/en/stable/). +This script should be placed into scripts within QuPath™. We tested this code to a previous version of QuPath&trade. +This packge is complementary to the STAR protocol: `...` # Installation @@ -33,14 +36,14 @@ You can also set you working directory with `setwd()`. ### QuPath script used -To make this code locally available: +To make this code locally available, with the date: ``` r library("DRUGSENS") generate_qupath_script() ``` -This function will generate a `script_for_qupath.txt` file with the code that one can copy/paste into the QuPath's script manager. All the sections that contain \<\> should be replaced with the user experimental information. The `columnsToInclude` in the script should also be user defined, depending on the markers used. +This function will generate a `script_for_qupath.txt` file with the code that one can copy/paste into the QuPath's script manager. All the sections that contain \<\> should be replaced with the user experimental information. The `columnsToInclude` in the script should also be user defined, depending on the markers used. It is very important that the file naming structure QuPath's output is maintained for `DRUGSENS` to work correctly. @@ -73,9 +76,12 @@ def exportType = PathCellObject.class // Choose your *full* output path def outputPath = "<USER_DEFINED_PATH>/<PID>_<TISSUE>_',Sys.Date(),'_<SAMPLE_DOC>_<TREATMENT_INITIALS>_<CONCENTRATION>_<CONCENTRATION_UNITS>_<REPLICA_OR_NOT>_<TUMOR_MARKER>_<APOPTOTIC_MARKER>.csv" def outputFile = new File(outputPath) -// example <USER_DEFINED_PATH>/B39_Ascites_2023.11.10_DOC2023.10.05_NIRAPARIB_1000_nM_Rep_EpCAM_Ecad_cCasp3_ QuPath will add (series 1) at the end of this line -// example <USER_DEFINED_PATH>/B39_Ascites_2023.11.10_DOC2023.10.05_NIRAPARIB_1000_nM_Rep_EpCAM_Ecad_cCasp3_(series 01).tif - +// example <USER_DEFINED_PATH>/B39_Ascites_2023.11.10_DOC2023.10.05_Niraparib_1000_nM_Rep_EpCAM_Ecad_cCasp3_ QuPath will add (series 1, 2 ...etc) at the end of this line, to indicate the stack number +// example <USER_DEFINED_PATH>/B39_Ascites_2023.11.10_DOC2023.10.05_Niraparib_1000_nM_Rep_EpCAM_Ecad_cCasp3_(series 01).tif +//"B516_Ascites_2023-11-25_DOC2020-12-14_CarboplatinPaclitaxel_100_uM_10_nM_Ecad_cCasp3_(series 01).tif" +//"A8759_Spleen_2020.11.10_DOC2001.10.05_Compoundx34542_1000_uM_EpCAM_Ecad_cCasp3_(series 01).tif" +//"A8759_Spleen_2020.11.10_DOC2001.10.05_Compoundx34542_1000_uM_EpCAM_Ecad_cCasp3_(series 01).tif" +//"B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_nM_EpCAM_Ecad_cCasp3_(series 01).tif" // Create the measurementExporter and start the export def exporter = new MeasurementExporter() @@ -88,19 +94,21 @@ def exporter = new MeasurementExporter() print "Done!" ``` +> ðŸ“**NOTE** +>The column `Image` must be present in the data for DRUGSENS to parse the metadata correctly. Title style (This Is An Example) is fine, but if you have a drug combination refer to the formatting as described below [Handling drug combinations](#bind-qupath-files). + ### Generate configuration file This command will generate a `config_DRUGSENS.txt` that should be edited to include the names of the cell markers that have been used by the experimenter. +In our case we replaced `"PathCellObject"` with `"onlyDAPIPositve"`. + ``` r make_run_config() ``` -Once the file `config_DRUGSENS.txt` has been modified; you can feed it back to `R`; by running the command again. -``` r -make_run_config() -``` +Once the file `config_DRUGSENS.txt` has been modified; you can feed it back to `R`; this will be done automatically once you run `data_binding()`. Now the `list_of_relabeling` should be available in the R environment and it can be used by `DRUGSENS` to work. `list_of_relabeling` is a named list that is required for relabeling the markers name, that is often not user friendly. -In case the markers naming doesn't need corrections/relabeling you can leave the `list_of_relabeling` unchanged. +In case the markers naming doesn't need corrections/relabeling you can leave the `list_of_relabeling` unchanged (but one should still check it). -> ðŸ“**NOTE** It is recommended having no spaces and using camelCase style for the list of cell markers. +> ðŸ“**NOTE** It is recommended having no spaces and using camelCase style for the **list of cell markers**: > > - Start the name with a lowercase letter. > - Do not include spaces or underscores between words. @@ -109,26 +117,44 @@ In case the markers naming doesn't need corrections/relabeling you can leave the ### Explore example datasets -We present here a few mock datasets, as an example. Those can be explored from the folder - +We present here a few mock datasets, as example workflow. Those files can be explored from the user's R package path: ``` r system.file("extdata/to_merge/", package = "DRUGSENS") ``` ### Bind QuPath files - +At first the data is a bunch of separate files which are difficult to make sense of; therefore as first step let's bind them together into a single R dataframe! This should take very little time. The example data can be bound together with this command: ``` r bind_data <- data_binding(path_to_the_projects_folder = system.file("extdata/to_merge/", package = "DRUGSENS"), files_extension_to_look_for = "csv") ``` -You will be now able to `View(bind_data)`. You should see all the images from the QuPath in one dataframe. This dataframe will have all the metadata parsed from the `Image` column (this is the first column defined in the in `columnsToInclude` within the `script_for_qupath.txt`). +You will be now able to `View(bind_data)`. You should see all the image stacks from the QuPath in one dataframe. This dataframe will have all the metadata parsed from the `Image` column value for every stack (image x) (this is the first column defined in the in `columnsToInclude` within the `script_for_qupath.txt`). +In this code snippets we show an example of mock data `unique(bind_data$PID)` with PIDs: `"A8759" "B36" "B37", "B38", "B39"` and tissue `"Spleen", "p.wash", "Ascites", "Eye"``. You will have all the metadata in one go and also for drug combinations! -### Counting the markers for every image -This function will take the previous step's generated dataframe and it will counts image by image for every sample the number of marker occurrences. This function will keep the metadata +> âš ï¸ **WARNING**: As long as you keep the formatting as the above examples. +The dates should also be in the format **yyy-mm-dd**. For the double combinations the two drugs should be wrote together with each of the different drug capilized (**C**arboplatin**P**aclitaxel) and the rest lowercased letters. +For example **CarboplatinPaclitaxel_100_uM_10_nM**. This indicates a drug combination of Carboplatin 100_uM and Paclitaxel 10_nM. Each drug amount and each unit should always be separated by `_`. The first 100_uM belongs to the Carboplatin and the 10_nM belongs to the Paclitaxel. Those constrains are due to the parsing of the strings into useful metadata. If some of the data is not present, you can use a `.` separated by `_`. If you need additional data parsing, please let us know by filing an issue on GitLab [GitLab Issue]("https://git.scicore.unibas.ch/ovca-research/DRUGSENS/issues"). + +### Counting the number of positiive cells for each marker in every image +This function will take the previous step's generated dataframe and it will counts image by image (sum the markers of every stack) for every sample the number of marker occurrences. ``` r counts_dataframe <- make_count_dataframe(bind_data) ``` +### Some plotting +This function will take the previous step's generated dataframe (`bind_data`) and it will generate some plots for every cell marker and for some key features from the QuPath metadata, such as nucleus area of the markers and the mean of expression per maker. The script will generate separate folders for each PID in the dataset. There might be quite some plots, therefore you can isolate specific PID or specific treatment, if that is required. With `fill_color_variable` different variables present in the metadata can be tested to visualize the data. +``` r +get_QC_plots_parsed_merged_data(bind_data, + fill_color_variable = "Tissue", + save_plots = TRUE) +# OR +get_QC_plots_parsed_merged_data(bind_data, + fill_color_variable = "Treatment_complete", + save_plots = TRUE) +``` +<img src="assets/QC_plot3.png" alt="QC Plot example" title="QC Plot example" width="500" height="500"/> +<br> + ### Making plotting-ready data This function will change the wider format into longer format keeping all the metadata ``` r @@ -155,7 +181,8 @@ That follows the structure suggested in the QuPath script ``` "<USER_DEFINED_PATH>/<PID>_<TISSUE>_',Sys.Date(),'_<SAMPLE_DOC>_<TREATMENT_INITIALS>_<CONCENTRATION>_<CONCENTRATION_UNITS>_<REPLICA_OR_NOT>_<TUMOR_MARKER>_<APOPTOTIC_MARKER>.csv" ``` -> âš ï¸ **WARNING**: It is highly recommended to follow the recommended naming structure to obtain the correct output +> âš ï¸ **WARNING**: It is highly recommended to follow the recommended naming structure to obtain the correct output. The dates should also be in the format **yyy-mm-dd**. For the double combinations the two drugs should be wrote together with each of the different drug capilized (**C**arboplatin**P**aclitaxel) and the rest lowercased letters. +For example **CarboplatinPaclitaxel_100_uM_10_nM**. This indicates a drug combination of Carboplatin 100_uM and Paclitaxel 10_nM. Each drug amount and each unit should always be separated by `_`. The first 100_uM belongs to the Carboplatin and the 10_nM belongs to the Paclitaxel. Those constrains are due to the parsing of the string into useful metadata. If some of the data is not present, you can use a `.` separated by `_`. ### Data Binding and Processing @@ -173,22 +200,41 @@ bind_data <- data_binding(path_to_the_projects_folder = defined_path, files_extension_to_look_for = desired_file_extensions, recursive_search = FALSE) ``` - > ðŸ“**NOTE**It is recommended to run `data_binding()` with `recursive_search = FALSE` in the case that the target folder has subfolders that belong to other projects that use other cell markers. Each file is read, and additional metadata is extracted. This will return a dataframe of all the csv files within the folder merged with some additional parsing, the metadata is parsed from the file name will be retrieved and appended to the data. Metadata such as: - **PID** = A unique identifier assigned to each sample. This ID helps in distinguishing and tracking individual samples' data throughout the experiment. - **Date1** = The date on which the experiment or analysis was conducted. This field records when the data was generated or processed. -- **DOC** = The date when the biological sample was collected. -- **Tissue** = Indicates the type of tissue from which the sample was derived. This could be a specific organ or cell type -- **Image_number** = Represents the order or sequence number of the image in a stack of images -- **Treatment** = The name or type of drug treatment applied to the sample -- **Concentration** = The amount of the drug treatment applied (concentration), quantitatively described. -- **ConcentrationUnits** = The units in which the drug concentration is measured, such as micromolar (uM) or nanomolar (nM) -- **ReplicaOrNot** = Indicates whether the sample is a replica or repeat of a previous experiment -- **Name** = The standardized name of the cell markers as defined in the `config_DRUGSENS.txt` file. This ensures consistency and accuracy in identifying and referring to specific cell markers. +- `DOC` = The date when the biological sample was collected. +- `Tissue` = Indicates the type of tissue from which the sample was derived. This could be a specific organ or cell type +- `Image_number` = Represents the order or sequence number of the image in a stack of images +- `Treatment` = The name or type of drug treatment applied to the sample +- `Concentration` = The amount of the drug treatment applied (concentration), quantitatively described. +- `ConcentrationUnits` = The units in which the drug concentration is measured, such as micromolar (uM) or nanomolar (nM) +- `ReplicaOrNot` = Indicates whether the sample is a replica or repeat of a previous experiment +- `Name` = The standardized name of the cell markers as defined in the `config_DRUGSENS.txt` file. This ensures consistency and accuracy in identifying and referring to specific cell markers. + +### A first QC plot +``` r +plots <- get_QC_plots_parsed_merged_data(bind_data, +fill_color_variable = "Treatment_complete", save_plots = TRUE) +``` +<img src="assets/QC_plot1.png" alt="QC Plot example" title="QC Plot example" width="500" height="500"/> +<br> +This plots shows the ratio of expressed markers in the various conditions, other variables (for `example Tissues` or `Treatment_complete`) can also be used. The data will be, by default, be saved in the current working directory in a folder called `figures` and will make subfolders for each PID present in the dataset. + +- `.data`: The main dataset, expected to be a dataframe that has been preprocessed and formatted into a long format. +- `list_of_columns_to_plot`: Specifies which columns in the data should be visualized. Defaults to all numeric columns if not provided. +- `save_plots`: A boolean flag indicating whether the plots should be saved as files. +- `saving_plots_folder`: The directory where plot files will be saved, with "figures" as the default. +- `fill_color_variable`: Specifies a variable in the data to use for color-coding the plots, enhancing the visual distinction between different data groups. +- `PID_column_name`, isolate_specific_drug, isolate_specific_patient: Parameters allowing for the isolation of data based on patient ID or specific treatment, facilitating targeted analysis. +- `drug_column_name`: Defines the column that indicates the treatment or drug, with "Treatment" as the default. +- `save_list_of_plots`, `save_plots_in_patient_specific_subfolders`: Flags controlling the saving behavior of the plots, including the option to save in patient-specific subfolders for organized file management. +- `p_height`, `p_width`: Parameters to customize the height and width of the generated plots, ensuring they fit the desired visualization scale. + ### Cell markers counting `make_count_dataframe()`, is designed for processing microscopy data stored in a dataframe. It counts occurrences of different markers present in the dataset and computes additional metadata based on unique identifiers within each row. @@ -265,6 +311,6 @@ Renv will automatically activate and install the necessary packages as specified </details> ### Reporting Issues -If you encounter any bugs or have suggestions for improvements, please file an issue using our [GitLab]("https://git.scicore.unibas.ch/ovca-research/DRUGSENS/issues"). Be sure to include as much information as possible to help us understand and address the issue. +If you encounter any bugs or have suggestions for improvements, please file an issue using our [GitLab Issue]("https://git.scicore.unibas.ch/ovca-research/DRUGSENS/issues"). Be sure to include as much information as possible to help us understand and address the issue. Please make sure to file the issue in gitlab as the GitHub is a mirror repo. diff --git a/assets/QC_plot1.png b/assets/QC_plot1.png new file mode 100644 index 0000000000000000000000000000000000000000..6cbb80ecafd1dbaac6c88053f95778828a1bd39e Binary files /dev/null and b/assets/QC_plot1.png differ diff --git a/assets/QC_plot2.png b/assets/QC_plot2.png new file mode 100644 index 0000000000000000000000000000000000000000..abaef67fce0a21b22b73e75148087edc16f92fd9 Binary files /dev/null and b/assets/QC_plot2.png differ diff --git a/assets/QC_plot3.png b/assets/QC_plot3.png new file mode 100644 index 0000000000000000000000000000000000000000..59a6e1d0c9d7754fac91d7671861a9ac4ad77784 Binary files /dev/null and b/assets/QC_plot3.png differ diff --git a/inst/extdata/to_merge/B38_Ascites_GP.csv b/inst/extdata/to_merge/B38_Ascites_GP.csv index 4a5041b7ed76653e937acf2aecfa34367d9ab3e3..4991303d0b7375bdfa396fbc6c466ffabfe71597 100644 --- a/inst/extdata/to_merge/B38_Ascites_GP.csv +++ b/inst/extdata/to_merge/B38_Ascites_GP.csv @@ -1,969 +1,969 @@ Image,Name,Class,Centroid X µm,Centroid Y µm,Nucleus: Area,Nucleus: DAPI mean,Nucleus: EpCAM_E-Cadherin mean,Nucleus: cCASP3 mean,Cell: Area,Cell: EpCAM_E-Cadherin mean,Cell: cCASP3 mean,Cytoplasm: EpCAM_E-Cadherin mean,Cytoplasm: cCASP3 mean,Nucleus/Cell area ratio -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 01).tif,PathCellObject,,101.71,76.58,50,167.8878,225.5366,219.6341,147,182.9949,183.9286,160.2245,164.8172,0.3398 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 01).tif,PathCellObject,,115.1,77.8,32,242.782,201.4286,169.8872,117.75,164.9683,163.3087,150.7059,160.7353,0.2756 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 01).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,146.28,87.38,82.25,201.5849,837.4303,213.2485,198.75,1470.8129,189.2802,1919.3455,172.3069,0.4131 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 01).tif,PathCellObject,,87.46,87.91,30.25,241.6111,246.0714,178.6349,105.25,187.5765,169.9223,162.9264,166.2508,0.2813 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 01).tif,PathCellObject,,104.02,88.78,34.5,256.4225,287.2606,187.5845,113.25,207.2259,177.3399,171.0318,172.707,0.3 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 01).tif,PathCellObject,,94.47,95.29,25,290.2039,266.7573,179.2719,90,189.2617,169.7713,158.5615,166.0077,0.2719 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 01).tif,PathCellObject,,109.31,105.96,126.75,166.8148,302.6452,233.3177,276.75,247.4523,232.7396,200.0251,232.2429,0.4595 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 01).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,159.73,146.32,69,226.6821,462.025,279.5679,173.25,445.1036,236.9583,433.6867,208.2096,0.4019 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 01).tif,PathCellObject,,111.92,147,29.75,318.3171,274.2764,188.7805,109.5,185.8685,176.6825,151.673,172.0031,0.2642 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 01).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,147.94,151.27,24.75,443.01,503.77,208.9,94.25,431.6553,203.6921,405.9,201.8321,0.2449 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 01).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,171.02,157.72,84.25,289.8118,436.4706,246.95,206,407.4626,213.5242,387.252,190.2357,0.4094 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 01).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,157.28,156.65,11,160.9583,577.8542,245.2917,62.25,635.1075,241.5857,648.6453,240.7094,0.1718 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 01).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,195.67,157.07,16,178.4848,2574.4092,187.0455,74.25,2148.7625,177.5284,2028.1931,174.8326,0.2112 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 01).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,204.1,163.76,86.5,356.043,723.4097,303.7908,193,1353.8955,235.3974,1870.4202,179.3662,0.4446 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 01).tif,cCASP3,cCASP3,149.3,163,37.5,150.6513,228.7697,1715.296,123,178.4413,706.9717,156.0731,258.8275,0.3021 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 01).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,166.75,179.21,71.75,317.0586,510.7379,202.3379,179.75,396.7327,181.9571,320.2014,168.2755,0.396 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 01).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,185.5,183.85,55.25,310.0714,1557.5759,206.9866,155.75,775.168,191.0544,338.1122,182.1546,0.3515 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 01).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,196.54,198.06,28.75,374.3932,855.8975,16175.6924,99.75,584.62,9758.5996,472.4664,7105.5972,0.2872 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 01).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,189.5,198.25,16.5,286.1029,917.3823,17508.1328,66.25,646.0037,10381.4775,553.735,7958.415,0.2436 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 02).tif,PathCellObject,,219.84,103.02,51.5,299.9095,288.7619,192.8048,126.75,276.4,181.8255,267.7467,174.14,0.4017 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 02).tif,PathCellObject,,234.15,103.9,33,480.9173,260.0226,179.3759,115.25,208.2928,169.6833,187.3171,165.7531,0.2804 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 02).tif,PathCellObject,,211.57,111.35,69.75,254.265,257.2085,314.8975,153.25,245.7488,248.5478,236.0389,192.3293,0.4532 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 02).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,194.77,115.85,161,386.2438,337.5047,261.1553,312.25,416.0929,226.1257,499.7471,188.838,0.5136 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 02).tif,PathCellObject,,224.38,112.68,35.25,197.3056,312.9236,187.4653,98.25,253.1136,177.1061,218.9365,171.1865,0.3548 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 02).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,145.42,124.42,99.5,257.5661,480.8254,207.1995,221.25,901.4684,195.6667,1247.8296,186.1704,0.4492 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 02).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,154.94,122.38,23,178.8775,835.9796,280.2857,79.75,911.7781,206.3906,945.2387,173.7703,0.2964 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 02).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,174.58,129.76,107.25,212.3481,546.0911,183.6986,237.75,502.6034,174.51,467.1505,167.019,0.4457 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 02).tif,PathCellObject,,218.6,135.07,14.5,171.9531,316.9844,204.7031,63.75,295.5405,243.7799,288.5026,256.6051,0.2355 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 02).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,106.31,137.35,22.5,143.5612,1960.4897,188.2347,85.25,2020.5479,177.6319,2044.3765,173.4251,0.277 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 02).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,209.39,138.01,33,190.3556,588.6296,5722.4888,105.25,583.407,2949.0752,580.9759,1658.0034,0.3104 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 02).tif,PathCellObject,,36.21,144.61,90.5,157.4218,295.2821,221.014,228,233.3319,192.5747,193.154,174.1304,0.3895 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 02).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,115.77,142.44,56.25,193.8652,2063.0913,268.1348,134.75,1647.0315,215.4685,1338.3419,176.3936,0.4196 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 02).tif,PathCellObject,,221.36,145.36,69,261.1828,294.1147,242.0323,165.75,287.8722,292.409,283.3601,328.8213,0.4143 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 02).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,200.68,146.31,81,325.4329,435.5701,317.5762,188.5,477.1308,501.9577,508.9068,642.9301,0.4318 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 02).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,107.53,148.21,25.75,153.215,2620.0188,206.1589,86.5,3343.6182,348.2422,3660.9343,410.5492,0.2898 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 02).tif,PathCellObject,,130.49,150.36,73.5,146.1313,439.1145,190.7778,200.25,328.3848,179.0834,263.3913,172.2194,0.3662 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 02).tif,PathCellObject,,20.17,152.31,35.75,176.5734,213.021,177.3636,120.5,175.7614,169.9274,160.0443,166.7906,0.2909 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 02).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,87.41,150.69,14.5,177.629,855.0323,185.4194,69.25,1268.5714,179.9678,1386.1835,178.4174,0.1999 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 02).tif,PathCellObject,,189.42,154.63,75,217.6391,391.1159,183.7848,194.25,314.4543,178.0824,265.7137,174.4568,0.3876 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 02).tif,PathCellObject,,228.94,154.94,24.5,641.7549,221.402,183.2157,82.25,171.7319,171.1265,149.7043,165.7652,0.2951 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 02).tif,PathCellObject,,31.55,156.23,10,146.4286,188.3571,384.2381,57.25,162.2112,230.4569,156.4316,196.4632,0.1653 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 02).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,88.24,160.82,74,228.3591,673.9161,233.8188,179,899.6425,206.2277,1060.567,186.5574,0.4077 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 02).tif,PathCellObject,,223.29,160.28,21.75,569.125,256.6932,177.1818,73,207.8503,172.0646,186.9854,169.8786,0.2796 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 02).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,30.33,166.03,54.5,228.5636,448.65,272.5364,148.25,411.7538,215.4587,389.9919,181.7936,0.3643 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 02).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,113.28,164.41,32.5,184.3383,639.6241,211.1278,102.25,606.8878,217.1512,591.1697,220.0433,0.3229 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 02).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,144.78,165.91,59,259.2827,648.6034,242.654,141.75,950.5272,205.9139,1166.0573,179.6868,0.411 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 02).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,129.06,167.79,34,172.2662,357.554,199.9353,111.25,467.1278,191.3117,516.7394,187.4072,0.3034 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 02).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,81.9,174.49,93.75,163.992,1763.8396,255.9037,219,1650.8397,256.3136,1567.3182,256.6166,0.4256 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 02).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,114.21,175.48,79.25,251.2523,394.0156,217.5421,168.75,489.757,204.6583,575.6033,193.1061,0.465 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 02).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,149.07,176.19,94.75,295.8447,668.5369,218.6105,188.5,1140.6058,203.2341,1617.6968,187.6942,0.4964 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 02).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,129.82,181.98,201.5,218.6543,348.3507,296.8253,340.75,457.5894,256.4377,615.8582,197.9228,0.5911 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 02).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,37.86,185.52,68.5,143.363,373.427,384.0107,182.75,448.7135,256.1446,495.5177,176.6526,0.3783 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 02).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,159.29,188.44,124.5,249.848,1000.47,227.352,231.5,1213.1744,208.5318,1461.0815,186.5967,0.5387 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 02).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,145.58,189.05,39.75,170.0759,1365.7216,196.1899,139.5,1935.7589,199.4286,2159.8035,200.7015,0.278 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 02).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,108.77,190.88,48.25,237.9794,500.6186,266.9485,142.75,642.465,213.1766,715.2645,185.5794,0.3303 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 02).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,168.84,196.21,61.5,237.688,771.04,245.576,131.25,1383.4622,223.2557,1934.2014,203.1835,0.4649 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 02).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,127.74,198,101.5,262.8346,428.4691,287.5086,195.5,615.6624,249.0917,815.1711,208.1474,0.5143 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 02).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,115.46,202.47,43.75,210.6035,379.431,246.9023,119,438.2227,208.605,472.096,186.5397,0.3598 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 02).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,141.84,206.46,82,294.003,478.1454,205.1121,182.5,881.9644,233.0603,1215.115,256.1175,0.4466 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 02).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,169.46,206.52,36.75,298.2467,598.9133,245.3467,90.5,602.6676,214.5962,605.2991,193.0421,0.3956 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 02).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,187.83,208.82,87.25,348.5382,746.9037,368.2521,204.25,1178.4437,272.2347,1506.043,199.3441,0.4271 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 02).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,105.77,209.99,66.25,195.0824,731.0487,199.7378,159,858.9199,192.9356,951.1946,188.027,0.4136 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 02).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,158.68,209.55,75.25,293.6918,621.4197,227.9082,171.25,1129.4586,218.8302,1532.9791,211.6198,0.4376 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 02).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,129.22,211.15,68.5,256.1533,332.2336,242.9489,146.5,483.2619,225.0153,615.051,209.3662,0.4616 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 02).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,95.08,211.79,42.75,287.0575,1311.7931,215.1897,119.75,1150.501,202.1636,1059.6764,194.8285,0.3518 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 02).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,168.51,218.09,31,180.992,336.272,208.256,100.5,353.7649,191.4282,361.6021,183.8889,0.2999 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 02).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,118.27,220.46,88.5,354.7352,476.6451,244.9211,202.25,900.7571,219.2651,1230.932,199.2917,0.4336 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 02).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,144.92,219.79,54,225.4977,684.8995,270.8448,135.5,775.0512,232.7002,835.2439,207.2317,0.396 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 02).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,196.66,220.41,90,257.8705,923.1378,213.0606,184.25,955.8043,196.7436,987.1746,181.0741,0.4822 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 02).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,135.01,220.63,19.25,230.6364,750.0649,216.7792,65.25,768.6502,210.3916,776.3441,207.7473,0.2797 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 02).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,226.97,224.99,115.75,213.4392,697.3752,206.6525,253.5,680.5368,190.3386,666.1782,176.4273,0.4553 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 02).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,244.31,223.71,62.75,278.1429,1004.5992,186.6825,168,934.4407,178.184,892.545,173.109,0.3745 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 02).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,182.96,224.63,60.75,222.151,1419.4122,200.4,133.5,1349.5671,189.8769,1290.7629,181.0172,0.4502 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 02).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,195.25,231.55,59.75,197.7119,625.4115,222.7819,140,807.2014,207.8663,946.1163,196.4686,0.4271 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 02).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,136.15,230.51,53.25,194.5047,719.1589,292.6869,129.5,782.5268,241.9483,826.5552,206.6948,0.4023 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 02).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,177.82,234.06,26,164.5138,1329.7615,186.422,95,1605.8875,181.9712,1716.1355,180.1941,0.2722 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 02).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,137.58,239.2,19,211.6538,1434.8846,234.8462,64.75,1422.0496,206.6794,1416.6086,194.7391,0.2834 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 02).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,188.47,240.27,50.5,221.5735,1654.0441,194.1912,124,1789.4377,186.0442,1883.3844,180.3912,0.3971 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 02).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,199.4,244.55,35.25,227.7622,300.993,208.1259,115.75,400.4387,193.3247,444.6025,186.7516,0.3067 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 02).tif,PathCellObject,,242.05,248.5,41.5,385.5629,300.1258,210.8443,133.25,270.4503,188.4934,256.9099,178.2951,0.304 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 02).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,244.96,273.37,129.5,260.1843,392.8253,255.5221,274.25,630.1732,223.9371,844.8577,195.3681,0.4715 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 03).tif,PathCellObject,,124.02,80.94,32.25,216.5185,256.9704,180.8074,117,197.2153,168.2068,173.0629,163.1138,0.2804 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 03).tif,PathCellObject,,141.05,82.52,23.75,167.6526,227.0316,182.1684,86.75,229.8934,195.2507,230.9722,200.1825,0.2707 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 03).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,135.89,91.41,32.75,149.1579,388.0301,197.7519,97.75,363.0404,196.6439,350.403,196.0836,0.3313 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 03).tif,PathCellObject,,163.71,91.99,25.75,245.4623,173.3962,161.9811,102.25,142.6019,158.7136,131.9346,157.5817,0.2446 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 03).tif,PathCellObject,,141.67,99.22,71.75,181.3,269.2793,216.6345,165.5,275.8928,197.0121,281.0484,181.7151,0.4342 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 03).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,190.28,112.71,86.5,197.4062,691.321,241.2102,205.75,659.6155,208.3978,636.12,184.0821,0.4188 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 03).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,165.33,114.83,51.25,251.0825,463.1845,186.5631,144.75,476.9758,179.4093,484.5925,175.4585,0.3522 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 03).tif,PathCellObject,,149.67,123.33,30.25,369.6585,262.0488,178.3659,104,222.2356,173.262,205.5222,171.1195,0.2901 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 03).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,172.84,123.28,30.25,190.4194,457.0242,191.5081,88.75,443.3955,185.1922,436.2043,181.8596,0.3359 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 03).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,193.15,127.91,76.25,311.8,345.9803,243.2262,179,456.7892,206.4993,538.0312,179.5721,0.4197 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 03).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,168.41,131.32,41,254.2381,461.6131,213.3036,111.75,395.5469,187.3549,355.9071,171.7857,0.3594 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 03).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,213.72,135.36,136,282.1462,435.6472,297.1389,280,841.7191,255.059,1230.7233,214.7478,0.484 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 03).tif,PathCellObject,,151.75,133.56,34,148.3358,259.7372,172.3723,114.75,211.8568,168.7072,191.6111,167.1574,0.2927 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 03).tif,PathCellObject,,241.52,134.29,17,165.3571,298.8286,182.2,69.75,197.5159,168.0459,164.2207,163.3944,0.2349 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 03).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,200.72,136,11.25,173.9375,1115.875,230.1875,63.5,1110.875,285.043,1109.7212,297.7019,0.1754 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 03).tif,PathCellObject,,232.53,141.05,69.5,293.6844,265.1702,403.3085,168.25,247.8351,278.4993,235.3325,188.4834,0.4148 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 03).tif,PathCellObject,,243.75,142.5,16.5,175.7042,306.6197,202.5775,52.5,249.3628,186.9674,221.1319,179.2708,0.3243 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 03).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,193.32,146.05,118,333.2764,398.2489,369.0865,253.75,491.0334,338.4307,572.0276,311.6703,0.4613 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 03).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,248.1,148.66,20.75,174.0795,337.4773,182.7614,65.75,407.0113,178.5526,441.3876,176.4719,0.3192 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 03).tif,PathCellObject,,240.91,154.56,42.75,227.2629,334.0343,198.5886,112,294.24,182.0533,268.9164,171.5309,0.3816 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 03).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,254.11,160.35,67.25,217.8736,1448.3048,186.4387,180.25,1736.2697,181.2324,1906.8921,178.1476,0.3681 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 03).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,161.93,169.37,105.75,189.8019,739.7902,222.028,283,956.1979,211.1254,1088.2589,204.4723,0.38 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 03).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,85.76,169.06,44.75,151.5706,725.7772,214.8587,153,725.4078,211.6672,725.2494,210.2984,0.2963 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 03).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,104.85,169.9,35,177.9448,1119.4069,7447.814,125.25,1280.9303,6058.1733,1346.535,5493.7534,0.2832 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 03).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,149.05,170.17,24,222.5714,1127.8163,321.4184,95,1070.4922,233.7382,1050.7113,203.4824,0.2506 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 03).tif,PathCellObject,,244.92,171.47,29.25,531.1074,326.405,185.2975,109,214.5649,170.4351,172.0094,164.7799,0.2642 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 03).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,138.22,176.43,66,308.8144,600.1212,198.6818,167.5,992.7448,195.4314,1248.0468,193.3177,0.3838 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 03).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,69.81,178.37,82.75,189.7319,1358.241,209.5121,198.75,1737.3606,189.8907,2008.6272,175.8513,0.4165 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 03).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,151.42,183.91,98.5,229.2727,514.6692,324.8156,202.75,759.2813,260.4693,991.0192,199.5096,0.4765 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 03).tif,PathCellObject,,163.47,187.69,41,206.4793,403.0887,302.8343,115.75,336.1527,229.028,297.9358,186.8885,0.3504 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 03).tif,PathCellObject,,190.56,187.73,73,232.0912,306.5777,252.1858,168.75,339.5786,241.5579,365.4206,233.2354,0.4314 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 03).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,157.79,195.14,11.25,194.8542,466.5625,200.4792,48,503.9492,201.5634,515.9933,201.9128,0.2245 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 03).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,147.32,199.64,121,327.6412,369.5608,218.8887,247.5,550.1427,222.0452,721.8726,225.0471,0.4905 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 03).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,218.1,200.29,54.25,274.7169,608.8311,188.0502,162.5,1006.8015,191.3585,1209.0186,193.0394,0.3328 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 03).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,192.38,200.69,89,312.4917,350.9917,333.9778,169,397.909,269.3245,450.5265,196.8162,0.5252 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 03).tif,PathCellObject,,204.58,203.79,65.25,172.0639,327.015,199.4023,188.25,311.7586,186.4058,303.4426,179.3217,0.346 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 03).tif,PathCellObject,,229.72,201.11,43.75,382.7841,341.7614,194.9773,132.5,325.6654,180.9549,317.7079,174.0225,0.3212 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 03).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,181.46,209.98,222.75,245.6794,438.4271,286.8061,370.25,700.8839,283.2955,1097.6831,277.9881,0.5993 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 03).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,162.14,206.14,56.75,200.7424,645.2664,249.3144,148.75,678.4773,222.8084,699.2568,206.224,0.3797 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 03).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,37.4,225.03,78.75,158.1153,429.3832,218.4424,215,443.8269,193.6945,452.413,178.9833,0.3687 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 03).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,82.11,222.05,120.5,197.9528,383.9199,292.7454,245.75,515.2305,251.0091,643.6406,210.1948,0.4915 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 03).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,165.26,222.35,74.25,253.4267,682.7733,239.8067,185.25,786.1488,227.3324,855.6838,218.9417,0.3939 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 03).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,101.14,222.51,84.5,183.0202,768.9219,220.7832,206.5,786.4294,208.3788,798.971,199.4928,0.4124 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 03).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,186.46,225.09,39,272.1863,700.5342,224.2298,109.25,1093.4966,215.5652,1322.7246,210.5109,0.3539 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 03).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,73.31,233.39,95.5,187.356,444.3796,219.8743,188.25,640.7706,203.6353,842.4409,186.9597,0.5009 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 03).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,58.83,236.36,108.75,199.1871,758.7875,214.2633,226,951.2318,197.6744,1127.4017,182.4884,0.4753 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 03).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,92.04,237.58,68.25,163.7692,538.8938,270.2381,177.5,668.5662,238.0437,749.5743,217.9314,0.3758 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 03).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,180.94,246.49,48.25,178,1230.5358,275.7908,144.5,1365.5758,214.1414,1434.5026,182.6745,0.3297 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 03).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,69.95,245.46,30.25,198.9134,1005.8661,202.1654,98.75,1388.3041,197.1482,1567.5277,194.797,0.3075 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 03).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,96.55,248.24,69.5,206.5907,732.1744,254.1851,131.5,1039.0645,237.2519,1388.1984,217.9879,0.5213 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 03).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,106.8,247.79,41.75,165.1637,409.6842,286.4269,109.75,380.2602,306.9887,361.6937,319.9631,0.3821 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 03).tif,PathCellObject,,143.29,247.87,31.5,336.4574,252.8217,189.845,115,191.4729,176.8069,167.6355,171.741,0.2707 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 03).tif,PathCellObject,,242.56,249.14,59,309.3544,378.5696,191.7089,154.5,327.7,182.1371,296.2219,176.2141,0.3761 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 03).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,85.62,251.47,59.25,224.7437,937.1722,251.605,125.25,1206.4232,221.3209,1443.7629,194.6259,0.4601 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 03).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,77.07,253.65,50.5,217.5271,688.6453,254.5813,113.25,1755.2594,222.167,2614.4761,196.0556,0.4329 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 03).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,198.24,255.36,99.25,256.1194,753.4055,306.1393,225.5,2489.468,260.1383,3879.7012,223.3008,0.4409 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 03).tif,PathCellObject,,231.46,255.31,62.25,165.25,294.4286,206.1746,161.5,229.4145,189.3097,188.1461,178.6045,0.3864 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 03).tif,PathCellObject,,122.54,253.71,30.75,267.456,200.368,185.816,112.5,169.8093,175.8448,158.092,172.0215,0.269 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 03).tif,PathCellObject,,137.48,257.87,22.5,167.3696,168.4456,168.8587,93.5,141.1223,165.1277,132.2711,163.919,0.2301 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 03).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,101.46,262.81,87.5,210.2408,430.051,195.9037,203,374.9619,184.8561,332.687,176.3783,0.431 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 03).tif,PathCellObject,,113.18,269.61,29,187.7059,252.2269,178.3782,104,241.7727,175.2153,237.612,173.9565,0.2718 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 03).tif,PathCellObject,,104.83,279.66,30.5,270.8211,293.187,188.3008,110.25,226.1746,180.4172,200.2547,177.3679,0.273 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 04).tif,PathCellObject,,96.61,70.98,30.5,150.6694,214.1901,168.7107,111,160.6464,161.0968,140.5882,158.2446,0.2666 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 04).tif,PathCellObject,,117.11,82.3,39.25,162.0248,275.6584,201.2547,136.5,193.2149,174.6448,159.0052,163.6031,0.2855 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 04).tif,PathCellObject,,129.7,86.86,32.5,230.3037,249.7259,162.5556,113.75,202.6551,161.8503,183.1626,161.5583,0.2782 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 04).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,173.25,91.47,108.25,156.2023,3054.3171,290.7149,256.5,1968.9375,227.9287,1167.3413,181.5586,0.4201 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 04).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,109.08,92.6,38.75,260.5833,532.2564,277.109,125.5,366.5259,241.0518,291.8035,224.7948,0.2995 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 04).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,91.53,94.3,41.25,165.7823,1428.7646,422.9529,102,1290.5596,377.382,1193.0706,345.2365,0.3998 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 04).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,97.46,100.46,16,144.3333,1173.9697,920.1667,64,748.1556,632.8716,601.0157,533.5969,0.2503 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 04).tif,PathCellObject,,125.98,100.11,33.5,300.3309,232.8235,195.6912,115.75,193.9807,175.2532,177.9727,166.8303,0.2811 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 04).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,86.24,102.45,29.25,178.5294,2585.2688,189.4622,86.5,1569.8444,177.3372,1039.864,171.0088,0.3251 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 04).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,176.27,111.52,42.75,157.358,510.4716,169.7557,139.25,371.7429,164.2786,308.1588,161.7682,0.3124 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 04).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,202.22,115.73,37,262.0915,746.2941,316.4248,103.5,706.4928,292.0526,683.5132,277.9811,0.3544 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 04).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,129.19,118.83,43,176.7386,646.4205,203.358,153.75,653.1526,184.9756,655.8455,177.6227,0.2787 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 04).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,211.06,122.07,55,305.0493,687.0314,290.6233,132,840.8154,273.9699,952.1591,261.9123,0.4181 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 04).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,149.5,126.69,115,228.846,360.1475,195.2755,238.5,477.6046,190.2354,586.994,185.5414,0.4768 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 04).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,197,125.64,44,177.375,2120.1819,520.4489,122,1573.5111,486.3489,1269.9968,467.4164,0.3522 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 04).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,163.05,126.41,62,243.7182,713.2857,219.3968,163.75,655.172,189.7382,619.0123,171.284,0.3727 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 04).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,135.84,132.52,51.25,213.9317,1088.0439,281.9366,142.75,897.993,223.5727,791.5437,190.8825,0.356 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 04).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,204.5,132.23,27,171.8125,2241.0535,382.5536,95,1366.5013,349.8068,1005.0627,336.2731,0.2862 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 04).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,230.34,136.19,52.5,321.6432,2440.9155,283.6432,128,2005.3483,220.3055,1697.1229,175.485,0.4088 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 04).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,154.27,142.55,56,236.2812,288.3214,193.567,134.5,576.6876,197.6784,780.4543,200.5836,0.4121 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 04).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,145.94,143.82,39.25,241.205,436.4969,196.6025,103.25,699.1899,219.5312,865.0471,234.0078,0.3669 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 04).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,195.79,146.89,203.25,269.5331,390.364,237.0441,391.5,442.4498,214.5648,499.1949,190.0748,0.52 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 04).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,223.58,144.01,57,278.6298,3163.4084,231.1447,124.25,3364.1082,210.1343,3542.7615,191.4318,0.4637 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 04).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,232.4,149.93,51,186.6098,4942.5415,252.8098,154,4204.6719,239.1006,3836.635,232.2628,0.3303 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 04).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,175.8,150.9,84.75,230.3954,639.9651,244.1715,204,770.1755,213.292,865.276,190.7389,0.4155 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 04).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,139.7,151.03,53.75,274.3425,283.0548,218.2785,115.5,510.5527,212.6602,713.0813,207.6585,0.4663 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 04).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,128.76,151.07,34.5,196.5286,604.1857,326.0214,98.75,802.0806,254.2065,909.8832,215.0856,0.347 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 04).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,214.61,156.71,97.25,295.5026,419.7449,285.2679,219.75,766.5,250.2466,1045.041,222.1148,0.44 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 04).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,151.5,159.36,75.25,210.3256,716.2625,234.1661,169.25,967.5162,231.0618,1167.0607,228.5963,0.4357 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 04).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,124.16,159.96,51.25,215.4175,610.8398,244.0485,131,591.5706,222.7843,579.0881,209.0094,0.3857 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 04).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,139.47,160.09,42,300.9181,316.8947,229.1345,94.5,656.1027,228.621,933.6364,228.201,0.443 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 04).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,173.86,164.44,57,257.8565,483.8435,286.3696,132.5,622.6893,237.838,728.7841,200.7542,0.4275 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 04).tif,PathCellObject,,233.21,166.73,47,771.5596,347.9845,233.0881,144.75,281.9121,214.6069,248.9612,205.3902,0.329 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 04).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,205.33,170.86,123,396.6788,533.103,493.2606,257,1047.7466,340.799,1523.9121,199.7365,0.4799 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 04).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,157.86,169.13,51,353.5686,533.9706,208.7794,110,746.2793,210.8468,926.7416,212.6042,0.4525 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 04).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,166.97,173.55,63.25,299.016,367.248,320.072,124.5,464.48,266.786,561.712,213.5,0.4898 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 04).tif,PathCellObject,,251.27,171.58,35,475.4895,267.7552,185.3427,120,206.3085,175.6087,180.4647,171.5147,0.2813 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 04).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,157.41,180.18,41.5,264,579.9474,194.807,107.75,603.8848,192.0991,619.4487,190.3384,0.3808 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 04).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,40.7,191.13,72.5,152.9863,400.0788,219.8699,174,532.4261,203.9914,627.8469,192.5432,0.4116 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 04).tif,cCASP3,cCASP3,219.59,193.41,81.75,377.7217,327.0061,555.5352,184,345.2347,355.5454,359.7732,196.0415,0.4388 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 04).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,119.1,196.07,111.5,305.3653,759.4766,783.2094,238,830.3637,487.2809,893.3901,224.1683,0.4663 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 04).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,134.95,196.56,66.25,183.0223,525.7286,272.7732,173.75,614.3041,227.3802,669.9743,198.8505,0.3854 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 04).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,30.88,196.77,24.75,180.9135,207.75,175.2404,92.25,388.1644,172.8329,458.4382,171.8951,0.2651 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 04).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,150.49,203.16,143.75,294.0484,400.1384,249.3789,297,370.1287,219.2616,341.7398,190.7709,0.484 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 04).tif,cCASP3,cCASP3,228.26,199.39,11.75,176.8235,405.0588,220.8627,71.75,338.9097,349.882,324.6751,377.6456,0.165 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 04).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,212,207.44,123.75,296.3199,600.2756,322.5775,246.25,688.6481,264.3256,778.4662,205.1207,0.4982 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 04).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,42.82,207.01,79,237.5562,675.0812,195.025,192.5,862.5272,184.9417,995.2323,177.8031,0.4133 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 04).tif,PathCellObject,,234.86,208.96,23.25,500.2525,260.5959,170.8081,98.75,259.5718,169.869,259.2315,169.5571,0.2392 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 04).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,120.49,211.35,43.5,174.3068,602.517,201.5625,154,715.1213,193.1343,759.9593,189.7783,0.2819 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 04).tif,PathCellObject,,141.62,213.37,25.75,417.367,255.633,187.9817,98.5,256.3671,177.6658,256.6469,173.7343,0.2558 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 04).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,203.7,215.87,10,161.1667,1270.8096,193.1905,63.75,914.8832,184.7665,845.3535,183.1209,0.1514 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 04).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,111.7,219.67,101.25,261.1667,441.4731,219.5074,210.5,545.6123,221.0307,642.6187,222.4498,0.4782 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 04).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,224.81,218.97,75.5,166.3941,774.6417,192.5407,193.25,670.6813,182.0581,602.485,175.1816,0.3919 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 04).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,238,219.78,31,514.0547,384.875,210.3672,109.5,461.7198,192.5148,493.3473,185.1672,0.2842 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 04).tif,cCASP3,cCASP3,99.6,219.29,16.5,245.2985,264.6119,1890.6418,74,257.0671,766.1006,254.8788,439.9351,0.2077 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 04).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,198.08,226.93,24.25,175.8586,3140.3838,197.202,95.75,2426.2559,184.5711,2180.7744,180.2292,0.2526 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 04).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,120.98,228.01,20.75,333.4471,388.0941,1645.0236,86.25,362.3295,760.4971,353.9387,472.433,0.2355 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 04).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,205.29,234.29,83.5,300.5714,1780.2291,405.9435,191.75,1632.4141,286.7344,1517.4468,194.0162,0.4369 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 04).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,150.18,255.79,52.75,157.8411,471.6495,235.4486,153,506.329,195.8208,524.8825,174.62,0.3426 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 04).tif,PathCellObject,,202.27,257.78,53,435.4326,398.3628,183.8558,156.25,347.3541,177.7847,320.7354,174.6165,0.3386 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 05).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,172.55,72.05,32.75,241.0432,863.2518,593.2878,121,776.6503,379.4294,742.2571,294.4971,0.2723 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 05).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,193.19,74.81,36.5,258.0616,804.8425,285.1096,109.75,837.9231,207.1086,854.2399,168.6351,0.325 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 05).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,201.3,83.23,83.75,242.2456,624.3225,181.9408,192.75,937.7193,174.6352,1181.2322,168.9586,0.4345 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 05).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,144.75,83.12,26.25,149.5833,868.3796,431.8889,105.25,444.9387,252.4057,300.2184,191.0633,0.2428 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 05).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,130.26,114.4,41.5,472.9053,569.9467,879.5562,140.25,547.9609,741.0978,538.5063,681.5573,0.2918 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 05).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,118.31,117.14,72,345.7138,535.4069,197.7793,180,648.1013,201.0097,723.9281,203.1833,0.395 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 05).tif,PathCellObject,,107.63,120.91,26.5,356.7297,278.4685,193.8829,100.25,248.5636,175.3317,237.1172,168.231,0.2712 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 05).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,173.7,125.7,68,207.5018,678.8,240.5854,154,1895.9045,233.4741,2871.7173,227.7726,0.4363 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 05).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,185.42,124.64,19.25,343.6154,1342.8206,733.6411,77,1069.9323,391.6032,978.1854,276.6078,0.2342 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 05).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,124.16,130.91,30.75,372.6535,589.3858,190.2598,100,592.6468,200.6095,594.1527,205.3891,0.3034 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 05).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,115.7,133.08,42.5,182.2299,1461.5,202.3621,104.5,1382.9786,196.2038,1327.8871,191.8831,0.4063 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 05).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,179.83,133.19,17,174.4853,992.353,196.5882,66.5,1265.0854,203.9071,1357.3533,206.3831,0.2457 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 05).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,245.34,134.71,23.75,747.5859,282.0707,174.1414,98.75,523.7758,164.262,604.0739,160.9799,0.2395 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 05).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,110.63,139.75,43.25,148.7247,1187.0505,189.7528,123.75,879.2712,185.2854,705.9019,182.769,0.3539 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 05).tif,cCASP3,cCASP3,132.83,144.06,28.5,462.4742,290.6121,202.1552,106.75,244.4791,312.1814,227.4363,352.828,0.2596 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 05).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,258.08,149.2,72.75,263.9864,2686.4761,401.5136,187,1757.734,298.7965,1161.5546,232.8603,0.3861 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 05).tif,PathCellObject,,144.62,153.53,45.5,173.623,380.7596,194.3825,136.75,234.362,174.8867,160.761,165.0852,0.3292 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 05).tif,cCASP3,cCASP3,125.66,161.25,27.25,199.9196,256.6607,2010.2411,84.75,226.4532,1247.2251,211.7435,875.6696,0.3231 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 05).tif,cCASP3,cCASP3,126.2,168.35,23,210.4286,337.2245,2478.7346,67.75,324.5073,1884.1898,317.4261,1553.1364,0.347 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 05).tif,PathCellObject,,121.51,175.6,51.75,185.5809,297.3762,230.4714,147,266.4619,238.2047,249.4226,242.4672,0.3523 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 05).tif,cCASP3,cCASP3,105.15,175.5,28,199.7807,570.0088,280.5526,105.75,261.684,319.3962,148.3,333.6806,0.2566 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 05).tif,PathCellObject,,224.82,181.1,45,143.0652,394.0109,199.4891,131,286.5237,215.8691,228.863,224.656,0.3428 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 05).tif,PathCellObject,,116.09,183.9,31.5,315.1032,301.254,197.5318,105.75,268.0896,203.125,254.0671,205.4899,0.2863 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 05).tif,PathCellObject,,200.18,187.6,46.25,268.4011,281.139,335.4064,136.75,280.415,239.3181,280.0389,189.4055,0.3344 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 05).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,224.58,192.09,32.75,250.1333,602.0889,627.6,108,466.3217,507.6736,404.6094,453.1616,0.3003 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 05).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,123.61,198.19,142.25,341.2745,1205.0735,734.3916,281.25,1320.9734,495.2236,1440.4235,248.7297,0.4997 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 05).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,190.37,198.96,100,327.835,448.3075,259.955,211.5,588.2606,223.6498,713.2188,191.2344,0.4673 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 05).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,103.69,201.47,73.5,258.4814,975.4203,402.3932,182,2122.55,296.0768,2902.281,223.8111,0.3984 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 05).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,201.69,200.05,13.5,214.6897,676.3965,224.7069,68.5,565.9055,201.9709,536.3733,195.894,0.184 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 05).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,116.75,207.89,39.75,223.8841,2334.3779,394.7195,114.25,3281.2065,336.1478,3805.8008,303.696,0.3528 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 05).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,207.55,208.13,21.75,241.0737,513.621,347.1579,72,693.5256,459.3481,779.8434,513.1768,0.3025 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 05).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,198.85,216.95,89.25,173.7418,1359.8737,938.2637,237.5,1054.4764,692.7623,866.3807,541.5567,0.3777 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 05).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,213.65,217.09,95.75,387.2519,391.0951,278.6478,210.25,442.4002,322.6389,486.4569,360.415,0.459 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 05).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,172.75,226.65,151,187.6866,524.3731,337.728,318.75,607.6476,259.3203,682.1498,189.1721,0.4717 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 05).tif,PathCellObject,,223.93,240.52,29.75,398.0714,284.5238,188.1984,111,227.6138,181.6741,205.3447,179.1211,0.2671 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 05).tif,PathCellObject,,219.77,251.19,34.5,414.8116,311.3986,196.471,114.5,232.1463,180.5393,197.9688,173.6687,0.2931 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,201.23,55.82,28.25,226.4655,710.6896,175.9052,87.5,602.4759,165.3796,549.5106,160.2278,0.3134 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,194.52,60.95,28.25,210.3644,745.7034,171.2288,93.75,621.5782,163.992,565.027,160.695,0.3069 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 06).tif,PathCellObject,,150.44,69.19,35.5,216.1319,330.6111,181.625,118.25,313.6176,194.6113,306.247,200.244,0.2914 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,134.63,74.25,93.5,190.5093,344.2838,214.9708,214.75,356.2258,210.5285,365.5664,207.0539,0.4366 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 06).tif,PathCellObject,,185.56,76.51,66.25,178.2313,365.9739,183.3321,179,303.0725,178.7699,265.5278,176.0468,0.3707 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 06).tif,PathCellObject,,245.46,91.16,116.25,190.1842,359.2013,187.3919,261.75,286.5043,173.1681,227.9707,161.7155,0.4436 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 06).tif,PathCellObject,,170.98,107.9,30.75,399.0236,252.1024,173.1024,113.5,207.3173,165.0022,190.0818,161.8848,0.2693 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,146.63,114.06,43.5,176.7528,1027.691,184.8315,130.5,1255.4724,182.9219,1372.317,181.9424,0.3315 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 06).tif,PathCellObject,,76.33,114.28,24.75,190.0481,189.9423,179.75,97.25,178.2097,170.8184,173.9582,167.5819,0.2549 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,131.92,115.37,68.75,282.5409,446.3523,308.3345,181.5,615.4006,253.9753,721.433,219.8795,0.3814 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,161.04,118.37,32.5,206.1288,758.3561,224.3485,112.5,920.2478,199.104,987.0281,188.6906,0.2852 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,170.46,121.35,72,284.5258,627.0481,262.9106,156.5,698.5669,225.1831,760.3234,192.6053,0.4559 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 06).tif,PathCellObject,,73.99,124.28,40,209.4908,361.773,238.4908,124.75,308.806,223.972,283.187,216.9496,0.3169 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,150.94,124.48,25.25,229.1635,1046.7019,182.0288,87.5,1700.2661,187.0084,1968.9249,189.0553,0.2795 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,145.42,128.98,13.75,193.1311,432.3443,322.0984,51.5,631.2211,264.0337,713.7483,239.9388,0.2855 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,173.77,131.59,34.75,190.0141,1480.1127,220.6408,127,1435.196,205.8765,1417.8641,200.1794,0.2751 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,133.3,136.22,52.25,201.5768,404.3395,199.1116,140,504.7273,189.672,567.1069,183.8064,0.3701 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,143.54,138.06,53.75,228.9726,409.4292,290.8402,115,605.7056,249.8398,782.5967,212.8889,0.4635 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,156.25,136.8,91.5,276.3242,694.1063,269.6049,179.75,1296.129,241.3121,1920.2599,211.9802,0.5012 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,188.18,143.21,74,271.2475,389.8949,259.2305,156.5,763.0206,226.3873,1091.594,197.4657,0.4695 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,75.93,145.87,109.75,182.4442,388.0296,230.4989,235.25,563.8347,258.7415,716.6634,283.2931,0.4639 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,163.39,148.4,106.75,331.7349,1155.6326,266.2628,206.25,1775.1331,233.029,2446.1284,197.0327,0.5131 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 06).tif,PathCellObject,,225.32,145.49,29.5,343.8417,221.8167,344.1917,108.75,226.9794,281.5068,228.9277,257.8522,0.2675 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,196.1,151.01,90.25,268.2694,351.3,277.6333,182,958.937,234.5069,1550.1514,192.5459,0.4848 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,150.24,152.33,70,324.9288,923.1815,234.274,171.5,2391.4036,212.4441,3402.6055,197.4093,0.4043 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,136.68,155.51,52.5,186.0093,325.2664,473.6028,144,370.0832,346.5737,396.5041,271.6859,0.363 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,231.6,161.94,173.5,220.623,671.0158,225.8014,350,776.3745,205.8595,879.9448,186.256,0.4948 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,73.34,161.5,91,266.1913,354.4836,3773.123,184.75,378.1213,3265.6941,401.1303,2771.7607,0.4917 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,84.72,162.96,45.5,224.4731,377.0161,618.7043,119,369.6088,596.5063,364.8904,582.3665,0.3821 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,99.53,163.93,112,264.5679,603.9554,308.755,242.5,1429.8423,249.4072,2141.595,198.261,0.4609 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 06).tif,PathCellObject,,124.41,163.28,35,350.4028,314.2361,192.3542,118.5,300.0779,188.3074,293.9184,186.5468,0.2895 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,191.07,162.69,20.75,298.4419,452.6977,282.8837,55,593.8162,228.3184,682.4015,194.0657,0.364 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,141.04,168.22,88.5,363.8655,320.6499,625.6107,191.25,373.8791,410.3797,420.0024,223.8811,0.4615 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,183.94,166.89,42.5,345.1111,377.386,330.8012,98.5,469.1342,254.9089,539.1741,196.9732,0.4201 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,193.9,170.57,26.75,229.7387,496.8378,215.1261,82,431.4277,191.4879,398.5746,179.6154,0.3265 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,176.63,171.22,27.75,257.9035,789.4386,216.3947,78.75,939.4101,197.5615,1023.6306,186.9852,0.3529 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,156.61,173.39,71.25,228.045,743.8512,200.0796,184,905.3329,193.053,1009.736,188.5101,0.3849 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,168.99,172.76,29.5,318.5935,1456.9756,206.3821,89.25,1490.5444,206.4222,1507.9662,206.443,0.3424 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,127.42,174,27.5,177.1429,534.4821,193.8571,99.25,431.6733,188.9352,391.8304,187.0277,0.267 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 06).tif,PathCellObject,,76.25,177.05,50,221.3252,288.4806,221.8252,149.75,212.395,200.4483,172.6142,189.2716,0.3369 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,145.37,180.13,58.25,269.3277,296.9702,219.434,122.5,414.0121,211.4858,520.2085,204.2741,0.4696 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,188.23,182.95,49,257.76,547.195,237.725,143.5,604.6017,209.2974,635.2187,194.136,0.3447 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,132.66,180.35,13.25,243.9454,414.5091,209.7455,54.5,392.3333,197.3604,385.0299,193.2814,0.2267 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 06).tif,PathCellObject,,239.46,182.17,34.5,189.7589,284.5461,174.9007,119.5,248.4042,167.4875,233.3717,164.4041,0.2844 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 06).tif,PathCellObject,,67.87,181.74,14.75,166.6774,153.0968,172.7097,71.75,145.0138,172.0484,142.8062,171.8678,0.1993 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,137.64,188.87,93.75,268.2128,430.1942,256.5452,161,545.0479,242.1036,704.4022,222.0664,0.5769 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,178.56,184.08,19.25,185.5488,595.6829,197.5854,89.25,722.451,199.2997,760.2509,199.8109,0.2165 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,203.83,188.56,48.25,190.196,1236.4473,183.397,151.25,1626.7767,185.1741,1816.2292,186.0366,0.3213 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,149.28,190.78,33.75,187.5942,745.3043,237.7174,85,778.6059,226.0794,801.3564,218.1287,0.3986 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,107.73,192.97,96.75,281.3979,868.5969,216.2092,245.25,822.209,193.368,791.3362,178.1664,0.3931 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,156.39,191.49,24.25,176.4545,629.3737,199.5556,81,845.6799,191.3963,939.1921,187.869,0.2936 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,192.4,200.49,153.5,345.0829,374.4683,357.1414,289,543.1687,286.2509,734.9445,205.6636,0.5266 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 06).tif,PathCellObject,,256.1,196.17,38,460.0319,317,211.3439,116.75,227.9062,214.1258,183.0737,215.5256,0.327 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,137.27,199.52,27.25,184.2,531.6522,190.687,90.75,537.3553,186.3003,540,184.2661,0.3103 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,177.81,199.55,47.25,187.7448,861.0938,222.9479,140,977.274,206.8078,1037.5621,198.4324,0.3357 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,243.92,199.47,46,377.4521,1730.7394,236.2181,120.75,1464.2222,224.5679,1296.0839,217.2181,0.3796 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,232.28,203.27,53.25,245.7443,3247.4019,310.9635,143.25,2763.1511,256.7552,2466.0896,223.5014,0.3765 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 06).tif,PathCellObject,,211.6,202.58,56,273.7851,294.9167,232.4781,142.25,338.676,200.6077,367.7639,179.4227,0.396 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,256.65,206.3,18.25,261.8133,204.2,177.28,71.5,373.3841,193.4118,432.6776,199.0654,0.2446 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,247.51,210.15,43,591.5517,347.454,749.546,117.75,526.4409,464.6456,630.2534,299.4033,0.3583 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,204.25,212.11,57,220.2155,427.6552,257.6379,156,615.096,222.3072,725.7481,201.4504,0.3685 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,185.53,215.1,63.25,225.6588,338.4627,208.702,161,360.5573,195.8359,374.9668,187.445,0.3918 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 06).tif,PathCellObject,,192.94,225.19,36.75,192.78,294.3333,194.5733,99,249.2581,183.9925,222.1044,177.6185,0.365 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 06).tif,PathCellObject,,187.04,233.88,58.25,191.7597,280.0515,216.6953,139.75,228.6075,193.3908,192.2849,176.9364,0.4113 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 06).tif,PathCellObject,,223.71,240.2,9.25,212.225,166.25,168.425,50,142.8358,163.6567,137.0186,162.472,0.1884 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 06).tif,PathCellObject,,230.73,242.97,31,408.8984,230.2344,181.4141,95.75,200.0155,170.6641,185.0811,165.3513,0.3202 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 06).tif,PathCellObject,,133.87,243.91,30,341.9262,357.5,229.9672,101.25,311.6265,297.1302,291.9895,325.8807,0.2914 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 06).tif,PathCellObject,,121.56,246.88,34.25,293.3913,275.4348,191.5362,116.25,201.5901,178.676,170.5213,173.2652,0.2876 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,138.74,252,17,223.9286,756.1714,2350.2856,74.75,624.3787,1362.5415,584.4415,1063.2251,0.2191 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,180.7,268.4,23.5,152.3263,4958.4634,184.7579,91.5,3401.8528,175.8311,2858.1838,172.7132,0.2485 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 06).tif,PathCellObject,,213.03,273.43,28.75,241.453,262.6325,175.0427,100.5,261.8218,175.4431,261.4913,175.6063,0.2723 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 06).tif,PathCellObject,,203.12,275.16,27.25,414.2523,303.1712,186.7838,98.75,213.5113,174.0479,178.7133,169.1049,0.2721 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,177.58,277.85,103.25,218.6892,1685.1663,226.853,211,2265.9929,202.5723,2827.8647,179.0839,0.4867 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 07).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,112.69,84.33,90,180.0304,962.3287,202.2983,209.75,2268.5083,202.5523,3253.5854,202.7437,0.4212 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 07).tif,PathCellObject,,136.99,87.86,29,260.2101,262.563,187.7815,101.25,226.4314,177.3186,211.5536,173.0104,0.2761 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 07).tif,PathCellObject,,122.04,92.45,21.5,316.0225,281.2809,192.4831,70.75,242.9444,178.0903,225.799,171.6533,0.2945 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 07).tif,PathCellObject,,140.5,97.4,34.75,205.8239,251.4225,186.5704,116.25,247.094,187.2906,245.2086,187.6043,0.2933 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 07).tif,PathCellObject,,128.69,98.79,37.25,269.9007,311.1457,370.3046,90.25,315.5479,284.4247,318.6542,223.8271,0.401 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 07).tif,PathCellObject,,116.62,101.48,28.25,304.8547,424.7265,197.0769,93,289.008,187.4867,227.6988,183.1544,0.3011 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 07).tif,PathCellObject,,228.16,101.76,28.25,291.2435,190.7217,167.513,106,150.4753,159.6024,135.5452,156.6677,0.2569 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 07).tif,PathCellObject,,125.01,106.69,24.75,290.4904,252.9423,185.5769,75.5,228.8922,182.4673,216.5099,180.8663,0.3362 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 07).tif,PathCellObject,,105.25,108.57,25,349.2745,198.7451,171.6471,97.75,158.6726,165.3122,144.6747,163.0993,0.246 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 07).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,79.72,116.98,149.5,143.2968,2832.418,198.8159,304,1617.1716,182.6289,425.6374,166.7577,0.4934 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 07).tif,PathCellObject,,178.33,117.74,9.5,251.4146,190.9268,166.7073,49.25,161.5276,163.9598,153.8987,163.2468,0.192 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 07).tif,PathCellObject,,183.05,124.48,33,384.1852,333.563,187.2741,82.75,295.7096,180.6108,270.0302,176.0905,0.3923 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 07).tif,PathCellObject,,174.46,126.73,27,395.4722,276.9815,189.9074,79.5,241.1402,186.0872,222.9671,184.1502,0.322 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 07).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,202.4,127.46,14.75,187.2459,615.8853,195.3115,59,572.9587,188.1859,558.4917,185.7845,0.2345 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 07).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,209.27,131.8,17,186.6164,601.6575,193.5206,65,669.8206,189.8893,696.1481,188.4868,0.2619 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 07).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,199.2,136.6,77.5,270.0064,548.7845,361.2701,164.25,671.1387,275.5023,779.2415,199.7244,0.4632 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 07).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,117.83,137.29,26.25,159.055,239.578,176.7798,106,459.4507,171.0563,535.0536,169.0883,0.2476 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 07).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,178.05,135.7,16.5,206.1739,1942.0435,311.6522,73.5,1567.4611,309.078,1453.0973,308.292,0.2217 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 07).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,216.25,139.25,44.25,195.0614,1172.4525,195.8268,125.25,925.373,181.0992,789.2892,172.9877,0.3459 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 07).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,165.94,144.58,77,212.7556,920.3473,298.8714,186.5,1063.5892,279.1745,1166.235,265.0599,0.4174 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 07).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,188.26,143.32,40,229.0606,1255.897,209.3758,113.75,1298.7214,203.8311,1323.0034,200.6873,0.3535 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 07).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,176.15,144.5,24.25,189.3962,1166.3302,1066.9717,73.25,1885.6305,943.4678,2289.0476,874.201,0.3343 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 07).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,225.2,149.31,94.5,234.8979,1130.61,218.4031,225.25,2025.1364,192.3315,2682.2693,173.1788,0.4198 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 07).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,208.51,149.14,62.5,288.588,459.168,259.728,146.5,885.2496,220.9864,1199.469,192.4159,0.4226 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 07).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,197.07,150.05,60.25,311.7975,513.7851,263.3347,129.25,957.2505,225.422,1344.6823,192.2996,0.4583 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 07).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,110.08,149.01,46,194.0269,482.1237,314.9839,120.5,915.0474,260.1897,1184.3579,226.1037,0.3784 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 07).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,180.65,149.25,12.75,179.5273,4211.1274,653.2364,54.75,2995.2375,412.9821,2597.1785,334.3274,0.2327 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 07).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,119.8,154.34,88.5,221.6469,635.3475,296.4689,178.5,619.5615,250.1802,604.1243,204.9144,0.4931 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 07).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,136.74,155.33,115.75,253.1306,406.4176,251.0471,230.5,515.1091,225.2149,625.695,198.9325,0.4986 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 07).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,153.39,155.28,91.75,255.0135,281.9406,247.2703,191.5,423.446,223.5045,554.6667,201.4662,0.4768 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 07).tif,PathCellObject,,63.58,155.18,31,261.624,279.92,194.368,110.75,218.2935,180.0768,194.0692,174.4591,0.2712 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 07).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,166.45,159.17,92.5,331.4438,366.746,239.8984,158,460.0506,231.7662,594.7838,220.0232,0.5871 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 07).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,178.49,164.17,106,306.1506,1011.5365,218.4659,216,1285.1746,217.3422,1549.4841,216.2568,0.4894 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 07).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,208.08,161.5,29.5,242.575,2588.7917,194.15,108.25,2449.3777,190.4211,2396.6025,189.0095,0.2722 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 07).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,146.08,169.7,188.25,231.2984,354.7706,249.1419,304,653.3839,238.7022,1137.587,221.7742,0.6153 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 07).tif,PathCellObject,,218.7,165.01,19.75,316.6296,395.4815,178.963,71.25,257.2308,171.8811,202.6049,169.0829,0.2669 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 07).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,119.45,166.9,59,246.275,1086.2417,248.8167,135.25,1230.2324,241.6605,1344.6622,235.9735,0.4303 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 07).tif,cCASP3,cCASP3,226.82,167.76,30.25,356.1452,387.7258,469,93.75,255.6755,300.3564,190.6984,217.373,0.3164 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 07).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,163.42,170.51,65.75,298.8467,413.7126,278.613,132,530.6555,268.5431,642.4579,258.9157,0.4827 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 07).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,211.25,171.84,26.5,497.5909,870.2273,186.4364,97,1105.9486,179.0694,1198.8853,176.1649,0.2727 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 07).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,109.88,172.11,48,250.0259,762.7824,463.2643,106,911.8988,341.6259,1035.9482,240.4353,0.4472 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 07).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,134.43,178.32,71.75,268.2042,632.7578,342.3633,174,988.109,265.6011,1239.8162,211.2279,0.4126 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 07).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,201.12,174.92,41,442.5576,420.9212,218.6364,123.5,435.9636,188.4777,443.5076,173.3526,0.327 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 07).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,118.31,182.92,134.75,270.237,830.0833,276.0296,255.75,1229.1627,283.8119,1672.5844,292.4589,0.523 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 07).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,102.06,181.43,58.5,200.6298,683.9787,207.9362,156.25,957.5303,208.4425,1121.9412,208.7468,0.3715 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 07).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,166.28,181.19,45,207.5604,585.8132,953.9835,119,676.1611,956.159,731.7128,957.4966,0.3801 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 07).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,193.64,180.84,27.25,239.2523,571.6216,209.2072,93.25,689.5692,188.6968,738.9736,180.1057,0.2889 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 07).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,152.09,186.37,153,251.2618,518.0536,295.8959,282.25,785.6776,280.4956,1104.031,262.176,0.5395 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 07).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,127.02,188.53,24,278.0206,381.8247,190.9278,62.25,405.585,187.6917,420.359,185.6795,0.3754 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 07).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,183.58,189.71,71.75,279.2543,968.9691,218.8282,163.5,1049.5211,207.1344,1112.7035,197.9623,0.4371 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 07).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,136.19,192.74,68.25,237.4015,519.0292,370.8869,151,607.1832,277.8218,679.9368,201.0151,0.4402 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 07).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,194.23,192.66,56.25,353.5368,508.8312,217.5455,125.5,716.5842,207.7525,891.7336,199.4964,0.4424 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 07).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,203.76,195.92,47.25,222.2887,582.1959,379.5515,144.75,419.5388,252.3834,337.5766,188.3039,0.3265 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 07).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,165.18,199.96,130.75,273.4318,326.3182,566.6799,271.25,430.2461,892.5438,528.763,1201.4417,0.4856 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 07).tif,PathCellObject,,183.63,205.71,30.5,417.2195,269.252,191.5935,110.75,201.7765,183.1038,175.8406,179.8406,0.2695 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 07).tif,PathCellObject,,190.27,218.18,17.75,213.7917,206,174.4583,70.5,163.8204,169.3416,149.4953,167.6038,0.2423 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 07).tif,PathCellObject,,183.19,222.09,20.5,271.2235,331.6353,189.6588,78.5,219.6203,175.9715,178.4026,170.9351,0.254 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 07).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,132.85,252.2,30.75,149.3828,1390.6172,195.9688,97.25,1132.8257,182.1282,1006.8817,175.3664,0.3145 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 07).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,182.08,257.94,78,211.3762,668.7022,1068.0752,201.75,544.2302,660.3799,463.0307,394.4192,0.3896 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 07).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,138.17,259.37,55.5,149.4361,1528.1982,196.7313,148.5,1353.5896,185.3467,1246.4648,178.3622,0.376 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 07).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,193.63,264.77,44.25,583.257,539.5978,221.5028,131,636.1409,225.7981,686.0867,228.0202,0.3375 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 07).tif,PathCellObject,,192.05,276.57,33,355.9621,322.75,191.9015,113.25,323.3877,220.2665,323.6491,231.8944,0.2789 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 07).tif,PathCellObject,,228.03,280.49,28,216.0522,218.9826,172.6609,107.5,169.1578,166.3202,151.0253,164.0127,0.2552 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 07).tif,PathCellObject,,179.94,326.23,32.75,265.6324,285.7941,206.9412,90.75,209.0902,183.1557,163.7348,169.0913,0.3629 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 08).tif,PathCellObject,,106.69,81.37,29.25,260.9916,279.8067,181.042,101.75,204.4401,169.7457,173.5138,165.1104,0.2824 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 08).tif,PathCellObject,,115.24,80.07,21.75,205.7416,289.0562,191.5843,67.5,258.4396,182.8205,243.6304,178.5815,0.3136 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 08).tif,PathCellObject,,122.01,80.31,13.75,174.3667,299.6167,190.1667,56.5,242.1667,178.6754,221.6488,174.5714,0.2515 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 08).tif,PathCellObject,,127.92,85.24,20.75,244.0357,231.8214,176.5595,69.5,189.0466,168.7348,170.6205,165.3641,0.2814 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 08).tif,PathCellObject,,135.78,88.97,26,250.7641,221.6604,175.1698,92.75,176.5269,166.371,158.5414,162.8647,0.2704 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 08).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,230.43,92.86,107.75,146.0023,1613.0936,169.6187,255.75,1065.2429,162.5201,653.6501,157.187,0.4271 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 08).tif,PathCellObject,,120.2,91.72,34,239.6901,278.5,231.1901,105,238.4526,202.1682,218.1429,187.45,0.3211 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 08).tif,PathCellObject,,109.77,91.97,20.25,190.1395,281.5349,188.5233,87.25,251.1705,178.2273,241.3534,174.8985,0.2323 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 08).tif,PathCellObject,,87.92,93.42,30.5,251.3065,235.8387,181.8387,110.25,177.1403,169.3009,154.2516,164.412,0.2685 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 08).tif,PathCellObject,,100.39,96.32,25.5,267.7453,269.566,179.8679,84.25,214.5249,174.9883,189.6979,172.7872,0.3017 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 08).tif,PathCellObject,,214.53,100.77,19.5,182.1358,237.2963,214.1728,74,167.0134,207.1773,140.8991,204.578,0.2615 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 08).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,117.68,103.67,45.25,285.0591,503.3226,206.2849,124,453.2425,204.3447,423.4824,203.1917,0.3606 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 08).tif,PathCellObject,,94.77,102.86,20,249.8706,184.5882,185.2235,63.25,164.4008,179.8599,154.4244,177.2093,0.3117 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 08).tif,PathCellObject,,102.15,106.88,34,286.9276,308.1522,205.2464,88.5,312.6714,233.927,315.5321,252.0826,0.3744 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 08).tif,cCASP3,cCASP3,212.48,109.46,31.75,248.3543,329.9528,4150.4565,95.75,225.4062,2041.4427,173.7432,999.2451,0.3193 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 08).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,125.43,111.2,30.5,288.1935,392.3065,611.879,92.25,416.149,604.6314,428.2163,600.9633,0.3168 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 08).tif,cCASP3,cCASP3,109.8,113.1,45.25,203.7541,274.8634,279.8306,114.75,269.0065,349.2278,265.1511,394.9101,0.3932 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 08).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,99.27,118.64,27,318.5856,326.009,233.1261,94.5,359.856,481.267,373.7195,582.9041,0.2793 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 08).tif,PathCellObject,,118.87,120.26,58.25,200.4237,276.2288,221.0847,145.5,241.79,239.1463,218.2319,251.5014,0.3944 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 08).tif,PathCellObject,,190.87,122.94,72.25,187.4759,395.0793,176.8621,194.75,333.905,169.5366,297.6258,165.1922,0.369 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 08).tif,PathCellObject,,85.84,119.94,34,266.2072,279.4214,208.9,114.5,260.2174,191.7022,251.8156,184.1781,0.2895 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 08).tif,PathCellObject,,94.25,125.93,15.5,159.3906,373.75,209.2812,69.25,304.3237,228.9029,283.5608,234.771,0.2141 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 08).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,248.64,127.14,38,436.471,360.9419,189.0258,125.25,364.7964,181.1237,366.5231,177.5838,0.2976 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 08).tif,PathCellObject,,72.69,129.65,39.5,258.8228,369.7025,206.8987,125.25,270.9821,186.6912,225.6395,177.4099,0.3069 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 08).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,200.03,133.83,96.25,352.6865,408.0285,261.1321,214,548.1669,295.2509,663.0148,323.2123,0.445 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 08).tif,PathCellObject,,261.64,131.76,11.25,256.0652,350.8913,342.1087,52,243.2736,261.6509,213.4518,239.3554,0.2007 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 08).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,216.04,136.55,95,412.5643,443.0446,491.0289,213.5,598.0152,500.832,722.0567,508.6786,0.4423 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 08).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,232.07,138.06,66,273.4925,598.9398,232.594,162.25,681.6718,251.4129,739.1306,264.483,0.4004 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 08).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,257.51,139.06,34.25,451.3404,406.6525,376.1064,99.5,414.6325,464.92,418.9768,513.2703,0.3383 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 08).tif,cCASP3,cCASP3,267.94,138.02,12.5,170.6538,477.7308,1024.75,56.5,281.4646,558.3053,222.8103,418.9081,0.2169 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 08).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,184.81,143.18,74.25,277.0033,346.6545,244.6711,185.5,399.9221,233.7651,436.0338,226.3716,0.3946 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 08).tif,PathCellObject,,90.96,142.39,46,246.0802,254.2834,183.631,117,233.3098,256.7799,219.3523,305.4591,0.3918 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 08).tif,cCASP3,cCASP3,265.52,145.12,12.25,166.7593,298.4074,860.2407,61,256.2082,541.6572,244.2775,451.5864,0.2039 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 08).tif,PathCellObject,,82.11,145.21,27.5,271.6316,284.693,181.8772,72.75,227.1336,185.0856,190.2697,187.1404,0.3706 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 08).tif,cCASP3,cCASP3,198.92,148.91,60.5,425.3169,358.0741,1358.1029,158.75,335.1656,1452.7177,320.9284,1511.5192,0.376 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 08).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,222.55,148.76,46,232.0321,463.9947,401.8449,104.75,518.331,499.9763,561.3856,577.733,0.4362 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 08).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,231.32,148.88,13.75,198.8,622.3,418.0167,56,688.1422,335.4667,712.0848,305.4485,0.2485 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 08).tif,PathCellObject,,99.12,150.96,38.25,250.5513,307.9744,199.75,110.5,261.2928,192.0518,236.0069,187.8819,0.341 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 08).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,211.18,149.84,22.25,205.022,847.7802,213.1209,81.5,910.7021,216.2614,934.7605,217.4622,0.2708 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 08).tif,cCASP3,cCASP3,88.13,151.91,21.75,311.5,252.5114,555.8977,56.5,241.3087,451.9174,234.3662,387.4789,0.3717 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 08).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,154.06,154.07,28,366.8304,891.3125,334.6518,95.5,801.3542,256.5104,764.3125,224.3346,0.2827 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 08).tif,PathCellObject,,79.72,154.5,26.25,306.463,267.0185,186.6019,78,208.4856,177.9169,177.6488,173.3415,0.3294 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 08).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,247.14,155.81,47.5,215,805.6564,197.9692,139,1035.4312,189.9034,1158.5248,185.5824,0.3416 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 08).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,217.75,155.69,32.25,232.0444,529.3111,206.5926,61,560.7711,353.7751,598.0263,528.0702,0.5176 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 08).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,172.08,154.73,16.75,241.0429,781.9572,239.3571,52.5,856.4258,230.1627,893.928,225.5324,0.3122 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 08).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,187.3,156.19,26,177.036,1266.3243,300.2072,84.5,1388.239,330.7726,1446.569,345.3965,0.3154 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 08).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,234.12,159.71,95,263.487,1263.8541,220.9453,208.25,1586.1063,314.8506,1859.2737,394.4525,0.4574 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 08).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,178.08,158.11,30.5,209.3071,882.6299,303.7953,77.25,841.2516,295.5161,812.5355,289.7705,0.3933 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 08).tif,PathCellObject,,262.95,160.23,50.25,334.9212,215.5911,261.6059,162.25,197.9954,203.7,190.0045,177.4027,0.3076 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 08).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,167.08,162.37,62.75,211.3295,391.1705,192.7519,147.25,483.8319,198.0068,556.0574,202.1027,0.4317 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 08).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,212.22,161.41,31.25,195.1912,833.1103,205.9559,95.75,868.5182,202.401,887.9355,200.4516,0.3386 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 08).tif,PathCellObject,,92.08,161.85,41.75,340.3988,270.7746,254.711,104.75,244.0519,226.4576,225.6335,206.9841,0.3984 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 08).tif,PathCellObject,,83.27,163.54,30.5,262.4803,347.8819,199.1496,86.5,256.7994,182.5473,204.6937,173.0495,0.3554 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 08).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,149.13,162.97,20.25,191.1512,584.4651,200.6279,77.5,757.5064,207.2436,823.354,209.7611,0.2635 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 08).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,158.22,163.86,23.5,194.03,603.48,193.27,69,675.4058,199.8152,716.2727,203.5341,0.3436 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 08).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,221.06,165.42,22.5,187.6154,701.033,322.967,95.75,1026.7728,757.9034,1128.2877,893.4486,0.237 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 08).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,182.81,165.43,31.25,179.8661,754.2598,278.0551,98.5,846.0707,282.5808,889.4164,284.7175,0.3165 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 08).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,112.89,170.35,29,175.3388,269.0496,184.7603,112.25,365.7394,176.4722,401.4085,173.4146,0.2583 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 08).tif,PathCellObject,,96.06,170.19,13.5,188.8772,384.2456,201.8421,59.5,255.6694,183.1529,216.054,177.3946,0.2182 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 08).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,240.96,174.87,110.75,257.554,820.3469,249.5023,249.75,985.8004,219.8224,1117.4517,196.2061,0.4414 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 08).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,88.26,177.49,41,237.2679,356.0476,188.6429,126.75,369.9686,181.5627,376.807,178.0848,0.3271 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 08).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,158.32,185.43,228.5,237.976,412.2211,247.1558,398.25,614.2153,233.4721,888.9274,214.8622,0.573 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 08).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,97.9,183.74,43.75,233.8644,551.1074,205.6384,129.25,527.61,193.0405,515.4135,186.5015,0.3332 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 08).tif,PathCellObject,,284.75,190.43,66.75,345.3741,323.7852,195.1296,176.75,279.8687,180.6568,252.7968,171.7352,0.3741 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 08).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,176.84,192.46,54.25,311.1187,502.0731,186.6712,140.5,784.5701,186.968,964.4157,187.157,0.3808 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 08).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,166.95,199.09,65.25,221.8447,467.0947,220.1061,142.5,907.3089,221.5236,1283.4142,222.7346,0.4494 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 08).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,118.56,201.7,84.75,237.7735,587.2353,241.5618,195.5,698.0522,236.8153,782.7214,233.1888,0.4312 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 08).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,139.87,202.42,75.25,228.6557,663.0394,300.0885,177,1977.9396,241.0506,2965.7339,196.6995,0.4262 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 08).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,153.86,206.73,120.5,235.4203,824.2629,208.2402,247,1228.4497,199.8219,1610.4893,191.865,0.4838 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 08).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,108.83,208.8,42,177.4186,2641.8198,206.1802,124.75,2171.03,192.8657,1923.3976,185.8624,0.3392 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 08).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,81.64,211.81,46,148.1649,756.8298,2562.0852,128.5,528.0135,1973.9866,398.4428,1640.9669,0.354 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 08).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,126.38,216.92,26,181.6204,602.0648,1557.0927,108.75,506.3701,850.069,474.7645,616.5566,0.2433 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 08).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,167.95,217.2,21.5,181.4382,2297.1909,221.3146,93.75,2593.0371,206.9762,2684.1453,202.5605,0.2247 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 08).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,140.91,222.5,91,187.0217,717.2935,260.1494,217.5,772.2,224.7919,812.4502,198.8725,0.4179 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 08).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,88.74,221.78,70.75,153.9268,558.8049,2080.0244,170,411.327,1521.2786,304.1721,1115.3038,0.4167 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 08).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,153.93,222.51,68.75,249.7634,801.9283,221.1111,161,1175.8608,205.6337,1459.3586,193.8995,0.4273 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 08).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,125.77,227.55,65.5,238.1585,1229.8755,572.2339,157.25,1346.9619,401.346,1431.9698,277.2767,0.4105 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 08).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,166.89,232.51,46.5,268.2075,923.6968,227.5479,146.5,975.5671,209.2411,999.8853,200.6584,0.3151 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 08).tif,cCASP3,cCASP3,81.46,229.19,14.5,165.4667,293.5667,415.1667,47.75,324.0408,915.8316,337.4853,1136.7133,0.2876 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 08).tif,PathCellObject,,73.13,231.53,29.75,252.3577,356.9919,193.8537,97.25,231.5587,200.4107,174.2045,203.4089,0.2999 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 08).tif,PathCellObject,,84.58,237.35,30.25,269.5645,320.1452,207.371,87,271.8309,198.2235,245.2044,193.1822,0.3412 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 08).tif,PathCellObject,,100.16,238.99,10,150.7111,310.2667,258.3333,59.75,242.4711,223.3554,226.9848,215.3655,0.1738 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 08).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,217.88,241.28,42.25,352.9425,403.1092,202.3103,114.25,496.8192,210.1743,554.0316,214.9754,0.3689 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 08).tif,PathCellObject,,76.83,243.08,37.25,232.5133,297.7267,194.2067,121.5,214.6687,180.4486,177.5893,174.3065,0.3038 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 08).tif,PathCellObject,,93.24,243.85,38.25,296.5,282.1602,206.0705,104.25,265.852,206.6993,256.1787,207.0723,0.3615 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 08).tif,PathCellObject,,105.74,247.56,51.25,190.1449,291.8841,273.0241,122,264.2561,228.9837,244.1895,196.9965,0.4138 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 08).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,210.96,247.78,35.5,277.6414,655.3035,262.2827,103.75,463.1803,218.7981,360.3838,195.5314,0.3375 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 08).tif,PathCellObject,,113.43,249.51,22.5,149.8352,316.3297,203.7033,74.25,238.0034,186.9731,203.4029,179.5825,0.295 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 08).tif,PathCellObject,,226.41,251.35,54,171.4775,287.7433,229.4414,149.75,243.235,197.0167,217.0952,177.9735,0.3645 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 08).tif,PathCellObject,,91.62,253.08,25,315.8416,316.198,195.7921,86,236.5187,181.0663,203.8049,175.0203,0.277 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 08).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,217.8,258.03,26.25,245.2569,334.789,198.5505,91,395.3005,217.6913,420.965,225.8093,0.2848 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 08).tif,PathCellObject,,102.13,259,32,295.1231,301.4231,204.5077,110.5,229.3326,216.3552,199.2949,221.2917,0.2877 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 08).tif,PathCellObject,,121.18,266.94,34.25,284.1408,261.2394,186.4084,123.5,225.5504,173.0302,211.2345,167.6638,0.2753 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 08).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,220.26,269.48,41.75,191.6954,1322.8621,475.3908,139.5,934.3399,361.0948,758.748,309.439,0.3079 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 08).tif,PathCellObject,,173.22,325.54,18.25,164.8816,122.9474,160.1053,79.5,121.6199,158.9782,121.2082,158.6286,0.2195 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 09).tif,PathCellObject,,207.38,20.71,34.5,228.4255,264.5177,174.4539,119.25,189.1908,163.5472,157.5804,158.9702,0.2866 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 09).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,221.56,36.77,39.75,155.7063,697.2375,884.5687,117.5,446.5666,477.5581,318.4281,269.5016,0.3318 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 09).tif,cCASP3,cCASP3,214.24,39.83,36.5,226.2703,291.1689,375.5878,91.5,303.7657,481.5259,312.2785,553.1187,0.3935 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 09).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,203.65,44.61,111.5,173.1897,859.3214,6755.1562,234.75,715.246,4592.5752,583.7882,2619.385,0.4712 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 09).tif,cCASP3,cCASP3,160.57,56.26,55.5,151.2314,284.3493,2742.1746,165.25,209.1774,1450.6842,169.695,772.3555,0.3387 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 09).tif,PathCellObject,,212.51,58.86,65.5,149.8935,424.1711,270.692,144.5,313.8571,243.9346,222.6226,221.805,0.4482 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 09).tif,PathCellObject,,203.11,63.08,37.25,160.2171,369.5921,210.9605,115.25,329.0345,220.1293,309.2756,224.5962,0.3217 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 09).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,89.22,63.12,84.5,179.1976,951.59,210.4631,188.25,1328.6826,187.6799,1637.4613,169.0242,0.4466 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 09).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,144.29,64.9,95.25,170.1097,664.2742,237.9739,216.5,702.1765,203.3103,732.1694,175.8802,0.4368 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 09).tif,PathCellObject,,210.59,71.55,40,157.5838,204.9068,176.8571,108.25,171.1862,169.3977,151.3723,165.0146,0.3595 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 09).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,96.23,70.55,32.25,160.0229,1725.916,221.374,98.25,1400.9823,203.6076,1239.7462,194.7917,0.3197 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 09).tif,PathCellObject,,121.2,80.32,72,161.3841,320.91,189.91,210.75,318.897,174.6604,317.8507,166.7338,0.3406 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 09).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,154.03,84.53,62.5,146.9724,845.2913,176.5315,186.75,1083.7305,171.2258,1205.1002,168.5251,0.3352 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 09).tif,PathCellObject,,235.8,82.82,42.75,147.1163,170.5698,194.7965,142,160.8589,170.6367,156.6304,160.1165,0.304 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 09).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,221.03,90.13,99.75,322.2698,408,246.5124,224.25,502.2198,205.1054,578.8088,171.4467,0.4417 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 09).tif,PathCellObject,,100.95,90.37,30.25,148.252,202.9837,168.9756,110.5,152.4266,161.7111,132.9937,158.9187,0.2699 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 09).tif,PathCellObject,,112.85,97.99,71.75,160.1384,322.2699,194.8339,183.75,239.5306,184.0354,185.917,177.0381,0.3915 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 09).tif,PathCellObject,,197.34,102.91,30.25,174.4173,278.7244,175.4173,105,255.5656,169.0501,245.4931,166.2808,0.2932 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 09).tif,PathCellObject,,208.36,104.94,93.5,191.4474,285.9079,179.6316,196,257.3384,171.8644,230.7946,164.6479,0.4781 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 09).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,167.36,109.1,74,192.3679,899.6187,193.194,182.25,822.6489,183.862,769.4988,177.418,0.4078 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 09).tif,PathCellObject,,190.05,112.59,35.25,162.5208,205.0972,173.2778,108.75,187.4658,166.7123,178.8299,163.4966,0.3219 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 09).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,179.1,115.84,68.25,174.1087,635.1884,201.5761,158.5,633.1429,193.3987,631.5789,187.1468,0.429 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 09).tif,PathCellObject,,201.46,116.84,28.5,389.9829,234.9744,176.6667,106.5,185.271,167.2313,166.5723,163.6817,0.2561 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 09).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,156.24,123.75,101,189.7709,440.9852,207.1724,231.5,515.4767,191.2238,573.7495,178.7476,0.4354 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 09).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,169.34,125.93,70.75,178.6444,853.6796,220.4437,174.75,1068.5835,203.4765,1214.9448,191.9209,0.4038 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 09).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,97.55,127.94,23.25,247.0722,760.7835,603.8145,79.75,621.2578,455.3603,561.1067,391.36,0.2853 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 09).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,258.34,137.74,109.25,299.4921,394.3651,295.2245,242.5,430.722,246.2379,460.7472,205.7828,0.4486 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 09).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,276.7,135.64,48.25,168.4623,548.5578,807.3668,152,404.7389,536.133,334.9341,404.4854,0.3168 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 09).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,95.62,136.31,30,242.2903,857.121,829.75,94.25,1000.5184,715.0079,1069.9766,659.4297,0.315 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 09).tif,PathCellObject,,189.92,140.02,82,226.6061,361.1454,222.2364,196.25,299.57,194.6565,255.0088,174.6974,0.4163 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 09).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,167.08,145.82,100.75,159.8861,979.2129,198.9084,243,991.3799,190.7741,1000.0035,185.0088,0.4118 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 09).tif,PathCellObject,,202.8,143.41,24,491.0606,215.5354,195.2626,98.25,182.0662,178.4427,170.7959,172.7789,0.238 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 09).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,232.86,145.68,28,412.8839,585.1786,208.6786,100.5,417.1337,183.8738,352.6781,174.3596,0.2693 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 09).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,104.97,150.13,88.25,166.4363,881.2805,212.4363,221,795.517,197.6652,738.5028,187.8456,0.3961 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 09).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,140.47,150.03,59.75,171.9372,521.2217,218.8494,170.5,637.0322,215.6808,699.3716,213.9752,0.3511 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 09).tif,cCASP3,cCASP3,61.56,154.58,31.25,190.9444,435.5555,2044.381,112.5,346.6533,1355.0867,312.0803,1087.0278,0.273 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 09).tif,PathCellObject,,227.63,156.2,41,167.7425,436.2395,180.8383,133,346.2622,175.6423,305.3188,173.2779,0.306 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 09).tif,PathCellObject,,199.82,159.35,139.75,188.0587,303.8185,298.2722,276.5,289.4629,244.9629,274.6324,189.8897,0.511 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 09).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,151.36,156.69,36.5,160.7697,856.3553,205.8816,114,787.5457,187.7196,753.5876,178.7565,0.3259 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 09).tif,PathCellObject,,78.22,159.06,34.5,145.4794,277.0891,214.2055,107,228.2953,188.7628,203.2113,175.6831,0.3276 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 09).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,175.53,164.46,116.75,274.4225,525.5584,478.4034,245,785.9531,334.948,1026.9077,202.2024,0.4777 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 09).tif,PathCellObject,,188.57,163.84,20.5,160.8139,344.1279,189.0581,74,290.44,182.6533,268.8645,180.0794,0.2758 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 09).tif,PathCellObject,,71.87,166.97,52.5,143.8981,309.2176,233.4676,139,268.714,202.4299,242.9823,182.7118,0.3796 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 09).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,150.28,168.2,67.75,212.8524,458.2214,212.369,153.25,557.4349,205.3046,635.8221,199.723,0.4374 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 09).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,129.48,170,104.25,179.2005,811.5656,244.8616,232.75,740.6417,224.2524,683.0504,207.5174,0.4498 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 09).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,246.61,169.82,111.75,203.5351,521.0789,188.7083,229,554.6608,179.1756,587.8785,169.7462,0.497 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 09).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,259.07,172.78,48.75,157.7047,783.2073,185.8446,123,593.3488,176.8629,472.4158,171.1419,0.3927 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 09).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,114.8,174.04,82,230.2831,399.9367,279.6295,202,405.5995,228.3164,409.5409,192.6017,0.4037 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 09).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,142.29,172.84,12.75,195.2264,1325.0754,224.6792,56.75,956.0044,206.3362,844.8636,200.8125,0.2154 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 09).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,171.13,177.05,40.75,159.2635,1068.5509,200.2395,142.25,1414.8298,196.7649,1558.3251,195.3251,0.2845 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 09).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,219.24,174.47,10,209.3415,1005.1707,194.5854,58.25,944.1313,187.4068,931.2974,185.8974,0.1562 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 09).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,223.78,181.41,57.75,301.2479,1153.1453,299.4445,129,1257.8176,246.7083,1343.1603,203.7108,0.4435 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 09).tif,PathCellObject,,322.31,183.53,33.5,375.4485,233.3162,168.1985,115.75,190.8728,160.0259,173.2744,156.6372,0.285 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 09).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,230.03,191.37,149,332.4435,427.7874,334.789,268.25,685.1341,275.3659,1013.3602,199.5763,0.5557 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 09).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,128.27,187.71,14.75,171.9524,563.2064,241.4603,71.5,405.257,192.5868,361.0311,178.9022,0.2024 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 09).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,137.53,193.69,97,269.2813,844.9565,209.3657,212.75,1098.6014,203.1958,1313.2662,197.974,0.4508 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 09).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,154.46,196.62,64.25,199.2682,2283.5518,253.5287,162.25,1984.8771,223.8356,1784.9949,203.9641,0.3945 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 09).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,79.63,204.22,83.25,196.8559,453.2973,212.9309,210,693.582,212.1164,850.7819,211.5835,0.3951 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 09).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,235.12,204.12,67,173.8836,500.7382,189.9382,190.5,565.4334,180.8825,601.668,175.8106,0.3547 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 09).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,158.69,208.78,113.25,200.1077,1331.1165,396.4989,227.5,2417.7544,304.1349,3499.6367,212.175,0.4944 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 09).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,138.54,208.23,28.25,172.1379,645.5431,223.6379,98.5,1061.7975,216.2608,1234.8638,213.1935,0.2872 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 09).tif,PathCellObject,,269.74,212.12,50.75,310.5588,286.0981,300.799,130.75,246.0608,224.5874,220.6956,176.3044,0.3795 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 09).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,146.06,217.85,116.25,193.5256,726.9765,925.1089,226,1244.8959,587.2658,1802.1057,223.7931,0.5157 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 09).tif,PathCellObject,,275.26,219.62,29,171.3846,309.9744,191.188,95.5,229.4099,176.0862,193.9737,169.4436,0.3014 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 09).tif,PathCellObject,,89.99,219.35,35.25,241.8681,289.3958,194.6806,119.5,212.6542,180.8146,179.7649,174.872,0.2897 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 09).tif,PathCellObject,,72.93,229.87,64.5,154.5682,296.0947,191.4886,183.75,245.8478,179.375,217.7436,172.5996,0.356 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 09).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,185.8,248.83,101.75,200.9014,465.9038,255.2356,236.5,453.4572,216.7054,443.7062,186.5198,0.4352 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 09).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,142.54,253.56,118.75,169.7796,999.7796,295.4615,299.75,940.4792,227.6508,900.808,182.2865,0.3995 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 09).tif,PathCellObject,,199.07,256.35,25.25,149.2692,206.1058,308.0192,103.75,157.6683,221.6947,141.5224,192.9199,0.2433 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 09).tif,cCASP3,cCASP3,264.63,260.56,53.75,162.0605,558.0605,4730.3208,167,299.7361,1982.7781,176.8606,675.8717,0.3157 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 09).tif,cCASP3,cCASP3,280.61,260.67,82.75,293.4834,357.3172,358.6646,194,309.6095,426.1714,274.1236,476.3843,0.4217 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 09).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,164.93,266.95,223.5,175.4978,488.6756,212.6063,407,599.9902,197.5233,735.5695,179.1526,0.5487 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 09).tif,PathCellObject,,194.16,276.45,33.25,397.1022,358.6642,202.4964,113.5,319.4276,192.9167,302.5768,188.8025,0.2873 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 09).tif,PathCellObject,,182.31,280.51,101,160.8309,249.2108,272.5858,233,217.3766,229.2006,192.5897,195.4198,0.4349 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 10).tif,PathCellObject,,178.56,86.47,31.5,148.3828,181.5156,165,115,144.1087,159,129.6868,156.6868,0.2696 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 10).tif,PathCellObject,,192.59,95.66,155,192.6821,326.0352,249.6709,320,287.5347,208.3653,250.7389,168.8885,0.4876 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 10).tif,PathCellObject,,173.62,113.52,130,206.2868,377.8738,231.7266,273.5,298.4895,204.6356,225.9056,179.8654,0.4748 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 10).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,219.35,136.32,159,192.0786,2365.4402,199.4371,320.25,1673.9337,184.3268,993.1316,169.4505,0.4936 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 10).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,145.54,135.44,69.75,227.8339,738.4205,244.7173,172.25,999.7547,205.5152,1181.9163,178.1897,0.4032 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 10).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,163.22,143.39,176.5,156.8594,1075.0398,190.2983,354.25,1070.7722,182.3032,1066.5645,174.4202,0.496 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 10).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,138.39,144.25,27,196.8919,612.5766,318,97.25,543.4077,241.2077,515.8889,210.6559,0.2708 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 10).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,172.42,173.04,82.75,328.2312,850.5616,197.7628,196.75,809.1039,186.6426,778.8289,178.5219,0.4172 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 10).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,196.25,200.08,78.5,174.2257,786.9404,321.4012,197,841.3317,260.7215,878.1699,219.6242,0.4009 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 10).tif,PathCellObject,,223.37,219.37,33.25,149.8044,229.0435,185.0652,121.25,164.748,170.5635,139.3971,164.8457,0.2785 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 10).tif,PathCellObject,,208.37,219.87,39.75,252.3681,451.5031,271.4233,120.75,288.8247,218.5361,206.4752,191.764,0.3283 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 10).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,72.38,231.25,131,146.7108,684.4764,299.4877,318,619.9718,289.6019,574.2918,282.6011,0.4125 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 10).tif,PathCellObject,,201.25,227.59,30.25,251.7016,351.1532,188.8065,94.75,248.8649,178.6519,200.2682,173.8276,0.315 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 10).tif,PathCellObject,,212.7,228.8,10,159.2609,220.087,176.7826,54.5,182.7032,170.6119,172.763,168.9711,0.1885 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 10).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,243.03,236.94,151.75,220.2904,734.3801,626.3817,313,944.0527,824.1022,1144.8796,1013.4813,0.4878 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 10).tif,PathCellObject,,207.39,236.65,40.25,170.0849,340.3697,194.5091,115.5,225.6624,177.4021,162.5733,167.9933,0.3492 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 10).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,216.08,258.16,83,172.991,416.9551,204.515,170.75,385.7786,203.1774,355.8563,201.8937,0.4851 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 10).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,206.14,259.16,80.5,184.4329,382.5335,250.1616,162,374.1997,228.7389,365.7368,206.9845,0.4969 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 10).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,89.42,262.16,85.25,188.4094,379.4181,431.0994,186.25,358.7131,322.9048,341.1856,231.3144,0.4555 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 10).tif,PathCellObject,,89.02,272.5,26.25,223.381,367.1048,263.7143,84,280.3894,219.3717,241.4786,199.4744,0.3004 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 11).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,220.78,57.84,53.25,203.2465,836.6232,330.9581,124.5,1150.3232,243.1044,1388.6466,176.3604,0.4216 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 11).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,216.81,66.23,84.75,171.2216,1883.2974,192.6385,170.25,1448.6501,182.3644,1014.0029,172.0904,0.5008 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 11).tif,PathCellObject,,218.51,76.58,24.5,163.15,508.38,173.3,75.5,328.683,164.5654,241.4515,160.3252,0.3119 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 11).tif,PathCellObject,,150.49,115.95,86.75,272.204,285.8506,185.4598,206.25,244.4601,175.7343,214.4521,168.6833,0.4195 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 11).tif,PathCellObject,,115.86,116.89,35.75,340.8699,321.2945,184.5616,119.5,220.8589,172.4585,177.2173,167.1994,0.2923 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 11).tif,PathCellObject,,133.96,115.93,32.25,325.356,411.7046,190.947,109,253.8178,174.6105,185.9316,167.5863,0.2906 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 11).tif,PathCellObject,,129.08,123.59,14.25,146.3226,248.6613,176.5968,74.75,183.4883,167.4381,166.4388,165.0422,0.185 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 11).tif,PathCellObject,,110.4,129.7,30,176.2097,376.4677,313.7581,115,221.0544,209.5391,163.6994,171.0774,0.2619 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 11).tif,PathCellObject,,159.82,142.97,38,157.2357,292.4968,179.4268,133.5,240.4813,169.8914,218.8196,165.9204,0.2842 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 11).tif,PathCellObject,,113.27,143.33,29,365.6083,290.775,185.4083,109.75,210.5455,175.7295,180.4594,172.1,0.2649 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 11).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,127.39,167.97,25.25,173.9806,1089.6311,178.9417,90.5,1215.3873,179.4423,1265.0154,179.6398,0.2713 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 11).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,137.05,173.89,87.5,302.4629,637.6943,346.8743,198.5,1102.532,263.2045,1466.4989,197.6913,0.4426 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 11).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,125.87,184.42,40.5,187.2892,1381.9819,196.4277,119.5,1389.5386,188.7996,1393.5464,184.754,0.3382 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 11).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,168.57,188.71,77.75,206.4613,2927.1064,460.5548,174,2263.8706,380.564,1729.8363,316.1559,0.4439 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 11).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,177.46,186.94,13.75,166.0345,3080.1379,312.8621,63.5,1698.3334,247.5155,1297.61,228.565,0.2125 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 11).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,138.8,186.56,15.5,174.0154,1484.0615,197.2154,71,1572.4351,184.9017,1598.5454,181.2636,0.2072 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 11).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,153.29,193.56,113.5,289.0373,326.8333,362.114,242,413.9928,276.5124,491.3171,200.57,0.4664 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 11).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,130.95,193.49,48.25,208.4221,773.201,190.9548,114,985.4518,187.1601,1149.8015,184.2218,0.4202 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 11).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,138.39,202.62,108.25,233.1835,562.8647,252.5917,238.5,966.8987,219.3413,1304.3678,191.569,0.4513 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 11).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,162.7,200.93,17.75,159.0556,3168.8193,1294.9305,91,2349.7004,790.3379,2147.7261,665.9178,0.1867 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 11).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,173.36,203.03,80.5,243.963,311.5154,201.3426,181.25,592.4239,205.5569,817.1506,208.9284,0.4356 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 11).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,163.87,213.73,27.75,165.0174,1118.9043,199.9565,88.5,1214.9132,192.7479,1260.5372,189.3223,0.307 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 11).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,172.59,217.25,46.75,163.2579,2096.7527,203.8474,127.5,1450.8809,187.6875,1069.7764,178.1522,0.3622 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 11).tif,cCASP3,cCASP3,96.03,216.48,28.25,181.4513,308.1239,4692.7524,106,208.0773,2017.5831,172.0732,1054.863,0.2565 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 11).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,136.24,220.31,109.75,268.8899,408.6022,194.0494,259.5,583.2469,196.6316,714.5253,198.5726,0.4244 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 11).tif,PathCellObject,,138.22,242.81,123.25,195.4162,345.6404,217.5354,274.5,327.3033,197.4217,312.2504,180.9104,0.4459 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 11).tif,PathCellObject,,308.63,249.34,19.25,174.925,123.3375,154.2375,88,122.2768,153.904,121.9672,153.8066,0.213 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 12).tif,cCASP3,cCASP3,157.59,82.56,59.25,288.7292,297.5375,379.45,145,287.8285,361.4528,281.035,348.86,0.4045 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 12).tif,PathCellObject,,153.72,92.17,38.75,384.9554,356.949,185.9427,105,284.8747,176.1229,242.3346,170.3271,0.3586 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 12).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,150.81,105.53,57.5,161.7778,459.6837,227.8162,159.5,413.2995,188.7379,386.6314,166.2703,0.3581 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 12).tif,PathCellObject,,100.49,109.58,77.5,247.9327,310.6538,225.8974,193.75,299.8134,212.7967,292.5398,204.0065,0.3978 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 12).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,128.86,110.83,18.5,163.2338,571.013,180.7662,73.25,552.0881,174.6203,545.4037,172.4495,0.2487 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 12).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,137.24,119.69,81.25,214.3172,458.4109,258.855,166.5,505.4813,229.6009,551.5769,200.9527,0.486 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 12).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,144.79,116.15,23,181.1134,576.5876,190.0103,74,530.2733,178.8833,508.1429,173.5665,0.3196 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 12).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,179.42,118.41,57.5,177.8846,5871.1069,182.2009,164,3298.2549,168.5948,1881.673,161.1035,0.3493 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 12).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,124.97,124.6,115.25,224.9637,980.2906,557.5705,269,1391.3594,351.8134,1707.2545,193.6946,0.429 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 12).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,165.95,135.2,138.5,205.6072,840.9604,208.3946,293.25,1154.7013,201.4562,1435.55,195.2452,0.468 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 12).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,189.05,141.01,60,270.9555,354.3806,230.7611,150.25,623.8704,214.7143,811.3746,203.5493,0.4045 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 12).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,183.84,153.75,169.5,253.9458,506.0733,198.9795,285.75,851.965,195.5446,1362.5671,190.474,0.5898 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 12).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,196.86,150.2,17.5,207.7432,3486.5405,209.8784,73.75,2638.0068,191.468,2356.4304,185.3587,0.2327 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 12).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,159.04,152.69,57,267.8826,418.1478,205.4478,155.75,436.1458,183.0946,446.6523,170.0457,0.3618 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 12).tif,PathCellObject,,205.37,158.99,45.75,472.1359,350.7989,194.163,116.25,299.7569,182.7399,266.8035,175.3649,0.3878 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 12).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,194.2,164.68,56.25,334.2489,381.2402,449.3843,129.5,406.8889,329.8372,426.9352,236.4027,0.4331 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 12).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,164.04,169.3,67.5,239.2904,654.8603,242.5625,163.5,834.4794,209.6809,962.0417,186.329,0.41 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 12).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,203.86,169.77,37,465.8533,415.16,240.26,99.75,419.1861,208.9206,421.5731,190.3399,0.3595 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 12).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,153.87,176.14,38.5,166.2547,2415.6584,222.472,116.5,1419.5924,207.8386,902.2806,200.2387,0.3336 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 12).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,169.01,177.19,9.5,180.6977,3464.1396,236.1628,45.5,2536.1353,215.827,2255.1196,209.669,0.2113 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 12).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,159.95,183.25,30,168.1429,2059.9683,211.9365,86.75,1496.6666,206.1753,1176.955,202.9054,0.3408 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 12).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,172.58,187.07,92,243.1898,1246.6711,211.7406,201.5,1326.9047,192.9554,1396.0461,176.7673,0.4604 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 12).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,133.17,195.36,76.5,280.1721,1022.2727,729.6624,184.75,1434.5797,434.8189,1728.5393,224.6065,0.4079 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 12).tif,PathCellObject,,145.8,200.62,71.25,226.9441,361.514,313.7867,174.75,330.6772,237.9214,309.3744,185.5121,0.4085 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 12).tif,PathCellObject,,90.97,200.63,32.5,188.6466,261.1805,180.9173,118.5,213.0483,172.9832,194.3848,169.9067,0.2748 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 12).tif,PathCellObject,,130.7,216.75,23,353.3789,228.6632,174.1263,94.5,184.372,171.1082,169.5563,170.0986,0.2375 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 12).tif,PathCellObject,,151.18,234.56,96.25,152.3144,343.5851,192.951,240.5,251.485,181.0021,189.5529,172.9671,0.3985 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 13).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,184.11,89.93,63.5,230.3217,1660.7325,282.3372,134.75,2471.9038,227.5056,3214.0391,177.3404,0.4673 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 13).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,175.98,97.78,73.25,241.6409,1153.3724,280.849,154.75,1750.8741,227.3371,2303.8416,177.8137,0.4751 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 13).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,189.73,97.29,14.75,159.6333,9082.417,177.2833,56.75,5056.6157,166.262,3627.3372,162.3491,0.2494 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 13).tif,PathCellObject,,158.62,104.93,37.5,199.3117,300.4935,179.013,127,190.8141,165.2055,143.5014,159.2493,0.2945 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 13).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,174.92,111.26,59.25,159.325,1680.9875,193.7,167,1313.1093,176.4775,1106.8224,166.8201,0.3639 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 13).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,184.38,107.79,20.25,165.1046,3176.8953,186.4767,75.25,2024.2871,173.4422,1567.493,168.2765,0.2746 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 13).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,54.75,129.24,105.5,184.609,497.6825,254.9929,233.5,638.2527,214.4111,754.1133,180.9629,0.4493 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 13).tif,PathCellObject,,108.07,128.56,33.25,317.2963,303.4296,194.1704,114.5,206.9499,176.4662,166.75,169.0895,0.284 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 13).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,208.8,136.29,97.75,266.5718,1387.0251,246.3375,245.5,1693.1373,236.1343,1900.5205,229.2218,0.3996 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 13).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,81,134.75,91.75,190.9891,376.8365,471.1744,207.75,464.0721,430.1971,532.9226,397.8559,0.444 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 13).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,200.67,131.96,17,204.3014,1140.2466,238.4794,65,1044.2765,204.5833,1007.5969,191.6283,0.2651 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 13).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,158.91,138.92,17.5,185.9733,1022.7466,189.8,91.5,707.4864,187.7147,626.7884,187.1809,0.1933 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 13).tif,PathCellObject,,97.19,139.65,32.5,222.9925,262.6316,282.5489,97,200.4578,216.6854,168.407,182.7326,0.3343 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 13).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,177.33,143.42,105.75,319.4426,345.3232,255.9227,236.5,654.0727,224.2971,906.6322,198.4272,0.45 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 13).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,223.05,142.72,47.25,200.9588,481.7062,207.2113,144.25,431.9637,184.9931,406.8333,173.7682,0.3259 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 13).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,125.84,145.44,42.25,232.2047,750.0936,202.8129,117.25,998.0763,191.7966,1138.9568,185.5382,0.3493 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 13).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,135.87,144.95,24.25,197.2626,1036.7576,191.5657,76.5,1316.424,186.2168,1448.2667,183.6952,0.3071 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 13).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,79.15,148.38,43.75,210.8827,818.9832,199.7151,127.75,1649.6523,201.0391,2096.1682,201.7507,0.3405 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 13).tif,PathCellObject,,94.36,148.66,20.25,158.2738,178.3571,168.7024,79,156.8585,167.0157,149.141,166.4103,0.2538 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 13).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,151.32,152.24,136.25,296.0492,478.8543,186.6958,245.25,867.7667,188.7961,1356.3547,191.4348,0.5495 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 13).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,200.87,149.92,66,299.8534,494.985,1557.7518,151.75,910.9243,833.7648,1234.4327,270.6638,0.4309 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 13).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,115.01,150.26,50,207.393,303.3532,586.0945,120.25,366.9628,400.9773,412.1414,269.4982,0.4145 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 13).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,140.62,149.94,25,241.4757,734.6699,245.9612,52.5,880.5187,224.9346,1015.8558,205.4234,0.4724 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 13).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,186.14,156.4,93.75,242.4812,623.7043,244.5054,213.25,1259.4531,220.0199,1750.1141,201.1224,0.4333 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 13).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,121.93,158.09,64.5,231.3396,488.9698,218.4075,144.5,533.3127,199.1203,570.3817,182.9968,0.4528 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 13).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,138.74,157.32,29.75,224.0082,668.9262,238.6803,81.25,1170.6006,218.5732,1467.7087,206.6651,0.355 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 13).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,208.22,159.91,77.75,318.9778,430.7841,217.3365,161.25,588.779,201.5471,738.6837,186.5663,0.4784 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 13).tif,PathCellObject,,62.77,159.87,32,316.8947,293.0977,188.4436,113,301.1258,185.1832,304.4625,183.8281,0.2841 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 13).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,74.7,161.21,40.75,224.7143,692.3095,194.4881,128.5,712.6467,184.2317,722.4086,179.3086,0.3126 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 13).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,100.3,164.18,36.5,283.9597,592.0872,205.5101,121,396.9076,184.1828,310.8669,174.7811,0.2946 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 13).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,147.3,164.63,14.75,233.0159,535.5873,198.5714,59.25,962.7059,193.7857,1116.4686,192.0629,0.2415 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 13).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,164.19,167.1,73.75,222.5034,347.1327,232.2687,174.5,421.7265,216.6838,475.4779,205.4534,0.4174 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 13).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,196.2,165.2,9,191.925,930.1,297.7,59.5,1007.6736,232.113,1023.2664,218.9296,0.1491 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 13).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,209.13,172.19,97.25,277.9949,495.2558,214.5627,181.5,904.8987,209.5992,1375.9883,203.8912,0.5318 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 13).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,137.97,170.28,48.5,239.5657,730.7172,341.3737,138.5,900.6864,331.3656,994.1694,325.8611,0.3491 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 13).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,126.49,171.9,23.75,190.6061,454.505,190.7778,76.5,905.0387,192.0419,1116.4265,192.6351,0.3046 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 13).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,183.26,173.15,57.75,212.0766,828.2979,206.4979,159,1076.9355,196.7704,1222.6459,191.0698,0.3639 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 13).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,114,169.99,9.75,167.75,1243.8,190.675,52,830.6603,182.0861,732.8757,180.0533,0.1698 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 13).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,119.96,172.73,29.75,217.7623,367.0328,191.5984,68.5,416.2036,190.0436,455.4118,188.8039,0.4274 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 13).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,196.82,176.79,82,230.7933,820.1915,238.1368,168,1014.8652,221.9674,1199.974,206.5925,0.4874 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 13).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,160.74,176.57,32,319.3333,1030.3556,333.9704,95.75,1256.348,323.6883,1378.384,318.136,0.345 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 13).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,147.02,175.94,21.25,438.0114,518.6932,188.2841,74,992.4247,194.7993,1190,197.5166,0.2818 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 13).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,171.44,178.96,14.75,200,867.7742,192.0161,62,938.747,200.8835,962.2781,203.8235,0.2336 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 13).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,120.15,183.75,72,272.9315,890.9418,194.1404,181.75,1003.0756,187.4615,1078.1743,182.9885,0.3948 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 13).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,149.31,184.89,51.5,296.3495,412.9272,208.2039,133.75,602.6201,192.4842,720.6768,182.7009,0.3761 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 13).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,174.19,187.77,113,224.1852,885.8475,279.2723,229.25,1072.6254,242.8458,1258.1904,206.6558,0.4946 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 13).tif,PathCellObject,,225.64,187.87,59,222.9958,255.8983,209.8305,157.75,223.2674,186.0032,203.8207,171.803,0.3641 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 13).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,204.93,189.51,86.5,263.7557,347.8908,363.1897,196.75,464.9061,265.8109,557.4545,188.7932,0.4385 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 13).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,191.94,188.73,25,184.5437,955.6699,196.0194,93.25,1325.7162,196.9735,1464.8212,197.3321,0.263 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 13).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,183.91,196.46,71.5,223.5567,605.6632,209.7354,153.75,720.1637,214.752,822.3712,219.2301,0.4637 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 13).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,197.88,201.59,39.25,316.0688,461.5938,263.2437,120.75,399.498,261.4054,369.0215,260.5031,0.3214 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 13).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,172.64,204.02,45.5,194.2849,493.9086,261.4624,127.75,421.3431,217.692,380.0673,192.7951,0.3563 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 13).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,186.63,208.03,75.25,293.8775,472.4967,559.1523,168.75,448.3309,483.2585,428.8693,422.1387,0.4447 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 13).tif,PathCellObject,,106.24,209.42,27.5,364.193,314.6053,202.8772,106.75,252.815,207.2693,230.3099,208.869,0.2566 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 13).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,115.43,217.25,76,295.9838,368.6753,437.25,198.5,448.6461,732.4119,499.3271,919.4691,0.3799 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 13).tif,PathCellObject,,78.4,214.62,31,179.5039,266.4803,192.6614,113.5,179.3319,176.0857,145.5884,169.6677,0.27 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 13).tif,PathCellObject,,101.54,228.74,46.25,188.5288,289.4764,210.0838,135.75,229.293,189.8077,196.9127,178.8986,0.3388 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 13).tif,PathCellObject,,92.76,234.39,32,200.875,385.7353,225.5,103,308.8169,216.3735,271.3226,211.9247,0.3123 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 13).tif,PathCellObject,,116.25,238.1,40,261.8909,250.3758,197.9454,129.75,194.8023,184.476,169.0449,178.2331,0.3055 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 13).tif,PathCellObject,,174.84,254.19,30.5,308.881,277.6111,187.3016,112.5,202.1189,176.5507,173.1189,172.4207,0.2678 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 14).tif,PathCellObject,,114.42,65.96,33.5,233.1926,214.6222,168.0518,119.25,158.6101,160.4382,136.5,157.4328,0.2775 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 14).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,222.14,95.1,329,168.9849,484.7002,177.891,557.75,500.7519,174.5846,524.1046,169.7742,0.5927 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 14).tif,PathCellObject,,99.33,92.02,35,250.5493,275.7394,174.1268,117.5,202.286,166.1864,170.6788,162.7697,0.2875 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 14).tif,PathCellObject,,195.47,102.82,53,256.8341,293.8065,182.1014,118,308.865,176.443,321.5798,171.6654,0.4489 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 14).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,204.55,100.7,15,231.65,613.8,205.55,58,366.8712,179.7897,281.2312,170.8555,0.2488 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 14).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,126.61,106.2,50.75,189.9521,376.4641,190.0431,133.5,513.3967,186.0782,600.6494,183.5518,0.3816 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 14).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,116.42,108.64,57.75,189.5153,361.1092,201.7162,137.75,491.5135,196.7612,582.5579,193.3018,0.4101 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 14).tif,PathCellObject,,201.15,111.32,38.75,202.443,322.9051,181.4304,102,317.2295,177.4807,313.7266,175.043,0.3772 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 14).tif,PathCellObject,,165.41,113.02,40.25,276.4849,307.9758,178.7818,131.25,229.365,168.6635,193.4349,164.0388,0.3056 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 14).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,123.58,117.2,31.75,240.1515,653.447,221.3561,83.5,711.4332,198.3887,748.7708,183.6,0.3786 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 14).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,208.54,120.15,37.75,191.0314,522.0629,200.6415,113,580.6813,189.9714,612.1689,184.2399,0.3414 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 14).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,198.84,127.8,101,261.1376,395.3071,247.0688,200.75,517.2916,218.7742,641.7218,189.9123,0.4991 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 14).tif,PathCellObject,,107.49,126.51,23.75,185.8788,241.6061,175.9192,82.25,249.0423,171.9607,252.2155,170.2715,0.2788 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 14).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,161.18,127.59,46.75,378.4474,567.6473,205.8947,131.75,842.5701,196.4034,997.1124,191.0681,0.3532 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 14).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,210.43,129.56,19.5,185.759,608.3615,205.6626,58.5,808.937,194.1092,916.3419,187.9226,0.3293 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 14).tif,PathCellObject,,246.74,134.65,183.5,170.7026,287.8336,185.7271,371,233.0978,176.1768,179.5314,166.8304,0.4913 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 14).tif,PathCellObject,,115.59,129.03,17.5,199.5143,163.0429,170.2143,60.75,155.0816,167.9959,151.8971,167.1086,0.2674 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 14).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,190.37,138.12,67.75,251.4322,412.2161,222.5018,162.25,546.578,210.3027,642.853,201.5617,0.4143 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 14).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,109.48,136.93,47,167.0842,495.7842,188.9263,130.5,354.0706,178.5286,273.4551,172.6138,0.3581 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 14).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,157.89,137.96,58.75,233.4876,489.1405,221.9959,156.25,653.4738,216.9205,756.2352,213.7468,0.3828 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 14).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,167.37,146.51,31.5,230.2727,446.3712,215.8485,85.75,463.7254,197.3266,474.4299,185.9019,0.3724 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 14).tif,PathCellObject,,240.09,145.28,17.25,156.5857,225.1143,178.7429,71.5,155.9723,167.3529,133.8721,163.7123,0.2328 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 14).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,197.14,149.23,48.25,235.5128,518.5077,203.7128,112.75,506.5011,194.4261,497.4264,187.407,0.4256 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 14).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,159.38,153.52,134.75,231.5722,324.0148,218.6278,257.75,493.8166,208.3803,678.6815,197.2238,0.5171 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 14).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,184.84,151.65,68.5,221.8982,501.4582,212.3564,163,614.9022,195.8211,697.2164,183.8232,0.4148 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 14).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,121.65,154,46.5,180.5185,1063.7513,231.4074,132.75,1195.985,200.8569,1269.0614,183.9737,0.3521 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 14).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,135.6,157.64,110.25,206.0045,476.204,379.7377,243.25,855.2156,301.6376,1175.3655,235.6667,0.4542 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 14).tif,PathCellObject,,245.25,154.96,23.5,372.8776,249.3775,187.4694,76,196.9706,172.8758,172.2788,166,0.2984 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 14).tif,PathCellObject,,253.51,157.08,22.5,375.8352,226.5934,176.011,77,185.2724,170.141,168.2579,167.724,0.2756 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 14).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,201.36,161.05,92.75,310.0269,393.372,198.7736,189.5,611.4485,197.1201,820.509,195.5349,0.481 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 14).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,214.87,159.55,22,173.1277,468.7021,180.1489,86.75,416.6371,171.84,397.5195,168.7891,0.2549 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 14).tif,PathCellObject,,105.76,165.73,30.75,250.8504,293.2126,195.9291,112.5,221.0089,181.5288,192.7939,175.9015,0.2691 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 14).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,211.26,171.66,99.25,229.9799,449.6985,216.8241,217.75,462.8952,197.3007,473.8375,181.1125,0.4491 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 14).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,130.93,170.14,30.75,293.0635,630.1031,193.2143,95.75,681.3743,189.2853,706.6094,187.3516,0.3163 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 14).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,234.17,170.83,86.5,297.6897,585.7471,219.1264,208,711.6875,203.1695,802.2397,191.6963,0.4144 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 14).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,141.25,170.49,34.25,186.6667,2534.5532,839.1489,115.5,1959.8134,839.7167,1710.4646,839.9631,0.2939 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 14).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,121.65,171.61,27.75,333.9646,454.823,894.4071,97,394.7692,563.1718,370.2708,428.0469,0.2699 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 14).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,111.22,175.98,49.75,167.8835,738.3447,213.2573,148.25,642.2148,203.6594,591.4385,198.5897,0.3342 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 14).tif,PathCellObject,,74.63,174.32,33.75,192.1727,291.3813,183.1151,120.5,189.4345,172.7048,148,168.4737,0.2747 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 14).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,154.86,176.19,14,251.6333,559.5333,229.2833,65,382.8977,200.0152,330.9461,191.4069,0.2132 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 14).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,244.25,180.55,85,347.6608,722.0818,237.7368,202.25,1054.7008,205.3795,1298.2891,181.6831,0.4191 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 14).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,146.73,182.36,61.25,269.876,318.22,325.236,155,357.672,295.4341,384.1855,275.4059,0.3944 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 14).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,203.07,190.56,123.75,271.3622,411.0241,300.4467,257.75,559.5702,242.4743,697.3079,188.7202,0.4749 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 14).tif,PathCellObject,,89.28,192.57,32.75,275.6391,338.9323,204.8346,115.5,204.4989,180.4989,150.3182,170.6909,0.279 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 14).tif,PathCellObject,,233.55,193.12,66.75,146.5166,236.7565,171.7675,181,181.7628,166.2179,148.9361,162.9053,0.3718 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 14).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,188.49,196.08,31.25,366.7795,496.9685,236.7559,97,708.4706,220.6496,810.2159,212.9015,0.3172 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 14).tif,PathCellObject,,117.46,200.55,44.75,173.2762,401.674,210.7956,106,322.8548,193.897,264.8618,181.4634,0.4152 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 14).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,180.51,201.56,12.25,178.7547,739.8302,216.1132,67,735.3234,193.9814,734.2176,188.5509,0.1839 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 14).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,207.49,203.4,25.25,411.5096,284.5962,188.2308,91,374.7493,181.9101,410.3992,179.4106,0.267 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 14).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,170.52,205.06,53,225.2884,689.8279,194.7488,148,691.7285,184.8061,692.8095,179.1508,0.3546 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 14).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,191.52,207.2,96.5,253.2113,328.634,194.9407,208.75,411.8053,189.9749,483.6771,185.6837,0.4572 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 14).tif,PathCellObject,,107.02,205.81,34.25,242,377.4245,203.5827,102,286.8029,191.4939,240.4926,185.3162,0.3302 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 14).tif,PathCellObject,,119.1,209.08,38.25,173.9491,380.4968,215.4841,98.25,296.302,193.2284,240.5274,178.4852,0.3911 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 14).tif,PathCellObject,,206.57,212.43,20.25,192.9535,295.1395,182.7907,86.75,231.4069,172.447,210.5665,169.0646,0.2335 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 14).tif,cCASP3,cCASP3,156.76,216.76,27,251.1786,420.4911,666.1161,107.25,332.6,468.0279,301.6447,398.261,0.2549 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 14).tif,PathCellObject,,132.06,219.52,168.25,170.6073,367.7441,213.2735,336.5,282.5156,198.3789,195.4955,183.1712,0.5015 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 14).tif,PathCellObject,,117.24,226.41,27,227.1982,200.964,177.1261,85.5,167.7551,172.3848,151.8664,170.1164,0.3166 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 14).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,135.38,231.88,44.5,164.5531,625.4749,584.676,112.5,728.275,713.6208,795.9265,798.478,0.3896 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 14).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,142.88,235.83,49.5,145.7734,625.8325,376.936,133,507.4944,361.5955,434.9184,352.1873,0.3735 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 14).tif,PathCellObject,,121.92,234.2,32,208.8473,215.2519,183.4046,100,187.0819,175.933,173.5147,172.3346,0.3153 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 14).tif,PathCellObject,,168.57,243.6,45.5,159.9135,381.4703,294.4973,130.75,310.019,273.0247,271.1412,261.3412,0.3442 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 14).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,156.83,245.43,81,196.3969,835.72,463.2369,181,628.8402,364.2589,461.1696,284.0399,0.4423 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 14).tif,PathCellObject,,141.82,251.5,33.5,229.1594,271.9058,195.0652,117.5,226.9449,205.7691,208.3683,210.1916,0.2782 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 14).tif,cCASP3,cCASP3,184.18,251.2,24,184.1313,231.2323,433.3535,88.25,176.1497,301.5424,154.7647,250.3686,0.2681 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 14).tif,PathCellObject,,175.92,253.49,26.25,225.0727,237.3545,188.8818,87.5,243.3295,210.2443,246.0455,219.9545,0.2923 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 14).tif,cCASP3,cCASP3,127.32,258.49,30,214.08,278.712,1819.4399,103,243.9442,1066.8374,228.8014,739.0488,0.2955 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 14).tif,cCASP3,cCASP3,135.55,258.07,14.5,201.7705,361.6066,3444.5574,60.75,320.8286,2425.5918,307.3098,2087.7827,0.23 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 14).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,167.67,264.1,37.75,154.5338,3254.5879,209.5608,131.25,2619.1199,186.076,2370.3123,176.881,0.2789 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 14).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,158.56,271.88,31.5,354.5669,455.2835,202.4803,110.25,759.7438,181.4104,882.8854,172.8885,0.2775 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 15).tif,PathCellObject,,317.37,74,19,155.7875,125.075,146.525,90.5,122.3664,146.4986,121.6007,146.4912,0.2038 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 15).tif,cCASP3,cCASP3,113.21,88.13,64.25,219.8231,347.4115,570.7577,171.5,272.7663,423.5196,227.5268,334.2844,0.3736 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 15).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,171.28,100.04,103.25,282.4639,370.0913,240.4279,226.25,580.137,227.7646,758.8262,216.9918,0.4572 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 15).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,154.67,104.33,99,187.0781,472.7305,242.6851,229.5,531.0445,209.5813,575.1409,184.5486,0.4271 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 15).tif,PathCellObject,,230.41,111.14,66.5,148.8259,513.6815,210.2963,191.75,303.7943,178.3242,190,160.99,0.349 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 15).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,171.07,113.89,45,169.2043,1478.0699,226.9032,140.25,1352.363,245.5587,1290.1782,254.7872,0.3254 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 15).tif,PathCellObject,,99.21,115.46,24.75,317.8627,238.7647,199.5784,81.25,192.0937,181.3595,171.3057,173.2445,0.2922 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 15).tif,cCASP3,cCASP3,247.82,121.27,42,563.6901,263.7485,1085.538,132.25,221.3409,668.3051,201.1972,470.1194,0.3141 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 15).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,178.12,122.06,62.5,229.5039,378.5354,361.815,129.25,666.9693,317.0442,941.3596,274.4532,0.4715 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 15).tif,PathCellObject,,101.28,123.44,24.5,368.7921,271.1584,183.7921,79.25,196.3323,173.3229,161.6651,168.4725,0.3031 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 15).tif,PathCellObject,,145.83,121.94,25.5,151.7009,332.215,212.2523,105.5,195.5094,180.2441,149.6552,169.5078,0.2337 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 15).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,188.02,125.04,16.25,191.2174,602.2174,200.8261,63,910.1953,196.9414,1023.8342,195.508,0.253 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 15).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,113.43,127.8,36.5,168.7987,1629.5973,208.4698,123,896.8438,187.6673,579.4593,178.657,0.2904 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 15).tif,PathCellObject,,128.42,131.42,52,204.0284,314.4787,231.981,132.5,326.7213,203.6064,334.7938,184.8969,0.3884 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 15).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,178.55,133.1,71,256.2448,344.0839,379.1608,154.25,559.5186,280.3582,745.6647,194.9879,0.4575 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 15).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,191.37,133.95,28.5,398.4,840.0174,207.5826,91.5,767.6467,285.1631,734.751,320.4269,0.3001 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 15).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,121.33,138.57,68.5,223.8152,540.8949,1056.7717,149.25,922.3283,1758.8417,1247.2531,2356.9011,0.4553 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 15).tif,PathCellObject,,202.11,137.76,40.75,246.0679,434.7839,228.9691,120.25,280.2289,271.3258,202.7121,292.5697,0.332 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 15).tif,PathCellObject,,231.1,138.27,31,193.5827,384.315,198.0157,108.5,302.554,187.8184,268.8409,183.6136,0.286 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 15).tif,PathCellObject,,192.82,143.95,29.75,276.8279,261.5738,183.5164,90,222.1635,178.1553,202.5388,175.4857,0.3311 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 15).tif,cCASP3,cCASP3,242.14,142.08,22.25,489.7582,225.3626,1052.4396,91.75,178.3978,573.1199,162.913,415.0833,0.2344 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 15).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,115.08,149.03,41.25,282.3195,1392.6154,2466.7041,130,1536.879,2828.6143,1606.1421,3002.3721,0.3184 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 15).tif,PathCellObject,,234.54,149.1,33,422.4105,327.7686,237.8209,104.75,284.8218,293.3919,264.7701,319.338,0.3047 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 15).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,133.26,150.61,18.5,236.8333,818.6154,1779.5513,75.75,455.4216,1276.0719,331.1711,1103.829,0.238 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 15).tif,PathCellObject,,217.3,152.8,22,246.191,174.6067,268.5506,92.5,150.8814,192.2318,143.3936,168.1454,0.2276 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 15).tif,cCASP3,cCASP3,127.02,156.67,24.5,288.01,330.23,770.01,84.5,285.4561,547.7924,266.9546,455.9669,0.2796 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 15).tif,PathCellObject,,155.08,159.36,30.25,396.871,256.6048,178.3226,107.5,210.9884,174.7361,192.6234,173.2922,0.2767 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 15).tif,cCASP3,cCASP3,211.42,164.76,9.75,269.093,187.2093,336.2093,55.25,212.348,377.9383,218.2228,387.6902,0.1683 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 15).tif,PathCellObject,,244.51,166.2,27.75,450.2768,249.4375,178.5179,105,219.2857,169.7262,208.3214,166.5292,0.2558 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 15).tif,PathCellObject,,202.82,168.23,31.25,454.0078,318.6172,234.7969,103,260.477,205.7143,234.3649,192.6526,0.2991 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 15).tif,PathCellObject,,230.69,169.29,53,482.4768,281.6667,220.7963,157.25,283.8687,204.7801,285.012,196.4639,0.334 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 15).tif,PathCellObject,,217.91,168.72,24.25,595.89,320.38,221.97,82.25,325.3283,249.7771,327.4612,261.7629,0.2848 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 15).tif,PathCellObject,,149.14,173.79,92.5,177.9519,420.4438,221.4813,222.5,343.0874,199.0404,287.2355,182.8378,0.4159 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 15).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,136.19,173.7,59.5,203.209,583.5656,236.4795,157.25,579.7037,207.2076,577.2687,188.7519,0.3789 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 15).tif,PathCellObject,,110.88,174.39,25.25,218.3725,244.4314,194,94.25,188.4005,194.6472,167.6182,194.8873,0.2567 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 15).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,211.66,175.58,18.5,207.1646,469.2278,279.924,60.75,442.4082,264.1429,429.6446,256.6325,0.3012 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 15).tif,PathCellObject,,222.65,177.14,23.75,290.8367,293.8673,188.5204,89.25,310.5933,197.6657,316.8736,201.0996,0.2607 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 15).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,203.73,179.69,50,247.5419,404.3054,268.0443,116.25,411.0258,243.3455,416.2129,224.2814,0.4272 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 15).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,194.6,181.24,24.5,406.6832,357.0594,200.2574,82.75,421.5,215.4699,449.6753,222.1212,0.2867 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 15).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,120.88,182.97,31,328.5736,688.6822,216.4264,107.75,458.3724,307.669,361.281,346.134,0.2869 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 15).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,215.3,185.5,42.25,261.7457,367.6358,212.3064,107.75,351.8469,206.0278,341.2597,201.8178,0.3962 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 15).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,79.33,182.73,18.25,154.6579,812.4474,862.9079,79,488.4528,458.239,386.7025,331.1529,0.2338 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 15).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,106.45,184.25,30.25,201.8548,535,212.1532,109.5,352.3462,212.3575,281.1227,212.4371,0.2742 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 15).tif,cCASP3,cCASP3,242.95,184.98,49.25,190.6231,648.5628,5366.7939,144.5,349.9449,2232.2703,194.3822,599.3639,0.3366 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 15).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,173.93,186.26,63.25,210.0506,2315.2334,205.0934,149,1495.8064,188.3456,880.038,175.7602,0.4221 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 15).tif,PathCellObject,,229.69,188.32,34.25,207.5106,312.9858,213.2128,110.75,269.9798,205.5269,250.0984,201.9738,0.3074 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 15).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,127.67,189.62,38.25,210.7342,543.2025,1306.5316,116.25,575.8455,1019.2768,592.5909,871.9188,0.332 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 15).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,80.82,189.74,16.75,201.3731,632.7313,750.4478,55.75,556.2311,525.1644,523.7911,429.6329,0.2831 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 15).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,191.02,189.69,25.5,172.8505,919.9346,246.4486,106.5,846.5524,225.4732,822.1677,218.5031,0.2391 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 15).tif,PathCellObject,,89.53,190.73,30.75,326.1984,357.9762,207.0397,90.75,271.7344,198.4878,227.0165,194.0535,0.3306 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 15).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,208.5,194.65,44.75,382.6393,325.3169,483.459,135.5,352.0018,347.0902,365.5667,277.7694,0.3329 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 15).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,170.74,195.02,42.25,204.44,2093.4399,198.8571,109.75,1620.2427,185.1111,1308.9286,176.0677,0.3904 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 15).tif,PathCellObject,,221.77,193.06,33.75,342.6331,286.4173,358.1583,77.5,285.5446,288.6019,284.8514,233.3543,0.4358 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 15).tif,cCASP3,cCASP3,132.87,197.57,81.75,245.8537,315.75,660.939,179.5,297.4903,415.2756,282.2893,210.764,0.4524 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 15).tif,PathCellObject,,84.78,197.8,9.75,174.7,358.975,181.625,49.5,257.76,174.555,232.4563,172.7875,0.1789 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 15).tif,PathCellObject,,220.44,199.93,21.5,564.3371,258.8539,335.8427,60.75,240.8618,259.7317,230.6624,216.586,0.3431 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 15).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,148.78,202.06,84.25,214.8676,487.6382,195.5853,207,507.5054,182.9589,521.3758,174.1437,0.4053 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 15).tif,PathCellObject,,213.52,205.24,24.25,401.4445,311.4445,177.899,81,281.8492,180.3015,268.8849,181.354,0.2959 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 15).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,174.25,207.41,29,239.3802,889.3636,198.1488,119.25,412.1681,180.5861,249.5183,174.6,0.2427 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 15).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,129.54,209.73,72,243.0658,322.0034,277.9827,160.25,648.338,231.2512,913.2556,193.3146,0.4417 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 15).tif,PathCellObject,,136.08,217.79,23.5,160.202,369.3232,189.3333,95.25,284.7403,178.8857,255.4615,175.2692,0.2482 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 15).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,114.95,218.06,33,302.5606,473.1288,203.9015,106.75,980.4836,191.9182,1206.7365,186.5743,0.2971 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 15).tif,PathCellObject,,122.61,224.26,44.25,223.2088,327.3242,216.2033,130.75,298.8276,195.5398,283.8382,184.6705,0.3354 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 15).tif,PathCellObject,,147.41,224.68,57.5,241.4274,355.3761,233.7564,154.25,277.6494,200.5557,230.4078,180.3766,0.3733 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 15).tif,PathCellObject,,131.23,227,20.25,258.9405,341.3333,202.3571,65,284.9199,203.374,258.2978,203.8539,0.3052 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 15).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,151.19,237.1,76,224.7068,370.7101,193.1726,183.75,356.7436,183.1167,346.7721,175.9372,0.4092 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 15).tif,PathCellObject,,129,236.05,23.5,201.5684,245.7684,188.0737,90.75,200.0606,178.708,183.8582,175.3881,0.2501 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 15).tif,PathCellObject,,190.86,245.55,41.5,243.6154,361.3077,202.7929,123.75,247.9859,180.873,189.419,169.5443,0.3308 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 15).tif,PathCellObject,,200.15,245.17,17.25,167.7027,169.054,169.7838,74,143.404,166.5152,134.8924,165.4305,0.2282 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 15).tif,PathCellObject,,179.59,250.35,28.5,407.4397,276.7155,184.8965,106.5,178.8949,170.1706,142.5256,164.6955,0.2622 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 16).tif,PathCellObject,,185.94,78.39,35.75,358.132,343.1667,184,119.5,341.6854,178.7688,341.0506,176.5268,0.2904 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 16).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,99.27,123.93,33.25,187.1333,778.6519,193.2444,111.75,663.4521,185.7127,613.9236,182.4745,0.2933 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 16).tif,cCASP3,cCASP3,158.34,131,21,362.8506,296.3908,424.7356,80.75,311.5749,409.2324,317.0792,403.6125,0.2494 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 16).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,100.93,132.94,24.75,286.4615,2216.9424,196.5962,76.5,1913.932,192.9903,1760.2097,191.161,0.3169 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 16).tif,cCASP3,cCASP3,151.6,134.5,15.5,287.6667,361.0317,385.1587,51.5,319.2967,343.0574,301.2877,324.8904,0.2849 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 16).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,93.76,136.92,13.75,220.9138,2132.2759,189.3965,62.75,1342.3506,178.6494,1104.9637,175.4197,0.2155 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 16).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,146.68,141.34,51.75,204.9375,756.2211,198.0577,136.75,692.6248,196.0419,653.8328,194.8123,0.3732 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 16).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,103.47,144.79,57,173.7403,1798.7749,346.6104,160.75,1671.5994,265.9363,1600.4673,220.8136,0.3534 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 16).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,204.43,148.39,30,403.2917,374.55,387.8083,92.5,381.7493,1534.9973,385.1912,2083.4541,0.3102 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 16).tif,PathCellObject,,213.93,148.46,28.5,588.4052,267.1638,200.7414,81,199.3981,186.7253,161.6058,178.9087,0.3487 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 16).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,94.3,154.55,102.5,199.7458,461.9661,216.4092,192.25,607.8016,209.5266,776.0419,201.5866,0.53 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 16).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,134.8,155.59,95.25,217.0789,437.2079,300.0789,216,629.8795,266.0939,781.4637,239.3561,0.4367 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 16).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,156.01,154.49,73.5,185.28,1372.16,318.6467,176,1142.244,244.0014,971.9358,188.7086,0.4164 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 16).tif,PathCellObject,,187.8,154.78,28.5,451.8136,317.1017,199.4746,85.5,300.6387,211.4566,292.1184,217.6579,0.3199 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 16).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,108.32,160.77,121.25,272.0388,807.6605,296.0266,250,1333.6923,248.042,1836.0938,202.2129,0.4878 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 16).tif,cCASP3,cCASP3,212.84,158.66,51.5,549.0242,328.7826,652.5314,145.5,333.9656,1222.7423,336.8267,1537.4987,0.352 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 16).tif,PathCellObject,,179.6,157.18,27.25,466.5909,323.9636,195.1545,84.5,321.2164,186.5789,319.9138,182.5129,0.3142 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 16).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,121.19,163.8,114.75,219.1853,445.7435,247.4138,241.75,866.7899,226.9475,1252.1262,208.217,0.4744 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 16).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,194.41,159.92,12,199.898,821.4286,284.2857,64.75,538.8889,269.2414,473.5849,265.7642,0.183 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 16).tif,PathCellObject,,160.18,162.48,15,197.4098,506.3443,221.7705,59,299.4664,183.3109,228.1695,170.0565,0.2384 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 16).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,91.46,165.13,28.5,288.0847,465.6441,208.4661,90.25,369.2818,192.4834,322.6803,184.7541,0.313 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 16).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,182.97,171.08,187,313.616,345.6573,255.8387,342.5,401.3076,232.7092,468.41,204.8199,0.5466 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 16).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,133.18,174.02,75.25,192.6623,466.1705,352.8689,192.25,593.9417,259.201,677.5687,197.8949,0.391 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 16).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,193.48,183.47,75.75,249.2549,449.9052,336.5981,179.25,499.4979,268.0946,536.2421,217.339,0.4247 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 16).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,178.55,184.16,46.25,294.6842,402.9263,248.8316,117.75,411.1474,216.5958,416.6281,195.1053,0.3901 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 16).tif,PathCellObject,,234.25,187.22,46.25,342.5661,300.5979,242.7196,145.75,225.5445,213.1267,189.6329,198.9671,0.3152 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 16).tif,PathCellObject,,157.3,192.78,120.5,287.6322,384.1715,287.0083,255,326.7155,241.9228,275.1224,201.4379,0.4719 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 16).tif,PathCellObject,,179.76,193.75,22.25,285.3187,291.4066,187.5055,87.5,260.58,180.4143,249.749,177.9228,0.2426 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 16).tif,PathCellObject,,148.46,195.89,15.25,215.0152,370.9849,326.3788,57.25,285.5304,244.3304,251.1402,211.311,0.275 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 16).tif,PathCellObject,,240.74,196.95,31.25,379.0611,293.5878,176.9771,107,234.7465,172.7395,208.9666,170.8829,0.2946 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 16).tif,PathCellObject,,216.96,200.42,46.5,403.545,379.6825,218.3439,144.5,290.432,197.4028,247.4005,187.3061,0.3213 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 16).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,244.95,212.87,11.75,193.54,4349.2598,256.14,52.25,2411.1321,208.3066,1812.9445,193.5432,0.2214 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 16).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,239.28,221.24,66.5,400.3086,674.8439,589.3494,156.25,889.176,365.3152,1051.1293,196.0309,0.4198 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 16).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,248.93,219.32,9.75,204.0233,3081.8372,239.3954,43.75,1916.4222,197.2389,1550.635,184.0073,0.2312 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 16).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,184.03,236.65,115.25,309.4117,375.0388,224.3728,242.25,364.5222,208.0093,354.8974,193.0335,0.4741 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 16).tif,PathCellObject,,111.35,234.17,28,218.2368,231.7368,183.2719,103.25,220.6626,176.9277,216.4684,174.5249,0.2629 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 16).tif,PathCellObject,,167.51,238.39,24.25,444.5816,669.3776,187.9694,93,316.8387,176.3817,190.7482,172.2372,0.254 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 16).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,122.57,241.23,110.25,199.295,341.2342,231.7095,226,350.8322,222.0552,360.0563,212.7771,0.4877 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 16).tif,PathCellObject,,175.61,244.6,26.25,339.8491,343.9057,209.3679,83.25,237.1602,184.454,188.1775,173.0217,0.3028 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 16).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,139.16,248.75,80.75,196.1415,361.4369,200.3262,196.25,352.2583,192.4173,345.7874,186.8416,0.4088 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 16).tif,PathCellObject,,108.05,247.25,24.75,305.2719,414.3107,208.7379,92,347.5571,197.0842,321.6113,192.5547,0.2667 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 16).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,122.67,250.59,24.75,202.2359,474.0472,406.3396,67.5,515.5919,390.3015,542.1205,380.0602,0.3797 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 16).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,112.07,256.26,33.25,286.5515,451.4485,254.0294,104.75,490.601,269.7625,509.2842,277.2702,0.3146 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 16).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,123.35,259.43,58,260.4786,1187.6025,1501.812,161,1299.676,1546.1271,1363.4841,1571.3577,0.3553 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 17).tif,PathCellObject,,106.86,84.97,41,228.515,254.3054,179.5569,118.25,227.6289,172.4843,213.2581,168.6742,0.3409 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 17).tif,PathCellObject,,139.04,85.45,31.5,301.0472,288.5669,181.063,103.25,225.3923,171.4455,197.3392,167.1748,0.2961 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 17).tif,PathCellObject,,131.31,91.85,29.25,177.2101,298.0672,174.8571,94,213.8,171.3632,175.3793,169.7701,0.302 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 17).tif,PathCellObject,,112.84,93.39,57,228.5238,289.1169,352.0693,116.75,303.2532,269.3511,316.9163,189.4017,0.4847 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 17).tif,PathCellObject,,122.13,91.77,20.5,219.1765,250.8588,176.9647,68,195.792,170.6533,171.0265,167.8148,0.2995 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 17).tif,cCASP3,cCASP3,122.13,103.94,92.5,207.8445,333.4584,378.7024,165,327.7375,338.5912,320.3793,287,0.5503 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 17).tif,cCASP3,cCASP3,110.76,103.95,24.75,348.2255,287.6471,674.5196,76.75,276.9359,454.7949,271.7333,348.0714,0.3138 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 17).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,132.63,106.79,31.25,160.7402,409.7008,241.8976,92.5,353.379,262.9274,324.1837,273.8286,0.3342 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 17).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,102.63,110.67,45,190.6757,545.2649,443.3351,130.75,693.6622,279.1183,774.646,189.5015,0.3411 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 17).tif,PathCellObject,,121.2,115.39,33.75,324.8235,337.3603,192.8971,103,290.9734,197.1667,268.2806,199.2554,0.3186 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 17).tif,PathCellObject,,213.13,118.12,129,199.2162,376.8378,195.9016,273.75,310.592,182.6994,251.4276,170.9086,0.4708 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 17).tif,PathCellObject,,136.78,117.07,34.25,259.9149,377.7021,185.6879,119.75,246.7842,171.7282,192.651,165.956,0.2836 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 17).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,88.73,119.97,42.75,147.52,976.3714,176.5314,139.75,638.9251,169.6595,485.9378,166.544,0.3024 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 17).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,135.55,134.75,31.25,158.784,378.76,174.576,114.25,378.5721,167.3493,378.5015,164.6366,0.2716 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 17).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,91.2,144.3,135.5,185.1,1146.5814,270.1796,287,1218.8049,218.838,1282.9507,173.2385,0.4703 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 17).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,143.5,147.29,42,257.4477,608.343,195.8779,130.75,933.0875,182.1768,1090.8729,175.5198,0.3148 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 17).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,139.71,154.94,24.25,301.9307,394.2574,259.1287,68,388.3455,213.5091,384.9138,187.0287,0.3466 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 17).tif,PathCellObject,,232.65,160.82,85.75,421.2133,360.0375,402.1585,187.75,315.6724,281.1353,277.8477,177.9533,0.4536 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 17).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,150.2,162.02,50.25,178.6507,740.8852,199.799,150.5,1567.4415,192.3262,2001.4874,188.402,0.3405 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 17).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,137.59,162.03,40.5,234.1098,328.7439,261.0854,98.5,359.272,233.7053,380.7596,214.4335,0.4077 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 17).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,187.78,163.85,43.5,272.48,1319.4686,245.1771,133.5,1168.5762,209.6152,1095.8319,192.4711,0.3208 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 17).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,127.52,165.39,15.25,176.9516,652.9839,234.7097,73.5,507.6364,210.5724,469.2894,204.2043,0.2013 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 17).tif,PathCellObject,,228.46,172.6,62.75,340.3571,364.7976,261.7103,154.25,335.0355,214.3823,314.6549,181.9728,0.4049 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 17).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,133.77,173.38,77,266.9742,471.3484,387.4226,164.75,576.1876,310.3071,668.7806,242.1994,0.4654 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 17).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,245.98,176.24,96,477.0363,760.3601,381.6477,218.75,1068.3379,313.4098,1310.949,259.6551,0.4387 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 17).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,163.71,173.84,51,231.5507,2362.9758,200.6184,128.75,2615.1648,192.562,2784.1067,187.1651,0.3998 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 17).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,188.39,173.99,32.75,233.237,986.5555,200.2,104,1202.8921,199.6019,1306.4574,199.3156,0.3181 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 17).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,153.82,178.51,84.75,239.25,1114.0494,214.9767,171.5,1933.3319,204.7336,2755.0029,194.4606,0.4961 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 17).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,199.16,179.66,104.75,315.0237,678.0945,211.5957,214.75,1311.1903,201.4559,1921.2118,191.6857,0.4859 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 17).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,142.13,183.66,86,237.5447,973.9827,320.2622,184,1300.3297,271.2338,1588.4784,227.944,0.4645 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 17).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,256.47,181.04,12.75,197.5273,1511.9454,195.3091,74.5,1248.4463,201.6644,1188.8066,203.1029,0.1703 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 17).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,172.62,181.02,26.75,188.2477,470.2569,203.8349,79.75,1022.0372,200.1115,1303.0841,198.215,0.3267 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 17).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,185.43,185.76,74.75,306.5695,485.7616,211.4338,163,830.6697,203.7661,1126.5852,197.1875,0.457 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 17).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,173.12,192.36,97.5,191.0485,878.9745,240.3827,217.75,1315.0905,227.0435,1670.5115,216.1726,0.4467 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 17).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,141.08,197.4,47.5,237.4513,641.2359,1496.877,121.75,1187.6353,767.3299,1551.2799,281.7952,0.3943 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 17).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,166.33,202.89,68.5,194.5957,1040.5487,193.7942,179.25,1742.6002,198.2535,2183.5715,201.0544,0.3786 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 17).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,150.42,205.14,90.25,281.3113,499.4959,484.1928,177.25,992.1055,365.8242,1505.9482,242.3535,0.5076 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 17).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,140.92,213.81,108.75,308.8653,884.3379,208.8128,201.5,1559.9174,211.1652,2353.2251,213.9276,0.5365 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 17).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,166.12,219.42,106.25,348.8145,866.0375,246.7488,222.25,1211.1337,219.627,1527.9677,194.7263,0.4706 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 17).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,154.67,217.39,13,200.7321,2457.6785,399.8929,66,2967.5112,275.8947,3103.4666,242.8286,0.1962 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 17).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,140.42,224.7,26.25,253.6981,886.6887,256.3773,65.25,881.2053,277.692,877.5032,292.0828,0.3974 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 17).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,148.77,224.38,17,247.2361,1174.9861,239.9306,44.25,1719,226.4333,2081.676,217.4352,0.3714 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 17).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,145.55,234.56,93.5,225.792,559.2107,649.656,188.75,596.303,551.8234,632.5261,456.2838,0.4885 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 17).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,214.57,239.77,116.75,233.5139,2288.2708,253.7868,257.75,3764.0154,213.6644,4989.0142,180.3593,0.454 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 17).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,122.46,253.8,22.25,178.1222,732.7111,225.1555,84.5,416.8201,187.5693,302.6426,173.9839,0.2492 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 17).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,132.82,261.11,113.25,251.0859,473.8392,217.6211,232.5,534.2546,205.0795,591.7568,193.1426,0.4837 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 17).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,180.58,259.82,55.5,142.7175,812.7264,184.0762,155,558.3884,177.1124,416.595,173.23,0.3554 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 17).tif,PathCellObject,,190.27,271.22,32.5,341.4539,387.7077,191.3846,96.75,295.8123,179.4833,249.6873,173.5097,0.3259 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 17).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,179.9,272.49,39.5,307.5062,813.3765,210.5926,112.75,1001.4203,192.6349,1106.4656,182.6035,0.3457 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 17).tif,PathCellObject,,176.19,284.75,39.75,171.0366,280.4268,251.8537,134,187.9123,201.8582,147.1263,179.8172,0.2941 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 18).tif,PathCellObject,,131.89,57.64,35.75,221.863,282.1164,176.8425,123.25,257.4628,188.493,247.208,193.339,0.2882 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 18).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,135.81,71.95,30.25,229.8468,569.5081,204.3952,110.25,457.3824,196.3213,413.6604,193.173,0.2671 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 18).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,200.41,107.67,30.75,185.2857,429.7302,184.746,94.25,372.8979,174.8037,344.9258,169.9102,0.3242 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 18).tif,PathCellObject,,225.96,113.32,104.25,260.6873,340.9594,202.3986,235,257.2633,181.5361,190.2103,164.8222,0.4409 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 18).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,149.59,115.18,88,214.6591,2733.9971,188.9886,189.5,5864.0249,181.4039,8564.4414,174.8603,0.4591 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 18).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,195.22,112.54,21.75,212.1319,6169.3848,189.7363,53.5,4536.8755,181.5945,3357.8413,175.7143,0.4015 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 18).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,204.06,115.72,10.5,196.7708,3441.6458,175.1042,42.75,2850.6287,174.8114,2627.252,174.7008,0.2462 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 18).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,158.73,119.96,27.5,167.2478,8270.9385,178.4956,94,6389.0933,170.36,5577.458,166.8512,0.2885 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 18).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,194.6,123.13,139.5,222.8938,1204.4513,195.9451,235,2947.8293,198.8865,5553.6719,203.2831,0.5973 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 18).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,206.23,129.87,9.5,173.7381,4404.0952,254.7619,51.75,2305.5188,202.0981,1793.0756,189.2384,0.1812 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 18).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,195.14,133.72,25.5,190.8519,2459.3982,216.1944,83.75,2102.7092,200.4896,1934.4891,193.083,0.3149 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 18).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,202.54,144.12,73.75,359.4074,640.468,211.9764,184,929.6038,196.616,1124.7705,186.2477,0.397 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 18).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,145.63,149.13,53,242.0186,705.8046,206.4512,129.75,1086.3486,196.5651,1352.8534,189.6417,0.401 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 18).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,139.82,155.97,29.5,182.96,1476.3361,235.552,98.5,1497.9899,217.1756,1508.0896,208.6045,0.313 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 18).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,107.66,166.15,47.75,190.7411,1084.7716,204.1878,140.25,553.8138,188.422,268.8038,179.9591,0.3422 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 18).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,146.08,166.31,54.75,226.8493,1204.6393,209.9772,153,1270.8809,191.8842,1307.7006,181.8274,0.353 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 18).tif,PathCellObject,,120.33,167.82,57.25,156.5256,413.1709,195.9103,146.75,338.2475,186.4864,289,180.2921,0.3883 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 18).tif,PathCellObject,,115.61,178.84,55.75,237.4152,420.4375,211.3438,145,332.9658,195.036,278.5389,184.8889,0.3774 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 18).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,219.05,182.53,84.75,259.5191,564.2229,184.8622,206.75,566.0072,177.9386,567.249,173.1204,0.4103 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 18).tif,cCASP3,cCASP3,101.73,181.07,31.25,273.4609,261.5,321.2266,111.5,203.6489,380.2245,180.6522,403.677,0.2749 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 18).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,136.31,203.46,84.75,199.907,388.4622,192.0669,211.75,359.9319,183.7885,340.574,178.1716,0.4017 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 18).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,225.4,205.77,127,279.8574,374.709,191.2285,288.25,359.9826,180.6056,348.1831,172.0939,0.4405 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 18).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,200.75,211.04,94.5,324.9843,383.126,257.2283,189.5,514.5217,228.9527,646.2632,200.6026,0.4989 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 18).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,208.85,217.33,56.25,275.9115,408.6018,276.2876,121.5,475.5691,233.7602,532.4662,197.6278,0.4509 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 18).tif,PathCellObject,,232.03,223.38,31.25,495.9206,340.6111,190.9762,111.5,259.8587,179.0964,228.0625,174.4187,0.2691 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 18).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,212.98,227.75,36.5,259.396,469.7181,217.9463,108.5,371.6055,192.0252,320.669,178.5679,0.3301 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 18).tif,PathCellObject,,202.19,228.28,28.25,534.1282,291.9316,255.3675,97.25,300.759,222.241,304.5421,208.044,0.289 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 18).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,123.49,229.12,33.5,201.295,3362.3093,434,98.5,2728.9724,288.4146,2389.0732,210.2819,0.3437 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 18).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,115.53,236.54,92,219.2392,581.0968,226.6774,214.5,1397.7479,222.4516,2024.1278,219.2103,0.4305 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 19).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,222.96,42.1,50.5,163.2961,729.3932,182.2864,155.5,746.329,164.7548,754.756,156.0314,0.3267 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 19).tif,PathCellObject,,203.07,43.85,47.75,194.6769,284.8923,164.2769,144.25,195.5276,156.9103,150.2649,153.1792,0.3288 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 19).tif,PathCellObject,,130.89,126.46,30.5,278.8651,245.1508,174.9841,99,185.2607,168.1253,157.619,164.9597,0.2986 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 19).tif,PathCellObject,,125.63,133.78,28.75,208.3814,224.7881,172.0424,96.25,166.7364,166.1008,141.2714,163.4944,0.2919 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 19).tif,PathCellObject,,138.73,150.2,115.75,175.0966,270.2554,198.6137,255.25,210.8728,180.7749,161.1025,165.8237,0.4552 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 19).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,106.03,152.02,29.5,150.0164,1375.9426,190.7541,97,934.0878,181.8553,730.6679,177.7585,0.3034 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 19).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,95.28,153.96,109.25,179.6324,511.7101,204.3128,216.25,717.3291,189.7767,926.2877,175.0046,0.4996 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 19).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,169.77,155.99,80.5,213.0923,455.5692,422.6523,191.25,423.8669,283.2572,400.5034,180.5284,0.4235 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 19).tif,PathCellObject,,159.15,155.51,12.25,152.5536,291.0536,170.1071,54.5,255.1629,167.9638,242.9818,167.2364,0.2382 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 19).tif,PathCellObject,,153.49,161.18,38.25,171.0129,324.3032,173.5419,110.75,267.9482,169.6396,237.7232,167.5467,0.3389 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 19).tif,PathCellObject,,204.95,165.91,112,250.8311,283.0378,180.4311,249.5,261.9619,173.9519,244.6551,168.6314,0.446 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 19).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,196.46,178.86,63.5,165.1556,541.1907,178.3969,172.5,523.0883,172.4038,512.3687,168.8548,0.3682 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 19).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,207.66,182.03,62.75,207.7422,319.1602,177.8281,153.75,357.0984,173.3694,383.7802,170.2335,0.4125 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 19).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,244.49,183.41,36.75,234,524.7651,171.0604,121,416.2094,166.5914,368.355,164.6213,0.2945 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 19).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,115.95,185.32,36.75,183.3446,653.223,202.777,104.5,658.1556,194.9599,660.8007,190.7681,0.3465 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 19).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,219.52,189.83,130.75,223.8528,545.8528,222.1912,272.25,702.489,197.3991,846.97,174.5309,0.4755 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 19).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,133.87,190.25,93,262.0931,333.1357,220.8085,200.75,425.0621,199.641,505.6317,181.0886,0.4623 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 19).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,123.56,187.92,18.25,183.054,328.527,337.527,50,369.9356,282.0099,393.875,249.9141,0.3574 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 19).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,258.65,198.46,184.25,265.6473,567.8135,195.1419,344.5,698.6087,188.1913,849.8406,180.1547,0.5347 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 19).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,119.9,199.21,101.75,210.3187,695.8613,352.9489,204.25,1103.4034,277.6332,1514.9508,201.5774,0.4962 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 19).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,134.41,205,79.75,187.913,745.7422,258.5869,186,1078.8463,217.3021,1330.6292,186.0962,0.4234 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 19).tif,PathCellObject,,199.75,209.48,124.25,152.8825,417.747,299.735,276.25,313.1103,244.3553,226.144,198.3278,0.4529 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 19).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,220.77,215.78,76.5,146.8328,1041.8007,173.9614,207.75,739.881,168.3678,559.6564,165.0288,0.3715 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 19).tif,PathCellObject,,211.94,231.06,83,222.5774,301.0565,191.5238,192.25,247.6151,178.8518,206.1455,169.0185,0.4355 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 19).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,187.03,236.02,72.5,227.3724,724.8242,194.9862,190.75,510.3858,182.5381,378.6335,174.8898,0.3783 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 19).tif,PathCellObject,,214.77,240.47,38.25,165.6774,414.8387,181.4,111.75,345.5759,180.5402,308.9352,180.0853,0.3364 -B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_EpCAM_Ecad_cCasp3_(series 19).tif,PathCellObject,,200.3,244.54,90.5,211.5302,364.2088,244.7335,228,324.8333,205.9967,298.6788,180.2664,0.3994 \ No newline at end of file +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 01).tif,PathCellObject,,101.71,76.58,50,167.8878,225.5366,219.6341,147,182.9949,183.9286,160.2245,164.8172,0.3398 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 01).tif,PathCellObject,,115.1,77.8,32,242.782,201.4286,169.8872,117.75,164.9683,163.3087,150.7059,160.7353,0.2756 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 01).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,146.28,87.38,82.25,201.5849,837.4303,213.2485,198.75,1470.8129,189.2802,1919.3455,172.3069,0.4131 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 01).tif,PathCellObject,,87.46,87.91,30.25,241.6111,246.0714,178.6349,105.25,187.5765,169.9223,162.9264,166.2508,0.2813 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 01).tif,PathCellObject,,104.02,88.78,34.5,256.4225,287.2606,187.5845,113.25,207.2259,177.3399,171.0318,172.707,0.3 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 01).tif,PathCellObject,,94.47,95.29,25,290.2039,266.7573,179.2719,90,189.2617,169.7713,158.5615,166.0077,0.2719 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 01).tif,PathCellObject,,109.31,105.96,126.75,166.8148,302.6452,233.3177,276.75,247.4523,232.7396,200.0251,232.2429,0.4595 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 01).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,159.73,146.32,69,226.6821,462.025,279.5679,173.25,445.1036,236.9583,433.6867,208.2096,0.4019 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 01).tif,PathCellObject,,111.92,147,29.75,318.3171,274.2764,188.7805,109.5,185.8685,176.6825,151.673,172.0031,0.2642 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 01).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,147.94,151.27,24.75,443.01,503.77,208.9,94.25,431.6553,203.6921,405.9,201.8321,0.2449 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 01).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,171.02,157.72,84.25,289.8118,436.4706,246.95,206,407.4626,213.5242,387.252,190.2357,0.4094 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 01).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,157.28,156.65,11,160.9583,577.8542,245.2917,62.25,635.1075,241.5857,648.6453,240.7094,0.1718 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 01).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,195.67,157.07,16,178.4848,2574.4092,187.0455,74.25,2148.7625,177.5284,2028.1931,174.8326,0.2112 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 01).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,204.1,163.76,86.5,356.043,723.4097,303.7908,193,1353.8955,235.3974,1870.4202,179.3662,0.4446 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 01).tif,cCASP3,cCASP3,149.3,163,37.5,150.6513,228.7697,1715.296,123,178.4413,706.9717,156.0731,258.8275,0.3021 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 01).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,166.75,179.21,71.75,317.0586,510.7379,202.3379,179.75,396.7327,181.9571,320.2014,168.2755,0.396 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 01).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,185.5,183.85,55.25,310.0714,1557.5759,206.9866,155.75,775.168,191.0544,338.1122,182.1546,0.3515 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 01).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,196.54,198.06,28.75,374.3932,855.8975,16175.6924,99.75,584.62,9758.5996,472.4664,7105.5972,0.2872 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 01).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,189.5,198.25,16.5,286.1029,917.3823,17508.1328,66.25,646.0037,10381.4775,553.735,7958.415,0.2436 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 02).tif,PathCellObject,,219.84,103.02,51.5,299.9095,288.7619,192.8048,126.75,276.4,181.8255,267.7467,174.14,0.4017 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 02).tif,PathCellObject,,234.15,103.9,33,480.9173,260.0226,179.3759,115.25,208.2928,169.6833,187.3171,165.7531,0.2804 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 02).tif,PathCellObject,,211.57,111.35,69.75,254.265,257.2085,314.8975,153.25,245.7488,248.5478,236.0389,192.3293,0.4532 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 02).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,194.77,115.85,161,386.2438,337.5047,261.1553,312.25,416.0929,226.1257,499.7471,188.838,0.5136 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 02).tif,PathCellObject,,224.38,112.68,35.25,197.3056,312.9236,187.4653,98.25,253.1136,177.1061,218.9365,171.1865,0.3548 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 02).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,145.42,124.42,99.5,257.5661,480.8254,207.1995,221.25,901.4684,195.6667,1247.8296,186.1704,0.4492 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 02).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,154.94,122.38,23,178.8775,835.9796,280.2857,79.75,911.7781,206.3906,945.2387,173.7703,0.2964 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 02).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,174.58,129.76,107.25,212.3481,546.0911,183.6986,237.75,502.6034,174.51,467.1505,167.019,0.4457 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 02).tif,PathCellObject,,218.6,135.07,14.5,171.9531,316.9844,204.7031,63.75,295.5405,243.7799,288.5026,256.6051,0.2355 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 02).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,106.31,137.35,22.5,143.5612,1960.4897,188.2347,85.25,2020.5479,177.6319,2044.3765,173.4251,0.277 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 02).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,209.39,138.01,33,190.3556,588.6296,5722.4888,105.25,583.407,2949.0752,580.9759,1658.0034,0.3104 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 02).tif,PathCellObject,,36.21,144.61,90.5,157.4218,295.2821,221.014,228,233.3319,192.5747,193.154,174.1304,0.3895 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 02).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,115.77,142.44,56.25,193.8652,2063.0913,268.1348,134.75,1647.0315,215.4685,1338.3419,176.3936,0.4196 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 02).tif,PathCellObject,,221.36,145.36,69,261.1828,294.1147,242.0323,165.75,287.8722,292.409,283.3601,328.8213,0.4143 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 02).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,200.68,146.31,81,325.4329,435.5701,317.5762,188.5,477.1308,501.9577,508.9068,642.9301,0.4318 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 02).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,107.53,148.21,25.75,153.215,2620.0188,206.1589,86.5,3343.6182,348.2422,3660.9343,410.5492,0.2898 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 02).tif,PathCellObject,,130.49,150.36,73.5,146.1313,439.1145,190.7778,200.25,328.3848,179.0834,263.3913,172.2194,0.3662 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 02).tif,PathCellObject,,20.17,152.31,35.75,176.5734,213.021,177.3636,120.5,175.7614,169.9274,160.0443,166.7906,0.2909 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 02).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,87.41,150.69,14.5,177.629,855.0323,185.4194,69.25,1268.5714,179.9678,1386.1835,178.4174,0.1999 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 02).tif,PathCellObject,,189.42,154.63,75,217.6391,391.1159,183.7848,194.25,314.4543,178.0824,265.7137,174.4568,0.3876 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 02).tif,PathCellObject,,228.94,154.94,24.5,641.7549,221.402,183.2157,82.25,171.7319,171.1265,149.7043,165.7652,0.2951 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 02).tif,PathCellObject,,31.55,156.23,10,146.4286,188.3571,384.2381,57.25,162.2112,230.4569,156.4316,196.4632,0.1653 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 02).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,88.24,160.82,74,228.3591,673.9161,233.8188,179,899.6425,206.2277,1060.567,186.5574,0.4077 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 02).tif,PathCellObject,,223.29,160.28,21.75,569.125,256.6932,177.1818,73,207.8503,172.0646,186.9854,169.8786,0.2796 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 02).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,30.33,166.03,54.5,228.5636,448.65,272.5364,148.25,411.7538,215.4587,389.9919,181.7936,0.3643 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 02).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,113.28,164.41,32.5,184.3383,639.6241,211.1278,102.25,606.8878,217.1512,591.1697,220.0433,0.3229 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 02).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,144.78,165.91,59,259.2827,648.6034,242.654,141.75,950.5272,205.9139,1166.0573,179.6868,0.411 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 02).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,129.06,167.79,34,172.2662,357.554,199.9353,111.25,467.1278,191.3117,516.7394,187.4072,0.3034 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 02).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,81.9,174.49,93.75,163.992,1763.8396,255.9037,219,1650.8397,256.3136,1567.3182,256.6166,0.4256 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 02).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,114.21,175.48,79.25,251.2523,394.0156,217.5421,168.75,489.757,204.6583,575.6033,193.1061,0.465 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 02).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,149.07,176.19,94.75,295.8447,668.5369,218.6105,188.5,1140.6058,203.2341,1617.6968,187.6942,0.4964 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 02).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,129.82,181.98,201.5,218.6543,348.3507,296.8253,340.75,457.5894,256.4377,615.8582,197.9228,0.5911 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 02).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,37.86,185.52,68.5,143.363,373.427,384.0107,182.75,448.7135,256.1446,495.5177,176.6526,0.3783 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 02).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,159.29,188.44,124.5,249.848,1000.47,227.352,231.5,1213.1744,208.5318,1461.0815,186.5967,0.5387 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 02).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,145.58,189.05,39.75,170.0759,1365.7216,196.1899,139.5,1935.7589,199.4286,2159.8035,200.7015,0.278 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 02).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,108.77,190.88,48.25,237.9794,500.6186,266.9485,142.75,642.465,213.1766,715.2645,185.5794,0.3303 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 02).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,168.84,196.21,61.5,237.688,771.04,245.576,131.25,1383.4622,223.2557,1934.2014,203.1835,0.4649 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 02).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,127.74,198,101.5,262.8346,428.4691,287.5086,195.5,615.6624,249.0917,815.1711,208.1474,0.5143 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 02).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,115.46,202.47,43.75,210.6035,379.431,246.9023,119,438.2227,208.605,472.096,186.5397,0.3598 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 02).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,141.84,206.46,82,294.003,478.1454,205.1121,182.5,881.9644,233.0603,1215.115,256.1175,0.4466 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 02).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,169.46,206.52,36.75,298.2467,598.9133,245.3467,90.5,602.6676,214.5962,605.2991,193.0421,0.3956 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 02).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,187.83,208.82,87.25,348.5382,746.9037,368.2521,204.25,1178.4437,272.2347,1506.043,199.3441,0.4271 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 02).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,105.77,209.99,66.25,195.0824,731.0487,199.7378,159,858.9199,192.9356,951.1946,188.027,0.4136 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 02).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,158.68,209.55,75.25,293.6918,621.4197,227.9082,171.25,1129.4586,218.8302,1532.9791,211.6198,0.4376 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 02).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,129.22,211.15,68.5,256.1533,332.2336,242.9489,146.5,483.2619,225.0153,615.051,209.3662,0.4616 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 02).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,95.08,211.79,42.75,287.0575,1311.7931,215.1897,119.75,1150.501,202.1636,1059.6764,194.8285,0.3518 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 02).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,168.51,218.09,31,180.992,336.272,208.256,100.5,353.7649,191.4282,361.6021,183.8889,0.2999 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 02).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,118.27,220.46,88.5,354.7352,476.6451,244.9211,202.25,900.7571,219.2651,1230.932,199.2917,0.4336 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 02).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,144.92,219.79,54,225.4977,684.8995,270.8448,135.5,775.0512,232.7002,835.2439,207.2317,0.396 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 02).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,196.66,220.41,90,257.8705,923.1378,213.0606,184.25,955.8043,196.7436,987.1746,181.0741,0.4822 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 02).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,135.01,220.63,19.25,230.6364,750.0649,216.7792,65.25,768.6502,210.3916,776.3441,207.7473,0.2797 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 02).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,226.97,224.99,115.75,213.4392,697.3752,206.6525,253.5,680.5368,190.3386,666.1782,176.4273,0.4553 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 02).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,244.31,223.71,62.75,278.1429,1004.5992,186.6825,168,934.4407,178.184,892.545,173.109,0.3745 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 02).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,182.96,224.63,60.75,222.151,1419.4122,200.4,133.5,1349.5671,189.8769,1290.7629,181.0172,0.4502 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 02).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,195.25,231.55,59.75,197.7119,625.4115,222.7819,140,807.2014,207.8663,946.1163,196.4686,0.4271 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 02).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,136.15,230.51,53.25,194.5047,719.1589,292.6869,129.5,782.5268,241.9483,826.5552,206.6948,0.4023 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 02).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,177.82,234.06,26,164.5138,1329.7615,186.422,95,1605.8875,181.9712,1716.1355,180.1941,0.2722 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 02).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,137.58,239.2,19,211.6538,1434.8846,234.8462,64.75,1422.0496,206.6794,1416.6086,194.7391,0.2834 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 02).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,188.47,240.27,50.5,221.5735,1654.0441,194.1912,124,1789.4377,186.0442,1883.3844,180.3912,0.3971 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 02).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,199.4,244.55,35.25,227.7622,300.993,208.1259,115.75,400.4387,193.3247,444.6025,186.7516,0.3067 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 02).tif,PathCellObject,,242.05,248.5,41.5,385.5629,300.1258,210.8443,133.25,270.4503,188.4934,256.9099,178.2951,0.304 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 02).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,244.96,273.37,129.5,260.1843,392.8253,255.5221,274.25,630.1732,223.9371,844.8577,195.3681,0.4715 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 03).tif,PathCellObject,,124.02,80.94,32.25,216.5185,256.9704,180.8074,117,197.2153,168.2068,173.0629,163.1138,0.2804 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 03).tif,PathCellObject,,141.05,82.52,23.75,167.6526,227.0316,182.1684,86.75,229.8934,195.2507,230.9722,200.1825,0.2707 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 03).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,135.89,91.41,32.75,149.1579,388.0301,197.7519,97.75,363.0404,196.6439,350.403,196.0836,0.3313 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 03).tif,PathCellObject,,163.71,91.99,25.75,245.4623,173.3962,161.9811,102.25,142.6019,158.7136,131.9346,157.5817,0.2446 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 03).tif,PathCellObject,,141.67,99.22,71.75,181.3,269.2793,216.6345,165.5,275.8928,197.0121,281.0484,181.7151,0.4342 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 03).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,190.28,112.71,86.5,197.4062,691.321,241.2102,205.75,659.6155,208.3978,636.12,184.0821,0.4188 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 03).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,165.33,114.83,51.25,251.0825,463.1845,186.5631,144.75,476.9758,179.4093,484.5925,175.4585,0.3522 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 03).tif,PathCellObject,,149.67,123.33,30.25,369.6585,262.0488,178.3659,104,222.2356,173.262,205.5222,171.1195,0.2901 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 03).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,172.84,123.28,30.25,190.4194,457.0242,191.5081,88.75,443.3955,185.1922,436.2043,181.8596,0.3359 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 03).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,193.15,127.91,76.25,311.8,345.9803,243.2262,179,456.7892,206.4993,538.0312,179.5721,0.4197 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 03).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,168.41,131.32,41,254.2381,461.6131,213.3036,111.75,395.5469,187.3549,355.9071,171.7857,0.3594 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 03).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,213.72,135.36,136,282.1462,435.6472,297.1389,280,841.7191,255.059,1230.7233,214.7478,0.484 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 03).tif,PathCellObject,,151.75,133.56,34,148.3358,259.7372,172.3723,114.75,211.8568,168.7072,191.6111,167.1574,0.2927 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 03).tif,PathCellObject,,241.52,134.29,17,165.3571,298.8286,182.2,69.75,197.5159,168.0459,164.2207,163.3944,0.2349 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 03).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,200.72,136,11.25,173.9375,1115.875,230.1875,63.5,1110.875,285.043,1109.7212,297.7019,0.1754 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 03).tif,PathCellObject,,232.53,141.05,69.5,293.6844,265.1702,403.3085,168.25,247.8351,278.4993,235.3325,188.4834,0.4148 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 03).tif,PathCellObject,,243.75,142.5,16.5,175.7042,306.6197,202.5775,52.5,249.3628,186.9674,221.1319,179.2708,0.3243 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 03).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,193.32,146.05,118,333.2764,398.2489,369.0865,253.75,491.0334,338.4307,572.0276,311.6703,0.4613 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 03).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,248.1,148.66,20.75,174.0795,337.4773,182.7614,65.75,407.0113,178.5526,441.3876,176.4719,0.3192 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 03).tif,PathCellObject,,240.91,154.56,42.75,227.2629,334.0343,198.5886,112,294.24,182.0533,268.9164,171.5309,0.3816 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 03).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,254.11,160.35,67.25,217.8736,1448.3048,186.4387,180.25,1736.2697,181.2324,1906.8921,178.1476,0.3681 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 03).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,161.93,169.37,105.75,189.8019,739.7902,222.028,283,956.1979,211.1254,1088.2589,204.4723,0.38 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 03).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,85.76,169.06,44.75,151.5706,725.7772,214.8587,153,725.4078,211.6672,725.2494,210.2984,0.2963 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 03).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,104.85,169.9,35,177.9448,1119.4069,7447.814,125.25,1280.9303,6058.1733,1346.535,5493.7534,0.2832 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 03).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,149.05,170.17,24,222.5714,1127.8163,321.4184,95,1070.4922,233.7382,1050.7113,203.4824,0.2506 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 03).tif,PathCellObject,,244.92,171.47,29.25,531.1074,326.405,185.2975,109,214.5649,170.4351,172.0094,164.7799,0.2642 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 03).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,138.22,176.43,66,308.8144,600.1212,198.6818,167.5,992.7448,195.4314,1248.0468,193.3177,0.3838 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 03).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,69.81,178.37,82.75,189.7319,1358.241,209.5121,198.75,1737.3606,189.8907,2008.6272,175.8513,0.4165 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 03).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,151.42,183.91,98.5,229.2727,514.6692,324.8156,202.75,759.2813,260.4693,991.0192,199.5096,0.4765 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 03).tif,PathCellObject,,163.47,187.69,41,206.4793,403.0887,302.8343,115.75,336.1527,229.028,297.9358,186.8885,0.3504 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 03).tif,PathCellObject,,190.56,187.73,73,232.0912,306.5777,252.1858,168.75,339.5786,241.5579,365.4206,233.2354,0.4314 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 03).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,157.79,195.14,11.25,194.8542,466.5625,200.4792,48,503.9492,201.5634,515.9933,201.9128,0.2245 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 03).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,147.32,199.64,121,327.6412,369.5608,218.8887,247.5,550.1427,222.0452,721.8726,225.0471,0.4905 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 03).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,218.1,200.29,54.25,274.7169,608.8311,188.0502,162.5,1006.8015,191.3585,1209.0186,193.0394,0.3328 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 03).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,192.38,200.69,89,312.4917,350.9917,333.9778,169,397.909,269.3245,450.5265,196.8162,0.5252 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 03).tif,PathCellObject,,204.58,203.79,65.25,172.0639,327.015,199.4023,188.25,311.7586,186.4058,303.4426,179.3217,0.346 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 03).tif,PathCellObject,,229.72,201.11,43.75,382.7841,341.7614,194.9773,132.5,325.6654,180.9549,317.7079,174.0225,0.3212 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 03).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,181.46,209.98,222.75,245.6794,438.4271,286.8061,370.25,700.8839,283.2955,1097.6831,277.9881,0.5993 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 03).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,162.14,206.14,56.75,200.7424,645.2664,249.3144,148.75,678.4773,222.8084,699.2568,206.224,0.3797 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 03).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,37.4,225.03,78.75,158.1153,429.3832,218.4424,215,443.8269,193.6945,452.413,178.9833,0.3687 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 03).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,82.11,222.05,120.5,197.9528,383.9199,292.7454,245.75,515.2305,251.0091,643.6406,210.1948,0.4915 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 03).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,165.26,222.35,74.25,253.4267,682.7733,239.8067,185.25,786.1488,227.3324,855.6838,218.9417,0.3939 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 03).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,101.14,222.51,84.5,183.0202,768.9219,220.7832,206.5,786.4294,208.3788,798.971,199.4928,0.4124 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 03).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,186.46,225.09,39,272.1863,700.5342,224.2298,109.25,1093.4966,215.5652,1322.7246,210.5109,0.3539 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 03).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,73.31,233.39,95.5,187.356,444.3796,219.8743,188.25,640.7706,203.6353,842.4409,186.9597,0.5009 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 03).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,58.83,236.36,108.75,199.1871,758.7875,214.2633,226,951.2318,197.6744,1127.4017,182.4884,0.4753 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 03).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,92.04,237.58,68.25,163.7692,538.8938,270.2381,177.5,668.5662,238.0437,749.5743,217.9314,0.3758 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 03).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,180.94,246.49,48.25,178,1230.5358,275.7908,144.5,1365.5758,214.1414,1434.5026,182.6745,0.3297 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 03).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,69.95,245.46,30.25,198.9134,1005.8661,202.1654,98.75,1388.3041,197.1482,1567.5277,194.797,0.3075 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 03).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,96.55,248.24,69.5,206.5907,732.1744,254.1851,131.5,1039.0645,237.2519,1388.1984,217.9879,0.5213 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 03).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,106.8,247.79,41.75,165.1637,409.6842,286.4269,109.75,380.2602,306.9887,361.6937,319.9631,0.3821 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 03).tif,PathCellObject,,143.29,247.87,31.5,336.4574,252.8217,189.845,115,191.4729,176.8069,167.6355,171.741,0.2707 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 03).tif,PathCellObject,,242.56,249.14,59,309.3544,378.5696,191.7089,154.5,327.7,182.1371,296.2219,176.2141,0.3761 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 03).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,85.62,251.47,59.25,224.7437,937.1722,251.605,125.25,1206.4232,221.3209,1443.7629,194.6259,0.4601 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 03).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,77.07,253.65,50.5,217.5271,688.6453,254.5813,113.25,1755.2594,222.167,2614.4761,196.0556,0.4329 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 03).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,198.24,255.36,99.25,256.1194,753.4055,306.1393,225.5,2489.468,260.1383,3879.7012,223.3008,0.4409 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 03).tif,PathCellObject,,231.46,255.31,62.25,165.25,294.4286,206.1746,161.5,229.4145,189.3097,188.1461,178.6045,0.3864 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 03).tif,PathCellObject,,122.54,253.71,30.75,267.456,200.368,185.816,112.5,169.8093,175.8448,158.092,172.0215,0.269 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 03).tif,PathCellObject,,137.48,257.87,22.5,167.3696,168.4456,168.8587,93.5,141.1223,165.1277,132.2711,163.919,0.2301 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 03).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,101.46,262.81,87.5,210.2408,430.051,195.9037,203,374.9619,184.8561,332.687,176.3783,0.431 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 03).tif,PathCellObject,,113.18,269.61,29,187.7059,252.2269,178.3782,104,241.7727,175.2153,237.612,173.9565,0.2718 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 03).tif,PathCellObject,,104.83,279.66,30.5,270.8211,293.187,188.3008,110.25,226.1746,180.4172,200.2547,177.3679,0.273 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 04).tif,PathCellObject,,96.61,70.98,30.5,150.6694,214.1901,168.7107,111,160.6464,161.0968,140.5882,158.2446,0.2666 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 04).tif,PathCellObject,,117.11,82.3,39.25,162.0248,275.6584,201.2547,136.5,193.2149,174.6448,159.0052,163.6031,0.2855 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 04).tif,PathCellObject,,129.7,86.86,32.5,230.3037,249.7259,162.5556,113.75,202.6551,161.8503,183.1626,161.5583,0.2782 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 04).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,173.25,91.47,108.25,156.2023,3054.3171,290.7149,256.5,1968.9375,227.9287,1167.3413,181.5586,0.4201 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 04).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,109.08,92.6,38.75,260.5833,532.2564,277.109,125.5,366.5259,241.0518,291.8035,224.7948,0.2995 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 04).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,91.53,94.3,41.25,165.7823,1428.7646,422.9529,102,1290.5596,377.382,1193.0706,345.2365,0.3998 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 04).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,97.46,100.46,16,144.3333,1173.9697,920.1667,64,748.1556,632.8716,601.0157,533.5969,0.2503 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 04).tif,PathCellObject,,125.98,100.11,33.5,300.3309,232.8235,195.6912,115.75,193.9807,175.2532,177.9727,166.8303,0.2811 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 04).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,86.24,102.45,29.25,178.5294,2585.2688,189.4622,86.5,1569.8444,177.3372,1039.864,171.0088,0.3251 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 04).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,176.27,111.52,42.75,157.358,510.4716,169.7557,139.25,371.7429,164.2786,308.1588,161.7682,0.3124 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 04).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,202.22,115.73,37,262.0915,746.2941,316.4248,103.5,706.4928,292.0526,683.5132,277.9811,0.3544 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 04).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,129.19,118.83,43,176.7386,646.4205,203.358,153.75,653.1526,184.9756,655.8455,177.6227,0.2787 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 04).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,211.06,122.07,55,305.0493,687.0314,290.6233,132,840.8154,273.9699,952.1591,261.9123,0.4181 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 04).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,149.5,126.69,115,228.846,360.1475,195.2755,238.5,477.6046,190.2354,586.994,185.5414,0.4768 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 04).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,197,125.64,44,177.375,2120.1819,520.4489,122,1573.5111,486.3489,1269.9968,467.4164,0.3522 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 04).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,163.05,126.41,62,243.7182,713.2857,219.3968,163.75,655.172,189.7382,619.0123,171.284,0.3727 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 04).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,135.84,132.52,51.25,213.9317,1088.0439,281.9366,142.75,897.993,223.5727,791.5437,190.8825,0.356 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 04).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,204.5,132.23,27,171.8125,2241.0535,382.5536,95,1366.5013,349.8068,1005.0627,336.2731,0.2862 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 04).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,230.34,136.19,52.5,321.6432,2440.9155,283.6432,128,2005.3483,220.3055,1697.1229,175.485,0.4088 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 04).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,154.27,142.55,56,236.2812,288.3214,193.567,134.5,576.6876,197.6784,780.4543,200.5836,0.4121 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 04).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,145.94,143.82,39.25,241.205,436.4969,196.6025,103.25,699.1899,219.5312,865.0471,234.0078,0.3669 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 04).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,195.79,146.89,203.25,269.5331,390.364,237.0441,391.5,442.4498,214.5648,499.1949,190.0748,0.52 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 04).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,223.58,144.01,57,278.6298,3163.4084,231.1447,124.25,3364.1082,210.1343,3542.7615,191.4318,0.4637 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 04).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,232.4,149.93,51,186.6098,4942.5415,252.8098,154,4204.6719,239.1006,3836.635,232.2628,0.3303 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 04).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,175.8,150.9,84.75,230.3954,639.9651,244.1715,204,770.1755,213.292,865.276,190.7389,0.4155 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 04).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,139.7,151.03,53.75,274.3425,283.0548,218.2785,115.5,510.5527,212.6602,713.0813,207.6585,0.4663 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 04).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,128.76,151.07,34.5,196.5286,604.1857,326.0214,98.75,802.0806,254.2065,909.8832,215.0856,0.347 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 04).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,214.61,156.71,97.25,295.5026,419.7449,285.2679,219.75,766.5,250.2466,1045.041,222.1148,0.44 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 04).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,151.5,159.36,75.25,210.3256,716.2625,234.1661,169.25,967.5162,231.0618,1167.0607,228.5963,0.4357 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 04).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,124.16,159.96,51.25,215.4175,610.8398,244.0485,131,591.5706,222.7843,579.0881,209.0094,0.3857 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 04).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,139.47,160.09,42,300.9181,316.8947,229.1345,94.5,656.1027,228.621,933.6364,228.201,0.443 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 04).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,173.86,164.44,57,257.8565,483.8435,286.3696,132.5,622.6893,237.838,728.7841,200.7542,0.4275 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 04).tif,PathCellObject,,233.21,166.73,47,771.5596,347.9845,233.0881,144.75,281.9121,214.6069,248.9612,205.3902,0.329 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 04).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,205.33,170.86,123,396.6788,533.103,493.2606,257,1047.7466,340.799,1523.9121,199.7365,0.4799 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 04).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,157.86,169.13,51,353.5686,533.9706,208.7794,110,746.2793,210.8468,926.7416,212.6042,0.4525 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 04).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,166.97,173.55,63.25,299.016,367.248,320.072,124.5,464.48,266.786,561.712,213.5,0.4898 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 04).tif,PathCellObject,,251.27,171.58,35,475.4895,267.7552,185.3427,120,206.3085,175.6087,180.4647,171.5147,0.2813 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 04).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,157.41,180.18,41.5,264,579.9474,194.807,107.75,603.8848,192.0991,619.4487,190.3384,0.3808 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 04).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,40.7,191.13,72.5,152.9863,400.0788,219.8699,174,532.4261,203.9914,627.8469,192.5432,0.4116 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 04).tif,cCASP3,cCASP3,219.59,193.41,81.75,377.7217,327.0061,555.5352,184,345.2347,355.5454,359.7732,196.0415,0.4388 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 04).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,119.1,196.07,111.5,305.3653,759.4766,783.2094,238,830.3637,487.2809,893.3901,224.1683,0.4663 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 04).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,134.95,196.56,66.25,183.0223,525.7286,272.7732,173.75,614.3041,227.3802,669.9743,198.8505,0.3854 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 04).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,30.88,196.77,24.75,180.9135,207.75,175.2404,92.25,388.1644,172.8329,458.4382,171.8951,0.2651 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 04).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,150.49,203.16,143.75,294.0484,400.1384,249.3789,297,370.1287,219.2616,341.7398,190.7709,0.484 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 04).tif,cCASP3,cCASP3,228.26,199.39,11.75,176.8235,405.0588,220.8627,71.75,338.9097,349.882,324.6751,377.6456,0.165 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 04).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,212,207.44,123.75,296.3199,600.2756,322.5775,246.25,688.6481,264.3256,778.4662,205.1207,0.4982 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 04).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,42.82,207.01,79,237.5562,675.0812,195.025,192.5,862.5272,184.9417,995.2323,177.8031,0.4133 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 04).tif,PathCellObject,,234.86,208.96,23.25,500.2525,260.5959,170.8081,98.75,259.5718,169.869,259.2315,169.5571,0.2392 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 04).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,120.49,211.35,43.5,174.3068,602.517,201.5625,154,715.1213,193.1343,759.9593,189.7783,0.2819 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 04).tif,PathCellObject,,141.62,213.37,25.75,417.367,255.633,187.9817,98.5,256.3671,177.6658,256.6469,173.7343,0.2558 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 04).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,203.7,215.87,10,161.1667,1270.8096,193.1905,63.75,914.8832,184.7665,845.3535,183.1209,0.1514 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 04).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,111.7,219.67,101.25,261.1667,441.4731,219.5074,210.5,545.6123,221.0307,642.6187,222.4498,0.4782 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 04).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,224.81,218.97,75.5,166.3941,774.6417,192.5407,193.25,670.6813,182.0581,602.485,175.1816,0.3919 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 04).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,238,219.78,31,514.0547,384.875,210.3672,109.5,461.7198,192.5148,493.3473,185.1672,0.2842 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 04).tif,cCASP3,cCASP3,99.6,219.29,16.5,245.2985,264.6119,1890.6418,74,257.0671,766.1006,254.8788,439.9351,0.2077 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 04).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,198.08,226.93,24.25,175.8586,3140.3838,197.202,95.75,2426.2559,184.5711,2180.7744,180.2292,0.2526 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 04).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,120.98,228.01,20.75,333.4471,388.0941,1645.0236,86.25,362.3295,760.4971,353.9387,472.433,0.2355 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 04).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,205.29,234.29,83.5,300.5714,1780.2291,405.9435,191.75,1632.4141,286.7344,1517.4468,194.0162,0.4369 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 04).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,150.18,255.79,52.75,157.8411,471.6495,235.4486,153,506.329,195.8208,524.8825,174.62,0.3426 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 04).tif,PathCellObject,,202.27,257.78,53,435.4326,398.3628,183.8558,156.25,347.3541,177.7847,320.7354,174.6165,0.3386 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 05).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,172.55,72.05,32.75,241.0432,863.2518,593.2878,121,776.6503,379.4294,742.2571,294.4971,0.2723 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 05).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,193.19,74.81,36.5,258.0616,804.8425,285.1096,109.75,837.9231,207.1086,854.2399,168.6351,0.325 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 05).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,201.3,83.23,83.75,242.2456,624.3225,181.9408,192.75,937.7193,174.6352,1181.2322,168.9586,0.4345 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 05).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,144.75,83.12,26.25,149.5833,868.3796,431.8889,105.25,444.9387,252.4057,300.2184,191.0633,0.2428 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 05).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,130.26,114.4,41.5,472.9053,569.9467,879.5562,140.25,547.9609,741.0978,538.5063,681.5573,0.2918 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 05).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,118.31,117.14,72,345.7138,535.4069,197.7793,180,648.1013,201.0097,723.9281,203.1833,0.395 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 05).tif,PathCellObject,,107.63,120.91,26.5,356.7297,278.4685,193.8829,100.25,248.5636,175.3317,237.1172,168.231,0.2712 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 05).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,173.7,125.7,68,207.5018,678.8,240.5854,154,1895.9045,233.4741,2871.7173,227.7726,0.4363 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 05).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,185.42,124.64,19.25,343.6154,1342.8206,733.6411,77,1069.9323,391.6032,978.1854,276.6078,0.2342 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 05).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,124.16,130.91,30.75,372.6535,589.3858,190.2598,100,592.6468,200.6095,594.1527,205.3891,0.3034 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 05).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,115.7,133.08,42.5,182.2299,1461.5,202.3621,104.5,1382.9786,196.2038,1327.8871,191.8831,0.4063 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 05).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,179.83,133.19,17,174.4853,992.353,196.5882,66.5,1265.0854,203.9071,1357.3533,206.3831,0.2457 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 05).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,245.34,134.71,23.75,747.5859,282.0707,174.1414,98.75,523.7758,164.262,604.0739,160.9799,0.2395 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 05).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,110.63,139.75,43.25,148.7247,1187.0505,189.7528,123.75,879.2712,185.2854,705.9019,182.769,0.3539 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 05).tif,cCASP3,cCASP3,132.83,144.06,28.5,462.4742,290.6121,202.1552,106.75,244.4791,312.1814,227.4363,352.828,0.2596 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 05).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,258.08,149.2,72.75,263.9864,2686.4761,401.5136,187,1757.734,298.7965,1161.5546,232.8603,0.3861 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 05).tif,PathCellObject,,144.62,153.53,45.5,173.623,380.7596,194.3825,136.75,234.362,174.8867,160.761,165.0852,0.3292 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 05).tif,cCASP3,cCASP3,125.66,161.25,27.25,199.9196,256.6607,2010.2411,84.75,226.4532,1247.2251,211.7435,875.6696,0.3231 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 05).tif,cCASP3,cCASP3,126.2,168.35,23,210.4286,337.2245,2478.7346,67.75,324.5073,1884.1898,317.4261,1553.1364,0.347 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 05).tif,PathCellObject,,121.51,175.6,51.75,185.5809,297.3762,230.4714,147,266.4619,238.2047,249.4226,242.4672,0.3523 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 05).tif,cCASP3,cCASP3,105.15,175.5,28,199.7807,570.0088,280.5526,105.75,261.684,319.3962,148.3,333.6806,0.2566 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 05).tif,PathCellObject,,224.82,181.1,45,143.0652,394.0109,199.4891,131,286.5237,215.8691,228.863,224.656,0.3428 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 05).tif,PathCellObject,,116.09,183.9,31.5,315.1032,301.254,197.5318,105.75,268.0896,203.125,254.0671,205.4899,0.2863 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 05).tif,PathCellObject,,200.18,187.6,46.25,268.4011,281.139,335.4064,136.75,280.415,239.3181,280.0389,189.4055,0.3344 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 05).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,224.58,192.09,32.75,250.1333,602.0889,627.6,108,466.3217,507.6736,404.6094,453.1616,0.3003 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 05).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,123.61,198.19,142.25,341.2745,1205.0735,734.3916,281.25,1320.9734,495.2236,1440.4235,248.7297,0.4997 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 05).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,190.37,198.96,100,327.835,448.3075,259.955,211.5,588.2606,223.6498,713.2188,191.2344,0.4673 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 05).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,103.69,201.47,73.5,258.4814,975.4203,402.3932,182,2122.55,296.0768,2902.281,223.8111,0.3984 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 05).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,201.69,200.05,13.5,214.6897,676.3965,224.7069,68.5,565.9055,201.9709,536.3733,195.894,0.184 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 05).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,116.75,207.89,39.75,223.8841,2334.3779,394.7195,114.25,3281.2065,336.1478,3805.8008,303.696,0.3528 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 05).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,207.55,208.13,21.75,241.0737,513.621,347.1579,72,693.5256,459.3481,779.8434,513.1768,0.3025 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 05).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,198.85,216.95,89.25,173.7418,1359.8737,938.2637,237.5,1054.4764,692.7623,866.3807,541.5567,0.3777 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 05).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,213.65,217.09,95.75,387.2519,391.0951,278.6478,210.25,442.4002,322.6389,486.4569,360.415,0.459 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 05).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,172.75,226.65,151,187.6866,524.3731,337.728,318.75,607.6476,259.3203,682.1498,189.1721,0.4717 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 05).tif,PathCellObject,,223.93,240.52,29.75,398.0714,284.5238,188.1984,111,227.6138,181.6741,205.3447,179.1211,0.2671 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 05).tif,PathCellObject,,219.77,251.19,34.5,414.8116,311.3986,196.471,114.5,232.1463,180.5393,197.9688,173.6687,0.2931 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,201.23,55.82,28.25,226.4655,710.6896,175.9052,87.5,602.4759,165.3796,549.5106,160.2278,0.3134 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,194.52,60.95,28.25,210.3644,745.7034,171.2288,93.75,621.5782,163.992,565.027,160.695,0.3069 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 06).tif,PathCellObject,,150.44,69.19,35.5,216.1319,330.6111,181.625,118.25,313.6176,194.6113,306.247,200.244,0.2914 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,134.63,74.25,93.5,190.5093,344.2838,214.9708,214.75,356.2258,210.5285,365.5664,207.0539,0.4366 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 06).tif,PathCellObject,,185.56,76.51,66.25,178.2313,365.9739,183.3321,179,303.0725,178.7699,265.5278,176.0468,0.3707 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 06).tif,PathCellObject,,245.46,91.16,116.25,190.1842,359.2013,187.3919,261.75,286.5043,173.1681,227.9707,161.7155,0.4436 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 06).tif,PathCellObject,,170.98,107.9,30.75,399.0236,252.1024,173.1024,113.5,207.3173,165.0022,190.0818,161.8848,0.2693 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,146.63,114.06,43.5,176.7528,1027.691,184.8315,130.5,1255.4724,182.9219,1372.317,181.9424,0.3315 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 06).tif,PathCellObject,,76.33,114.28,24.75,190.0481,189.9423,179.75,97.25,178.2097,170.8184,173.9582,167.5819,0.2549 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,131.92,115.37,68.75,282.5409,446.3523,308.3345,181.5,615.4006,253.9753,721.433,219.8795,0.3814 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,161.04,118.37,32.5,206.1288,758.3561,224.3485,112.5,920.2478,199.104,987.0281,188.6906,0.2852 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,170.46,121.35,72,284.5258,627.0481,262.9106,156.5,698.5669,225.1831,760.3234,192.6053,0.4559 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 06).tif,PathCellObject,,73.99,124.28,40,209.4908,361.773,238.4908,124.75,308.806,223.972,283.187,216.9496,0.3169 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,150.94,124.48,25.25,229.1635,1046.7019,182.0288,87.5,1700.2661,187.0084,1968.9249,189.0553,0.2795 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,145.42,128.98,13.75,193.1311,432.3443,322.0984,51.5,631.2211,264.0337,713.7483,239.9388,0.2855 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,173.77,131.59,34.75,190.0141,1480.1127,220.6408,127,1435.196,205.8765,1417.8641,200.1794,0.2751 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,133.3,136.22,52.25,201.5768,404.3395,199.1116,140,504.7273,189.672,567.1069,183.8064,0.3701 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,143.54,138.06,53.75,228.9726,409.4292,290.8402,115,605.7056,249.8398,782.5967,212.8889,0.4635 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,156.25,136.8,91.5,276.3242,694.1063,269.6049,179.75,1296.129,241.3121,1920.2599,211.9802,0.5012 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,188.18,143.21,74,271.2475,389.8949,259.2305,156.5,763.0206,226.3873,1091.594,197.4657,0.4695 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,75.93,145.87,109.75,182.4442,388.0296,230.4989,235.25,563.8347,258.7415,716.6634,283.2931,0.4639 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,163.39,148.4,106.75,331.7349,1155.6326,266.2628,206.25,1775.1331,233.029,2446.1284,197.0327,0.5131 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 06).tif,PathCellObject,,225.32,145.49,29.5,343.8417,221.8167,344.1917,108.75,226.9794,281.5068,228.9277,257.8522,0.2675 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,196.1,151.01,90.25,268.2694,351.3,277.6333,182,958.937,234.5069,1550.1514,192.5459,0.4848 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,150.24,152.33,70,324.9288,923.1815,234.274,171.5,2391.4036,212.4441,3402.6055,197.4093,0.4043 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,136.68,155.51,52.5,186.0093,325.2664,473.6028,144,370.0832,346.5737,396.5041,271.6859,0.363 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,231.6,161.94,173.5,220.623,671.0158,225.8014,350,776.3745,205.8595,879.9448,186.256,0.4948 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,73.34,161.5,91,266.1913,354.4836,3773.123,184.75,378.1213,3265.6941,401.1303,2771.7607,0.4917 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,84.72,162.96,45.5,224.4731,377.0161,618.7043,119,369.6088,596.5063,364.8904,582.3665,0.3821 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,99.53,163.93,112,264.5679,603.9554,308.755,242.5,1429.8423,249.4072,2141.595,198.261,0.4609 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 06).tif,PathCellObject,,124.41,163.28,35,350.4028,314.2361,192.3542,118.5,300.0779,188.3074,293.9184,186.5468,0.2895 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,191.07,162.69,20.75,298.4419,452.6977,282.8837,55,593.8162,228.3184,682.4015,194.0657,0.364 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,141.04,168.22,88.5,363.8655,320.6499,625.6107,191.25,373.8791,410.3797,420.0024,223.8811,0.4615 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,183.94,166.89,42.5,345.1111,377.386,330.8012,98.5,469.1342,254.9089,539.1741,196.9732,0.4201 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,193.9,170.57,26.75,229.7387,496.8378,215.1261,82,431.4277,191.4879,398.5746,179.6154,0.3265 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,176.63,171.22,27.75,257.9035,789.4386,216.3947,78.75,939.4101,197.5615,1023.6306,186.9852,0.3529 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,156.61,173.39,71.25,228.045,743.8512,200.0796,184,905.3329,193.053,1009.736,188.5101,0.3849 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,168.99,172.76,29.5,318.5935,1456.9756,206.3821,89.25,1490.5444,206.4222,1507.9662,206.443,0.3424 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,127.42,174,27.5,177.1429,534.4821,193.8571,99.25,431.6733,188.9352,391.8304,187.0277,0.267 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 06).tif,PathCellObject,,76.25,177.05,50,221.3252,288.4806,221.8252,149.75,212.395,200.4483,172.6142,189.2716,0.3369 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,145.37,180.13,58.25,269.3277,296.9702,219.434,122.5,414.0121,211.4858,520.2085,204.2741,0.4696 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,188.23,182.95,49,257.76,547.195,237.725,143.5,604.6017,209.2974,635.2187,194.136,0.3447 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,132.66,180.35,13.25,243.9454,414.5091,209.7455,54.5,392.3333,197.3604,385.0299,193.2814,0.2267 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 06).tif,PathCellObject,,239.46,182.17,34.5,189.7589,284.5461,174.9007,119.5,248.4042,167.4875,233.3717,164.4041,0.2844 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 06).tif,PathCellObject,,67.87,181.74,14.75,166.6774,153.0968,172.7097,71.75,145.0138,172.0484,142.8062,171.8678,0.1993 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,137.64,188.87,93.75,268.2128,430.1942,256.5452,161,545.0479,242.1036,704.4022,222.0664,0.5769 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,178.56,184.08,19.25,185.5488,595.6829,197.5854,89.25,722.451,199.2997,760.2509,199.8109,0.2165 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,203.83,188.56,48.25,190.196,1236.4473,183.397,151.25,1626.7767,185.1741,1816.2292,186.0366,0.3213 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,149.28,190.78,33.75,187.5942,745.3043,237.7174,85,778.6059,226.0794,801.3564,218.1287,0.3986 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,107.73,192.97,96.75,281.3979,868.5969,216.2092,245.25,822.209,193.368,791.3362,178.1664,0.3931 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,156.39,191.49,24.25,176.4545,629.3737,199.5556,81,845.6799,191.3963,939.1921,187.869,0.2936 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,192.4,200.49,153.5,345.0829,374.4683,357.1414,289,543.1687,286.2509,734.9445,205.6636,0.5266 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 06).tif,PathCellObject,,256.1,196.17,38,460.0319,317,211.3439,116.75,227.9062,214.1258,183.0737,215.5256,0.327 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,137.27,199.52,27.25,184.2,531.6522,190.687,90.75,537.3553,186.3003,540,184.2661,0.3103 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,177.81,199.55,47.25,187.7448,861.0938,222.9479,140,977.274,206.8078,1037.5621,198.4324,0.3357 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,243.92,199.47,46,377.4521,1730.7394,236.2181,120.75,1464.2222,224.5679,1296.0839,217.2181,0.3796 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,232.28,203.27,53.25,245.7443,3247.4019,310.9635,143.25,2763.1511,256.7552,2466.0896,223.5014,0.3765 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 06).tif,PathCellObject,,211.6,202.58,56,273.7851,294.9167,232.4781,142.25,338.676,200.6077,367.7639,179.4227,0.396 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,256.65,206.3,18.25,261.8133,204.2,177.28,71.5,373.3841,193.4118,432.6776,199.0654,0.2446 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,247.51,210.15,43,591.5517,347.454,749.546,117.75,526.4409,464.6456,630.2534,299.4033,0.3583 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,204.25,212.11,57,220.2155,427.6552,257.6379,156,615.096,222.3072,725.7481,201.4504,0.3685 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,185.53,215.1,63.25,225.6588,338.4627,208.702,161,360.5573,195.8359,374.9668,187.445,0.3918 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 06).tif,PathCellObject,,192.94,225.19,36.75,192.78,294.3333,194.5733,99,249.2581,183.9925,222.1044,177.6185,0.365 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 06).tif,PathCellObject,,187.04,233.88,58.25,191.7597,280.0515,216.6953,139.75,228.6075,193.3908,192.2849,176.9364,0.4113 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 06).tif,PathCellObject,,223.71,240.2,9.25,212.225,166.25,168.425,50,142.8358,163.6567,137.0186,162.472,0.1884 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 06).tif,PathCellObject,,230.73,242.97,31,408.8984,230.2344,181.4141,95.75,200.0155,170.6641,185.0811,165.3513,0.3202 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 06).tif,PathCellObject,,133.87,243.91,30,341.9262,357.5,229.9672,101.25,311.6265,297.1302,291.9895,325.8807,0.2914 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 06).tif,PathCellObject,,121.56,246.88,34.25,293.3913,275.4348,191.5362,116.25,201.5901,178.676,170.5213,173.2652,0.2876 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,138.74,252,17,223.9286,756.1714,2350.2856,74.75,624.3787,1362.5415,584.4415,1063.2251,0.2191 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,180.7,268.4,23.5,152.3263,4958.4634,184.7579,91.5,3401.8528,175.8311,2858.1838,172.7132,0.2485 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 06).tif,PathCellObject,,213.03,273.43,28.75,241.453,262.6325,175.0427,100.5,261.8218,175.4431,261.4913,175.6063,0.2723 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 06).tif,PathCellObject,,203.12,275.16,27.25,414.2523,303.1712,186.7838,98.75,213.5113,174.0479,178.7133,169.1049,0.2721 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 06).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,177.58,277.85,103.25,218.6892,1685.1663,226.853,211,2265.9929,202.5723,2827.8647,179.0839,0.4867 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 07).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,112.69,84.33,90,180.0304,962.3287,202.2983,209.75,2268.5083,202.5523,3253.5854,202.7437,0.4212 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 07).tif,PathCellObject,,136.99,87.86,29,260.2101,262.563,187.7815,101.25,226.4314,177.3186,211.5536,173.0104,0.2761 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 07).tif,PathCellObject,,122.04,92.45,21.5,316.0225,281.2809,192.4831,70.75,242.9444,178.0903,225.799,171.6533,0.2945 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 07).tif,PathCellObject,,140.5,97.4,34.75,205.8239,251.4225,186.5704,116.25,247.094,187.2906,245.2086,187.6043,0.2933 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 07).tif,PathCellObject,,128.69,98.79,37.25,269.9007,311.1457,370.3046,90.25,315.5479,284.4247,318.6542,223.8271,0.401 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 07).tif,PathCellObject,,116.62,101.48,28.25,304.8547,424.7265,197.0769,93,289.008,187.4867,227.6988,183.1544,0.3011 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 07).tif,PathCellObject,,228.16,101.76,28.25,291.2435,190.7217,167.513,106,150.4753,159.6024,135.5452,156.6677,0.2569 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 07).tif,PathCellObject,,125.01,106.69,24.75,290.4904,252.9423,185.5769,75.5,228.8922,182.4673,216.5099,180.8663,0.3362 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 07).tif,PathCellObject,,105.25,108.57,25,349.2745,198.7451,171.6471,97.75,158.6726,165.3122,144.6747,163.0993,0.246 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 07).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,79.72,116.98,149.5,143.2968,2832.418,198.8159,304,1617.1716,182.6289,425.6374,166.7577,0.4934 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 07).tif,PathCellObject,,178.33,117.74,9.5,251.4146,190.9268,166.7073,49.25,161.5276,163.9598,153.8987,163.2468,0.192 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 07).tif,PathCellObject,,183.05,124.48,33,384.1852,333.563,187.2741,82.75,295.7096,180.6108,270.0302,176.0905,0.3923 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 07).tif,PathCellObject,,174.46,126.73,27,395.4722,276.9815,189.9074,79.5,241.1402,186.0872,222.9671,184.1502,0.322 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 07).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,202.4,127.46,14.75,187.2459,615.8853,195.3115,59,572.9587,188.1859,558.4917,185.7845,0.2345 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 07).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,209.27,131.8,17,186.6164,601.6575,193.5206,65,669.8206,189.8893,696.1481,188.4868,0.2619 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 07).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,199.2,136.6,77.5,270.0064,548.7845,361.2701,164.25,671.1387,275.5023,779.2415,199.7244,0.4632 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 07).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,117.83,137.29,26.25,159.055,239.578,176.7798,106,459.4507,171.0563,535.0536,169.0883,0.2476 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 07).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,178.05,135.7,16.5,206.1739,1942.0435,311.6522,73.5,1567.4611,309.078,1453.0973,308.292,0.2217 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 07).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,216.25,139.25,44.25,195.0614,1172.4525,195.8268,125.25,925.373,181.0992,789.2892,172.9877,0.3459 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 07).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,165.94,144.58,77,212.7556,920.3473,298.8714,186.5,1063.5892,279.1745,1166.235,265.0599,0.4174 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 07).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,188.26,143.32,40,229.0606,1255.897,209.3758,113.75,1298.7214,203.8311,1323.0034,200.6873,0.3535 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 07).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,176.15,144.5,24.25,189.3962,1166.3302,1066.9717,73.25,1885.6305,943.4678,2289.0476,874.201,0.3343 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 07).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,225.2,149.31,94.5,234.8979,1130.61,218.4031,225.25,2025.1364,192.3315,2682.2693,173.1788,0.4198 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 07).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,208.51,149.14,62.5,288.588,459.168,259.728,146.5,885.2496,220.9864,1199.469,192.4159,0.4226 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 07).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,197.07,150.05,60.25,311.7975,513.7851,263.3347,129.25,957.2505,225.422,1344.6823,192.2996,0.4583 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 07).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,110.08,149.01,46,194.0269,482.1237,314.9839,120.5,915.0474,260.1897,1184.3579,226.1037,0.3784 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 07).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,180.65,149.25,12.75,179.5273,4211.1274,653.2364,54.75,2995.2375,412.9821,2597.1785,334.3274,0.2327 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 07).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,119.8,154.34,88.5,221.6469,635.3475,296.4689,178.5,619.5615,250.1802,604.1243,204.9144,0.4931 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 07).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,136.74,155.33,115.75,253.1306,406.4176,251.0471,230.5,515.1091,225.2149,625.695,198.9325,0.4986 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 07).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,153.39,155.28,91.75,255.0135,281.9406,247.2703,191.5,423.446,223.5045,554.6667,201.4662,0.4768 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 07).tif,PathCellObject,,63.58,155.18,31,261.624,279.92,194.368,110.75,218.2935,180.0768,194.0692,174.4591,0.2712 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 07).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,166.45,159.17,92.5,331.4438,366.746,239.8984,158,460.0506,231.7662,594.7838,220.0232,0.5871 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 07).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,178.49,164.17,106,306.1506,1011.5365,218.4659,216,1285.1746,217.3422,1549.4841,216.2568,0.4894 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 07).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,208.08,161.5,29.5,242.575,2588.7917,194.15,108.25,2449.3777,190.4211,2396.6025,189.0095,0.2722 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 07).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,146.08,169.7,188.25,231.2984,354.7706,249.1419,304,653.3839,238.7022,1137.587,221.7742,0.6153 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 07).tif,PathCellObject,,218.7,165.01,19.75,316.6296,395.4815,178.963,71.25,257.2308,171.8811,202.6049,169.0829,0.2669 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 07).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,119.45,166.9,59,246.275,1086.2417,248.8167,135.25,1230.2324,241.6605,1344.6622,235.9735,0.4303 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 07).tif,cCASP3,cCASP3,226.82,167.76,30.25,356.1452,387.7258,469,93.75,255.6755,300.3564,190.6984,217.373,0.3164 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 07).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,163.42,170.51,65.75,298.8467,413.7126,278.613,132,530.6555,268.5431,642.4579,258.9157,0.4827 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 07).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,211.25,171.84,26.5,497.5909,870.2273,186.4364,97,1105.9486,179.0694,1198.8853,176.1649,0.2727 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 07).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,109.88,172.11,48,250.0259,762.7824,463.2643,106,911.8988,341.6259,1035.9482,240.4353,0.4472 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 07).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,134.43,178.32,71.75,268.2042,632.7578,342.3633,174,988.109,265.6011,1239.8162,211.2279,0.4126 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 07).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,201.12,174.92,41,442.5576,420.9212,218.6364,123.5,435.9636,188.4777,443.5076,173.3526,0.327 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 07).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,118.31,182.92,134.75,270.237,830.0833,276.0296,255.75,1229.1627,283.8119,1672.5844,292.4589,0.523 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 07).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,102.06,181.43,58.5,200.6298,683.9787,207.9362,156.25,957.5303,208.4425,1121.9412,208.7468,0.3715 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 07).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,166.28,181.19,45,207.5604,585.8132,953.9835,119,676.1611,956.159,731.7128,957.4966,0.3801 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 07).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,193.64,180.84,27.25,239.2523,571.6216,209.2072,93.25,689.5692,188.6968,738.9736,180.1057,0.2889 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 07).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,152.09,186.37,153,251.2618,518.0536,295.8959,282.25,785.6776,280.4956,1104.031,262.176,0.5395 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 07).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,127.02,188.53,24,278.0206,381.8247,190.9278,62.25,405.585,187.6917,420.359,185.6795,0.3754 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 07).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,183.58,189.71,71.75,279.2543,968.9691,218.8282,163.5,1049.5211,207.1344,1112.7035,197.9623,0.4371 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 07).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,136.19,192.74,68.25,237.4015,519.0292,370.8869,151,607.1832,277.8218,679.9368,201.0151,0.4402 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 07).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,194.23,192.66,56.25,353.5368,508.8312,217.5455,125.5,716.5842,207.7525,891.7336,199.4964,0.4424 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 07).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,203.76,195.92,47.25,222.2887,582.1959,379.5515,144.75,419.5388,252.3834,337.5766,188.3039,0.3265 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 07).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,165.18,199.96,130.75,273.4318,326.3182,566.6799,271.25,430.2461,892.5438,528.763,1201.4417,0.4856 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 07).tif,PathCellObject,,183.63,205.71,30.5,417.2195,269.252,191.5935,110.75,201.7765,183.1038,175.8406,179.8406,0.2695 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 07).tif,PathCellObject,,190.27,218.18,17.75,213.7917,206,174.4583,70.5,163.8204,169.3416,149.4953,167.6038,0.2423 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 07).tif,PathCellObject,,183.19,222.09,20.5,271.2235,331.6353,189.6588,78.5,219.6203,175.9715,178.4026,170.9351,0.254 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 07).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,132.85,252.2,30.75,149.3828,1390.6172,195.9688,97.25,1132.8257,182.1282,1006.8817,175.3664,0.3145 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 07).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,182.08,257.94,78,211.3762,668.7022,1068.0752,201.75,544.2302,660.3799,463.0307,394.4192,0.3896 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 07).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,138.17,259.37,55.5,149.4361,1528.1982,196.7313,148.5,1353.5896,185.3467,1246.4648,178.3622,0.376 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 07).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,193.63,264.77,44.25,583.257,539.5978,221.5028,131,636.1409,225.7981,686.0867,228.0202,0.3375 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 07).tif,PathCellObject,,192.05,276.57,33,355.9621,322.75,191.9015,113.25,323.3877,220.2665,323.6491,231.8944,0.2789 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 07).tif,PathCellObject,,228.03,280.49,28,216.0522,218.9826,172.6609,107.5,169.1578,166.3202,151.0253,164.0127,0.2552 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 07).tif,PathCellObject,,179.94,326.23,32.75,265.6324,285.7941,206.9412,90.75,209.0902,183.1557,163.7348,169.0913,0.3629 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 08).tif,PathCellObject,,106.69,81.37,29.25,260.9916,279.8067,181.042,101.75,204.4401,169.7457,173.5138,165.1104,0.2824 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 08).tif,PathCellObject,,115.24,80.07,21.75,205.7416,289.0562,191.5843,67.5,258.4396,182.8205,243.6304,178.5815,0.3136 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 08).tif,PathCellObject,,122.01,80.31,13.75,174.3667,299.6167,190.1667,56.5,242.1667,178.6754,221.6488,174.5714,0.2515 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 08).tif,PathCellObject,,127.92,85.24,20.75,244.0357,231.8214,176.5595,69.5,189.0466,168.7348,170.6205,165.3641,0.2814 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 08).tif,PathCellObject,,135.78,88.97,26,250.7641,221.6604,175.1698,92.75,176.5269,166.371,158.5414,162.8647,0.2704 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 08).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,230.43,92.86,107.75,146.0023,1613.0936,169.6187,255.75,1065.2429,162.5201,653.6501,157.187,0.4271 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 08).tif,PathCellObject,,120.2,91.72,34,239.6901,278.5,231.1901,105,238.4526,202.1682,218.1429,187.45,0.3211 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 08).tif,PathCellObject,,109.77,91.97,20.25,190.1395,281.5349,188.5233,87.25,251.1705,178.2273,241.3534,174.8985,0.2323 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 08).tif,PathCellObject,,87.92,93.42,30.5,251.3065,235.8387,181.8387,110.25,177.1403,169.3009,154.2516,164.412,0.2685 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 08).tif,PathCellObject,,100.39,96.32,25.5,267.7453,269.566,179.8679,84.25,214.5249,174.9883,189.6979,172.7872,0.3017 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 08).tif,PathCellObject,,214.53,100.77,19.5,182.1358,237.2963,214.1728,74,167.0134,207.1773,140.8991,204.578,0.2615 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 08).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,117.68,103.67,45.25,285.0591,503.3226,206.2849,124,453.2425,204.3447,423.4824,203.1917,0.3606 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 08).tif,PathCellObject,,94.77,102.86,20,249.8706,184.5882,185.2235,63.25,164.4008,179.8599,154.4244,177.2093,0.3117 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 08).tif,PathCellObject,,102.15,106.88,34,286.9276,308.1522,205.2464,88.5,312.6714,233.927,315.5321,252.0826,0.3744 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 08).tif,cCASP3,cCASP3,212.48,109.46,31.75,248.3543,329.9528,4150.4565,95.75,225.4062,2041.4427,173.7432,999.2451,0.3193 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 08).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,125.43,111.2,30.5,288.1935,392.3065,611.879,92.25,416.149,604.6314,428.2163,600.9633,0.3168 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 08).tif,cCASP3,cCASP3,109.8,113.1,45.25,203.7541,274.8634,279.8306,114.75,269.0065,349.2278,265.1511,394.9101,0.3932 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 08).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,99.27,118.64,27,318.5856,326.009,233.1261,94.5,359.856,481.267,373.7195,582.9041,0.2793 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 08).tif,PathCellObject,,118.87,120.26,58.25,200.4237,276.2288,221.0847,145.5,241.79,239.1463,218.2319,251.5014,0.3944 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 08).tif,PathCellObject,,190.87,122.94,72.25,187.4759,395.0793,176.8621,194.75,333.905,169.5366,297.6258,165.1922,0.369 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 08).tif,PathCellObject,,85.84,119.94,34,266.2072,279.4214,208.9,114.5,260.2174,191.7022,251.8156,184.1781,0.2895 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 08).tif,PathCellObject,,94.25,125.93,15.5,159.3906,373.75,209.2812,69.25,304.3237,228.9029,283.5608,234.771,0.2141 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 08).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,248.64,127.14,38,436.471,360.9419,189.0258,125.25,364.7964,181.1237,366.5231,177.5838,0.2976 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 08).tif,PathCellObject,,72.69,129.65,39.5,258.8228,369.7025,206.8987,125.25,270.9821,186.6912,225.6395,177.4099,0.3069 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 08).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,200.03,133.83,96.25,352.6865,408.0285,261.1321,214,548.1669,295.2509,663.0148,323.2123,0.445 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 08).tif,PathCellObject,,261.64,131.76,11.25,256.0652,350.8913,342.1087,52,243.2736,261.6509,213.4518,239.3554,0.2007 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 08).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,216.04,136.55,95,412.5643,443.0446,491.0289,213.5,598.0152,500.832,722.0567,508.6786,0.4423 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 08).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,232.07,138.06,66,273.4925,598.9398,232.594,162.25,681.6718,251.4129,739.1306,264.483,0.4004 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 08).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,257.51,139.06,34.25,451.3404,406.6525,376.1064,99.5,414.6325,464.92,418.9768,513.2703,0.3383 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 08).tif,cCASP3,cCASP3,267.94,138.02,12.5,170.6538,477.7308,1024.75,56.5,281.4646,558.3053,222.8103,418.9081,0.2169 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 08).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,184.81,143.18,74.25,277.0033,346.6545,244.6711,185.5,399.9221,233.7651,436.0338,226.3716,0.3946 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 08).tif,PathCellObject,,90.96,142.39,46,246.0802,254.2834,183.631,117,233.3098,256.7799,219.3523,305.4591,0.3918 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 08).tif,cCASP3,cCASP3,265.52,145.12,12.25,166.7593,298.4074,860.2407,61,256.2082,541.6572,244.2775,451.5864,0.2039 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 08).tif,PathCellObject,,82.11,145.21,27.5,271.6316,284.693,181.8772,72.75,227.1336,185.0856,190.2697,187.1404,0.3706 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 08).tif,cCASP3,cCASP3,198.92,148.91,60.5,425.3169,358.0741,1358.1029,158.75,335.1656,1452.7177,320.9284,1511.5192,0.376 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 08).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,222.55,148.76,46,232.0321,463.9947,401.8449,104.75,518.331,499.9763,561.3856,577.733,0.4362 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 08).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,231.32,148.88,13.75,198.8,622.3,418.0167,56,688.1422,335.4667,712.0848,305.4485,0.2485 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 08).tif,PathCellObject,,99.12,150.96,38.25,250.5513,307.9744,199.75,110.5,261.2928,192.0518,236.0069,187.8819,0.341 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 08).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,211.18,149.84,22.25,205.022,847.7802,213.1209,81.5,910.7021,216.2614,934.7605,217.4622,0.2708 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 08).tif,cCASP3,cCASP3,88.13,151.91,21.75,311.5,252.5114,555.8977,56.5,241.3087,451.9174,234.3662,387.4789,0.3717 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 08).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,154.06,154.07,28,366.8304,891.3125,334.6518,95.5,801.3542,256.5104,764.3125,224.3346,0.2827 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 08).tif,PathCellObject,,79.72,154.5,26.25,306.463,267.0185,186.6019,78,208.4856,177.9169,177.6488,173.3415,0.3294 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 08).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,247.14,155.81,47.5,215,805.6564,197.9692,139,1035.4312,189.9034,1158.5248,185.5824,0.3416 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 08).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,217.75,155.69,32.25,232.0444,529.3111,206.5926,61,560.7711,353.7751,598.0263,528.0702,0.5176 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 08).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,172.08,154.73,16.75,241.0429,781.9572,239.3571,52.5,856.4258,230.1627,893.928,225.5324,0.3122 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 08).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,187.3,156.19,26,177.036,1266.3243,300.2072,84.5,1388.239,330.7726,1446.569,345.3965,0.3154 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 08).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,234.12,159.71,95,263.487,1263.8541,220.9453,208.25,1586.1063,314.8506,1859.2737,394.4525,0.4574 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 08).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,178.08,158.11,30.5,209.3071,882.6299,303.7953,77.25,841.2516,295.5161,812.5355,289.7705,0.3933 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 08).tif,PathCellObject,,262.95,160.23,50.25,334.9212,215.5911,261.6059,162.25,197.9954,203.7,190.0045,177.4027,0.3076 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 08).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,167.08,162.37,62.75,211.3295,391.1705,192.7519,147.25,483.8319,198.0068,556.0574,202.1027,0.4317 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 08).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,212.22,161.41,31.25,195.1912,833.1103,205.9559,95.75,868.5182,202.401,887.9355,200.4516,0.3386 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 08).tif,PathCellObject,,92.08,161.85,41.75,340.3988,270.7746,254.711,104.75,244.0519,226.4576,225.6335,206.9841,0.3984 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 08).tif,PathCellObject,,83.27,163.54,30.5,262.4803,347.8819,199.1496,86.5,256.7994,182.5473,204.6937,173.0495,0.3554 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 08).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,149.13,162.97,20.25,191.1512,584.4651,200.6279,77.5,757.5064,207.2436,823.354,209.7611,0.2635 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 08).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,158.22,163.86,23.5,194.03,603.48,193.27,69,675.4058,199.8152,716.2727,203.5341,0.3436 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 08).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,221.06,165.42,22.5,187.6154,701.033,322.967,95.75,1026.7728,757.9034,1128.2877,893.4486,0.237 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 08).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,182.81,165.43,31.25,179.8661,754.2598,278.0551,98.5,846.0707,282.5808,889.4164,284.7175,0.3165 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 08).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,112.89,170.35,29,175.3388,269.0496,184.7603,112.25,365.7394,176.4722,401.4085,173.4146,0.2583 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 08).tif,PathCellObject,,96.06,170.19,13.5,188.8772,384.2456,201.8421,59.5,255.6694,183.1529,216.054,177.3946,0.2182 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 08).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,240.96,174.87,110.75,257.554,820.3469,249.5023,249.75,985.8004,219.8224,1117.4517,196.2061,0.4414 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 08).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,88.26,177.49,41,237.2679,356.0476,188.6429,126.75,369.9686,181.5627,376.807,178.0848,0.3271 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 08).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,158.32,185.43,228.5,237.976,412.2211,247.1558,398.25,614.2153,233.4721,888.9274,214.8622,0.573 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 08).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,97.9,183.74,43.75,233.8644,551.1074,205.6384,129.25,527.61,193.0405,515.4135,186.5015,0.3332 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 08).tif,PathCellObject,,284.75,190.43,66.75,345.3741,323.7852,195.1296,176.75,279.8687,180.6568,252.7968,171.7352,0.3741 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 08).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,176.84,192.46,54.25,311.1187,502.0731,186.6712,140.5,784.5701,186.968,964.4157,187.157,0.3808 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 08).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,166.95,199.09,65.25,221.8447,467.0947,220.1061,142.5,907.3089,221.5236,1283.4142,222.7346,0.4494 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 08).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,118.56,201.7,84.75,237.7735,587.2353,241.5618,195.5,698.0522,236.8153,782.7214,233.1888,0.4312 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 08).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,139.87,202.42,75.25,228.6557,663.0394,300.0885,177,1977.9396,241.0506,2965.7339,196.6995,0.4262 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 08).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,153.86,206.73,120.5,235.4203,824.2629,208.2402,247,1228.4497,199.8219,1610.4893,191.865,0.4838 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 08).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,108.83,208.8,42,177.4186,2641.8198,206.1802,124.75,2171.03,192.8657,1923.3976,185.8624,0.3392 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 08).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,81.64,211.81,46,148.1649,756.8298,2562.0852,128.5,528.0135,1973.9866,398.4428,1640.9669,0.354 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 08).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,126.38,216.92,26,181.6204,602.0648,1557.0927,108.75,506.3701,850.069,474.7645,616.5566,0.2433 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 08).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,167.95,217.2,21.5,181.4382,2297.1909,221.3146,93.75,2593.0371,206.9762,2684.1453,202.5605,0.2247 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 08).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,140.91,222.5,91,187.0217,717.2935,260.1494,217.5,772.2,224.7919,812.4502,198.8725,0.4179 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 08).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,88.74,221.78,70.75,153.9268,558.8049,2080.0244,170,411.327,1521.2786,304.1721,1115.3038,0.4167 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 08).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,153.93,222.51,68.75,249.7634,801.9283,221.1111,161,1175.8608,205.6337,1459.3586,193.8995,0.4273 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 08).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,125.77,227.55,65.5,238.1585,1229.8755,572.2339,157.25,1346.9619,401.346,1431.9698,277.2767,0.4105 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 08).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,166.89,232.51,46.5,268.2075,923.6968,227.5479,146.5,975.5671,209.2411,999.8853,200.6584,0.3151 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 08).tif,cCASP3,cCASP3,81.46,229.19,14.5,165.4667,293.5667,415.1667,47.75,324.0408,915.8316,337.4853,1136.7133,0.2876 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 08).tif,PathCellObject,,73.13,231.53,29.75,252.3577,356.9919,193.8537,97.25,231.5587,200.4107,174.2045,203.4089,0.2999 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 08).tif,PathCellObject,,84.58,237.35,30.25,269.5645,320.1452,207.371,87,271.8309,198.2235,245.2044,193.1822,0.3412 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 08).tif,PathCellObject,,100.16,238.99,10,150.7111,310.2667,258.3333,59.75,242.4711,223.3554,226.9848,215.3655,0.1738 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 08).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,217.88,241.28,42.25,352.9425,403.1092,202.3103,114.25,496.8192,210.1743,554.0316,214.9754,0.3689 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 08).tif,PathCellObject,,76.83,243.08,37.25,232.5133,297.7267,194.2067,121.5,214.6687,180.4486,177.5893,174.3065,0.3038 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 08).tif,PathCellObject,,93.24,243.85,38.25,296.5,282.1602,206.0705,104.25,265.852,206.6993,256.1787,207.0723,0.3615 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 08).tif,PathCellObject,,105.74,247.56,51.25,190.1449,291.8841,273.0241,122,264.2561,228.9837,244.1895,196.9965,0.4138 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 08).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,210.96,247.78,35.5,277.6414,655.3035,262.2827,103.75,463.1803,218.7981,360.3838,195.5314,0.3375 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 08).tif,PathCellObject,,113.43,249.51,22.5,149.8352,316.3297,203.7033,74.25,238.0034,186.9731,203.4029,179.5825,0.295 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 08).tif,PathCellObject,,226.41,251.35,54,171.4775,287.7433,229.4414,149.75,243.235,197.0167,217.0952,177.9735,0.3645 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 08).tif,PathCellObject,,91.62,253.08,25,315.8416,316.198,195.7921,86,236.5187,181.0663,203.8049,175.0203,0.277 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 08).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,217.8,258.03,26.25,245.2569,334.789,198.5505,91,395.3005,217.6913,420.965,225.8093,0.2848 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 08).tif,PathCellObject,,102.13,259,32,295.1231,301.4231,204.5077,110.5,229.3326,216.3552,199.2949,221.2917,0.2877 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 08).tif,PathCellObject,,121.18,266.94,34.25,284.1408,261.2394,186.4084,123.5,225.5504,173.0302,211.2345,167.6638,0.2753 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 08).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,220.26,269.48,41.75,191.6954,1322.8621,475.3908,139.5,934.3399,361.0948,758.748,309.439,0.3079 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 08).tif,PathCellObject,,173.22,325.54,18.25,164.8816,122.9474,160.1053,79.5,121.6199,158.9782,121.2082,158.6286,0.2195 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 09).tif,PathCellObject,,207.38,20.71,34.5,228.4255,264.5177,174.4539,119.25,189.1908,163.5472,157.5804,158.9702,0.2866 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 09).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,221.56,36.77,39.75,155.7063,697.2375,884.5687,117.5,446.5666,477.5581,318.4281,269.5016,0.3318 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 09).tif,cCASP3,cCASP3,214.24,39.83,36.5,226.2703,291.1689,375.5878,91.5,303.7657,481.5259,312.2785,553.1187,0.3935 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 09).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,203.65,44.61,111.5,173.1897,859.3214,6755.1562,234.75,715.246,4592.5752,583.7882,2619.385,0.4712 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 09).tif,cCASP3,cCASP3,160.57,56.26,55.5,151.2314,284.3493,2742.1746,165.25,209.1774,1450.6842,169.695,772.3555,0.3387 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 09).tif,PathCellObject,,212.51,58.86,65.5,149.8935,424.1711,270.692,144.5,313.8571,243.9346,222.6226,221.805,0.4482 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 09).tif,PathCellObject,,203.11,63.08,37.25,160.2171,369.5921,210.9605,115.25,329.0345,220.1293,309.2756,224.5962,0.3217 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 09).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,89.22,63.12,84.5,179.1976,951.59,210.4631,188.25,1328.6826,187.6799,1637.4613,169.0242,0.4466 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 09).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,144.29,64.9,95.25,170.1097,664.2742,237.9739,216.5,702.1765,203.3103,732.1694,175.8802,0.4368 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 09).tif,PathCellObject,,210.59,71.55,40,157.5838,204.9068,176.8571,108.25,171.1862,169.3977,151.3723,165.0146,0.3595 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 09).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,96.23,70.55,32.25,160.0229,1725.916,221.374,98.25,1400.9823,203.6076,1239.7462,194.7917,0.3197 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 09).tif,PathCellObject,,121.2,80.32,72,161.3841,320.91,189.91,210.75,318.897,174.6604,317.8507,166.7338,0.3406 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 09).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,154.03,84.53,62.5,146.9724,845.2913,176.5315,186.75,1083.7305,171.2258,1205.1002,168.5251,0.3352 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 09).tif,PathCellObject,,235.8,82.82,42.75,147.1163,170.5698,194.7965,142,160.8589,170.6367,156.6304,160.1165,0.304 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 09).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,221.03,90.13,99.75,322.2698,408,246.5124,224.25,502.2198,205.1054,578.8088,171.4467,0.4417 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 09).tif,PathCellObject,,100.95,90.37,30.25,148.252,202.9837,168.9756,110.5,152.4266,161.7111,132.9937,158.9187,0.2699 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 09).tif,PathCellObject,,112.85,97.99,71.75,160.1384,322.2699,194.8339,183.75,239.5306,184.0354,185.917,177.0381,0.3915 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 09).tif,PathCellObject,,197.34,102.91,30.25,174.4173,278.7244,175.4173,105,255.5656,169.0501,245.4931,166.2808,0.2932 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 09).tif,PathCellObject,,208.36,104.94,93.5,191.4474,285.9079,179.6316,196,257.3384,171.8644,230.7946,164.6479,0.4781 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 09).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,167.36,109.1,74,192.3679,899.6187,193.194,182.25,822.6489,183.862,769.4988,177.418,0.4078 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 09).tif,PathCellObject,,190.05,112.59,35.25,162.5208,205.0972,173.2778,108.75,187.4658,166.7123,178.8299,163.4966,0.3219 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 09).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,179.1,115.84,68.25,174.1087,635.1884,201.5761,158.5,633.1429,193.3987,631.5789,187.1468,0.429 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 09).tif,PathCellObject,,201.46,116.84,28.5,389.9829,234.9744,176.6667,106.5,185.271,167.2313,166.5723,163.6817,0.2561 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 09).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,156.24,123.75,101,189.7709,440.9852,207.1724,231.5,515.4767,191.2238,573.7495,178.7476,0.4354 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 09).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,169.34,125.93,70.75,178.6444,853.6796,220.4437,174.75,1068.5835,203.4765,1214.9448,191.9209,0.4038 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 09).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,97.55,127.94,23.25,247.0722,760.7835,603.8145,79.75,621.2578,455.3603,561.1067,391.36,0.2853 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 09).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,258.34,137.74,109.25,299.4921,394.3651,295.2245,242.5,430.722,246.2379,460.7472,205.7828,0.4486 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 09).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,276.7,135.64,48.25,168.4623,548.5578,807.3668,152,404.7389,536.133,334.9341,404.4854,0.3168 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 09).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,95.62,136.31,30,242.2903,857.121,829.75,94.25,1000.5184,715.0079,1069.9766,659.4297,0.315 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 09).tif,PathCellObject,,189.92,140.02,82,226.6061,361.1454,222.2364,196.25,299.57,194.6565,255.0088,174.6974,0.4163 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 09).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,167.08,145.82,100.75,159.8861,979.2129,198.9084,243,991.3799,190.7741,1000.0035,185.0088,0.4118 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 09).tif,PathCellObject,,202.8,143.41,24,491.0606,215.5354,195.2626,98.25,182.0662,178.4427,170.7959,172.7789,0.238 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 09).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,232.86,145.68,28,412.8839,585.1786,208.6786,100.5,417.1337,183.8738,352.6781,174.3596,0.2693 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 09).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,104.97,150.13,88.25,166.4363,881.2805,212.4363,221,795.517,197.6652,738.5028,187.8456,0.3961 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 09).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,140.47,150.03,59.75,171.9372,521.2217,218.8494,170.5,637.0322,215.6808,699.3716,213.9752,0.3511 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 09).tif,cCASP3,cCASP3,61.56,154.58,31.25,190.9444,435.5555,2044.381,112.5,346.6533,1355.0867,312.0803,1087.0278,0.273 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 09).tif,PathCellObject,,227.63,156.2,41,167.7425,436.2395,180.8383,133,346.2622,175.6423,305.3188,173.2779,0.306 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 09).tif,PathCellObject,,199.82,159.35,139.75,188.0587,303.8185,298.2722,276.5,289.4629,244.9629,274.6324,189.8897,0.511 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 09).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,151.36,156.69,36.5,160.7697,856.3553,205.8816,114,787.5457,187.7196,753.5876,178.7565,0.3259 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 09).tif,PathCellObject,,78.22,159.06,34.5,145.4794,277.0891,214.2055,107,228.2953,188.7628,203.2113,175.6831,0.3276 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 09).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,175.53,164.46,116.75,274.4225,525.5584,478.4034,245,785.9531,334.948,1026.9077,202.2024,0.4777 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 09).tif,PathCellObject,,188.57,163.84,20.5,160.8139,344.1279,189.0581,74,290.44,182.6533,268.8645,180.0794,0.2758 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 09).tif,PathCellObject,,71.87,166.97,52.5,143.8981,309.2176,233.4676,139,268.714,202.4299,242.9823,182.7118,0.3796 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 09).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,150.28,168.2,67.75,212.8524,458.2214,212.369,153.25,557.4349,205.3046,635.8221,199.723,0.4374 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 09).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,129.48,170,104.25,179.2005,811.5656,244.8616,232.75,740.6417,224.2524,683.0504,207.5174,0.4498 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 09).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,246.61,169.82,111.75,203.5351,521.0789,188.7083,229,554.6608,179.1756,587.8785,169.7462,0.497 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 09).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,259.07,172.78,48.75,157.7047,783.2073,185.8446,123,593.3488,176.8629,472.4158,171.1419,0.3927 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 09).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,114.8,174.04,82,230.2831,399.9367,279.6295,202,405.5995,228.3164,409.5409,192.6017,0.4037 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 09).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,142.29,172.84,12.75,195.2264,1325.0754,224.6792,56.75,956.0044,206.3362,844.8636,200.8125,0.2154 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 09).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,171.13,177.05,40.75,159.2635,1068.5509,200.2395,142.25,1414.8298,196.7649,1558.3251,195.3251,0.2845 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 09).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,219.24,174.47,10,209.3415,1005.1707,194.5854,58.25,944.1313,187.4068,931.2974,185.8974,0.1562 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 09).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,223.78,181.41,57.75,301.2479,1153.1453,299.4445,129,1257.8176,246.7083,1343.1603,203.7108,0.4435 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 09).tif,PathCellObject,,322.31,183.53,33.5,375.4485,233.3162,168.1985,115.75,190.8728,160.0259,173.2744,156.6372,0.285 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 09).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,230.03,191.37,149,332.4435,427.7874,334.789,268.25,685.1341,275.3659,1013.3602,199.5763,0.5557 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 09).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,128.27,187.71,14.75,171.9524,563.2064,241.4603,71.5,405.257,192.5868,361.0311,178.9022,0.2024 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 09).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,137.53,193.69,97,269.2813,844.9565,209.3657,212.75,1098.6014,203.1958,1313.2662,197.974,0.4508 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 09).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,154.46,196.62,64.25,199.2682,2283.5518,253.5287,162.25,1984.8771,223.8356,1784.9949,203.9641,0.3945 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 09).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,79.63,204.22,83.25,196.8559,453.2973,212.9309,210,693.582,212.1164,850.7819,211.5835,0.3951 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 09).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,235.12,204.12,67,173.8836,500.7382,189.9382,190.5,565.4334,180.8825,601.668,175.8106,0.3547 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 09).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,158.69,208.78,113.25,200.1077,1331.1165,396.4989,227.5,2417.7544,304.1349,3499.6367,212.175,0.4944 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 09).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,138.54,208.23,28.25,172.1379,645.5431,223.6379,98.5,1061.7975,216.2608,1234.8638,213.1935,0.2872 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 09).tif,PathCellObject,,269.74,212.12,50.75,310.5588,286.0981,300.799,130.75,246.0608,224.5874,220.6956,176.3044,0.3795 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 09).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,146.06,217.85,116.25,193.5256,726.9765,925.1089,226,1244.8959,587.2658,1802.1057,223.7931,0.5157 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 09).tif,PathCellObject,,275.26,219.62,29,171.3846,309.9744,191.188,95.5,229.4099,176.0862,193.9737,169.4436,0.3014 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 09).tif,PathCellObject,,89.99,219.35,35.25,241.8681,289.3958,194.6806,119.5,212.6542,180.8146,179.7649,174.872,0.2897 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 09).tif,PathCellObject,,72.93,229.87,64.5,154.5682,296.0947,191.4886,183.75,245.8478,179.375,217.7436,172.5996,0.356 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 09).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,185.8,248.83,101.75,200.9014,465.9038,255.2356,236.5,453.4572,216.7054,443.7062,186.5198,0.4352 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 09).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,142.54,253.56,118.75,169.7796,999.7796,295.4615,299.75,940.4792,227.6508,900.808,182.2865,0.3995 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 09).tif,PathCellObject,,199.07,256.35,25.25,149.2692,206.1058,308.0192,103.75,157.6683,221.6947,141.5224,192.9199,0.2433 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 09).tif,cCASP3,cCASP3,264.63,260.56,53.75,162.0605,558.0605,4730.3208,167,299.7361,1982.7781,176.8606,675.8717,0.3157 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 09).tif,cCASP3,cCASP3,280.61,260.67,82.75,293.4834,357.3172,358.6646,194,309.6095,426.1714,274.1236,476.3843,0.4217 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 09).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,164.93,266.95,223.5,175.4978,488.6756,212.6063,407,599.9902,197.5233,735.5695,179.1526,0.5487 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 09).tif,PathCellObject,,194.16,276.45,33.25,397.1022,358.6642,202.4964,113.5,319.4276,192.9167,302.5768,188.8025,0.2873 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 09).tif,PathCellObject,,182.31,280.51,101,160.8309,249.2108,272.5858,233,217.3766,229.2006,192.5897,195.4198,0.4349 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 10).tif,PathCellObject,,178.56,86.47,31.5,148.3828,181.5156,165,115,144.1087,159,129.6868,156.6868,0.2696 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 10).tif,PathCellObject,,192.59,95.66,155,192.6821,326.0352,249.6709,320,287.5347,208.3653,250.7389,168.8885,0.4876 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 10).tif,PathCellObject,,173.62,113.52,130,206.2868,377.8738,231.7266,273.5,298.4895,204.6356,225.9056,179.8654,0.4748 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 10).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,219.35,136.32,159,192.0786,2365.4402,199.4371,320.25,1673.9337,184.3268,993.1316,169.4505,0.4936 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 10).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,145.54,135.44,69.75,227.8339,738.4205,244.7173,172.25,999.7547,205.5152,1181.9163,178.1897,0.4032 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 10).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,163.22,143.39,176.5,156.8594,1075.0398,190.2983,354.25,1070.7722,182.3032,1066.5645,174.4202,0.496 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 10).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,138.39,144.25,27,196.8919,612.5766,318,97.25,543.4077,241.2077,515.8889,210.6559,0.2708 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 10).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,172.42,173.04,82.75,328.2312,850.5616,197.7628,196.75,809.1039,186.6426,778.8289,178.5219,0.4172 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 10).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,196.25,200.08,78.5,174.2257,786.9404,321.4012,197,841.3317,260.7215,878.1699,219.6242,0.4009 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 10).tif,PathCellObject,,223.37,219.37,33.25,149.8044,229.0435,185.0652,121.25,164.748,170.5635,139.3971,164.8457,0.2785 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 10).tif,PathCellObject,,208.37,219.87,39.75,252.3681,451.5031,271.4233,120.75,288.8247,218.5361,206.4752,191.764,0.3283 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 10).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,72.38,231.25,131,146.7108,684.4764,299.4877,318,619.9718,289.6019,574.2918,282.6011,0.4125 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 10).tif,PathCellObject,,201.25,227.59,30.25,251.7016,351.1532,188.8065,94.75,248.8649,178.6519,200.2682,173.8276,0.315 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 10).tif,PathCellObject,,212.7,228.8,10,159.2609,220.087,176.7826,54.5,182.7032,170.6119,172.763,168.9711,0.1885 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 10).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,243.03,236.94,151.75,220.2904,734.3801,626.3817,313,944.0527,824.1022,1144.8796,1013.4813,0.4878 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 10).tif,PathCellObject,,207.39,236.65,40.25,170.0849,340.3697,194.5091,115.5,225.6624,177.4021,162.5733,167.9933,0.3492 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 10).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,216.08,258.16,83,172.991,416.9551,204.515,170.75,385.7786,203.1774,355.8563,201.8937,0.4851 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 10).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,206.14,259.16,80.5,184.4329,382.5335,250.1616,162,374.1997,228.7389,365.7368,206.9845,0.4969 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 10).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,89.42,262.16,85.25,188.4094,379.4181,431.0994,186.25,358.7131,322.9048,341.1856,231.3144,0.4555 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 10).tif,PathCellObject,,89.02,272.5,26.25,223.381,367.1048,263.7143,84,280.3894,219.3717,241.4786,199.4744,0.3004 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 11).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,220.78,57.84,53.25,203.2465,836.6232,330.9581,124.5,1150.3232,243.1044,1388.6466,176.3604,0.4216 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 11).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,216.81,66.23,84.75,171.2216,1883.2974,192.6385,170.25,1448.6501,182.3644,1014.0029,172.0904,0.5008 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 11).tif,PathCellObject,,218.51,76.58,24.5,163.15,508.38,173.3,75.5,328.683,164.5654,241.4515,160.3252,0.3119 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 11).tif,PathCellObject,,150.49,115.95,86.75,272.204,285.8506,185.4598,206.25,244.4601,175.7343,214.4521,168.6833,0.4195 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 11).tif,PathCellObject,,115.86,116.89,35.75,340.8699,321.2945,184.5616,119.5,220.8589,172.4585,177.2173,167.1994,0.2923 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 11).tif,PathCellObject,,133.96,115.93,32.25,325.356,411.7046,190.947,109,253.8178,174.6105,185.9316,167.5863,0.2906 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 11).tif,PathCellObject,,129.08,123.59,14.25,146.3226,248.6613,176.5968,74.75,183.4883,167.4381,166.4388,165.0422,0.185 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 11).tif,PathCellObject,,110.4,129.7,30,176.2097,376.4677,313.7581,115,221.0544,209.5391,163.6994,171.0774,0.2619 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 11).tif,PathCellObject,,159.82,142.97,38,157.2357,292.4968,179.4268,133.5,240.4813,169.8914,218.8196,165.9204,0.2842 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 11).tif,PathCellObject,,113.27,143.33,29,365.6083,290.775,185.4083,109.75,210.5455,175.7295,180.4594,172.1,0.2649 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 11).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,127.39,167.97,25.25,173.9806,1089.6311,178.9417,90.5,1215.3873,179.4423,1265.0154,179.6398,0.2713 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 11).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,137.05,173.89,87.5,302.4629,637.6943,346.8743,198.5,1102.532,263.2045,1466.4989,197.6913,0.4426 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 11).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,125.87,184.42,40.5,187.2892,1381.9819,196.4277,119.5,1389.5386,188.7996,1393.5464,184.754,0.3382 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 11).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,168.57,188.71,77.75,206.4613,2927.1064,460.5548,174,2263.8706,380.564,1729.8363,316.1559,0.4439 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 11).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,177.46,186.94,13.75,166.0345,3080.1379,312.8621,63.5,1698.3334,247.5155,1297.61,228.565,0.2125 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 11).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,138.8,186.56,15.5,174.0154,1484.0615,197.2154,71,1572.4351,184.9017,1598.5454,181.2636,0.2072 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 11).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,153.29,193.56,113.5,289.0373,326.8333,362.114,242,413.9928,276.5124,491.3171,200.57,0.4664 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 11).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,130.95,193.49,48.25,208.4221,773.201,190.9548,114,985.4518,187.1601,1149.8015,184.2218,0.4202 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 11).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,138.39,202.62,108.25,233.1835,562.8647,252.5917,238.5,966.8987,219.3413,1304.3678,191.569,0.4513 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 11).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,162.7,200.93,17.75,159.0556,3168.8193,1294.9305,91,2349.7004,790.3379,2147.7261,665.9178,0.1867 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 11).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,173.36,203.03,80.5,243.963,311.5154,201.3426,181.25,592.4239,205.5569,817.1506,208.9284,0.4356 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 11).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,163.87,213.73,27.75,165.0174,1118.9043,199.9565,88.5,1214.9132,192.7479,1260.5372,189.3223,0.307 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 11).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,172.59,217.25,46.75,163.2579,2096.7527,203.8474,127.5,1450.8809,187.6875,1069.7764,178.1522,0.3622 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 11).tif,cCASP3,cCASP3,96.03,216.48,28.25,181.4513,308.1239,4692.7524,106,208.0773,2017.5831,172.0732,1054.863,0.2565 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 11).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,136.24,220.31,109.75,268.8899,408.6022,194.0494,259.5,583.2469,196.6316,714.5253,198.5726,0.4244 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 11).tif,PathCellObject,,138.22,242.81,123.25,195.4162,345.6404,217.5354,274.5,327.3033,197.4217,312.2504,180.9104,0.4459 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 11).tif,PathCellObject,,308.63,249.34,19.25,174.925,123.3375,154.2375,88,122.2768,153.904,121.9672,153.8066,0.213 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 12).tif,cCASP3,cCASP3,157.59,82.56,59.25,288.7292,297.5375,379.45,145,287.8285,361.4528,281.035,348.86,0.4045 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 12).tif,PathCellObject,,153.72,92.17,38.75,384.9554,356.949,185.9427,105,284.8747,176.1229,242.3346,170.3271,0.3586 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 12).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,150.81,105.53,57.5,161.7778,459.6837,227.8162,159.5,413.2995,188.7379,386.6314,166.2703,0.3581 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 12).tif,PathCellObject,,100.49,109.58,77.5,247.9327,310.6538,225.8974,193.75,299.8134,212.7967,292.5398,204.0065,0.3978 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 12).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,128.86,110.83,18.5,163.2338,571.013,180.7662,73.25,552.0881,174.6203,545.4037,172.4495,0.2487 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 12).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,137.24,119.69,81.25,214.3172,458.4109,258.855,166.5,505.4813,229.6009,551.5769,200.9527,0.486 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 12).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,144.79,116.15,23,181.1134,576.5876,190.0103,74,530.2733,178.8833,508.1429,173.5665,0.3196 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 12).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,179.42,118.41,57.5,177.8846,5871.1069,182.2009,164,3298.2549,168.5948,1881.673,161.1035,0.3493 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 12).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,124.97,124.6,115.25,224.9637,980.2906,557.5705,269,1391.3594,351.8134,1707.2545,193.6946,0.429 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 12).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,165.95,135.2,138.5,205.6072,840.9604,208.3946,293.25,1154.7013,201.4562,1435.55,195.2452,0.468 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 12).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,189.05,141.01,60,270.9555,354.3806,230.7611,150.25,623.8704,214.7143,811.3746,203.5493,0.4045 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 12).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,183.84,153.75,169.5,253.9458,506.0733,198.9795,285.75,851.965,195.5446,1362.5671,190.474,0.5898 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 12).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,196.86,150.2,17.5,207.7432,3486.5405,209.8784,73.75,2638.0068,191.468,2356.4304,185.3587,0.2327 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 12).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,159.04,152.69,57,267.8826,418.1478,205.4478,155.75,436.1458,183.0946,446.6523,170.0457,0.3618 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 12).tif,PathCellObject,,205.37,158.99,45.75,472.1359,350.7989,194.163,116.25,299.7569,182.7399,266.8035,175.3649,0.3878 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 12).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,194.2,164.68,56.25,334.2489,381.2402,449.3843,129.5,406.8889,329.8372,426.9352,236.4027,0.4331 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 12).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,164.04,169.3,67.5,239.2904,654.8603,242.5625,163.5,834.4794,209.6809,962.0417,186.329,0.41 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 12).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,203.86,169.77,37,465.8533,415.16,240.26,99.75,419.1861,208.9206,421.5731,190.3399,0.3595 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 12).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,153.87,176.14,38.5,166.2547,2415.6584,222.472,116.5,1419.5924,207.8386,902.2806,200.2387,0.3336 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 12).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,169.01,177.19,9.5,180.6977,3464.1396,236.1628,45.5,2536.1353,215.827,2255.1196,209.669,0.2113 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 12).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,159.95,183.25,30,168.1429,2059.9683,211.9365,86.75,1496.6666,206.1753,1176.955,202.9054,0.3408 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 12).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,172.58,187.07,92,243.1898,1246.6711,211.7406,201.5,1326.9047,192.9554,1396.0461,176.7673,0.4604 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 12).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,133.17,195.36,76.5,280.1721,1022.2727,729.6624,184.75,1434.5797,434.8189,1728.5393,224.6065,0.4079 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 12).tif,PathCellObject,,145.8,200.62,71.25,226.9441,361.514,313.7867,174.75,330.6772,237.9214,309.3744,185.5121,0.4085 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 12).tif,PathCellObject,,90.97,200.63,32.5,188.6466,261.1805,180.9173,118.5,213.0483,172.9832,194.3848,169.9067,0.2748 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 12).tif,PathCellObject,,130.7,216.75,23,353.3789,228.6632,174.1263,94.5,184.372,171.1082,169.5563,170.0986,0.2375 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 12).tif,PathCellObject,,151.18,234.56,96.25,152.3144,343.5851,192.951,240.5,251.485,181.0021,189.5529,172.9671,0.3985 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 13).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,184.11,89.93,63.5,230.3217,1660.7325,282.3372,134.75,2471.9038,227.5056,3214.0391,177.3404,0.4673 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 13).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,175.98,97.78,73.25,241.6409,1153.3724,280.849,154.75,1750.8741,227.3371,2303.8416,177.8137,0.4751 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 13).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,189.73,97.29,14.75,159.6333,9082.417,177.2833,56.75,5056.6157,166.262,3627.3372,162.3491,0.2494 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 13).tif,PathCellObject,,158.62,104.93,37.5,199.3117,300.4935,179.013,127,190.8141,165.2055,143.5014,159.2493,0.2945 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 13).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,174.92,111.26,59.25,159.325,1680.9875,193.7,167,1313.1093,176.4775,1106.8224,166.8201,0.3639 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 13).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,184.38,107.79,20.25,165.1046,3176.8953,186.4767,75.25,2024.2871,173.4422,1567.493,168.2765,0.2746 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 13).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,54.75,129.24,105.5,184.609,497.6825,254.9929,233.5,638.2527,214.4111,754.1133,180.9629,0.4493 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 13).tif,PathCellObject,,108.07,128.56,33.25,317.2963,303.4296,194.1704,114.5,206.9499,176.4662,166.75,169.0895,0.284 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 13).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,208.8,136.29,97.75,266.5718,1387.0251,246.3375,245.5,1693.1373,236.1343,1900.5205,229.2218,0.3996 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 13).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,81,134.75,91.75,190.9891,376.8365,471.1744,207.75,464.0721,430.1971,532.9226,397.8559,0.444 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 13).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,200.67,131.96,17,204.3014,1140.2466,238.4794,65,1044.2765,204.5833,1007.5969,191.6283,0.2651 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 13).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,158.91,138.92,17.5,185.9733,1022.7466,189.8,91.5,707.4864,187.7147,626.7884,187.1809,0.1933 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 13).tif,PathCellObject,,97.19,139.65,32.5,222.9925,262.6316,282.5489,97,200.4578,216.6854,168.407,182.7326,0.3343 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 13).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,177.33,143.42,105.75,319.4426,345.3232,255.9227,236.5,654.0727,224.2971,906.6322,198.4272,0.45 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 13).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,223.05,142.72,47.25,200.9588,481.7062,207.2113,144.25,431.9637,184.9931,406.8333,173.7682,0.3259 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 13).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,125.84,145.44,42.25,232.2047,750.0936,202.8129,117.25,998.0763,191.7966,1138.9568,185.5382,0.3493 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 13).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,135.87,144.95,24.25,197.2626,1036.7576,191.5657,76.5,1316.424,186.2168,1448.2667,183.6952,0.3071 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 13).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,79.15,148.38,43.75,210.8827,818.9832,199.7151,127.75,1649.6523,201.0391,2096.1682,201.7507,0.3405 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 13).tif,PathCellObject,,94.36,148.66,20.25,158.2738,178.3571,168.7024,79,156.8585,167.0157,149.141,166.4103,0.2538 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 13).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,151.32,152.24,136.25,296.0492,478.8543,186.6958,245.25,867.7667,188.7961,1356.3547,191.4348,0.5495 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 13).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,200.87,149.92,66,299.8534,494.985,1557.7518,151.75,910.9243,833.7648,1234.4327,270.6638,0.4309 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 13).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,115.01,150.26,50,207.393,303.3532,586.0945,120.25,366.9628,400.9773,412.1414,269.4982,0.4145 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 13).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,140.62,149.94,25,241.4757,734.6699,245.9612,52.5,880.5187,224.9346,1015.8558,205.4234,0.4724 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 13).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,186.14,156.4,93.75,242.4812,623.7043,244.5054,213.25,1259.4531,220.0199,1750.1141,201.1224,0.4333 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 13).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,121.93,158.09,64.5,231.3396,488.9698,218.4075,144.5,533.3127,199.1203,570.3817,182.9968,0.4528 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 13).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,138.74,157.32,29.75,224.0082,668.9262,238.6803,81.25,1170.6006,218.5732,1467.7087,206.6651,0.355 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 13).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,208.22,159.91,77.75,318.9778,430.7841,217.3365,161.25,588.779,201.5471,738.6837,186.5663,0.4784 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 13).tif,PathCellObject,,62.77,159.87,32,316.8947,293.0977,188.4436,113,301.1258,185.1832,304.4625,183.8281,0.2841 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 13).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,74.7,161.21,40.75,224.7143,692.3095,194.4881,128.5,712.6467,184.2317,722.4086,179.3086,0.3126 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 13).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,100.3,164.18,36.5,283.9597,592.0872,205.5101,121,396.9076,184.1828,310.8669,174.7811,0.2946 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 13).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,147.3,164.63,14.75,233.0159,535.5873,198.5714,59.25,962.7059,193.7857,1116.4686,192.0629,0.2415 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 13).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,164.19,167.1,73.75,222.5034,347.1327,232.2687,174.5,421.7265,216.6838,475.4779,205.4534,0.4174 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 13).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,196.2,165.2,9,191.925,930.1,297.7,59.5,1007.6736,232.113,1023.2664,218.9296,0.1491 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 13).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,209.13,172.19,97.25,277.9949,495.2558,214.5627,181.5,904.8987,209.5992,1375.9883,203.8912,0.5318 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 13).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,137.97,170.28,48.5,239.5657,730.7172,341.3737,138.5,900.6864,331.3656,994.1694,325.8611,0.3491 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 13).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,126.49,171.9,23.75,190.6061,454.505,190.7778,76.5,905.0387,192.0419,1116.4265,192.6351,0.3046 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 13).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,183.26,173.15,57.75,212.0766,828.2979,206.4979,159,1076.9355,196.7704,1222.6459,191.0698,0.3639 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 13).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,114,169.99,9.75,167.75,1243.8,190.675,52,830.6603,182.0861,732.8757,180.0533,0.1698 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 13).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,119.96,172.73,29.75,217.7623,367.0328,191.5984,68.5,416.2036,190.0436,455.4118,188.8039,0.4274 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 13).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,196.82,176.79,82,230.7933,820.1915,238.1368,168,1014.8652,221.9674,1199.974,206.5925,0.4874 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 13).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,160.74,176.57,32,319.3333,1030.3556,333.9704,95.75,1256.348,323.6883,1378.384,318.136,0.345 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 13).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,147.02,175.94,21.25,438.0114,518.6932,188.2841,74,992.4247,194.7993,1190,197.5166,0.2818 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 13).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,171.44,178.96,14.75,200,867.7742,192.0161,62,938.747,200.8835,962.2781,203.8235,0.2336 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 13).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,120.15,183.75,72,272.9315,890.9418,194.1404,181.75,1003.0756,187.4615,1078.1743,182.9885,0.3948 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 13).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,149.31,184.89,51.5,296.3495,412.9272,208.2039,133.75,602.6201,192.4842,720.6768,182.7009,0.3761 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 13).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,174.19,187.77,113,224.1852,885.8475,279.2723,229.25,1072.6254,242.8458,1258.1904,206.6558,0.4946 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 13).tif,PathCellObject,,225.64,187.87,59,222.9958,255.8983,209.8305,157.75,223.2674,186.0032,203.8207,171.803,0.3641 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 13).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,204.93,189.51,86.5,263.7557,347.8908,363.1897,196.75,464.9061,265.8109,557.4545,188.7932,0.4385 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 13).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,191.94,188.73,25,184.5437,955.6699,196.0194,93.25,1325.7162,196.9735,1464.8212,197.3321,0.263 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 13).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,183.91,196.46,71.5,223.5567,605.6632,209.7354,153.75,720.1637,214.752,822.3712,219.2301,0.4637 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 13).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,197.88,201.59,39.25,316.0688,461.5938,263.2437,120.75,399.498,261.4054,369.0215,260.5031,0.3214 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 13).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,172.64,204.02,45.5,194.2849,493.9086,261.4624,127.75,421.3431,217.692,380.0673,192.7951,0.3563 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 13).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,186.63,208.03,75.25,293.8775,472.4967,559.1523,168.75,448.3309,483.2585,428.8693,422.1387,0.4447 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 13).tif,PathCellObject,,106.24,209.42,27.5,364.193,314.6053,202.8772,106.75,252.815,207.2693,230.3099,208.869,0.2566 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 13).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,115.43,217.25,76,295.9838,368.6753,437.25,198.5,448.6461,732.4119,499.3271,919.4691,0.3799 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 13).tif,PathCellObject,,78.4,214.62,31,179.5039,266.4803,192.6614,113.5,179.3319,176.0857,145.5884,169.6677,0.27 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 13).tif,PathCellObject,,101.54,228.74,46.25,188.5288,289.4764,210.0838,135.75,229.293,189.8077,196.9127,178.8986,0.3388 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 13).tif,PathCellObject,,92.76,234.39,32,200.875,385.7353,225.5,103,308.8169,216.3735,271.3226,211.9247,0.3123 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 13).tif,PathCellObject,,116.25,238.1,40,261.8909,250.3758,197.9454,129.75,194.8023,184.476,169.0449,178.2331,0.3055 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 13).tif,PathCellObject,,174.84,254.19,30.5,308.881,277.6111,187.3016,112.5,202.1189,176.5507,173.1189,172.4207,0.2678 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 14).tif,PathCellObject,,114.42,65.96,33.5,233.1926,214.6222,168.0518,119.25,158.6101,160.4382,136.5,157.4328,0.2775 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 14).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,222.14,95.1,329,168.9849,484.7002,177.891,557.75,500.7519,174.5846,524.1046,169.7742,0.5927 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 14).tif,PathCellObject,,99.33,92.02,35,250.5493,275.7394,174.1268,117.5,202.286,166.1864,170.6788,162.7697,0.2875 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 14).tif,PathCellObject,,195.47,102.82,53,256.8341,293.8065,182.1014,118,308.865,176.443,321.5798,171.6654,0.4489 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 14).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,204.55,100.7,15,231.65,613.8,205.55,58,366.8712,179.7897,281.2312,170.8555,0.2488 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 14).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,126.61,106.2,50.75,189.9521,376.4641,190.0431,133.5,513.3967,186.0782,600.6494,183.5518,0.3816 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 14).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,116.42,108.64,57.75,189.5153,361.1092,201.7162,137.75,491.5135,196.7612,582.5579,193.3018,0.4101 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 14).tif,PathCellObject,,201.15,111.32,38.75,202.443,322.9051,181.4304,102,317.2295,177.4807,313.7266,175.043,0.3772 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 14).tif,PathCellObject,,165.41,113.02,40.25,276.4849,307.9758,178.7818,131.25,229.365,168.6635,193.4349,164.0388,0.3056 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 14).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,123.58,117.2,31.75,240.1515,653.447,221.3561,83.5,711.4332,198.3887,748.7708,183.6,0.3786 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 14).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,208.54,120.15,37.75,191.0314,522.0629,200.6415,113,580.6813,189.9714,612.1689,184.2399,0.3414 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 14).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,198.84,127.8,101,261.1376,395.3071,247.0688,200.75,517.2916,218.7742,641.7218,189.9123,0.4991 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 14).tif,PathCellObject,,107.49,126.51,23.75,185.8788,241.6061,175.9192,82.25,249.0423,171.9607,252.2155,170.2715,0.2788 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 14).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,161.18,127.59,46.75,378.4474,567.6473,205.8947,131.75,842.5701,196.4034,997.1124,191.0681,0.3532 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 14).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,210.43,129.56,19.5,185.759,608.3615,205.6626,58.5,808.937,194.1092,916.3419,187.9226,0.3293 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 14).tif,PathCellObject,,246.74,134.65,183.5,170.7026,287.8336,185.7271,371,233.0978,176.1768,179.5314,166.8304,0.4913 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 14).tif,PathCellObject,,115.59,129.03,17.5,199.5143,163.0429,170.2143,60.75,155.0816,167.9959,151.8971,167.1086,0.2674 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 14).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,190.37,138.12,67.75,251.4322,412.2161,222.5018,162.25,546.578,210.3027,642.853,201.5617,0.4143 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 14).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,109.48,136.93,47,167.0842,495.7842,188.9263,130.5,354.0706,178.5286,273.4551,172.6138,0.3581 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 14).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,157.89,137.96,58.75,233.4876,489.1405,221.9959,156.25,653.4738,216.9205,756.2352,213.7468,0.3828 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 14).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,167.37,146.51,31.5,230.2727,446.3712,215.8485,85.75,463.7254,197.3266,474.4299,185.9019,0.3724 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 14).tif,PathCellObject,,240.09,145.28,17.25,156.5857,225.1143,178.7429,71.5,155.9723,167.3529,133.8721,163.7123,0.2328 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 14).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,197.14,149.23,48.25,235.5128,518.5077,203.7128,112.75,506.5011,194.4261,497.4264,187.407,0.4256 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 14).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,159.38,153.52,134.75,231.5722,324.0148,218.6278,257.75,493.8166,208.3803,678.6815,197.2238,0.5171 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 14).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,184.84,151.65,68.5,221.8982,501.4582,212.3564,163,614.9022,195.8211,697.2164,183.8232,0.4148 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 14).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,121.65,154,46.5,180.5185,1063.7513,231.4074,132.75,1195.985,200.8569,1269.0614,183.9737,0.3521 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 14).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,135.6,157.64,110.25,206.0045,476.204,379.7377,243.25,855.2156,301.6376,1175.3655,235.6667,0.4542 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 14).tif,PathCellObject,,245.25,154.96,23.5,372.8776,249.3775,187.4694,76,196.9706,172.8758,172.2788,166,0.2984 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 14).tif,PathCellObject,,253.51,157.08,22.5,375.8352,226.5934,176.011,77,185.2724,170.141,168.2579,167.724,0.2756 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 14).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,201.36,161.05,92.75,310.0269,393.372,198.7736,189.5,611.4485,197.1201,820.509,195.5349,0.481 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 14).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,214.87,159.55,22,173.1277,468.7021,180.1489,86.75,416.6371,171.84,397.5195,168.7891,0.2549 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 14).tif,PathCellObject,,105.76,165.73,30.75,250.8504,293.2126,195.9291,112.5,221.0089,181.5288,192.7939,175.9015,0.2691 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 14).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,211.26,171.66,99.25,229.9799,449.6985,216.8241,217.75,462.8952,197.3007,473.8375,181.1125,0.4491 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 14).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,130.93,170.14,30.75,293.0635,630.1031,193.2143,95.75,681.3743,189.2853,706.6094,187.3516,0.3163 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 14).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,234.17,170.83,86.5,297.6897,585.7471,219.1264,208,711.6875,203.1695,802.2397,191.6963,0.4144 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 14).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,141.25,170.49,34.25,186.6667,2534.5532,839.1489,115.5,1959.8134,839.7167,1710.4646,839.9631,0.2939 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 14).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,121.65,171.61,27.75,333.9646,454.823,894.4071,97,394.7692,563.1718,370.2708,428.0469,0.2699 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 14).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,111.22,175.98,49.75,167.8835,738.3447,213.2573,148.25,642.2148,203.6594,591.4385,198.5897,0.3342 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 14).tif,PathCellObject,,74.63,174.32,33.75,192.1727,291.3813,183.1151,120.5,189.4345,172.7048,148,168.4737,0.2747 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 14).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,154.86,176.19,14,251.6333,559.5333,229.2833,65,382.8977,200.0152,330.9461,191.4069,0.2132 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 14).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,244.25,180.55,85,347.6608,722.0818,237.7368,202.25,1054.7008,205.3795,1298.2891,181.6831,0.4191 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 14).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,146.73,182.36,61.25,269.876,318.22,325.236,155,357.672,295.4341,384.1855,275.4059,0.3944 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 14).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,203.07,190.56,123.75,271.3622,411.0241,300.4467,257.75,559.5702,242.4743,697.3079,188.7202,0.4749 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 14).tif,PathCellObject,,89.28,192.57,32.75,275.6391,338.9323,204.8346,115.5,204.4989,180.4989,150.3182,170.6909,0.279 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 14).tif,PathCellObject,,233.55,193.12,66.75,146.5166,236.7565,171.7675,181,181.7628,166.2179,148.9361,162.9053,0.3718 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 14).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,188.49,196.08,31.25,366.7795,496.9685,236.7559,97,708.4706,220.6496,810.2159,212.9015,0.3172 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 14).tif,PathCellObject,,117.46,200.55,44.75,173.2762,401.674,210.7956,106,322.8548,193.897,264.8618,181.4634,0.4152 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 14).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,180.51,201.56,12.25,178.7547,739.8302,216.1132,67,735.3234,193.9814,734.2176,188.5509,0.1839 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 14).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,207.49,203.4,25.25,411.5096,284.5962,188.2308,91,374.7493,181.9101,410.3992,179.4106,0.267 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 14).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,170.52,205.06,53,225.2884,689.8279,194.7488,148,691.7285,184.8061,692.8095,179.1508,0.3546 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 14).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,191.52,207.2,96.5,253.2113,328.634,194.9407,208.75,411.8053,189.9749,483.6771,185.6837,0.4572 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 14).tif,PathCellObject,,107.02,205.81,34.25,242,377.4245,203.5827,102,286.8029,191.4939,240.4926,185.3162,0.3302 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 14).tif,PathCellObject,,119.1,209.08,38.25,173.9491,380.4968,215.4841,98.25,296.302,193.2284,240.5274,178.4852,0.3911 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 14).tif,PathCellObject,,206.57,212.43,20.25,192.9535,295.1395,182.7907,86.75,231.4069,172.447,210.5665,169.0646,0.2335 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 14).tif,cCASP3,cCASP3,156.76,216.76,27,251.1786,420.4911,666.1161,107.25,332.6,468.0279,301.6447,398.261,0.2549 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 14).tif,PathCellObject,,132.06,219.52,168.25,170.6073,367.7441,213.2735,336.5,282.5156,198.3789,195.4955,183.1712,0.5015 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 14).tif,PathCellObject,,117.24,226.41,27,227.1982,200.964,177.1261,85.5,167.7551,172.3848,151.8664,170.1164,0.3166 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 14).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,135.38,231.88,44.5,164.5531,625.4749,584.676,112.5,728.275,713.6208,795.9265,798.478,0.3896 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 14).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,142.88,235.83,49.5,145.7734,625.8325,376.936,133,507.4944,361.5955,434.9184,352.1873,0.3735 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 14).tif,PathCellObject,,121.92,234.2,32,208.8473,215.2519,183.4046,100,187.0819,175.933,173.5147,172.3346,0.3153 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 14).tif,PathCellObject,,168.57,243.6,45.5,159.9135,381.4703,294.4973,130.75,310.019,273.0247,271.1412,261.3412,0.3442 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 14).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,156.83,245.43,81,196.3969,835.72,463.2369,181,628.8402,364.2589,461.1696,284.0399,0.4423 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 14).tif,PathCellObject,,141.82,251.5,33.5,229.1594,271.9058,195.0652,117.5,226.9449,205.7691,208.3683,210.1916,0.2782 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 14).tif,cCASP3,cCASP3,184.18,251.2,24,184.1313,231.2323,433.3535,88.25,176.1497,301.5424,154.7647,250.3686,0.2681 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 14).tif,PathCellObject,,175.92,253.49,26.25,225.0727,237.3545,188.8818,87.5,243.3295,210.2443,246.0455,219.9545,0.2923 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 14).tif,cCASP3,cCASP3,127.32,258.49,30,214.08,278.712,1819.4399,103,243.9442,1066.8374,228.8014,739.0488,0.2955 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 14).tif,cCASP3,cCASP3,135.55,258.07,14.5,201.7705,361.6066,3444.5574,60.75,320.8286,2425.5918,307.3098,2087.7827,0.23 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 14).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,167.67,264.1,37.75,154.5338,3254.5879,209.5608,131.25,2619.1199,186.076,2370.3123,176.881,0.2789 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 14).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,158.56,271.88,31.5,354.5669,455.2835,202.4803,110.25,759.7438,181.4104,882.8854,172.8885,0.2775 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 15).tif,PathCellObject,,317.37,74,19,155.7875,125.075,146.525,90.5,122.3664,146.4986,121.6007,146.4912,0.2038 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 15).tif,cCASP3,cCASP3,113.21,88.13,64.25,219.8231,347.4115,570.7577,171.5,272.7663,423.5196,227.5268,334.2844,0.3736 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 15).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,171.28,100.04,103.25,282.4639,370.0913,240.4279,226.25,580.137,227.7646,758.8262,216.9918,0.4572 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 15).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,154.67,104.33,99,187.0781,472.7305,242.6851,229.5,531.0445,209.5813,575.1409,184.5486,0.4271 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 15).tif,PathCellObject,,230.41,111.14,66.5,148.8259,513.6815,210.2963,191.75,303.7943,178.3242,190,160.99,0.349 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 15).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,171.07,113.89,45,169.2043,1478.0699,226.9032,140.25,1352.363,245.5587,1290.1782,254.7872,0.3254 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 15).tif,PathCellObject,,99.21,115.46,24.75,317.8627,238.7647,199.5784,81.25,192.0937,181.3595,171.3057,173.2445,0.2922 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 15).tif,cCASP3,cCASP3,247.82,121.27,42,563.6901,263.7485,1085.538,132.25,221.3409,668.3051,201.1972,470.1194,0.3141 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 15).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,178.12,122.06,62.5,229.5039,378.5354,361.815,129.25,666.9693,317.0442,941.3596,274.4532,0.4715 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 15).tif,PathCellObject,,101.28,123.44,24.5,368.7921,271.1584,183.7921,79.25,196.3323,173.3229,161.6651,168.4725,0.3031 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 15).tif,PathCellObject,,145.83,121.94,25.5,151.7009,332.215,212.2523,105.5,195.5094,180.2441,149.6552,169.5078,0.2337 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 15).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,188.02,125.04,16.25,191.2174,602.2174,200.8261,63,910.1953,196.9414,1023.8342,195.508,0.253 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 15).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,113.43,127.8,36.5,168.7987,1629.5973,208.4698,123,896.8438,187.6673,579.4593,178.657,0.2904 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 15).tif,PathCellObject,,128.42,131.42,52,204.0284,314.4787,231.981,132.5,326.7213,203.6064,334.7938,184.8969,0.3884 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 15).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,178.55,133.1,71,256.2448,344.0839,379.1608,154.25,559.5186,280.3582,745.6647,194.9879,0.4575 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 15).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,191.37,133.95,28.5,398.4,840.0174,207.5826,91.5,767.6467,285.1631,734.751,320.4269,0.3001 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 15).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,121.33,138.57,68.5,223.8152,540.8949,1056.7717,149.25,922.3283,1758.8417,1247.2531,2356.9011,0.4553 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 15).tif,PathCellObject,,202.11,137.76,40.75,246.0679,434.7839,228.9691,120.25,280.2289,271.3258,202.7121,292.5697,0.332 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 15).tif,PathCellObject,,231.1,138.27,31,193.5827,384.315,198.0157,108.5,302.554,187.8184,268.8409,183.6136,0.286 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 15).tif,PathCellObject,,192.82,143.95,29.75,276.8279,261.5738,183.5164,90,222.1635,178.1553,202.5388,175.4857,0.3311 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 15).tif,cCASP3,cCASP3,242.14,142.08,22.25,489.7582,225.3626,1052.4396,91.75,178.3978,573.1199,162.913,415.0833,0.2344 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 15).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,115.08,149.03,41.25,282.3195,1392.6154,2466.7041,130,1536.879,2828.6143,1606.1421,3002.3721,0.3184 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 15).tif,PathCellObject,,234.54,149.1,33,422.4105,327.7686,237.8209,104.75,284.8218,293.3919,264.7701,319.338,0.3047 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 15).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,133.26,150.61,18.5,236.8333,818.6154,1779.5513,75.75,455.4216,1276.0719,331.1711,1103.829,0.238 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 15).tif,PathCellObject,,217.3,152.8,22,246.191,174.6067,268.5506,92.5,150.8814,192.2318,143.3936,168.1454,0.2276 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 15).tif,cCASP3,cCASP3,127.02,156.67,24.5,288.01,330.23,770.01,84.5,285.4561,547.7924,266.9546,455.9669,0.2796 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 15).tif,PathCellObject,,155.08,159.36,30.25,396.871,256.6048,178.3226,107.5,210.9884,174.7361,192.6234,173.2922,0.2767 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 15).tif,cCASP3,cCASP3,211.42,164.76,9.75,269.093,187.2093,336.2093,55.25,212.348,377.9383,218.2228,387.6902,0.1683 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 15).tif,PathCellObject,,244.51,166.2,27.75,450.2768,249.4375,178.5179,105,219.2857,169.7262,208.3214,166.5292,0.2558 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 15).tif,PathCellObject,,202.82,168.23,31.25,454.0078,318.6172,234.7969,103,260.477,205.7143,234.3649,192.6526,0.2991 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 15).tif,PathCellObject,,230.69,169.29,53,482.4768,281.6667,220.7963,157.25,283.8687,204.7801,285.012,196.4639,0.334 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 15).tif,PathCellObject,,217.91,168.72,24.25,595.89,320.38,221.97,82.25,325.3283,249.7771,327.4612,261.7629,0.2848 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 15).tif,PathCellObject,,149.14,173.79,92.5,177.9519,420.4438,221.4813,222.5,343.0874,199.0404,287.2355,182.8378,0.4159 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 15).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,136.19,173.7,59.5,203.209,583.5656,236.4795,157.25,579.7037,207.2076,577.2687,188.7519,0.3789 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 15).tif,PathCellObject,,110.88,174.39,25.25,218.3725,244.4314,194,94.25,188.4005,194.6472,167.6182,194.8873,0.2567 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 15).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,211.66,175.58,18.5,207.1646,469.2278,279.924,60.75,442.4082,264.1429,429.6446,256.6325,0.3012 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 15).tif,PathCellObject,,222.65,177.14,23.75,290.8367,293.8673,188.5204,89.25,310.5933,197.6657,316.8736,201.0996,0.2607 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 15).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,203.73,179.69,50,247.5419,404.3054,268.0443,116.25,411.0258,243.3455,416.2129,224.2814,0.4272 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 15).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,194.6,181.24,24.5,406.6832,357.0594,200.2574,82.75,421.5,215.4699,449.6753,222.1212,0.2867 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 15).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,120.88,182.97,31,328.5736,688.6822,216.4264,107.75,458.3724,307.669,361.281,346.134,0.2869 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 15).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,215.3,185.5,42.25,261.7457,367.6358,212.3064,107.75,351.8469,206.0278,341.2597,201.8178,0.3962 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 15).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,79.33,182.73,18.25,154.6579,812.4474,862.9079,79,488.4528,458.239,386.7025,331.1529,0.2338 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 15).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,106.45,184.25,30.25,201.8548,535,212.1532,109.5,352.3462,212.3575,281.1227,212.4371,0.2742 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 15).tif,cCASP3,cCASP3,242.95,184.98,49.25,190.6231,648.5628,5366.7939,144.5,349.9449,2232.2703,194.3822,599.3639,0.3366 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 15).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,173.93,186.26,63.25,210.0506,2315.2334,205.0934,149,1495.8064,188.3456,880.038,175.7602,0.4221 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 15).tif,PathCellObject,,229.69,188.32,34.25,207.5106,312.9858,213.2128,110.75,269.9798,205.5269,250.0984,201.9738,0.3074 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 15).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,127.67,189.62,38.25,210.7342,543.2025,1306.5316,116.25,575.8455,1019.2768,592.5909,871.9188,0.332 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 15).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,80.82,189.74,16.75,201.3731,632.7313,750.4478,55.75,556.2311,525.1644,523.7911,429.6329,0.2831 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 15).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,191.02,189.69,25.5,172.8505,919.9346,246.4486,106.5,846.5524,225.4732,822.1677,218.5031,0.2391 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 15).tif,PathCellObject,,89.53,190.73,30.75,326.1984,357.9762,207.0397,90.75,271.7344,198.4878,227.0165,194.0535,0.3306 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 15).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,208.5,194.65,44.75,382.6393,325.3169,483.459,135.5,352.0018,347.0902,365.5667,277.7694,0.3329 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 15).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,170.74,195.02,42.25,204.44,2093.4399,198.8571,109.75,1620.2427,185.1111,1308.9286,176.0677,0.3904 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 15).tif,PathCellObject,,221.77,193.06,33.75,342.6331,286.4173,358.1583,77.5,285.5446,288.6019,284.8514,233.3543,0.4358 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 15).tif,cCASP3,cCASP3,132.87,197.57,81.75,245.8537,315.75,660.939,179.5,297.4903,415.2756,282.2893,210.764,0.4524 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 15).tif,PathCellObject,,84.78,197.8,9.75,174.7,358.975,181.625,49.5,257.76,174.555,232.4563,172.7875,0.1789 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 15).tif,PathCellObject,,220.44,199.93,21.5,564.3371,258.8539,335.8427,60.75,240.8618,259.7317,230.6624,216.586,0.3431 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 15).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,148.78,202.06,84.25,214.8676,487.6382,195.5853,207,507.5054,182.9589,521.3758,174.1437,0.4053 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 15).tif,PathCellObject,,213.52,205.24,24.25,401.4445,311.4445,177.899,81,281.8492,180.3015,268.8849,181.354,0.2959 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 15).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,174.25,207.41,29,239.3802,889.3636,198.1488,119.25,412.1681,180.5861,249.5183,174.6,0.2427 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 15).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,129.54,209.73,72,243.0658,322.0034,277.9827,160.25,648.338,231.2512,913.2556,193.3146,0.4417 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 15).tif,PathCellObject,,136.08,217.79,23.5,160.202,369.3232,189.3333,95.25,284.7403,178.8857,255.4615,175.2692,0.2482 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 15).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,114.95,218.06,33,302.5606,473.1288,203.9015,106.75,980.4836,191.9182,1206.7365,186.5743,0.2971 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 15).tif,PathCellObject,,122.61,224.26,44.25,223.2088,327.3242,216.2033,130.75,298.8276,195.5398,283.8382,184.6705,0.3354 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 15).tif,PathCellObject,,147.41,224.68,57.5,241.4274,355.3761,233.7564,154.25,277.6494,200.5557,230.4078,180.3766,0.3733 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 15).tif,PathCellObject,,131.23,227,20.25,258.9405,341.3333,202.3571,65,284.9199,203.374,258.2978,203.8539,0.3052 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 15).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,151.19,237.1,76,224.7068,370.7101,193.1726,183.75,356.7436,183.1167,346.7721,175.9372,0.4092 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 15).tif,PathCellObject,,129,236.05,23.5,201.5684,245.7684,188.0737,90.75,200.0606,178.708,183.8582,175.3881,0.2501 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 15).tif,PathCellObject,,190.86,245.55,41.5,243.6154,361.3077,202.7929,123.75,247.9859,180.873,189.419,169.5443,0.3308 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 15).tif,PathCellObject,,200.15,245.17,17.25,167.7027,169.054,169.7838,74,143.404,166.5152,134.8924,165.4305,0.2282 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 15).tif,PathCellObject,,179.59,250.35,28.5,407.4397,276.7155,184.8965,106.5,178.8949,170.1706,142.5256,164.6955,0.2622 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 16).tif,PathCellObject,,185.94,78.39,35.75,358.132,343.1667,184,119.5,341.6854,178.7688,341.0506,176.5268,0.2904 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 16).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,99.27,123.93,33.25,187.1333,778.6519,193.2444,111.75,663.4521,185.7127,613.9236,182.4745,0.2933 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 16).tif,cCASP3,cCASP3,158.34,131,21,362.8506,296.3908,424.7356,80.75,311.5749,409.2324,317.0792,403.6125,0.2494 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 16).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,100.93,132.94,24.75,286.4615,2216.9424,196.5962,76.5,1913.932,192.9903,1760.2097,191.161,0.3169 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 16).tif,cCASP3,cCASP3,151.6,134.5,15.5,287.6667,361.0317,385.1587,51.5,319.2967,343.0574,301.2877,324.8904,0.2849 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 16).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,93.76,136.92,13.75,220.9138,2132.2759,189.3965,62.75,1342.3506,178.6494,1104.9637,175.4197,0.2155 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 16).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,146.68,141.34,51.75,204.9375,756.2211,198.0577,136.75,692.6248,196.0419,653.8328,194.8123,0.3732 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 16).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,103.47,144.79,57,173.7403,1798.7749,346.6104,160.75,1671.5994,265.9363,1600.4673,220.8136,0.3534 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 16).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,204.43,148.39,30,403.2917,374.55,387.8083,92.5,381.7493,1534.9973,385.1912,2083.4541,0.3102 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 16).tif,PathCellObject,,213.93,148.46,28.5,588.4052,267.1638,200.7414,81,199.3981,186.7253,161.6058,178.9087,0.3487 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 16).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,94.3,154.55,102.5,199.7458,461.9661,216.4092,192.25,607.8016,209.5266,776.0419,201.5866,0.53 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 16).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,134.8,155.59,95.25,217.0789,437.2079,300.0789,216,629.8795,266.0939,781.4637,239.3561,0.4367 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 16).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,156.01,154.49,73.5,185.28,1372.16,318.6467,176,1142.244,244.0014,971.9358,188.7086,0.4164 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 16).tif,PathCellObject,,187.8,154.78,28.5,451.8136,317.1017,199.4746,85.5,300.6387,211.4566,292.1184,217.6579,0.3199 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 16).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,108.32,160.77,121.25,272.0388,807.6605,296.0266,250,1333.6923,248.042,1836.0938,202.2129,0.4878 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 16).tif,cCASP3,cCASP3,212.84,158.66,51.5,549.0242,328.7826,652.5314,145.5,333.9656,1222.7423,336.8267,1537.4987,0.352 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 16).tif,PathCellObject,,179.6,157.18,27.25,466.5909,323.9636,195.1545,84.5,321.2164,186.5789,319.9138,182.5129,0.3142 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 16).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,121.19,163.8,114.75,219.1853,445.7435,247.4138,241.75,866.7899,226.9475,1252.1262,208.217,0.4744 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 16).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,194.41,159.92,12,199.898,821.4286,284.2857,64.75,538.8889,269.2414,473.5849,265.7642,0.183 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 16).tif,PathCellObject,,160.18,162.48,15,197.4098,506.3443,221.7705,59,299.4664,183.3109,228.1695,170.0565,0.2384 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 16).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,91.46,165.13,28.5,288.0847,465.6441,208.4661,90.25,369.2818,192.4834,322.6803,184.7541,0.313 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 16).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,182.97,171.08,187,313.616,345.6573,255.8387,342.5,401.3076,232.7092,468.41,204.8199,0.5466 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 16).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,133.18,174.02,75.25,192.6623,466.1705,352.8689,192.25,593.9417,259.201,677.5687,197.8949,0.391 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 16).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,193.48,183.47,75.75,249.2549,449.9052,336.5981,179.25,499.4979,268.0946,536.2421,217.339,0.4247 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 16).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,178.55,184.16,46.25,294.6842,402.9263,248.8316,117.75,411.1474,216.5958,416.6281,195.1053,0.3901 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 16).tif,PathCellObject,,234.25,187.22,46.25,342.5661,300.5979,242.7196,145.75,225.5445,213.1267,189.6329,198.9671,0.3152 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 16).tif,PathCellObject,,157.3,192.78,120.5,287.6322,384.1715,287.0083,255,326.7155,241.9228,275.1224,201.4379,0.4719 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 16).tif,PathCellObject,,179.76,193.75,22.25,285.3187,291.4066,187.5055,87.5,260.58,180.4143,249.749,177.9228,0.2426 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 16).tif,PathCellObject,,148.46,195.89,15.25,215.0152,370.9849,326.3788,57.25,285.5304,244.3304,251.1402,211.311,0.275 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 16).tif,PathCellObject,,240.74,196.95,31.25,379.0611,293.5878,176.9771,107,234.7465,172.7395,208.9666,170.8829,0.2946 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 16).tif,PathCellObject,,216.96,200.42,46.5,403.545,379.6825,218.3439,144.5,290.432,197.4028,247.4005,187.3061,0.3213 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 16).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,244.95,212.87,11.75,193.54,4349.2598,256.14,52.25,2411.1321,208.3066,1812.9445,193.5432,0.2214 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 16).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,239.28,221.24,66.5,400.3086,674.8439,589.3494,156.25,889.176,365.3152,1051.1293,196.0309,0.4198 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 16).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,248.93,219.32,9.75,204.0233,3081.8372,239.3954,43.75,1916.4222,197.2389,1550.635,184.0073,0.2312 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 16).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,184.03,236.65,115.25,309.4117,375.0388,224.3728,242.25,364.5222,208.0093,354.8974,193.0335,0.4741 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 16).tif,PathCellObject,,111.35,234.17,28,218.2368,231.7368,183.2719,103.25,220.6626,176.9277,216.4684,174.5249,0.2629 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 16).tif,PathCellObject,,167.51,238.39,24.25,444.5816,669.3776,187.9694,93,316.8387,176.3817,190.7482,172.2372,0.254 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 16).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,122.57,241.23,110.25,199.295,341.2342,231.7095,226,350.8322,222.0552,360.0563,212.7771,0.4877 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 16).tif,PathCellObject,,175.61,244.6,26.25,339.8491,343.9057,209.3679,83.25,237.1602,184.454,188.1775,173.0217,0.3028 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 16).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,139.16,248.75,80.75,196.1415,361.4369,200.3262,196.25,352.2583,192.4173,345.7874,186.8416,0.4088 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 16).tif,PathCellObject,,108.05,247.25,24.75,305.2719,414.3107,208.7379,92,347.5571,197.0842,321.6113,192.5547,0.2667 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 16).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,122.67,250.59,24.75,202.2359,474.0472,406.3396,67.5,515.5919,390.3015,542.1205,380.0602,0.3797 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 16).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,112.07,256.26,33.25,286.5515,451.4485,254.0294,104.75,490.601,269.7625,509.2842,277.2702,0.3146 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 16).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,123.35,259.43,58,260.4786,1187.6025,1501.812,161,1299.676,1546.1271,1363.4841,1571.3577,0.3553 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 17).tif,PathCellObject,,106.86,84.97,41,228.515,254.3054,179.5569,118.25,227.6289,172.4843,213.2581,168.6742,0.3409 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 17).tif,PathCellObject,,139.04,85.45,31.5,301.0472,288.5669,181.063,103.25,225.3923,171.4455,197.3392,167.1748,0.2961 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 17).tif,PathCellObject,,131.31,91.85,29.25,177.2101,298.0672,174.8571,94,213.8,171.3632,175.3793,169.7701,0.302 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 17).tif,PathCellObject,,112.84,93.39,57,228.5238,289.1169,352.0693,116.75,303.2532,269.3511,316.9163,189.4017,0.4847 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 17).tif,PathCellObject,,122.13,91.77,20.5,219.1765,250.8588,176.9647,68,195.792,170.6533,171.0265,167.8148,0.2995 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 17).tif,cCASP3,cCASP3,122.13,103.94,92.5,207.8445,333.4584,378.7024,165,327.7375,338.5912,320.3793,287,0.5503 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 17).tif,cCASP3,cCASP3,110.76,103.95,24.75,348.2255,287.6471,674.5196,76.75,276.9359,454.7949,271.7333,348.0714,0.3138 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 17).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,132.63,106.79,31.25,160.7402,409.7008,241.8976,92.5,353.379,262.9274,324.1837,273.8286,0.3342 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 17).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,102.63,110.67,45,190.6757,545.2649,443.3351,130.75,693.6622,279.1183,774.646,189.5015,0.3411 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 17).tif,PathCellObject,,121.2,115.39,33.75,324.8235,337.3603,192.8971,103,290.9734,197.1667,268.2806,199.2554,0.3186 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 17).tif,PathCellObject,,213.13,118.12,129,199.2162,376.8378,195.9016,273.75,310.592,182.6994,251.4276,170.9086,0.4708 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 17).tif,PathCellObject,,136.78,117.07,34.25,259.9149,377.7021,185.6879,119.75,246.7842,171.7282,192.651,165.956,0.2836 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 17).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,88.73,119.97,42.75,147.52,976.3714,176.5314,139.75,638.9251,169.6595,485.9378,166.544,0.3024 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 17).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,135.55,134.75,31.25,158.784,378.76,174.576,114.25,378.5721,167.3493,378.5015,164.6366,0.2716 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 17).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,91.2,144.3,135.5,185.1,1146.5814,270.1796,287,1218.8049,218.838,1282.9507,173.2385,0.4703 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 17).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,143.5,147.29,42,257.4477,608.343,195.8779,130.75,933.0875,182.1768,1090.8729,175.5198,0.3148 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 17).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,139.71,154.94,24.25,301.9307,394.2574,259.1287,68,388.3455,213.5091,384.9138,187.0287,0.3466 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 17).tif,PathCellObject,,232.65,160.82,85.75,421.2133,360.0375,402.1585,187.75,315.6724,281.1353,277.8477,177.9533,0.4536 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 17).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,150.2,162.02,50.25,178.6507,740.8852,199.799,150.5,1567.4415,192.3262,2001.4874,188.402,0.3405 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 17).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,137.59,162.03,40.5,234.1098,328.7439,261.0854,98.5,359.272,233.7053,380.7596,214.4335,0.4077 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 17).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,187.78,163.85,43.5,272.48,1319.4686,245.1771,133.5,1168.5762,209.6152,1095.8319,192.4711,0.3208 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 17).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,127.52,165.39,15.25,176.9516,652.9839,234.7097,73.5,507.6364,210.5724,469.2894,204.2043,0.2013 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 17).tif,PathCellObject,,228.46,172.6,62.75,340.3571,364.7976,261.7103,154.25,335.0355,214.3823,314.6549,181.9728,0.4049 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 17).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,133.77,173.38,77,266.9742,471.3484,387.4226,164.75,576.1876,310.3071,668.7806,242.1994,0.4654 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 17).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,245.98,176.24,96,477.0363,760.3601,381.6477,218.75,1068.3379,313.4098,1310.949,259.6551,0.4387 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 17).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,163.71,173.84,51,231.5507,2362.9758,200.6184,128.75,2615.1648,192.562,2784.1067,187.1651,0.3998 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 17).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,188.39,173.99,32.75,233.237,986.5555,200.2,104,1202.8921,199.6019,1306.4574,199.3156,0.3181 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 17).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,153.82,178.51,84.75,239.25,1114.0494,214.9767,171.5,1933.3319,204.7336,2755.0029,194.4606,0.4961 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 17).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,199.16,179.66,104.75,315.0237,678.0945,211.5957,214.75,1311.1903,201.4559,1921.2118,191.6857,0.4859 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 17).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,142.13,183.66,86,237.5447,973.9827,320.2622,184,1300.3297,271.2338,1588.4784,227.944,0.4645 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 17).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,256.47,181.04,12.75,197.5273,1511.9454,195.3091,74.5,1248.4463,201.6644,1188.8066,203.1029,0.1703 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 17).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,172.62,181.02,26.75,188.2477,470.2569,203.8349,79.75,1022.0372,200.1115,1303.0841,198.215,0.3267 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 17).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,185.43,185.76,74.75,306.5695,485.7616,211.4338,163,830.6697,203.7661,1126.5852,197.1875,0.457 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 17).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,173.12,192.36,97.5,191.0485,878.9745,240.3827,217.75,1315.0905,227.0435,1670.5115,216.1726,0.4467 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 17).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,141.08,197.4,47.5,237.4513,641.2359,1496.877,121.75,1187.6353,767.3299,1551.2799,281.7952,0.3943 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 17).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,166.33,202.89,68.5,194.5957,1040.5487,193.7942,179.25,1742.6002,198.2535,2183.5715,201.0544,0.3786 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 17).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,150.42,205.14,90.25,281.3113,499.4959,484.1928,177.25,992.1055,365.8242,1505.9482,242.3535,0.5076 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 17).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,140.92,213.81,108.75,308.8653,884.3379,208.8128,201.5,1559.9174,211.1652,2353.2251,213.9276,0.5365 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 17).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,166.12,219.42,106.25,348.8145,866.0375,246.7488,222.25,1211.1337,219.627,1527.9677,194.7263,0.4706 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 17).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,154.67,217.39,13,200.7321,2457.6785,399.8929,66,2967.5112,275.8947,3103.4666,242.8286,0.1962 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 17).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,140.42,224.7,26.25,253.6981,886.6887,256.3773,65.25,881.2053,277.692,877.5032,292.0828,0.3974 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 17).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,148.77,224.38,17,247.2361,1174.9861,239.9306,44.25,1719,226.4333,2081.676,217.4352,0.3714 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 17).tif,EpCAM_E-Cadherin: cCASP3,EpCAM_E-Cadherin: cCASP3,145.55,234.56,93.5,225.792,559.2107,649.656,188.75,596.303,551.8234,632.5261,456.2838,0.4885 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 17).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,214.57,239.77,116.75,233.5139,2288.2708,253.7868,257.75,3764.0154,213.6644,4989.0142,180.3593,0.454 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 17).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,122.46,253.8,22.25,178.1222,732.7111,225.1555,84.5,416.8201,187.5693,302.6426,173.9839,0.2492 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 17).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,132.82,261.11,113.25,251.0859,473.8392,217.6211,232.5,534.2546,205.0795,591.7568,193.1426,0.4837 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 17).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,180.58,259.82,55.5,142.7175,812.7264,184.0762,155,558.3884,177.1124,416.595,173.23,0.3554 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 17).tif,PathCellObject,,190.27,271.22,32.5,341.4539,387.7077,191.3846,96.75,295.8123,179.4833,249.6873,173.5097,0.3259 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 17).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,179.9,272.49,39.5,307.5062,813.3765,210.5926,112.75,1001.4203,192.6349,1106.4656,182.6035,0.3457 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 17).tif,PathCellObject,,176.19,284.75,39.75,171.0366,280.4268,251.8537,134,187.9123,201.8582,147.1263,179.8172,0.2941 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 18).tif,PathCellObject,,131.89,57.64,35.75,221.863,282.1164,176.8425,123.25,257.4628,188.493,247.208,193.339,0.2882 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 18).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,135.81,71.95,30.25,229.8468,569.5081,204.3952,110.25,457.3824,196.3213,413.6604,193.173,0.2671 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 18).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,200.41,107.67,30.75,185.2857,429.7302,184.746,94.25,372.8979,174.8037,344.9258,169.9102,0.3242 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 18).tif,PathCellObject,,225.96,113.32,104.25,260.6873,340.9594,202.3986,235,257.2633,181.5361,190.2103,164.8222,0.4409 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 18).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,149.59,115.18,88,214.6591,2733.9971,188.9886,189.5,5864.0249,181.4039,8564.4414,174.8603,0.4591 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 18).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,195.22,112.54,21.75,212.1319,6169.3848,189.7363,53.5,4536.8755,181.5945,3357.8413,175.7143,0.4015 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 18).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,204.06,115.72,10.5,196.7708,3441.6458,175.1042,42.75,2850.6287,174.8114,2627.252,174.7008,0.2462 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 18).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,158.73,119.96,27.5,167.2478,8270.9385,178.4956,94,6389.0933,170.36,5577.458,166.8512,0.2885 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 18).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,194.6,123.13,139.5,222.8938,1204.4513,195.9451,235,2947.8293,198.8865,5553.6719,203.2831,0.5973 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 18).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,206.23,129.87,9.5,173.7381,4404.0952,254.7619,51.75,2305.5188,202.0981,1793.0756,189.2384,0.1812 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 18).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,195.14,133.72,25.5,190.8519,2459.3982,216.1944,83.75,2102.7092,200.4896,1934.4891,193.083,0.3149 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 18).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,202.54,144.12,73.75,359.4074,640.468,211.9764,184,929.6038,196.616,1124.7705,186.2477,0.397 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 18).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,145.63,149.13,53,242.0186,705.8046,206.4512,129.75,1086.3486,196.5651,1352.8534,189.6417,0.401 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 18).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,139.82,155.97,29.5,182.96,1476.3361,235.552,98.5,1497.9899,217.1756,1508.0896,208.6045,0.313 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 18).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,107.66,166.15,47.75,190.7411,1084.7716,204.1878,140.25,553.8138,188.422,268.8038,179.9591,0.3422 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 18).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,146.08,166.31,54.75,226.8493,1204.6393,209.9772,153,1270.8809,191.8842,1307.7006,181.8274,0.353 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 18).tif,PathCellObject,,120.33,167.82,57.25,156.5256,413.1709,195.9103,146.75,338.2475,186.4864,289,180.2921,0.3883 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 18).tif,PathCellObject,,115.61,178.84,55.75,237.4152,420.4375,211.3438,145,332.9658,195.036,278.5389,184.8889,0.3774 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 18).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,219.05,182.53,84.75,259.5191,564.2229,184.8622,206.75,566.0072,177.9386,567.249,173.1204,0.4103 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 18).tif,cCASP3,cCASP3,101.73,181.07,31.25,273.4609,261.5,321.2266,111.5,203.6489,380.2245,180.6522,403.677,0.2749 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 18).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,136.31,203.46,84.75,199.907,388.4622,192.0669,211.75,359.9319,183.7885,340.574,178.1716,0.4017 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 18).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,225.4,205.77,127,279.8574,374.709,191.2285,288.25,359.9826,180.6056,348.1831,172.0939,0.4405 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 18).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,200.75,211.04,94.5,324.9843,383.126,257.2283,189.5,514.5217,228.9527,646.2632,200.6026,0.4989 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 18).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,208.85,217.33,56.25,275.9115,408.6018,276.2876,121.5,475.5691,233.7602,532.4662,197.6278,0.4509 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 18).tif,PathCellObject,,232.03,223.38,31.25,495.9206,340.6111,190.9762,111.5,259.8587,179.0964,228.0625,174.4187,0.2691 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 18).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,212.98,227.75,36.5,259.396,469.7181,217.9463,108.5,371.6055,192.0252,320.669,178.5679,0.3301 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 18).tif,PathCellObject,,202.19,228.28,28.25,534.1282,291.9316,255.3675,97.25,300.759,222.241,304.5421,208.044,0.289 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 18).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,123.49,229.12,33.5,201.295,3362.3093,434,98.5,2728.9724,288.4146,2389.0732,210.2819,0.3437 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 18).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,115.53,236.54,92,219.2392,581.0968,226.6774,214.5,1397.7479,222.4516,2024.1278,219.2103,0.4305 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 19).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,222.96,42.1,50.5,163.2961,729.3932,182.2864,155.5,746.329,164.7548,754.756,156.0314,0.3267 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 19).tif,PathCellObject,,203.07,43.85,47.75,194.6769,284.8923,164.2769,144.25,195.5276,156.9103,150.2649,153.1792,0.3288 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 19).tif,PathCellObject,,130.89,126.46,30.5,278.8651,245.1508,174.9841,99,185.2607,168.1253,157.619,164.9597,0.2986 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 19).tif,PathCellObject,,125.63,133.78,28.75,208.3814,224.7881,172.0424,96.25,166.7364,166.1008,141.2714,163.4944,0.2919 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 19).tif,PathCellObject,,138.73,150.2,115.75,175.0966,270.2554,198.6137,255.25,210.8728,180.7749,161.1025,165.8237,0.4552 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 19).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,106.03,152.02,29.5,150.0164,1375.9426,190.7541,97,934.0878,181.8553,730.6679,177.7585,0.3034 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 19).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,95.28,153.96,109.25,179.6324,511.7101,204.3128,216.25,717.3291,189.7767,926.2877,175.0046,0.4996 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 19).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,169.77,155.99,80.5,213.0923,455.5692,422.6523,191.25,423.8669,283.2572,400.5034,180.5284,0.4235 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 19).tif,PathCellObject,,159.15,155.51,12.25,152.5536,291.0536,170.1071,54.5,255.1629,167.9638,242.9818,167.2364,0.2382 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 19).tif,PathCellObject,,153.49,161.18,38.25,171.0129,324.3032,173.5419,110.75,267.9482,169.6396,237.7232,167.5467,0.3389 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 19).tif,PathCellObject,,204.95,165.91,112,250.8311,283.0378,180.4311,249.5,261.9619,173.9519,244.6551,168.6314,0.446 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 19).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,196.46,178.86,63.5,165.1556,541.1907,178.3969,172.5,523.0883,172.4038,512.3687,168.8548,0.3682 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 19).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,207.66,182.03,62.75,207.7422,319.1602,177.8281,153.75,357.0984,173.3694,383.7802,170.2335,0.4125 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 19).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,244.49,183.41,36.75,234,524.7651,171.0604,121,416.2094,166.5914,368.355,164.6213,0.2945 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 19).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,115.95,185.32,36.75,183.3446,653.223,202.777,104.5,658.1556,194.9599,660.8007,190.7681,0.3465 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 19).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,219.52,189.83,130.75,223.8528,545.8528,222.1912,272.25,702.489,197.3991,846.97,174.5309,0.4755 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 19).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,133.87,190.25,93,262.0931,333.1357,220.8085,200.75,425.0621,199.641,505.6317,181.0886,0.4623 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 19).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,123.56,187.92,18.25,183.054,328.527,337.527,50,369.9356,282.0099,393.875,249.9141,0.3574 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 19).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,258.65,198.46,184.25,265.6473,567.8135,195.1419,344.5,698.6087,188.1913,849.8406,180.1547,0.5347 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 19).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,119.9,199.21,101.75,210.3187,695.8613,352.9489,204.25,1103.4034,277.6332,1514.9508,201.5774,0.4962 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 19).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,134.41,205,79.75,187.913,745.7422,258.5869,186,1078.8463,217.3021,1330.6292,186.0962,0.4234 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 19).tif,PathCellObject,,199.75,209.48,124.25,152.8825,417.747,299.735,276.25,313.1103,244.3553,226.144,198.3278,0.4529 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 19).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,220.77,215.78,76.5,146.8328,1041.8007,173.9614,207.75,739.881,168.3678,559.6564,165.0288,0.3715 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 19).tif,PathCellObject,,211.94,231.06,83,222.5774,301.0565,191.5238,192.25,247.6151,178.8518,206.1455,169.0185,0.4355 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 19).tif,EpCAM_E-Cadherin,EpCAM_E-Cadherin,187.03,236.02,72.5,227.3724,724.8242,194.9862,190.75,510.3858,182.5381,378.6335,174.8898,0.3783 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 19).tif,PathCellObject,,214.77,240.47,38.25,165.6774,414.8387,181.4,111.75,345.5759,180.5402,308.9352,180.0853,0.3364 +B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_uM_EpCAM_Ecad_cCasp3_(series 19).tif,PathCellObject,,200.3,244.54,90.5,211.5302,364.2088,244.7335,228,324.8333,205.9967,298.6788,180.2664,0.3994 \ No newline at end of file diff --git a/man/data_binding.Rd b/man/data_binding.Rd index b53b254ebf1022772332aec04a0a5952a157db40..896c379ccf86b08df86400d84dae6762e102900f 100644 --- a/man/data_binding.Rd +++ b/man/data_binding.Rd @@ -6,14 +6,14 @@ \usage{ data_binding( path_to_the_projects_folder, - files_extension_to_look_for, + files_extension_to_look_for = "csv", recursive_search = FALSE ) } \arguments{ -\item{path_to_the_projects_folder}{The path where the files coming out of QuPath are located} +\item{path_to_the_projects_folder}{String/Path The path where the files coming out of QuPath are located} -\item{files_extension_to_look_for}{The extension of the file outputted from QuPath} +\item{files_extension_to_look_for}{String The extension of the file outputted from QuPath, (default is "csv")} \item{recursive_search}{Boolean, it defined the behavior of the file search, if recursive or not, (default is FALSE)} } diff --git a/man/get_QC_plots_parsed_merged_data.Rd b/man/get_QC_plots_parsed_merged_data.Rd new file mode 100644 index 0000000000000000000000000000000000000000..72eac55481806a9cd2b7f936b0cdfca49fa98628 --- /dev/null +++ b/man/get_QC_plots_parsed_merged_data.Rd @@ -0,0 +1,55 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/get_QC_plots_and_stats.R +\name{get_QC_plots_parsed_merged_data} +\alias{get_QC_plots_parsed_merged_data} +\title{Plot some QC plots for the bound data} +\usage{ +get_QC_plots_parsed_merged_data( + .data, + list_of_columns_to_plot = NULL, + save_plots = FALSE, + saving_plots_folder = "figures", + save_plots_in_patient_specific_subfolders = TRUE, + fill_color_variable = NULL, + PID_column_name = "PID", + isolate_specific_drug = NULL, + isolate_specific_patient = NULL, + drug_column_name = "Treatment", + save_list_of_plots = TRUE, + p_height = 10, + p_width = 10 +) +} +\arguments{ +\item{.data}{The preprocessed data (after running make_count_dataframe() and change_data_format_to_longer()) merged data.frame that should be visualized} + +\item{list_of_columns_to_plot}{The preprocessed data (after running make_count_dataframe() and change_data_format_to_longer()) merged data.frame that should be visualized} + +\item{save_plots}{Boolean, TRUE if plots should be saved (default is FALSE)} + +\item{saving_plots_folder}{String indicating the folder where the plots should be stored (default is "figures")} + +\item{save_plots_in_patient_specific_subfolders}{Boolean, if TRUE the plots will be saved (if \code{save_plots} TRUE) in sample specific folders (default is TRUE)} + +\item{fill_color_variable}{Boolean, String, indicating the name of the variable (discrete) to use for the plot's filling} + +\item{PID_column_name}{String, indicating the name of the sample to subset (default is "Treatment")} + +\item{isolate_specific_drug}{String, indicating if there should be a Treatment specific data subset (default is NULL)} + +\item{isolate_specific_patient}{String, indicating a spacific sample to plot only (default is NULL)} + +\item{drug_column_name}{String, indicate the column indicating the Drug/Treament (default is "Treatment")} + +\item{save_list_of_plots}{Boolean, if TRUE returns a named list of all the plots ran (default is TRUE), this can be usefult to isolate specific plots} + +\item{p_height}{Integer, indicate the plot's height (default is 10 inches)} + +\item{p_width}{Integer, indicate the plot's width (default is 10 inches)} +} +\value{ +A \code{list}/\code{NULL}. +} +\description{ +This plot can show trends within the dataset and run some basic statistics. +} diff --git a/man/make_run_config.Rd b/man/make_run_config.Rd index 934ed563140e61dde3d117763e7681f40c5a6e7c..0ae4c04649f26ead0b8973795b93e673b0eeca97 100644 --- a/man/make_run_config.Rd +++ b/man/make_run_config.Rd @@ -4,7 +4,10 @@ \alias{make_run_config} \title{Generates and use a config txt file} \usage{ -make_run_config() +make_run_config(overwrite_config = FALSE) +} +\arguments{ +\item{overwrite_config}{Boolean, if TRUE the \code{config_DRUGSENS.txt} will be overwritten (default is FALSE)} } \value{ A \code{dataframe}/\code{tibble}. diff --git a/man/string_parsing.Rd b/man/string_parsing.Rd new file mode 100644 index 0000000000000000000000000000000000000000..3e1923b0168d62a699064f052c8f8025dca101ed --- /dev/null +++ b/man/string_parsing.Rd @@ -0,0 +1,18 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/parsers.R +\name{string_parsing} +\alias{string_parsing} +\title{Main parsing function} +\usage{ +string_parsing(.data) +} +\arguments{ +\item{.data}{dataframe with parsed metadata} +} +\value{ +A \code{dataframe}/\code{tibble}. +} +\description{ +This function will parse the data from the Image name and will return the metadata there contained +The metadata will be then associated to the count file as well +} diff --git a/renv.lock b/renv.lock index beb2d1dffd9f97cb1b45993aa6308192a2e51c9b..016a19409d4a78ea0a7d24456c6f53c4c577c46c 100644 --- a/renv.lock +++ b/renv.lock @@ -133,6 +133,30 @@ ], "Hash": "c39fbec8a30d23e721980b8afb31984c" }, + "bit": { + "Package": "bit", + "Version": "4.0.5", + "Source": "Repository", + "Repository": "CRAN", + "Requirements": [ + "R" + ], + "Hash": "d242abec29412ce988848d0294b208fd" + }, + "bit64": { + "Package": "bit64", + "Version": "4.0.5", + "Source": "Repository", + "Repository": "CRAN", + "Requirements": [ + "R", + "bit", + "methods", + "stats", + "utils" + ], + "Hash": "9fe98599ca456d6552421db0d6772d8f" + }, "boot": { "Package": "boot", "Version": "1.3-28", @@ -241,6 +265,16 @@ ], "Hash": "1216ac65ac55ec0058a6f75d7ca0fd52" }, + "clipr": { + "Package": "clipr", + "Version": "0.8.0", + "Source": "Repository", + "Repository": "CRAN", + "Requirements": [ + "utils" + ], + "Hash": "3f038e5ac7f41d4ac41ce658c85e3042" + }, "colorspace": { "Package": "colorspace", "Version": "2.1-0", @@ -577,6 +611,20 @@ ], "Hash": "06230136b2d2b9ba5805e1963fa6e890" }, + "hms": { + "Package": "hms", + "Version": "1.1.3", + "Source": "Repository", + "Repository": "CRAN", + "Requirements": [ + "lifecycle", + "methods", + "pkgconfig", + "rlang", + "vctrs" + ], + "Hash": "b59377caa7ed00fa41808342002138f9" + }, "isoband": { "Package": "isoband", "Version": "0.2.7", @@ -872,6 +920,16 @@ "Repository": "CRAN", "Hash": "a555924add98c99d2f411e37e7d25e9f" }, + "prettyunits": { + "Package": "prettyunits", + "Version": "1.2.0", + "Source": "Repository", + "Repository": "CRAN", + "Requirements": [ + "R" + ], + "Hash": "6b01fc98b1e86c4f705ce9dcfd2f57c7" + }, "processx": { "Package": "processx", "Version": "3.8.3", @@ -885,6 +943,20 @@ ], "Hash": "82d48b1aec56084d9438dbf98087a7e9" }, + "progress": { + "Package": "progress", + "Version": "1.2.3", + "Source": "Repository", + "Repository": "CRAN", + "Requirements": [ + "R", + "R6", + "crayon", + "hms", + "prettyunits" + ], + "Hash": "f4625e061cb2865f111b47ff163a5ca6" + }, "ps": { "Package": "ps", "Version": "1.7.6", @@ -929,6 +1001,29 @@ ], "Hash": "1bbc97f7d637ab3917c514a69047b2c1" }, + "readr": { + "Package": "readr", + "Version": "2.1.5", + "Source": "Repository", + "Repository": "CRAN", + "Requirements": [ + "R", + "R6", + "cli", + "clipr", + "cpp11", + "crayon", + "hms", + "lifecycle", + "methods", + "rlang", + "tibble", + "tzdb", + "utils", + "vroom" + ], + "Hash": "9de96463d2117f6ac49980577939dfb3" + }, "rematch2": { "Package": "rematch2", "Version": "2.1.2", @@ -1172,6 +1267,17 @@ ], "Hash": "79540e5fcd9e0435af547d885f184fd5" }, + "tzdb": { + "Package": "tzdb", + "Version": "0.4.0", + "Source": "Repository", + "Repository": "CRAN", + "Requirements": [ + "R", + "cpp11" + ], + "Hash": "f561504ec2897f4d46f0c7657e488ae1" + }, "utf8": { "Package": "utf8", "Version": "1.2.4", @@ -1206,6 +1312,32 @@ ], "Hash": "c826c7c4241b6fc89ff55aaea3fa7491" }, + "vroom": { + "Package": "vroom", + "Version": "1.6.5", + "Source": "Repository", + "Repository": "CRAN", + "Requirements": [ + "R", + "bit64", + "cli", + "cpp11", + "crayon", + "glue", + "hms", + "lifecycle", + "methods", + "progress", + "rlang", + "stats", + "tibble", + "tidyselect", + "tzdb", + "vctrs", + "withr" + ], + "Hash": "390f9315bc0025be03012054103d227c" + }, "waldo": { "Package": "waldo", "Version": "0.5.2", diff --git a/tests/testthat/test_cases.R b/tests/testthat/test_cases.R index c965ab61cc30c576320f4fd1161e2e12f39310a1..6e696da11617734df3b8d0e38577af4f69fb7788 100644 --- a/tests/testthat/test_cases.R +++ b/tests/testthat/test_cases.R @@ -45,4 +45,22 @@ test_that("Check that the config.txt is made and can be read", { expect_true(exists("list_of_relabeling")) }) -# WIP add for the regex in preprocessing +# WIP add for the regex in processing the data +# test_that("Check that parsig does work", { +# +# Image1 <- "B516_Ascites_2023-11-25_DOC2020-12-14_CarboplatinPaclitaxel_100_uM_10_nM_Ecad_cCasp3_(series 01).tif" +# Image2 <- "A8759_Spleen_2020.11.10_DOC2001.10.05_compoundX34542_1000_uM_EpCAM_Ecad_cCasp3_(series 01).tif" +# Image3 <- "A8759_Spleen_2020.11.10_DOC2001.10.05_compoundX34542_1000_uM_EpCAM_Ecad_cCasp3_(series 01).tif" +# Image4 <- "B38_Eye_2023.11.10_DOC2023.10.05_GentamicinePaclitaxel_100_uM_10_nM_EpCAM_Ecad_cCasp3_(series 01).tif" +# +# # make a dataframe of those images examples +# dt <- data.frame( +# Image = c(Image1, Image2, Image3, Image4), +# Example = c("Protocol", "Fake", "Fake", "Fake") +# ) +# +# # run parser +# dt1 <- DRUGSENS:::string_parsing(dt) +# +# expect_true(exists("list_of_relabeling")) +# })