diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 55ad1bb..372083c 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -33,7 +33,7 @@ repos: pass_filenames: false - id: flake8 name: flake8 test - entry: flake8 --ignore S101 tests + entry: flake8 --ignore S101,W503 tests language: system pass_filenames: false - id: pytest diff --git a/Makefile b/Makefile index 866a958..be53078 100644 --- a/Makefile +++ b/Makefile @@ -58,7 +58,7 @@ lint: ## reformat with black and check style with flake8 isort tests black src tests flake8 --ignore E231,W503,E402 src - flake8 --ignore S101 tests + flake8 --ignore S101,W503 tests test: lint ## run tests quickly, stop on first error pytest tests -x -l --last-failed --disable-warnings -m "not functional" diff --git a/README.md b/README.md index f2a7ee0..cd7a5fc 100644 --- a/README.md +++ b/README.md @@ -44,12 +44,16 @@ There is a `columns` module available, providing constans that define the column ## Avaliable public functions: - **parse_folder(path_to_folder)** + Tries the `parse_xml_folder()` function first and if an error occurs, + it falls back to the `parse_csv_folder()` + - **parse_xml_folder(path_to_folder)** + Searches the folder for a parsable Sensospot XML result file and parses it into + a pandas data frame. It will add additional meta data from parameters folder, + if it is present. + - **parse_csv_folder(path_to_folder)** Searches the folder for parsable Sensospot .csv files, parses them into one big pandas data frame and will add additional meta data from parameters folder, if it is present. -- **parse_file(path_to_csv_file)** - Parses a Sensospot csv file into a pandas data frame and will add some additional - meta data from the file name. Is internally also used by `parse_folder()` ## CLI @@ -63,8 +67,8 @@ Arguments: SOURCES: One or more folders with Sensospot measurements Options: - -o, --output FILE Output file path, defaults to 'collected_data.csv' - -q, --quiet Ignore Sanity Check + -o, --output FILE Output file path, defaults to 'collected_data.csv' + -q, --quiet Ignore sanity check for csv file parsing --help Show this message and exit. ``` diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A10_1.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A10_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A10_1.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A10_1.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A10_2.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A10_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A10_2.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A10_2.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A10_3.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A10_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A10_3.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A10_3.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A11_1.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A11_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A11_1.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A11_1.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A11_2.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A11_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A11_2.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A11_2.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A11_3.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A11_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A11_3.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A11_3.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A12_1.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A12_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A12_1.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A12_1.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A12_2.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A12_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A12_2.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A12_2.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A12_3.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A12_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A12_3.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A12_3.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A1_1.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A1_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A1_1.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A1_1.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A1_2.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A1_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A1_2.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A1_2.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A1_3.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A1_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A1_3.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A1_3.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A2_1.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A2_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A2_1.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A2_1.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A2_2.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A2_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A2_2.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A2_2.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A2_3.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A2_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A2_3.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A2_3.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A3_1.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A3_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A3_1.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A3_1.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A3_2.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A3_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A3_2.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A3_2.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A3_3.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A3_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A3_3.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A3_3.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A4_1.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A4_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A4_1.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A4_1.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A4_2.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A4_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A4_2.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A4_2.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A4_3.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A4_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A4_3.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A4_3.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A5_1.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A5_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A5_1.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A5_1.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A5_2.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A5_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A5_2.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A5_2.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A5_3.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A5_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A5_3.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A5_3.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A6_1.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A6_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A6_1.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A6_1.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A6_2.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A6_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A6_2.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A6_2.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A6_3.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A6_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A6_3.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A6_3.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A7_1.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A7_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A7_1.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A7_1.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A7_2.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A7_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A7_2.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A7_2.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A7_3.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A7_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A7_3.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A7_3.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A8_1.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A8_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A8_1.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A8_1.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A8_2.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A8_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A8_2.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A8_2.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A8_3.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A8_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A8_3.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A8_3.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A9_1.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A9_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A9_1.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A9_1.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A9_2.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A9_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A9_2.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A9_2.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A9_3.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A9_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A9_3.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_A9_3.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B10_1.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B10_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B10_1.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B10_1.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B10_2.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B10_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B10_2.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B10_2.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B10_3.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B10_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B10_3.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B10_3.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B11_1.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B11_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B11_1.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B11_1.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B11_2.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B11_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B11_2.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B11_2.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B11_3.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B11_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B11_3.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B11_3.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B12_1.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B12_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B12_1.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B12_1.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B12_2.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B12_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B12_2.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B12_2.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B12_3.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B12_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B12_3.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B12_3.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B1_1.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B1_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B1_1.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B1_1.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B1_2.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B1_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B1_2.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B1_2.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B1_3.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B1_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B1_3.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B1_3.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B2_1.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B2_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B2_1.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B2_1.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B2_2.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B2_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B2_2.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B2_2.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B2_3.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B2_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B2_3.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B2_3.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B3_1.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B3_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B3_1.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B3_1.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B3_2.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B3_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B3_2.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B3_2.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B3_3.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B3_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B3_3.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B3_3.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B4_1.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B4_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B4_1.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B4_1.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B4_2.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B4_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B4_2.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B4_2.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B4_3.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B4_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B4_3.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B4_3.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B5_1.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B5_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B5_1.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B5_1.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B5_2.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B5_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B5_2.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B5_2.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B5_3.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B5_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B5_3.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B5_3.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B6_1.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B6_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B6_1.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B6_1.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B6_2.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B6_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B6_2.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B6_2.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B6_3.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B6_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B6_3.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B6_3.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B7_1.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B7_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B7_1.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B7_1.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B7_2.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B7_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B7_2.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B7_2.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B7_3.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B7_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B7_3.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B7_3.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B8_1.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B8_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B8_1.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B8_1.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B8_2.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B8_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B8_2.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B8_2.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B8_3.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B8_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B8_3.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B8_3.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B9_1.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B9_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B9_1.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B9_1.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B9_2.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B9_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B9_2.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B9_2.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B9_3.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B9_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B9_3.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_B9_3.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C10_1.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C10_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C10_1.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C10_1.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C10_2.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C10_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C10_2.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C10_2.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C10_3.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C10_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C10_3.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C10_3.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C11_1.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C11_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C11_1.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C11_1.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C11_2.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C11_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C11_2.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C11_2.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C11_3.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C11_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C11_3.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C11_3.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C12_1.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C12_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C12_1.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C12_1.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C12_2.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C12_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C12_2.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C12_2.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C12_3.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C12_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C12_3.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C12_3.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C1_1.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C1_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C1_1.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C1_1.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C1_2.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C1_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C1_2.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C1_2.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C1_3.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C1_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C1_3.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C1_3.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C2_1.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C2_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C2_1.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C2_1.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C2_2.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C2_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C2_2.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C2_2.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C2_3.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C2_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C2_3.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C2_3.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C3_1.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C3_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C3_1.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C3_1.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C3_2.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C3_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C3_2.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C3_2.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C3_3.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C3_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C3_3.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C3_3.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C4_1.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C4_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C4_1.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C4_1.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C4_2.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C4_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C4_2.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C4_2.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C4_3.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C4_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C4_3.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C4_3.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C5_1.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C5_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C5_1.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C5_1.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C5_2.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C5_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C5_2.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C5_2.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C5_3.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C5_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C5_3.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C5_3.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C6_1.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C6_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C6_1.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C6_1.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C6_2.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C6_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C6_2.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C6_2.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C6_3.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C6_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C6_3.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C6_3.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C7_1.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C7_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C7_1.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C7_1.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C7_2.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C7_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C7_2.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C7_2.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C7_3.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C7_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C7_3.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C7_3.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C8_1.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C8_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C8_1.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C8_1.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C8_2.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C8_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C8_2.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C8_2.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C8_3.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C8_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C8_3.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C8_3.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C9_1.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C9_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C9_1.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C9_1.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C9_2.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C9_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C9_2.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C9_2.csv diff --git a/example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C9_3.csv b/example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C9_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C9_3.csv rename to example_data/csv_with_parameters/160210_SG2-010-001_Regen_cy3100_1_C9_3.csv diff --git a/example_data/mtp_with_parameters/Parameters/Assay/S QC 10x10 Cy3 100ms Cy5 150-15ms/S QC 10x10 Cy3 100ms Cy5 150-15ms.svalg b/example_data/csv_with_parameters/Parameters/Assay/S QC 10x10 Cy3 100ms Cy5 150-15ms/S QC 10x10 Cy3 100ms Cy5 150-15ms.svalg old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/Parameters/Assay/S QC 10x10 Cy3 100ms Cy5 150-15ms/S QC 10x10 Cy3 100ms Cy5 150-15ms.svalg rename to example_data/csv_with_parameters/Parameters/Assay/S QC 10x10 Cy3 100ms Cy5 150-15ms/S QC 10x10 Cy3 100ms Cy5 150-15ms.svalg diff --git a/example_data/mtp_with_parameters/Parameters/Assay/S QC 10x10 Cy3 100ms Cy5 150-15ms/S QC 10x10 Cy3 100ms Cy5 150-15ms.svary b/example_data/csv_with_parameters/Parameters/Assay/S QC 10x10 Cy3 100ms Cy5 150-15ms/S QC 10x10 Cy3 100ms Cy5 150-15ms.svary old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/Parameters/Assay/S QC 10x10 Cy3 100ms Cy5 150-15ms/S QC 10x10 Cy3 100ms Cy5 150-15ms.svary rename to example_data/csv_with_parameters/Parameters/Assay/S QC 10x10 Cy3 100ms Cy5 150-15ms/S QC 10x10 Cy3 100ms Cy5 150-15ms.svary diff --git a/example_data/mtp_with_parameters/Parameters/Assay/S QC 10x10 Cy3 100ms Cy5 150-15ms/S QC 10x10 Cy3 100ms Cy5 150-15ms.svexp b/example_data/csv_with_parameters/Parameters/Assay/S QC 10x10 Cy3 100ms Cy5 150-15ms/S QC 10x10 Cy3 100ms Cy5 150-15ms.svexp old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/Parameters/Assay/S QC 10x10 Cy3 100ms Cy5 150-15ms/S QC 10x10 Cy3 100ms Cy5 150-15ms.svexp rename to example_data/csv_with_parameters/Parameters/Assay/S QC 10x10 Cy3 100ms Cy5 150-15ms/S QC 10x10 Cy3 100ms Cy5 150-15ms.svexp diff --git a/example_data/mtp_with_parameters/Parameters/PlateHolder/SinglePlateHolder.svph b/example_data/csv_with_parameters/Parameters/PlateHolder/SinglePlateHolder.svph old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/Parameters/PlateHolder/SinglePlateHolder.svph rename to example_data/csv_with_parameters/Parameters/PlateHolder/SinglePlateHolder.svph diff --git a/example_data/mtp_with_parameters/Parameters/Rack/Microplate (96 wells).svmpd b/example_data/csv_with_parameters/Parameters/Rack/Microplate (96 wells).svmpd old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_with_parameters/Parameters/Rack/Microplate (96 wells).svmpd rename to example_data/csv_with_parameters/Parameters/Rack/Microplate (96 wells).svmpd diff --git a/example_data/mtp_with_parameters/should_raise_value_error.csv b/example_data/csv_with_parameters/should_raise_value_error.csv similarity index 100% rename from example_data/mtp_with_parameters/should_raise_value_error.csv rename to example_data/csv_with_parameters/should_raise_value_error.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A10_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A10_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A10_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A10_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A10_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A10_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A10_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A10_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A10_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A10_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A10_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A10_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A11_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A11_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A11_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A11_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A11_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A11_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A11_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A11_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A11_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A11_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A11_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A11_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A12_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A12_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A12_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A12_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A12_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A12_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A12_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A12_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A12_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A12_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A12_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A12_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A1_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A1_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A1_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A1_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A1_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A1_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A1_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A1_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A1_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A1_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A1_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A1_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A2_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A2_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A2_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A2_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A2_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A2_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A2_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A2_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A2_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A2_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A2_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A2_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A3_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A3_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A3_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A3_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A3_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A3_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A3_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A3_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A3_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A3_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A3_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A3_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A4_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A4_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A4_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A4_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A4_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A4_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A4_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A4_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A4_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A4_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A4_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A4_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A5_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A5_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A5_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A5_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A5_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A5_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A5_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A5_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A5_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A5_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A5_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A5_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A6_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A6_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A6_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A6_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A6_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A6_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A6_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A6_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A6_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A6_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A6_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A6_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A7_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A7_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A7_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A7_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A7_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A7_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A7_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A7_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A7_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A7_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A7_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A7_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A8_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A8_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A8_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A8_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A8_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A8_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A8_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A8_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A8_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A8_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A8_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A8_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A9_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A9_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A9_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A9_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A9_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A9_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A9_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A9_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A9_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A9_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A9_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_A9_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B10_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B10_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B10_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B10_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B10_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B10_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B10_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B10_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B10_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B10_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B10_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B10_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B11_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B11_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B11_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B11_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B11_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B11_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B11_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B11_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B11_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B11_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B11_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B11_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B12_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B12_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B12_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B12_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B12_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B12_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B12_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B12_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B12_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B12_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B12_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B12_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B1_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B1_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B1_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B1_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B1_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B1_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B1_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B1_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B1_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B1_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B1_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B1_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B2_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B2_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B2_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B2_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B2_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B2_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B2_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B2_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B2_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B2_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B2_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B2_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B3_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B3_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B3_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B3_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B3_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B3_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B3_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B3_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B3_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B3_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B3_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B3_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B4_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B4_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B4_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B4_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B4_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B4_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B4_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B4_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B4_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B4_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B4_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B4_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B5_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B5_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B5_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B5_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B5_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B5_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B5_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B5_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B5_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B5_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B5_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B5_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B6_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B6_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B6_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B6_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B6_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B6_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B6_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B6_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B6_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B6_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B6_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B6_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B7_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B7_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B7_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B7_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B7_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B7_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B7_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B7_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B7_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B7_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B7_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B7_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B8_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B8_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B8_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B8_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B8_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B8_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B8_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B8_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B8_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B8_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B8_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B8_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B9_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B9_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B9_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B9_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B9_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B9_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B9_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B9_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B9_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B9_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B9_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_B9_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C10_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C10_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C10_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C10_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C10_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C10_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C10_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C10_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C10_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C10_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C10_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C10_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C11_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C11_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C11_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C11_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C11_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C11_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C11_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C11_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C11_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C11_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C11_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C11_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C12_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C12_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C12_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C12_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C12_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C12_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C12_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C12_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C12_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C12_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C12_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C12_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C1_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C1_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C1_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C1_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C1_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C1_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C1_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C1_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C1_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C1_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C1_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C1_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C2_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C2_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C2_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C2_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C2_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C2_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C2_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C2_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C2_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C2_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C2_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C2_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C3_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C3_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C3_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C3_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C3_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C3_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C3_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C3_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C3_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C3_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C3_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C3_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C4_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C4_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C4_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C4_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C4_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C4_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C4_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C4_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C4_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C4_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C4_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C4_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C5_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C5_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C5_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C5_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C5_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C5_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C5_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C5_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C5_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C5_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C5_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C5_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C6_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C6_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C6_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C6_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C6_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C6_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C6_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C6_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C6_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C6_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C6_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C6_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C7_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C7_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C7_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C7_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C7_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C7_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C7_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C7_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C7_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C7_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C7_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C7_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C8_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C8_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C8_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C8_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C8_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C8_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C8_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C8_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C8_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C8_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C8_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C8_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C9_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C9_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C9_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C9_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C9_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C9_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C9_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C9_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C9_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C9_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C9_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_C9_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D10_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D10_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D10_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D10_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D10_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D10_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D10_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D10_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D10_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D10_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D10_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D10_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D11_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D11_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D11_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D11_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D11_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D11_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D11_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D11_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D11_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D11_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D11_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D11_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D12_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D12_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D12_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D12_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D12_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D12_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D12_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D12_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D12_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D12_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D12_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D12_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D1_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D1_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D1_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D1_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D1_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D1_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D1_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D1_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D1_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D1_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D1_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D1_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D2_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D2_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D2_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D2_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D2_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D2_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D2_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D2_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D2_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D2_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D2_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D2_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D3_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D3_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D3_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D3_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D3_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D3_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D3_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D3_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D3_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D3_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D3_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D3_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D4_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D4_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D4_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D4_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D4_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D4_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D4_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D4_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D4_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D4_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D4_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D4_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D5_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D5_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D5_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D5_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D5_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D5_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D5_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D5_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D5_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D5_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D5_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D5_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D6_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D6_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D6_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D6_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D6_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D6_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D6_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D6_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D6_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D6_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D6_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D6_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D7_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D7_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D7_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D7_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D7_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D7_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D7_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D7_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D7_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D7_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D7_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D7_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D8_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D8_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D8_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D8_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D8_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D8_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D8_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D8_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D8_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D8_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D8_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D8_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D9_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D9_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D9_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D9_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D9_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D9_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D9_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D9_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D9_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D9_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D9_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_D9_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E10_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E10_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E10_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E10_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E10_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E10_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E10_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E10_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E10_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E10_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E10_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E10_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E11_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E11_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E11_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E11_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E11_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E11_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E11_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E11_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E11_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E11_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E11_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E11_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E12_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E12_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E12_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E12_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E12_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E12_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E12_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E12_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E12_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E12_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E12_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E12_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E1_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E1_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E1_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E1_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E1_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E1_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E1_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E1_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E1_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E1_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E1_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E1_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E2_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E2_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E2_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E2_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E2_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E2_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E2_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E2_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E2_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E2_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E2_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E2_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E3_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E3_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E3_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E3_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E3_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E3_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E3_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E3_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E3_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E3_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E3_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E3_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E4_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E4_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E4_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E4_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E4_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E4_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E4_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E4_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E4_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E4_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E4_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E4_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E5_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E5_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E5_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E5_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E5_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E5_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E5_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E5_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E5_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E5_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E5_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E5_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E6_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E6_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E6_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E6_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E6_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E6_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E6_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E6_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E6_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E6_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E6_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E6_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E7_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E7_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E7_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E7_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E7_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E7_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E7_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E7_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E7_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E7_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E7_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E7_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E8_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E8_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E8_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E8_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E8_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E8_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E8_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E8_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E8_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E8_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E8_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E8_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E9_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E9_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E9_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E9_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E9_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E9_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E9_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E9_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E9_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E9_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E9_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_E9_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F10_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F10_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F10_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F10_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F10_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F10_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F10_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F10_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F10_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F10_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F10_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F10_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F11_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F11_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F11_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F11_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F11_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F11_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F11_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F11_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F11_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F11_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F11_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F11_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F12_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F12_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F12_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F12_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F12_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F12_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F12_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F12_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F12_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F12_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F12_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F12_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F1_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F1_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F1_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F1_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F1_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F1_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F1_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F1_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F1_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F1_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F1_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F1_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F2_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F2_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F2_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F2_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F2_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F2_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F2_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F2_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F2_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F2_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F2_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F2_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F3_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F3_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F3_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F3_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F3_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F3_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F3_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F3_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F3_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F3_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F3_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F3_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F4_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F4_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F4_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F4_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F4_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F4_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F4_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F4_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F4_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F4_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F4_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F4_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F5_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F5_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F5_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F5_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F5_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F5_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F5_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F5_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F5_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F5_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F5_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F5_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F6_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F6_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F6_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F6_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F6_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F6_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F6_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F6_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F6_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F6_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F6_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F6_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F7_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F7_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F7_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F7_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F7_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F7_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F7_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F7_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F7_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F7_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F7_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F7_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F8_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F8_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F8_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F8_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F8_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F8_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F8_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F8_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F8_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F8_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F8_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F8_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F9_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F9_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F9_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F9_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F9_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F9_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F9_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F9_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F9_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F9_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F9_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_F9_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G10_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G10_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G10_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G10_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G10_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G10_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G10_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G10_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G10_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G10_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G10_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G10_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G11_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G11_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G11_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G11_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G11_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G11_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G11_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G11_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G11_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G11_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G11_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G11_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G12_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G12_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G12_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G12_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G12_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G12_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G12_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G12_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G12_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G12_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G12_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G12_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G1_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G1_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G1_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G1_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G1_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G1_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G1_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G1_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G1_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G1_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G1_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G1_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G2_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G2_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G2_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G2_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G2_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G2_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G2_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G2_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G2_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G2_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G2_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G2_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G3_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G3_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G3_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G3_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G3_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G3_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G3_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G3_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G3_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G3_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G3_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G3_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G4_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G4_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G4_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G4_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G4_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G4_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G4_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G4_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G4_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G4_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G4_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G4_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G5_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G5_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G5_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G5_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G5_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G5_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G5_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G5_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G5_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G5_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G5_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G5_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G6_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G6_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G6_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G6_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G6_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G6_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G6_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G6_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G6_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G6_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G6_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G6_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G7_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G7_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G7_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G7_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G7_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G7_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G7_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G7_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G7_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G7_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G7_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G7_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G8_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G8_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G8_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G8_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G8_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G8_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G8_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G8_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G8_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G8_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G8_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G8_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G9_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G9_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G9_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G9_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G9_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G9_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G9_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G9_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G9_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G9_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G9_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_G9_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H10_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H10_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H10_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H10_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H10_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H10_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H10_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H10_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H10_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H10_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H10_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H10_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H11_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H11_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H11_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H11_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H11_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H11_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H11_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H11_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H11_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H11_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H11_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H11_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H12_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H12_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H12_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H12_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H12_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H12_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H12_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H12_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H12_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H12_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H12_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H12_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H1_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H1_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H1_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H1_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H1_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H1_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H1_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H1_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H1_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H1_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H1_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H1_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H2_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H2_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H2_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H2_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H2_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H2_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H2_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H2_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H2_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H2_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H2_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H2_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H3_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H3_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H3_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H3_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H3_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H3_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H3_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H3_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H3_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H3_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H3_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H3_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H4_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H4_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H4_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H4_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H4_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H4_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H4_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H4_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H4_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H4_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H4_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H4_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H5_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H5_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H5_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H5_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H5_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H5_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H5_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H5_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H5_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H5_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H5_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H5_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H6_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H6_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H6_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H6_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H6_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H6_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H6_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H6_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H6_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H6_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H6_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H6_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H7_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H7_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H7_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H7_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H7_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H7_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H7_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H7_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H7_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H7_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H7_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H7_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H8_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H8_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H8_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H8_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H8_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H8_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H8_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H8_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H8_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H8_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H8_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H8_3.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H9_1.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H9_1.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H9_1.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H9_1.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H9_2.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H9_2.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H9_2.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H9_2.csv diff --git a/example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H9_3.csv b/example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H9_3.csv old mode 100755 new mode 100644 similarity index 100% rename from example_data/mtp_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H9_3.csv rename to example_data/csv_wo_parameters/160218_SG2-013-001_Regen1_Cy3-100_1_H9_3.csv diff --git a/example_data/defect.xml b/example_data/defect.xml new file mode 100644 index 0000000..eac8561 --- /dev/null +++ b/example_data/defect.xml @@ -0,0 +1,29 @@ + + + + 3/7/2022 5:31:40 PM + 3/7/2022 5:33:45 PM + + + + + + + Cy3/Cy5 Green + 3/7/2022 5:31:47 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01_1.tif + 150.3716670323235 + 150.6109 + + 150.66990076589988 + -0.62607054037768517 + 0.62607054037768517 + 150.66990076589988 + 227.22602466270919 + 233.1385439330713 + + + + + + \ No newline at end of file diff --git a/example_data/malformed_data.xml b/example_data/malformed_data.xml new file mode 100644 index 0000000..8d0639a --- /dev/null +++ b/example_data/malformed_data.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1.xml b/example_data/xml_with_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1.xml similarity index 100% rename from example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1.xml rename to example_data/xml_with_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1.xml diff --git a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1.xsl b/example_data/xml_with_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1.xsl similarity index 100% rename from example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1.xsl rename to example_data/xml_with_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1.xsl diff --git a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01.xml b/example_data/xml_with_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01.xml similarity index 100% rename from example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01.xml rename to example_data/xml_with_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01.xml diff --git a/example_data/xml_with_parameters/Parameters/Assay/Calibration Check 4e/Calibration Check 4e.svalg b/example_data/xml_with_parameters/Parameters/Assay/Calibration Check 4e/Calibration Check 4e.svalg new file mode 100644 index 0000000..1530523 --- /dev/null +++ b/example_data/xml_with_parameters/Parameters/Assay/Calibration Check 4e/Calibration Check 4e.svalg @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/example_data/xml_with_parameters/Parameters/Assay/Calibration Check 4e/Calibration Check 4e.svary b/example_data/xml_with_parameters/Parameters/Assay/Calibration Check 4e/Calibration Check 4e.svary new file mode 100644 index 0000000..da00932 --- /dev/null +++ b/example_data/xml_with_parameters/Parameters/Assay/Calibration Check 4e/Calibration Check 4e.svary @@ -0,0 +1,131 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/example_data/xml_with_parameters/Parameters/Assay/Calibration Check 4e/Calibration Check 4e.svexp b/example_data/xml_with_parameters/Parameters/Assay/Calibration Check 4e/Calibration Check 4e.svexp new file mode 100644 index 0000000..b62b882 --- /dev/null +++ b/example_data/xml_with_parameters/Parameters/Assay/Calibration Check 4e/Calibration Check 4e.svexp @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/example_data/xml_with_parameters/Parameters/PlateHolder/SinglePlateHolder.svph b/example_data/xml_with_parameters/Parameters/PlateHolder/SinglePlateHolder.svph new file mode 100644 index 0000000..9e1b963 --- /dev/null +++ b/example_data/xml_with_parameters/Parameters/PlateHolder/SinglePlateHolder.svph @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/example_data/xml_with_parameters/Parameters/Rack/Calibration Slide.svmpd b/example_data/xml_with_parameters/Parameters/Rack/Calibration Slide.svmpd new file mode 100644 index 0000000..a39226b --- /dev/null +++ b/example_data/xml_with_parameters/Parameters/Rack/Calibration Slide.svmpd @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1.xml b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1.xml new file mode 100644 index 0000000..fe37c69 --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1.xml @@ -0,0 +1,148744 @@ + + + + 3/7/2022 5:31:40 PM + 3/7/2022 5:33:45 PM + + + + + + + Cy3/Cy5 Green + 3/7/2022 5:31:47 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01_1.tif + 150.3716670323235 + 150.6109 + + 150.66990076589988 + -0.62607054037768517 + 0.62607054037768517 + 150.66990076589988 + 227.22602466270919 + 233.1385439330713 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01_1.tif + + + + + + Cy3/Cy5 Green + 3/7/2022 5:31:47 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01_2.tif + 150.3716670323235 + 150.6109 + + 150.66990076589988 + -0.62607054037768517 + 0.62607054037768517 + 150.66990076589988 + 227.22602466270919 + 233.1385439330713 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01_2.tif + + + + + + Cy3/Cy5 Red + 3/7/2022 5:31:47 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01_3.tif + 150.3716670323235 + 150.6109 + + 150.66990076589988 + -0.62607054037768517 + 0.62607054037768517 + 150.66990076589988 + 227.22602466270919 + 233.1385439330713 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01_3.tif + + + + + + Cy3/Cy5 Red + 3/7/2022 5:31:47 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01_4.tif + 150.3716670323235 + 150.6109 + + 150.66990076589988 + -0.62607054037768517 + 0.62607054037768517 + 150.66990076589988 + 227.22602466270919 + 233.1385439330713 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01_4.tif + + + + + + + + + + Cy3/Cy5 Green + 3/7/2022 5:31:54 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A02_1.tif + 149.02666619955059 + 150.6109 + + 149.32330870200255 + -0.25208062251381974 + 0.25208062251381974 + 149.32330870200255 + 255.44632440705655 + 217.16952276833345 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A02_1.tif + + + + + + Cy3/Cy5 Green + 3/7/2022 5:31:54 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A02_2.tif + 149.02666619955059 + 150.6109 + + 149.32330870200255 + -0.25208062251381974 + 0.25208062251381974 + 149.32330870200255 + 255.44632440705655 + 217.16952276833345 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A02_2.tif + + + + + + Cy3/Cy5 Red + 3/7/2022 5:31:54 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A02_3.tif + 149.02666619955059 + 150.6109 + + 149.32330870200255 + -0.25208062251381974 + 0.25208062251381974 + 149.32330870200255 + 255.44632440705655 + 217.16952276833345 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A02_3.tif + + + + + + Cy3/Cy5 Red + 3/7/2022 5:31:54 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A02_4.tif + 149.02666619955059 + 150.6109 + + 149.32330870200255 + -0.25208062251381974 + 0.25208062251381974 + 149.32330870200255 + 255.44632440705655 + 217.16952276833345 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A02_4.tif + + + + + + + + + + Cy3/Cy5 Green + 3/7/2022 5:32:02 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A03_1.tif + 150.75788317246128 + 150.6109 + + 151.05556223714419 + -0.89048684261832278 + 0.89048684261832278 + 151.05556223714419 + 106.13850289915456 + 226.06500389107148 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A03_1.tif + + + + + + Cy3/Cy5 Green + 3/7/2022 5:32:02 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A03_2.tif + 150.75788317246128 + 150.6109 + + 151.05556223714419 + -0.89048684261832278 + 0.89048684261832278 + 151.05556223714419 + 106.13850289915456 + 226.06500389107148 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A03_2.tif + + + + + + Cy3/Cy5 Red + 3/7/2022 5:32:02 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A03_3.tif + 150.75788317246128 + 150.6109 + + 151.05556223714419 + -0.89048684261832278 + 0.89048684261832278 + 151.05556223714419 + 106.13850289915456 + 226.06500389107148 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A03_3.tif + + + + + + Cy3/Cy5 Red + 3/7/2022 5:32:02 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A03_4.tif + 150.75788317246128 + 150.6109 + + 151.05556223714419 + -0.89048684261832278 + 0.89048684261832278 + 151.05556223714419 + 106.13850289915456 + 226.06500389107148 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A03_4.tif + + + + + + + + + + Cy3/Cy5 Green + 3/7/2022 5:32:09 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A04_1.tif + 149.09847865771823 + 150.6109 + + 149.39351216526134 + -0.76620225714846124 + 0.76620225714846124 + 149.39351216526134 + 241.97244335794886 + 197.54504318577551 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A04_1.tif + + + + + + Cy3/Cy5 Green + 3/7/2022 5:32:09 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A04_2.tif + 149.09847865771823 + 150.6109 + + 149.39351216526134 + -0.76620225714846124 + 0.76620225714846124 + 149.39351216526134 + 241.97244335794886 + 197.54504318577551 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A04_2.tif + + + + + + Cy3/Cy5 Red + 3/7/2022 5:32:09 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A04_3.tif + 149.09847865771823 + 150.6109 + + 149.39351216526134 + -0.76620225714846124 + 0.76620225714846124 + 149.39351216526134 + 241.97244335794886 + 197.54504318577551 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A04_3.tif + + + + + + Cy3/Cy5 Red + 3/7/2022 5:32:09 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A04_4.tif + 149.09847865771823 + 150.6109 + + 149.39351216526134 + -0.76620225714846124 + 0.76620225714846124 + 149.39351216526134 + 241.97244335794886 + 197.54504318577551 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A04_4.tif + + + + + + + + + + Cy3/Cy5 Green + 3/7/2022 5:32:18 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B01_1.tif + 149.9317143866449 + 150.6109 + + 150.230010061073 + -0.32999087258361937 + 0.32999087258361937 + 150.230010061073 + 228.26127035539781 + 234.41496130367685 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B01_1.tif + + + + + + Cy3/Cy5 Green + 3/7/2022 5:32:18 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B01_2.tif + 149.9317143866449 + 150.6109 + + 150.230010061073 + -0.32999087258361937 + 0.32999087258361937 + 150.230010061073 + 228.26127035539781 + 234.41496130367685 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B01_2.tif + + + + + + Cy3/Cy5 Red + 3/7/2022 5:32:18 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B01_3.tif + 149.9317143866449 + 150.6109 + + 150.230010061073 + -0.32999087258361937 + 0.32999087258361937 + 150.230010061073 + 228.26127035539781 + 234.41496130367685 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B01_3.tif + + + + + + Cy3/Cy5 Red + 3/7/2022 5:32:18 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B01_4.tif + 149.9317143866449 + 150.6109 + + 150.230010061073 + -0.32999087258361937 + 0.32999087258361937 + 150.230010061073 + 228.26127035539781 + 234.41496130367685 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B01_4.tif + + + + + + + + + + Cy3/Cy5 Green + 3/7/2022 5:32:25 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B02_1.tif + 149.51266591229083 + 150.6109 + + 149.81029488839661 + -0.24133889291015795 + 0.24133889291015795 + 149.81029488839661 + 253.8097248285047 + 219.06039002771308 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B02_1.tif + + + + + + Cy3/Cy5 Green + 3/7/2022 5:32:25 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B02_2.tif + 149.51266591229083 + 150.6109 + + 149.81029488839661 + -0.24133889291015795 + 0.24133889291015795 + 149.81029488839661 + 253.8097248285047 + 219.06039002771308 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B02_2.tif + + + + + + Cy3/Cy5 Red + 3/7/2022 5:32:25 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B02_3.tif + 149.51266591229083 + 150.6109 + + 149.81029488839661 + -0.24133889291015795 + 0.24133889291015795 + 149.81029488839661 + 253.8097248285047 + 219.06039002771308 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B02_3.tif + + + + + + Cy3/Cy5 Red + 3/7/2022 5:32:25 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B02_4.tif + 149.51266591229083 + 150.6109 + + 149.81029488839661 + -0.24133889291015795 + 0.24133889291015795 + 149.81029488839661 + 253.8097248285047 + 219.06039002771308 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B02_4.tif + + + + + + + + + + Cy3/Cy5 Green + 3/7/2022 5:32:32 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B03_1.tif + 150.93858253188344 + 150.6109 + + 151.23811963331852 + -0.5837659463473438 + 0.5837659463473438 + 151.23811963331852 + 99.137249044183918 + 231.0721087061354 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B03_1.tif + + + + + + Cy3/Cy5 Green + 3/7/2022 5:32:32 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B03_2.tif + 150.93858253188344 + 150.6109 + + 151.23811963331852 + -0.5837659463473438 + 0.5837659463473438 + 151.23811963331852 + 99.137249044183918 + 231.0721087061354 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B03_2.tif + + + + + + Cy3/Cy5 Red + 3/7/2022 5:32:32 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B03_3.tif + 150.93858253188344 + 150.6109 + + 151.23811963331852 + -0.5837659463473438 + 0.5837659463473438 + 151.23811963331852 + 99.137249044183918 + 231.0721087061354 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B03_3.tif + + + + + + Cy3/Cy5 Red + 3/7/2022 5:32:32 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B03_4.tif + 150.93858253188344 + 150.6109 + + 151.23811963331852 + -0.5837659463473438 + 0.5837659463473438 + 151.23811963331852 + 99.137249044183918 + 231.0721087061354 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B03_4.tif + + + + + + + + + + Cy3/Cy5 Green + 3/7/2022 5:32:40 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B04_1.tif + 149.22649133781903 + 150.6109 + + 149.52311131671422 + -0.43520008548092376 + 0.43520008548092376 + 149.52311131671422 + 240.47608751624395 + 198.99036853508562 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B04_1.tif + + + + + + Cy3/Cy5 Green + 3/7/2022 5:32:40 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B04_2.tif + 149.22649133781903 + 150.6109 + + 149.52311131671422 + -0.43520008548092376 + 0.43520008548092376 + 149.52311131671422 + 240.47608751624395 + 198.99036853508562 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B04_2.tif + + + + + + Cy3/Cy5 Red + 3/7/2022 5:32:40 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B04_3.tif + 149.22649133781903 + 150.6109 + + 149.52311131671422 + -0.43520008548092376 + 0.43520008548092376 + 149.52311131671422 + 240.47608751624395 + 198.99036853508562 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B04_3.tif + + + + + + Cy3/Cy5 Red + 3/7/2022 5:32:40 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B04_4.tif + 149.22649133781903 + 150.6109 + + 149.52311131671422 + -0.43520008548092376 + 0.43520008548092376 + 149.52311131671422 + 240.47608751624395 + 198.99036853508562 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B04_4.tif + + + + + + + + + + Cy3/Cy5 Green + 3/7/2022 5:32:48 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C01_1.tif + 150.78852356121266 + 150.6109 + + 151.08813564684616 + 0.476929331684533 + -0.476929331684533 + 151.08813564684616 + 228.34451881380633 + 233.1534760646137 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C01_1.tif + + + + + + Cy3/Cy5 Green + 3/7/2022 5:32:48 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C01_2.tif + 150.78852356121266 + 150.6109 + + 151.08813564684616 + 0.476929331684533 + -0.476929331684533 + 151.08813564684616 + 228.34451881380633 + 233.1534760646137 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C01_2.tif + + + + + + Cy3/Cy5 Red + 3/7/2022 5:32:48 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C01_3.tif + 150.78852356121266 + 150.6109 + + 151.08813564684616 + 0.476929331684533 + -0.476929331684533 + 151.08813564684616 + 228.34451881380633 + 233.1534760646137 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C01_3.tif + + + + + + Cy3/Cy5 Red + 3/7/2022 5:32:48 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C01_4.tif + 150.78852356121266 + 150.6109 + + 151.08813564684616 + 0.476929331684533 + -0.476929331684533 + 151.08813564684616 + 228.34451881380633 + 233.1534760646137 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C01_4.tif + + + + + + + + + + Cy3/Cy5 Green + 3/7/2022 5:32:56 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C02_1.tif + 149.38571986535061 + 150.6109 + + 149.68051601777003 + -0.91133901390079386 + 0.91133901390079386 + 149.68051601777003 + 256.01813375861093 + 216.99789239994874 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C02_1.tif + + + + + + Cy3/Cy5 Green + 3/7/2022 5:32:56 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C02_2.tif + 149.38571986535061 + 150.6109 + + 149.68051601777003 + -0.91133901390079386 + 0.91133901390079386 + 149.68051601777003 + 256.01813375861093 + 216.99789239994874 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C02_2.tif + + + + + + Cy3/Cy5 Red + 3/7/2022 5:32:56 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C02_3.tif + 149.38571986535061 + 150.6109 + + 149.68051601777003 + -0.91133901390079386 + 0.91133901390079386 + 149.68051601777003 + 256.01813375861093 + 216.99789239994874 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C02_3.tif + + + + + + Cy3/Cy5 Red + 3/7/2022 5:32:56 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C02_4.tif + 149.38571986535061 + 150.6109 + + 149.68051601777003 + -0.91133901390079386 + 0.91133901390079386 + 149.68051601777003 + 256.01813375861093 + 216.99789239994874 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C02_4.tif + + + + + + + + + + Cy3/Cy5 Green + 3/7/2022 5:33:03 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C03_1.tif + 150.21338000955686 + 150.6109 + + 150.51210939589288 + -0.38397329932808849 + 0.38397329932808849 + 150.51210939589288 + 96.644795827838877 + 231.06709962995458 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C03_1.tif + + + + + + Cy3/Cy5 Green + 3/7/2022 5:33:03 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C03_2.tif + 150.21338000955686 + 150.6109 + + 150.51210939589288 + -0.38397329932808849 + 0.38397329932808849 + 150.51210939589288 + 96.644795827838877 + 231.06709962995458 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C03_2.tif + + + + + + Cy3/Cy5 Red + 3/7/2022 5:33:03 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C03_3.tif + 150.21338000955686 + 150.6109 + + 150.51210939589288 + -0.38397329932808849 + 0.38397329932808849 + 150.51210939589288 + 96.644795827838877 + 231.06709962995458 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C03_3.tif + + + + + + Cy3/Cy5 Red + 3/7/2022 5:33:03 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C03_4.tif + 150.21338000955686 + 150.6109 + + 150.51210939589288 + -0.38397329932808849 + 0.38397329932808849 + 150.51210939589288 + 96.644795827838877 + 231.06709962995458 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C03_4.tif + + + + + + + + + + Cy3/Cy5 Green + 3/7/2022 5:33:10 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C04_1.tif + 148.9121924227837 + 150.6109 + + 149.20821376979373 + -0.42521980923248404 + 0.42521980923248404 + 149.20821376979373 + 237.98839753132378 + 199.05817192418263 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C04_1.tif + + + + + + Cy3/Cy5 Green + 3/7/2022 5:33:10 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C04_2.tif + 148.9121924227837 + 150.6109 + + 149.20821376979373 + -0.42521980923248404 + 0.42521980923248404 + 149.20821376979373 + 237.98839753132378 + 199.05817192418263 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C04_2.tif + + + + + + Cy3/Cy5 Red + 3/7/2022 5:33:10 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C04_3.tif + 148.9121924227837 + 150.6109 + + 149.20821376979373 + -0.42521980923248404 + 0.42521980923248404 + 149.20821376979373 + 237.98839753132378 + 199.05817192418263 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C04_3.tif + + + + + + Cy3/Cy5 Red + 3/7/2022 5:33:10 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C04_4.tif + 148.9121924227837 + 150.6109 + + 149.20821376979373 + -0.42521980923248404 + 0.42521980923248404 + 149.20821376979373 + 237.98839753132378 + 199.05817192418263 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C04_4.tif + + + + + + + + + + Cy3/Cy5 Green + 3/7/2022 5:33:19 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D01_1.tif + 150.18315263850991 + 150.6109 + + 150.48203424900862 + -0.2889122673767972 + 0.2889122673767972 + 150.48203424900862 + 229.16999376276226 + 232.30958675856149 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D01_1.tif + + + + + + Cy3/Cy5 Green + 3/7/2022 5:33:19 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D01_2.tif + 150.18315263850991 + 150.6109 + + 150.48203424900862 + -0.2889122673767972 + 0.2889122673767972 + 150.48203424900862 + 229.16999376276226 + 232.30958675856149 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D01_2.tif + + + + + + Cy3/Cy5 Red + 3/7/2022 5:33:19 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D01_3.tif + 150.18315263850991 + 150.6109 + + 150.48203424900862 + -0.2889122673767972 + 0.2889122673767972 + 150.48203424900862 + 229.16999376276226 + 232.30958675856149 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D01_3.tif + + + + + + Cy3/Cy5 Red + 3/7/2022 5:33:19 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D01_4.tif + 150.18315263850991 + 150.6109 + + 150.48203424900862 + -0.2889122673767972 + 0.2889122673767972 + 150.48203424900862 + 229.16999376276226 + 232.30958675856149 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D01_4.tif + + + + + + + + + + Cy3/Cy5 Green + 3/7/2022 5:33:26 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D02_1.tif + 149.54493072769895 + 150.6109 + + 149.84263967733128 + 0.23141086640695491 + -0.23141086640695491 + 149.84263967733128 + 255.04138106766595 + 217.90409086795987 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D02_1.tif + + + + + + Cy3/Cy5 Green + 3/7/2022 5:33:26 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D02_2.tif + 149.54493072769895 + 150.6109 + + 149.84263967733128 + 0.23141086640695491 + -0.23141086640695491 + 149.84263967733128 + 255.04138106766595 + 217.90409086795987 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D02_2.tif + + + + + + Cy3/Cy5 Red + 3/7/2022 5:33:26 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D02_3.tif + 149.54493072769895 + 150.6109 + + 149.84263967733128 + 0.23141086640695491 + -0.23141086640695491 + 149.84263967733128 + 255.04138106766595 + 217.90409086795987 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D02_3.tif + + + + + + Cy3/Cy5 Red + 3/7/2022 5:33:26 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D02_4.tif + 149.54493072769895 + 150.6109 + + 149.84263967733128 + 0.23141086640695491 + -0.23141086640695491 + 149.84263967733128 + 255.04138106766595 + 217.90409086795987 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D02_4.tif + + + + + + + + + + Cy3/Cy5 Green + 3/7/2022 5:33:34 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D03_1.tif + 149.97464368003622 + 150.6109 + + 150.27189050761314 + -0.67070961064447443 + 0.67070961064447443 + 150.27189050761314 + 94.444081382060133 + 232.34642808970204 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D03_1.tif + + + + + + Cy3/Cy5 Green + 3/7/2022 5:33:34 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D03_2.tif + 149.97464368003622 + 150.6109 + + 150.27189050761314 + -0.67070961064447443 + 0.67070961064447443 + 150.27189050761314 + 94.444081382060133 + 232.34642808970204 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D03_2.tif + + + + + + Cy3/Cy5 Red + 3/7/2022 5:33:34 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D03_3.tif + 149.97464368003622 + 150.6109 + + 150.27189050761314 + -0.67070961064447443 + 0.67070961064447443 + 150.27189050761314 + 94.444081382060133 + 232.34642808970204 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D03_3.tif + + + + + + Cy3/Cy5 Red + 3/7/2022 5:33:34 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D03_4.tif + 149.97464368003622 + 150.6109 + + 150.27189050761314 + -0.67070961064447443 + 0.67070961064447443 + 150.27189050761314 + 94.444081382060133 + 232.34642808970204 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D03_4.tif + + + + + + + + + + Cy3/Cy5 Green + 3/7/2022 5:33:41 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D04_1.tif + 150.34560659265893 + 150.6109 + + 150.6448953579918 + -0.2416339219460118 + 0.2416339219460118 + 150.6448953579918 + 234.1509119417525 + 200.07432681051336 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D04_1.tif + + + + + + Cy3/Cy5 Green + 3/7/2022 5:33:41 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D04_2.tif + 150.34560659265893 + 150.6109 + + 150.6448953579918 + -0.2416339219460118 + 0.2416339219460118 + 150.6448953579918 + 234.1509119417525 + 200.07432681051336 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D04_2.tif + + + + + + Cy3/Cy5 Red + 3/7/2022 5:33:41 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D04_3.tif + 150.34560659265893 + 150.6109 + + 150.6448953579918 + -0.2416339219460118 + 0.2416339219460118 + 150.6448953579918 + 234.1509119417525 + 200.07432681051336 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D04_3.tif + + + + + + Cy3/Cy5 Red + 3/7/2022 5:33:41 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D04_4.tif + 150.34560659265893 + 150.6109 + + 150.6448953579918 + -0.2416339219460118 + 0.2416339219460118 + 150.6448953579918 + 234.1509119417525 + 200.07432681051336 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D04_4.tif + + + + + + \ No newline at end of file diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1.xsl b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1.xsl new file mode 100644 index 0000000..4b467ce --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1.xsl @@ -0,0 +1,118 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + + + + + + ID + + + + + + + + + + + + + + + + + + + + + + + + + + + 1 + 0 + + + + + + + + + + + + + + + + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ +
diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01.xml b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01.xml new file mode 100644 index 0000000..15e25c1 --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01.xml @@ -0,0 +1,9297 @@ + + + + + + + Cy3/Cy5 Green + 3/7/2022 5:31:47 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01_1.tif + 150.3716670323235 + 150.6109 + + 150.66990076589988 + -0.62607054037768517 + 0.62607054037768517 + 150.66990076589988 + 227.22602466270919 + 233.1385439330713 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01_1.tif + + + + + + Cy3/Cy5 Green + 3/7/2022 5:31:47 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01_2.tif + 150.3716670323235 + 150.6109 + + 150.66990076589988 + -0.62607054037768517 + 0.62607054037768517 + 150.66990076589988 + 227.22602466270919 + 233.1385439330713 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01_2.tif + + + + + + Cy3/Cy5 Red + 3/7/2022 5:31:47 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01_3.tif + 150.3716670323235 + 150.6109 + + 150.66990076589988 + -0.62607054037768517 + 0.62607054037768517 + 150.66990076589988 + 227.22602466270919 + 233.1385439330713 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01_3.tif + + + + + + Cy3/Cy5 Red + 3/7/2022 5:31:47 PM + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01_4.tif + 150.3716670323235 + 150.6109 + + 150.66990076589988 + -0.62607054037768517 + 0.62607054037768517 + 150.66990076589988 + 227.22602466270919 + 233.1385439330713 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01_4.tif + + + + \ No newline at end of file diff --git a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01_1.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01_1.csv similarity index 100% rename from example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01_1.csv rename to example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01_1.csv diff --git a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01_2.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01_2.csv similarity index 100% rename from example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01_2.csv rename to example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01_2.csv diff --git a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01_3.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01_3.csv similarity index 100% rename from example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01_3.csv rename to example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01_3.csv diff --git a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01_4.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01_4.csv similarity index 100% rename from example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01_4.csv rename to example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01_4.csv diff --git a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A02_1.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A02_1.csv similarity index 100% rename from example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A02_1.csv rename to example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A02_1.csv diff --git a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A02_2.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A02_2.csv similarity index 100% rename from example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A02_2.csv rename to example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A02_2.csv diff --git a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A02_3.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A02_3.csv similarity index 100% rename from example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A02_3.csv rename to example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A02_3.csv diff --git a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A02_4.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A02_4.csv similarity index 100% rename from example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A02_4.csv rename to example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A02_4.csv diff --git a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A03_1.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A03_1.csv similarity index 100% rename from example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A03_1.csv rename to example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A03_1.csv diff --git a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A03_2.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A03_2.csv similarity index 100% rename from example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A03_2.csv rename to example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A03_2.csv diff --git a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A03_3.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A03_3.csv similarity index 100% rename from example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A03_3.csv rename to example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A03_3.csv diff --git a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A03_4.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A03_4.csv similarity index 100% rename from example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A03_4.csv rename to example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A03_4.csv diff --git a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A04_1.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A04_1.csv similarity index 100% rename from example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A04_1.csv rename to example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A04_1.csv diff --git a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A04_2.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A04_2.csv similarity index 100% rename from example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A04_2.csv rename to example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A04_2.csv diff --git a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A04_3.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A04_3.csv similarity index 100% rename from example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A04_3.csv rename to example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A04_3.csv diff --git a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A04_4.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A04_4.csv similarity index 100% rename from example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A04_4.csv rename to example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A04_4.csv diff --git a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B01_1.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B01_1.csv similarity index 100% rename from example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B01_1.csv rename to example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B01_1.csv diff --git a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B01_2.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B01_2.csv similarity index 100% rename from example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B01_2.csv rename to example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B01_2.csv diff --git a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B01_3.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B01_3.csv similarity index 100% rename from example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B01_3.csv rename to example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B01_3.csv diff --git a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B01_4.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B01_4.csv similarity index 100% rename from example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B01_4.csv rename to example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B01_4.csv diff --git a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B02_1.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B02_1.csv similarity index 100% rename from example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B02_1.csv rename to example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B02_1.csv diff --git a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B02_2.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B02_2.csv similarity index 100% rename from example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B02_2.csv rename to example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B02_2.csv diff --git a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B02_3.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B02_3.csv similarity index 100% rename from example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B02_3.csv rename to example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B02_3.csv diff --git a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B02_4.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B02_4.csv similarity index 100% rename from example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B02_4.csv rename to example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B02_4.csv diff --git a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B03_1.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B03_1.csv similarity index 100% rename from example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B03_1.csv rename to example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B03_1.csv diff --git a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B03_2.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B03_2.csv similarity index 100% rename from example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B03_2.csv rename to example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B03_2.csv diff --git a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B03_3.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B03_3.csv similarity index 100% rename from example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B03_3.csv rename to example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B03_3.csv diff --git a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B03_4.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B03_4.csv similarity index 100% rename from example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B03_4.csv rename to example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B03_4.csv diff --git a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B04_1.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B04_1.csv similarity index 100% rename from example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B04_1.csv rename to example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B04_1.csv diff --git a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B04_2.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B04_2.csv similarity index 100% rename from example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B04_2.csv rename to example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B04_2.csv diff --git a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B04_3.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B04_3.csv similarity index 100% rename from example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B04_3.csv rename to example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B04_3.csv diff --git a/example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B04_4.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B04_4.csv similarity index 100% rename from example_data/record_time/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B04_4.csv rename to example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_B04_4.csv diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C01_1.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C01_1.csv new file mode 100644 index 0000000..05beab7 --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C01_1.csv @@ -0,0 +1,101 @@ + ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour +1 230 230 0.235902559858931 0.926189718556114 0.235492484931716 1 0.00681518850116134 0.191326172562474 20901750 52260843 1352 861 78 True 228 233 32 {X=0,Y=0,Width=0,Height=0} +2 281 232 0.231895644542439 0.230650773482993 0.231692988479438 0.230487525749599 0.0048753844726169 0.00392191088699134 20546724 8721758 1352 577 0 False 281 232 27 {X=0,Y=0,Width=0,Height=0} +3 335 232 0.230594203467771 0.230171767133574 0.230609597924773 0.230258640421149 0.00389550893197819 0.0037058143049793 20431412 8703645 1352 577 0 False 335 232 27 {X=0,Y=0,Width=0,Height=0} +4 388 232 0.230382484538954 0.230700993383482 0.230365453574426 0.230609597924773 0.00385698257858304 0.00375571688040156 20412653 8723657 1352 577 0 False 388 232 27 {X=0,Y=0,Width=0,Height=0} +5 441 232 0.230701795372905 0.230722440639562 0.230685893034257 0.23080796520943 0.00477256034603059 0.00493813745775712 20440945 8724468 1352 577 0 False 441 232 27 {X=0,Y=0,Width=0,Height=0} +6 495 232 0.232521061287545 0.231220725718552 0.230975814450294 0.23099107347219 0.0128337128625964 0.00627702986849241 20602138 8743310 1352 577 0 False 495 232 27 {X=0,Y=0,Width=0,Height=0} +7 548 232 0.231187612382922 0.231613070343959 0.231296253910124 0.231799801632715 0.00553759508704291 0.00544617711349035 20483990 8758146 1352 577 0 False 548 232 27 {X=0,Y=0,Width=0,Height=0} +8 601 231 0.231026038301951 0.231020375025503 0.23089951934081 0.231372549019608 0.00437092744907399 0.00447800327204005 20469674 8735734 1352 577 0 False 601 231 27 {X=0,Y=0,Width=0,Height=0} +9 655 231 0.23228592337172 0.231574142648583 0.232272831311513 0.231479362172885 0.0039538163745307 0.00329771166770487 20581304 8756674 1352 577 0 False 655 231 27 {X=0,Y=0,Width=0,Height=0} +10 706 232 0.234345259297281 0.94478805599618 0.23440909437705 1 0.00445904761478172 0.139956043860832 20763768 53310266 1352 861 80 True 708 231 32 {X=0,Y=0,Width=0,Height=0} +11 228 285 0.230762538017763 0.230932867047243 0.230548561837186 0.231403067063401 0.00505026906184962 0.00527125777639043 20446327 8732425 1352 577 0 False 228 285 27 {X=0,Y=0,Width=0,Height=0} +12 281 285 0.230872669331127 0.231041002472781 0.23089951934081 0.230975814450294 0.00399707975777583 0.00403543965118042 20456085 8736514 1352 577 0 False 281 285 27 {X=0,Y=0,Width=0,Height=0} +13 335 285 0.231171382742769 0.230518652038633 0.231143663691157 0.230441748683909 0.00349847502706736 0.00328570504032904 20482552 8716762 1352 577 0 False 335 285 27 {X=0,Y=0,Width=0,Height=0} +14 388 285 0.231031670145092 0.230696524103238 0.230838483253223 0.230640115968566 0.00371947332660975 0.00364463259519002 20470173 8723488 1352 577 0 False 388 285 27 {X=0,Y=0,Width=0,Height=0} +15 441 285 0.231463798422 0.231637981953364 0.231280994888228 0.231525139238575 0.00419502889281381 0.00378684002053356 20508461 8759088 1352 577 0 False 441 285 27 {X=0,Y=0,Width=0,Height=0} +16 495 285 0.232154765758213 0.231876228969425 0.231921873807889 0.231601434348058 0.00709884728000684 0.00547387169366647 20569683 8768097 1352 577 0 False 495 285 27 {X=0,Y=0,Width=0,Height=0} +17 548 284 0.232054250337346 0.232140551194481 0.232028686961166 0.232043945983062 0.00485886419594895 0.00441046108367047 20560777 8778092 1352 577 0 False 548 284 27 {X=0,Y=0,Width=0,Height=0} +18 601 284 0.231547384454668 0.232161046414533 0.231555657282368 0.231876096742199 0.00408694074437051 0.00456718023104628 20515867 8778867 1352 577 0 False 601 284 27 {X=0,Y=0,Width=0,Height=0} +19 655 284 0.23170848451277 0.231497239293859 0.231662470435645 0.231479362172885 0.0034491618008501 0.00323533150172024 20530141 8753766 1352 577 0 False 655 284 27 {X=0,Y=0,Width=0,Height=0} +20 708 284 0.231379456209993 0.232049261517553 0.231372549019608 0.232074464026856 0.00364403870246796 0.00374049028304727 20500988 8774640 1352 577 0 False 708 284 27 {X=0,Y=0,Width=0,Height=0} +21 228 338 0.230793688092049 0.230503419462182 0.230640115968566 0.230731670099947 0.00490607570299168 0.0049217149929204 20449087 8716186 1352 577 0 False 228 338 27 {X=0,Y=0,Width=0,Height=0} +22 282 338 0.231212645304939 0.23097943747629 0.231097886625467 0.230914778362707 0.00424724965907632 0.00353006131285255 20486208 8734186 1352 577 0 False 282 338 27 {X=0,Y=0,Width=0,Height=0} +23 335 338 0.232343302711456 0.231778486603861 0.231784542610819 0.231616693369955 0.00725008706010064 0.00347814834019044 20586388 8764401 1352 577 0 False 335 338 27 {X=0,Y=0,Width=0,Height=0} +24 388 338 0.232064193531348 0.231690343934916 0.232028686961166 0.231662470435645 0.00405968591481992 0.00401519973074749 20561658 8761068 1352 577 0 False 388 338 27 {X=0,Y=0,Width=0,Height=0} +25 442 337 0.232246060305641 0.232261565551846 0.232349126420996 0.232150759136339 0.00408064629133924 0.00405596438656696 20577772 8782668 1352 577 0 False 442 337 27 {X=0,Y=0,Width=0,Height=0} +26 495 337 0.23293640689762 0.232632410030281 0.233020523384451 0.232394903486687 0.00460312331125609 0.00476510603667537 20638939 8796691 1352 577 0 False 495 337 27 {X=0,Y=0,Width=0,Height=0} +27 548 337 0.232834491980662 0.232215338913587 0.232852674143587 0.232318608377203 0.00424907935543975 0.00437454892754822 20629909 8780920 1352 577 0 False 548 337 27 {X=0,Y=0,Width=0,Height=0} +28 602 337 0.231944604333111 0.232292903404441 0.231967650873579 0.232257572289616 0.00432420478583312 0.004399012322406 20551062 8783853 1352 577 0 False 602 337 27 {X=0,Y=0,Width=0,Height=0} +29 655 337 0.231928081250229 0.232012951921255 0.231967650873579 0.231982909895476 0.00384493760850004 0.00378051358508701 20549598 8773267 1352 577 0 False 655 337 27 {X=0,Y=0,Width=0,Height=0} +30 708 337 0.231907754698131 0.231672572595722 0.231723506523232 0.231631952391852 0.00341796980026993 0.00337680541127729 20547797 8760396 1352 577 0 False 708 337 27 {X=0,Y=0,Width=0,Height=0} +31 228 391 0.230651910109012 0.242490399311678 0.23076218814374 0.2323338673991 0.00529448073870217 0.0353818395841786 20436525 9169458 1352 577 0 False 228 391 27 {X=0,Y=0,Width=0,Height=0} +32 282 391 0.231257226027196 0.231489094096729 0.231296253910124 0.231479362172885 0.00453826854590555 0.0041991484448444 20490158 8753458 1352 577 0 False 282 391 27 {X=0,Y=0,Width=0,Height=0} +33 335 391 0.232527517027579 0.23145616951742 0.232364385442893 0.231097886625467 0.00478381256766488 0.00452377701888647 20602710 8752213 1352 577 0 False 335 391 27 {X=0,Y=0,Width=0,Height=0} +34 388 390 0.233022363044635 0.232992332539838 0.232913710231174 0.233096818493935 0.00419344422375568 0.00426822471935464 20646555 8810301 1352 577 0 False 388 390 27 {X=0,Y=0,Width=0,Height=0} +35 442 390 0.232913495792257 0.232904771670687 0.232822156099794 0.232745860990311 0.00422999460977717 0.0039360158546614 20636909 8806990 1352 577 0 False 442 390 27 {X=0,Y=0,Width=0,Height=0} +36 495 390 0.23321295409698 0.233176022602393 0.233157854581521 0.233112077515831 0.00430780812822701 0.00460210039432648 20663442 8817247 1352 577 0 False 495 390 27 {X=0,Y=0,Width=0,Height=0} +37 548 390 0.232991506413078 0.233420193398186 0.232898451209277 0.233142595559625 0.0039803056743918 0.00373951731239298 20643821 8826480 1352 577 0 False 548 390 27 {X=0,Y=0,Width=0,Height=0} +38 602 390 0.232642354710862 0.233095654894345 0.232730601968414 0.233066300450141 0.00397446912077179 0.00368460327876473 20612885 8814208 1352 577 0 False 602 390 27 {X=0,Y=0,Width=0,Height=0} +39 655 389 0.232161797097445 0.232543923570548 0.232227054245823 0.232257572289616 0.00382263923380724 0.00414873850800995 20570306 8793345 1352 577 0 False 655 389 27 {X=0,Y=0,Width=0,Height=0} +40 708 389 0.231833163813726 0.2316433239333 0.231738765545129 0.231570916304265 0.00411143479665106 0.003447786783286 20541188 8759290 1352 577 0 False 708 389 27 {X=0,Y=0,Width=0,Height=0} +41 229 444 0.231040597575802 0.231277080962334 0.231265735866331 0.231784542610819 0.00591714852405946 0.00630913942532159 20470964 8745441 1352 577 0 False 229 444 27 {X=0,Y=0,Width=0,Height=0} +42 282 443 0.231710899772153 0.231985871785341 0.231845578698405 0.232074464026856 0.00518646186143834 0.00532300070728373 20530355 8772243 1352 577 0 False 282 443 27 {X=0,Y=0,Width=0,Height=0} +43 335 443 0.232698390985801 0.232788491048018 0.232623788815137 0.23270008392462 0.0049615532849216 0.004276513776111 20617850 8802593 1352 577 0 False 335 443 27 {X=0,Y=0,Width=0,Height=0} +44 389 443 0.233295806522826 0.23327646240337 0.233340962844282 0.233401998931868 0.00462397630695948 0.00482766220424489 20670783 8821045 1352 577 0 False 389 443 27 {X=0,Y=0,Width=0,Height=0} +45 442 443 0.233500505398669 0.233709321450866 0.233295185778592 0.233966582742046 0.00526634766751806 0.00505359508734324 20688920 8837413 1352 577 0 False 442 443 27 {X=0,Y=0,Width=0,Height=0} +46 495 443 0.233799444535487 0.233523912434371 0.233844510566873 0.233325703822385 0.00533954730405419 0.00530714162091518 20715407 8830402 1352 577 0 False 495 443 27 {X=0,Y=0,Width=0,Height=0} +47 549 443 0.2335490927428 0.233462426774215 0.233508812085145 0.233234149691005 0.00477630032310997 0.00454666526945476 20693225 8828077 1352 577 0 False 549 443 27 {X=0,Y=0,Width=0,Height=0} +48 602 442 0.232949916549402 0.232931534461258 0.233005264362554 0.232898451209277 0.00466402950501196 0.00473001111280265 20640136 8808002 1352 577 0 False 602 442 27 {X=0,Y=0,Width=0,Height=0} +49 655 442 0.232658787503674 0.232208912670396 0.232684824902724 0.232166018158236 0.00425362381889184 0.00431140989031021 20614341 8780677 1352 577 0 False 655 442 27 {X=0,Y=0,Width=0,Height=0} +50 709 442 0.231557282503635 0.231520802185557 0.231464103150988 0.231540398260472 0.00463124461219875 0.0048445191852246 20516744 8754657 1352 577 0 False 709 442 27 {X=0,Y=0,Width=0,Height=0} +51 229 496 0.230874125258512 0.231005909366963 0.23076218814374 0.23085374227512 0.00547791286751239 0.00563248499933743 20456214 8735187 1352 577 0 False 229 496 27 {X=0,Y=0,Width=0,Height=0} +52 282 496 0.231988541738617 0.231854940386016 0.232028686961166 0.231738765545129 0.00443915971865894 0.00394933537779999 20554955 8767292 1352 577 0 False 282 496 27 {X=0,Y=0,Width=0,Height=0} +53 335 496 0.233110813454846 0.232814672038794 0.233096818493935 0.232730601968414 0.00392211798652583 0.00386688943204508 20654392 8803583 1352 577 0 False 335 496 27 {X=0,Y=0,Width=0,Height=0} +54 389 496 0.233361266823862 0.233417416626437 0.233218890669108 0.233600366216526 0.00427508382358006 0.00413618329674702 20676583 8826375 1352 577 0 False 389 496 27 {X=0,Y=0,Width=0,Height=0} +55 442 496 0.233915151260698 0.233667114520282 0.233676661326009 0.233386739909972 0.00584264132820011 0.00558865316417918 20725659 8835817 1352 577 0 False 442 496 27 {X=0,Y=0,Width=0,Height=0} +56 495 495 0.234455052022881 0.233519786944915 0.234256504158083 0.233585107194629 0.00606041447053283 0.00577206332334266 20773496 8830246 1352 577 0 False 495 495 27 {X=0,Y=0,Width=0,Height=0} +57 549 495 0.233718330193496 0.233047206838686 0.233798733501183 0.232990005340658 0.00494666583514423 0.0046098025998611 20708220 8812376 1352 577 0 False 549 495 27 {X=0,Y=0,Width=0,Height=0} +58 602 495 0.233225944580858 0.232934179005781 0.233112077515831 0.232928969253071 0.00493246635605409 0.00539707105713739 20664593 8808102 1352 577 0 False 602 495 27 {X=0,Y=0,Width=0,Height=0} +59 655 495 0.232357196096038 0.232090410630329 0.232318608377203 0.231937132829786 0.00455543597599402 0.00458807839528133 20587619 8776196 1352 577 0 False 655 495 27 {X=0,Y=0,Width=0,Height=0} +60 709 495 0.231776664802177 0.232157291161311 0.231952391851682 0.231937132829786 0.00459956633964747 0.00450479700816211 20536182 8778725 1352 577 0 False 709 495 27 {X=0,Y=0,Width=0,Height=0} +61 229 549 0.231651680772233 0.231678020357439 0.231692988479438 0.231738765545129 0.00511976753517696 0.00508946043681045 20525108 8760602 1352 577 0 False 229 549 27 {X=0,Y=0,Width=0,Height=0} +62 282 549 0.232074757469585 0.232029929897092 0.232104982070649 0.232043945983062 0.00404516040349221 0.00382939714912604 20562594 8773909 1352 577 0 False 282 549 27 {X=0,Y=0,Width=0,Height=0} +63 336 549 0.233174919404826 0.233329644193724 0.233188372625315 0.233340962844282 0.00368023472415638 0.00357694453225253 20660072 8823056 1352 577 0 False 336 549 27 {X=0,Y=0,Width=0,Height=0} +64 389 549 0.233929022072762 0.234638111932727 0.233783474479286 0.234531166552224 0.00445786650409302 0.00352726368065024 20726888 8872534 1352 577 0 False 389 549 27 {X=0,Y=0,Width=0,Height=0} +65 442 548 0.233635116607369 0.233548506698433 0.233508812085145 0.233707179369802 0.00483825297582073 0.00464377831646189 20700847 8831332 1352 577 0 False 442 548 27 {X=0,Y=0,Width=0,Height=0} +66 496 548 0.234411791792903 0.2338604307249 0.23413443198291 0.233844510566873 0.00617971343052137 0.00626129886770942 20769663 8843127 1352 577 0 False 496 548 27 {X=0,Y=0,Width=0,Height=0} +67 549 548 0.234850951409044 0.234261185001889 0.233859769588769 0.234210727092393 0.0114233970657453 0.00507596315067961 20808574 8858281 1352 577 0 False 549 548 27 {X=0,Y=0,Width=0,Height=0} +68 602 548 0.234264867275854 0.232367135769197 0.233279926756695 0.23256275272755 0.00771939902671055 0.00428512106454183 20756645 8786660 1352 577 0 False 602 548 27 {X=0,Y=0,Width=0,Height=0} +69 656 548 0.232353099184094 0.231797712442542 0.232349126420996 0.231723506523232 0.00390396736516628 0.00350394846483024 20587256 8765128 1352 577 0 False 656 548 27 {X=0,Y=0,Width=0,Height=0} +70 709 548 0.231965811213395 0.231238391275965 0.231937132829786 0.231250476844434 0.00384965755203518 0.00401328484921027 20552941 8743978 1352 577 0 False 709 548 27 {X=0,Y=0,Width=0,Height=0} +71 229 602 0.231997480455586 0.23210104169931 0.232059205004959 0.231891355764096 0.00485472271735877 0.00459376387189441 20555747 8776598 1352 577 0 False 229 602 27 {X=0,Y=0,Width=0,Height=0} +72 282 602 0.232608292781805 0.232709524948567 0.232623788815137 0.232745860990311 0.00391573681970861 0.00381323255346387 20609867 8799607 1352 577 0 False 282 602 27 {X=0,Y=0,Width=0,Height=0} +73 336 601 0.233074437842735 0.233092164095574 0.233142595559625 0.233142595559625 0.0036026948076959 0.00336923617225045 20651169 8814076 1352 577 0 False 336 601 27 {X=0,Y=0,Width=0,Height=0} +74 389 601 0.23333345748218 0.233112262633948 0.233203631647211 0.233051041428244 0.00381219177218434 0.00382556338087155 20674119 8814836 1352 577 0 False 389 601 27 {X=0,Y=0,Width=0,Height=0} +75 442 601 0.233610535135704 0.233282015946868 0.233600366216526 0.233051041428244 0.00463875335913975 0.00421410082658538 20698669 8821255 1352 577 0 False 442 601 27 {X=0,Y=0,Width=0,Height=0} +76 496 601 0.233534014301044 0.233994324014091 0.233417257953765 0.233752956435492 0.00528545043365568 0.00599993663937718 20691889 8848190 1352 577 0 False 496 601 27 {X=0,Y=0,Width=0,Height=0} +77 549 601 0.23300192362995 0.232736181957357 0.232913710231174 0.23256275272755 0.00466406028295721 0.00448987672396601 20644744 8800615 1352 577 0 False 549 601 27 {X=0,Y=0,Width=0,Height=0} +78 602 601 0.23205562726092 0.23225744006239 0.232059205004959 0.232028686961166 0.00395127930913225 0.00418856936686019 20560899 8782512 1352 577 0 False 602 601 27 {X=0,Y=0,Width=0,Height=0} +79 656 600 0.231688406258366 0.232266590186439 0.231631952391852 0.232364385442893 0.00352824994273134 0.00327900257567739 20528362 8782858 1352 577 0 False 656 600 27 {X=0,Y=0,Width=0,Height=0} +80 709 600 0.23101222392118 0.23177943863989 0.231097886625467 0.231692988479438 0.00386020371785339 0.00358668364158804 20468450 8764437 1352 577 0 False 709 600 27 {X=0,Y=0,Width=0,Height=0} +81 227 656 0.238896330295524 0.980917869893512 0.238162813763638 1 0.00697868717017881 0.0717026910191187 21167008 48149055 1352 749 87 True 229 654 31 {X=0,Y=0,Width=0,Height=0} +82 283 654 0.233380780765326 0.232430393274183 0.233203631647211 0.2323338673991 0.00417130509610842 0.00350214916054795 20678312 8789052 1352 577 0 False 283 654 27 {X=0,Y=0,Width=0,Height=0} +83 336 654 0.23254677138509 0.231871257225722 0.23224231326772 0.231799801632715 0.00372401078878598 0.0033758939653513 20604416 8767909 1352 577 0 False 336 654 27 {X=0,Y=0,Width=0,Height=0} +84 389 654 0.232733999132312 0.232301313056024 0.232776379034104 0.232455939574273 0.00378301549529737 0.00397947926450422 20621005 8784171 1352 577 0 False 389 654 27 {X=0,Y=0,Width=0,Height=0} +85 443 654 0.233423104235823 0.233648047354272 0.233340962844282 0.233508812085145 0.00442613062592003 0.00479621349136699 20682062 8835096 1352 577 0 False 443 654 27 {X=0,Y=0,Width=0,Height=0} +86 496 654 0.233098342138872 0.23329269990674 0.233188372625315 0.232913710231174 0.00444940132407603 0.00451017688238967 20653287 8821659 1352 577 0 False 496 654 27 {X=0,Y=0,Width=0,Height=0} +87 549 653 0.232623077780833 0.232347962821406 0.232532234683757 0.232364385442893 0.00369124178254426 0.00389916790206319 20611177 8785935 1352 577 0 False 549 653 27 {X=0,Y=0,Width=0,Height=0} +88 603 653 0.232210136143883 0.231414174150397 0.232089723048753 0.231235217822538 0.00398099060465407 0.00353968692997254 20574589 8750625 1352 577 0 False 603 653 27 {X=0,Y=0,Width=0,Height=0} +89 656 653 0.231817645207877 0.232141265221502 0.231815060654612 0.232181277180133 0.00355176199075148 0.00360691660946568 20539813 8778119 1352 577 0 False 656 653 27 {X=0,Y=0,Width=0,Height=0} +90 709 653 0.231515354052196 0.23164565113248 0.231372549019608 0.231662470435645 0.00375959179163077 0.00355988171425143 20513029 8759378 1352 577 0 False 709 653 27 {X=0,Y=0,Width=0,Height=0} +91 228 709 0.238403481946275 0.965625885249914 0.237720302128634 1 0.00762589607203561 0.122906953673802 21123340 47398437 1352 749 87 True 229 707 31 {X=0,Y=0,Width=0,Height=0} +92 283 707 0.233808112382245 0.232098026918554 0.233386739909972 0.232089723048753 0.0048546117170898 0.00349382287725788 20716175 8776484 1352 577 0 False 283 707 27 {X=0,Y=0,Width=0,Height=0} +93 336 707 0.232201028133032 0.231986665148698 0.23228809033341 0.232196536202029 0.00426458682908067 0.00454908612480699 20573782 8772273 1352 577 0 False 336 707 27 {X=0,Y=0,Width=0,Height=0} +94 389 707 0.232145973762608 0.232241123222684 0.232150759136339 0.232196536202029 0.00434121380677712 0.00457136273689891 20568904 8781895 1352 577 0 False 389 707 27 {X=0,Y=0,Width=0,Height=0} +95 443 707 0.232225496742109 0.232670385689629 0.23224231326772 0.232791638056001 0.0045503357704176 0.00384798203291335 20575950 8798127 1352 577 0 False 443 707 27 {X=0,Y=0,Width=0,Height=0} +96 496 706 0.232453671036255 0.232646267443581 0.232547493705653 0.232227054245823 0.00465125784839728 0.0049437588620618 20596167 8797215 1352 577 0 False 496 706 27 {X=0,Y=0,Width=0,Height=0} +97 549 706 0.232948957217404 0.231718667006755 0.23228809033341 0.231433585107195 0.00968868843544423 0.00403160578112337 20640051 8762139 1352 577 0 False 549 706 27 {X=0,Y=0,Width=0,Height=0} +98 603 706 0.231537429974407 0.231121105726378 0.231525139238575 0.231158922713054 0.00397094645580549 0.00374117769792723 20514985 8739543 1352 577 0 False 603 706 27 {X=0,Y=0,Width=0,Height=0} +99 656 706 0.232272086418432 0.231162968866174 0.232257572289616 0.231204699778744 0.00426117927250275 0.00414193933774012 20580078 8741126 1352 577 0 False 656 706 27 {X=0,Y=0,Width=0,Height=0} +100 705 709 0.234743957675627 0.934939270067585 0.234683756771191 1 0.00506501398318473 0.160644637382947 20799094 52754542 1352 861 79 True 709 706 32 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C01_2.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C01_2.csv new file mode 100644 index 0000000..ad958a2 --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C01_2.csv @@ -0,0 +1,101 @@ + ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour +1 230 230 0.023706402875197 0.164003985068134 0.0236972610055695 0.181475547417411 0.00211464166564596 0.0513367062022258 2100466 9254029 1352 861 0 True 228 233 32 {X=0,Y=0,Width=0,Height=0} +2 281 232 0.0233244081598748 0.0233452456841364 0.0233463035019455 0.0233615625238422 0.00171381508481864 0.00162959776373255 2066620 882770 1352 577 0 False 281 232 27 {X=0,Y=0,Width=0,Height=0} +3 335 232 0.023213656102277 0.0233307006892609 0.0232089723048753 0.0233157854581521 0.00155304583556543 0.00141089797795247 2056807 882220 1352 577 0 False 335 232 27 {X=0,Y=0,Width=0,Height=0} +4 388 232 0.0231920090578999 0.0230694196904058 0.0231937132829786 0.0231021591515984 0.00153225172781535 0.00152040748097393 2054889 872340 1352 577 0 False 388 232 27 {X=0,Y=0,Width=0,Height=0} +5 441 232 0.0231669987084005 0.0232181224289242 0.023224231326772 0.0231479362172885 0.00188470098101116 0.00181259901172393 2052673 877963 1352 577 0 False 441 232 27 {X=0,Y=0,Width=0,Height=0} +6 495 232 0.0232854479944995 0.0232114581767267 0.0231631952391852 0.0230869001297017 0.00269056746107835 0.00254887066234889 2063168 877711 1352 577 0 False 495 232 27 {X=0,Y=0,Width=0,Height=0} +7 548 232 0.0233293289687113 0.0233522537271219 0.0233157854581521 0.0233005264362554 0.00203489408142288 0.0021430556652894 2067056 883035 1352 577 0 False 548 232 27 {X=0,Y=0,Width=0,Height=0} +8 601 231 0.0233763475228693 0.0231657604473723 0.0233463035019455 0.0231937132829786 0.00180970376099571 0.00188429159643126 2071222 875983 1352 577 0 False 601 231 27 {X=0,Y=0,Width=0,Height=0} +9 655 231 0.0232855382845699 0.0233683325578207 0.0233310444800488 0.0233463035019455 0.00154572302448131 0.00139406968242818 2063176 883643 1352 577 0 False 655 231 27 {X=0,Y=0,Width=0,Height=0} +10 706 232 0.0235469957559152 0.154083848591159 0.0235141527428092 0.168139162279698 0.00151901833087174 0.0377736595161291 2086342 8694279 1352 861 0 True 708 231 32 {X=0,Y=0,Width=0,Height=0} +11 228 285 0.0231747749407133 0.0231693305824781 0.0231479362172885 0.0231326771953918 0.00196906164528215 0.00199562564567184 2053362 876118 1352 577 0 False 228 285 27 {X=0,Y=0,Width=0,Height=0} +12 281 285 0.023175801990264 0.0232467364006612 0.0232394903486687 0.0233310444800488 0.00159082738784877 0.00155254398599282 2053453 879045 1352 577 0 False 281 285 27 {X=0,Y=0,Width=0,Height=0} +13 335 285 0.023254433355319 0.0230099703295327 0.023224231326772 0.022919050888838 0.0014546503586383 0.00138141022457292 2060420 870092 1352 577 0 False 335 285 27 {X=0,Y=0,Width=0,Height=0} +14 388 285 0.0232734168426194 0.0231197189272299 0.0232394903486687 0.0230869001297017 0.00150223937709303 0.00141250746705517 2062102 874242 1352 577 0 False 388 285 27 {X=0,Y=0,Width=0,Height=0} +15 441 285 0.0234480942700567 0.0233333452337837 0.023422598611429 0.0233615625238422 0.00157802305605194 0.00157981787177082 2077579 882320 1352 577 0 False 441 285 27 {X=0,Y=0,Width=0,Height=0} +16 495 285 0.0233314394991068 0.0232779155805853 0.0232852674143587 0.0232394903486687 0.00213797902011644 0.00217132812641524 2067243 880224 1352 577 0 False 495 285 27 {X=0,Y=0,Width=0,Height=0} +17 548 284 0.0233398929069475 0.0234211705573867 0.0233310444800488 0.0234683756771191 0.00192383887908555 0.00183643693794132 2067992 885641 1352 577 0 False 548 284 27 {X=0,Y=0,Width=0,Height=0} +18 601 284 0.0232924906199903 0.0233020602720787 0.0232852674143587 0.0232089723048753 0.00169426335488157 0.00172662632569723 2063792 881137 1352 577 0 False 601 284 27 {X=0,Y=0,Width=0,Height=0} +19 655 284 0.0231812419670053 0.0232665969300276 0.0231479362172885 0.0233005264362554 0.00145042076185991 0.00130423306328232 2053935 879796 1352 577 0 False 655 284 27 {X=0,Y=0,Width=0,Height=0} +20 708 284 0.0232456752184907 0.0231890588846184 0.0232089723048753 0.0231784542610819 0.00143538577148217 0.00146824066422438 2059644 876864 1352 577 0 False 708 284 27 {X=0,Y=0,Width=0,Height=0} +21 228 338 0.02319003396261 0.0231981561177769 0.0231631952391852 0.0231631952391852 0.00198096809091584 0.00208419817134503 2054714 877208 1352 577 0 False 228 338 27 {X=0,Y=0,Width=0,Height=0} +22 282 338 0.023395658311675 0.02328830864056 0.0234073395895323 0.023224231326772 0.00166637900260134 0.00145352143887426 2072933 880617 1352 577 0 False 282 338 27 {X=0,Y=0,Width=0,Height=0} +23 335 338 0.0233879723694327 0.0234102485885074 0.0233310444800488 0.0233615625238422 0.00149991700066443 0.0014789872638472 2072252 885228 1352 577 0 False 335 338 27 {X=0,Y=0,Width=0,Height=0} +24 388 338 0.0235152813686891 0.0232496982905268 0.0235446707866026 0.0231937132829786 0.00163726499264291 0.00157091456163839 2083532 879157 1352 577 0 False 388 338 27 {X=0,Y=0,Width=0,Height=0} +25 442 337 0.0234860386721401 0.0234921236869341 0.0234836346990158 0.0234073395895323 0.00166068080822842 0.00163007080936415 2080941 888324 1352 577 0 False 442 337 27 {X=0,Y=0,Width=0,Height=0} +26 495 337 0.0233619011116062 0.0235565183460648 0.0233157854581521 0.0235294117647059 0.00197777897233138 0.00189087133297306 2069942 890759 1352 577 0 False 495 337 27 {X=0,Y=0,Width=0,Height=0} +27 548 337 0.0235549751408864 0.0235090223264349 0.0235294117647059 0.0234683756771191 0.00176010248357458 0.00187544785410957 2087049 888963 1352 577 0 False 548 337 27 {X=0,Y=0,Width=0,Height=0} +28 602 337 0.0232643991218388 0.0232767519809952 0.0232852674143587 0.0231784542610819 0.00167009877728894 0.00183929911783583 2061303 880180 1352 577 0 False 602 337 27 {X=0,Y=0,Width=0,Height=0} +29 655 337 0.0233390690100552 0.0230963147082029 0.0233005264362554 0.0229800869764248 0.00153671802716322 0.00143523178885421 2067919 873357 1352 577 0 False 655 337 27 {X=0,Y=0,Width=0,Height=0} +30 708 337 0.0232112747016703 0.0233252529275438 0.023270008392462 0.0232852674143587 0.00141554151909902 0.00139456797044489 2056596 882014 1352 577 0 False 708 337 27 {X=0,Y=0,Width=0,Height=0} +31 228 391 0.0233749141680018 0.0241924255220232 0.0234378576333257 0.0236057068741894 0.00208287029178247 0.00417095555638012 2071095 914805 1352 577 0 False 228 391 27 {X=0,Y=0,Width=0,Height=0} +32 282 391 0.0233004700049614 0.0233536817811642 0.0232852674143587 0.023270008392462 0.00183749427016836 0.00168796967633814 2064499 883089 1352 577 0 False 282 391 27 {X=0,Y=0,Width=0,Height=0} +33 335 391 0.0233977236970353 0.0232091309775466 0.0234988937209125 0.0230106050202182 0.00158728741229828 0.00174822608680481 2073116 877623 1352 577 0 False 335 391 27 {X=0,Y=0,Width=0,Height=0} +34 388 390 0.0234818740426431 0.0233645773045982 0.0234378576333257 0.0233768215457389 0.0015835563926119 0.0016829379483167 2080572 883501 1352 577 0 False 388 390 27 {X=0,Y=0,Width=0,Height=0} +35 442 390 0.0233763023778341 0.0236126884717296 0.0233157854581521 0.0235904478522927 0.00166595582899398 0.00173816268024747 2071218 892883 1352 577 0 False 442 390 27 {X=0,Y=0,Width=0,Height=0} +36 495 390 0.0234051952003604 0.0233987977107236 0.0233005264362554 0.023422598611429 0.00179109255923179 0.00185980001319102 2073778 884795 1352 577 0 False 495 390 27 {X=0,Y=0,Width=0,Height=0} +37 548 390 0.0235603248275573 0.0236877670907326 0.0235294117647059 0.0236820019836728 0.0015415670217231 0.00151721600631713 2087523 895722 1352 577 0 False 548 390 27 {X=0,Y=0,Width=0,Height=0} +38 602 390 0.0234683418183427 0.023406837126073 0.0234073395895323 0.0232852674143587 0.0015071863581035 0.00152027830076399 2079373 885099 1352 577 0 False 602 390 27 {X=0,Y=0,Width=0,Height=0} +39 655 389 0.0233061582793963 0.0232624185496815 0.0232394903486687 0.0233005264362554 0.00158005178499552 0.00152671097403761 2065003 879638 1352 577 0 False 655 389 27 {X=0,Y=0,Width=0,Height=0} +40 708 389 0.0232893191812677 0.023274054545582 0.023270008392462 0.023270008392462 0.00149068361351824 0.00141064193567282 2063511 880078 1352 577 0 False 708 389 27 {X=0,Y=0,Width=0,Height=0} +41 229 444 0.0233674765234531 0.023391657440512 0.0233463035019455 0.0232852674143587 0.00234615890092941 0.00240077864482317 2070436 884525 1352 577 0 False 229 444 27 {X=0,Y=0,Width=0,Height=0} +42 282 443 0.0233837738811593 0.0232753503723981 0.0234378576333257 0.0231937132829786 0.00197822640590209 0.00215314742599666 2071880 880127 1352 577 0 False 282 443 27 {X=0,Y=0,Width=0,Height=0} +43 335 443 0.0234685675435187 0.0229886288552335 0.0234378576333257 0.0229648279545281 0.00176424547010442 0.00170480638084549 2079393 869285 1352 577 0 False 335 443 27 {X=0,Y=0,Width=0,Height=0} +44 389 443 0.0235066473807076 0.0234862527980934 0.0234531166552224 0.0234988937209125 0.00185204954572143 0.00189547218378042 2082767 888102 1352 577 0 False 389 443 27 {X=0,Y=0,Width=0,Height=0} +45 442 443 0.0235119970673785 0.023456316554095 0.0234683756771191 0.0234531166552224 0.00210654079867351 0.00210422880938584 2083241 886970 1352 577 0 False 442 443 27 {X=0,Y=0,Width=0,Height=0} +46 495 443 0.0235001352093804 0.0234703061946208 0.0235294117647059 0.0233920805676356 0.00206014021270434 0.0020000635307076 2082190 887499 1352 577 0 False 495 443 27 {X=0,Y=0,Width=0,Height=0} +47 549 443 0.0234807792755396 0.0237588260020609 0.0234988937209125 0.0237277790493629 0.00189580598643053 0.00176186365502479 2080475 898409 1352 577 0 False 549 443 27 {X=0,Y=0,Width=0,Height=0} +48 602 442 0.023560505407698 0.0234043248087763 0.023575188830396 0.0233615625238422 0.00185972616595516 0.00186387808199589 2087539 885004 1352 577 0 False 602 442 27 {X=0,Y=0,Width=0,Height=0} +49 655 442 0.0232516795081719 0.0230160792273805 0.0231784542610819 0.0229343099107347 0.00172006422394153 0.00159279159951554 2060176 870323 1352 577 0 False 655 442 27 {X=0,Y=0,Width=0,Height=0} +50 709 442 0.0232135206671714 0.0230801300957233 0.0231937132829786 0.0230869001297017 0.00185945471578454 0.00193017074718595 2056795 872745 1352 577 0 False 709 442 27 {X=0,Y=0,Width=0,Height=0} +51 229 496 0.0232384181540827 0.0232319533967786 0.023224231326772 0.0231937132829786 0.0021767628428168 0.00228527137538421 2059001 878486 1352 577 0 False 229 496 27 {X=0,Y=0,Width=0,Height=0} +52 282 496 0.0232162519418008 0.023190751393113 0.0232547493705653 0.0231021591515984 0.0017330423130632 0.00162462787761972 2057037 876928 1352 577 0 False 282 496 27 {X=0,Y=0,Width=0,Height=0} +53 335 496 0.0234553513344647 0.0234334147985274 0.0234531166552224 0.0234073395895323 0.00160065544565391 0.00157777761657145 2078222 886104 1352 577 0 False 335 496 27 {X=0,Y=0,Width=0,Height=0} +54 389 496 0.0234908917634238 0.0236296664475662 0.0235141527428092 0.0235294117647059 0.0015876018136654 0.00164206612214227 2081371 893525 1352 577 0 False 389 496 27 {X=0,Y=0,Width=0,Height=0} +55 442 496 0.0235579885719858 0.0233335303519003 0.0236209658960861 0.0233615625238422 0.00226036471602567 0.00214399802028793 2087316 882327 1352 577 0 False 442 496 27 {X=0,Y=0,Width=0,Height=0} +56 495 495 0.0235631238197395 0.0236649446715006 0.0235904478522927 0.0237125200274662 0.00224817502818802 0.00234014738497014 2087771 894859 1352 577 0 False 495 495 27 {X=0,Y=0,Width=0,Height=0} +57 549 495 0.023540314290706 0.023624668258418 0.0235141527428092 0.0236209658960861 0.00199120513746831 0.00183960226565195 2085750 893336 1352 577 0 False 549 495 27 {X=0,Y=0,Width=0,Height=0} +58 602 495 0.023528113844944 0.0233412259764617 0.0235141527428092 0.0233920805676356 0.0019503870566494 0.00197254227372387 2084669 882618 1352 577 0 False 602 495 27 {X=0,Y=0,Width=0,Height=0} +59 655 495 0.0233600275926455 0.0231555525055142 0.023422598611429 0.0231021591515984 0.00179517394068361 0.00185272486719567 2069776 875597 1352 577 0 False 655 495 27 {X=0,Y=0,Width=0,Height=0} +60 709 495 0.0233692484660846 0.0232069360055927 0.0233463035019455 0.0231784542610819 0.00176806839256347 0.001712533595476 2070593 877540 1352 577 0 False 709 495 27 {X=0,Y=0,Width=0,Height=0} +61 229 549 0.0232770848767292 0.0233341650425858 0.0232089723048753 0.0233310444800488 0.00206235842926573 0.0020487877139673 2062427 882351 1352 577 0 False 229 549 27 {X=0,Y=0,Width=0,Height=0} +62 282 549 0.0235161616968755 0.0233088831969476 0.0234988937209125 0.0233005264362554 0.00159052177293269 0.00168287937703448 2083610 881395 1352 577 0 False 282 549 27 {X=0,Y=0,Width=0,Height=0} +63 336 549 0.0233402540672291 0.0234417980046647 0.0233310444800488 0.0234683756771191 0.00149612122773054 0.00142916079022146 2068024 886421 1352 577 0 False 336 549 27 {X=0,Y=0,Width=0,Height=0} +64 389 549 0.0234969073393638 0.0237400232905036 0.0234836346990158 0.0237582970931563 0.00149795790949005 0.0014122999868698 2081904 897698 1352 577 0 False 389 549 27 {X=0,Y=0,Width=0,Height=0} +65 442 548 0.0235517472708698 0.0235065629000287 0.0234836346990158 0.0234683756771191 0.00196018522593736 0.00175209137418352 2086763 888870 1352 577 0 False 442 548 27 {X=0,Y=0,Width=0,Height=0} +66 496 548 0.0234798876610944 0.0236294548840043 0.023422598611429 0.0235599298084993 0.00233487112875894 0.00230490688299487 2080396 893517 1352 577 0 False 496 548 27 {X=0,Y=0,Width=0,Height=0} +67 549 548 0.0237557238261501 0.0237002228954351 0.0237125200274662 0.0236667429617761 0.00222227584672942 0.0018077816337834 2104836 896193 1352 577 0 False 549 548 27 {X=0,Y=0,Width=0,Height=0} +68 602 548 0.0234120346731928 0.0233116864141418 0.0233157854581521 0.0233768215457389 0.00182352404398171 0.0017411579975317 2074384 881501 1352 577 0 False 602 548 27 {X=0,Y=0,Width=0,Height=0} +69 656 548 0.023277604044634 0.0231333118860773 0.0233157854581521 0.0230411230640116 0.00159115124942927 0.00144573307442927 2062473 874756 1352 577 0 False 656 548 27 {X=0,Y=0,Width=0,Height=0} +70 709 548 0.0233571383103929 0.0231449478819777 0.0233463035019455 0.0231479362172885 0.00155917365578631 0.00164639580376067 2069520 875196 1352 577 0 False 709 548 27 {X=0,Y=0,Width=0,Height=0} +71 229 602 0.023374677156567 0.0232630796858122 0.0233463035019455 0.0232089723048753 0.0019694803627342 0.0019322104195207 2071074 879663 1352 577 0 False 229 602 27 {X=0,Y=0,Width=0,Height=0} +72 282 602 0.0233478271468834 0.0234646468693419 0.0233615625238422 0.0233920805676356 0.00159991496357402 0.00145485265340968 2068695 887285 1352 577 0 False 282 602 27 {X=0,Y=0,Width=0,Height=0} +73 336 601 0.0234447535374521 0.0234155905684435 0.023422598611429 0.0233768215457389 0.00148733338802953 0.00138088494318454 2077283 885430 1352 577 0 False 336 601 27 {X=0,Y=0,Width=0,Height=0} +74 389 601 0.0235324139095465 0.023590024725169 0.0235446707866026 0.0237277790493629 0.00157204320414402 0.00168531846945898 2085050 892026 1352 577 0 False 389 601 27 {X=0,Y=0,Width=0,Height=0} +75 442 601 0.0235318947416417 0.0234987350482411 0.023575188830396 0.023575188830396 0.00179197285086136 0.00171859436663546 2085004 888574 1352 577 0 False 442 601 27 {X=0,Y=0,Width=0,Height=0} +76 496 601 0.0234955191295315 0.0235220599309324 0.0234378576333257 0.0233920805676356 0.00212140433819544 0.00226386450941773 2081781 889456 1352 577 0 False 496 601 27 {X=0,Y=0,Width=0,Height=0} +77 549 601 0.0235665999874497 0.0235942295509603 0.0235446707866026 0.0236209658960861 0.00177057344504017 0.00177026077617051 2088079 892185 1352 577 0 False 549 601 27 {X=0,Y=0,Width=0,Height=0} +78 602 601 0.0232667692361866 0.023466974068522 0.023270008392462 0.0234073395895323 0.00155119244850239 0.00156552404513448 2061513 887373 1352 577 0 False 602 601 27 {X=0,Y=0,Width=0,Height=0} +79 656 600 0.0232885291431517 0.0232508089992263 0.0232852674143587 0.0231631952391852 0.00140292665286808 0.00130772684244682 2063441 879199 1352 577 0 False 656 600 27 {X=0,Y=0,Width=0,Height=0} +80 709 600 0.0232769494416236 0.0233570403527082 0.0232852674143587 0.023270008392462 0.00144498191380853 0.00138705046565525 2062415 883216 1352 577 0 False 709 600 27 {X=0,Y=0,Width=0,Height=0} +81 227 656 0.0240019109893399 0.175458868226734 0.0239414053559167 0.18129243915465 0.00199430480597365 0.0313661275199504 2126649 8612524 1352 749 0 True 229 654 31 {X=0,Y=0,Width=0,Height=0} +82 283 654 0.0234819191876783 0.0233725902745024 0.0234836346990158 0.0233920805676356 0.00161241046210085 0.00138260251062801 2080576 883804 1352 577 0 False 283 654 27 {X=0,Y=0,Width=0,Height=0} +83 336 654 0.0233413149755562 0.0230048663586037 0.0233005264362554 0.0229648279545281 0.00150169536500555 0.00141010989659304 2068118 869899 1352 577 0 False 336 654 27 {X=0,Y=0,Width=0,Height=0} +84 389 654 0.0233272184383159 0.0235161625966465 0.0233310444800488 0.0234531166552224 0.00159169525098665 0.0016175364025619 2066869 889233 1352 577 0 False 389 654 27 {X=0,Y=0,Width=0,Height=0} +85 443 654 0.0234278128629943 0.0233825337619082 0.0234378576333257 0.0233768215457389 0.00168877073745169 0.00177865152836204 2075782 884180 1352 577 0 False 443 654 27 {X=0,Y=0,Width=0,Height=0} +86 496 654 0.0234174746499341 0.0233063708796509 0.0234378576333257 0.0233463035019455 0.00172904979708107 0.00180660645944152 2074866 881300 1352 577 0 False 496 654 27 {X=0,Y=0,Width=0,Height=0} +87 549 653 0.0233814489118466 0.0233611393967186 0.0233615625238422 0.0233463035019455 0.00152397856984213 0.00152592143605747 2071674 883371 1352 577 0 False 549 653 27 {X=0,Y=0,Width=0,Height=0} +88 603 653 0.0234620440859327 0.0234185524583091 0.0234683756771191 0.0233920805676356 0.00145758862187308 0.0014345562911819 2078815 885542 1352 577 0 False 603 653 27 {X=0,Y=0,Width=0,Height=0} +89 656 653 0.0232874118035306 0.0233294048624447 0.023270008392462 0.0232394903486687 0.00144981599747221 0.00148340540511515 2063342 882171 1352 577 0 False 656 653 27 {X=0,Y=0,Width=0,Height=0} +90 709 653 0.0232988334974355 0.0232088400776491 0.0233310444800488 0.0231326771953918 0.00136989245126732 0.00124680764801936 2064354 877612 1352 577 0 False 709 653 27 {X=0,Y=0,Width=0,Height=0} +91 228 709 0.0241590157118266 0.175747506173639 0.0240634775310903 0.185214007782101 0.0022698058479168 0.0398389563990336 2140569 8626692 1352 749 0 True 229 707 31 {X=0,Y=0,Width=0,Height=0} +92 283 707 0.0235302582341158 0.0234539893549149 0.0234836346990158 0.0234988937209125 0.0016081466256793 0.00140577831167995 2084859 886882 1352 577 0 False 283 707 27 {X=0,Y=0,Width=0,Height=0} +93 336 707 0.0233896540219938 0.0232662002483492 0.0234531166552224 0.023270008392462 0.00169217157376812 0.00170227390056704 2072401 879781 1352 577 0 False 336 707 27 {X=0,Y=0,Width=0,Height=0} +94 389 707 0.0232675479880438 0.0233692052575132 0.0232852674143587 0.0233157854581521 0.00175880518681905 0.0016792627859549 2061582 883676 1352 577 0 False 389 707 27 {X=0,Y=0,Width=0,Height=0} +95 443 707 0.0233136410689803 0.0232016998074375 0.0232852674143587 0.0231326771953918 0.0017808879069735 0.00172595471572813 2065666 877342 1352 577 0 False 443 707 27 {X=0,Y=0,Width=0,Height=0} +96 496 706 0.0232144348541341 0.0234814926179523 0.0232394903486687 0.023422598611429 0.00185892727277088 0.00179523754180316 2056876 887922 1352 577 0 False 496 706 27 {X=0,Y=0,Width=0,Height=0} +97 549 706 0.0235129563993765 0.0233243802278513 0.023422598611429 0.023224231326772 0.00192561750017799 0.00172279526425156 2083326 881981 1352 577 0 False 549 706 27 {X=0,Y=0,Width=0,Height=0} +98 603 706 0.0232626836105013 0.0232788676166135 0.0232852674143587 0.0233005264362554 0.00153313811684118 0.00152584010806781 2061151 880260 1352 577 0 False 603 706 27 {X=0,Y=0,Width=0,Height=0} +99 656 706 0.0232964972418641 0.023245202564838 0.023270008392462 0.0232547493705653 0.00168739207643613 0.00167959423790222 2064147 878987 1352 577 0 False 656 706 27 {X=0,Y=0,Width=0,Height=0} +100 705 709 0.0235918247758662 0.153408517245752 0.0236209658960861 0.167132066834516 0.00180070819051984 0.0400863298628798 2090314 8656173 1352 861 0 True 709 706 32 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C01_3.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C01_3.csv new file mode 100644 index 0000000..fa30b0d --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C01_3.csv @@ -0,0 +1,101 @@ + ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour +1 230 230 0.32602488258905 0.382843967994334 0.326146334019989 0.389364461738003 0.00623877765224056 0.0370103010703607 28886887 21602214 1352 861 0 True 228 233 32 {X=0,Y=0,Width=0,Height=0} +2 281 232 0.325593487918963 0.325749546559785 0.325444419012741 0.325658045319295 0.00490159145063655 0.00452842777938231 28848664 12317794 1352 577 0 False 281 232 27 {X=0,Y=0,Width=0,Height=0} +3 335 232 0.32508826983007 0.324819486696553 0.325062943465324 0.32466620889601 0.00436575621627188 0.00417753870613833 28803900 12282625 1352 577 0 False 335 232 27 {X=0,Y=0,Width=0,Height=0} +4 388 232 0.325234043148722 0.325073865434203 0.325337605859464 0.325246051728084 0.00426382977676298 0.00384402940410702 28816816 12292244 1352 577 0 False 388 232 27 {X=0,Y=0,Width=0,Height=0} +5 441 232 0.324813731584776 0.324662585870014 0.324681467917906 0.32462043183032 0.00498175842470049 0.00465020843983762 28779575 12276692 1352 577 0 False 441 232 27 {X=0,Y=0,Width=0,Height=0} +6 495 232 0.329177992427372 0.325051942160109 0.325566491187915 0.325230792706188 0.0303976198271663 0.00653574096025685 29166263 12291415 1352 577 0 False 495 232 27 {X=0,Y=0,Width=0,Height=0} +7 548 232 0.324969594818795 0.325048900933908 0.324696726939803 0.325047684443427 0.00656672894647687 0.00693717289243641 28793385 12291300 1352 577 0 False 548 232 27 {X=0,Y=0,Width=0,Height=0} +8 601 231 0.324845073525462 0.325192103019819 0.32489509422446 0.325200274662394 0.0059076176346395 0.00627304518563719 28782352 12296715 1352 577 0 False 601 231 27 {X=0,Y=0,Width=0,Height=0} +9 655 231 0.324412730809636 0.324754060665058 0.324330510414282 0.324834058136873 0.00446740959532975 0.00429443075160285 28744045 12280151 1352 577 0 False 655 231 27 {X=0,Y=0,Width=0,Height=0} +10 706 232 0.324058037554349 0.380640465986781 0.324025329976349 0.383154039826047 0.00458788167657752 0.027429235692641 28712618 21477880 1352 861 0 True 708 231 32 {X=0,Y=0,Width=0,Height=0} +11 228 285 0.325684816325167 0.326583239220605 0.325352864881361 0.326482032501717 0.00543141121193339 0.0050647837365503 28856756 12349319 1352 577 0 False 228 285 27 {X=0,Y=0,Width=0,Height=0} +12 281 285 0.325782758479028 0.326159847642501 0.325642786297398 0.325993743801022 0.00485810221643691 0.00464052826999172 28865434 12333309 1352 577 0 False 281 285 27 {X=0,Y=0,Width=0,Height=0} +13 335 285 0.325547067536521 0.32520035399873 0.325642786297398 0.325276569771878 0.00430093905861708 0.00383554129326726 28844551 12297027 1352 577 0 False 335 285 27 {X=0,Y=0,Width=0,Height=0} +14 388 285 0.325292291530385 0.325749863905128 0.325383382925155 0.325291828793774 0.00442407878297392 0.00411539850089958 28821977 12317806 1352 577 0 False 388 285 27 {X=0,Y=0,Width=0,Height=0} +15 441 285 0.325963620776287 0.324783468000152 0.326009002822919 0.324483100633249 0.00437532331188324 0.00415448845435385 28881459 12281263 1352 577 0 False 441 285 27 {X=0,Y=0,Width=0,Height=0} +16 495 285 0.325906659028127 0.325938816611283 0.325612268253605 0.326115815976196 0.00641267994772826 0.00556962180350806 28876412 12324951 1352 577 0 False 495 285 27 {X=0,Y=0,Width=0,Height=0} +17 548 284 0.32569324716049 0.325219368273849 0.325520714122225 0.325078202487221 0.00566911782160962 0.00542092139775736 28857503 12297746 1352 577 0 False 548 284 27 {X=0,Y=0,Width=0,Height=0} +18 601 284 0.325296681885058 0.325902401233204 0.325017166399634 0.325703822384985 0.0058068965023938 0.00635768767457458 28822366 12323574 1352 577 0 False 601 284 27 {X=0,Y=0,Width=0,Height=0} +19 655 284 0.325125638632954 0.325255704315593 0.324971389333944 0.325017166399634 0.00458176708800832 0.00441029722972934 28807211 12299120 1352 577 0 False 655 284 27 {X=0,Y=0,Width=0,Height=0} +20 708 284 0.324345656573591 0.325584870772348 0.324345769436179 0.325566491187915 0.00438593795269721 0.00423719541914432 28738102 12311567 1352 577 0 False 708 284 27 {X=0,Y=0,Width=0,Height=0} +21 228 338 0.325864922443087 0.32618351631598 0.325627527275502 0.326009002822919 0.0064572181151017 0.00610310911570625 28872714 12334204 1352 577 0 False 228 338 27 {X=0,Y=0,Width=0,Height=0} +22 282 338 0.32619717861588 0.32605028416292 0.326176852063783 0.326039520866712 0.00545944527356544 0.00498386876342144 28902153 12329166 1352 577 0 False 282 338 27 {X=0,Y=0,Width=0,Height=0} +23 335 338 0.327067270165497 0.325827877968551 0.326817730983444 0.325673304341192 0.00581272172453436 0.00531292110634242 28979246 12320756 1352 577 0 False 335 338 27 {X=0,Y=0,Width=0,Height=0} +24 388 338 0.325845679371834 0.326805989205763 0.325764858472572 0.326665140764477 0.00471860587001295 0.00459439427247752 28871009 12357742 1352 577 0 False 388 338 27 {X=0,Y=0,Width=0,Height=0} +25 442 337 0.326029532527675 0.326142023412417 0.326207370107576 0.325764858472572 0.00421321406926031 0.00435543360407707 28887299 12332635 1352 577 0 False 442 337 27 {X=0,Y=0,Width=0,Height=0} +26 495 337 0.326205395012286 0.32679059795664 0.32623788815137 0.32651255054551 0.00476019792447482 0.00473826515281645 28902881 12357160 1352 577 0 False 495 337 27 {X=0,Y=0,Width=0,Height=0} +27 548 337 0.326318223741503 0.326229319827116 0.326344701304646 0.326176852063783 0.0054627233636666 0.00578338543105571 28912878 12335936 1352 577 0 False 548 337 27 {X=0,Y=0,Width=0,Height=0} +28 602 337 0.325524980328051 0.32603283016907 0.325490196078431 0.325917448691539 0.00515925685489962 0.00533801564175856 28842594 12328506 1352 577 0 False 602 337 27 {X=0,Y=0,Width=0,Height=0} +29 655 337 0.325166032153197 0.325542769623545 0.325200274662394 0.325459678034638 0.00457180606192341 0.00431125630187044 28810790 12309975 1352 577 0 False 655 337 27 {X=0,Y=0,Width=0,Height=0} +30 708 337 0.32528594865294 0.325064873982826 0.325123979552911 0.324864576180667 0.00406665321202586 0.00407899958587764 28821415 12291904 1352 577 0 False 708 337 27 {X=0,Y=0,Width=0,Height=0} +31 228 391 0.325678529879016 0.330748608407615 0.325825894560159 0.327595941100175 0.00681917919869537 0.015034845620199 28856199 12506827 1352 577 0 False 228 391 27 {X=0,Y=0,Width=0,Height=0} +32 282 391 0.325960076891024 0.326284009007848 0.325993743801022 0.325978484779126 0.00606198414501868 0.00592081717530552 28881145 12338004 1352 577 0 False 282 391 27 {X=0,Y=0,Width=0,Height=0} +33 335 391 0.326635796491599 0.32612150174692 0.326680399786374 0.326131074998093 0.00559751551382609 0.00551393784664002 28941016 12331859 1352 577 0 False 335 391 27 {X=0,Y=0,Width=0,Height=0} +34 388 390 0.326883462154691 0.326738156638752 0.326848249027237 0.326848249027237 0.00513902449870403 0.00493805481814012 28962960 12355177 1352 577 0 False 388 390 27 {X=0,Y=0,Width=0,Height=0} +35 442 390 0.327065046772514 0.326698250461903 0.326985580224308 0.32660410467689 0.00450679214486222 0.00439475217175402 28979049 12353668 1352 577 0 False 442 390 27 {X=0,Y=0,Width=0,Height=0} +36 495 390 0.326317038684329 0.326424302094783 0.326405737392233 0.326497291523613 0.00476746285466396 0.00461553631593972 28912773 12343309 1352 577 0 False 495 390 27 {X=0,Y=0,Width=0,Height=0} +37 548 390 0.326181061838315 0.326595298343629 0.326024261844816 0.32660410467689 0.0050307010801637 0.00536289124890581 28900725 12349775 1352 577 0 False 548 390 27 {X=0,Y=0,Width=0,Height=0} +38 602 390 0.325512813741065 0.325669496197079 0.325566491187915 0.325459678034638 0.00505634400064718 0.00518599316526574 28841516 12314767 1352 577 0 False 602 390 27 {X=0,Y=0,Width=0,Height=0} +39 655 389 0.325272156844687 0.325609570818192 0.325123979552911 0.325658045319295 0.00442567070262355 0.00464049963973264 28820193 12312501 1352 577 0 False 655 389 27 {X=0,Y=0,Width=0,Height=0} +40 708 389 0.325268782253306 0.324850586540141 0.325413900968948 0.324834058136873 0.00412839359396651 0.00385892692599895 28819894 12283801 1352 577 0 False 708 389 27 {X=0,Y=0,Width=0,Height=0} +41 229 444 0.326381426790779 0.326090454794222 0.326222629129473 0.326146334019989 0.00638954580314998 0.00693878396361994 28918478 12330685 1352 577 0 False 229 444 27 {X=0,Y=0,Width=0,Height=0} +42 282 443 0.326556465378498 0.327083401926207 0.326710917830167 0.327321278706035 0.00566972801348703 0.00503382794820934 28933987 12368232 1352 577 0 False 282 443 27 {X=0,Y=0,Width=0,Height=0} +43 335 443 0.327537162264349 0.327287402090698 0.327687495231556 0.327306019684138 0.00488142399012265 0.00454329303311337 29020880 12375946 1352 577 0 False 335 443 27 {X=0,Y=0,Width=0,Height=0} +44 389 443 0.326775576806828 0.326663104465194 0.326802471961547 0.326436255436027 0.00470455942891784 0.0049006765471824 28953401 12352339 1352 577 0 False 389 443 27 {X=0,Y=0,Width=0,Height=0} +45 442 443 0.326061743510288 0.326675507379006 0.326131074998093 0.326573586633097 0.00581714067387301 0.00599949797283609 28890153 12352808 1352 577 0 False 442 443 27 {X=0,Y=0,Width=0,Height=0} +46 495 443 0.326182845067205 0.326875196935925 0.326268406195163 0.326802471961547 0.0059812254323885 0.00566773654046464 28900883 12360359 1352 577 0 False 495 443 27 {X=0,Y=0,Width=0,Height=0} +47 549 443 0.3264128138765 0.326520457733633 0.326192111085679 0.326527809567407 0.00553269309961705 0.00582387466523427 28921259 12346945 1352 577 0 False 549 443 27 {X=0,Y=0,Width=0,Height=0} +48 602 442 0.32571430731941 0.326019025646661 0.325749599450675 0.325978484779126 0.00557473504432492 0.00556752165208834 28859369 12327984 1352 577 0 False 602 442 27 {X=0,Y=0,Width=0,Height=0} +49 655 442 0.325159982718481 0.325657278401383 0.324971389333944 0.325612268253605 0.00519606568186696 0.00506547053711293 28810254 12314305 1352 577 0 False 655 442 27 {X=0,Y=0,Width=0,Height=0} +50 709 442 0.325235826377612 0.324700852429259 0.325200274662394 0.324864576180667 0.00443624832396546 0.00458617282256543 28816974 12278139 1352 577 0 False 709 442 27 {X=0,Y=0,Width=0,Height=0} +51 229 496 0.325972954512314 0.325597934822291 0.325871671625849 0.325398641947051 0.00591528855219186 0.00556532656747023 28882286 12312061 1352 577 0 False 229 496 27 {X=0,Y=0,Width=0,Height=0} +52 282 496 0.326188713921781 0.326436784344931 0.326024261844816 0.32623788815137 0.00503403891150096 0.00419557965851248 28901403 12343781 1352 577 0 False 282 496 27 {X=0,Y=0,Width=0,Height=0} +53 335 496 0.326861149221045 0.326694336536009 0.327016098268101 0.326848249027237 0.00423475555499536 0.00401232019844625 28960983 12353520 1352 577 0 False 335 496 27 {X=0,Y=0,Width=0,Height=0} +54 389 496 0.326534863479156 0.326555683066677 0.326634622720684 0.32674143587396 0.00418635315473965 0.00402991445694004 28932073 12348277 1352 577 0 False 389 496 27 {X=0,Y=0,Width=0,Height=0} +55 442 496 0.326142699844656 0.326417532060805 0.326115815976196 0.32646677347982 0.00597152638401644 0.0053127762625004 28897326 12343053 1352 577 0 False 442 496 27 {X=0,Y=0,Width=0,Height=0} +56 495 495 0.326455927385114 0.326236433651882 0.326543068589303 0.32674143587396 0.00690148487111528 0.0070336968887177 28925079 12336205 1352 577 0 False 495 495 27 {X=0,Y=0,Width=0,Height=0} +57 549 495 0.326225992434595 0.326672598380031 0.326268406195163 0.326527809567407 0.00567674454215317 0.00569386085651497 28904706 12352698 1352 577 0 False 549 495 27 {X=0,Y=0,Width=0,Height=0} +58 602 495 0.326448331732942 0.326948292146536 0.326390478370336 0.326726176852064 0.00572070993002422 0.00602834652043644 28924406 12363123 1352 577 0 False 602 495 27 {X=0,Y=0,Width=0,Height=0} +59 655 495 0.325232101912208 0.325776203568575 0.325169756618601 0.325490196078431 0.00554675719989376 0.00516842274519596 28816644 12318802 1352 577 0 False 655 495 27 {X=0,Y=0,Width=0,Height=0} +60 709 495 0.325607607028721 0.325701865422038 0.325566491187915 0.325505455100328 0.00528906626463522 0.00531962409619971 28849915 12315991 1352 577 0 False 709 495 27 {X=0,Y=0,Width=0,Height=0} +61 229 549 0.325978924943219 0.326332800854294 0.325993743801022 0.326482032501717 0.00583251979096448 0.00548898311305861 28882815 12339849 1352 577 0 False 229 549 27 {X=0,Y=0,Width=0,Height=0} +62 282 549 0.32605129243464 0.325630489165367 0.326161593041886 0.325719081406882 0.00468091155281332 0.00437927834237882 28889227 12313292 1352 577 0 False 282 549 27 {X=0,Y=0,Width=0,Height=0} +63 336 549 0.326257176367658 0.326403489529389 0.326222629129473 0.32642099641413 0.00445438157309689 0.00426038953511401 28907469 12342522 1352 577 0 False 336 549 27 {X=0,Y=0,Width=0,Height=0} +64 389 549 0.326722576535507 0.326569143798298 0.32664988174258 0.32651255054551 0.00466964625650578 0.00464748633971258 28948705 12348786 1352 577 0 False 389 549 27 {X=0,Y=0,Width=0,Height=0} +65 442 548 0.326739968660317 0.326634622720684 0.326710917830167 0.326436255436027 0.00547617410558648 0.00555370402928607 28950246 12351262 1352 577 0 False 442 548 27 {X=0,Y=0,Width=0,Height=0} +66 496 548 0.326175802441714 0.326499301377451 0.326176852063783 0.326588845654994 0.00695238009139454 0.00705763262558559 28900259 12346145 1352 577 0 False 496 548 27 {X=0,Y=0,Width=0,Height=0} +67 549 548 0.326954599443903 0.326268115295265 0.32664988174258 0.32646677347982 0.0077888747078602 0.00643757015418551 28969263 12337403 1352 577 0 False 549 548 27 {X=0,Y=0,Width=0,Height=0} +68 602 548 0.326080128825872 0.326067182802421 0.326146334019989 0.326024261844816 0.00549557315706091 0.00536491424617185 28891782 12329805 1352 577 0 False 602 548 27 {X=0,Y=0,Width=0,Height=0} +69 656 548 0.326187133845549 0.325579396565186 0.325871671625849 0.325322346837568 0.0051305399339121 0.00548089798142795 28901263 12311360 1352 577 0 False 656 548 27 {X=0,Y=0,Width=0,Height=0} +70 709 548 0.325425469384217 0.325638475689826 0.325398641947051 0.325276569771878 0.00528950876750865 0.00524500700101856 28833777 12313594 1352 577 0 False 709 548 27 {X=0,Y=0,Width=0,Height=0} +71 229 602 0.32526517065049 0.324984294711215 0.325185015640497 0.325139238574807 0.00549612709132834 0.005281880469269 28819574 12288857 1352 577 0 False 229 602 27 {X=0,Y=0,Width=0,Height=0} +72 282 602 0.325715672956724 0.325522353739829 0.325947966735332 0.325658045319295 0.00472055564626373 0.00452819587806574 28859490 12309203 1352 577 0 False 282 602 27 {X=0,Y=0,Width=0,Height=0} +73 336 601 0.325702197163718 0.325671611832697 0.325749599450675 0.326009002822919 0.0044905850308366 0.0043928652783027 28858296 12314847 1352 577 0 False 336 601 27 {X=0,Y=0,Width=0,Height=0} +74 389 601 0.326592479830327 0.326587576273623 0.3265583276112 0.326543068589303 0.00526142854130703 0.0050750015766402 28937178 12349483 1352 577 0 False 389 601 27 {X=0,Y=0,Width=0,Height=0} +75 442 601 0.325991542980556 0.326407905918742 0.325810635538262 0.32628366521706 0.00527734580984404 0.00572803720861155 28883933 12342689 1352 577 0 False 442 601 27 {X=0,Y=0,Width=0,Height=0} +76 496 601 0.326109394094939 0.326831112378729 0.325932707713436 0.327077134355688 0.00585971522142829 0.00570105754976427 28894375 12358692 1352 577 0 False 496 601 27 {X=0,Y=0,Width=0,Height=0} +77 549 601 0.326150250351793 0.326143689475467 0.32628366521706 0.326115815976196 0.00529242980597398 0.00524801118612941 28897995 12332698 1352 577 0 False 549 601 27 {X=0,Y=0,Width=0,Height=0} +78 602 601 0.326271239046122 0.32620546603552 0.326253147173266 0.32628366521706 0.00507668195035381 0.00544172534827881 28908715 12335034 1352 577 0 False 602 601 27 {X=0,Y=0,Width=0,Height=0} +79 656 600 0.325772792712508 0.325637047635784 0.325841153582055 0.325551232166018 0.00472096253387308 0.00444056159440295 28864551 12313540 1352 577 0 False 656 600 27 {X=0,Y=0,Width=0,Height=0} +80 709 600 0.325432895742507 0.325814258564258 0.325459678034638 0.326009002822919 0.00502041257027433 0.00475926084345901 28834435 12320241 1352 577 0 False 709 600 27 {X=0,Y=0,Width=0,Height=0} +81 227 656 0.324929652748904 0.383066356474587 0.324925612268254 0.389440756847486 0.00616447587418636 0.0275037912626366 28789846 18803086 1352 749 0 True 229 654 31 {X=0,Y=0,Width=0,Height=0} +82 283 654 0.325377480211802 0.325153307551669 0.325276569771878 0.325108720531014 0.00499060978920978 0.00426324150671706 28829525 12295248 1352 577 0 False 283 654 27 {X=0,Y=0,Width=0,Height=0} +83 336 654 0.325279921790741 0.325121149890271 0.325291828793774 0.325200274662394 0.00507510599633255 0.0050663218906004 28820881 12294032 1352 577 0 False 336 654 27 {X=0,Y=0,Width=0,Height=0} +84 389 654 0.325626816241197 0.325498129712 0.325459678034638 0.325490196078431 0.00518143993819764 0.00488615242427055 28851617 12308287 1352 577 0 False 389 654 27 {X=0,Y=0,Width=0,Height=0} +85 443 654 0.326300594605259 0.326401955693566 0.326314183260853 0.326482032501717 0.00537276461952178 0.00571056226311893 28911316 12342464 1352 577 0 False 443 654 27 {X=0,Y=0,Width=0,Height=0} +86 496 654 0.325836797086159 0.326032195478384 0.325825894560159 0.325963225757229 0.00496139639924113 0.00463183063606683 28870222 12328482 1352 577 0 False 496 654 27 {X=0,Y=0,Width=0,Height=0} +87 549 653 0.326217335874096 0.326396745940856 0.32628366521706 0.326390478370336 0.0043719596457451 0.00413124685475027 28903939 12342267 1352 577 0 False 549 653 27 {X=0,Y=0,Width=0,Height=0} +88 603 653 0.325879470430679 0.325743437661937 0.325963225757229 0.325780117494469 0.00422657422322847 0.00468237826778895 28874003 12317563 1352 577 0 False 603 653 27 {X=0,Y=0,Width=0,Height=0} +89 656 653 0.32546549045792 0.326447864986482 0.325398641947051 0.32632944228275 0.00414363316941241 0.004204084220729 28837323 12344200 1352 577 0 False 656 653 27 {X=0,Y=0,Width=0,Height=0} +90 709 653 0.324970396143169 0.325222673954502 0.324925612268254 0.325062943465324 0.00465269891891069 0.00400824219803438 28793456 12297871 1352 577 0 False 709 653 27 {X=0,Y=0,Width=0,Height=0} +91 228 709 0.324049358421332 0.378564374584337 0.324071107042039 0.381445029373617 0.00696290110833136 0.0308639678856542 28711849 18582103 1352 749 0 True 229 707 31 {X=0,Y=0,Width=0,Height=0} +92 283 707 0.324500515330577 0.324718438650336 0.32457465476463 0.324635690852216 0.00594712347703399 0.00514998761228385 28751823 12278804 1352 577 0 False 283 707 27 {X=0,Y=0,Width=0,Height=0} +93 336 707 0.324944200736496 0.32484006125294 0.324834058136873 0.324650949874113 0.00561395279178955 0.00579017633087012 28791135 12283403 1352 577 0 False 336 707 27 {X=0,Y=0,Width=0,Height=0} +94 389 707 0.324840976613517 0.32497622885042 0.324498359655146 0.325154497596704 0.00632882633791547 0.00587994569735733 28781989 12288552 1352 577 0 False 389 707 27 {X=0,Y=0,Width=0,Height=0} +95 443 707 0.325568590432052 0.325784851229164 0.325413900968948 0.325597009231708 0.0059114055762824 0.00561785636044974 28846458 12319129 1352 577 0 False 443 707 27 {X=0,Y=0,Width=0,Height=0} +96 496 706 0.325916421641988 0.326435805863458 0.325902189669642 0.326390478370336 0.00522786828006651 0.00504541861304901 28877277 12343744 1352 577 0 False 496 706 27 {X=0,Y=0,Width=0,Height=0} +97 549 706 0.326140803753178 0.325309838141975 0.325871671625849 0.32489509422446 0.00476273514165645 0.00409440705660703 28897158 12301167 1352 577 0 False 549 706 27 {X=0,Y=0,Width=0,Height=0} +98 603 706 0.325440581684749 0.325571383595282 0.325322346837568 0.325429159990845 0.00418055641604728 0.00383880119851208 28835116 12311057 1352 577 0 False 603 706 27 {X=0,Y=0,Width=0,Height=0} +99 656 706 0.325476607422837 0.325256841469737 0.325474937056535 0.325490196078431 0.00444901750702445 0.00425188231630801 28838308 12299163 1352 577 0 False 656 706 27 {X=0,Y=0,Width=0,Height=0} +100 705 709 0.324769681316682 0.376627697676774 0.324742504005493 0.379095140001526 0.00489022122092214 0.0264727424965022 28775672 21251457 1352 861 0 True 709 706 32 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C01_4.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C01_4.csv new file mode 100644 index 0000000..863c612 --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C01_4.csv @@ -0,0 +1,101 @@ + ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour +1 230 230 0.0341242517774729 0.0401362253167377 0.0341039139391165 0.040161745632105 0.00232103093659491 0.00455428343384941 3023522 2264712 1352 861 0 True 228 233 32 {X=0,Y=0,Width=0,Height=0} +2 281 232 0.0339665488832698 0.0339275228194441 0.0339818417639429 0.0338902876325628 0.0018787220569197 0.00189670551245778 3009549 1282925 1352 577 0 False 281 232 27 {X=0,Y=0,Width=0,Height=0} +3 335 232 0.034092018222342 0.0339177644501549 0.0340886549172198 0.0338750286106661 0.00165059572470021 0.00161005788781984 3020666 1282556 1352 577 0 False 335 232 27 {X=0,Y=0,Width=0,Height=0} +4 388 232 0.0340302033828981 0.0339913092333346 0.0340123598077363 0.0339665827420462 0.0014983663997885 0.00148519517624363 3015189 1285337 1352 577 0 False 388 232 27 {X=0,Y=0,Width=0,Height=0} +5 441 232 0.0339913560801108 0.0338703213214154 0.0339665827420462 0.0338597695887694 0.00182069413034231 0.00174538408831041 3011747 1280762 1352 577 0 False 441 232 27 {X=0,Y=0,Width=0,Height=0} +6 495 232 0.0344716202507987 0.0340048228558463 0.0341039139391165 0.0341191729610132 0.00406079320679463 0.00257111662354886 3054300 1285848 1352 577 0 False 495 232 27 {X=0,Y=0,Width=0,Height=0} +7 548 232 0.0338043992030998 0.034089368944241 0.0337376974135958 0.0338750286106661 0.00255319564397016 0.00266431355619333 2995182 1289045 1352 577 0 False 548 232 27 {X=0,Y=0,Width=0,Height=0} +8 601 231 0.033912431272327 0.0338593464616457 0.0338750286106661 0.0337529564354925 0.0023050019096045 0.00233469607884661 3004754 1280347 1352 577 0 False 601 231 27 {X=0,Y=0,Width=0,Height=0} +9 655 231 0.0340520084348984 0.0338370000604278 0.0340428778515297 0.0337834744792859 0.00181824336618605 0.00169819548907395 3017121 1279502 1352 577 0 False 655 231 27 {X=0,Y=0,Width=0,Height=0} +10 706 232 0.0339057159483414 0.0397010507724016 0.0338750286106661 0.039810788128481 0.00184723346054177 0.0033375559267788 3004159 2240157 1352 861 0 True 708 231 32 {X=0,Y=0,Width=0,Height=0} +11 228 285 0.0340199554599083 0.0341552709937498 0.0338902876325628 0.0340581368734264 0.00207619172855078 0.00204812482965723 3014281 1291537 1352 577 0 False 228 285 27 {X=0,Y=0,Width=0,Height=0} +12 281 285 0.0338733130993286 0.0341718522879079 0.0338750286106661 0.0341954680704967 0.00188416845122721 0.00195167484041066 3001288 1292164 1352 577 0 False 281 285 27 {X=0,Y=0,Width=0,Height=0} +13 335 285 0.033974641130829 0.0340927804066754 0.0339208056763561 0.034027618829633 0.00162377476883329 0.00144467717527598 3010266 1289174 1352 577 0 False 335 285 27 {X=0,Y=0,Width=0,Height=0} +14 388 285 0.0340482501107182 0.0342584082301399 0.0340581368734264 0.0341802090486 0.00168194626783612 0.00163922032367958 3016788 1295437 1352 577 0 False 388 285 27 {X=0,Y=0,Width=0,Height=0} +15 441 285 0.0340345260200182 0.0341798917032572 0.0340123598077363 0.0341802090486 0.00170597664188722 0.0015904239447928 3015572 1292468 1352 577 0 False 441 285 27 {X=0,Y=0,Width=0,Height=0} +16 495 285 0.0341025821605782 0.0341097583825119 0.0340581368734264 0.0341039139391165 0.00211130661588777 0.00208299773025539 3021602 1289816 1352 577 0 False 495 285 27 {X=0,Y=0,Width=0,Height=0} +17 548 284 0.0340163551433513 0.0341877724459353 0.0340428778515297 0.0341496910048066 0.00215511601287191 0.00196658508642782 3013962 1292766 1352 577 0 False 548 284 27 {X=0,Y=0,Width=0,Height=0} +18 601 284 0.0341679521715439 0.0341778289585294 0.0341649500267033 0.0341649500267033 0.00219479624064669 0.00239331610073379 3027394 1292390 1352 577 0 False 601 284 27 {X=0,Y=0,Width=0,Height=0} +19 655 284 0.034038589073186 0.0340412646793708 0.0340428778515297 0.0340428778515297 0.00173059889679859 0.00166686743058635 3015932 1287226 1352 577 0 False 655 284 27 {X=0,Y=0,Width=0,Height=0} +20 708 284 0.0338436189524275 0.0340396250617666 0.0338139925230793 0.034027618829633 0.00171787560898591 0.00168337204690377 2998657 1287164 1352 577 0 False 708 284 27 {X=0,Y=0,Width=0,Height=0} +21 228 338 0.0339607816050234 0.0340869095178347 0.0339208056763561 0.034027618829633 0.00237132485641644 0.00221584950268535 3009038 1288952 1352 577 0 False 228 338 27 {X=0,Y=0,Width=0,Height=0} +22 282 338 0.0339838281454916 0.0340673927792563 0.0339208056763561 0.0340733958953231 0.00213360176423082 0.00205801267982297 3011080 1288214 1352 577 0 False 282 338 27 {X=0,Y=0,Width=0,Height=0} +23 335 338 0.0341464969935664 0.0341802883849357 0.0341649500267033 0.0342412451361868 0.0019237097184265 0.00204352910563597 3025493 1292483 1352 577 0 False 335 338 27 {X=0,Y=0,Width=0,Height=0} +24 388 338 0.0342016529403187 0.0342977326071943 0.0342259861142901 0.0342870222018769 0.00170953598286098 0.00177950999640886 3030380 1296924 1352 577 0 False 388 338 27 {X=0,Y=0,Width=0,Height=0} +25 442 337 0.0340961489930626 0.0339959636316948 0.0340733958953231 0.0339208056763561 0.00166918281712877 0.00172015672535269 3021032 1285513 1352 577 0 False 442 337 27 {X=0,Y=0,Width=0,Height=0} +26 495 337 0.0342540098948888 0.0344080630046865 0.0342565041580835 0.0343633173113603 0.00185399005786897 0.00175539903308173 3035019 1301096 1352 577 0 False 495 337 27 {X=0,Y=0,Width=0,Height=0} +27 548 337 0.0340863976654599 0.0340375887624841 0.0340581368734264 0.0339208056763561 0.00211152605430263 0.0020129570604241 3020168 1287087 1352 577 0 False 548 337 27 {X=0,Y=0,Width=0,Height=0} +28 602 337 0.0342103997908882 0.0339584375449159 0.0341954680704967 0.0337987335011826 0.0021072390368633 0.00206176140976831 3031155 1284094 1352 577 0 False 602 337 27 {X=0,Y=0,Width=0,Height=0} +29 655 337 0.0340770074981389 0.0340557567833559 0.0340733958953231 0.0340428778515297 0.00178892248458059 0.00183918323638487 3019336 1287774 1352 577 0 False 655 337 27 {X=0,Y=0,Width=0,Height=0} +30 708 337 0.0340267385014467 0.0338659578229528 0.0340428778515297 0.0338597695887694 0.00157772285042434 0.00153082883776045 3014882 1280597 1352 577 0 False 708 337 27 {X=0,Y=0,Width=0,Height=0} +31 228 391 0.034155571145641 0.0344283202157314 0.0341039139391165 0.0342412451361868 0.00256285669913527 0.00297839056432449 3026297 1301862 1352 577 0 False 228 391 27 {X=0,Y=0,Width=0,Height=0} +32 282 391 0.0342335704802032 0.0340751677401534 0.0342870222018769 0.0340886549172198 0.00244337579237153 0.00217725679003911 3033208 1288508 1352 577 0 False 282 391 27 {X=0,Y=0,Width=0,Height=0} +33 335 391 0.0342688964702451 0.0342115469011955 0.0342870222018769 0.0342259861142901 0.00201250794822005 0.00214775963712464 3036338 1293665 1352 577 0 False 335 391 27 {X=0,Y=0,Width=0,Height=0} +34 388 390 0.034109681217363 0.03402552963946 0.0340733958953231 0.0339360646982528 0.00186468979686093 0.00185921473694305 3022231 1286631 1352 577 0 False 388 390 27 {X=0,Y=0,Width=0,Height=0} +35 442 390 0.0342018673792359 0.0343384057019553 0.0342412451361868 0.0343022812237736 0.001753505186351 0.00166927854223963 3030399 1298462 1352 577 0 False 442 390 27 {X=0,Y=0,Width=0,Height=0} +36 495 390 0.034200738753356 0.0342559223582884 0.0342259861142901 0.0341496910048066 0.00175762747741221 0.00169162542643479 3030299 1295343 1352 577 0 False 495 390 27 {X=0,Y=0,Width=0,Height=0} +37 548 390 0.0341881432885359 0.0339655778151276 0.0341344319829099 0.0339360646982528 0.00199302764927029 0.00201306118248758 3029183 1284364 1352 577 0 False 548 390 27 {X=0,Y=0,Width=0,Height=0} +38 602 390 0.0339417868314641 0.0342025025589274 0.0339665827420462 0.0342870222018769 0.00205667353282797 0.00197373880004632 3007355 1293323 1352 577 0 False 602 390 27 {X=0,Y=0,Width=0,Height=0} +39 655 389 0.0340486225572586 0.0339736436759222 0.0339818417639429 0.0339971007858396 0.00179987978762103 0.00176324628207338 3016821 1284669 1352 577 0 False 655 389 27 {X=0,Y=0,Width=0,Height=0} +40 708 389 0.0340132852809579 0.0340992859862016 0.0340581368734264 0.0340123598077363 0.00156120516905259 0.00152949136551468 3013690 1289420 1352 577 0 False 708 389 27 {X=0,Y=0,Width=0,Height=0} +41 229 444 0.0341140151407419 0.034133982410341 0.0341039139391165 0.0341039139391165 0.00255911356751465 0.00270934427272999 3022615 1290732 1352 577 0 False 229 444 27 {X=0,Y=0,Width=0,Height=0} +42 282 443 0.0342182437407537 0.0340954778420887 0.0341802090486 0.0341191729610132 0.00213960239444386 0.00200834544146117 3031850 1289276 1352 577 0 False 282 443 27 {X=0,Y=0,Width=0,Height=0} +43 335 443 0.0342017432303891 0.0344453510824584 0.0342107270923934 0.0344396124208438 0.00183098562665207 0.00183256532917925 3030388 1302506 1352 577 0 False 335 443 27 {X=0,Y=0,Width=0,Height=0} +44 389 443 0.0342991323575685 0.0341452746154535 0.0343022812237736 0.0342412451361868 0.00186193975675809 0.00193668616617461 3039017 1291159 1352 577 0 False 389 443 27 {X=0,Y=0,Width=0,Height=0} +45 442 443 0.0342579036541746 0.0342316718850142 0.034332799267567 0.0341191729610132 0.00224655876685899 0.00217447099275466 3035364 1294426 1352 577 0 False 442 443 27 {X=0,Y=0,Width=0,Height=0} +46 495 443 0.0341453345089101 0.0340639813168219 0.0342107270923934 0.0341191729610132 0.00221058133246784 0.00211680984932526 3025390 1288085 1352 577 0 False 495 443 27 {X=0,Y=0,Width=0,Height=0} +47 549 443 0.0340821088871162 0.0343161650825184 0.0340581368734264 0.0342107270923934 0.00209115323186559 0.00209096392383115 3019788 1297621 1352 577 0 False 549 443 27 {X=0,Y=0,Width=0,Height=0} +48 602 442 0.0340344583024654 0.0340736867952206 0.0340581368734264 0.0339818417639429 0.00220062186957151 0.00211521427193083 3015566 1288452 1352 577 0 False 602 442 27 {X=0,Y=0,Width=0,Height=0} +49 655 442 0.0338709768437571 0.0342922055091416 0.0338597695887694 0.0342412451361868 0.00188736750036673 0.00189042218534418 3001081 1296715 1352 577 0 False 655 442 27 {X=0,Y=0,Width=0,Height=0} +50 709 442 0.0340240523718524 0.0339479122577151 0.0339971007858396 0.0338597695887694 0.00174361931800719 0.00159408915623382 3014644 1283696 1352 577 0 False 709 442 27 {X=0,Y=0,Width=0,Height=0} +51 229 496 0.0340244925359456 0.034195626743168 0.0339208056763561 0.0340886549172198 0.00213884147763342 0.00209518982482096 3014683 1293063 1352 577 0 False 229 496 27 {X=0,Y=0,Width=0,Height=0} +52 282 496 0.034081894448199 0.0341184853794373 0.0341039139391165 0.0339360646982528 0.00182843284184399 0.00176372743214498 3019769 1290146 1352 577 0 False 282 496 27 {X=0,Y=0,Width=0,Height=0} +53 335 496 0.0341253916896116 0.0342901956553042 0.0340733958953231 0.0341954680704967 0.00155621355080601 0.00167074295825717 3023623 1296639 1352 577 0 False 335 496 27 {X=0,Y=0,Width=0,Height=0} +54 389 496 0.0342894938925539 0.0343208194808786 0.0342107270923934 0.0343480582894636 0.00165903070319864 0.00156218495148747 3038163 1297797 1352 577 0 False 389 496 27 {X=0,Y=0,Width=0,Height=0} +55 442 496 0.0342004340243684 0.0340326170187812 0.0341802090486 0.034027618829633 0.00222082213922199 0.00204497742580406 3030272 1286899 1352 577 0 False 442 496 27 {X=0,Y=0,Width=0,Height=0} +56 495 495 0.0341341498264399 0.0340837096189621 0.0340581368734264 0.0341649500267033 0.00251960892476392 0.00264256528707953 3024399 1288831 1352 577 0 False 495 495 27 {X=0,Y=0,Width=0,Height=0} +57 549 495 0.0340558119041138 0.0340450199325932 0.0340733958953231 0.0340733958953231 0.00215816163483128 0.00204361388130941 3017458 1287368 1352 577 0 False 549 495 27 {X=0,Y=0,Width=0,Height=0} +58 602 495 0.0340674254644183 0.0342710755984042 0.0339971007858396 0.0342412451361868 0.00213890080998603 0.0021412675604105 3018487 1295916 1352 577 0 False 602 495 27 {X=0,Y=0,Width=0,Height=0} +59 655 495 0.0340894223828182 0.0340384085712861 0.0341344319829099 0.0340123598077363 0.00202971527388642 0.0020464294832029 3020436 1287118 1352 577 0 False 655 495 27 {X=0,Y=0,Width=0,Height=0} +60 709 495 0.0340165131509745 0.0337812001709962 0.0339971007858396 0.0336308842603189 0.00194849135385621 0.00205853217145821 3013976 1277392 1352 577 0 False 709 495 27 {X=0,Y=0,Width=0,Height=0} +61 229 549 0.0341452780776161 0.0339648373426612 0.0341039139391165 0.0339665827420462 0.00220770364691834 0.00208072641550592 3025385 1284336 1352 577 0 False 229 549 27 {X=0,Y=0,Width=0,Height=0} +62 282 549 0.0339782075886095 0.0340928861884563 0.0339971007858396 0.0341191729610132 0.00183987052638846 0.00156546392125131 3010582 1289178 1352 577 0 False 282 549 27 {X=0,Y=0,Width=0,Height=0} +63 336 549 0.0341999600014988 0.034045231496155 0.0341954680704967 0.0339971007858396 0.00159563810275765 0.00161613341699175 3030230 1287376 1352 577 0 False 336 549 27 {X=0,Y=0,Width=0,Height=0} +64 389 549 0.0340961941380978 0.0340025221021114 0.0341039139391165 0.0339818417639429 0.00166387947477575 0.00157681555004101 3021036 1285761 1352 577 0 False 389 549 27 {X=0,Y=0,Width=0,Height=0} +65 442 548 0.0339547321703069 0.0340703282236766 0.0338597695887694 0.0340886549172198 0.00208128907460067 0.0020095436201641 3008502 1288325 1352 577 0 False 442 548 27 {X=0,Y=0,Width=0,Height=0} +66 496 548 0.0340609358656086 0.0342448946076283 0.034027618829633 0.0342870222018769 0.00258313033988683 0.00271527073160601 3017912 1294926 1352 577 0 False 496 548 27 {X=0,Y=0,Width=0,Height=0} +67 549 548 0.0339681515320193 0.0340472413499924 0.0339208056763561 0.0339665827420462 0.00242778485310757 0.00246798907492788 3009691 1287452 1352 577 0 False 549 548 27 {X=0,Y=0,Width=0,Height=0} +68 602 548 0.0341412940282599 0.0340205578957571 0.0341496910048066 0.0340428778515297 0.00213694289721513 0.00207737761362831 3025032 1286443 1352 577 0 False 602 548 27 {X=0,Y=0,Width=0,Height=0} +69 656 548 0.0341547923937839 0.0339971272312849 0.0341649500267033 0.0339055466544594 0.00184547533724883 0.00207389017720102 3026228 1285557 1352 577 0 False 656 548 27 {X=0,Y=0,Width=0,Height=0} +70 709 548 0.0339053435018011 0.0340803774928634 0.0338902876325628 0.0341191729610132 0.00191765062415591 0.00192091086081286 3004126 1288705 1352 577 0 False 709 548 27 {X=0,Y=0,Width=0,Height=0} +71 229 602 0.0339374190493088 0.0340081020910546 0.0339208056763561 0.0340428778515297 0.00212420478854122 0.00216733416537328 3006968 1285972 1352 577 0 False 229 602 27 {X=0,Y=0,Width=0,Height=0} +72 282 602 0.0339317872061679 0.0338889389148561 0.0338597695887694 0.0337987335011826 0.00176354620963306 0.00165766926152841 3006469 1281466 1352 577 0 False 282 602 27 {X=0,Y=0,Width=0,Height=0} +73 336 601 0.034054954148445 0.0340585600005501 0.0340581368734264 0.0339971007858396 0.00179754475530556 0.00158465387701523 3017382 1287880 1352 577 0 False 336 601 27 {X=0,Y=0,Width=0,Height=0} +74 389 601 0.0341032141910709 0.0341240389229352 0.0341039139391165 0.0341496910048066 0.00191032564902607 0.00203399426853756 3021658 1290356 1352 577 0 False 389 601 27 {X=0,Y=0,Width=0,Height=0} +75 442 601 0.0342862321637609 0.0340406299886853 0.0342870222018769 0.0339360646982528 0.00206830127557944 0.00215443937528605 3037874 1287202 1352 577 0 False 442 601 27 {X=0,Y=0,Width=0,Height=0} +76 496 601 0.0340782151278304 0.0342063900393759 0.034027618829633 0.0341802090486 0.00224926453498847 0.00226880386711209 3019443 1293470 1352 577 0 False 496 601 27 {X=0,Y=0,Width=0,Height=0} +77 549 601 0.0341351091584379 0.0341433176525066 0.0340581368734264 0.0342107270923934 0.00199044966619715 0.00195358597499592 3024484 1291085 1352 577 0 False 549 601 27 {X=0,Y=0,Width=0,Height=0} +78 602 601 0.034230658625433 0.0343901858837122 0.0343022812237736 0.0344090943770504 0.00190022233615257 0.00203762497266253 3032950 1300420 1352 577 0 False 602 601 27 {X=0,Y=0,Width=0,Height=0} +79 656 600 0.0341242856362493 0.034136177382295 0.0341649500267033 0.0341039139391165 0.00168018978443553 0.00177290563386227 3023525 1290815 1352 577 0 False 656 600 27 {X=0,Y=0,Width=0,Height=0} +80 709 600 0.0340964988670853 0.0340356582449824 0.0340428778515297 0.034027618829633 0.00182872735100724 0.00184115179496205 3021063 1287014 1352 577 0 False 709 600 27 {X=0,Y=0,Width=0,Height=0} +81 227 656 0.0339691221502761 0.0399139749721482 0.0339971007858396 0.0402532997634852 0.00230215377732994 0.00361431822548196 3009777 1959206 1352 749 0 True 229 654 31 {X=0,Y=0,Width=0,Height=0} +82 283 654 0.0338028529856443 0.0339295326732815 0.0337376974135958 0.034027618829633 0.00189008921576892 0.00175246041611455 2995045 1283001 1352 577 0 False 283 654 27 {X=0,Y=0,Width=0,Height=0} +83 336 654 0.0341426596655746 0.0339190602769711 0.0341039139391165 0.0339971007858396 0.00197129635595983 0.0019020939652506 3025153 1282605 1352 577 0 False 336 654 27 {X=0,Y=0,Width=0,Height=0} +84 389 654 0.0339658265627067 0.0339609498622126 0.0339208056763561 0.0339513237201495 0.00198758565272469 0.0018446257635207 3009485 1284189 1352 577 0 False 389 654 27 {X=0,Y=0,Width=0,Height=0} +85 443 654 0.0340713305099628 0.0342669501089486 0.0340886549172198 0.0342412451361868 0.00205697702582422 0.00212052755285061 3018833 1295760 1352 577 0 False 443 654 27 {X=0,Y=0,Width=0,Height=0} +86 496 654 0.0340202263301195 0.0341247793954016 0.0339665827420462 0.034027618829633 0.00182259145861686 0.00189349594780799 3014305 1290384 1352 577 0 False 496 654 27 {X=0,Y=0,Width=0,Height=0} +87 549 653 0.0340738473456751 0.0339954347227902 0.0339665827420462 0.0339818417639429 0.00167760778513347 0.00165035226447378 3019056 1285493 1352 577 0 False 549 653 27 {X=0,Y=0,Width=0,Height=0} +88 603 653 0.0341205047395515 0.0343018580966499 0.0340733958953231 0.0342870222018769 0.0015912959364071 0.00141242456954788 3023190 1297080 1352 577 0 False 603 653 27 {X=0,Y=0,Width=0,Height=0} +89 656 653 0.0340101815597881 0.0338695279580586 0.034027618829633 0.0338750286106661 0.00154522613661214 0.00155174390449074 3013415 1280732 1352 577 0 False 656 653 27 {X=0,Y=0,Width=0,Height=0} +90 709 653 0.033953490681839 0.0338724105115885 0.0338902876325628 0.0338597695887694 0.00169935208879333 0.00158611011706509 3008392 1280841 1352 577 0 False 709 653 27 {X=0,Y=0,Width=0,Height=0} +91 228 709 0.0336270130735507 0.0395399150241572 0.0336308842603189 0.0398413061722744 0.00258558820882341 0.00432052138986467 2979465 1940845 1352 749 0 True 229 707 31 {X=0,Y=0,Width=0,Height=0} +92 283 707 0.0337759578309255 0.0337643544223859 0.0337529564354925 0.0337224383916991 0.00218433673886516 0.00187305824071368 2992662 1276755 1352 577 0 False 283 707 27 {X=0,Y=0,Width=0,Height=0} +93 336 707 0.0339567862694084 0.0340178340148986 0.0339818417639429 0.0340123598077363 0.0021841991872496 0.00221338728849513 3008684 1286340 1352 577 0 False 336 707 27 {X=0,Y=0,Width=0,Height=0} +94 389 707 0.0340086579148501 0.0340308980648413 0.0338902876325628 0.0339971007858396 0.00245412687159757 0.00236468327966334 3013280 1286834 1352 577 0 False 389 707 27 {X=0,Y=0,Width=0,Height=0} +95 443 707 0.0338976349870411 0.0340906383256119 0.033829251544976 0.0343175402456703 0.00224687062588509 0.00222856707543198 3003443 1289093 1352 577 0 False 443 707 27 {X=0,Y=0,Width=0,Height=0} +96 496 706 0.0341198727090588 0.0338104488334187 0.034027618829633 0.0337224383916991 0.00199152457444443 0.00198681988887274 3023134 1278498 1352 577 0 False 496 706 27 {X=0,Y=0,Width=0,Height=0} +97 549 706 0.0340238830779704 0.0341947540434755 0.0339971007858396 0.0342107270923934 0.00170021669014599 0.00164048623703019 3014629 1293030 1352 577 0 False 549 706 27 {X=0,Y=0,Width=0,Height=0} +98 603 706 0.0341306623724709 0.0340759082126198 0.0341191729610132 0.0341344319829099 0.00159513812764771 0.00153211234547034 3024090 1288536 1352 577 0 False 603 706 27 {X=0,Y=0,Width=0,Height=0} +99 656 706 0.0340688249605094 0.0339877390982288 0.0340581368734264 0.0338750286106661 0.00168844098793522 0.00173362495044375 3018611 1285202 1352 577 0 False 656 706 27 {X=0,Y=0,Width=0,Height=0} +100 705 709 0.0340215581086578 0.0393444043651436 0.0339665827420462 0.0395513847562371 0.00183573501284853 0.00330325923858247 3014423 2220033 1352 861 0 True 709 706 32 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C02_1.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C02_1.csv new file mode 100644 index 0000000..807b65d --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C02_1.csv @@ -0,0 +1,101 @@ + ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour +1 258 214 0.238031351421143 0.943967187963414 0.237170977340352 1 0.00781607760771129 0.146418893834762 22509912 53263948 1443 861 77 True 256 216 32 {X=0,Y=0,Width=0,Height=0} +2 308 217 0.233745385084364 0.232571162379133 0.232974746318761 0.2323338673991 0.00818824370103412 0.00436733067397709 22104601 8794375 1443 577 0 False 308 217 26 {X=0,Y=0,Width=0,Height=0} +3 361 217 0.231396489716471 0.231535928980228 0.231311512932021 0.231616693369955 0.00378117512336024 0.00380794188211606 21882473 8755229 1443 577 0 False 361 217 26 {X=0,Y=0,Width=0,Height=0} +4 414 217 0.231034407825436 0.230889866753302 0.231036850537881 0.230792706187533 0.00450064908050634 0.00478483772105436 21848232 8730799 1443 577 0 False 414 217 26 {X=0,Y=0,Width=0,Height=0} +5 467 218 0.231109518589491 0.230621181029783 0.231189440756847 0.230685893034257 0.00553645177969946 0.00648851323428812 21855335 8720639 1443 577 0 False 467 218 26 {X=0,Y=0,Width=0,Height=0} +6 520 218 0.23106900763115 0.231496816166735 0.231113145647364 0.231586175326162 0.00592949372536015 0.00547836203323846 21851504 8753750 1443 577 0 False 520 218 26 {X=0,Y=0,Width=0,Height=0} +7 573 218 0.231268506388671 0.231589877688494 0.231433585107195 0.231418326085298 0.00513590366585538 0.00493446363572452 21870370 8757269 1443 577 0 False 573 218 26 {X=0,Y=0,Width=0,Height=0} +8 625 219 0.231000569384639 0.231497847539099 0.23099107347219 0.231372549019608 0.00452414425032521 0.00476832704851138 21845032 8753789 1443 577 0 False 625 219 26 {X=0,Y=0,Width=0,Height=0} +9 678 219 0.232239764810147 0.232097233555197 0.23224231326772 0.232043945983062 0.00393573944613744 0.00342919450823167 21962219 8776454 1443 577 0 False 678 219 26 {X=0,Y=0,Width=0,Height=0} +10 730 216 0.235345192543636 0.934144524913189 0.235019455252918 1 0.00535088673133168 0.158671704381925 22255890 52709698 1443 861 76 True 731 219 32 {X=0,Y=0,Width=0,Height=0} +11 255 269 0.231781824961042 0.231868480453973 0.231692988479438 0.231662470435645 0.00481448974348531 0.00455044699178023 21918913 8767804 1443 577 0 False 255 269 26 {X=0,Y=0,Width=0,Height=0} +12 308 269 0.231866738298416 0.232248316383786 0.231815060654612 0.231631952391852 0.0035144848015919 0.00507854107040475 21926943 8782167 1443 577 0 False 308 269 26 {X=0,Y=0,Width=0,Height=0} +13 361 269 0.231565798240094 0.231588211625444 0.231494621194781 0.231692988479438 0.00365550509123441 0.00322393629539831 21898484 8757206 1443 577 0 False 361 269 26 {X=0,Y=0,Width=0,Height=0} +14 414 270 0.231456933631344 0.230700808265365 0.231418326085298 0.230609597924773 0.00373066383516919 0.00352525428138466 21888189 8723650 1443 577 0 False 414 270 26 {X=0,Y=0,Width=0,Height=0} +15 467 270 0.231743037648279 0.232061426422358 0.231631952391852 0.232196536202029 0.00484813180286334 0.00476898741751031 21915245 8775100 1443 577 0 False 467 270 26 {X=0,Y=0,Width=0,Height=0} +16 519 270 0.23202474266791 0.231742917480029 0.232013427939269 0.231601434348058 0.0055974988186467 0.00546226696061508 21941885 8763056 1443 577 0 False 519 270 26 {X=0,Y=0,Width=0,Height=0} +17 572 271 0.231809350417728 0.231839073118879 0.231845578698405 0.231769283588922 0.00445766818202342 0.0041120681825985 21921516 8766692 1443 577 0 False 572 271 26 {X=0,Y=0,Width=0,Height=0} +18 625 271 0.231660778513605 0.23145733311701 0.231540398260472 0.231479362172885 0.00396181759951931 0.0037286966620815 21907466 8752257 1443 577 0 False 625 271 26 {X=0,Y=0,Width=0,Height=0} +19 678 271 0.231520148068557 0.23140811814344 0.231555657282368 0.231494621194781 0.00335847240838844 0.00329611693401762 21894167 8750396 1443 577 0 False 678 271 26 {X=0,Y=0,Width=0,Height=0} +20 731 272 0.231885740697826 0.231547432748902 0.231891355764096 0.231494621194781 0.00400577636996884 0.00401397879470852 21928740 8755664 1443 577 0 False 731 272 26 {X=0,Y=0,Width=0,Height=0} +21 255 321 0.231884693821064 0.231619364359923 0.231860837720302 0.231586175326162 0.00454443297557744 0.00430739512618062 21928641 8758384 1443 577 0 False 255 321 26 {X=0,Y=0,Width=0,Height=0} +22 308 321 0.232345943492659 0.232145073365615 0.232227054245823 0.232303349355306 0.00376278983245842 0.00331660747476883 21972260 8778263 1443 577 0 False 308 321 26 {X=0,Y=0,Width=0,Height=0} +23 361 322 0.231827559728681 0.232164246313406 0.231891355764096 0.232303349355306 0.00412102071022871 0.00447423964330022 21923238 8778988 1443 577 0 False 361 322 26 {X=0,Y=0,Width=0,Height=0} +24 413 322 0.231933400026785 0.231887018711078 0.231921873807889 0.231891355764096 0.00392471559976745 0.00390620120801739 21933247 8768505 1443 577 0 False 413 322 26 {X=0,Y=0,Width=0,Height=0} +25 466 322 0.232172912740548 0.232812741521293 0.232104982070649 0.232669565880827 0.00452236564942523 0.00464899860449508 21955897 8803510 1443 577 0 False 466 322 26 {X=0,Y=0,Width=0,Height=0} +26 519 323 0.232647295956978 0.233235154617923 0.232455939574273 0.233173113603418 0.00484134402075812 0.0047743761640222 22000758 8819483 1443 577 0 False 519 323 26 {X=0,Y=0,Width=0,Height=0} +27 572 323 0.233123656607291 0.233215346979448 0.233218890669108 0.233325703822385 0.00442387968989071 0.0045822977911098 22045806 8818734 1443 577 0 False 572 323 26 {X=0,Y=0,Width=0,Height=0} +28 625 323 0.232265534897716 0.232361582225699 0.232089723048753 0.23224231326772 0.00422271972638633 0.00418389264760087 21964656 8786450 1443 577 0 False 625 323 26 {X=0,Y=0,Width=0,Height=0} +29 678 324 0.232475883105318 0.231999967207648 0.232547493705653 0.231998168917372 0.00343208150779161 0.0033204318581288 21984548 8772776 1443 577 0 False 678 324 26 {X=0,Y=0,Width=0,Height=0} +30 730 324 0.231698666992785 0.231881941185594 0.231647211413748 0.231647211413748 0.00369983905039056 0.00350701730991664 21911049 8768313 1443 577 0 False 730 324 26 {X=0,Y=0,Width=0,Height=0} +31 255 373 0.233645910642935 0.231889927710053 0.232639047837034 0.231738765545129 0.00834339372836898 0.00565941298782009 22095194 8768615 1443 577 0 False 255 373 26 {X=0,Y=0,Width=0,Height=0} +32 307 374 0.232339968892956 0.231874642242711 0.23224231326772 0.231876096742199 0.00409366248211401 0.00380762259152478 21971695 8768037 1443 577 0 False 307 374 26 {X=0,Y=0,Width=0,Height=0} +33 360 374 0.232549312521846 0.233070346603261 0.232455939574273 0.232867933165484 0.00419457531261956 0.0041692803953239 21991492 8813251 1443 577 0 False 360 374 26 {X=0,Y=0,Width=0,Height=0} +34 413 374 0.232962310691768 0.232781509450478 0.232684824902724 0.232776379034104 0.00394197844479232 0.00392440425045112 22030548 8802329 1443 577 0 False 413 374 26 {X=0,Y=0,Width=0,Height=0} +35 466 375 0.233497000354405 0.233164968406288 0.233478294041352 0.233112077515831 0.00481146138332624 0.00394792890362398 22081112 8816829 1443 577 0 False 466 375 26 {X=0,Y=0,Width=0,Height=0} +36 519 375 0.233422746125882 0.233005449480671 0.233554589150835 0.233051041428244 0.00429172743320365 0.0042368487974179 22074090 8810797 1443 577 0 False 519 375 26 {X=0,Y=0,Width=0,Height=0} +37 572 375 0.233257001213055 0.233779507662502 0.233234149691005 0.233813992523079 0.00386922390299735 0.00415179492222766 22058416 8840067 1443 577 0 False 572 375 26 {X=0,Y=0,Width=0,Height=0} +38 624 375 0.23327548546134 0.232986435205552 0.233203631647211 0.232806897077897 0.00394886692619395 0.00414016653927678 22060164 8810078 1443 577 0 False 624 375 26 {X=0,Y=0,Width=0,Height=0} +39 677 376 0.232709336623276 0.232717405691245 0.232715342946517 0.23256275272755 0.00376879669846968 0.00376133769740657 22006625 8799905 1443 577 0 False 677 376 26 {X=0,Y=0,Width=0,Height=0} +40 730 376 0.231755758787116 0.232049975544575 0.231876096742199 0.232074464026856 0.00352241629727206 0.00354750645154161 21916448 8774667 1443 577 0 False 730 376 26 {X=0,Y=0,Width=0,Height=0} +41 254 425 0.232821267840723 0.232327070919676 0.232303349355306 0.232364385442893 0.0066515469905979 0.00584363452120096 22017210 8785145 1443 577 0 False 254 425 26 {X=0,Y=0,Width=0,Height=0} +42 307 426 0.232568198601616 0.23247175395052 0.232547493705653 0.232547493705653 0.00446340963995756 0.00454080911104342 21993278 8790616 1443 577 0 False 307 426 26 {X=0,Y=0,Width=0,Height=0} +43 360 426 0.232534984057071 0.232385383126404 0.232440680552377 0.232196536202029 0.00465123206823217 0.00454247779264248 21990137 8787350 1443 577 0 False 360 426 26 {X=0,Y=0,Width=0,Height=0} +44 413 426 0.23351252373912 0.233305261493224 0.233463035019455 0.233173113603418 0.00465843955125229 0.0043517610927115 22082580 8822134 1443 577 0 False 413 426 26 {X=0,Y=0,Width=0,Height=0} +45 466 427 0.233979145263192 0.23416574339006 0.234103913939117 0.23399710078584 0.00474439037820289 0.00498392513784465 22126707 8854672 1443 577 0 False 466 427 26 {X=0,Y=0,Width=0,Height=0} +46 518 427 0.233741504238185 0.233576909106608 0.233646143282216 0.233264667734798 0.00484956857255855 0.00471332194250817 22104234 8832406 1443 577 0 False 518 427 26 {X=0,Y=0,Width=0,Height=0} +47 571 427 0.234085450839857 0.234324283834203 0.234058136873426 0.234622720683604 0.00419938796759392 0.00395782072920004 22136760 8860667 1443 577 0 False 571 427 26 {X=0,Y=0,Width=0,Height=0} +48 624 428 0.233767126282576 0.234032934364124 0.233646143282216 0.23404287785153 0.00433058014156549 0.00404182983119163 22106657 8849650 1443 577 0 False 624 428 26 {X=0,Y=0,Width=0,Height=0} +49 677 428 0.232800076517174 0.232809092049851 0.232822156099794 0.232745860990311 0.00436882735045731 0.00401973872500543 22015206 8803372 1443 577 0 False 677 428 26 {X=0,Y=0,Width=0,Height=0} +50 730 428 0.231936942488556 0.231761640855251 0.231982909895476 0.231708247501335 0.00435362736813195 0.00457673204977394 21933582 8763764 1443 577 0 False 730 428 26 {X=0,Y=0,Width=0,Height=0} +51 254 478 0.232538061240281 0.231579458183074 0.232639047837034 0.231479362172885 0.00525858689140308 0.0053463340780927 21990428 8756875 1443 577 0 False 254 478 26 {X=0,Y=0,Width=0,Height=0} +52 307 478 0.232319771573605 0.232955890716313 0.232272831311513 0.232959487296864 0.00417092873068883 0.00446175439189078 21969785 8808923 1443 577 0 False 307 478 26 {X=0,Y=0,Width=0,Height=0} +53 360 478 0.233442308974467 0.232958984833405 0.233661402304112 0.233066300450141 0.00427139601502263 0.00403736283877643 22075940 8809040 1443 577 0 False 360 478 26 {X=0,Y=0,Width=0,Height=0} +54 412 479 0.234080142434457 0.234685740179583 0.234027618829633 0.234332799267567 0.00493340524557749 0.00466947784404587 22136258 8874335 1443 577 0 False 412 479 26 {X=0,Y=0,Width=0,Height=0} +55 465 479 0.234045257116898 0.23359214168306 0.234027618829633 0.233539330128939 0.00565541605786926 0.00630293768683896 22132959 8832982 1443 577 0 False 465 479 26 {X=0,Y=0,Width=0,Height=0} +56 518 479 0.234379887572838 0.234354034960085 0.23422598611429 0.23427176317998 0.00520949448649856 0.00586642057857678 22164604 8861792 1443 577 0 False 518 479 26 {X=0,Y=0,Width=0,Height=0} +57 571 480 0.234619347414037 0.234616876240209 0.234668497749294 0.23431754024567 0.00487759920852314 0.00507394951649119 22187249 8871731 1443 577 0 False 571 480 26 {X=0,Y=0,Width=0,Height=0} +58 624 480 0.23369866688704 0.234020769459319 0.233615625238422 0.233981841763943 0.00496448932378441 0.00509283554474588 22100183 8849190 1443 577 0 False 624 480 26 {X=0,Y=0,Width=0,Height=0} +59 677 480 0.232559887034595 0.232484527100565 0.232578011749447 0.23265430685893 0.00446947712890671 0.00482340608606103 21992492 8791099 1443 577 0 False 677 480 26 {X=0,Y=0,Width=0,Height=0} +60 729 481 0.23206528534979 0.232210710960672 0.232013427939269 0.231937132829786 0.00497530100343972 0.00530330287426723 21945719 8780745 1443 577 0 False 729 481 26 {X=0,Y=0,Width=0,Height=0} +61 254 530 0.232085747031959 0.232012290785124 0.231921873807889 0.231860837720302 0.00462979355245498 0.00433329523228389 21947654 8773242 1443 577 0 False 254 530 26 {X=0,Y=0,Width=0,Height=0} +62 306 530 0.233069504527504 0.232775215434514 0.232990005340658 0.232730601968414 0.00400593700289736 0.00399317310837065 22040685 8802091 1443 577 0 False 306 530 26 {X=0,Y=0,Width=0,Height=0} +63 359 531 0.233852959602559 0.233615731020203 0.233859769588769 0.233661402304112 0.0038850681834158 0.00358986809852647 22114774 8833874 1443 577 0 False 359 531 26 {X=0,Y=0,Width=0,Height=0} +64 412 531 0.234356581346739 0.234443923028416 0.234348058289464 0.234256504158083 0.00414996699049541 0.00373890353997098 22162400 8865191 1443 577 0 False 412 531 26 {X=0,Y=0,Width=0,Height=0} +65 465 531 0.234619231094397 0.234279405913651 0.234393835355154 0.234424353398947 0.00577722090168867 0.0059277122425888 22187238 8858970 1443 577 0 False 465 531 26 {X=0,Y=0,Width=0,Height=0} +66 518 532 0.234701627697737 0.234241826935982 0.234653238727398 0.234500648508431 0.00526193184328205 0.0052698348433276 22195030 8857549 1443 577 0 False 518 532 26 {X=0,Y=0,Width=0,Height=0} +67 571 532 0.234451455875123 0.234930572111506 0.234531166552224 0.234958419165332 0.00456628458255214 0.00455679162909527 22171372 8883593 1443 577 0 False 571 532 26 {X=0,Y=0,Width=0,Height=0} +68 623 532 0.233376440334554 0.233731165388624 0.233295185778592 0.233813992523079 0.00437446565655663 0.0043572743735533 22069711 8838239 1443 577 0 False 623 532 26 {X=0,Y=0,Width=0,Height=0} +69 676 533 0.232392619391933 0.232214995122799 0.232349126420996 0.231998168917372 0.00394446270152825 0.00404448829660188 21976674 8780907 1443 577 0 False 676 533 26 {X=0,Y=0,Width=0,Height=0} +70 729 533 0.232310138192491 0.231886569138509 0.232364385442893 0.231860837720302 0.0042447055252152 0.00502785012161026 21968874 8768488 1443 577 0 False 729 533 26 {X=0,Y=0,Width=0,Height=0} +71 253 582 0.232806664438617 0.232327282483238 0.232623788815137 0.231815060654612 0.00455288287741297 0.00494733915339483 22015829 8785153 1443 577 0 False 253 582 26 {X=0,Y=0,Width=0,Height=0} +72 306 582 0.232785515413119 0.233223650849249 0.232745860990311 0.232959487296864 0.00361655058891965 0.00386097627768653 22013829 8819048 1443 577 0 False 306 582 26 {X=0,Y=0,Width=0,Height=0} +73 359 583 0.233930407333932 0.233640801302279 0.233829251544976 0.233356221866178 0.00363101221074365 0.00395118008491641 22122098 8834822 1443 577 0 False 359 583 26 {X=0,Y=0,Width=0,Height=0} +74 412 583 0.234030495097101 0.234276840705464 0.2341802090486 0.234470130464637 0.00407032228858961 0.00421468921166913 22131563 8858873 1443 577 0 False 412 583 26 {X=0,Y=0,Width=0,Height=0} +75 465 583 0.234578899902773 0.234282896712421 0.234699015793088 0.234210727092393 0.00524413548373611 0.00493710452042966 22183424 8859102 1443 577 0 False 465 583 26 {X=0,Y=0,Width=0,Height=0} +76 517 584 0.234431089363568 0.233925380738381 0.234164950026703 0.23399710078584 0.00550032689098538 0.00574876751875778 22169446 8845583 1443 577 0 False 517 584 26 {X=0,Y=0,Width=0,Height=0} +77 570 584 0.234035866949577 0.2343714096176 0.233936064698253 0.234393835355154 0.00420936422872248 0.00436322272251658 22132071 8862449 1443 577 0 False 570 584 26 {X=0,Y=0,Width=0,Height=0} +78 623 584 0.232539784885859 0.232471674614184 0.232547493705653 0.23228809033341 0.0037090618254977 0.00410488827326312 21990591 8790613 1443 577 0 False 623 584 26 {X=0,Y=0,Width=0,Height=0} +79 676 585 0.232141569884761 0.232449698449199 0.232211795223926 0.23242542153048 0.00346154138616971 0.00318987295676497 21952933 8789782 1443 577 0 False 676 585 26 {X=0,Y=0,Width=0,Height=0} +80 729 585 0.231591155921666 0.231678549266344 0.231662470435645 0.231433585107195 0.00426205486578991 0.00412983270915137 21900882 8760622 1443 577 0 False 729 585 26 {X=0,Y=0,Width=0,Height=0} +81 255 638 0.242271762757 0.98346975285987 0.241443503471427 1 0.00743591373386109 0.0641741145277954 22910915 48274316 1443 749 86 True 253 634 31 {X=0,Y=0,Width=0,Height=0} +82 306 635 0.235354307773626 0.234287207319993 0.234485389486534 0.234302281223774 0.00519242001004262 0.00332570273475311 22256752 8859265 1443 577 0 False 306 635 26 {X=0,Y=0,Width=0,Height=0} +83 359 635 0.233338911388808 0.233113902251552 0.233340962844282 0.232959487296864 0.00356015093831284 0.00398453465086948 22066162 8814898 1443 577 0 False 359 635 26 {X=0,Y=0,Width=0,Height=0} +84 411 635 0.233754013886767 0.23343807051916 0.233508812085145 0.233432516975662 0.00405293995233443 0.00396987965797912 22105417 8827156 1443 577 0 False 411 635 26 {X=0,Y=0,Width=0,Height=0} +85 464 636 0.23377048897763 0.233793391521246 0.233829251544976 0.23404287785153 0.00464876455546306 0.00508148881211916 22106975 8840592 1443 577 0 False 464 636 26 {X=0,Y=0,Width=0,Height=0} +86 517 636 0.234054055111505 0.234220882143361 0.233783474479286 0.234027618829633 0.00453626511138784 0.00407105073920094 22133791 8856757 1443 577 0 False 517 636 26 {X=0,Y=0,Width=0,Height=0} +87 570 636 0.233304216412479 0.233022030774829 0.233203631647211 0.232883192187381 0.00389014773863844 0.00386356099495206 22062881 8811424 1443 577 0 False 570 636 26 {X=0,Y=0,Width=0,Height=0} +88 623 637 0.233397124081491 0.232389111934182 0.23237964446479 0.23242542153048 0.0150520956996059 0.00345095878691603 22071667 8787491 1443 577 0 False 623 637 26 {X=0,Y=0,Width=0,Height=0} +89 676 637 0.231912303873851 0.232239959623094 0.231921873807889 0.232166018158236 0.00362237141286652 0.00330066826675117 21931252 8781851 1443 577 0 False 676 637 26 {X=0,Y=0,Width=0,Height=0} +90 729 637 0.232006935188441 0.231761878864258 0.231937132829786 0.231631952391852 0.00395286220384651 0.00367767013058688 21940201 8763773 1443 577 0 False 729 637 26 {X=0,Y=0,Width=0,Height=0} +91 255 691 0.241704937150119 0.983268472304009 0.240161745632105 1 0.00906019959735573 0.0614960981880205 22857312 48264436 1443 749 86 True 253 687 31 {X=0,Y=0,Width=0,Height=0} +92 305 687 0.235348100534642 0.234295035171781 0.234287022201877 0.23440909437705 0.0057579393863381 0.00391543563412727 22256165 8859561 1443 577 0 False 305 687 26 {X=0,Y=0,Width=0,Height=0} +93 358 687 0.232447881795559 0.232777886424482 0.23256275272755 0.23265430685893 0.00402420227174488 0.00421670401215223 21981900 8802192 1443 577 0 False 358 687 26 {X=0,Y=0,Width=0,Height=0} +94 411 688 0.23312838341449 0.232935950850611 0.233203631647211 0.232959487296864 0.00399554337483767 0.00361963161404228 22046253 8808169 1443 577 0 False 411 688 26 {X=0,Y=0,Width=0,Height=0} +95 464 688 0.233253691390565 0.233703503452916 0.233234149691005 0.233783474479286 0.00453166125756429 0.00455082844266822 22058103 8837193 1443 577 0 False 464 688 26 {X=0,Y=0,Width=0,Height=0} +96 517 688 0.233417300251816 0.232904851007023 0.233508812085145 0.232639047837034 0.00458504627001155 0.00462762208767446 22073575 8806993 1443 577 0 False 517 688 26 {X=0,Y=0,Width=0,Height=0} +97 570 689 0.232857866229347 0.232555030657544 0.232669565880827 0.232349126420996 0.00388014735233505 0.00356097538350805 22020671 8793765 1443 577 0 False 570 689 26 {X=0,Y=0,Width=0,Height=0} +98 623 689 0.232867309269232 0.232042888165253 0.23224231326772 0.231692988479438 0.00523098959367313 0.00402750473961797 22021564 8774399 1443 577 0 False 623 689 26 {X=0,Y=0,Width=0,Height=0} +99 675 689 0.232120706371107 0.231345336656468 0.232028686961166 0.231601434348058 0.00395118846352471 0.00360897010568219 21950960 8748022 1443 577 0 False 675 689 26 {X=0,Y=0,Width=0,Height=0} +100 729 692 0.235418315299295 0.929592214602459 0.235294117647059 1 0.0056581819119766 0.167336136098595 22262805 52452831 1443 861 77 True 728 690 32 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C02_2.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C02_2.csv new file mode 100644 index 0000000..b0b93f5 --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C02_2.csv @@ -0,0 +1,101 @@ + ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour +1 258 214 0.0239759522890674 0.162283401861583 0.0239566643778134 0.18651102464332 0.00210763733123286 0.0487222666134949 2267334 9156944 1443 861 0 True 256 216 32 {X=0,Y=0,Width=0,Height=0} +2 308 217 0.0235062958798367 0.0231254575888445 0.0234073395895323 0.0231021591515984 0.00175712299700204 0.0017182296662069 2222920 874459 1443 577 0 False 308 217 26 {X=0,Y=0,Width=0,Height=0} +3 361 217 0.0232013903792343 0.0233502438732845 0.0232547493705653 0.0233157854581521 0.00161526784851389 0.00152990323383705 2194086 882959 1443 577 0 False 361 217 26 {X=0,Y=0,Width=0,Height=0} +4 414 217 0.0232763742491369 0.0235029927649229 0.0233005264362554 0.0234836346990158 0.00180739052557434 0.00161586573887629 2201177 888735 1443 577 0 False 414 217 26 {X=0,Y=0,Width=0,Height=0} +5 467 218 0.0235078609077236 0.0232410770753823 0.0234988937209125 0.0233005264362554 0.00227123196173069 0.0024159830984572 2223068 878831 1443 577 0 False 467 218 26 {X=0,Y=0,Width=0,Height=0} +6 520 218 0.0233946713232591 0.0235237259939818 0.0233920805676356 0.0234836346990158 0.00237969276311146 0.00219895292177899 2212364 889519 1443 577 0 False 520 218 26 {X=0,Y=0,Width=0,Height=0} +7 573 218 0.0233548159847084 0.0230481046615519 0.0233157854581521 0.0229953459983215 0.00202428205264485 0.00198408445872189 2208595 871534 1443 577 0 False 573 218 26 {X=0,Y=0,Width=0,Height=0} +8 625 219 0.023429799854611 0.0232656448939994 0.0233615625238422 0.0233310444800488 0.00178528986336143 0.00186782033146736 2215686 879760 1443 577 0 False 625 219 26 {X=0,Y=0,Width=0,Height=0} +9 678 219 0.0235582590354849 0.0235129626977739 0.0235904478522927 0.0235599298084993 0.00147576700701466 0.00131948147130318 2227834 889112 1443 577 0 False 678 219 26 {X=0,Y=0,Width=0,Height=0} +10 730 216 0.0239390260905482 0.163916666600208 0.0239566643778134 0.187106126497292 0.00183239101680414 0.0506214728830916 2263842 9249102 1443 861 0 True 731 219 32 {X=0,Y=0,Width=0,Height=0} +11 255 269 0.0232657362893115 0.0235501978846553 0.0231937132829786 0.0236057068741894 0.00175214143011803 0.00177665324260195 2200171 890520 1443 577 0 False 255 269 26 {X=0,Y=0,Width=0,Height=0} +12 308 269 0.0233119469100243 0.0234621874429357 0.0233157854581521 0.0233768215457389 0.00140160897095065 0.0016693717298339 2204541 887192 1443 577 0 False 308 269 26 {X=0,Y=0,Width=0,Height=0} +13 361 269 0.0233703922419876 0.02343777829699 0.023422598611429 0.0234531166552224 0.00144745400324626 0.00140863958733292 2210068 886269 1443 577 0 False 361 269 26 {X=0,Y=0,Width=0,Height=0} +14 414 270 0.0234393274905978 0.0233816081713252 0.0234531166552224 0.0233920805676356 0.00145708659477696 0.00140684331782992 2216587 884145 1443 577 0 False 414 270 26 {X=0,Y=0,Width=0,Height=0} +15 467 270 0.0236299753809481 0.0233722993746049 0.0236057068741894 0.0233157854581521 0.00193548862367304 0.00192924749315752 2234616 883793 1443 577 0 False 467 270 26 {X=0,Y=0,Width=0,Height=0} +16 519 270 0.0235418262426731 0.0235406246334827 0.0235294117647059 0.0234378576333257 0.00215390542700357 0.00222018406719432 2226280 890158 1443 577 0 False 519 270 26 {X=0,Y=0,Width=0,Height=0} +17 572 271 0.0235016219452017 0.023297114973821 0.0234683756771191 0.023270008392462 0.00185301368573228 0.00160377156098485 2222478 880950 1443 577 0 False 572 271 26 {X=0,Y=0,Width=0,Height=0} +18 625 271 0.023277421125899 0.0234508423469328 0.0232547493705653 0.0233920805676356 0.00162514459686732 0.00157315824401208 2201276 886763 1443 577 0 False 625 271 26 {X=0,Y=0,Width=0,Height=0} +19 678 271 0.0234877904825261 0.0232486140272724 0.0234988937209125 0.023224231326772 0.00143971661173163 0.00135899005968997 2221170 879116 1443 577 0 False 678 271 26 {X=0,Y=0,Width=0,Height=0} +20 731 272 0.0233219503990848 0.0235145758699328 0.0233310444800488 0.0235141527428092 0.00154682869977982 0.00163832752415387 2205487 889173 1443 577 0 False 731 272 26 {X=0,Y=0,Width=0,Height=0} +21 255 321 0.0232166282521055 0.0234133955964896 0.023224231326772 0.0233768215457389 0.00182863575763351 0.00200962006967754 2195527 885347 1443 577 0 False 255 321 26 {X=0,Y=0,Width=0,Height=0} +22 308 321 0.0233466418863535 0.0233280032538476 0.0233463035019455 0.0232852674143587 0.00142079950127011 0.00125042069899708 2207822 882118 1443 577 0 False 308 321 26 {X=0,Y=0,Width=0,Height=0} +23 361 322 0.0233870470995671 0.0235792085380707 0.0233920805676356 0.0235141527428092 0.00155539432222222 0.00178565824132865 2211643 891617 1443 577 0 False 361 322 26 {X=0,Y=0,Width=0,Height=0} +24 413 322 0.0234877587589879 0.0234019182732605 0.0234836346990158 0.0233615625238422 0.00157492226414498 0.00148530171898761 2221167 884913 1443 577 0 False 413 322 26 {X=0,Y=0,Width=0,Height=0} +25 466 322 0.0234505047505734 0.0234604420435506 0.023422598611429 0.0234836346990158 0.00172520827856622 0.00181805620892526 2217644 887126 1443 577 0 False 466 322 26 {X=0,Y=0,Width=0,Height=0} +26 519 323 0.0235654285551287 0.0235350181990943 0.0235599298084993 0.0234836346990158 0.00184242701034367 0.00193524537458042 2228512 889946 1443 577 0 False 519 323 26 {X=0,Y=0,Width=0,Height=0} +27 572 323 0.0233428879343276 0.0234121791060091 0.0232852674143587 0.0233463035019455 0.00176918472164416 0.00179557347973093 2207467 885301 1443 577 0 False 572 323 26 {X=0,Y=0,Width=0,Height=0} +28 625 323 0.0234247558120298 0.023625250058213 0.0233768215457389 0.023575188830396 0.00167625571439964 0.00159614213039129 2215209 893358 1443 577 0 False 625 323 26 {X=0,Y=0,Width=0,Height=0} +29 678 324 0.0235012624117683 0.0234274116824605 0.0234836346990158 0.0234378576333257 0.00139097526514973 0.00142329638241015 2222444 885877 1443 577 0 False 678 324 26 {X=0,Y=0,Width=0,Height=0} +30 730 324 0.0234729650156521 0.0235537415743159 0.023422598611429 0.0235294117647059 0.00146201964457674 0.00137097206803944 2219768 890654 1443 577 0 False 730 324 26 {X=0,Y=0,Width=0,Height=0} +31 255 373 0.0236774760922163 0.0233004999908102 0.0236057068741894 0.0232852674143587 0.0020997459786858 0.00210977763586244 2239108 881078 1443 577 0 False 255 373 26 {X=0,Y=0,Width=0,Height=0} +32 307 374 0.0233793594287987 0.0234248200288282 0.0233615625238422 0.0233920805676356 0.00162980075210187 0.00145944076797823 2210916 885779 1443 577 0 False 307 374 26 {X=0,Y=0,Width=0,Height=0} +33 360 374 0.0234209807109784 0.0233585477430862 0.0233463035019455 0.0233615625238422 0.00162049258507992 0.00172177670768499 2214852 883273 1443 577 0 False 360 374 26 {X=0,Y=0,Width=0,Height=0} +34 413 374 0.023557286180312 0.02363590757264 0.0234836346990158 0.0236057068741894 0.00150456778644908 0.00149668045655592 2227742 893761 1443 577 0 False 413 374 26 {X=0,Y=0,Width=0,Height=0} +35 466 375 0.0236753083171028 0.0235758764119719 0.0236514839398795 0.0234988937209125 0.00172249130574837 0.00156263195856931 2238903 891491 1443 577 0 False 466 375 26 {X=0,Y=0,Width=0,Height=0} +36 519 375 0.0237006342751365 0.023587935534996 0.0236667429617761 0.023575188830396 0.00183960525865516 0.00159236498182304 2241298 891947 1443 577 0 False 519 375 26 {X=0,Y=0,Width=0,Height=0} +37 572 375 0.0235619389659216 0.0233996439649709 0.0236057068741894 0.0234073395895323 0.00156688610596495 0.00155705171581926 2228182 884827 1443 577 0 False 572 375 26 {X=0,Y=0,Width=0,Height=0} +38 624 375 0.0235865458570883 0.023603459011345 0.0235904478522927 0.0236057068741894 0.00153089706191619 0.0017014348073132 2230509 892534 1443 577 0 False 624 375 26 {X=0,Y=0,Width=0,Height=0} +39 677 376 0.0233975052926758 0.0235574174912026 0.0234073395895323 0.0235904478522927 0.001434887404613 0.00140197205010238 2212632 890793 1443 577 0 False 677 376 26 {X=0,Y=0,Width=0,Height=0} +40 730 376 0.0234245866198258 0.0235745541397105 0.023422598611429 0.0235294117647059 0.00143034934065916 0.00140346619900496 2215193 891441 1443 577 0 False 730 376 26 {X=0,Y=0,Width=0,Height=0} +41 254 425 0.0232813759936671 0.0234414542138767 0.0232547493705653 0.0234988937209125 0.00228741801943916 0.00246478424424233 2201650 886408 1443 577 0 False 254 425 26 {X=0,Y=0,Width=0,Height=0} +42 307 426 0.0234356264111357 0.0233303304530277 0.023422598611429 0.0232852674143587 0.0018343436417528 0.00183846099792949 2216237 882206 1443 577 0 False 307 426 26 {X=0,Y=0,Width=0,Height=0} +43 360 426 0.0235230564825438 0.023548082249037 0.0234836346990158 0.0234988937209125 0.0018231840855165 0.00180824831374153 2224505 890440 1443 577 0 False 360 426 26 {X=0,Y=0,Width=0,Height=0} +44 413 426 0.0235710436213984 0.0237440694436235 0.0235294117647059 0.0236972610055695 0.00191954548851756 0.00178475841492762 2229043 897851 1443 577 0 False 413 426 26 {X=0,Y=0,Width=0,Height=0} +45 466 427 0.02360913301632 0.0235658271427852 0.0235294117647059 0.0235446707866026 0.00196846064099182 0.00202182604611542 2232645 891111 1443 577 0 False 466 427 26 {X=0,Y=0,Width=0,Height=0} +46 518 427 0.0236770848352446 0.0235190715956216 0.0236972610055695 0.0235446707866026 0.00182986003294547 0.00183386786382041 2239071 889343 1443 577 0 False 518 427 26 {X=0,Y=0,Width=0,Height=0} +47 571 427 0.0236287804610075 0.0237131811635969 0.0236514839398795 0.0236057068741894 0.00172548107205689 0.0017428930833384 2234503 896683 1443 577 0 False 571 427 26 {X=0,Y=0,Width=0,Height=0} +48 624 428 0.0236327882013394 0.0237121762366783 0.0236514839398795 0.0238040741588464 0.00167185231403735 0.00161631386192761 2234882 896645 1443 577 0 False 624 428 26 {X=0,Y=0,Width=0,Height=0} +49 677 428 0.0236109095344618 0.0237238651234692 0.0236362249179828 0.0237125200274662 0.00169794181587081 0.00174015843771807 2232813 897087 1443 577 0 False 677 428 26 {X=0,Y=0,Width=0,Height=0} +50 730 428 0.0234912589227078 0.0233598171244572 0.0234531166552224 0.0233920805676356 0.00177580323952911 0.00188750224016325 2221498 883321 1443 577 0 False 730 428 26 {X=0,Y=0,Width=0,Height=0} +51 254 478 0.0234406387301787 0.0234623196701618 0.0234073395895323 0.023422598611429 0.00205740615866251 0.0021671017938337 2216711 887197 1443 577 0 False 254 478 26 {X=0,Y=0,Width=0,Height=0} +52 307 478 0.023437593270507 0.023401045573568 0.0233920805676356 0.0234073395895323 0.00167647350854737 0.00166835432205538 2216423 884880 1443 577 0 False 307 478 26 {X=0,Y=0,Width=0,Height=0} +53 360 478 0.0235883223752301 0.0235926428242466 0.0236209658960861 0.0236057068741894 0.00166769653692993 0.00178917484245903 2230677 892125 1443 577 0 False 360 478 26 {X=0,Y=0,Width=0,Height=0} +54 412 479 0.0237002958907285 0.0238741016978108 0.0236667429617761 0.0237582970931563 0.00201265315046651 0.00190165976965267 2241266 902768 1443 577 0 False 412 479 26 {X=0,Y=0,Width=0,Height=0} +55 465 479 0.0237940495207604 0.0236390016897317 0.0238193331807431 0.0234836346990158 0.00243390257972031 0.00240714195489357 2250132 893878 1443 577 0 False 465 479 26 {X=0,Y=0,Width=0,Height=0} +56 518 479 0.0236100529989292 0.0237783162951941 0.0235599298084993 0.023773556115053 0.00199587369421236 0.00228977867457425 2232732 899146 1443 577 0 False 518 479 26 {X=0,Y=0,Width=0,Height=0} +57 571 480 0.0235399757029421 0.0237785543042012 0.023575188830396 0.0237888151369497 0.00191366059418752 0.00220640004443112 2226105 899155 1443 577 0 False 571 480 26 {X=0,Y=0,Width=0,Height=0} +58 624 480 0.02355008493713 0.0237573186116829 0.0235141527428092 0.0237582970931563 0.00194088112821537 0.00204037247583155 2227061 898352 1443 577 0 False 624 480 26 {X=0,Y=0,Width=0,Height=0} +59 677 480 0.0235208358348665 0.023463615496978 0.0235446707866026 0.0233768215457389 0.00173002961600058 0.00172816482347921 2224295 887246 1443 577 0 False 677 480 26 {X=0,Y=0,Width=0,Height=0} +60 729 481 0.0234607726024526 0.0233200167293887 0.0234531166552224 0.0233920805676356 0.00191023071109332 0.00208992059240281 2218615 881816 1443 577 0 False 729 481 26 {X=0,Y=0,Width=0,Height=0} +61 254 530 0.0234019994605941 0.0233276065721692 0.0233920805676356 0.0233463035019455 0.00185834990913067 0.00168170254593379 2213057 882103 1443 577 0 False 254 530 26 {X=0,Y=0,Width=0,Height=0} +62 306 530 0.0233030220212642 0.0234008340100062 0.0232394903486687 0.0234988937209125 0.00147735792368824 0.00157203406178216 2203697 884872 1443 577 0 False 306 530 26 {X=0,Y=0,Width=0,Height=0} +63 359 531 0.0235025630768364 0.0236731163140762 0.0235446707866026 0.0236820019836728 0.00143834312280938 0.00145170273645704 2222567 895168 1443 577 0 False 359 531 26 {X=0,Y=0,Width=0,Height=0} +64 412 531 0.0237765275531355 0.0237690868348095 0.0237582970931563 0.023773556115053 0.00165899183243595 0.00147815191919611 2248475 898797 1443 577 0 False 412 531 26 {X=0,Y=0,Width=0,Height=0} +65 465 531 0.0236821500268513 0.0238376334288411 0.0236514839398795 0.0238651102464332 0.00227939733381913 0.0022499536417403 2239550 901389 1443 577 0 False 465 531 26 {X=0,Y=0,Width=0,Height=0} +66 518 532 0.0236478251584683 0.0236739625683235 0.0236362249179828 0.0237125200274662 0.00220320600259796 0.00200111200827032 2236304 895200 1443 577 0 False 518 532 26 {X=0,Y=0,Width=0,Height=0} +67 571 532 0.0236062778978778 0.0235010886928664 0.0236209658960861 0.0234988937209125 0.00182501496384192 0.00170685013053723 2232375 888663 1443 577 0 False 571 532 26 {X=0,Y=0,Width=0,Height=0} +68 623 532 0.0236106240226176 0.0234780811555179 0.023575188830396 0.023422598611429 0.00175722266314402 0.00179135837962639 2232786 887793 1443 577 0 False 623 532 26 {X=0,Y=0,Width=0,Height=0} +69 676 533 0.0235024467571961 0.0235105826077034 0.0234683756771191 0.0234988937209125 0.00158503085961964 0.0013587365570482 2222556 889022 1443 577 0 False 676 533 26 {X=0,Y=0,Width=0,Height=0} +70 729 533 0.0235138989545032 0.023308354288043 0.0234836346990158 0.0232547493705653 0.00170251421113321 0.00175363793203556 2223639 881375 1443 577 0 False 729 533 26 {X=0,Y=0,Width=0,Height=0} +71 253 582 0.0234430497190854 0.023343923411875 0.023422598611429 0.0233310444800488 0.00181714435879211 0.00184952688530645 2216939 882720 1443 577 0 False 253 582 26 {X=0,Y=0,Width=0,Height=0} +72 306 582 0.0233875441016663 0.0233764248640605 0.0233310444800488 0.0234073395895323 0.00140476402287348 0.00141961409604403 2211690 883949 1443 577 0 False 306 582 26 {X=0,Y=0,Width=0,Height=0} +73 359 583 0.0235444381473221 0.0234917270052556 0.0235446707866026 0.0233920805676356 0.00143601121101559 0.00155899753116117 2226527 888309 1443 577 0 False 359 583 26 {X=0,Y=0,Width=0,Height=0} +74 412 583 0.0237113674055766 0.0237648820090182 0.0236972610055695 0.0237277790493629 0.0015683595496942 0.00158618434524466 2242313 898638 1443 577 0 False 412 583 26 {X=0,Y=0,Width=0,Height=0} +75 465 583 0.0236847407824748 0.0238200472077643 0.0236209658960861 0.0238040741588464 0.00193955083936342 0.00197522034194014 2239795 900724 1443 577 0 False 465 583 26 {X=0,Y=0,Width=0,Height=0} +76 517 584 0.0237876202170091 0.0237547005126053 0.023773556115053 0.0238040741588464 0.00218972827655098 0.00231812666171339 2249524 898253 1443 577 0 False 517 584 26 {X=0,Y=0,Width=0,Height=0} +77 570 584 0.0237133765629989 0.0235879884258864 0.0237582970931563 0.0236820019836728 0.00169758513760154 0.00170366720444865 2242503 891949 1443 577 0 False 570 584 26 {X=0,Y=0,Width=0,Height=0} +78 623 584 0.0235466164969484 0.0235143907518162 0.0234988937209125 0.0235294117647059 0.0015682445110973 0.00159712532850367 2226733 889166 1443 577 0 False 623 584 26 {X=0,Y=0,Width=0,Height=0} +79 676 585 0.0234965250300567 0.0235638437343931 0.0234836346990158 0.0234836346990158 0.00136070303478813 0.00141504466102957 2221996 891036 1443 577 0 False 676 585 26 {X=0,Y=0,Width=0,Height=0} +80 729 585 0.0233790844914672 0.0233557974167825 0.0233310444800488 0.0233615625238422 0.00169200217271126 0.00166209130788627 2210890 883169 1443 577 0 False 729 585 26 {X=0,Y=0,Width=0,Height=0} +81 255 638 0.0244256228692026 0.176148885678858 0.0243991760128176 0.19159227893492 0.00182548598570411 0.0441924849734049 2309858 8646394 1443 749 0 True 253 634 31 {X=0,Y=0,Width=0,Height=0} +82 306 635 0.0236926716670365 0.0234920707960436 0.0236362249179828 0.0234378576333257 0.00144139807687461 0.0013164511020109 2240545 888322 1443 577 0 False 306 635 26 {X=0,Y=0,Width=0,Height=0} +83 359 635 0.023496218369187 0.0235335901450519 0.0234988937209125 0.023575188830396 0.00149508094179157 0.00148580133771148 2221967 889892 1443 577 0 False 359 635 26 {X=0,Y=0,Width=0,Height=0} +84 411 635 0.0235583013335359 0.0237292335488505 0.0235141527428092 0.0236667429617761 0.00160355260831457 0.00176616457811838 2227838 897290 1443 577 0 False 411 635 26 {X=0,Y=0,Width=0,Height=0} +85 464 636 0.0235724183080558 0.0235639230707287 0.0236057068741894 0.0234378576333257 0.00187878161260577 0.0019330609032771 2229173 891039 1443 577 0 False 464 636 26 {X=0,Y=0,Width=0,Height=0} +86 517 636 0.0236743143129044 0.0234773935739419 0.0236209658960861 0.0234073395895323 0.00177972840841815 0.00163763918739588 2238809 887767 1443 577 0 False 517 636 26 {X=0,Y=0,Width=0,Height=0} +87 570 636 0.0235505607902037 0.0236015284938433 0.0234988937209125 0.0235141527428092 0.00147358910732756 0.00153876692064386 2227106 892461 1443 577 0 False 570 636 26 {X=0,Y=0,Width=0,Height=0} +88 623 637 0.023537617586599 0.0232633176948193 0.0234531166552224 0.0232394903486687 0.00204110848430767 0.00146867728616165 2225882 879672 1443 577 0 False 623 637 26 {X=0,Y=0,Width=0,Height=0} +89 676 637 0.0234312908609086 0.0234905634056656 0.023422598611429 0.023422598611429 0.00140374459687525 0.00135682996975115 2215827 888265 1443 577 0 False 676 637 26 {X=0,Y=0,Width=0,Height=0} +90 729 637 0.0235753368735745 0.0233543164718497 0.0235446707866026 0.0232547493705653 0.00154721015226585 0.00137770954882334 2229449 883113 1443 577 0 False 729 637 26 {X=0,Y=0,Width=0,Height=0} +91 255 691 0.0242066141356597 0.169983792637023 0.0242313267719539 0.18628213931487 0.00200848153919831 0.0392425876107966 2289147 8343776 1443 749 0 True 253 687 31 {X=0,Y=0,Width=0,Height=0} +92 305 687 0.0236988471824819 0.0235734169855657 0.0236820019836728 0.023575188830396 0.00152527490792891 0.00150612629389114 2241129 891398 1443 577 0 False 305 687 26 {X=0,Y=0,Width=0,Height=0} +93 358 687 0.0234842374462425 0.0235598769176088 0.0235294117647059 0.0234988937209125 0.00162841602247412 0.00157547242282309 2220834 890886 1443 577 0 False 358 687 26 {X=0,Y=0,Width=0,Height=0} +94 411 688 0.0235792917413426 0.0236489187316923 0.0235904478522927 0.0236514839398795 0.0017071862096546 0.0015448371556156 2229823 894253 1443 577 0 False 411 688 26 {X=0,Y=0,Width=0,Height=0} +95 464 688 0.0235521786906543 0.023815498591185 0.0235294117647059 0.0237888151369497 0.00182314974485593 0.00181349130427443 2227259 900552 1443 577 0 False 464 688 26 {X=0,Y=0,Width=0,Height=0} +96 517 688 0.0236432781179863 0.0237534046857891 0.0235904478522927 0.0237125200274662 0.00165146899679889 0.00178774102757335 2235874 898204 1443 577 0 False 517 688 26 {X=0,Y=0,Width=0,Height=0} +97 570 689 0.0235320659674059 0.0234114121880975 0.0234988937209125 0.0233615625238422 0.00145840754362405 0.00140839003828405 2225357 885272 1443 577 0 False 570 689 26 {X=0,Y=0,Width=0,Height=0} +98 623 689 0.0235763097287474 0.0234553380726216 0.0235599298084993 0.0234836346990158 0.00159445776209051 0.00145536891646066 2229541 886933 1443 577 0 False 623 689 26 {X=0,Y=0,Width=0,Height=0} +99 675 689 0.0234037759787359 0.0234627163518403 0.0234378576333257 0.0234378576333257 0.00159716394621904 0.00172585098597823 2213225 887212 1443 577 0 False 675 689 26 {X=0,Y=0,Width=0,Height=0} +100 729 692 0.0236338350781015 0.160959482334581 0.0236514839398795 0.184679942015717 0.00166240854504842 0.0491671565779677 2234981 9082241 1443 861 0 True 728 690 32 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C02_3.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C02_3.csv new file mode 100644 index 0000000..77a8521 --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C02_3.csv @@ -0,0 +1,101 @@ + ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour +1 258 214 0.317364465544827 0.353422074913291 0.317494468604562 0.357305256733043 0.0057114337177593 0.0254891425648843 30012207 19942065 1443 861 0 True 256 216 32 {X=0,Y=0,Width=0,Height=0} +2 308 217 0.317606431545548 0.317061900456964 0.317479209582666 0.316868848706798 0.00510129164989201 0.00480657057234804 30035089 11989282 1443 577 0 False 308 217 26 {X=0,Y=0,Width=0,Height=0} +3 361 217 0.317131805115325 0.316702348183641 0.317082475013352 0.316807812619211 0.00427568518961427 0.00393126353644555 29990205 11975686 1443 577 0 False 361 217 26 {X=0,Y=0,Width=0,Height=0} +4 414 217 0.316877181422844 0.316594106976322 0.316792553597314 0.31644159609369 0.00468268502407103 0.00447733965134956 29966126 11971593 1443 577 0 False 414 217 26 {X=0,Y=0,Width=0,Height=0} +5 467 218 0.317264969954373 0.317001393278282 0.317082475013352 0.317097734035248 0.00628795524255745 0.0061084249615062 30002798 11986994 1443 577 0 False 467 218 26 {X=0,Y=0,Width=0,Height=0} +6 520 218 0.316876018226442 0.316799032731395 0.316884107728695 0.316670481422141 0.00675821993624035 0.00718467123094233 29966016 11979342 1443 577 0 False 520 218 26 {X=0,Y=0,Width=0,Height=0} +7 573 218 0.316765821229085 0.316919042161841 0.316899366750591 0.317067215991455 0.00666809621405007 0.00571842046489224 29955595 11983880 1443 577 0 False 573 218 26 {X=0,Y=0,Width=0,Height=0} +8 625 219 0.31705126962623 0.316519266366326 0.317296101319905 0.316609445334554 0.00577211728787444 0.00560694768894464 29982589 11968763 1443 577 0 False 625 219 26 {X=0,Y=0,Width=0,Height=0} +9 678 219 0.316681722129193 0.316286096875748 0.316716258487831 0.316182192721447 0.00458813912617194 0.00400062244956016 29947642 11959946 1443 577 0 False 678 219 26 {X=0,Y=0,Width=0,Height=0} +10 730 216 0.316405336089474 0.341383433256888 0.316319523918517 0.335072861829557 0.00544604105117975 0.0228598258364132 29921505 19262777 1443 861 0 True 731 219 32 {X=0,Y=0,Width=0,Height=0} +11 255 269 0.317171311494955 0.317855607604599 0.317097734035248 0.31792172121767 0.00519672993300455 0.00476132176527541 29993941 12019295 1443 577 0 False 255 269 26 {X=0,Y=0,Width=0,Height=0} +12 308 269 0.317583199341039 0.317349547564712 0.317555504692149 0.317311360341802 0.00418432427366993 0.00460693062914396 30032892 12000159 1443 577 0 False 308 269 26 {X=0,Y=0,Width=0,Height=0} +13 361 269 0.317279657952581 0.317738295609567 0.317219806210422 0.317723353933013 0.00399016254019456 0.00434933883297174 30004187 12014859 1443 577 0 False 361 269 26 {X=0,Y=0,Width=0,Height=0} +14 414 270 0.317350221676154 0.317182015669191 0.317326619363699 0.317311360341802 0.00401505442613831 0.00390349721165117 30010860 11993824 1443 577 0 False 414 270 26 {X=0,Y=0,Width=0,Height=0} +15 467 270 0.317391959277974 0.317837280911056 0.317357137407492 0.3177843900206 0.00492055577454335 0.0047933655260567 30014807 12018602 1443 577 0 False 467 270 26 {X=0,Y=0,Width=0,Height=0} +16 519 270 0.3174912645272 0.318030147543106 0.317509727626459 0.3177843900206 0.00568260206686605 0.00586797031231669 30024198 12025895 1443 577 0 False 519 270 26 {X=0,Y=0,Width=0,Height=0} +17 572 271 0.317518335279837 0.317237075086156 0.317463950560769 0.317158770122835 0.00574768837503169 0.00548108700019748 30026758 11995906 1443 577 0 False 572 271 26 {X=0,Y=0,Width=0,Height=0} +18 625 271 0.317712314141703 0.317850265624663 0.317616540779736 0.317769130998703 0.00520192001648789 0.00501617677267447 30045102 12019093 1443 577 0 False 625 271 26 {X=0,Y=0,Width=0,Height=0} +19 678 271 0.31721452952856 0.317113389738823 0.317006179903868 0.317204547188525 0.00425790155999737 0.00432307371274983 29998028 11991229 1443 577 0 False 678 271 26 {X=0,Y=0,Width=0,Height=0} +20 731 272 0.316266778248925 0.31690563432111 0.31612115663386 0.316853589684901 0.00478674571989649 0.0048230277509309 29908402 11983373 1443 577 0 False 731 272 26 {X=0,Y=0,Width=0,Height=0} +21 255 321 0.317643738426526 0.317973580735763 0.317555504692149 0.31810482948043 0.00571075611393796 0.00587772903861634 30038617 12023756 1443 577 0 False 255 321 26 {X=0,Y=0,Width=0,Height=0} +22 308 321 0.318077452066923 0.317285972714383 0.31787594415198 0.317006179903868 0.00457994587707048 0.0044028372816993 30079632 11997755 1443 577 0 False 308 321 26 {X=0,Y=0,Width=0,Height=0} +23 361 322 0.317736466328822 0.31840194405757 0.31783016708629 0.318303196765087 0.00467759521240909 0.00473583147273858 30047386 12039954 1443 577 0 False 361 322 26 {X=0,Y=0,Width=0,Height=0} +24 413 322 0.317260993937579 0.317340714786005 0.317189288166629 0.317372396429389 0.0042545624811135 0.00439136391445209 30002422 11999825 1443 577 0 False 413 322 26 {X=0,Y=0,Width=0,Height=0} +25 466 322 0.317674869792059 0.317715790535678 0.317662317845426 0.317601281757839 0.00430060531951415 0.00437605048618205 30041561 12014008 1443 577 0 False 466 322 26 {X=0,Y=0,Width=0,Height=0} +26 519 323 0.318260359413941 0.318523513769284 0.318043793392844 0.318410009918364 0.005161043882764 0.00504560798436128 30096929 12044551 1443 577 0 False 519 323 26 {X=0,Y=0,Width=0,Height=0} +27 572 323 0.318344744025678 0.317794597962458 0.318425268940261 0.31792172121767 0.00549911987199896 0.00530725353792548 30104909 12016988 1443 577 0 False 572 323 26 {X=0,Y=0,Width=0,Height=0} +28 625 323 0.317924089908526 0.3176037147388 0.317799649042496 0.317158770122835 0.00518764701675155 0.00506960829827366 30065129 12009770 1443 577 0 False 625 323 26 {X=0,Y=0,Width=0,Height=0} +29 678 324 0.317738433188193 0.317278832444171 0.31783016708629 0.317112993057145 0.00431508510010249 0.00418010181488281 30047572 11997485 1443 577 0 False 678 324 26 {X=0,Y=0,Width=0,Height=0} +30 730 324 0.317200359681477 0.316970795898153 0.317311360341802 0.316700999465934 0.00428559861273916 0.00427679405686282 29996688 11985837 1443 577 0 False 730 324 26 {X=0,Y=0,Width=0,Height=0} +31 255 373 0.318603851311565 0.317701562886145 0.318562600137331 0.317341878385595 0.00682076256200748 0.00740382510702146 30129412 12013470 1443 577 0 False 255 373 26 {X=0,Y=0,Width=0,Height=0} +32 307 374 0.318593371969431 0.318112577995882 0.318532082093538 0.318028534370947 0.00525253251390875 0.00513876019993737 30128421 12029012 1443 577 0 False 307 374 26 {X=0,Y=0,Width=0,Height=0} +33 360 374 0.317869514848229 0.318679012987226 0.317814908064393 0.318760967421988 0.00510222465319391 0.00523456009354803 30059968 12050431 1443 577 0 False 360 374 26 {X=0,Y=0,Width=0,Height=0} +34 413 374 0.318136669338317 0.318963142850758 0.31810482948043 0.318959334706645 0.00458335160840108 0.00432586814734177 30085232 12061175 1443 577 0 False 413 374 26 {X=0,Y=0,Width=0,Height=0} +35 466 375 0.318407260545049 0.318392027015609 0.318272678721294 0.318440527962158 0.0042036002955744 0.00393138979621026 30110821 12039579 1443 577 0 False 466 375 26 {X=0,Y=0,Width=0,Height=0} +36 519 375 0.318265255413344 0.318444256769935 0.318165865568017 0.318410009918364 0.00498004105871197 0.00477460347789134 30097392 12041554 1443 577 0 False 519 375 26 {X=0,Y=0,Width=0,Height=0} +37 572 375 0.31818034207597 0.318234782398282 0.318242160677501 0.318028534370947 0.00485199984216981 0.00524385010252985 30089362 12033633 1443 577 0 False 572 375 26 {X=0,Y=0,Width=0,Height=0} +38 624 375 0.318298776618758 0.317778995149773 0.318516823071641 0.31773861295491 0.00483611726819509 0.00473719418581496 30100562 12016398 1443 577 0 False 624 375 26 {X=0,Y=0,Width=0,Height=0} +39 677 376 0.317714143532409 0.317787113901458 0.317753871976806 0.318135347524224 0.00403796077921891 0.00422035787859477 30045275 12016705 1443 577 0 False 677 376 26 {X=0,Y=0,Width=0,Height=0} +40 730 376 0.317405959932854 0.317592396088243 0.317524986648356 0.317647058823529 0.00410807955937497 0.00402027512396998 30016131 12009342 1443 577 0 False 730 376 26 {X=0,Y=0,Width=0,Height=0} +41 254 425 0.317924840698931 0.317883005085856 0.317845426108186 0.317479209582666 0.00645364878551331 0.00677384748681269 30065200 12020331 1443 577 0 False 254 425 26 {X=0,Y=0,Width=0,Height=0} +42 307 426 0.319036221988843 0.31908444810802 0.319188220035096 0.319310292210269 0.00507712736213397 0.0049807276969302 30170300 12065762 1443 577 0 False 307 426 26 {X=0,Y=0,Width=0,Height=0} +43 360 426 0.318740135631873 0.318757106386985 0.318684672312505 0.318669413290608 0.00497957002850021 0.0051383044418577 30142300 12053384 1443 577 0 False 360 426 26 {X=0,Y=0,Width=0,Height=0} +44 413 426 0.319125460301931 0.319037930569864 0.318989852750439 0.318883039597162 0.00528238799040352 0.00554539889102207 30178739 12064003 1443 577 0 False 413 426 26 {X=0,Y=0,Width=0,Height=0} +45 466 427 0.318730671442963 0.318034881277802 0.318623636224918 0.31801327534905 0.00569101096634412 0.00577992582790244 30141405 12026074 1443 577 0 False 466 427 26 {X=0,Y=0,Width=0,Height=0} +46 518 427 0.318245237860711 0.317622676123029 0.318257419699397 0.317509727626459 0.00517508536177772 0.00493143890546109 30095499 12010487 1443 577 0 False 518 427 26 {X=0,Y=0,Width=0,Height=0} +47 571 427 0.318376499287463 0.318682133549763 0.318440527962158 0.318608377203021 0.00542811704664061 0.00572491484380012 30107912 12050549 1443 577 0 False 571 427 26 {X=0,Y=0,Width=0,Height=0} +48 624 428 0.31771653337229 0.317963822366473 0.317647058823529 0.31805905241474 0.00529857657374915 0.00522588696020338 30045501 12023387 1443 577 0 False 624 428 26 {X=0,Y=0,Width=0,Height=0} +49 677 428 0.317709712811567 0.317550638730227 0.317677576867323 0.317341878385595 0.00435548660533477 0.00407171514492684 30044856 12007763 1443 577 0 False 677 428 26 {X=0,Y=0,Width=0,Height=0} +50 730 428 0.317421821701977 0.318018987565219 0.317387655451286 0.31787594415198 0.00421165797787713 0.00419808016726818 30017631 12025473 1443 577 0 False 730 428 26 {X=0,Y=0,Width=0,Height=0} +51 254 478 0.318353319955517 0.317927856560963 0.318333714808881 0.31783016708629 0.00520445628100063 0.00523458954514079 30105720 12022027 1443 577 0 False 254 478 26 {X=0,Y=0,Width=0,Height=0} +52 307 478 0.318327666187588 0.318551387268554 0.318410009918364 0.318455786984054 0.0043598589396199 0.00456900702600709 30103294 12045605 1443 577 0 False 307 478 26 {X=0,Y=0,Width=0,Height=0} +53 360 478 0.31905340557206 0.318852151317135 0.318898298619059 0.318822003509575 0.00416863624540003 0.00402617176074984 30171925 12056978 1443 577 0 False 360 478 26 {X=0,Y=0,Width=0,Height=0} +54 412 479 0.318808415260693 0.318807749414597 0.318944075684749 0.318944075684749 0.00472255544809463 0.00509635992354417 30148757 12055299 1443 577 0 False 412 479 26 {X=0,Y=0,Width=0,Height=0} +55 465 479 0.318097088937098 0.317751862122969 0.31787594415198 0.317601281757839 0.00635245167332245 0.00678637724987521 30081489 12015372 1443 577 0 False 465 479 26 {X=0,Y=0,Width=0,Height=0} +56 518 479 0.31827039462654 0.317822286343612 0.318501564049744 0.317799649042496 0.00606114583847433 0.00621338670337815 30097878 12018035 1443 577 0 False 518 479 26 {X=0,Y=0,Width=0,Height=0} +57 571 480 0.318537009816479 0.31901899563108 0.318638895246815 0.318745708400092 0.00548078344999623 0.0055152700878818 30123091 12063287 1443 577 0 False 571 480 26 {X=0,Y=0,Width=0,Height=0} +58 624 480 0.317974826420695 0.318336650253301 0.317845426108186 0.318638895246815 0.00573034497284936 0.00543143009951566 30069927 12037485 1443 577 0 False 624 480 26 {X=0,Y=0,Width=0,Height=0} +59 677 480 0.317765123258371 0.317995133773624 0.317586022735943 0.31805905241474 0.00510307933032208 0.00495009198858382 30050096 12024571 1443 577 0 False 677 480 26 {X=0,Y=0,Width=0,Height=0} +60 729 481 0.317288265605958 0.317659726191794 0.317311360341802 0.317250324254215 0.00503593069966237 0.00529222473145724 30005001 12011888 1443 577 0 False 729 481 26 {X=0,Y=0,Width=0,Height=0} +61 254 530 0.318152435936826 0.317936662894224 0.317998016327153 0.317891203173877 0.00504951484388143 0.00512678569802816 30086723 12022360 1443 577 0 False 254 530 26 {X=0,Y=0,Width=0,Height=0} +62 306 530 0.318011022977835 0.318092849693742 0.31792172121767 0.31792172121767 0.00430163632615793 0.0042417390273465 30073350 12028266 1443 577 0 False 306 530 26 {X=0,Y=0,Width=0,Height=0} +63 359 531 0.318907509019663 0.318734204631417 0.318944075684749 0.318699931334401 0.00430617499024155 0.00390612526063185 30158128 12052518 1443 577 0 False 359 531 26 {X=0,Y=0,Width=0,Height=0} +64 412 531 0.318284765389366 0.318096314047067 0.318287937743191 0.318074311436637 0.00456304209713231 0.00448809379260604 30099237 12028397 1443 577 0 False 412 531 26 {X=0,Y=0,Width=0,Height=0} +65 465 531 0.318270468648129 0.318466232934919 0.318211642633707 0.318410009918364 0.00611491310800635 0.00590470692357957 30097885 12042385 1443 577 0 False 465 531 26 {X=0,Y=0,Width=0,Height=0} +66 518 532 0.318495071298917 0.317715737644787 0.318501564049744 0.317341878385595 0.00682031751399236 0.00690551919185821 30119125 12014006 1443 577 0 False 518 532 26 {X=0,Y=0,Width=0,Height=0} +67 571 532 0.318545934705239 0.318898827527963 0.318410009918364 0.319005111772335 0.00588341517907963 0.00602461716073699 30123935 12058743 1443 577 0 False 571 532 26 {X=0,Y=0,Width=0,Height=0} +68 623 532 0.318677872900807 0.318013513358057 0.318455786984054 0.317769130998703 0.00552910835731967 0.00530285684167713 30136412 12025266 1443 577 0 False 623 532 26 {X=0,Y=0,Width=0,Height=0} +69 676 533 0.318415276025713 0.318150632991566 0.318303196765087 0.31805905241474 0.0052507863029948 0.00498412538689241 30111579 12030451 1443 577 0 False 676 533 26 {X=0,Y=0,Width=0,Height=0} +70 729 533 0.317990751636895 0.317129495014967 0.317982757305257 0.317158770122835 0.00551830946939341 0.00599316644018105 30071433 11991838 1443 577 0 False 729 533 26 {X=0,Y=0,Width=0,Height=0} +71 253 582 0.318109545713116 0.318233936144035 0.318043793392844 0.318120088502327 0.00505545566109123 0.00554497687056648 30082667 12033601 1443 577 0 False 253 582 26 {X=0,Y=0,Width=0,Height=0} +72 306 582 0.317564419006397 0.317546486795326 0.317479209582666 0.317479209582666 0.00401538847293858 0.00409342414104965 30031116 12007606 1443 577 0 False 306 582 26 {X=0,Y=0,Width=0,Height=0} +73 359 583 0.318192809426501 0.318187577278549 0.318272678721294 0.318211642633707 0.00473691853227402 0.00477796867069317 30090541 12031848 1443 577 0 False 359 583 26 {X=0,Y=0,Width=0,Height=0} +74 412 583 0.318617598178138 0.318634161512119 0.318532082093538 0.318486305027848 0.00485393196114926 0.0050071534904166 30130712 12048735 1443 577 0 False 412 583 26 {X=0,Y=0,Width=0,Height=0} +75 465 583 0.318584838337642 0.318412548681106 0.318440527962158 0.318516823071641 0.00586707779455438 0.00566433683392172 30127614 12040355 1443 577 0 False 465 583 26 {X=0,Y=0,Width=0,Height=0} +76 517 584 0.318591976133748 0.318027926125707 0.318623636224918 0.31819638361181 0.00630253781062603 0.00634947367598142 30128289 12025811 1443 577 0 False 517 584 26 {X=0,Y=0,Width=0,Height=0} +77 570 584 0.318283158063428 0.31855440204931 0.31815060654612 0.318562600137331 0.00537103617058047 0.00506994021653684 30099085 12045719 1443 577 0 False 570 584 26 {X=0,Y=0,Width=0,Height=0} +78 623 584 0.318694548907412 0.318229096627558 0.318822003509575 0.318303196765087 0.00542815661131051 0.005220049334938 30137989 12033418 1443 577 0 False 623 584 26 {X=0,Y=0,Width=0,Height=0} +79 676 585 0.318175615268772 0.318289894706138 0.318211642633707 0.318120088502327 0.00460223836721288 0.00434341574982157 30088915 12035717 1443 577 0 False 676 585 26 {X=0,Y=0,Width=0,Height=0} +80 729 585 0.317917227049752 0.318130984025761 0.317891203173877 0.318242160677501 0.00557139422136455 0.0055868299183192 30064480 12029708 1443 577 0 False 729 585 26 {X=0,Y=0,Width=0,Height=0} +81 255 638 0.316865401415642 0.357971438329869 0.317006179903868 0.361257343404288 0.00517811715108171 0.0329372954868992 29965012 17571284 1443 749 0 True 253 634 31 {X=0,Y=0,Width=0,Height=0} +82 306 635 0.317806088920761 0.317479183137221 0.317799649042496 0.317433432516976 0.004471653975729 0.00396792414499722 30053970 12005061 1443 577 0 False 306 635 26 {X=0,Y=0,Width=0,Height=0} +83 359 635 0.317366728490555 0.317938646302616 0.317372396429389 0.318089570458534 0.00509225061806077 0.00567996381145388 30012421 12022435 1443 577 0 False 359 635 26 {X=0,Y=0,Width=0,Height=0} +84 411 635 0.31839133532885 0.318211457515591 0.318379491874571 0.318211642633707 0.00512927912399129 0.00495542657692082 30109315 12032751 1443 577 0 False 411 635 26 {X=0,Y=0,Width=0,Height=0} +85 464 636 0.318400006429304 0.318283151117604 0.318516823071641 0.318410009918364 0.00539624958207988 0.00516335311032493 30110135 12035462 1443 577 0 False 464 636 26 {X=0,Y=0,Width=0,Height=0} +86 517 636 0.318442061266506 0.318385653663309 0.318410009918364 0.318455786984054 0.00483231813795639 0.0044125062889045 30114112 12039338 1443 577 0 False 517 636 26 {X=0,Y=0,Width=0,Height=0} +87 570 636 0.318069394288209 0.318269690385983 0.317906462195773 0.318181124589914 0.00459645491135457 0.00461734237423788 30078870 12034953 1443 577 0 False 570 636 26 {X=0,Y=0,Width=0,Height=0} +88 623 637 0.318553696397597 0.317776509277922 0.318318455786984 0.318043793392844 0.0057830969465113 0.00415328275631192 30124669 12016304 1443 577 0 False 623 637 26 {X=0,Y=0,Width=0,Height=0} +89 676 637 0.31766864140405 0.318291666550968 0.317677576867323 0.318394750896468 0.00397654685113454 0.00379069242704221 30040972 12035784 1443 577 0 False 676 637 26 {X=0,Y=0,Width=0,Height=0} +90 729 637 0.317682356547085 0.317761990728491 0.317616540779736 0.3177843900206 0.00497073466256491 0.00492602802000244 30042269 12015755 1443 577 0 False 729 637 26 {X=0,Y=0,Width=0,Height=0} +91 255 691 0.316246168523578 0.349637628788742 0.316044861524376 0.350514991989013 0.00582457086634961 0.0276235774261763 29906453 17162213 1443 749 0 True 253 687 31 {X=0,Y=0,Width=0,Height=0} +92 305 687 0.317218198884484 0.317971332872918 0.317082475013352 0.317952239261463 0.004709650430291 0.00493957550092732 29998375 12023671 1443 577 0 False 305 687 26 {X=0,Y=0,Width=0,Height=0} +93 358 687 0.317249224504889 0.317386280288134 0.317311360341802 0.317433432516976 0.00548120026664153 0.00518172737112968 30001309 12001548 1443 577 0 False 358 687 26 {X=0,Y=0,Width=0,Height=0} +94 411 688 0.318287768550987 0.317709787419611 0.318181124589914 0.317601281757839 0.00533374749003639 0.00550918674882427 30099521 12013781 1443 577 0 False 411 688 26 {X=0,Y=0,Width=0,Height=0} +95 464 688 0.31802835460423 0.317883851340103 0.31787594415198 0.317799649042496 0.00513009592969699 0.00524295959882244 30074989 12020363 1443 577 0 False 464 688 26 {X=0,Y=0,Width=0,Height=0} +96 517 688 0.318378878552831 0.318720214990891 0.318333714808881 0.319005111772335 0.00466174286808918 0.00481105861680096 30108137 12051989 1443 577 0 False 517 688 26 {X=0,Y=0,Width=0,Height=0} +97 570 689 0.317730237940812 0.318271250667252 0.317753871976806 0.318028534370947 0.00403937471527715 0.00384434104272858 30046797 12035012 1443 577 0 False 570 689 26 {X=0,Y=0,Width=0,Height=0} +98 623 689 0.318344744025678 0.317790789818345 0.318272678721294 0.317708094911116 0.00425933224119566 0.00393099428519848 30104909 12016844 1443 577 0 False 623 689 26 {X=0,Y=0,Width=0,Height=0} +99 675 689 0.317908312735504 0.317473603148277 0.31787594415198 0.317463950560769 0.00438920309032834 0.00420572952963299 30063637 12004850 1443 577 0 False 675 689 26 {X=0,Y=0,Width=0,Height=0} +100 729 692 0.31727249900745 0.335205213020642 0.317265583276112 0.329533836881056 0.00471482723947093 0.0173385063967847 30003510 18914167 1443 861 0 True 728 690 32 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C02_4.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C02_4.csv new file mode 100644 index 0000000..c79a32d --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C02_4.csv @@ -0,0 +1,101 @@ + ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour +1 258 214 0.0331852742930793 0.0369530267581393 0.0332036316472114 0.0368963149462119 0.00218637413211887 0.00344948762953823 3138232 2085098 1443 861 0 True 256 216 32 {X=0,Y=0,Width=0,Height=0} +2 308 217 0.033212958367456 0.0330404632501531 0.0331883726253147 0.0329442282749676 0.00193922321435884 0.00190665846557234 3140850 1249382 1443 577 0 False 308 217 26 {X=0,Y=0,Width=0,Height=0} +3 361 217 0.0332226763446722 0.0331795134011633 0.0331883726253147 0.0332036316472114 0.00166615957348352 0.00170894038267663 3141769 1254640 1443 577 0 False 361 217 26 {X=0,Y=0,Width=0,Height=0} +4 414 217 0.0330992083338158 0.0331580132541927 0.0331120775158312 0.0330968184939345 0.0017549194464965 0.00169780951124859 3130093 1253827 1443 577 0 False 414 217 26 {X=0,Y=0,Width=0,Height=0} +5 467 218 0.0331607625725273 0.0330735729475789 0.0331120775158312 0.0329594872968643 0.00235418606363661 0.0022459776684521 3135914 1250634 1443 577 0 False 467 218 26 {X=0,Y=0,Width=0,Height=0} +6 520 218 0.0329952291499556 0.033192577451106 0.0329594872968643 0.0332036316472114 0.00261317484223607 0.00281191675989823 3120260 1255134 1443 577 0 False 520 218 26 {X=0,Y=0,Width=0,Height=0} +7 573 218 0.0330213481964455 0.0328294285972318 0.0329900053406577 0.0328374151216907 0.00250809988077945 0.00227867028680989 3122730 1241402 1443 577 0 False 573 218 26 {X=0,Y=0,Width=0,Height=0} +8 625 219 0.0331333005629183 0.0332618909630492 0.0330510414282445 0.0332341496910048 0.00221935060851064 0.00217257644823782 3133317 1257755 1443 577 0 False 625 219 26 {X=0,Y=0,Width=0,Height=0} +9 678 219 0.0331606991254508 0.0332076513548861 0.0331578545815213 0.0332036316472114 0.00173165077406769 0.00151094298107468 3135908 1255704 1443 577 0 False 678 219 26 {X=0,Y=0,Width=0,Height=0} +10 730 216 0.0329628182683802 0.0356038350299469 0.0329137102311742 0.0352025635156786 0.00209702130123925 0.00315786406279289 3117195 2008969 1443 861 0 True 731 219 32 {X=0,Y=0,Width=0,Height=0} +11 255 269 0.0331124053257265 0.0331894833340143 0.0331120775158312 0.0330663004501411 0.00194104132430702 0.00194177874053779 3131341 1255017 1443 577 0 False 255 269 26 {X=0,Y=0,Width=0,Height=0} +12 308 269 0.0331378899014514 0.0333629919001568 0.0331120775158312 0.0333562218661784 0.0016636743906449 0.00164663372345763 3133751 1261578 1443 577 0 False 308 269 26 {X=0,Y=0,Width=0,Height=0} +13 361 269 0.0331225251344272 0.0332384867440222 0.0331425955596246 0.0332494087129015 0.0015013889619833 0.00164265531344283 3132298 1256870 1443 577 0 False 361 269 26 {X=0,Y=0,Width=0,Height=0} +14 414 270 0.0330564873023101 0.0331876850437388 0.0330205233844511 0.0332188906691081 0.00151917302276618 0.00152541298005182 3126053 1254949 1443 577 0 False 414 270 26 {X=0,Y=0,Width=0,Height=0} +15 467 270 0.0333024821923884 0.0332111421536562 0.0332646677347982 0.0331425955596246 0.00190618316477686 0.00172561079157258 3149316 1255836 1443 577 0 False 467 270 26 {X=0,Y=0,Width=0,Height=0} +16 519 270 0.0332328913239877 0.0334061508667693 0.0332036316472114 0.0333562218661784 0.00219100370379149 0.00224268915369757 3142735 1263210 1443 577 0 False 519 270 26 {X=0,Y=0,Width=0,Height=0} +17 572 271 0.0331671918762786 0.0330179581762639 0.0331425955596246 0.0329137102311742 0.00226185954355237 0.00215895221511869 3136522 1248531 1443 577 0 False 572 271 26 {X=0,Y=0,Width=0,Height=0} +18 625 271 0.033230268844826 0.0332183353147583 0.0332341496910048 0.0332799267566949 0.00208072333116877 0.00193246281285671 3142487 1256108 1443 577 0 False 625 271 26 {X=0,Y=0,Width=0,Height=0} +19 678 271 0.0330162407067877 0.0333015591308916 0.0330205233844511 0.0332951857785916 0.00166816932380609 0.00154611208667997 3122247 1259255 1443 577 0 False 678 271 26 {X=0,Y=0,Width=0,Height=0} +20 731 272 0.0330491697394879 0.0330536859727673 0.0330357824063478 0.0330357824063478 0.00188410722179046 0.00170543429348983 3125361 1249882 1443 577 0 False 731 272 26 {X=0,Y=0,Width=0,Height=0} +21 255 321 0.0332358416130446 0.0331434418138719 0.0331883726253147 0.0332799267566949 0.00222067491438291 0.00230772962290893 3143014 1253276 1443 577 0 False 255 321 26 {X=0,Y=0,Width=0,Height=0} +22 308 321 0.0331730818798798 0.0332590613004098 0.0331273365377279 0.0332494087129015 0.00173735932197209 0.00171341315532993 3137079 1257648 1443 577 0 False 308 321 26 {X=0,Y=0,Width=0,Height=0} +23 361 322 0.0331231067326284 0.0331625089798815 0.0331120775158312 0.0331120775158312 0.00184062878449249 0.00199894633421722 3132353 1253997 1443 577 0 False 361 322 26 {X=0,Y=0,Width=0,Height=0} +24 413 322 0.033178379710767 0.0334521394960212 0.0332036316472114 0.0334782940413519 0.00157899177410423 0.00165659991944638 3137580 1264949 1443 577 0 False 413 322 26 {X=0,Y=0,Width=0,Height=0} +25 466 322 0.0333583684922664 0.0330723564570984 0.0334019989318685 0.0330815594720378 0.00174765857132437 0.00163242603805199 3154601 1250588 1443 577 0 False 466 322 26 {X=0,Y=0,Width=0,Height=0} +26 519 323 0.0331531066252971 0.0334192149167121 0.0331883726253147 0.0334782940413519 0.00191432953947592 0.00193404523734943 3135190 1263704 1443 577 0 False 519 323 26 {X=0,Y=0,Width=0,Height=0} +27 572 323 0.0331908364867852 0.0332689518969252 0.0332036316472114 0.0332951857785916 0.00209195936616784 0.00204046640511876 3138758 1258022 1443 577 0 False 572 323 26 {X=0,Y=0,Width=0,Height=0} +28 625 323 0.0332285346247351 0.0332381693986795 0.0332799267566949 0.0332036316472114 0.00205841544773356 0.00188287027333655 3142323 1256858 1443 577 0 False 625 323 26 {X=0,Y=0,Width=0,Height=0} +29 678 324 0.0332089929251751 0.0332409461704285 0.0331883726253147 0.0331883726253147 0.00169166495937719 0.0016359391878962 3140475 1256963 1443 577 0 False 678 324 26 {X=0,Y=0,Width=0,Height=0} +30 730 324 0.0333274168934503 0.0330633650057208 0.033325703822385 0.0330205233844511 0.00174879426157248 0.00155897707321059 3151674 1250248 1443 577 0 False 730 324 26 {X=0,Y=0,Width=0,Height=0} +31 255 373 0.0331870931092721 0.033243908060294 0.0331425955596246 0.033325703822385 0.00253612088724783 0.00273958550481596 3138404 1257075 1443 577 0 False 255 373 26 {X=0,Y=0,Width=0,Height=0} +32 307 374 0.0332406530163454 0.0334069706755714 0.0332188906691081 0.0334172579537652 0.00195713126956454 0.00187711292308676 3143469 1263241 1443 577 0 False 307 374 26 {X=0,Y=0,Width=0,Height=0} +33 360 374 0.0332703568226571 0.0332662809069571 0.0332494087129015 0.0331120775158312 0.00198857009788413 0.00194497289780858 3146278 1257921 1443 577 0 False 360 374 26 {X=0,Y=0,Width=0,Height=0} +34 413 374 0.0333472018068035 0.0333611671644361 0.033325703822385 0.0333714808880751 0.00168018495613589 0.00158122115297967 3153545 1261509 1443 577 0 False 413 374 26 {X=0,Y=0,Width=0,Height=0} +35 466 375 0.0333578080430907 0.0334580632757523 0.0333714808880751 0.0334477759975586 0.00166463064406568 0.0016060046653049 3154548 1265173 1443 577 0 False 466 375 26 {X=0,Y=0,Width=0,Height=0} +36 519 375 0.0333218229762061 0.0333650017539942 0.0332799267566949 0.0334325169756619 0.001871511715489 0.00182453393046084 3151145 1261654 1443 577 0 False 519 375 26 {X=0,Y=0,Width=0,Height=0} +37 572 375 0.0331870085131701 0.0331960682498761 0.0331578545815213 0.0333714808880751 0.0019763001578337 0.00197734026731586 3138396 1255266 1443 577 0 False 572 375 26 {X=0,Y=0,Width=0,Height=0} +38 624 375 0.0332101032490138 0.0331480433213417 0.0331578545815213 0.0331120775158312 0.00180571920057977 0.00183158110642923 3140580 1253450 1443 577 0 False 624 375 26 {X=0,Y=0,Width=0,Height=0} +39 677 376 0.033102274942513 0.033023881955995 0.0330815594720378 0.0330205233844511 0.00168767573999783 0.00156346793919268 3130383 1248755 1443 577 0 False 677 376 26 {X=0,Y=0,Width=0,Height=0} +40 730 376 0.033198344390837 0.0331361164255437 0.0331578545815213 0.0331425955596246 0.00153548857825438 0.00149900669295902 3139468 1252999 1443 577 0 False 730 376 26 {X=0,Y=0,Width=0,Height=0} +41 254 425 0.0332587142841206 0.0332131784529388 0.0332188906691081 0.0330815594720378 0.00254400006873599 0.00271789610556443 3145177 1255913 1443 577 0 False 254 425 26 {X=0,Y=0,Width=0,Height=0} +42 307 426 0.0332620135320982 0.0334093507656419 0.0332036316472114 0.0333714808880751 0.00200782271093052 0.00193349720717945 3145489 1263331 1443 577 0 False 307 426 26 {X=0,Y=0,Width=0,Height=0} +43 360 426 0.0333549106265975 0.0333015591308916 0.033325703822385 0.0332188906691081 0.0018711561078603 0.00198058816437115 3154274 1259255 1443 577 0 False 360 426 26 {X=0,Y=0,Width=0,Height=0} +44 413 426 0.0333742408359025 0.0335978538992288 0.0334019989318685 0.0335698481727321 0.00196986416237473 0.00207418205744856 3156102 1270459 1443 577 0 False 413 426 26 {X=0,Y=0,Width=0,Height=0} +45 466 427 0.0333168952532651 0.0334647804188403 0.0333867399099718 0.0335545891508354 0.00210047477643872 0.00223830551892985 3150679 1265427 1443 577 0 False 466 427 26 {X=0,Y=0,Width=0,Height=0} +46 518 427 0.033163934926352 0.0332402850342978 0.0331273365377279 0.0332494087129015 0.00204685332611097 0.00197625064759359 3136214 1256938 1443 577 0 False 518 427 26 {X=0,Y=0,Width=0,Height=0} +47 571 427 0.0332807409941766 0.0333204411787846 0.0332188906691081 0.033173113603418 0.00213144747673173 0.00225302564794004 3147260 1259969 1443 577 0 False 571 427 26 {X=0,Y=0,Width=0,Height=0} +48 624 428 0.0331165399602113 0.033269163460487 0.0331120775158312 0.0332646677347982 0.00201534080424767 0.00203410542441874 3131732 1258030 1443 577 0 False 624 428 26 {X=0,Y=0,Width=0,Height=0} +49 677 428 0.0333142093270269 0.0334982603524993 0.0332799267566949 0.0334630350194553 0.00172170016064248 0.00155809512936573 3150425 1266693 1443 577 0 False 677 428 26 {X=0,Y=0,Width=0,Height=0} +50 730 428 0.0333016150823429 0.0332880719538252 0.0332799267566949 0.0332951857785916 0.00165041428326346 0.00155010219236365 3149234 1258745 1443 577 0 False 730 428 26 {X=0,Y=0,Width=0,Height=0} +51 254 478 0.0332653339291014 0.0329990761283709 0.0333104448004883 0.032974746318761 0.00206876499667539 0.00214847327152455 3145803 1247817 1443 577 0 False 254 478 26 {X=0,Y=0,Width=0,Height=0} +52 307 478 0.0333327252988503 0.0333628067820402 0.0333409628442817 0.0333409628442817 0.00170837900237201 0.001809889523703 3152176 1261571 1443 577 0 False 307 478 26 {X=0,Y=0,Width=0,Height=0} +53 360 478 0.033411875526776 0.0330859229705005 0.0334172579537652 0.0331273365377279 0.0015794253731674 0.00158026199232667 3159661 1251101 1443 577 0 False 360 478 26 {X=0,Y=0,Width=0,Height=0} +54 412 479 0.0333106880142815 0.033434500384054 0.0332799267566949 0.0333562218661784 0.00187187599015151 0.00176663101296067 3150092 1264282 1443 577 0 False 412 479 26 {X=0,Y=0,Width=0,Height=0} +55 465 479 0.0333568669114561 0.0333565656569663 0.0333867399099718 0.0334325169756619 0.00242188960342902 0.00277413245445108 3154459 1261335 1443 577 0 False 465 479 26 {X=0,Y=0,Width=0,Height=0} +56 518 479 0.0333062255699015 0.0333116348455236 0.0332341496910048 0.0332036316472114 0.00240778126235958 0.00236272188784981 3149670 1259636 1443 577 0 False 518 479 26 {X=0,Y=0,Width=0,Height=0} +57 571 480 0.033320226224781 0.033052257918725 0.033325703822385 0.0329442282749676 0.00204596249973194 0.00207269973697705 3150994 1249828 1443 577 0 False 571 480 26 {X=0,Y=0,Width=0,Height=0} +58 624 480 0.0332483935596776 0.0333465957241153 0.0332341496910048 0.0334172579537652 0.00211596941631843 0.00209721887832143 3144201 1260958 1443 577 0 False 624 480 26 {X=0,Y=0,Width=0,Height=0} +59 677 480 0.0331421937281402 0.0331971789585757 0.0330510414282445 0.0331578545815213 0.00189880317531932 0.00187139880746692 3134158 1255308 1443 577 0 False 677 480 26 {X=0,Y=0,Width=0,Height=0} +60 729 481 0.0333190524538659 0.0334144811820162 0.0333409628442817 0.0334630350194553 0.00192360378244151 0.00218965615611354 3150883 1263525 1443 577 0 False 729 481 26 {X=0,Y=0,Width=0,Height=0} +61 254 530 0.0332415835734673 0.0331408501602396 0.0332036316472114 0.0330205233844511 0.00187476130693166 0.00193784033321392 3143557 1253178 1443 577 0 False 254 530 26 {X=0,Y=0,Width=0,Height=0} +62 306 530 0.0333131624502648 0.0333338225740701 0.0333104448004883 0.0332494087129015 0.00160739245459762 0.00165096410886295 3150326 1260475 1443 577 0 False 306 530 26 {X=0,Y=0,Width=0,Height=0} +63 359 531 0.0333808710553961 0.0333826408659614 0.0333562218661784 0.0333867399099718 0.00158945654846712 0.00157497023988628 3156729 1262321 1443 577 0 False 359 531 26 {X=0,Y=0,Width=0,Height=0} +64 412 531 0.0332468708298418 0.0334308244671673 0.0332341496910048 0.0334019989318685 0.00168985940037036 0.00168747316534446 3144057 1264143 1443 577 0 False 412 531 26 {X=0,Y=0,Width=0,Height=0} +65 465 531 0.0333219815938974 0.0334402654911137 0.0333409628442817 0.0334782940413519 0.00233056921621406 0.00224466950508188 3151160 1264500 1443 577 0 False 465 531 26 {X=0,Y=0,Width=0,Height=0} +66 518 532 0.0332480974733206 0.0332970105143123 0.0332188906691081 0.0332951857785916 0.00261187351499271 0.00257233554752629 3144173 1259083 1443 577 0 False 518 532 26 {X=0,Y=0,Width=0,Height=0} +67 571 532 0.0334254532011456 0.0331953277774097 0.0333714808880751 0.0330205233844511 0.00226242333275053 0.0022886837737707 3160945 1255238 1443 577 0 False 571 532 26 {X=0,Y=0,Width=0,Height=0} +68 623 532 0.0332025001743473 0.0332855596365285 0.0331578545815213 0.033325703822385 0.00211314639782174 0.0020321167014864 3139861 1258650 1443 577 0 False 623 532 26 {X=0,Y=0,Width=0,Height=0} +69 676 533 0.0331809704663905 0.0332549622563994 0.0331578545815213 0.0332036316472114 0.00200904624569368 0.00186483975835858 3137825 1257493 1443 577 0 False 676 533 26 {X=0,Y=0,Width=0,Height=0} +70 729 533 0.033180230250498 0.0331438913864408 0.0331273365377279 0.0330968184939345 0.00203663597294427 0.00208586682641019 3137755 1253293 1443 577 0 False 729 533 26 {X=0,Y=0,Width=0,Height=0} +71 253 582 0.0330882954366589 0.0330839924529988 0.0330815594720378 0.0330205233844511 0.0019331780855545 0.00216691755338453 3129061 1251028 1443 577 0 False 253 582 26 {X=0,Y=0,Width=0,Height=0} +72 306 582 0.0332478965575784 0.0332134164619459 0.0332646677347982 0.0332188906691081 0.00159930209225129 0.00151751666748596 3144154 1255922 1443 577 0 False 306 582 26 {X=0,Y=0,Width=0,Height=0} +73 359 583 0.0333037405594055 0.0334535675500635 0.0332188906691081 0.0333867399099718 0.00178824008298989 0.00190758959339542 3149435 1265003 1443 577 0 False 359 583 26 {X=0,Y=0,Width=0,Height=0} +74 412 583 0.0333585376844704 0.0333809483574668 0.0333104448004883 0.0333562218661784 0.00190754695405797 0.00167649481467161 3154617 1262257 1443 577 0 False 412 583 26 {X=0,Y=0,Width=0,Height=0} +75 465 583 0.0334298416239364 0.0332119090715679 0.0334325169756619 0.0332646677347982 0.00233240718021687 0.00229767305564543 3161360 1255865 1443 577 0 False 465 583 26 {X=0,Y=0,Width=0,Height=0} +76 517 584 0.0332995107543059 0.0333993808327909 0.0332646677347982 0.0335545891508354 0.00236039498142514 0.00262295379143428 3149035 1262954 1443 577 0 False 517 584 26 {X=0,Y=0,Width=0,Height=0} +77 570 584 0.0331587216915667 0.0333439511795925 0.0331578545815213 0.0332799267566949 0.00199848431225986 0.0017838975066002 3135721 1260858 1443 577 0 False 570 584 26 {X=0,Y=0,Width=0,Height=0} +78 623 584 0.0332368250427303 0.0332538779931451 0.0332646677347982 0.0331425955596246 0.0019694278003492 0.00200998101399251 3143107 1257452 1443 577 0 False 623 584 26 {X=0,Y=0,Width=0,Height=0} +79 676 585 0.0332228984094399 0.0332272738752455 0.0331578545815213 0.0332036316472114 0.00167555577083687 0.00171680692501688 3141790 1256446 1443 577 0 False 676 585 26 {X=0,Y=0,Width=0,Height=0} +80 729 585 0.0331626025377456 0.0331031125098989 0.0330815594720378 0.0330510414282445 0.00212859324751418 0.00204559326709808 3136088 1251751 1443 577 0 False 729 585 26 {X=0,Y=0,Width=0,Height=0} +81 255 638 0.0331601703998133 0.0375380495119609 0.0331578545815213 0.0375677119096666 0.00197896647624415 0.00398508052047181 3135858 1842582 1443 749 0 True 253 634 31 {X=0,Y=0,Width=0,Height=0} +82 306 635 0.0332017388094294 0.0332009606572434 0.0331883726253147 0.033173113603418 0.00179479360596502 0.00160576375706609 3139789 1255451 1443 577 0 False 306 635 26 {X=0,Y=0,Width=0,Height=0} +83 359 635 0.0331549360160026 0.0332388569802554 0.0330968184939345 0.0333104448004883 0.00190793489911658 0.00197946020011807 3135363 1256884 1443 577 0 False 359 635 26 {X=0,Y=0,Width=0,Height=0} +84 411 635 0.0332772725539949 0.0332984121229094 0.0332494087129015 0.0333714808880751 0.00190674647550209 0.00196336089271942 3146932 1259136 1443 577 0 False 411 635 26 {X=0,Y=0,Width=0,Height=0} +85 464 636 0.0334098980928919 0.0332322191735031 0.0334782940413519 0.0332188906691081 0.00198425250138108 0.00204892222379115 3159474 1256633 1443 577 0 False 464 636 26 {X=0,Y=0,Width=0,Height=0} +86 517 636 0.0332842517324092 0.0331984747853919 0.0332341496910048 0.0331425955596246 0.00187677320701019 0.00178518825994155 3147592 1255357 1443 577 0 False 517 636 26 {X=0,Y=0,Width=0,Height=0} +87 570 636 0.033062853158985 0.0331510052112072 0.0330663004501411 0.0330968184939345 0.00173507976604539 0.00164288613667525 3126655 1253562 1443 577 0 False 570 636 26 {X=0,Y=0,Width=0,Height=0} +88 623 637 0.0331714216813782 0.0332338852365525 0.033173113603418 0.0332036316472114 0.0016913372568404 0.0015028073919175 3136922 1256696 1443 577 0 False 623 637 26 {X=0,Y=0,Width=0,Height=0} +89 676 637 0.0332405789947561 0.0332377727170011 0.033173113603418 0.0333104448004883 0.00159127399627429 0.00155636351361322 3143462 1256843 1443 577 0 False 676 637 26 {X=0,Y=0,Width=0,Height=0} +90 729 637 0.0331122678570607 0.0331412997328084 0.033173113603418 0.0330357824063478 0.00200219603259664 0.00192323492474659 3131328 1253195 1443 577 0 False 729 637 26 {X=0,Y=0,Width=0,Height=0} +91 255 691 0.0331866172561984 0.036609490154111 0.0331578545815213 0.0364080262455177 0.00230900723472479 0.00376660150297606 3138359 1797003 1443 749 0 True 253 687 31 {X=0,Y=0,Width=0,Height=0} +92 305 687 0.0331626448357966 0.0330268702913058 0.0331883726253147 0.0329594872968643 0.00177749486992229 0.00204445198011597 3136092 1248868 1443 577 0 False 305 687 26 {X=0,Y=0,Width=0,Height=0} +93 358 687 0.033185580953949 0.0331297959641342 0.0331578545815213 0.0330815594720378 0.0021382632688321 0.00214490232510807 3138261 1252760 1443 577 0 False 358 687 26 {X=0,Y=0,Width=0,Height=0} +94 411 688 0.0332020348957863 0.0334228379427083 0.0331273365377279 0.0334019989318685 0.0021453507029088 0.00205196695527602 3139817 1263841 1443 577 0 False 411 688 26 {X=0,Y=0,Width=0,Height=0} +95 464 688 0.0333192745186336 0.0334585921846569 0.0333714808880751 0.0333714808880751 0.00196291489042536 0.00207988752666339 3150904 1265193 1443 577 0 False 464 688 26 {X=0,Y=0,Width=0,Height=0} +96 517 688 0.0333613928029126 0.0333715073335203 0.0332799267566949 0.0332646677347982 0.00176625887616713 0.00164981704720983 3154887 1261900 1443 577 0 False 517 688 26 {X=0,Y=0,Width=0,Height=0} +97 570 689 0.0332703991207081 0.0329705414929697 0.0332494087129015 0.0329289692530709 0.00149613045665297 0.00154650155649573 3146282 1246738 1443 577 0 False 570 689 26 {X=0,Y=0,Width=0,Height=0} +98 623 689 0.0332642024562372 0.0332638479259961 0.0332341496910048 0.0333104448004883 0.0015446932215617 0.00145812121830406 3145696 1257829 1443 577 0 False 623 689 26 {X=0,Y=0,Width=0,Height=0} +99 675 689 0.0330836109275111 0.0332315580373724 0.0331120775158312 0.0331883726253147 0.00164267211243371 0.0015218036385385 3128618 1256608 1443 577 0 False 675 689 26 {X=0,Y=0,Width=0,Height=0} +100 729 692 0.0331671178546894 0.0351914161001467 0.0331273365377279 0.0350041962310216 0.00178933087174856 0.00237955962591969 3136515 1985698 1443 861 0 True 728 690 32 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C03_1.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C03_1.csv new file mode 100644 index 0000000..3fb3f1f --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C03_1.csv @@ -0,0 +1,101 @@ + ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour +1 97 229 0.235009552746791 0.926876675822966 0.234439612420844 1 0.00672146510561116 0.186548068111262 20006355 52299605 1299 861 78 True 96 231 32 {X=0,Y=0,Width=0,Height=0} +2 149 231 0.23218531806045 0.23105935561177 0.232181277180133 0.230930037384604 0.00585307358311123 0.00576967639039484 19765928 8737208 1299 577 0 False 149 231 27 {X=0,Y=0,Width=0,Height=0} +3 202 231 0.231999989662864 0.231669901605754 0.231525139238575 0.231708247501335 0.00576133115216565 0.00510347994163382 19750151 8760295 1299 577 0 False 202 231 27 {X=0,Y=0,Width=0,Height=0} +4 256 231 0.231988148943794 0.231517522950349 0.231891355764096 0.231494621194781 0.00479719306626904 0.00425742849203508 19749143 8754533 1299 577 0 False 256 231 27 {X=0,Y=0,Width=0,Height=0} +5 309 231 0.23240174009234 0.232405164319435 0.232486457618067 0.232196536202029 0.00380769123613483 0.00433490714691075 19784352 8788098 1299 577 0 False 309 231 27 {X=0,Y=0,Width=0,Height=0} +6 362 231 0.232767451507821 0.232848125527008 0.232593270771344 0.232791638056001 0.00354968475517585 0.00385433900967495 19815485 8804848 1299 577 0 False 362 231 27 {X=0,Y=0,Width=0,Height=0} +7 415 231 0.232830590262782 0.232773470035129 0.232913710231174 0.232806897077897 0.00417007957776029 0.00386055543284803 19820860 8802025 1299 577 0 False 415 231 27 {X=0,Y=0,Width=0,Height=0} +8 468 232 0.233032516811207 0.233492759699892 0.232867933165484 0.233478294041352 0.00568912654161725 0.00575885036934554 19838050 8829224 1299 577 0 False 468 232 27 {X=0,Y=0,Width=0,Height=0} +9 521 232 0.234302715853343 0.233842818058378 0.234164950026703 0.23395132372015 0.00615172005343887 0.00575657884818439 19946182 8842461 1299 577 0 False 521 232 27 {X=0,Y=0,Width=0,Height=0} +10 572 231 0.236689959874881 0.900090322421715 0.236743724727245 1 0.00564912480561646 0.2216518192923 20149408 50788168 1299 861 76 True 574 232 32 {X=0,Y=0,Width=0,Height=0} +11 96 283 0.230277540934029 0.230379945678411 0.230212863355459 0.230319676508736 0.00399958874687597 0.00382625426475535 19603519 8711517 1299 577 0 False 96 283 27 {X=0,Y=0,Width=0,Height=0} +12 149 283 0.231389264637898 0.230774643948442 0.231662470435645 0.23062485694667 0.00431296162345977 0.00425116927203745 19698160 8726442 1299 577 0 False 149 283 27 {X=0,Y=0,Width=0,Height=0} +13 202 283 0.231800365476481 0.231233525314043 0.231921873807889 0.230869001297017 0.0050005607834452 0.00500247434229179 19733157 8743794 1299 577 0 False 202 283 27 {X=0,Y=0,Width=0,Height=0} +14 255 284 0.232301845771932 0.231968285564264 0.232394903486687 0.231876096742199 0.00441451601621135 0.00455887362424416 19775848 8771578 1299 577 0 False 255 284 27 {X=0,Y=0,Width=0,Height=0} +15 309 284 0.232848504049074 0.233505109722813 0.232852674143587 0.233646143282216 0.00346934645065204 0.00350336647983219 19822385 8829691 1299 577 0 False 309 284 27 {X=0,Y=0,Width=0,Height=0} +16 362 284 0.232884918958912 0.233300051740514 0.232791638056001 0.233112077515831 0.00359782314047056 0.00370423943322844 19825485 8821937 1299 577 0 False 362 284 27 {X=0,Y=0,Width=0,Height=0} +17 415 284 0.233758418671968 0.233292038770609 0.233722438391699 0.233264667734798 0.00379945294531678 0.00360995552549402 19899846 8821634 1299 577 0 False 415 284 27 {X=0,Y=0,Width=0,Height=0} +18 468 284 0.234076226860894 0.237950615511126 0.233920805676356 0.235141527428092 0.00459664618002859 0.0199483977018852 19926901 8997792 1299 577 0 False 468 284 27 {X=0,Y=0,Width=0,Height=0} +19 521 284 0.233955623028859 0.234231777666795 0.233920805676356 0.234241245136187 0.00525293534398089 0.00568501937101436 19916634 8857169 1299 577 0 False 521 284 27 {X=0,Y=0,Width=0,Height=0} +20 574 284 0.234351699780447 0.234467300801998 0.23440909437705 0.234454871442741 0.00472706388877161 0.00428676881959504 19950352 8866075 1299 577 0 False 574 284 27 {X=0,Y=0,Width=0,Height=0} +21 96 336 0.230574134501289 0.230213471600699 0.230395971618219 0.230426489662013 0.0043351683826245 0.00450201693358392 19628768 8705222 1299 577 0 False 96 336 27 {X=0,Y=0,Width=0,Height=0} +22 149 336 0.231541161798904 0.231506019181675 0.231448844129091 0.231509880216678 0.0043973469955895 0.00421035077374379 19711091 8754098 1299 577 0 False 149 336 27 {X=0,Y=0,Width=0,Height=0} +23 202 336 0.23226498448578 0.232264527441711 0.232211795223926 0.232150759136339 0.00470753938537151 0.00442228008461566 19772710 8782780 1299 577 0 False 202 336 27 {X=0,Y=0,Width=0,Height=0} +24 255 336 0.233144862681431 0.232368907614027 0.233081559472038 0.232318608377203 0.00470875514138008 0.0047387659237267 19847614 8786727 1299 577 0 False 255 336 27 {X=0,Y=0,Width=0,Height=0} +25 308 336 0.233286551920936 0.233262869444523 0.233249408712902 0.233249408712902 0.00371764544311531 0.00347300674278143 19859676 8820531 1299 577 0 False 308 336 27 {X=0,Y=0,Width=0,Height=0} +26 362 336 0.234283216256462 0.233909936598367 0.234058136873426 0.233569848172732 0.00408472369040678 0.00437990617731229 19944522 8844999 1299 577 0 False 362 336 27 {X=0,Y=0,Width=0,Height=0} +27 415 336 0.234516753295975 0.234727576873934 0.234531166552224 0.234714274814984 0.00409010538979244 0.00391984978609127 19964403 8875917 1299 577 0 False 415 336 27 {X=0,Y=0,Width=0,Height=0} +28 468 337 0.234818386216886 0.234877443212043 0.234683756771191 0.234790569924468 0.00460676271390534 0.00467157275206069 19990081 8881584 1299 577 0 False 468 337 27 {X=0,Y=0,Width=0,Height=0} +29 521 337 0.234411467219562 0.234435804276731 0.234378576333257 0.23431754024567 0.00458994013126303 0.00464323672998989 19955440 8864884 1299 577 0 False 521 337 27 {X=0,Y=0,Width=0,Height=0} +30 574 337 0.234697970332773 0.234432101914399 0.234683756771191 0.234485389486534 0.00420299391614817 0.00439011462776051 19979830 8864744 1299 577 0 False 574 337 27 {X=0,Y=0,Width=0,Height=0} +31 96 388 0.230892741468882 0.231278403234595 0.230838483253223 0.231128404669261 0.00437293712477778 0.00496585824481538 19655891 8745491 1299 577 0 False 96 388 27 {X=0,Y=0,Width=0,Height=0} +32 149 388 0.231232727512574 0.231895957271565 0.231174181734951 0.231769283588922 0.00430786400178621 0.00445754057266553 19684834 8768843 1299 577 0 False 149 388 27 {X=0,Y=0,Width=0,Height=0} +33 202 388 0.232761742589698 0.23220007989169 0.232730601968414 0.232013427939269 0.00509357931440414 0.00484653976642785 19814999 8780343 1299 577 0 False 202 388 27 {X=0,Y=0,Width=0,Height=0} +34 255 389 0.233172397051966 0.233228675483843 0.233173113603418 0.233203631647211 0.00487829804276625 0.00520761598549737 19849958 8819238 1299 577 0 False 255 389 27 {X=0,Y=0,Width=0,Height=0} +35 308 389 0.233845931923031 0.233420828088871 0.233661402304112 0.233417257953765 0.00422548736844055 0.00404510174507221 19907296 8826504 1299 577 0 False 308 389 27 {X=0,Y=0,Width=0,Height=0} +36 361 389 0.234486352719633 0.234292231954587 0.234378576333257 0.23431754024567 0.00436152851817885 0.00428246418717972 19961815 8859455 1299 577 0 False 361 389 27 {X=0,Y=0,Width=0,Height=0} +37 415 389 0.234990734461127 0.235583721717753 0.235019455252918 0.235339894712749 0.00394152470588817 0.00402619080837519 20004753 8908291 1299 577 0 False 415 389 27 {X=0,Y=0,Width=0,Height=0} +38 468 389 0.235089595067965 0.235405743871367 0.234866865033951 0.235416189822232 0.00424953408800666 0.00425734424542243 20013169 8901561 1299 577 0 False 468 389 27 {X=0,Y=0,Width=0,Height=0} +39 521 389 0.235024764781708 0.234725487683761 0.234973678187228 0.234699015793088 0.00439403342122136 0.00410303986744775 20007650 8875838 1299 577 0 False 521 389 27 {X=0,Y=0,Width=0,Height=0} +40 574 389 0.235379093601178 0.234664768941517 0.235278858625162 0.234561684596017 0.00397363977016438 0.00350722270420571 20037814 8873542 1299 577 0 False 574 389 27 {X=0,Y=0,Width=0,Height=0} +41 96 441 0.23223157674269 0.23190695857678 0.231326771953918 0.231906614785992 0.0109307464922767 0.00560777065483034 19769866 8769259 1299 577 0 False 96 441 27 {X=0,Y=0,Width=0,Height=0} +42 149 441 0.232146917950689 0.232860925122499 0.2323338673991 0.23270008392462 0.00514352014917911 0.00469739346777891 19762659 8805332 1299 577 0 False 149 441 27 {X=0,Y=0,Width=0,Height=0} +43 202 441 0.233015777699427 0.23284196373827 0.233005264362554 0.232730601968414 0.00591740439409707 0.00646944027720477 19836625 8804615 1299 577 0 False 202 441 27 {X=0,Y=0,Width=0,Height=0} +44 255 441 0.233478435002293 0.232911197913878 0.233310444800488 0.23270008392462 0.00545583451002043 0.0062107131415624 19876011 8807233 1299 577 0 False 255 441 27 {X=0,Y=0,Width=0,Height=0} +45 308 441 0.234687057606567 0.234560653223653 0.234607461661707 0.234576943617914 0.00449419351382111 0.00435617795722347 19978901 8869605 1299 577 0 False 308 441 27 {X=0,Y=0,Width=0,Height=0} +46 361 441 0.235391874059857 0.234917243607111 0.235370412756542 0.234988937209125 0.00447011955469016 0.00521330538643195 20038902 8883089 1299 577 0 False 361 441 27 {X=0,Y=0,Width=0,Height=0} +47 414 441 0.235637827408951 0.235694263678807 0.235538261997406 0.235614557106889 0.0049221172045025 0.00486649688222248 20059840 8912471 1299 577 0 False 414 441 27 {X=0,Y=0,Width=0,Height=0} +48 468 442 0.23567488838977 0.235927195160378 0.235477225909819 0.235538261997406 0.00529486337117927 0.00551349862639631 20062995 8921279 1299 577 0 False 468 442 27 {X=0,Y=0,Width=0,Height=0} +49 521 442 0.23551226645048 0.235299776972338 0.235492484931716 0.235202563515679 0.00485766741510233 0.00514849149620869 20049151 8897554 1299 577 0 False 521 442 27 {X=0,Y=0,Width=0,Height=0} +50 574 442 0.23530393792597 0.235731075738565 0.235233081559472 0.235461966887922 0.00455011906339501 0.00460507458288393 20031416 8913863 1299 577 0 False 574 442 27 {X=0,Y=0,Width=0,Height=0} +51 95 493 0.232050030797029 0.231950620006852 0.231860837720302 0.231952391851682 0.00529893438901102 0.00531335333538228 19754411 8770910 1299 577 0 False 95 493 27 {X=0,Y=0,Width=0,Height=0} +52 149 493 0.232932575503819 0.232086734713442 0.232745860990311 0.231982909895476 0.00645794285219949 0.00530293522142892 19829542 8776057 1299 577 0 False 149 493 27 {X=0,Y=0,Width=0,Height=0} +53 202 493 0.233745168343485 0.2329213265194 0.233463035019455 0.232745860990311 0.0064363191244817 0.00610170962238957 19898718 8807616 1299 577 0 False 202 493 27 {X=0,Y=0,Width=0,Height=0} +54 255 494 0.233403643476184 0.233303172303051 0.233401998931868 0.233142595559625 0.00484475122041775 0.00492884333077094 19869644 8822055 1299 577 0 False 255 494 27 {X=0,Y=0,Width=0,Height=0} +55 308 494 0.237271071355427 0.288374621945832 0.235416189822232 0.238849469748989 0.0145943998196755 0.0933392063372024 20198878 10904510 1299 577 0 False 308 494 27 {X=0,Y=0,Width=0,Height=0} +56 361 494 0.23656929730912 0.237583526285913 0.236285954070344 0.236957351033799 0.00467771436228706 0.00561929625486252 20139136 8983911 1299 577 0 False 361 494 27 {X=0,Y=0,Width=0,Height=0} +57 414 494 0.236107685466569 0.235798749632904 0.23588921950103 0.23575188830396 0.00484683762467202 0.00445235758027898 20099839 8916422 1299 577 0 False 414 494 27 {X=0,Y=0,Width=0,Height=0} +58 467 494 0.236389807043853 0.235783966629022 0.236194399938964 0.235873960479133 0.0058725711560391 0.00640040027863537 20123856 8915863 1299 577 0 False 467 494 27 {X=0,Y=0,Width=0,Height=0} +59 521 494 0.235796807857257 0.23564880395846 0.235675593194476 0.235812924391546 0.00515085596230774 0.0050848538675272 20073374 8910752 1299 577 0 False 521 494 27 {X=0,Y=0,Width=0,Height=0} +60 574 494 0.235642009250209 0.235249927308082 0.235599298084993 0.235095750362402 0.00504024554495551 0.00504231833334183 20060196 8895669 1299 577 0 False 574 494 27 {X=0,Y=0,Width=0,Height=0} +61 95 546 0.23269571413544 0.232363380515974 0.232547493705653 0.232318608377203 0.00424674899911352 0.00379962466790273 19809378 8786518 1299 577 0 False 95 546 27 {X=0,Y=0,Width=0,Height=0} +62 148 546 0.232785318307132 0.232877585752992 0.232822156099794 0.232715342946517 0.00460044522476391 0.00419747882583428 19817006 8805962 1299 577 0 False 148 546 27 {X=0,Y=0,Width=0,Height=0} +63 202 546 0.23342582133095 0.232827022061716 0.233554589150835 0.232684824902724 0.0052544756344859 0.00557348183766879 19871532 8804050 1299 577 0 False 202 546 27 {X=0,Y=0,Width=0,Height=0} +64 255 546 0.233683086795584 0.233873230320391 0.233752956435492 0.23413443198291 0.00438669666915927 0.00420450936711722 19893433 8843611 1299 577 0 False 255 546 27 {X=0,Y=0,Width=0,Height=0} +65 308 546 0.23531902074669 0.23512219580763 0.235309376668956 0.234943160143435 0.00373088200476797 0.00375902638024811 20032700 8890839 1299 577 0 False 308 546 27 {X=0,Y=0,Width=0,Height=0} +66 361 546 0.236077390610932 0.235821968733815 0.2360265506981 0.235858701457237 0.0037410259083828 0.0035040001219631 20097260 8917300 1299 577 0 False 361 546 27 {X=0,Y=0,Width=0,Height=0} +67 414 547 0.236037616131993 0.236147750173581 0.235904478522927 0.236346990157931 0.00408909304228237 0.00384295197289937 20093874 8929619 1299 577 0 False 414 547 27 {X=0,Y=0,Width=0,Height=0} +68 467 547 0.235914897885838 0.23646620622502 0.235858701457237 0.236392767223621 0.00576346688690989 0.00554609393083115 20083427 8941661 1299 577 0 False 467 547 27 {X=0,Y=0,Width=0,Height=0} +69 520 547 0.23571636614675 0.235881391649242 0.23575188830396 0.23575188830396 0.00549029027253944 0.0056991071003456 20066526 8919547 1299 577 0 False 520 547 27 {X=0,Y=0,Width=0,Height=0} +70 574 547 0.234824459284108 0.234548118082615 0.234866865033951 0.234485389486534 0.00442270650915901 0.00412267381517127 19990598 8869131 1299 577 0 False 574 547 27 {X=0,Y=0,Width=0,Height=0} +71 95 598 0.232485576612183 0.231999226735182 0.232410162508583 0.231921873807889 0.00422135118398148 0.00433666375671144 19791489 8772748 1299 577 0 False 95 598 27 {X=0,Y=0,Width=0,Height=0} +72 148 598 0.233280032477401 0.233344506533942 0.233066300450141 0.233203631647211 0.0047121440603776 0.00465288744967927 19859121 8823618 1299 577 0 False 148 598 27 {X=0,Y=0,Width=0,Height=0} +73 201 599 0.23387062358125 0.233622527499627 0.233936064698253 0.233691920347906 0.00481199880571634 0.00505016663749621 19909398 8834131 1299 577 0 False 201 599 27 {X=0,Y=0,Width=0,Height=0} +74 255 599 0.23388138359977 0.234401583870606 0.233981841763943 0.234424353398947 0.00436433313231066 0.00506458829671463 19910314 8863590 1299 577 0 False 255 599 27 {X=0,Y=0,Width=0,Height=0} +75 308 599 0.234678188814009 0.234958419165332 0.234668497749294 0.234912642099641 0.00358977324042168 0.00347894100171838 19978146 8884646 1299 577 0 False 308 599 27 {X=0,Y=0,Width=0,Height=0} +76 361 599 0.235754543068354 0.235170538081507 0.23579766536965 0.235080491340505 0.00372898579653129 0.00390901454266872 20069776 8892667 1299 577 0 False 361 599 27 {X=0,Y=0,Width=0,Height=0} +77 414 599 0.236302540474438 0.235980958750527 0.236270695048447 0.236285954070344 0.0048466312230286 0.00398045282787388 20116427 8923312 1299 577 0 False 414 599 27 {X=0,Y=0,Width=0,Height=0} +78 467 599 0.236009235995809 0.235982704149912 0.236209658960861 0.235919737544823 0.00510385479585863 0.00498668166680596 20091458 8923378 1299 577 0 False 467 599 27 {X=0,Y=0,Width=0,Height=0} +79 520 599 0.23553438557152 0.23542629198231 0.235400930800336 0.23566033417258 0.00503872511754141 0.0052854085470096 20051034 8902338 1299 577 0 False 520 599 27 {X=0,Y=0,Width=0,Height=0} +80 573 599 0.23479508067459 0.234367125455473 0.234790569924468 0.234714274814984 0.00417721281931095 0.00439073107313444 19988097 8862287 1299 577 0 False 573 599 27 {X=0,Y=0,Width=0,Height=0} +81 96 654 0.237828430917363 0.982034895488433 0.237293049515526 1 0.00573935638922631 0.064716224398096 20246326 48203885 1299 749 87 True 95 651 31 {X=0,Y=0,Width=0,Height=0} +82 148 651 0.240628843204622 0.23408344516451 0.235477225909819 0.23404287785153 0.0248258967738021 0.00393217284334097 20484725 8851560 1299 577 0 False 148 651 27 {X=0,Y=0,Width=0,Height=0} +83 201 651 0.233695232930026 0.233708766096516 0.233676661326009 0.233844510566873 0.00449491152899033 0.00439084731799203 19894467 8837392 1299 577 0 False 201 651 27 {X=0,Y=0,Width=0,Height=0} +84 254 651 0.233825844988894 0.233467398517918 0.233966582742046 0.233066300450141 0.00436956105693865 0.00477188564488073 19905586 8828265 1299 577 0 False 254 651 27 {X=0,Y=0,Width=0,Height=0} +85 308 651 0.233881324866045 0.234360170303378 0.23399710078584 0.234302281223774 0.00348517683762129 0.00373641214127987 19910309 8862024 1299 577 0 False 308 651 27 {X=0,Y=0,Width=0,Height=0} +86 361 651 0.234746789805446 0.235091809991063 0.234790569924468 0.235095750362402 0.00371731300552207 0.00370700809802911 19983986 8889690 1299 577 0 False 361 651 27 {X=0,Y=0,Width=0,Height=0} +87 414 652 0.235457244696389 0.23491137271827 0.235263599603265 0.235019455252918 0.00441603988279925 0.00392723194145735 20044467 8882867 1299 577 0 False 414 652 27 {X=0,Y=0,Width=0,Height=0} +88 467 652 0.23559092265573 0.23534925640036 0.235614557106889 0.235507743953613 0.00463436824772434 0.00484102627834958 20055847 8899425 1299 577 0 False 467 652 27 {X=0,Y=0,Width=0,Height=0} +89 520 652 0.235121992590975 0.234229133122272 0.234927901121538 0.23436331731136 0.00470974444480177 0.00387012426456644 20015927 8857069 1299 577 0 False 520 652 27 {X=0,Y=0,Width=0,Height=0} +90 573 652 0.234788537737564 0.234473118799948 0.234683756771191 0.234454871442741 0.00379267974811975 0.0036663639755498 19987540 8866295 1299 577 0 False 573 652 27 {X=0,Y=0,Width=0,Height=0} +91 96 708 0.239465386835294 0.934182433214974 0.237811856260014 1 0.0127356511400714 0.164973946353693 20385680 52711837 1299 861 78 True 95 703 32 {X=0,Y=0,Width=0,Height=0} +92 148 703 0.235381912820004 0.233282915092006 0.234943160143435 0.233173113603418 0.00714764667441553 0.00414146788905371 20038054 8821289 1299 577 0 False 148 703 27 {X=0,Y=0,Width=0,Height=0} +93 201 704 0.233287644368232 0.233355031821143 0.233218890669108 0.233188372625315 0.00491784875942705 0.00491624290707397 19859769 8824016 1299 577 0 False 201 704 27 {X=0,Y=0,Width=0,Height=0} +94 254 704 0.233107778207121 0.233412339100953 0.233249408712902 0.233493553063249 0.0049048893592411 0.00518399270330007 19844457 8826183 1299 577 0 False 254 704 27 {X=0,Y=0,Width=0,Height=0} +95 307 704 0.233392812977193 0.23355400735104 0.233401998931868 0.233554589150835 0.00382796946034537 0.00350724160904872 19868722 8831540 1299 577 0 False 307 704 27 {X=0,Y=0,Width=0,Height=0} +96 361 704 0.234138167447855 0.23347110088025 0.23427176317998 0.233524071107042 0.0043262353654266 0.00409807648153932 19932174 8828405 1299 577 0 False 361 704 27 {X=0,Y=0,Width=0,Height=0} +97 414 704 0.234452745281876 0.234265257600454 0.23431754024567 0.23404287785153 0.00439535639087955 0.00438853458614254 19958954 8858435 1299 577 0 False 414 704 27 {X=0,Y=0,Width=0,Height=0} +98 467 704 0.2348516177588 0.234668101067616 0.234699015793088 0.234775310902571 0.0048861022989055 0.00431538347405065 19992910 8873668 1299 577 0 False 467 704 27 {X=0,Y=0,Width=0,Height=0} +99 520 704 0.234751335795804 0.234504826888777 0.234699015793088 0.234546425574121 0.00470353711829005 0.00458661419301777 19984373 8867494 1299 577 0 False 520 704 27 {X=0,Y=0,Width=0,Height=0} +100 575 708 0.238228301867621 0.932957351742696 0.238117036697948 1 0.00471572878561635 0.167725526604356 20280367 52642711 1299 861 79 True 573 705 32 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C03_2.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C03_2.csv new file mode 100644 index 0000000..8f48899 --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C03_2.csv @@ -0,0 +1,101 @@ + ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour +1 97 229 0.0236803809328478 0.144564877293804 0.0236362249179828 0.161043717097734 0.00201911811134317 0.0405969026503411 2015910 8157165 1299 861 0 True 96 231 32 {X=0,Y=0,Width=0,Height=0} +2 149 231 0.0233710891341257 0.0232800047707583 0.0233005264362554 0.0233310444800488 0.002206980013401 0.00230554896419873 1989580 880303 1299 577 0 False 149 231 27 {X=0,Y=0,Width=0,Height=0} +3 202 231 0.0232826713836896 0.023282860878843 0.0233310444800488 0.0233310444800488 0.00227958872628051 0.00211410956897827 1982053 880411 1299 577 0 False 202 231 27 {X=0,Y=0,Width=0,Height=0} +4 256 231 0.0235364950520067 0.023428046373146 0.0235599298084993 0.0235141527428092 0.00190190813216443 0.00178658007738954 2003661 885901 1299 577 0 False 256 231 27 {X=0,Y=0,Width=0,Height=0} +5 309 231 0.023430457183907 0.0235675989876155 0.023422598611429 0.0236057068741894 0.00164796612346258 0.00167335873902973 1994634 891178 1299 577 0 False 309 231 27 {X=0,Y=0,Width=0,Height=0} +6 362 231 0.0236573455656889 0.0237540393764746 0.0236514839398795 0.0236972610055695 0.00153610007449607 0.00137610061426318 2013949 898228 1299 577 0 False 362 231 27 {X=0,Y=0,Width=0,Height=0} +7 415 231 0.0235477954208016 0.0234943451043332 0.0235599298084993 0.0234531166552224 0.0016972908327945 0.00157203555167405 2004623 888408 1299 577 0 False 415 231 27 {X=0,Y=0,Width=0,Height=0} +8 468 232 0.0235115567121401 0.0236950395881704 0.0235446707866026 0.023575188830396 0.00224946830407574 0.0024582137849478 2001538 895997 1299 577 0 False 468 232 27 {X=0,Y=0,Width=0,Height=0} +9 521 232 0.0237741669457987 0.0235984608221968 0.0236820019836728 0.0234683756771191 0.00240280108640747 0.00225544815123099 2023894 892345 1299 577 0 False 521 232 27 {X=0,Y=0,Width=0,Height=0} +10 572 231 0.0239931380213771 0.148624734130152 0.02392614633402 0.168810559243153 0.00195880347780608 0.0516173851506385 2042535 8386245 1299 861 0 True 574 232 32 {X=0,Y=0,Width=0,Height=0} +11 96 283 0.0232727453840725 0.0234266976554394 0.023270008392462 0.0235141527428092 0.00160606794246844 0.00150668242633163 1981208 885850 1299 577 0 False 96 283 27 {X=0,Y=0,Width=0,Height=0} +12 149 283 0.0232875815231452 0.0235460723951997 0.0231937132829786 0.0235141527428092 0.00174709729103547 0.00158931837920801 1982471 890364 1299 577 0 False 149 283 27 {X=0,Y=0,Width=0,Height=0} +13 202 283 0.0236131543105885 0.023320757201855 0.0236362249179828 0.023270008392462 0.00189626846568717 0.0019386614798366 2010187 881844 1299 577 0 False 202 283 27 {X=0,Y=0,Width=0,Height=0} +14 255 284 0.0235429322683264 0.0235913205519852 0.0235294117647059 0.0236057068741894 0.00186882856294801 0.00187926470003268 2004209 892075 1299 577 0 False 255 284 27 {X=0,Y=0,Width=0,Height=0} +15 309 284 0.0235525528525708 0.0234883684337116 0.023575188830396 0.0235141527428092 0.00144139829758886 0.00144145629261365 2005028 888182 1299 577 0 False 309 284 27 {X=0,Y=0,Width=0,Height=0} +16 362 284 0.0235066935596649 0.023735659792041 0.0235446707866026 0.0238040741588464 0.00148970475253249 0.00141263290722606 2001124 897533 1299 577 0 False 362 284 27 {X=0,Y=0,Width=0,Height=0} +17 415 284 0.0237700085980301 0.0236929768434426 0.0237888151369497 0.0237277790493629 0.00142034833431197 0.00151954634536949 2023540 895919 1299 577 0 False 415 284 27 {X=0,Y=0,Width=0,Height=0} +18 468 284 0.0236846567480675 0.0239825809141371 0.0236514839398795 0.0237277790493629 0.00184223006381998 0.00275755775736111 2016274 906870 1299 577 0 False 468 284 27 {X=0,Y=0,Width=0,Height=0} +19 521 284 0.0236510962972909 0.023947461362874 0.023575188830396 0.0238803692683299 0.00210408433738034 0.00216469949674762 2013417 905542 1299 577 0 False 521 284 27 {X=0,Y=0,Width=0,Height=0} +20 574 284 0.023572710267178 0.0237133662817135 0.0235599298084993 0.0236514839398795 0.00183215697939335 0.0015972033187818 2006744 896690 1299 577 0 False 574 284 27 {X=0,Y=0,Width=0,Height=0} +21 96 336 0.0231629015705574 0.0233552420624327 0.0231479362172885 0.0233157854581521 0.0017790503310149 0.00183378226050992 1971857 883148 1299 577 0 False 96 336 27 {X=0,Y=0,Width=0,Height=0} +22 149 336 0.023227355960971 0.0230605075753639 0.0232089723048753 0.0229953459983215 0.00172715055698146 0.00170141931341648 1977344 872003 1299 577 0 False 149 336 27 {X=0,Y=0,Width=0,Height=0} +23 202 336 0.0234590252680123 0.023588173544003 0.0233768215457389 0.0236362249179828 0.00187833114733149 0.00182669946828706 1997066 891956 1299 577 0 False 202 336 27 {X=0,Y=0,Width=0,Height=0} +24 255 336 0.023492162835965 0.0236532557847097 0.0234836346990158 0.023575188830396 0.00191527209284057 0.0019760477231213 1999887 894417 1299 577 0 False 255 336 27 {X=0,Y=0,Width=0,Height=0} +25 308 336 0.0236267687881699 0.0236394777077458 0.0236209658960861 0.0236514839398795 0.00142082492265942 0.0014160356788978 2011346 893896 1299 577 0 False 308 336 27 {X=0,Y=0,Width=0,Height=0} +26 362 336 0.0236062119842291 0.0237335177109775 0.0236209658960861 0.0236667429617761 0.00160477026384902 0.00168626995252892 2009596 897452 1299 577 0 False 362 336 27 {X=0,Y=0,Width=0,Height=0} +27 415 336 0.0238767395240912 0.0237549649670576 0.0238651102464332 0.023773556115053 0.0016421399078785 0.00155454361256392 2032626 898263 1299 577 0 False 415 336 27 {X=0,Y=0,Width=0,Height=0} +28 468 337 0.0237673185934001 0.0236921570346405 0.0236820019836728 0.0236362249179828 0.00180827642864339 0.00179761601738241 2023311 895888 1299 577 0 False 468 337 27 {X=0,Y=0,Width=0,Height=0} +29 521 337 0.0238189807783898 0.0236614803181757 0.0237582970931563 0.0236209658960861 0.00187452083940349 0.00188116164754117 2027709 894728 1299 577 0 False 521 337 27 {X=0,Y=0,Width=0,Height=0} +30 574 337 0.0238341458263257 0.0236455866055936 0.0238651102464332 0.0235599298084993 0.00166331851550653 0.00171563316207869 2029000 894127 1299 577 0 False 574 337 27 {X=0,Y=0,Width=0,Height=0} +31 96 388 0.0233942184752455 0.023379148744919 0.0234378576333257 0.0233310444800488 0.00189018825648777 0.00191079033340979 1991549 884052 1299 577 0 False 96 388 27 {X=0,Y=0,Width=0,Height=0} +32 149 388 0.0233334643095413 0.0233728547289547 0.0233310444800488 0.0233463035019455 0.00169633344647475 0.00173751806116737 1986377 883814 1299 577 0 False 149 388 27 {X=0,Y=0,Width=0,Height=0} +33 202 388 0.0233714650299692 0.0231812839237213 0.0233157854581521 0.0231784542610819 0.00206913269406375 0.00198326098290219 1989612 876570 1299 577 0 False 202 388 27 {X=0,Y=0,Width=0,Height=0} +34 255 389 0.0236905771076025 0.0235527366473972 0.0236362249179828 0.0234836346990158 0.0019916124749566 0.00226180191663421 2016778 890616 1299 577 0 False 255 389 27 {X=0,Y=0,Width=0,Height=0} +35 308 389 0.0236464328394826 0.0236541813752927 0.0236057068741894 0.0236362249179828 0.001667299507492 0.00159315349617136 2013020 894452 1299 577 0 False 308 389 27 {X=0,Y=0,Width=0,Height=0} +36 361 389 0.0238163377607403 0.0239447374820154 0.0238193331807431 0.0239414053559167 0.00165440864297282 0.00175792269773894 2027484 905439 1299 577 0 False 361 389 27 {X=0,Y=0,Width=0,Height=0} +37 415 389 0.0237142937859777 0.0237891324822925 0.0237125200274662 0.0237888151369497 0.00157167289427152 0.0015563833844663 2018797 899555 1299 577 0 False 415 389 27 {X=0,Y=0,Width=0,Height=0} +38 468 389 0.0239069873927471 0.0238419440364133 0.0239108873121233 0.0238193331807431 0.00168782419997438 0.0016680348034966 2035201 901552 1299 577 0 False 468 389 27 {X=0,Y=0,Width=0,Height=0} +39 521 389 0.0238517189570089 0.0239322552318677 0.0238498512245365 0.0238651102464332 0.0016960869219612 0.00169330793714308 2030496 904967 1299 577 0 False 521 389 27 {X=0,Y=0,Width=0,Height=0} +40 574 389 0.0237226927087307 0.0235915585609923 0.0237277790493629 0.0235599298084993 0.00153858067935151 0.00148392184753537 2019512 892084 1299 577 0 False 574 389 27 {X=0,Y=0,Width=0,Height=0} +41 96 441 0.0234897312597274 0.0233298015441231 0.0233920805676356 0.0233005264362554 0.00227954776911534 0.00220869999278272 1999680 882186 1299 577 0 False 96 441 27 {X=0,Y=0,Width=0,Height=0} +42 149 441 0.0235961802639059 0.0232431398201101 0.0236209658960861 0.023224231326772 0.00219676708642147 0.00195863464819603 2008742 878909 1299 577 0 False 149 441 27 {X=0,Y=0,Width=0,Height=0} +43 202 441 0.0235777848610651 0.023356670116475 0.023575188830396 0.0232547493705653 0.00234551098071052 0.00246152652086528 2007176 883202 1299 577 0 False 202 441 27 {X=0,Y=0,Width=0,Height=0} +44 255 441 0.02361384736855 0.0235430311689984 0.0236514839398795 0.0234988937209125 0.00226713795740447 0.00241554675222049 2010246 890249 1299 577 0 False 255 441 27 {X=0,Y=0,Width=0,Height=0} +45 308 441 0.0235451289096618 0.0236467237597384 0.0235904478522927 0.0236209658960861 0.00181366313192512 0.00203134582598772 2004396 894170 1299 577 0 False 308 441 27 {X=0,Y=0,Width=0,Height=0} +46 361 441 0.0238499686919876 0.0237630837187426 0.0237888151369497 0.0236820019836728 0.001789698205771 0.00197286712244813 2030347 898570 1299 577 0 False 361 441 27 {X=0,Y=0,Width=0,Height=0} +47 414 441 0.023842474268608 0.0240766738082592 0.0238040741588464 0.0241092545967803 0.00196030001579302 0.00190740719241067 2029709 910428 1299 577 0 False 414 441 27 {X=0,Y=0,Width=0,Height=0} +48 468 442 0.0238050961256709 0.0239896682934582 0.0237582970931563 0.02392614633402 0.00209625786647027 0.00199403221333312 2026527 907138 1299 577 0 False 468 442 27 {X=0,Y=0,Width=0,Height=0} +49 521 442 0.0237837170495724 0.0237186024798687 0.0237277790493629 0.0236514839398795 0.00193496881588159 0.00202709821761163 2024707 896888 1299 577 0 False 521 442 27 {X=0,Y=0,Width=0,Height=0} +50 574 442 0.0237429206038085 0.0236476229048761 0.0236667429617761 0.0236667429617761 0.00183631205117946 0.00179185451351352 2021234 894204 1299 577 0 False 574 442 27 {X=0,Y=0,Width=0,Height=0} +51 95 493 0.0234029580536066 0.0235041299190677 0.0233310444800488 0.0233615625238422 0.00206051723438109 0.00207073163897019 1992293 888778 1299 577 0 False 95 493 27 {X=0,Y=0,Width=0,Height=0} +52 149 493 0.0235519655153153 0.0235226417307275 0.0234988937209125 0.0234836346990158 0.00224759979299917 0.00227787682468266 2004978 889478 1299 577 0 False 149 493 27 {X=0,Y=0,Width=0,Height=0} +53 202 493 0.0236017717145778 0.023519812068088 0.0235904478522927 0.0233768215457389 0.00231076650990485 0.00241069418742239 2009218 889371 1299 577 0 False 202 493 27 {X=0,Y=0,Width=0,Height=0} +54 255 494 0.0237489349373044 0.0237573450571281 0.0237430380712596 0.0237277790493629 0.00198788040568102 0.00190929383184378 2021746 898353 1299 577 0 False 255 494 27 {X=0,Y=0,Width=0,Height=0} +55 308 494 0.0239316555574762 0.0293908595814294 0.023773556115053 0.0250553139543755 0.00220184385617904 0.00971650473850309 2037301 1111377 1299 577 0 False 308 494 27 {X=0,Y=0,Width=0,Height=0} +56 361 494 0.0240507910463724 0.0240826504788807 0.0240634775310903 0.0240482185091936 0.0016301717325501 0.00167168332477082 2047443 910654 1299 577 0 False 361 494 27 {X=0,Y=0,Width=0,Height=0} +57 414 494 0.0238695152758491 0.0238156043729659 0.0238651102464332 0.0237430380712596 0.00184663576766115 0.00180502459136686 2032011 900556 1299 577 0 False 414 494 27 {X=0,Y=0,Width=0,Height=0} +58 467 494 0.023906658483884 0.0237160372716816 0.0238345922026398 0.0238040741588464 0.002312996923817 0.00257192619983212 2035173 896791 1299 577 0 False 467 494 27 {X=0,Y=0,Width=0,Height=0} +59 521 494 0.0239476311308245 0.0237990495242531 0.0239414053559167 0.0237430380712596 0.00206282316671229 0.00198554099212833 2038661 899930 1299 577 0 False 521 494 27 {X=0,Y=0,Width=0,Height=0} +60 574 494 0.023804567522141 0.0237938397715431 0.0238040741588464 0.0237430380712596 0.00200518193081518 0.00196775795395474 2026482 899733 1299 577 0 False 574 494 27 {X=0,Y=0,Width=0,Height=0} +61 95 546 0.0234913992975329 0.0231190049002088 0.0235141527428092 0.0231021591515984 0.00153900619201589 0.00144883839412711 1999822 874215 1299 577 0 False 95 546 27 {X=0,Y=0,Width=0,Height=0} +62 148 546 0.0234654154973516 0.0236265723304744 0.0234836346990158 0.0236820019836728 0.0018534935121879 0.00171257475828968 1997610 893408 1299 577 0 False 148 546 27 {X=0,Y=0,Width=0,Height=0} +63 202 546 0.0235539154750034 0.0235426080418748 0.0234988937209125 0.0234836346990158 0.00215930008564719 0.00216571795166266 2005144 890233 1299 577 0 False 202 546 27 {X=0,Y=0,Width=0,Height=0} +64 255 546 0.023598987735987 0.0237012278223538 0.0236209658960861 0.0237582970931563 0.00172712298217562 0.00182604898123813 2008981 896231 1299 577 0 False 255 546 27 {X=0,Y=0,Width=0,Height=0} +65 308 546 0.0238064470013585 0.0237066226931803 0.0237888151369497 0.0237277790493629 0.00143105021660712 0.00163294466255366 2026642 896435 1299 577 0 False 308 546 27 {X=0,Y=0,Width=0,Height=0} +66 361 546 0.0238234915285117 0.0239799892605047 0.0238498512245365 0.0239719233997101 0.0014640581393501 0.0013946779082157 2028093 906772 1299 577 0 False 361 546 27 {X=0,Y=0,Width=0,Height=0} +67 414 547 0.0238651337399234 0.0239822900142395 0.0238345922026398 0.0238803692683299 0.00155692572189675 0.00153188928713699 2031638 906859 1299 577 0 False 414 547 27 {X=0,Y=0,Width=0,Height=0} +68 467 547 0.0238599886655656 0.023871800944076 0.0238803692683299 0.02392614633402 0.00223103788850219 0.0022036669574562 2031200 902681 1299 577 0 False 467 547 27 {X=0,Y=0,Width=0,Height=0} +69 520 547 0.0238308097507147 0.0239369096302279 0.023773556115053 0.02392614633402 0.00225562138909531 0.00234142583378441 2028716 905143 1299 577 0 False 520 547 27 {X=0,Y=0,Width=0,Height=0} +70 574 547 0.0238382454403687 0.0238050790857651 0.0238040741588464 0.0237430380712596 0.00169274120242457 0.00162453562981925 2029349 900158 1299 577 0 False 574 547 27 {X=0,Y=0,Width=0,Height=0} +71 95 598 0.0233382569815458 0.0234227572841004 0.0233157854581521 0.023422598611429 0.00157794504605953 0.00172705767525179 1986785 885701 1299 577 0 False 95 598 27 {X=0,Y=0,Width=0,Height=0} +72 148 598 0.0235893671517426 0.0233248298004202 0.0235904478522927 0.0233463035019455 0.00184558564915939 0.00189207961065585 2008162 881998 1299 577 0 False 148 598 27 {X=0,Y=0,Width=0,Height=0} +73 201 599 0.0235296584463532 0.0238176142268033 0.0235599298084993 0.0238651102464332 0.00189819635725653 0.00206073205613439 2003079 900632 1299 577 0 False 201 599 27 {X=0,Y=0,Width=0,Height=0} +74 255 599 0.0235649221751706 0.0239206721268577 0.0235904478522927 0.0238651102464332 0.00176344552013216 0.00177208699086908 2006081 904529 1299 577 0 False 255 599 27 {X=0,Y=0,Width=0,Height=0} +75 308 599 0.0235906710404497 0.0237137365179467 0.0236209658960861 0.0236667429617761 0.00139732285974602 0.00147904091793981 2008273 896704 1299 577 0 False 308 599 27 {X=0,Y=0,Width=0,Height=0} +76 361 599 0.0238137064898359 0.0237116208823285 0.023773556115053 0.0236820019836728 0.00154678168786754 0.00146740761812627 2027260 896624 1299 577 0 False 361 599 27 {X=0,Y=0,Width=0,Height=0} +77 414 599 0.0238347918973067 0.0239300602599138 0.0237430380712596 0.0238498512245365 0.00174570788922518 0.00156952376214288 2029055 904884 1299 577 0 False 414 599 27 {X=0,Y=0,Width=0,Height=0} +78 467 599 0.0238900368395547 0.0238111879836128 0.0238956282902266 0.0238193331807431 0.0020257397859089 0.001909547207958 2033758 900389 1299 577 0 False 467 599 27 {X=0,Y=0,Width=0,Height=0} +79 520 599 0.0238630075790587 0.0241106826508227 0.0238193331807431 0.0240177004654002 0.00208252615903852 0.00209771183717801 2031457 911714 1299 577 0 False 520 599 27 {X=0,Y=0,Width=0,Height=0} +80 573 599 0.0237637945698674 0.0234220697025244 0.0236820019836728 0.0234378576333257 0.00163421650112129 0.00181009304740125 2023011 885675 1299 577 0 False 573 599 27 {X=0,Y=0,Width=0,Height=0} +81 96 654 0.0239374114625796 0.163350701930287 0.0239108873121233 0.168825818265049 0.0017900758976501 0.0259991066289261 2037791 8018186 1299 749 0 True 95 651 31 {X=0,Y=0,Width=0,Height=0} +82 148 651 0.024381450174448 0.0236072407100126 0.0239719233997101 0.0236209658960861 0.00295728901247094 0.0016455329849329 2075592 892677 1299 577 0 False 148 651 27 {X=0,Y=0,Width=0,Height=0} +83 201 651 0.0235192743236767 0.023717941343738 0.0234988937209125 0.0237582970931563 0.00187368197544291 0.00189149566950143 2002195 896863 1299 577 0 False 201 651 27 {X=0,Y=0,Width=0,Height=0} +84 254 651 0.0236336171405685 0.0236567730289251 0.0236057068741894 0.0236514839398795 0.00172741624106085 0.0019523754028778 2011929 894550 1299 577 0 False 254 651 27 {X=0,Y=0,Width=0,Height=0} +85 308 651 0.0234816729925826 0.0237481420421887 0.0234378576333257 0.0237582970931563 0.00142818963600819 0.00138547333951645 1998994 898005 1299 577 0 False 308 651 27 {X=0,Y=0,Width=0,Height=0} +86 361 651 0.0237922099462862 0.0238205761166688 0.0237277790493629 0.0238956282902266 0.00144819961312206 0.00157462864329274 2025430 900744 1299 577 0 False 361 651 27 {X=0,Y=0,Width=0,Height=0} +87 414 652 0.0238007733234708 0.0238291444409228 0.0238345922026398 0.0236820019836728 0.00169748348302751 0.00154900229821035 2026159 901068 1299 577 0 False 414 652 27 {X=0,Y=0,Width=0,Height=0} +88 467 652 0.0237936195556993 0.0239089567946216 0.0237888151369497 0.02392614633402 0.00190919175708034 0.0018530301509658 2025550 904086 1299 577 0 False 467 652 27 {X=0,Y=0,Width=0,Height=0} +89 520 652 0.0236717823154279 0.0237972247885323 0.0236667429617761 0.0236820019836728 0.00170411918361472 0.00153048633116496 2015178 899861 1299 577 0 False 520 652 27 {X=0,Y=0,Width=0,Height=0} +90 573 652 0.0237285190943048 0.0237912745633559 0.0237277790493629 0.0237888151369497 0.00150345479235511 0.00145155925043323 2020008 899636 1299 577 0 False 573 652 27 {X=0,Y=0,Width=0,Height=0} +91 96 708 0.0241974843992947 0.146860234714239 0.024124513618677 0.161821927214466 0.00225692715059991 0.0395169285318589 2059931 8286682 1299 861 0 True 95 703 32 {X=0,Y=0,Width=0,Height=0} +92 148 703 0.0237020066905936 0.0234455532578871 0.0236972610055695 0.0233920805676356 0.00184518968936886 0.00184437459472728 2017751 886563 1299 577 0 False 148 703 27 {X=0,Y=0,Width=0,Height=0} +93 201 704 0.0233889794269268 0.023456660344883 0.023422598611429 0.0235446707866026 0.00202718847901487 0.0020730095171761 1991103 886983 1299 577 0 False 201 704 27 {X=0,Y=0,Width=0,Height=0} +94 254 704 0.0236390676302992 0.0236204369871815 0.0236514839398795 0.0236057068741894 0.00192529848705705 0.00201062795244538 2012393 893176 1299 577 0 False 254 704 27 {X=0,Y=0,Width=0,Height=0} +95 307 704 0.0234636652323304 0.0233976605565788 0.0233920805676356 0.0233463035019455 0.00155429084309895 0.00141225517908317 1997461 884752 1299 577 0 False 307 704 27 {X=0,Y=0,Width=0,Height=0} +96 361 704 0.0236961450647842 0.0237995784331576 0.0236514839398795 0.0238040741588464 0.00169969538637651 0.00160160769818821 2017252 899950 1299 577 0 False 361 704 27 {X=0,Y=0,Width=0,Height=0} +97 414 704 0.0237356963555665 0.0237837640569111 0.0237582970931563 0.0238193331807431 0.00181181973509915 0.00153974936976883 2020619 899352 1299 577 0 False 414 704 27 {X=0,Y=0,Width=0,Height=0} +98 467 704 0.0238082912403406 0.0235550902920225 0.0237430380712596 0.0236362249179828 0.00191148893289021 0.00175254926132689 2026799 890705 1299 577 0 False 467 704 27 {X=0,Y=0,Width=0,Height=0} +99 520 704 0.0237999275578229 0.0237820186575261 0.0238651102464332 0.0238040741588464 0.00186518205732694 0.0019230693378997 2026087 899286 1299 577 0 False 520 704 27 {X=0,Y=0,Width=0,Height=0} +100 575 708 0.0240344630706708 0.148804865022786 0.0240329594872969 0.16401922636759 0.00151811935158965 0.0383411270600846 2046053 8396409 1299 861 0 True 573 705 32 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C03_3.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C03_3.csv new file mode 100644 index 0000000..c641fd3 --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C03_3.csv @@ -0,0 +1,101 @@ + ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour +1 97 229 0.325025083705837 0.347324190503129 0.324956130312047 0.347234302281224 0.00510072482643945 0.0113875946322403 27669374 19597988 1299 861 0 True 96 231 32 {X=0,Y=0,Width=0,Height=0} +2 149 231 0.325635374101235 0.325736932082411 0.325734340428779 0.325703822384985 0.0057390509787925 0.00603045195188622 27721328 12317317 1299 577 0 False 149 231 27 {X=0,Y=0,Width=0,Height=0} +3 202 231 0.325702095613454 0.326259890761799 0.325673304341192 0.326298924238956 0.00647065953141683 0.00579584215561168 27727008 12337092 1299 577 0 False 202 231 27 {X=0,Y=0,Width=0,Height=0} +4 256 231 0.325667372234912 0.325430297144989 0.325810635538262 0.325261310749981 0.00537890555527896 0.00525458194551402 27724052 12305722 1299 577 0 False 256 231 27 {X=0,Y=0,Width=0,Height=0} +5 309 231 0.325482149558032 0.325381875534776 0.325474937056535 0.325352864881361 0.00467266420756771 0.00438314275304513 27708284 12303891 1299 577 0 False 309 231 27 {X=0,Y=0,Width=0,Height=0} +6 362 231 0.324845346758923 0.324983210447961 0.324879835202564 0.324925612268254 0.00401879312419853 0.00424315216038022 27654073 12288816 1299 577 0 False 362 231 27 {X=0,Y=0,Width=0,Height=0} +7 415 231 0.32510186043187 0.325107398258753 0.32498664835584 0.325230792706188 0.00433367648831836 0.00409561067268919 27675910 12293512 1299 577 0 False 415 231 27 {X=0,Y=0,Width=0,Height=0} +8 468 232 0.324851830962223 0.325357730843283 0.32475776302739 0.325337605859464 0.00586615972655302 0.00531948394119882 27654625 12302978 1299 577 0 False 468 232 27 {X=0,Y=0,Width=0,Height=0} +9 521 232 0.325152582877251 0.325266044484677 0.325291828793774 0.325383382925155 0.00675935347176438 0.00721270425987752 27680228 12299511 1299 577 0 False 521 232 27 {X=0,Y=0,Width=0,Height=0} +10 572 231 0.324582912726441 0.352809108838562 0.324345769436179 0.352849622339208 0.00634912267900773 0.0158349210847111 27631732 19907478 1299 861 0 True 574 232 32 {X=0,Y=0,Width=0,Height=0} +11 96 283 0.32431351287411 0.323386328683298 0.324116884107729 0.323308155947204 0.00451486419981418 0.00430323502157353 27608798 12228432 1299 577 0 False 96 283 27 {X=0,Y=0,Width=0,Height=0} +12 149 283 0.325210964200443 0.325441033995752 0.325490196078431 0.325337605859464 0.00487373377967028 0.00448992048271504 27685198 12306128 1299 577 0 False 149 283 27 {X=0,Y=0,Width=0,Height=0} +13 202 283 0.325456882309302 0.325359158897325 0.325352864881361 0.325444419012741 0.00496190439838748 0.00477533648548815 27706133 12303032 1299 577 0 False 202 283 27 {X=0,Y=0,Width=0,Height=0} +14 255 284 0.325982490419208 0.325014521855111 0.325810635538262 0.324971389333944 0.00521022396020489 0.00478968137898668 27750878 12290000 1299 577 0 False 255 284 27 {X=0,Y=0,Width=0,Height=0} +15 309 284 0.325543467567501 0.325789267618518 0.325429159990845 0.325551232166018 0.00438255551734103 0.00403811469469989 27713504 12319296 1299 577 0 False 309 284 27 {X=0,Y=0,Width=0,Height=0} +16 362 284 0.325173398109585 0.32505902953943 0.325169756618601 0.325047684443427 0.00420685830047982 0.00420721693809942 27682000 12291683 1299 577 0 False 362 284 27 {X=0,Y=0,Width=0,Height=0} +17 415 284 0.32530159033896 0.32537769715443 0.325230792706188 0.325322346837568 0.00414065587041835 0.00376399501299998 27692913 12303733 1299 577 0 False 415 284 27 {X=0,Y=0,Width=0,Height=0} +18 468 284 0.325653299634271 0.326880724033978 0.325566491187915 0.326009002822919 0.00502462100557673 0.00912437922783447 27722854 12360568 1299 577 0 False 468 284 27 {X=0,Y=0,Width=0,Height=0} +19 521 284 0.325214182808603 0.32550273121947 0.325368123903258 0.325413900968948 0.00556532443898556 0.00551432152660318 27685472 12308461 1299 577 0 False 521 284 27 {X=0,Y=0,Width=0,Height=0} +20 574 284 0.324730369617796 0.325886533966067 0.32480354009308 0.325841153582055 0.006017671234102 0.00600309484576019 27644285 12322974 1299 577 0 False 574 284 27 {X=0,Y=0,Width=0,Height=0} +21 96 336 0.324443443621761 0.324635056161531 0.324376287479973 0.324315251392386 0.00533770354794305 0.00553403587754035 27619859 12275651 1299 577 0 False 96 336 27 {X=0,Y=0,Width=0,Height=0} +22 149 336 0.325061310667754 0.324891709207471 0.325017166399634 0.324650949874113 0.00513268845658782 0.00505550945670513 27672458 12285356 1299 577 0 False 149 336 27 {X=0,Y=0,Width=0,Height=0} +23 202 336 0.325595693596256 0.325323510437158 0.325459678034638 0.325505455100328 0.00565389833556407 0.00592983079364714 27717950 12301684 1299 577 0 False 202 336 27 {X=0,Y=0,Width=0,Height=0} +24 255 336 0.325955085262868 0.325674970404241 0.326085297932403 0.325474937056535 0.005957047188078 0.00653752068787232 27748545 12314974 1299 577 0 False 255 336 27 {X=0,Y=0,Width=0,Height=0} +25 308 336 0.326307616830337 0.326606696330523 0.326176852063783 0.326405737392233 0.00485952680547015 0.00441927066064396 27778556 12350206 1299 577 0 False 308 336 27 {X=0,Y=0,Width=0,Height=0} +26 362 336 0.326242986238747 0.326407773691516 0.326146334019989 0.326482032501717 0.00493619351281209 0.00476385062842931 27773054 12342684 1299 577 0 False 362 336 27 {X=0,Y=0,Width=0,Height=0} +27 415 336 0.326094025764019 0.326340602260636 0.325978484779126 0.326100556954299 0.00436294988244357 0.00400789946928437 27760373 12340144 1299 577 0 False 415 336 27 {X=0,Y=0,Width=0,Height=0} +28 468 337 0.32610929653266 0.326155219689586 0.326176852063783 0.32623788815137 0.00431072327395421 0.00434207349989995 27761673 12333134 1299 577 0 False 468 337 27 {X=0,Y=0,Width=0,Height=0} +29 521 337 0.326009449199233 0.325703769494095 0.326207370107576 0.325597009231708 0.00533865199850269 0.00535764526809963 27753173 12316063 1299 577 0 False 521 337 27 {X=0,Y=0,Width=0,Height=0} +30 574 337 0.325696962285841 0.32598533414944 0.325810635538262 0.326115815976196 0.00566811840671179 0.00501977406734732 27726571 12326710 1299 577 0 False 574 337 27 {X=0,Y=0,Width=0,Height=0} +31 96 388 0.32436260252192 0.324799017921946 0.324330510414282 0.32498664835584 0.00553739115237822 0.0055968041042412 27612977 12281851 1299 577 0 False 96 388 27 {X=0,Y=0,Width=0,Height=0} +32 149 388 0.325165621764322 0.324631433135535 0.325154497596704 0.324788281071183 0.00529241340348729 0.00514552987050477 27681338 12275514 1299 577 0 False 149 388 27 {X=0,Y=0,Width=0,Height=0} +33 202 388 0.325555754662885 0.325233357914375 0.325535973144121 0.325062943465324 0.00643237703583324 0.00587329155060836 27714550 12298275 1299 577 0 False 202 388 27 {X=0,Y=0,Width=0,Height=0} +34 255 389 0.326566656053482 0.325932231695421 0.326451514457923 0.325780117494469 0.00659207167359991 0.00727064324557289 27800608 12324702 1299 577 0 False 255 389 27 {X=0,Y=0,Width=0,Height=0} +35 308 389 0.326511387617744 0.326898468927726 0.326497291523613 0.327031357289998 0.00551484026602662 0.00548749147958901 27795903 12361239 1299 577 0 False 308 389 27 {X=0,Y=0,Width=0,Height=0} +36 361 389 0.326934000266534 0.326786393130849 0.326970321202411 0.326665140764477 0.00557898344782032 0.00513100086138939 27831880 12357001 1299 577 0 False 361 389 27 {X=0,Y=0,Width=0,Height=0} +37 415 389 0.326681668434845 0.326928696071622 0.326588845654994 0.327153429465171 0.00484028278263931 0.00453663796533086 27810399 12362382 1299 577 0 False 415 389 27 {X=0,Y=0,Width=0,Height=0} +38 468 389 0.32611465304843 0.326704227132524 0.326085297932403 0.32669565880827 0.00447869063394078 0.00425610615061552 27762129 12353894 1299 577 0 False 468 389 27 {X=0,Y=0,Width=0,Height=0} +39 521 389 0.32639457798438 0.326079532825343 0.326268406195163 0.326070038910506 0.00512162772050422 0.00495290954707056 27785959 12330272 1299 577 0 False 521 389 27 {X=0,Y=0,Width=0,Height=0} +40 574 389 0.325528678415409 0.326141044930944 0.325551232166018 0.326176852063783 0.00534826806115661 0.00566503618432079 27712245 12332598 1299 577 0 False 574 389 27 {X=0,Y=0,Width=0,Height=0} +41 96 441 0.324294025023974 0.324094511261066 0.324223697261006 0.324101625085832 0.00661126491442375 0.00636236017579014 27607139 12255211 1299 577 0 False 96 441 27 {X=0,Y=0,Width=0,Height=0} +42 149 441 0.325174608024331 0.325555304764583 0.325047684443427 0.325597009231708 0.00623829311260784 0.00641439169926875 27682103 12310449 1299 577 0 False 149 441 27 {X=0,Y=0,Width=0,Height=0} +43 202 441 0.32578674265871 0.325849721906309 0.325810635538262 0.325780117494469 0.00661734710481505 0.00655351542618676 27734214 12321582 1299 577 0 False 202 441 27 {X=0,Y=0,Width=0,Height=0} +44 255 441 0.326124015204282 0.327148140376126 0.326131074998093 0.327168688487068 0.00623528238103968 0.005893871617711 27762926 12370680 1299 577 0 False 255 441 27 {X=0,Y=0,Width=0,Height=0} +45 308 441 0.32715439269827 0.327682417706072 0.327107652399481 0.327672236209659 0.00486267146185384 0.00477271220272435 27850642 12390883 1299 577 0 False 308 441 27 {X=0,Y=0,Width=0,Height=0} +46 361 441 0.326692299239169 0.327274761167878 0.32664988174258 0.327168688487068 0.00472594839949463 0.00466912279491619 27811304 12375468 1299 577 0 False 361 441 27 {X=0,Y=0,Width=0,Height=0} +47 414 441 0.326823498635293 0.326760265030963 0.326787212939651 0.326634622720684 0.00552653972391163 0.00543246582208484 27822473 12356013 1299 577 0 False 414 441 27 {X=0,Y=0,Width=0,Height=0} +48 468 442 0.32619436646074 0.326672043025682 0.326268406195163 0.326482032501717 0.00623075414623026 0.00644816816806813 27768915 12352677 1299 577 0 False 468 442 27 {X=0,Y=0,Width=0,Height=0} +49 521 442 0.326006759194603 0.32547379990239 0.325978484779126 0.325642786297398 0.00566299819273266 0.00569913625975046 27752944 12307367 1299 577 0 False 521 442 27 {X=0,Y=0,Width=0,Height=0} +50 574 442 0.325828831246436 0.326375245793885 0.325963225757229 0.326253147173266 0.0055686546564977 0.00600335929881738 27737797 12341454 1299 577 0 False 574 442 27 {X=0,Y=0,Width=0,Height=0} +51 95 493 0.324219503673002 0.324270849489848 0.324071107042039 0.324147402151522 0.00520382390364551 0.00523533805316234 27600795 12261879 1299 577 0 False 95 493 27 {X=0,Y=0,Width=0,Height=0} +52 149 493 0.325035268133847 0.32541583148645 0.32494087129015 0.325337605859464 0.005530582959479 0.00552872374817211 27670241 12305175 1299 577 0 False 149 493 27 {X=0,Y=0,Width=0,Height=0} +53 202 493 0.325731474222972 0.325280166352429 0.325734340428779 0.325139238574807 0.00648286494086234 0.00665090245553341 27729509 12300045 1299 577 0 False 202 493 27 {X=0,Y=0,Width=0,Height=0} +54 255 494 0.326715076177936 0.326854913279435 0.326634622720684 0.326848249027237 0.00511705081569454 0.00510785678913435 27813243 12359592 1299 577 0 False 255 494 27 {X=0,Y=0,Width=0,Height=0} +55 308 494 0.327983959584619 0.343323496949981 0.327397573815518 0.330540932326238 0.00716818227153359 0.0272815837819975 27921263 12982330 1299 577 0 False 308 494 27 {X=0,Y=0,Width=0,Height=0} +56 361 494 0.327352501554535 0.327374513387279 0.327428091859312 0.327275501640345 0.00409931806038517 0.00406015540008201 27867507 12379240 1299 577 0 False 361 494 27 {X=0,Y=0,Width=0,Height=0} +57 414 494 0.32643771203242 0.326348218548862 0.326482032501717 0.326298924238956 0.00502420186138719 0.0047514544672401 27789631 12340432 1299 577 0 False 414 494 27 {X=0,Y=0,Width=0,Height=0} +58 467 494 0.326571096323134 0.32612210999216 0.326390478370336 0.32632944228275 0.00668351023573286 0.00695578749374323 27800986 12331882 1299 577 0 False 467 494 27 {X=0,Y=0,Width=0,Height=0} +59 521 494 0.326480716866264 0.326147788519477 0.326497291523613 0.326054779888609 0.00624907763394068 0.00576156848048173 27793292 12332853 1299 577 0 False 521 494 27 {X=0,Y=0,Width=0,Height=0} +60 574 494 0.326322711397802 0.32580865212987 0.32623788815137 0.325719081406882 0.00571386600772671 0.00551531032688981 27779841 12320029 1299 577 0 False 574 494 27 {X=0,Y=0,Width=0,Height=0} +61 95 546 0.32416544515201 0.323755507098685 0.324147402151522 0.323811703669795 0.00452679925920818 0.00423597609020838 27596193 12242392 1299 577 0 False 95 546 27 {X=0,Y=0,Width=0,Height=0} +62 148 546 0.325260394503862 0.325231824078551 0.325047684443427 0.325169756618601 0.00510274244431488 0.00489876360078727 27689406 12298217 1299 577 0 False 148 546 27 {X=0,Y=0,Width=0,Height=0} +63 202 546 0.325715557383349 0.326112483850097 0.325612268253605 0.326024261844816 0.00570513937611111 0.0052900705813357 27728154 12331518 1299 577 0 False 202 546 27 {X=0,Y=0,Width=0,Height=0} +64 255 546 0.325944724633682 0.325354028480951 0.325963225757229 0.325001907377737 0.0049739182610191 0.00587647837787844 27747663 12302838 1299 577 0 False 255 546 27 {X=0,Y=0,Width=0,Height=0} +65 308 546 0.326366021647019 0.326211786496929 0.326405737392233 0.32623788815137 0.00421120851716124 0.00409875796936229 27783528 12335273 1299 577 0 False 308 546 27 {X=0,Y=0,Width=0,Height=0} +66 361 546 0.326737359753408 0.327035429888563 0.326756694895857 0.327031357289998 0.00424691235592737 0.0042818460559312 27815140 12366418 1299 577 0 False 361 546 27 {X=0,Y=0,Width=0,Height=0} +67 414 547 0.326711563901148 0.32620313883634 0.32669565880827 0.326024261844816 0.00454684487403813 0.00485469808292073 27812944 12334946 1299 577 0 False 414 547 27 {X=0,Y=0,Width=0,Height=0} +68 467 547 0.326151690535759 0.326510540691673 0.325978484779126 0.326832990005341 0.00627906015144943 0.00611582833816227 27765282 12346570 1299 577 0 False 467 547 27 {X=0,Y=0,Width=0,Height=0} +69 520 547 0.326116485540667 0.326363424679868 0.326115815976196 0.32623788815137 0.00664067703637077 0.00710411786237432 27762285 12341007 1299 577 0 False 520 547 27 {X=0,Y=0,Width=0,Height=0} +70 574 547 0.326167325453499 0.326369718695832 0.326009002822919 0.326222629129473 0.00584909767790432 0.00553906873335436 27766613 12341245 1299 577 0 False 574 547 27 {X=0,Y=0,Width=0,Height=0} +71 95 598 0.324013183841906 0.324667108041148 0.324010070954452 0.324406805523766 0.00494276200523797 0.00581900526882934 27583231 12276863 1299 577 0 False 95 598 27 {X=0,Y=0,Width=0,Height=0} +72 148 598 0.324490700777335 0.324400247053349 0.324452582589456 0.324422064545663 0.00515924233565715 0.00498802542180163 27623882 12266772 1299 577 0 False 148 598 27 {X=0,Y=0,Width=0,Height=0} +73 201 599 0.324896022217324 0.32529888972765 0.324635690852216 0.325581750209812 0.00568297003910114 0.00537994991068534 27658387 12300753 1299 577 0 False 201 599 27 {X=0,Y=0,Width=0,Height=0} +74 255 599 0.325434845415477 0.325788553591496 0.325352864881361 0.325749599450675 0.00507756515637955 0.0055804686499345 27704257 12319269 1299 577 0 False 255 599 27 {X=0,Y=0,Width=0,Height=0} +75 308 599 0.325737559036938 0.325680973520308 0.325688563363088 0.325719081406882 0.00403538232448291 0.00376814133571543 27730027 12315201 1299 577 0 False 308 599 27 {X=0,Y=0,Width=0,Height=0} +76 361 599 0.325765633757749 0.326102963489815 0.325719081406882 0.326314183260853 0.00471828364774436 0.00503154047047101 27732417 12331158 1299 577 0 False 361 599 27 {X=0,Y=0,Width=0,Height=0} +77 414 599 0.326857364501442 0.326409651318127 0.326665140764477 0.326497291523613 0.00520302661352721 0.00483492511404251 27825356 12342755 1299 577 0 False 414 599 27 {X=0,Y=0,Width=0,Height=0} +78 467 599 0.326509097002448 0.326274647320237 0.32651255054551 0.326253147173266 0.00570062249328331 0.00559272091030838 27795708 12337650 1299 577 0 False 467 599 27 {X=0,Y=0,Width=0,Height=0} +79 520 599 0.326274408781914 0.325731219866242 0.326527809567407 0.325932707713436 0.00585170234654526 0.00582929380954414 27775729 12317101 1299 577 0 False 520 599 27 {X=0,Y=0,Width=0,Height=0} +80 573 599 0.326037770601691 0.325599389321779 0.326115815976196 0.325688563363088 0.00518784964026163 0.00524369180211175 27755584 12312116 1299 577 0 False 573 599 27 {X=0,Y=0,Width=0,Height=0} +81 96 654 0.322425446785982 0.355532989587704 0.322697795071336 0.352361333638514 0.00540909737510928 0.0146722266081703 27448067 17451591 1299 749 0 True 95 651 31 {X=0,Y=0,Width=0,Height=0} +82 148 651 0.325842293016331 0.323955672673617 0.325093461509117 0.323781185626001 0.00738224707831198 0.00510970573157012 27738943 12249961 1299 577 0 False 148 651 27 {X=0,Y=0,Width=0,Height=0} +83 201 651 0.324638815486415 0.324759719990337 0.324727244983597 0.32457465476463 0.00589721390944065 0.00644615561698014 27636491 12280365 1299 577 0 False 201 651 27 {X=0,Y=0,Width=0,Height=0} +84 254 651 0.324834093377109 0.325218522019602 0.32484931715877 0.325001907377737 0.00530163479859225 0.00519104663610163 27653115 12297714 1299 577 0 False 254 651 27 {X=0,Y=0,Width=0,Height=0} +85 308 651 0.325166831679069 0.325013543373638 0.325261310749981 0.325246051728084 0.00469798910853073 0.00439159418204077 27681441 12289963 1299 577 0 False 308 651 27 {X=0,Y=0,Width=0,Height=0} +86 361 651 0.325483112791131 0.325344084993545 0.325429159990845 0.325444419012741 0.0049636679963165 0.00544869605794506 27708366 12302462 1299 577 0 False 361 651 27 {X=0,Y=0,Width=0,Height=0} +87 414 652 0.326159537361492 0.326728927178368 0.32637521934844 0.326756694895857 0.00516446910781596 0.00517500356318612 27765950 12354828 1299 577 0 False 414 652 27 {X=0,Y=0,Width=0,Height=0} +88 467 652 0.326426200222213 0.325743569889163 0.32632944228275 0.325658045319295 0.00528562180456024 0.00514021500941714 27788651 12317568 1299 577 0 False 467 652 27 {X=0,Y=0,Width=0,Height=0} +89 520 652 0.326005936922446 0.325918506509348 0.325856412603952 0.325886930647745 0.0045077559162303 0.00421781348179385 27752874 12324183 1299 577 0 False 520 652 27 {X=0,Y=0,Width=0,Height=0} +90 573 652 0.325489138871372 0.325930274732475 0.325444419012741 0.325810635538262 0.00434929291407025 0.0042398131815555 27708879 12324628 1299 577 0 False 573 652 27 {X=0,Y=0,Width=0,Height=0} +91 96 708 0.321774947282076 0.345635117797079 0.321766994735637 0.344823376821546 0.00693267067073075 0.0143164984514357 27392690 19502681 1299 861 0 True 95 703 32 {X=0,Y=0,Width=0,Height=0} +92 148 703 0.323521077449051 0.323300090086409 0.323338673990997 0.323643854428931 0.00613775362234918 0.00586950472339251 27541338 12225171 1299 577 0 False 148 703 27 {X=0,Y=0,Width=0,Height=0} +93 201 704 0.323219127366022 0.323101061665621 0.323170824750134 0.322926680399786 0.0064238034632266 0.00725218954890826 27515633 12217645 1299 577 0 False 201 704 27 {X=0,Y=0,Width=0,Height=0} +94 254 704 0.324008285449195 0.323822995874907 0.323826962691691 0.324330510414282 0.00599725121854177 0.00683710057871649 27582814 12244944 1299 577 0 False 254 704 27 {X=0,Y=0,Width=0,Height=0} +95 307 704 0.324295199698485 0.324777597111311 0.324269474326696 0.32466620889601 0.00528197185949779 0.00526229258549583 27607239 12281041 1299 577 0 False 307 704 27 {X=0,Y=0,Width=0,Height=0} +96 361 704 0.324688938847796 0.324592849230947 0.32462043183032 0.324361028458076 0.00616078230967932 0.00574312415076525 27640758 12274055 1299 577 0 False 361 704 27 {X=0,Y=0,Width=0,Height=0} +97 414 704 0.325356811787718 0.325390523195366 0.325093461509117 0.325368123903258 0.00588611755622175 0.00586174487239551 27697614 12304218 1299 577 0 False 414 704 27 {X=0,Y=0,Width=0,Height=0} +98 467 704 0.325713360742014 0.32657739477721 0.325719081406882 0.326634622720684 0.00533377776894557 0.00565316952481356 27727967 12349098 1299 577 0 False 467 704 27 {X=0,Y=0,Width=0,Height=0} +99 520 704 0.325819997694114 0.32572180528774 0.325810635538262 0.325688563363088 0.00469914735238886 0.00492891073833705 27737045 12316745 1299 577 0 False 520 704 27 {X=0,Y=0,Width=0,Height=0} +100 575 708 0.325317448444857 0.3527256006955 0.325307087815671 0.351323720149538 0.0043269449305414 0.0133417129312117 27694263 19902766 1299 861 0 True 573 705 32 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C03_4.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C03_4.csv new file mode 100644 index 0000000..040677b --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C03_4.csv @@ -0,0 +1,101 @@ + ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour +1 97 229 0.0338813248660445 0.0363616643392671 0.0338445105668727 0.0363469901579309 0.00201463983443193 0.00223843022152697 2884316 2051730 1299 861 0 True 96 231 32 {X=0,Y=0,Width=0,Height=0} +2 149 231 0.0339799857782157 0.0343012498514097 0.0339360646982528 0.0343175402456703 0.00228674489967274 0.00214355055726678 2892715 1297057 1299 577 0 False 149 231 27 {X=0,Y=0,Width=0,Height=0} +3 202 231 0.0340816303636446 0.0341668012078693 0.0340123598077363 0.0340886549172198 0.00257191011162947 0.00251141457734479 2901368 1291973 1299 577 0 False 202 231 27 {X=0,Y=0,Width=0,Height=0} +4 256 231 0.0340424432219607 0.034146729114941 0.0340428778515297 0.0341649500267033 0.00213885114940888 0.00188901760585683 2898032 1291214 1299 577 0 False 256 231 27 {X=0,Y=0,Width=0,Height=0} +5 309 231 0.0339793632007249 0.0341748670686639 0.0339360646982528 0.0342107270923934 0.00178252512725264 0.00178219746979012 2892662 1292278 1299 577 0 False 309 231 27 {X=0,Y=0,Width=0,Height=0} +6 362 231 0.0340215222689214 0.0340473206863281 0.0340123598077363 0.0340581368734264 0.00157029210759042 0.00158158537304883 2896251 1287455 1299 577 0 False 362 231 27 {X=0,Y=0,Width=0,Height=0} +7 415 231 0.0340659719524142 0.0342003075869734 0.0340581368734264 0.0341802090486 0.00172786654225117 0.00153067433966327 2900035 1293240 1299 577 0 False 415 231 27 {X=0,Y=0,Width=0,Height=0} +8 468 232 0.0338966308749217 0.0341356220279452 0.0339971007858396 0.0340581368734264 0.00222887091717056 0.00214507742292359 2885619 1290794 1299 577 0 False 468 232 27 {X=0,Y=0,Width=0,Height=0} +9 521 232 0.0339809020243342 0.0339319392087972 0.0339208056763561 0.0337682154573892 0.00262968884480866 0.00276563310072612 2892793 1283092 1299 577 0 False 521 232 27 {X=0,Y=0,Width=0,Height=0} +10 572 231 0.0339055466544594 0.0368167943524251 0.0339360646982528 0.0368505378805219 0.00257491564858083 0.00297972597386057 2886378 2077411 1299 861 0 True 574 232 32 {X=0,Y=0,Width=0,Height=0} +11 96 283 0.0337437822275623 0.0340509437123243 0.0337376974135958 0.0341039139391165 0.00175619209336938 0.00169445349238663 2872607 1287592 1299 577 0 False 96 283 27 {X=0,Y=0,Width=0,Height=0} +12 149 283 0.0338885021273062 0.0340052459829699 0.0338445105668727 0.0340581368734264 0.00191058196413455 0.00185074760106549 2884927 1285864 1299 577 0 False 149 283 27 {X=0,Y=0,Width=0,Height=0} +13 202 283 0.0340709290788502 0.0340665729704542 0.0339665827420462 0.0339971007858396 0.0018682327038844 0.00168618921505323 2900457 1288183 1299 577 0 False 202 283 27 {X=0,Y=0,Width=0,Height=0} +14 255 284 0.0340891130402791 0.0339278137193416 0.0340581368734264 0.0338750286106661 0.00204782496251264 0.00194443263699698 2902005 1282936 1299 577 0 False 255 284 27 {X=0,Y=0,Width=0,Height=0} +15 309 284 0.0341898296328443 0.0340416613610492 0.0341649500267033 0.0340581368734264 0.00171445387954756 0.00146309929801103 2910579 1287241 1299 577 0 False 309 284 27 {X=0,Y=0,Width=0,Height=0} +16 362 284 0.0342616727259315 0.0342938980176362 0.0343022812237736 0.0342565041580835 0.00160833490637073 0.001625308876236 2916695 1296779 1299 577 0 False 362 284 27 {X=0,Y=0,Width=0,Height=0} +17 415 284 0.0341409514264454 0.0340955042875339 0.0341496910048066 0.0340886549172198 0.00156557350764374 0.00164199919601898 2906418 1289277 1299 577 0 False 415 284 27 {X=0,Y=0,Width=0,Height=0} +18 468 284 0.0341524397431621 0.0341223199689954 0.0342107270923934 0.0340733958953231 0.00196943702111643 0.00209640597770665 2907396 1290291 1299 577 0 False 468 284 27 {X=0,Y=0,Width=0,Height=0} +19 521 284 0.0340335274424229 0.0341837262928153 0.0340886549172198 0.034027618829633 0.00219087007923343 0.00210265326700973 2897273 1292613 1299 577 0 False 521 284 27 {X=0,Y=0,Width=0,Height=0} +20 574 284 0.0340203593411556 0.0340998677859966 0.034027618829633 0.0341344319829099 0.00224268298747041 0.00233305704460838 2896152 1289442 1299 577 0 False 574 284 27 {X=0,Y=0,Width=0,Height=0} +21 96 336 0.0336437351994682 0.0339084820988798 0.0336156252384222 0.0338445105668727 0.00199721321964103 0.00207975486990564 2864090 1282205 1299 577 0 False 96 336 27 {X=0,Y=0,Width=0,Height=0} +22 149 336 0.0341563631560285 0.0339696239682475 0.0340733958953231 0.0339360646982528 0.00200632888252454 0.00196478962298397 2907730 1284517 1299 577 0 False 149 336 27 {X=0,Y=0,Width=0,Height=0} +23 202 336 0.0339846962230044 0.034277078714471 0.0339208056763561 0.0342107270923934 0.00221209038406173 0.00223673022793065 2893116 1296143 1299 577 0 False 202 336 27 {X=0,Y=0,Width=0,Height=0} +24 255 336 0.0340398119510562 0.0341731216692788 0.0340123598077363 0.0341649500267033 0.00232213528866951 0.00240753785531094 2897808 1292212 1299 577 0 False 255 336 27 {X=0,Y=0,Width=0,Height=0} +25 308 336 0.0340801855139962 0.0340216157135662 0.0339665827420462 0.0339971007858396 0.00191012420745523 0.00176164541388774 2901245 1286483 1299 577 0 False 308 336 27 {X=0,Y=0,Width=0,Height=0} +26 362 336 0.0342038669932497 0.0339888233614832 0.0341954680704967 0.0340123598077363 0.00192200221104135 0.00189774719137555 2911774 1285243 1299 577 0 False 362 336 27 {X=0,Y=0,Width=0,Height=0} +27 415 336 0.0341637401119571 0.0342227597699722 0.0341496910048066 0.0342717631799802 0.00167844130059769 0.0016015941292889 2908358 1294089 1299 577 0 False 415 336 27 {X=0,Y=0,Width=0,Height=0} +28 468 337 0.0341308962126321 0.0341706622428726 0.0340886549172198 0.0341496910048066 0.00164549836038783 0.00171424749753115 2905562 1292119 1299 577 0 False 468 337 27 {X=0,Y=0,Width=0,Height=0} +29 521 337 0.0341399646998563 0.034050679257872 0.0340733958953231 0.0340428778515297 0.00195374187843192 0.00192879437268376 2906334 1287582 1299 577 0 False 521 337 27 {X=0,Y=0,Width=0,Height=0} +30 574 337 0.0341070150798253 0.0341989324238216 0.0341191729610132 0.034027618829633 0.00217161654534193 0.00208289126565101 2903529 1293188 1299 577 0 False 574 337 27 {X=0,Y=0,Width=0,Height=0} +31 96 388 0.0338911451449557 0.0337543580440896 0.0338597695887694 0.033676661326009 0.00203887566978542 0.00222562296765078 2885152 1276377 1299 577 0 False 96 388 27 {X=0,Y=0,Width=0,Height=0} +32 149 388 0.0339528273035235 0.0341571750658062 0.0339513237201495 0.0341039139391165 0.00197424443196912 0.00191110810123145 2890403 1291609 1299 577 0 False 149 388 27 {X=0,Y=0,Width=0,Height=0} +33 202 388 0.0340604392354678 0.0342143501183897 0.0340428778515297 0.0341954680704967 0.00237330609751948 0.0024725857500341 2899564 1293771 1299 577 0 False 202 388 27 {X=0,Y=0,Width=0,Height=0} +34 255 389 0.0342047832393682 0.0340690588423057 0.0342870222018769 0.0341496910048066 0.00256073854777313 0.0028200744025069 2911852 1288277 1299 577 0 False 255 389 27 {X=0,Y=0,Width=0,Height=0} +35 308 389 0.03431535535108 0.0344104166493118 0.0343175402456703 0.0344853894865339 0.0019975977806615 0.00196415217813062 2921265 1301185 1299 577 0 False 308 389 27 {X=0,Y=0,Width=0,Height=0} +36 361 389 0.0343644449988908 0.0342003604778639 0.0343938353551537 0.0342107270923934 0.00201894382249997 0.0021746655426363 2925444 1293242 1299 577 0 False 361 389 27 {X=0,Y=0,Width=0,Height=0} +37 415 389 0.0343607917611619 0.0343089719214163 0.0344548714427405 0.0342717631799802 0.00178236838794645 0.00172740229353237 2925133 1297349 1299 577 0 False 415 389 27 {X=0,Y=0,Width=0,Height=0} +38 468 389 0.0340743238881867 0.0339589400083753 0.0340123598077363 0.0339971007858396 0.00175779553858922 0.001661330561371 2900746 1284113 1299 577 0 False 468 389 27 {X=0,Y=0,Width=0,Height=0} +39 521 389 0.0339606741292564 0.0339305376002001 0.0339360646982528 0.0339818417639429 0.00190025376321538 0.00178881306528643 2891071 1283039 1299 577 0 False 521 389 27 {X=0,Y=0,Width=0,Height=0} +40 574 389 0.0341473181622946 0.0339689628321168 0.0341191729610132 0.0339818417639429 0.0020126946976083 0.00224453914291495 2906960 1284492 1299 577 0 False 574 389 27 {X=0,Y=0,Width=0,Height=0} +41 96 441 0.033900225378925 0.0336847536322488 0.0339360646982528 0.0335393301289387 0.00230742624040994 0.00245177451828018 2885925 1273745 1299 577 0 False 96 441 27 {X=0,Y=0,Width=0,Height=0} +42 149 441 0.0340031855998061 0.0340870681905061 0.0339360646982528 0.034027618829633 0.00238262912824132 0.00243756714036741 2894690 1288958 1299 577 0 False 149 441 27 {X=0,Y=0,Width=0,Height=0} +43 202 441 0.0340057228967497 0.0340658853888783 0.0339055466544594 0.0340428778515297 0.00243199394750923 0.00249619786481313 2894906 1288157 1299 577 0 False 202 441 27 {X=0,Y=0,Width=0,Height=0} +44 255 441 0.0343602279173967 0.0342484911881793 0.0342412451361868 0.0342412451361868 0.00241739421008607 0.00240129328946015 2925085 1295062 1299 577 0 False 255 441 27 {X=0,Y=0,Width=0,Height=0} +45 308 441 0.0342338329400229 0.0342813893220432 0.0341802090486 0.0341649500267033 0.00192886635520689 0.00179970157987395 2914325 1296306 1299 577 0 False 308 441 27 {X=0,Y=0,Width=0,Height=0} +46 361 441 0.0340725031426948 0.0342337081842967 0.0340123598077363 0.0341649500267033 0.00185544953956301 0.00174125821559463 2900591 1294503 1299 577 0 False 361 441 27 {X=0,Y=0,Width=0,Height=0} +47 414 441 0.0342014941507376 0.0342411129089606 0.0342259861142901 0.0343175402456703 0.00197993496261111 0.00199123677038421 2911572 1294783 1299 577 0 False 414 441 27 {X=0,Y=0,Width=0,Height=0} +48 468 442 0.0341867637323709 0.0340328814732334 0.0341039139391165 0.0339208056763561 0.00238041028874708 0.00231626559474037 2910318 1286909 1299 577 0 False 468 442 27 {X=0,Y=0,Width=0,Height=0} +49 521 442 0.0340839092321957 0.0341684672709186 0.0340581368734264 0.0341649500267033 0.00216679990208015 0.00198383785350395 2901562 1292036 1299 577 0 False 521 442 27 {X=0,Y=0,Width=0,Height=0} +50 574 442 0.0340645271027658 0.0340886020263294 0.0341344319829099 0.0341039139391165 0.00214802709896443 0.0021453026378272 2899912 1289016 1299 577 0 False 574 442 27 {X=0,Y=0,Width=0,Height=0} +51 95 493 0.0338869280634616 0.0338264483277818 0.0338902876325628 0.0337224383916991 0.00206122247585549 0.00181022760771789 2884793 1279103 1299 577 0 False 95 493 27 {X=0,Y=0,Width=0,Height=0} +52 149 493 0.0339234369472606 0.0341684143800282 0.0339513237201495 0.0340886549172198 0.00222513802695547 0.00216323202291764 2887901 1292034 1299 577 0 False 149 493 27 {X=0,Y=0,Width=0,Height=0} +53 202 493 0.0340380146990546 0.0339160983871055 0.0339818417639429 0.0338750286106661 0.0023234676363042 0.00248483187609504 2897655 1282493 1299 577 0 False 202 493 27 {X=0,Y=0,Width=0,Height=0} +54 255 494 0.034210468664001 0.0343533738239545 0.0341954680704967 0.0343480582894636 0.00198730115328552 0.00182004973467016 2912336 1299028 1299 577 0 False 255 494 27 {X=0,Y=0,Width=0,Height=0} +55 308 494 0.0344304499596587 0.0357926671805017 0.034332799267567 0.0350499732967117 0.0018605981556719 0.00315845221818593 2931063 1353453 1299 577 0 False 308 494 27 {X=0,Y=0,Width=0,Height=0} +56 361 494 0.0342752167230422 0.0342297942584029 0.0342870222018769 0.0342565041580835 0.00150333613356465 0.00163676402216596 2917848 1294355 1299 577 0 False 361 494 27 {X=0,Y=0,Width=0,Height=0} +57 414 494 0.0343516292999768 0.0343862984032637 0.0343022812237736 0.0344396124208438 0.00177565951392753 0.00180588617498603 2924353 1300273 1299 577 0 False 414 494 27 {X=0,Y=0,Width=0,Height=0} +58 467 494 0.0341069328526095 0.0340877028811916 0.034027618829633 0.0339818417639429 0.00242588729118476 0.00269150899435658 2903522 1288982 1299 577 0 False 467 494 27 {X=0,Y=0,Width=0,Height=0} +59 521 494 0.0339953622675635 0.0340033154654683 0.0339665827420462 0.0340886549172198 0.00242731383219934 0.00238182329159008 2894024 1285791 1299 577 0 False 521 494 27 {X=0,Y=0,Width=0,Height=0} +60 574 494 0.0339829107177479 0.0341327394744153 0.0339665827420462 0.0340581368734264 0.0021658641987229 0.00209573085857018 2892964 1290685 1299 577 0 False 574 494 27 {X=0,Y=0,Width=0,Height=0} +61 95 546 0.033712089509258 0.0338375554147776 0.0337224383916991 0.033829251544976 0.00179717900992546 0.00178245329208478 2869909 1279523 1299 577 0 False 95 546 27 {X=0,Y=0,Width=0,Height=0} +62 148 546 0.0340204533151165 0.0339644142155375 0.0340886549172198 0.0339208056763561 0.00191577932617431 0.00193766581124319 2896160 1284320 1299 577 0 False 148 546 27 {X=0,Y=0,Width=0,Height=0} +63 202 546 0.0339905226085785 0.0338530260002362 0.0339360646982528 0.0338445105668727 0.00216097907652337 0.00213627140575596 2893612 1280108 1299 577 0 False 202 546 27 {X=0,Y=0,Width=0,Height=0} +64 255 546 0.03411452124995 0.0340071500550264 0.0341191729610132 0.0341039139391165 0.00200809102339735 0.00226491305539852 2904168 1285936 1299 577 0 False 255 546 27 {X=0,Y=0,Width=0,Height=0} +65 308 546 0.0342151438685544 0.0344647884847011 0.0342259861142901 0.0344396124208438 0.00156216663412163 0.00156251503081414 2912734 1303241 1299 577 0 False 308 546 27 {X=0,Y=0,Width=0,Height=0} +66 361 546 0.0342759215277488 0.0341467555603863 0.0342717631799802 0.0341802090486 0.0015813623046037 0.00157792013998821 2917908 1291215 1299 577 0 False 361 546 27 {X=0,Y=0,Width=0,Height=0} +67 414 547 0.0342455326981516 0.0341414135804502 0.0342259861142901 0.0340733958953231 0.00176337551083728 0.00179289466823445 2915321 1291013 1299 577 0 False 414 547 27 {X=0,Y=0,Width=0,Height=0} +68 467 547 0.0340945165430292 0.0340137614163334 0.0340123598077363 0.033829251544976 0.00236774679846974 0.00227812763336523 2902465 1286186 1299 577 0 False 467 547 27 {X=0,Y=0,Width=0,Height=0} +69 520 547 0.034110539103358 0.0340297873561417 0.0341191729610132 0.0339055466544594 0.00267749480404788 0.0026799386906717 2903829 1286792 1299 577 0 False 520 547 27 {X=0,Y=0,Width=0,Height=0} +70 574 547 0.0339513472136398 0.0342863081748557 0.0338445105668727 0.0343480582894636 0.00219314143981144 0.00205253579203421 2890277 1296492 1299 577 0 False 574 547 27 {X=0,Y=0,Width=0,Height=0} +71 95 598 0.033692061308847 0.0336637295032924 0.0337224383916991 0.0335545891508354 0.00198169949115293 0.00202258770541211 2868204 1272950 1299 577 0 False 95 598 27 {X=0,Y=0,Width=0,Height=0} +72 148 598 0.0339844260478669 0.0340132325074289 0.0339971007858396 0.0341954680704967 0.00205949532334233 0.00202102796669046 2893093 1286166 1299 577 0 False 148 598 27 {X=0,Y=0,Width=0,Height=0} +73 201 599 0.0338638926963026 0.0337406593034614 0.0338597695887694 0.0336919203479057 0.00215158944925768 0.00216125835758153 2882832 1275859 1299 577 0 False 201 599 27 {X=0,Y=0,Width=0,Height=0} +74 255 599 0.0339966309160353 0.0338967667666437 0.0339513237201495 0.0338750286106661 0.00192576289631271 0.00208688090300313 2894132 1281762 1299 577 0 False 255 599 27 {X=0,Y=0,Width=0,Height=0} +75 308 599 0.0340661481535908 0.0343738690440064 0.0340581368734264 0.034378576333257 0.00158911072519061 0.00154730865660098 2900050 1299803 1299 577 0 False 308 599 27 {X=0,Y=0,Width=0,Height=0} +76 361 599 0.034213158668631 0.0340048493012915 0.0341954680704967 0.0338139925230793 0.00179405807309235 0.00200219523882553 2912565 1285849 1299 577 0 False 361 599 27 {X=0,Y=0,Width=0,Height=0} +77 414 599 0.0342401409421465 0.0340811973016654 0.0342412451361868 0.0340581368734264 0.00202334692174937 0.00201728505269797 2914862 1288736 1299 577 0 False 414 599 27 {X=0,Y=0,Width=0,Height=0} +78 467 599 0.0344049360292818 0.0342213581613751 0.0343938353551537 0.0341344319829099 0.00223851138073435 0.00214905364181832 2928891 1294036 1299 577 0 False 467 599 27 {X=0,Y=0,Width=0,Height=0} +79 520 599 0.0340836742972936 0.0341977952696768 0.0341496910048066 0.0342107270923934 0.00221200814042362 0.00236870455905495 2901542 1293145 1299 577 0 False 520 599 27 {X=0,Y=0,Width=0,Height=0} +80 573 599 0.0341421261009563 0.0339914150151156 0.0341344319829099 0.0339055466544594 0.00201231911685608 0.0018947676848761 2906518 1285341 1299 577 0 False 573 599 27 {X=0,Y=0,Width=0,Height=0} +81 96 654 0.0337648676350331 0.0370024150610824 0.0337376974135958 0.0368963149462119 0.00206432536949549 0.00263289168729488 2874402 1816290 1299 749 0 True 95 651 31 {X=0,Y=0,Width=0,Height=0} +82 148 651 0.0339628002901211 0.0337531415536091 0.0339665827420462 0.0338445105668727 0.0021724110821557 0.00180590077608502 2891252 1276331 1299 577 0 False 148 651 27 {X=0,Y=0,Width=0,Height=0} +83 201 651 0.0336572322095986 0.033836206697071 0.0336156252384222 0.0337529564354925 0.00221105257997692 0.00237441974981609 2865239 1279472 1299 577 0 False 201 651 27 {X=0,Y=0,Width=0,Height=0} +84 254 651 0.0338846844351457 0.0336713986824086 0.0339208056763561 0.0336461432822156 0.00198920290823507 0.00201892490859063 2884602 1273240 1299 577 0 False 254 651 27 {X=0,Y=0,Width=0,Height=0} +85 308 651 0.0341189850130915 0.0340106144083513 0.0341191729610132 0.0340428778515297 0.00173312699310259 0.00186140605424397 2904548 1286067 1299 577 0 False 308 651 27 {X=0,Y=0,Width=0,Height=0} +86 361 651 0.0340395770161541 0.0341959969794012 0.0340733958953231 0.0341191729610132 0.00197113696800729 0.00197144680057989 2897788 1293077 1299 577 0 False 361 651 27 {X=0,Y=0,Width=0,Height=0} +87 414 652 0.0341387430383649 0.0341018776398339 0.0341344319829099 0.0341496910048066 0.00195722060310275 0.00196943711268064 2906230 1289518 1299 577 0 False 414 652 27 {X=0,Y=0,Width=0,Height=0} +88 467 652 0.0341058051650791 0.0342810455312553 0.0340581368734264 0.034332799267567 0.00204644369417822 0.00194457647064501 2903426 1296293 1299 577 0 False 467 652 27 {X=0,Y=0,Width=0,Height=0} +89 520 652 0.034096536983188 0.0339816302003811 0.0341039139391165 0.0339360646982528 0.00171815027728223 0.0015399532665228 2902637 1284971 1299 577 0 False 520 652 27 {X=0,Y=0,Width=0,Height=0} +90 573 652 0.0341278420589037 0.0339750717299645 0.0341496910048066 0.0338597695887694 0.0016381451516057 0.00149892208779399 2905302 1284723 1299 577 0 False 573 652 27 {X=0,Y=0,Width=0,Height=0} +91 96 708 0.033533433262894 0.0361442985976144 0.0334782940413519 0.0360265506981002 0.0024255017814826 0.00297759042232599 2854700 2039465 1299 861 0 True 95 703 32 {X=0,Y=0,Width=0,Height=0} +92 148 703 0.0338119603361754 0.0340074674003691 0.0337682154573892 0.0340123598077363 0.002244988643079 0.00219719958418719 2878411 1285948 1299 577 0 False 148 703 27 {X=0,Y=0,Width=0,Height=0} +93 201 704 0.0337579957891443 0.0339958049590234 0.0336614023041123 0.0339665827420462 0.0025629884655072 0.0025882811250016 2873817 1285507 1299 577 0 False 201 704 27 {X=0,Y=0,Width=0,Height=0} +94 254 704 0.0338929776371927 0.0339742519211624 0.0338445105668727 0.0340886549172198 0.002327092187835 0.00263607132521368 2885308 1284692 1299 577 0 False 254 704 27 {X=0,Y=0,Width=0,Height=0} +95 307 704 0.0336518404535935 0.0341609038735834 0.033676661326009 0.0341954680704967 0.00204354768929622 0.00207963639114113 2864780 1291750 1299 577 0 False 307 704 27 {X=0,Y=0,Width=0,Height=0} +96 361 704 0.0340315070022641 0.0337021282897638 0.0339971007858396 0.0336156252384222 0.00232106875548999 0.00231388452221036 2897101 1274402 1299 577 0 False 361 704 27 {X=0,Y=0,Width=0,Height=0} +97 414 704 0.0340947749714216 0.0340422696062895 0.0341496910048066 0.034027618829633 0.00228069339108536 0.00221772788141848 2902487 1287264 1299 577 0 False 414 704 27 {X=0,Y=0,Width=0,Height=0} +98 467 704 0.0341132760949684 0.0338976923572267 0.0341802090486 0.0338750286106661 0.00210985925819778 0.00222508241100689 2904062 1281797 1299 577 0 False 467 704 27 {X=0,Y=0,Width=0,Height=0} +99 520 704 0.0340724091687339 0.0339782980742823 0.0340886549172198 0.0339513237201495 0.00185314831017182 0.0017442690961685 2900583 1284845 1299 577 0 False 520 704 27 {X=0,Y=0,Width=0,Height=0} +100 575 708 0.0338302617650554 0.0367969274958093 0.0338139925230793 0.0367132066834516 0.00165413556125515 0.0020444110098808 2879969 2076290 1299 861 0 True 573 705 32 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C04_1.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C04_1.csv new file mode 100644 index 0000000..37ffd23 --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C04_1.csv @@ -0,0 +1,101 @@ + ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour +1 238 197 0.241898926586498 0.925105105153004 0.239978637369345 1 0.0121941177603478 0.17330021431468 22875657 52199643 1443 861 73 True 237 199 32 {X=0,Y=0,Width=0,Height=0} +2 290 199 0.235829262013744 0.234708298144363 0.235416189822232 0.234393835355154 0.00561528538597549 0.00486578318918482 22301667 8875188 1443 577 0 False 290 199 26 {X=0,Y=0,Width=0,Height=0} +3 343 199 0.234423888120386 0.23427115493474 0.2341802090486 0.234119172961013 0.00466442558689507 0.00421221541423013 22168765 8858658 1443 577 0 False 343 199 26 {X=0,Y=0,Width=0,Height=0} +4 395 199 0.234343077693959 0.234883578555336 0.234424353398947 0.234744792858778 0.00484706859094161 0.00483706826060575 22161123 8881816 1443 577 0 False 395 199 26 {X=0,Y=0,Width=0,Height=0} +5 448 199 0.234891683415373 0.23499650060646 0.234576943617914 0.235095750362402 0.00540146510514504 0.00540672897205613 22213003 8886086 1443 577 0 False 448 199 26 {X=0,Y=0,Width=0,Height=0} +6 501 199 0.23547715188823 0.235291446657091 0.235431448844129 0.235400930800336 0.0057687275752549 0.00586063633813772 22268369 8897239 1443 577 0 False 501 199 26 {X=0,Y=0,Width=0,Height=0} +7 554 199 0.235568261890075 0.235589354597587 0.235568780041199 0.235690852216373 0.00526530256509526 0.00608609582236331 22276985 8908504 1443 577 0 False 554 199 26 {X=0,Y=0,Width=0,Height=0} +8 606 200 0.235888595604778 0.235748291723409 0.235919737544823 0.23584344243534 0.00466218002518577 0.0049560582486839 22307278 8914514 1443 577 0 False 606 200 26 {X=0,Y=0,Width=0,Height=0} +9 659 200 0.236574881482183 0.236460361781624 0.236392767223621 0.236285954070344 0.0040500973312586 0.00368787974761154 22372178 8941440 1443 577 0 False 659 200 26 {X=0,Y=0,Width=0,Height=0} +10 711 198 0.240940304707757 0.921361328055945 0.239795529106584 1 0.00838090081189725 0.180317491478598 22785003 51988398 1443 861 74 True 712 200 32 {X=0,Y=0,Width=0,Height=0} +11 237 251 0.234978785676886 0.234471849418577 0.235004196231022 0.234592202639811 0.00490139986102342 0.00486148406705484 22221240 8866247 1443 577 0 False 237 251 26 {X=0,Y=0,Width=0,Height=0} +12 290 251 0.234703520535519 0.234929408511916 0.234744792858778 0.234821087968261 0.00406318680233773 0.003994745358226 22195209 8883549 1443 577 0 False 290 251 26 {X=0,Y=0,Width=0,Height=0} +13 343 251 0.23463232234118 0.23506710994522 0.234470130464637 0.235004196231022 0.00374063815867373 0.00325913779006179 22188476 8888756 1443 577 0 False 343 251 26 {X=0,Y=0,Width=0,Height=0} +14 395 251 0.235106367173202 0.234653635409076 0.234912642099641 0.234668497749294 0.00382696214197305 0.00337422102046558 22233305 8873121 1443 577 0 False 395 251 26 {X=0,Y=0,Width=0,Height=0} +15 448 251 0.235725356851473 0.237396980115273 0.235599298084993 0.23611810482948 0.0051000563879813 0.00735362818794315 22291841 8976857 1443 577 0 False 448 251 26 {X=0,Y=0,Width=0,Height=0} +16 501 251 0.235860647167582 0.235167867091539 0.23584344243534 0.235309376668956 0.006074626887542 0.00609643110337406 22304635 8892566 1443 577 0 False 501 251 26 {X=0,Y=0,Width=0,Height=0} +17 553 252 0.23625954951201 0.236061141340459 0.236301213092241 0.236133363851377 0.00507724098320504 0.00469610795779304 22342358 8926344 1443 577 0 False 553 252 26 {X=0,Y=0,Width=0,Height=0} +18 606 252 0.236399122505783 0.236187153886971 0.236331731136034 0.236057068741894 0.00417756003165065 0.00405667759426737 22355557 8931109 1443 577 0 False 606 252 26 {X=0,Y=0,Width=0,Height=0} +19 659 252 0.236327596501549 0.23678143593214 0.236392767223621 0.236896314946212 0.00378988535781057 0.00337025893587792 22348793 8953581 1443 577 0 False 659 252 26 {X=0,Y=0,Width=0,Height=0} +20 711 252 0.23665853645254 0.237045387920964 0.236667429617761 0.236896314946212 0.00399805070071991 0.0038541506378769 22380089 8963562 1443 577 0 False 711 252 26 {X=0,Y=0,Width=0,Height=0} +21 237 303 0.234390620703278 0.235818451489599 0.23422598611429 0.235385671778439 0.00487716320354178 0.00563425080016598 22165619 8917167 1443 577 0 False 237 303 26 {X=0,Y=0,Width=0,Height=0} +22 290 303 0.234819279726581 0.235544159331692 0.234836346990158 0.235538261997406 0.00383136361970253 0.00349704228544257 22206156 8906795 1443 577 0 False 290 303 26 {X=0,Y=0,Width=0,Height=0} +23 343 303 0.235404071430622 0.234824287867134 0.235324635690852 0.234500648508431 0.00388941689049153 0.00364487039625614 22261458 8879574 1443 577 0 False 343 303 26 {X=0,Y=0,Width=0,Height=0} +24 395 303 0.23512086483018 0.23450575247936 0.235233081559472 0.234454871442741 0.00401630207653089 0.00380101551079555 22234676 8867529 1443 577 0 False 395 303 26 {X=0,Y=0,Width=0,Height=0} +25 448 303 0.235762547412811 0.23551208100663 0.235721370260166 0.235690852216373 0.00402784148036007 0.00380459076235133 22295358 8905582 1443 577 0 False 448 303 26 {X=0,Y=0,Width=0,Height=0} +26 501 303 0.236653587580573 0.236552180367457 0.236636911573968 0.236316472114137 0.00522436029936155 0.00503673237216922 22379621 8944912 1443 577 0 False 501 303 26 {X=0,Y=0,Width=0,Height=0} +27 553 304 0.237202468239319 0.236848739590246 0.237247272449836 0.236942092011902 0.00450465482283361 0.00455881400787883 22431527 8956126 1443 577 0 False 553 304 26 {X=0,Y=0,Width=0,Height=0} +28 606 304 0.237107466816782 0.237390368753966 0.237064164187076 0.237811856260014 0.00424977184313806 0.00480077628474831 22422543 8976607 1443 577 0 False 606 304 26 {X=0,Y=0,Width=0,Height=0} +29 659 304 0.236972736949848 0.237324281586341 0.237079423208972 0.237155718318456 0.00359087781846326 0.00326415003878154 22409802 8974108 1443 577 0 False 659 304 26 {X=0,Y=0,Width=0,Height=0} +30 711 304 0.236748208320651 0.236831893841636 0.236896314946212 0.236728465705348 0.00380537550363851 0.00352406869450853 22388569 8955489 1443 577 0 False 711 304 26 {X=0,Y=0,Width=0,Height=0} +31 237 355 0.234662195339696 0.234813313007364 0.234500648508431 0.235034714274815 0.0051109416609948 0.00506009155607383 22191301 8879159 1443 577 0 False 237 355 26 {X=0,Y=0,Width=0,Height=0} +32 290 355 0.235540768156927 0.235163001129617 0.235492484931716 0.235156786449989 0.00370617519627108 0.00372597108474743 22274385 8892382 1443 577 0 False 290 355 26 {X=0,Y=0,Width=0,Height=0} +33 342 355 0.236120018816288 0.235970380572435 0.235858701457237 0.235950255588617 0.00653225044198619 0.00403199573904749 22329163 8922912 1443 577 0 False 342 355 26 {X=0,Y=0,Width=0,Height=0} +34 395 355 0.235642325777368 0.235323895218386 0.235568780041199 0.235111009384298 0.00403338132714226 0.00391324798863654 22283989 8898466 1443 577 0 False 395 355 26 {X=0,Y=0,Width=0,Height=0} +35 448 355 0.236341491411301 0.236568259198156 0.236377508201724 0.236575875486381 0.00435286063931999 0.00375813781151471 22350107 8945520 1443 577 0 False 448 355 26 {X=0,Y=0,Width=0,Height=0} +36 500 356 0.237720206958019 0.236967506084766 0.237659266041047 0.236789501792935 0.00466013196693815 0.00472878508018801 22480488 8960617 1443 577 0 False 500 356 26 {X=0,Y=0,Width=0,Height=0} +37 553 356 0.237927626025589 0.237446697552302 0.237842374303807 0.237232013427939 0.00473297973330362 0.00417543096185482 22500103 8978737 1443 577 0 False 553 356 26 {X=0,Y=0,Width=0,Height=0} +38 606 356 0.238033931602254 0.237564247556342 0.238056000610361 0.237430380712596 0.0041470467592846 0.00420157221112871 22510156 8983182 1443 577 0 False 606 356 26 {X=0,Y=0,Width=0,Height=0} +39 658 356 0.237592625461703 0.238078743693257 0.237628747997253 0.238101777676051 0.00368959550296989 0.00406102018533001 22468423 9002637 1443 577 0 False 658 356 26 {X=0,Y=0,Width=0,Height=0} +40 711 356 0.237145016911554 0.236937490504432 0.237125200274662 0.237018387121386 0.00339943125568136 0.00314445936819503 22426094 8959482 1443 577 0 False 711 356 26 {X=0,Y=0,Width=0,Height=0} +41 237 407 0.23535109312175 0.234499802254183 0.235385671778439 0.234241245136187 0.00555166813525831 0.0058409391594897 22256448 8867304 1443 577 0 False 237 407 26 {X=0,Y=0,Width=0,Height=0} +42 290 407 0.236241139285314 0.236254669108639 0.235675593194476 0.236285954070344 0.00631196416974449 0.00413851609200476 22340617 8933662 1443 577 0 False 290 407 26 {X=0,Y=0,Width=0,Height=0} +43 342 407 0.235631931031336 0.235718461261191 0.235568780041199 0.235736629282063 0.00437378398099215 0.00474852578518104 22283006 8913386 1443 577 0 False 342 407 26 {X=0,Y=0,Width=0,Height=0} +44 395 407 0.236540778678568 0.236337469797649 0.236575875486381 0.236133363851377 0.00453913801041857 0.00423001140298916 22368953 8936793 1443 577 0 False 395 407 26 {X=0,Y=0,Width=0,Height=0} +45 448 407 0.237169412312466 0.237435590465306 0.236957351033799 0.237476157778286 0.00417720567681158 0.00416239399896041 22428401 8978317 1443 577 0 False 448 407 26 {X=0,Y=0,Width=0,Height=0} +46 500 408 0.237975052715268 0.238023287594614 0.238117036697948 0.237994964522774 0.00451983197299634 0.00483031093849873 22504588 9000540 1443 577 0 False 500 408 26 {X=0,Y=0,Width=0,Height=0} +47 553 408 0.238538631946734 0.238282585185076 0.238605325398642 0.238254367895018 0.00429895605829876 0.00408120550916022 22557884 9010345 1443 577 0 False 553 408 26 {X=0,Y=0,Width=0,Height=0} +48 606 408 0.238414920722085 0.238955357311683 0.238300144960708 0.238345922026398 0.00407376073938265 0.00657570277514979 22546185 9035785 1443 577 0 False 606 408 26 {X=0,Y=0,Width=0,Height=0} +49 658 408 0.238079793264046 0.238142450770812 0.238086518654154 0.238101777676051 0.00390393671770451 0.00379862181686028 22514493 9005046 1443 577 0 False 658 408 26 {X=0,Y=0,Width=0,Height=0} +50 711 408 0.237307007872355 0.237192213032871 0.237293049515526 0.237140459296559 0.00399174061288891 0.0038906831550758 22441413 8969114 1443 577 0 False 711 408 26 {X=0,Y=0,Width=0,Height=0} +51 237 459 0.235045627171972 0.234898599568225 0.234836346990158 0.234653238727398 0.00620117616540553 0.00585005302654198 22227561 8882384 1443 577 0 False 237 459 26 {X=0,Y=0,Width=0,Height=0} +52 289 459 0.235232478812245 0.235913866655983 0.235217822537575 0.236011291676204 0.00501994515155438 0.00453050378879051 22245231 8920775 1443 577 0 False 289 459 26 {X=0,Y=0,Width=0,Height=0} +53 342 459 0.235967111361939 0.23628957709634 0.23588921950103 0.236408026245518 0.00430776032046573 0.00447839796103583 22314703 8934982 1443 577 0 False 342 459 26 {X=0,Y=0,Width=0,Height=0} +54 395 459 0.237315118523633 0.237056071880836 0.237247272449836 0.236774242771038 0.00480298365383451 0.00508400731554606 22442180 8963966 1443 577 0 False 395 459 26 {X=0,Y=0,Width=0,Height=0} +55 447 460 0.238468438331107 0.238339918910331 0.238529030289158 0.238254367895018 0.00536445612969311 0.00567068807909339 22551246 9012513 1443 577 0 False 447 460 26 {X=0,Y=0,Width=0,Height=0} +56 500 460 0.241008415144373 0.238668688685409 0.238925764858473 0.238529030289158 0.0161636718880384 0.00538266690529372 22791444 9024945 1443 577 0 False 500 460 26 {X=0,Y=0,Width=0,Height=0} +57 553 460 0.238865077729807 0.238692701149676 0.238818951705196 0.238452735179675 0.0049948288026864 0.0048543675417649 22588755 9025853 1443 577 0 False 553 460 26 {X=0,Y=0,Width=0,Height=0} +58 605 460 0.238818518150173 0.239214469784029 0.238635843442435 0.239154650186923 0.00491422401191274 0.00512544589395704 22584352 9045583 1443 577 0 False 605 460 26 {X=0,Y=0,Width=0,Height=0} +59 658 460 0.237844679547586 0.238107251883213 0.238025482566567 0.238162813763638 0.00448555510092913 0.00449650336606083 22492259 9003715 1443 577 0 False 658 460 26 {X=0,Y=0,Width=0,Height=0} +60 711 460 0.23672777836202 0.237169073268296 0.236713206683452 0.236804760814832 0.00483905631198709 0.00506517455866613 22386637 8968239 1443 577 0 False 711 460 26 {X=0,Y=0,Width=0,Height=0} +61 237 511 0.235560140664283 0.235102123714702 0.235385671778439 0.235156786449989 0.00551692966177866 0.005298729082494 22276217 8890080 1443 577 0 False 237 511 26 {X=0,Y=0,Width=0,Height=0} +62 289 511 0.235612759439722 0.235702884893952 0.235553521019303 0.235858701457237 0.00399342853730811 0.00376228600922837 22281193 8912797 1443 577 0 False 289 511 26 {X=0,Y=0,Width=0,Height=0} +63 342 511 0.236598970222225 0.237135117316623 0.236667429617761 0.237033646143282 0.00369631657651761 0.00419385479206893 22374456 8966955 1443 577 0 False 342 511 26 {X=0,Y=0,Width=0,Height=0} +64 395 511 0.237571582181333 0.237295720505494 0.237491416800183 0.237354085603113 0.00422632457794358 0.0038728226689366 22466433 8973028 1443 577 0 False 395 511 26 {X=0,Y=0,Width=0,Height=0} +65 447 512 0.238292087181993 0.238261455274339 0.238406958113985 0.238422217135882 0.0054708135317021 0.00579231667251152 22534569 9009546 1443 577 0 False 447 512 26 {X=0,Y=0,Width=0,Height=0} +66 500 512 0.238667069978583 0.239154306396135 0.238590066376745 0.238971541924163 0.00574983927451582 0.00561199962339958 22570030 9043308 1443 577 0 False 500 512 26 {X=0,Y=0,Width=0,Height=0} +67 553 512 0.239304829416983 0.239471096384524 0.23921568627451 0.239505607690547 0.00473020577764257 0.0049405382036666 22630341 9055287 1443 577 0 False 553 512 26 {X=0,Y=0,Width=0,Height=0} +68 605 512 0.239143303734743 0.241006571825366 0.239093614099336 0.239780270084688 0.00475550697755772 0.0100450344480118 22615066 9113349 1443 577 0 False 605 512 26 {X=0,Y=0,Width=0,Height=0} +69 658 512 0.237483824300029 0.237775070645701 0.237384603646906 0.237857633325704 0.00435387065810022 0.0040782456712198 22458134 8991154 1443 577 0 False 658 512 26 {X=0,Y=0,Width=0,Height=0} +70 711 512 0.236629911246528 0.236671660888998 0.236652170595865 0.236499580376898 0.00417957999028495 0.00369736923617653 22377382 8949430 1443 577 0 False 711 512 26 {X=0,Y=0,Width=0,Height=0} +71 236 563 0.235927668429385 0.235633359818447 0.235965514610513 0.235461966887922 0.00522952581786786 0.00470919380400414 22310973 8910168 1443 577 0 False 236 563 26 {X=0,Y=0,Width=0,Height=0} +72 289 563 0.235563958063386 0.234704860236483 0.235461966887922 0.234607461661707 0.0039208545338956 0.00327700405471519 22276578 8875058 1443 577 0 False 289 563 26 {X=0,Y=0,Width=0,Height=0} +73 342 563 0.236661201229752 0.23688446738675 0.236697947661555 0.237018387121386 0.00380520532172184 0.0038305145646762 22380341 8957477 1443 577 0 False 342 563 26 {X=0,Y=0,Width=0,Height=0} +74 394 564 0.237678342462046 0.237769411320422 0.23764400701915 0.237811856260014 0.00377147662660206 0.00347506367034502 22476529 8990940 1443 577 0 False 394 564 26 {X=0,Y=0,Width=0,Height=0} +75 447 564 0.238628906562072 0.238622990956054 0.238742656595712 0.238742656595712 0.00468430331482407 0.0049263211554072 22566421 9023217 1443 577 0 False 447 564 26 {X=0,Y=0,Width=0,Height=0} +76 500 564 0.238805099093495 0.239239566511551 0.238925764858473 0.238956282902266 0.00605165078342814 0.00638991031526383 22583083 9046532 1443 577 0 False 500 564 26 {X=0,Y=0,Width=0,Height=0} +77 552 564 0.238967565907369 0.23948281171676 0.23907835507744 0.239414053559167 0.00481545039664039 0.00489812358841784 22598447 9055730 1443 577 0 False 552 564 26 {X=0,Y=0,Width=0,Height=0} +78 605 564 0.238854598387672 0.312522116656412 0.238712138551919 0.242877851529717 0.00420847423119381 0.198348884948875 22587764 11817616 1443 577 5 False 605 564 26 {X=0,Y=0,Width=0,Height=0} +79 658 564 0.237215369144872 0.236790850510642 0.237140459296559 0.236835278858625 0.00359817850105649 0.00356024927975199 22432747 8953937 1443 577 0 False 658 564 26 {X=0,Y=0,Width=0,Height=0} +80 710 564 0.236624021242927 0.236526237385688 0.236636911573968 0.236484321355001 0.00389988396451653 0.0040393499758479 22376825 8943931 1443 577 0 False 710 564 26 {X=0,Y=0,Width=0,Height=0} +81 237 619 0.24501082592179 0.932934223956895 0.243335622186618 1 0.00896667423035094 0.146579536281132 23169940 52641406 1443 861 73 True 236 615 32 {X=0,Y=0,Width=0,Height=0} +82 289 615 0.238764873646998 0.237173119421416 0.237109941252766 0.237186236362249 0.00725247383413023 0.0039874168358825 22579279 8968392 1443 577 0 False 289 615 26 {X=0,Y=0,Width=0,Height=0} +83 342 615 0.236498047072549 0.236522191232568 0.236530098420691 0.236545357442588 0.00351006916291061 0.00359838867137146 22364912 8943778 1443 577 0 False 342 615 26 {X=0,Y=0,Width=0,Height=0} +84 394 616 0.237212778389249 0.23711218911561 0.237247272449836 0.237003128099489 0.00390247103076414 0.00407053854413565 22432502 8966088 1443 577 0 False 394 616 26 {X=0,Y=0,Width=0,Height=0} +85 447 616 0.238194272939066 0.237498530624949 0.238101777676051 0.237293049515526 0.0048662252264689 0.00474352199103855 22525319 8980697 1443 577 0 False 447 616 26 {X=0,Y=0,Width=0,Height=0} +86 500 616 0.238424839615043 0.239134287194097 0.238437476157778 0.239047837033646 0.00513180314176615 0.00511185014928717 22547123 9042551 1443 577 0 False 500 616 26 {X=0,Y=0,Width=0,Height=0} +87 552 616 0.238936973841986 0.237914332360273 0.23907835507744 0.237903410391394 0.00448357286986754 0.00429919780319591 22595554 8996420 1443 577 0 False 552 616 26 {X=0,Y=0,Width=0,Height=0} +88 605 616 0.237650425748389 0.237564379783568 0.237582970931563 0.237521934843976 0.00381170951042192 0.00405785621300077 22473889 8983187 1443 577 0 False 605 616 26 {X=0,Y=0,Width=0,Height=0} +89 658 616 0.237095930023373 0.236971578683332 0.237125200274662 0.237109941252766 0.00370975376136452 0.00357362307259508 22421452 8960771 1443 577 0 False 658 616 26 {X=0,Y=0,Width=0,Height=0} +90 710 616 0.236794048833417 0.236564636172159 0.236758983749142 0.236392767223621 0.0038263425977345 0.00344176448149492 22392904 8945383 1443 577 0 False 710 616 26 {X=0,Y=0,Width=0,Height=0} +91 238 673 0.244582981135968 0.983668222007156 0.243442435339895 1 0.00879392405449217 0.0613396522700743 23129480 48284058 1443 749 86 True 236 667 31 {X=0,Y=0,Width=0,Height=0} +92 289 667 0.237793149946961 0.236200403055031 0.237170977340352 0.23607232776379 0.00525895346157537 0.00364314985852578 22487386 8931610 1443 577 0 False 289 667 26 {X=0,Y=0,Width=0,Height=0} +93 341 668 0.23638899212257 0.236235813506191 0.236438544289311 0.236301213092241 0.00372629402808793 0.00386599539859462 22354599 8932949 1443 577 0 False 341 668 26 {X=0,Y=0,Width=0,Height=0} +94 394 668 0.23646346841586 0.236634954611021 0.236438544289311 0.236575875486381 0.00398006294312456 0.00392798013735369 22361642 8948042 1443 577 0 False 394 668 26 {X=0,Y=0,Width=0,Height=0} +95 447 668 0.237449594602261 0.237521987734867 0.237277790493629 0.237262531471733 0.00469504270242129 0.00459687490951598 22454897 8981584 1443 577 0 False 447 668 26 {X=0,Y=0,Width=0,Height=0} +96 500 668 0.2378558885311 0.238244424407612 0.237872892347601 0.238254367895018 0.00461641730687275 0.00432330512285943 22493319 9008902 1443 577 0 False 500 668 26 {X=0,Y=0,Width=0,Height=0} +97 552 668 0.237459048216659 0.237288606680728 0.237277790493629 0.237354085603113 0.00387274190013335 0.00335557215806035 22455791 8972759 1443 577 0 False 552 668 26 {X=0,Y=0,Width=0,Height=0} +98 605 668 0.237098563077048 0.236619060898439 0.237033646143282 0.236606393530175 0.00375175841259097 0.00394084261161154 22421701 8947441 1443 577 0 False 605 668 26 {X=0,Y=0,Width=0,Height=0} +99 658 668 0.237295915208481 0.236910119468621 0.237293049515526 0.236926832990005 0.00377281652442446 0.00379696368279654 22440364 8958447 1443 577 0 False 658 668 26 {X=0,Y=0,Width=0,Height=0} +100 712 672 0.240313415868463 0.936824069414549 0.240161745632105 1 0.00450237429596242 0.145745168086792 22725720 52860893 1443 861 75 True 710 669 32 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C04_2.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C04_2.csv new file mode 100644 index 0000000..9f58c2a --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C04_2.csv @@ -0,0 +1,101 @@ + ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour +1 238 197 0.024539827606891 0.145063799459235 0.0244144350347143 0.16429388876173 0.00262213553590643 0.0472725961196193 2320658 8185317 1443 861 0 True 237 199 32 {X=0,Y=0,Width=0,Height=0} +2 290 199 0.0238844087322 0.0236135347259769 0.0238345922026398 0.0235904478522927 0.00186520053724047 0.00179824778924419 2258677 892915 1443 577 0 False 290 199 26 {X=0,Y=0,Width=0,Height=0} +3 343 199 0.0236168312616012 0.0238655598190021 0.0236057068741894 0.0239414053559167 0.00170381836591554 0.00169524119052282 2233373 902445 1443 577 0 False 343 199 26 {X=0,Y=0,Width=0,Height=0} +4 395 199 0.0237288470751506 0.023485856116415 0.023773556115053 0.0234073395895323 0.00197056259500065 0.00190963112046968 2243966 888087 1443 577 0 False 395 199 26 {X=0,Y=0,Width=0,Height=0} +5 448 199 0.0237843421180569 0.0237721809519012 0.0237125200274662 0.0238803692683299 0.00223139477478185 0.00206493863070131 2249214 898914 1443 577 0 False 448 199 26 {X=0,Y=0,Width=0,Height=0} +6 501 199 0.0238853921618856 0.023890921000976 0.0237582970931563 0.0238345922026398 0.00249223087923786 0.00236516392751273 2258770 903404 1443 577 0 False 501 199 26 {X=0,Y=0,Width=0,Height=0} +7 554 199 0.0238015679993249 0.0238812155225772 0.0238193331807431 0.0238956282902266 0.00218892183102357 0.00220326865387419 2250843 903037 1443 577 0 False 554 199 26 {X=0,Y=0,Width=0,Height=0} +8 606 200 0.0238464673804569 0.0238318947672265 0.0238345922026398 0.0237888151369497 0.00188458066028696 0.00206423701542087 2255089 901172 1443 577 0 False 606 200 26 {X=0,Y=0,Width=0,Height=0} +9 659 200 0.0237844901612354 0.0238594773665996 0.0237582970931563 0.0238193331807431 0.00160636780044272 0.00150898171667981 2249228 902215 1443 577 0 False 659 200 26 {X=0,Y=0,Width=0,Height=0} +10 711 198 0.0242495572319331 0.153800289531522 0.024124513618677 0.17589074540322 0.00185992811904903 0.0519214670000362 2293208 8678279 1443 861 0 True 712 200 32 {X=0,Y=0,Width=0,Height=0} +11 237 251 0.0237174266013817 0.0238549287500203 0.0237582970931563 0.0238651102464332 0.001897828727648 0.00205409605516147 2242886 902043 1443 577 0 False 237 251 26 {X=0,Y=0,Width=0,Height=0} +12 290 251 0.0237053187842842 0.0237218288241866 0.0236972610055695 0.0235446707866026 0.00156034514746817 0.0014817826608592 2241741 897010 1443 577 0 False 290 251 26 {X=0,Y=0,Width=0,Height=0} +13 343 251 0.0236131619056774 0.0237077334018799 0.0235904478522927 0.0236820019836728 0.00139144089891074 0.00144151602540931 2233026 896477 1443 577 0 False 343 251 26 {X=0,Y=0,Width=0,Height=0} +14 395 251 0.0236495488040464 0.0236378909810321 0.0236667429617761 0.0236972610055695 0.00141476844404787 0.00134411556698985 2236467 893836 1443 577 0 False 395 251 26 {X=0,Y=0,Width=0,Height=0} +15 448 251 0.0238218287657519 0.0240366354041836 0.0238193331807431 0.0239566643778134 0.00190833235143566 0.0019458844256533 2252759 908914 1443 577 0 False 448 251 26 {X=0,Y=0,Width=0,Height=0} +16 501 251 0.0239500764563708 0.0237617878919265 0.0240482185091936 0.0235904478522927 0.00227268769092296 0.00246047203533852 2264887 898521 1443 577 0 False 501 251 26 {X=0,Y=0,Width=0,Height=0} +17 553 252 0.0239950815826302 0.0238801841502133 0.02392614633402 0.0239108873121233 0.00216433158726095 0.00192077616831074 2269143 902998 1443 577 0 False 553 252 26 {X=0,Y=0,Width=0,Height=0} +18 606 252 0.0238340740515151 0.0240975921554347 0.0237582970931563 0.024078736552987 0.00166283462820202 0.00165621379948434 2253917 911219 1443 577 0 False 606 252 26 {X=0,Y=0,Width=0,Height=0} +19 659 252 0.0239152651604013 0.0240388568215828 0.0238956282902266 0.0240482185091936 0.00152141353934019 0.00142229155118966 2261595 908998 1443 577 0 False 659 252 26 {X=0,Y=0,Width=0,Height=0} +20 711 252 0.0238797665211032 0.0238986695164278 0.0238803692683299 0.0239414053559167 0.00147076881804318 0.00157753475356158 2258238 903697 1443 577 0 False 711 252 26 {X=0,Y=0,Width=0,Height=0} +21 237 303 0.0237302217618079 0.0237439107709522 0.0237125200274662 0.0236820019836728 0.00190912355241725 0.00195774009283101 2244096 897845 1443 577 0 False 237 303 26 {X=0,Y=0,Width=0,Height=0} +22 290 303 0.0237560129984026 0.0236840118375102 0.0237888151369497 0.0236057068741894 0.00154696243622463 0.00137642664895288 2246535 895580 1443 577 0 False 290 303 26 {X=0,Y=0,Width=0,Height=0} +23 343 303 0.0238252654823953 0.023757212829902 0.0238193331807431 0.0236972610055695 0.00153628240263819 0.00159835849949561 2253084 898348 1443 577 0 False 343 303 26 {X=0,Y=0,Width=0,Height=0} +24 395 303 0.0237588892658703 0.0239387608113939 0.0237582970931563 0.02392614633402 0.00158365433139187 0.00150652537814805 2246807 905213 1443 577 0 False 395 303 26 {X=0,Y=0,Width=0,Height=0} +25 448 303 0.0237870597678334 0.0238835691672025 0.0237430380712596 0.0239414053559167 0.00168566242328064 0.00164266344951767 2249471 903126 1443 577 0 False 448 303 26 {X=0,Y=0,Width=0,Height=0} +26 501 303 0.0238590299016026 0.0238046295131962 0.0237888151369497 0.0237888151369497 0.00200984070386435 0.00212959314546612 2256277 900141 1443 577 0 False 501 303 26 {X=0,Y=0,Width=0,Height=0} +27 553 304 0.0240019867394553 0.0239341857493694 0.0240482185091936 0.0238803692683299 0.00179655783931029 0.00188553448198653 2269796 905040 1443 577 0 False 553 304 26 {X=0,Y=0,Width=0,Height=0} +28 606 304 0.0239827411262522 0.0238883293473436 0.0239566643778134 0.0238651102464332 0.00176698839980714 0.0018514947057131 2267976 903306 1443 577 0 False 606 304 26 {X=0,Y=0,Width=0,Height=0} +29 659 304 0.0238902775867756 0.0238966067717 0.0238803692683299 0.0239414053559167 0.00139511846860538 0.0014305780922193 2259232 903619 1443 577 0 False 659 304 26 {X=0,Y=0,Width=0,Height=0} +30 711 304 0.0238663791879631 0.0237997106603838 0.0238651102464332 0.023773556115053 0.00147018182702321 0.00142476329449567 2256972 899955 1443 577 0 False 711 304 26 {X=0,Y=0,Width=0,Height=0} +31 237 355 0.0237562773612213 0.0238901805285096 0.0236820019836728 0.0238651102464332 0.00199985013545713 0.00199458458250924 2246560 903376 1443 577 0 False 237 355 26 {X=0,Y=0,Width=0,Height=0} +32 290 355 0.0238360514853992 0.023741345562765 0.0238498512245365 0.0237582970931563 0.00155709513513128 0.00144929776091225 2254104 897748 1443 577 0 False 290 355 26 {X=0,Y=0,Width=0,Height=0} +33 342 355 0.0238514056779106 0.0238491900884058 0.0238651102464332 0.0238651102464332 0.00165400041616821 0.00157263317361305 2255556 901826 1443 577 0 False 342 355 26 {X=0,Y=0,Width=0,Height=0} +34 395 355 0.0238641268167476 0.0238165564089942 0.0239108873121233 0.0238040741588464 0.00158682891910875 0.00156793171620953 2256759 900592 1443 577 0 False 395 355 26 {X=0,Y=0,Width=0,Height=0} +35 448 355 0.0239848454542893 0.0238397226190141 0.0239719233997101 0.0238040741588464 0.00164048759884276 0.00165548767298203 2268175 901468 1443 577 0 False 448 355 26 {X=0,Y=0,Width=0,Height=0} +36 500 356 0.0240354127742546 0.0239909641202744 0.0240177004654002 0.02392614633402 0.00175847165917178 0.00189304701688857 2272957 907187 1443 577 0 False 500 356 26 {X=0,Y=0,Width=0,Height=0} +37 553 356 0.0241208125392149 0.0241528631359617 0.0240634775310903 0.0241550316624704 0.0016756915321091 0.00152203683362313 2281033 913309 1443 577 0 False 553 356 26 {X=0,Y=0,Width=0,Height=0} +38 606 356 0.0239990787484493 0.0240060644694997 0.0239719233997101 0.0238956282902266 0.00160679700070864 0.00177963445728073 2269521 907758 1443 577 0 False 606 356 26 {X=0,Y=0,Width=0,Height=0} +39 658 356 0.0239418494854521 0.0239799628150595 0.0239108873121233 0.02392614633402 0.00152463900536362 0.00149316078331032 2264109 906771 1443 577 0 False 658 356 26 {X=0,Y=0,Width=0,Height=0} +40 711 356 0.0238654486308412 0.0241157866217517 0.0237888151369497 0.0241855497062638 0.00135666937639512 0.00142442386990844 2256884 911907 1443 577 0 False 711 356 26 {X=0,Y=0,Width=0,Height=0} +41 237 407 0.0237523859405297 0.0240786043257608 0.0236820019836728 0.0239414053559167 0.00216680793456087 0.0022916321560492 2246192 910501 1443 577 0 False 237 407 26 {X=0,Y=0,Width=0,Height=0} +42 290 407 0.0238133268575017 0.0238472860163494 0.0237125200274662 0.0238193331807431 0.00195153682786703 0.00165508810235253 2251955 901754 1443 577 0 False 290 407 26 {X=0,Y=0,Width=0,Height=0} +43 342 407 0.0237325375801 0.023600682239596 0.0236820019836728 0.0234836346990158 0.00169249739436076 0.00179992500982996 2244315 892429 1443 577 0 False 342 407 26 {X=0,Y=0,Width=0,Height=0} +44 395 407 0.0239134463442085 0.0241363082872488 0.02392614633402 0.0240177004654002 0.001702017885204 0.00181597274502998 2261423 912683 1443 577 0 False 395 407 26 {X=0,Y=0,Width=0,Height=0} +45 448 407 0.0239202457559061 0.0239895625116773 0.02392614633402 0.0240634775310903 0.00174367008397213 0.00167719415185332 2262066 907134 1443 577 0 False 448 407 26 {X=0,Y=0,Width=0,Height=0} +46 500 408 0.0240389975340765 0.0242626910699946 0.0239719233997101 0.0241702906843671 0.00187776982869845 0.00189317370367311 2273296 917462 1443 577 0 False 500 408 26 {X=0,Y=0,Width=0,Height=0} +47 553 408 0.0240615318207445 0.0239955127368537 0.0240482185091936 0.0240024414435035 0.00166538257940638 0.00148294256741096 2275427 907359 1443 577 0 False 553 408 26 {X=0,Y=0,Width=0,Height=0} +48 606 408 0.0240629276564273 0.0241411213582804 0.0240177004654002 0.0241702906843671 0.00159934685220633 0.00169497599475067 2275559 912865 1443 577 0 False 606 408 26 {X=0,Y=0,Width=0,Height=0} +49 658 408 0.0240408163502693 0.0239533586971599 0.0239719233997101 0.0238956282902266 0.00156112295613918 0.0016424922539189 2273468 905765 1443 577 0 False 658 408 26 {X=0,Y=0,Width=0,Height=0} +50 711 408 0.0239578487232413 0.0240937311204314 0.0239871824216068 0.0241397726405737 0.00159993428133273 0.00154965335634492 2265622 911073 1443 577 0 False 711 408 26 {X=0,Y=0,Width=0,Height=0} +51 237 459 0.0237781348790733 0.0237240237961405 0.0236972610055695 0.0236362249179828 0.00244107750107307 0.00247066154677782 2248627 897093 1443 577 0 False 237 459 26 {X=0,Y=0,Width=0,Height=0} +52 289 459 0.0239199073714981 0.0238585253305714 0.0238803692683299 0.0238040741588464 0.00202854275686884 0.00187374326722693 2262034 902179 1443 577 0 False 289 459 26 {X=0,Y=0,Width=0,Height=0} +53 342 459 0.0237838662649832 0.023932175895532 0.0237582970931563 0.0238956282902266 0.00173860354703027 0.00172118065371106 2249169 904964 1443 577 0 False 342 459 26 {X=0,Y=0,Width=0,Height=0} +54 395 459 0.0239893396222076 0.0241031192534874 0.0240177004654002 0.0240634775310903 0.00188897005672815 0.00184852000652729 2268600 911428 1443 577 0 False 395 459 26 {X=0,Y=0,Width=0,Height=0} +55 447 460 0.0241750703641296 0.0240568926152284 0.0240329594872969 0.0239566643778134 0.00215864536988956 0.00225090879436278 2286164 909680 1443 577 0 False 447 460 26 {X=0,Y=0,Width=0,Height=0} +56 500 460 0.0243153941483079 0.0243080714540063 0.024078736552987 0.024277103837644 0.00272134819174039 0.00227229571319314 2299434 919178 1443 577 0 False 500 460 26 {X=0,Y=0,Width=0,Height=0} +57 553 460 0.0241131354429592 0.0241895694139385 0.0240482185091936 0.0240482185091936 0.00199074920168291 0.00193802810337428 2280307 914697 1443 577 0 False 553 460 26 {X=0,Y=0,Width=0,Height=0} +58 605 460 0.02412952593772 0.0243414984967748 0.0241550316624704 0.0241855497062638 0.00195966142947259 0.00209794267517166 2281857 920442 1443 577 0 False 605 460 26 {X=0,Y=0,Width=0,Height=0} +59 658 460 0.0239020152959269 0.0240341230868869 0.0238803692683299 0.02392614633402 0.00174640222468373 0.00176371414098191 2260342 908819 1443 577 0 False 658 460 26 {X=0,Y=0,Width=0,Height=0} +60 711 460 0.0238971827436007 0.0240661749665035 0.0239108873121233 0.0240939955748837 0.00194466957475743 0.00207380679635224 2259885 910031 1443 577 0 False 711 460 26 {X=0,Y=0,Width=0,Height=0} +61 237 511 0.0238639893480818 0.0239253529706631 0.0238345922026398 0.0239108873121233 0.00205650166014126 0.00216763487202481 2256746 904706 1443 577 0 False 237 511 26 {X=0,Y=0,Width=0,Height=0} +62 289 511 0.023702844348301 0.0238439803356958 0.0237277790493629 0.0238193331807431 0.00162658463912895 0.0014917246087415 2241507 901629 1443 577 0 False 289 511 26 {X=0,Y=0,Width=0,Height=0} +63 342 511 0.023891186994872 0.0238337459483925 0.0238803692683299 0.0238345922026398 0.00149497825365251 0.00153288818808628 2259318 901242 1443 577 0 False 342 511 26 {X=0,Y=0,Width=0,Height=0} +64 395 511 0.0239680637025567 0.0242528004734793 0.0239566643778134 0.0241397726405737 0.00154139287413775 0.00156266197346387 2266588 917088 1443 577 0 False 395 511 26 {X=0,Y=0,Width=0,Height=0} +65 447 512 0.0241274533332212 0.0240567603880023 0.0240634775310903 0.0239414053559167 0.00220495009444926 0.00232807435795754 2281661 909675 1443 577 0 False 447 512 26 {X=0,Y=0,Width=0,Height=0} +66 500 512 0.0242056412804868 0.0242778972010009 0.0241550316624704 0.0241092545967803 0.0023312548916171 0.00213382684804852 2289055 918037 1443 577 0 False 500 512 26 {X=0,Y=0,Width=0,Height=0} +67 553 512 0.0242882916721324 0.024167381685392 0.0242923628595407 0.0240939955748837 0.0019395506632921 0.00186455750666713 2296871 913858 1443 577 0 False 553 512 26 {X=0,Y=0,Width=0,Height=0} +68 605 512 0.0241293884690543 0.0242858837254598 0.0240177004654002 0.0242618448157473 0.00190913494982056 0.00212614515911592 2281844 918339 1443 577 0 False 605 512 26 {X=0,Y=0,Width=0,Height=0} +69 658 512 0.0239718388036081 0.0240608065411222 0.0239719233997101 0.0240634775310903 0.00172410125442918 0.00170431339277509 2266945 909828 1443 577 0 False 658 512 26 {X=0,Y=0,Width=0,Height=0} +70 711 512 0.024019223195236 0.0238305460495199 0.0240177004654002 0.0238193331807431 0.00166530541024908 0.00155181117946883 2271426 901121 1443 577 0 False 711 512 26 {X=0,Y=0,Width=0,Height=0} +71 236 563 0.0238706830146519 0.0238318154308908 0.02392614633402 0.0236514839398795 0.00207358263252941 0.00201767525869627 2257379 901169 1443 577 0 False 236 563 26 {X=0,Y=0,Width=0,Height=0} +72 289 563 0.0238131682398105 0.0239990035356238 0.0238040741588464 0.02392614633402 0.00160776565101378 0.00151329576264629 2251940 907491 1443 577 0 False 289 563 26 {X=0,Y=0,Width=0,Height=0} +73 342 563 0.0239562519718162 0.0237296566759741 0.0239414053559167 0.0237125200274662 0.00146056863608118 0.00149654139648978 2265471 897306 1443 577 0 False 342 563 26 {X=0,Y=0,Width=0,Height=0} +74 394 564 0.0240580739550756 0.0240581091057089 0.024078736552987 0.0240177004654002 0.00150569704238193 0.00148904452270281 2275100 909726 1443 577 0 False 394 564 26 {X=0,Y=0,Width=0,Height=0} +75 447 564 0.0240937629356032 0.0241463840018808 0.0240482185091936 0.0242160677500572 0.0018362872172675 0.00193230195895247 2278475 913064 1443 577 0 False 447 564 26 {X=0,Y=0,Width=0,Height=0} +76 500 564 0.0241792155731272 0.02432356848491 0.0240939955748837 0.0242618448157473 0.00230646023988809 0.00244231644613343 2286556 919764 1443 577 0 False 500 564 26 {X=0,Y=0,Width=0,Height=0} +77 552 564 0.0242422396691108 0.0241464897836617 0.0242618448157473 0.0240482185091936 0.00183258464707108 0.00177281706125341 2292516 913068 1443 577 0 False 552 564 26 {X=0,Y=0,Width=0,Height=0} +78 605 564 0.0241006046453517 0.0420635698256941 0.0241092545967803 0.0247959105821317 0.00162189732049614 0.0659765117398421 2279122 1590579 1443 577 0 False 605 564 26 {X=0,Y=0,Width=0,Height=0} +79 658 564 0.0239732346392909 0.0239931590922284 0.0238956282902266 0.0240024414435035 0.00150579023486618 0.00137786149634064 2267077 907270 1443 577 0 False 658 564 26 {X=0,Y=0,Width=0,Height=0} +80 710 564 0.0237654031657236 0.0238925341731349 0.0237277790493629 0.0239108873121233 0.00164706701043786 0.00165464242357771 2247423 903465 1443 577 0 False 710 564 26 {X=0,Y=0,Width=0,Height=0} +81 237 619 0.0248074896735918 0.144686754522125 0.0248264286259251 0.161318379491875 0.00203055425381197 0.0439770089298206 2345970 8164042 1443 861 0 True 236 615 32 {X=0,Y=0,Width=0,Height=0} +82 289 615 0.0241739494657783 0.024115813067197 0.0240939955748837 0.0240634775310903 0.00164075107572273 0.00150697353319785 2286058 911908 1443 577 0 False 289 615 26 {X=0,Y=0,Width=0,Height=0} +83 342 615 0.0238417194242326 0.0240171715564956 0.0238040741588464 0.024124513618677 0.00146586511822344 0.00146978074716191 2254640 908178 1443 577 0 False 342 615 26 {X=0,Y=0,Width=0,Height=0} +84 394 616 0.023931116355012 0.0239043023962615 0.0239414053559167 0.0238803692683299 0.00162601196323854 0.001507054685761 2263094 903910 1443 577 0 False 394 616 26 {X=0,Y=0,Width=0,Height=0} +85 447 616 0.024078313572477 0.0241963658933622 0.0240177004654002 0.0241550316624704 0.00179739458746561 0.00184062649834433 2277014 914954 1443 577 0 False 447 616 26 {X=0,Y=0,Width=0,Height=0} +86 500 616 0.0242171463503576 0.0241069538430455 0.0242008087281605 0.0238956282902266 0.00194472071771704 0.0020280650189037 2290143 911573 1443 577 0 False 500 616 26 {X=0,Y=0,Width=0,Height=0} +87 552 616 0.0241910378783805 0.0241420469488634 0.0242160677500572 0.0241855497062638 0.00168944323612546 0.00165814226858485 2287674 912900 1443 577 0 False 552 616 26 {X=0,Y=0,Width=0,Height=0} +88 605 616 0.0238392661372748 0.0240601454049915 0.0238651102464332 0.0240329594872969 0.00158976782336392 0.00159800329028521 2254408 909803 1443 577 0 False 605 616 26 {X=0,Y=0,Width=0,Height=0} +89 658 616 0.0239431290014948 0.0238473124617946 0.0239719233997101 0.0238956282902266 0.00146758885426144 0.00134001910055957 2264230 901755 1443 577 0 False 658 616 26 {X=0,Y=0,Width=0,Height=0} +90 710 616 0.0238157695699467 0.0236546838387521 0.0238498512245365 0.0235904478522927 0.00143184749792657 0.00150123544088439 2252186 894471 1443 577 0 False 710 616 26 {X=0,Y=0,Width=0,Height=0} +91 238 673 0.024814807236414 0.159582864383253 0.0248264286259251 0.169039444571603 0.00210824471657828 0.0334225175827124 2346662 7833239 1443 749 0 True 236 667 31 {X=0,Y=0,Width=0,Height=0} +92 289 667 0.0239873304647853 0.0236326547828769 0.0238956282902266 0.0236362249179828 0.00164511558520962 0.00141830518366997 2268410 893638 1443 577 0 False 289 667 26 {X=0,Y=0,Width=0,Height=0} +93 341 668 0.0238646872659232 0.0238920581551208 0.0238345922026398 0.0238040741588464 0.00147145270310712 0.0015005390597426 2256812 903447 1443 577 0 False 341 668 26 {X=0,Y=0,Width=0,Height=0} +94 394 668 0.023877249787069 0.0237687165985763 0.0238956282902266 0.0237125200274662 0.0016069683490861 0.00151324886347828 2258000 898783 1443 577 0 False 394 668 26 {X=0,Y=0,Width=0,Height=0} +95 447 668 0.0239628187442333 0.0239804388330736 0.0239719233997101 0.0240024414435035 0.00173288202016716 0.0016569697077351 2266092 906789 1443 577 0 False 447 668 26 {X=0,Y=0,Width=0,Height=0} +96 500 668 0.0240605378165461 0.0242027656911074 0.0240329594872969 0.0241092545967803 0.00178376714087401 0.00183677393432896 2275333 915196 1443 577 0 False 500 668 26 {X=0,Y=0,Width=0,Height=0} +97 552 668 0.0240268156953897 0.024004583524567 0.0240177004654002 0.0239871824216068 0.00152202599384337 0.0014967149508767 2272144 907702 1443 577 0 False 552 668 26 {X=0,Y=0,Width=0,Height=0} +98 605 668 0.0238952053097166 0.0240233862361242 0.0238803692683299 0.0240482185091936 0.00146349622138916 0.00137026219940354 2259698 908413 1443 577 0 False 605 668 26 {X=0,Y=0,Width=0,Height=0} +99 658 668 0.0239059807382078 0.0238026461048041 0.0238956282902266 0.0237430380712596 0.00150025789505036 0.00151062633158361 2260717 900066 1443 577 0 False 658 668 26 {X=0,Y=0,Width=0,Height=0} +100 712 672 0.0241471219269342 0.150823557413222 0.0241550316624704 0.16932936598764 0.00150966568447985 0.0435612758077652 2283521 8510315 1443 861 0 True 710 669 32 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C04_3.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C04_3.csv new file mode 100644 index 0000000..6704738 --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C04_3.csv @@ -0,0 +1,101 @@ + ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour +1 238 197 0.318889352581273 0.336755288620146 0.318654154268711 0.328892957961395 0.00667493317250241 0.0231260893470757 30156411 19001631 1443 861 0 True 237 199 32 {X=0,Y=0,Width=0,Height=0} +2 290 199 0.319382579579421 0.318956901725684 0.318776226443885 0.318776226443885 0.00908629172044082 0.00526787388771699 30203054 12060939 1443 577 0 False 290 199 26 {X=0,Y=0,Width=0,Height=0} +3 343 199 0.31804024035656 0.318296188722102 0.318043793392844 0.318272678721294 0.00483206244392773 0.00468361343849252 30076113 12035955 1443 577 0 False 343 199 26 {X=0,Y=0,Width=0,Height=0} +4 395 199 0.318922503678741 0.318594890025955 0.318776226443885 0.318593118181125 0.00477677194022908 0.00451035808211923 30159546 12047250 1443 577 0 False 395 199 26 {X=0,Y=0,Width=0,Height=0} +5 448 199 0.318967360761822 0.319033276171504 0.318883039597162 0.319157701991302 0.00604668446084187 0.00684882029079053 30163788 12063827 1443 577 0 False 448 199 26 {X=0,Y=0,Width=0,Height=0} +6 501 199 0.319052030885402 0.31955541504209 0.318989852750439 0.319356069275959 0.00696393409451894 0.00677473228701328 30171795 12083571 1443 577 0 False 501 199 26 {X=0,Y=0,Width=0,Height=0} +7 554 199 0.319612469486583 0.319414540155359 0.319661249713893 0.319142442969406 0.00657996095295198 0.00646788358196493 30224794 12078244 1443 577 0 False 554 199 26 {X=0,Y=0,Width=0,Height=0} +8 606 200 0.319148174355316 0.319463146883689 0.319081406881819 0.319356069275959 0.00621398329893628 0.00661477554753042 30180887 12080082 1443 577 0 False 606 200 26 {X=0,Y=0,Width=0,Height=0} +9 659 200 0.319027920996335 0.319602461489151 0.319096665903716 0.319432364385443 0.0051172399336209 0.00485199490694665 30169515 12085350 1443 577 0 False 659 200 26 {X=0,Y=0,Width=0,Height=0} +10 711 198 0.318947438379803 0.343652986802896 0.318867780575265 0.332356755931945 0.00527010198257971 0.0284015579713844 30161904 19390838 1443 861 0 True 712 200 32 {X=0,Y=0,Width=0,Height=0} +11 237 251 0.318855736205244 0.318910569305644 0.318730449378195 0.318669413290608 0.00534912403758769 0.0048899962707692 30153232 12059187 1443 577 0 False 237 251 26 {X=0,Y=0,Width=0,Height=0} +12 290 251 0.319006645076684 0.319233045064758 0.318989852750439 0.319157701991302 0.00458977747083574 0.0042897213860507 30167503 12071381 1443 577 0 False 290 251 26 {X=0,Y=0,Width=0,Height=0} +13 343 251 0.319026641480292 0.318532822566004 0.319020370794232 0.318577859159228 0.00438540092281946 0.00403441647076974 30169394 12044903 1443 577 0 False 343 251 26 {X=0,Y=0,Width=0,Height=0} +14 395 251 0.318893349747092 0.319084183653568 0.318928816662852 0.319081406881819 0.00419316927947142 0.00404096957364992 30156789 12065752 1443 577 0 False 395 251 26 {X=0,Y=0,Width=0,Height=0} +15 448 251 0.319483111472125 0.319702636835676 0.319310292210269 0.319432364385443 0.00467613037460116 0.00487381979372629 30212561 12089138 1443 577 0 False 448 251 26 {X=0,Y=0,Width=0,Height=0} +16 501 251 0.319490524205562 0.319808947525493 0.319600213626307 0.319508659494926 0.00625713728862734 0.00609925209135489 30213262 12093158 1443 577 0 False 501 251 26 {X=0,Y=0,Width=0,Height=0} +17 553 252 0.319831774306483 0.319993801187639 0.31981383993286 0.320088502327001 0.00592901686440386 0.0057798314457454 30245533 12100148 1443 577 0 False 553 252 26 {X=0,Y=0,Width=0,Height=0} +18 606 252 0.320044861312886 0.319767137276587 0.319981689173724 0.31953917753872 0.005685411787374 0.00585344066471886 30265684 12091577 1443 577 0 False 606 252 26 {X=0,Y=0,Width=0,Height=0} +19 659 252 0.31982307148249 0.319789113441572 0.319752803845273 0.3196307316701 0.00424059213755798 0.00418117891950307 30244710 12092408 1443 577 0 False 659 252 26 {X=0,Y=0,Width=0,Height=0} +20 711 252 0.319632677380446 0.319936969925843 0.319508659494926 0.320103761348898 0.0044297885936361 0.00447601621408354 30226705 12097999 1443 577 0 False 711 252 26 {X=0,Y=0,Width=0,Height=0} +21 237 303 0.3189319255696 0.319252006448986 0.319005111772335 0.319127183947509 0.00530513591458377 0.00544495696622577 30160437 12072098 1443 577 0 False 237 303 26 {X=0,Y=0,Width=0,Height=0} +22 290 303 0.319241642473503 0.318801931416647 0.319386587319753 0.318776226443885 0.00470325785729383 0.00409485612266087 30189726 12055079 1443 577 0 False 290 303 26 {X=0,Y=0,Width=0,Height=0} +23 343 303 0.319307363070238 0.318977026709503 0.319432364385443 0.319066147859922 0.00432798556117491 0.00463457577234583 30195941 12061700 1443 577 0 False 343 303 26 {X=0,Y=0,Width=0,Height=0} +24 395 303 0.319029686939964 0.318835014668627 0.319279774166476 0.318852521553368 0.00467305636010826 0.00429009438918101 30169682 12056330 1443 577 0 False 395 303 26 {X=0,Y=0,Width=0,Height=0} +25 448 303 0.3195542567939 0.319640331366718 0.31958495460441 0.319691767757687 0.00439728305991137 0.00400247533450616 30219289 12086782 1443 577 0 False 448 303 26 {X=0,Y=0,Width=0,Height=0} +26 501 303 0.320308378170589 0.320316805855656 0.320469977874418 0.320317387655451 0.00520602446897282 0.00494793094075068 30290604 12112362 1443 577 0 False 501 303 26 {X=0,Y=0,Width=0,Height=0} +27 553 304 0.320204948861392 0.320412908603616 0.320134279392691 0.320820935378042 0.00532224763910631 0.00570507416584736 30280823 12115996 1443 577 0 False 553 304 26 {X=0,Y=0,Width=0,Height=0} +28 606 304 0.320607922393228 0.320211949665326 0.320637827115282 0.320149538414588 0.00560318135766017 0.00608096108576997 30318931 12108397 1443 577 0 False 606 304 26 {X=0,Y=0,Width=0,Height=0} +29 659 304 0.319952112261565 0.319618857665192 0.319920653086137 0.31972228580148 0.00452214899892942 0.00443295429512247 30256913 12085970 1443 577 0 False 659 304 26 {X=0,Y=0,Width=0,Height=0} +30 711 304 0.319985591168928 0.320218957708312 0.319981689173724 0.320317387655451 0.00430213790819439 0.00399948288180589 30260079 12108662 1443 577 0 False 711 304 26 {X=0,Y=0,Width=0,Height=0} +31 237 355 0.318727403918523 0.31885672637916 0.318760967421988 0.318822003509575 0.00651468105796593 0.0063559583279225 30141096 12057151 1443 577 0 False 237 355 26 {X=0,Y=0,Width=0,Height=0} +32 290 355 0.319515469481137 0.319082755599526 0.319554436560616 0.319249256122683 0.00525924558315644 0.00472492294249408 30215621 12065698 1443 577 0 False 290 355 26 {X=0,Y=0,Width=0,Height=0} +33 342 355 0.319612205123764 0.319560413231238 0.319462882429236 0.319554436560616 0.00551803254133551 0.00584371279267644 30224769 12083760 1443 577 0 False 342 355 26 {X=0,Y=0,Width=0,Height=0} +34 395 355 0.320126411955206 0.31963189526969 0.320012207217517 0.31981383993286 0.0044805059140629 0.00463863194301496 30273396 12086463 1443 577 0 False 395 355 26 {X=0,Y=0,Width=0,Height=0} +35 448 355 0.320069510502104 0.319683305215214 0.31985961699855 0.3196307316701 0.00406190673515601 0.00402131738379988 30268015 12088407 1443 577 0 False 448 355 26 {X=0,Y=0,Width=0,Height=0} +36 500 356 0.320702997837354 0.320362292021449 0.320637827115282 0.320515754940108 0.00476012613466383 0.00429237667839886 30327922 12114082 1443 577 0 False 500 356 26 {X=0,Y=0,Width=0,Height=0} +37 553 356 0.320512698905924 0.320820935378042 0.320378423743038 0.321095597772183 0.00550090171610964 0.00558217354210412 30309926 12131425 1443 577 0 False 553 356 26 {X=0,Y=0,Width=0,Height=0} +38 606 356 0.320408920637806 0.320691061796526 0.320210574502174 0.320729381246662 0.00515794302069248 0.00512845646549385 30300112 12126514 1443 577 0 False 606 356 26 {X=0,Y=0,Width=0,Height=0} +39 658 356 0.320299178344498 0.32036533324765 0.320454718852522 0.320393682764935 0.0047555871534267 0.00445066768635458 30289734 12114197 1443 577 0 False 658 356 26 {X=0,Y=0,Width=0,Height=0} +40 711 356 0.320318318212573 0.319965187215902 0.320271610589761 0.31990539406424 0.00419291103455602 0.00382354507905351 30291544 12099066 1443 577 0 False 711 356 26 {X=0,Y=0,Width=0,Height=0} +41 237 407 0.318674637099906 0.318826049662695 0.318547341115434 0.318959334706645 0.00676451235778429 0.00681312538560368 30136106 12055991 1443 577 0 False 237 407 26 {X=0,Y=0,Width=0,Height=0} +42 290 407 0.319975534807304 0.320259525021292 0.320042725261311 0.320561532005798 0.00591189802947234 0.0059416490369673 30259128 12110196 1443 577 0 False 290 407 26 {X=0,Y=0,Width=0,Height=0} +43 342 407 0.32005310943283 0.319989411243731 0.320027466239414 0.320103761348898 0.00511601503769708 0.00502850274799253 30266464 12099982 1443 577 0 False 342 407 26 {X=0,Y=0,Width=0,Height=0} +44 395 407 0.320727847942314 0.320010646936249 0.320759899290456 0.320256351567864 0.00508313188019712 0.00520191683314238 30330272 12100785 1443 577 0 False 395 407 26 {X=0,Y=0,Width=0,Height=0} +45 448 407 0.320499269274733 0.32061905084917 0.320653086137179 0.320454718852522 0.00515478409222053 0.00483147207995255 30308656 12123791 1443 577 0 False 448 407 26 {X=0,Y=0,Width=0,Height=0} +46 500 408 0.320458070973063 0.320628782773014 0.320469977874418 0.320485236896315 0.00488126251404573 0.00489060674674903 30304760 12124159 1443 577 0 False 500 408 26 {X=0,Y=0,Width=0,Height=0} +47 553 408 0.320850766078507 0.32079057600692 0.320805676356146 0.320531013962005 0.00535735897968744 0.00513434428675801 30341896 12130277 1443 577 0 False 553 408 26 {X=0,Y=0,Width=0,Height=0} +48 606 408 0.320896331653942 0.320874936977198 0.320653086137179 0.320943007553216 0.00544844102362108 0.00567934544871043 30346205 12133467 1443 577 0 False 606 408 26 {X=0,Y=0,Width=0,Height=0} +49 658 408 0.320503900911317 0.319612695876454 0.320256351567864 0.319127183947509 0.00475300467478467 0.00452063903429657 30309094 12085737 1443 577 0 False 658 408 26 {X=0,Y=0,Width=0,Height=0} +50 711 408 0.320251540164564 0.319899734738962 0.320225833524071 0.319783321889067 0.00393189723929395 0.00374847816572705 30285229 12096591 1443 577 0 False 711 408 26 {X=0,Y=0,Width=0,Height=0} +51 237 459 0.31939146217013 0.318829461125129 0.319111924925612 0.318898298619059 0.00617995432173451 0.00601927748562922 30203894 12056120 1443 577 0 False 237 459 26 {X=0,Y=0,Width=0,Height=0} +52 289 459 0.31994732200729 0.320124335905285 0.319874876020447 0.320149538414588 0.00520596934904009 0.00483238975329792 30256460 12105084 1443 577 0 False 289 459 26 {X=0,Y=0,Width=0,Height=0} +53 342 459 0.320642596220532 0.321119927581793 0.320592050049592 0.321141374837873 0.00460035876143785 0.00437350754875332 30322210 12142731 1443 577 0 False 342 459 26 {X=0,Y=0,Width=0,Height=0} +54 395 459 0.32082477392617 0.321037470683571 0.320698863202869 0.320759899290456 0.00467014441249059 0.00454995340917176 30339438 12139613 1443 577 0 False 395 459 26 {X=0,Y=0,Width=0,Height=0} +55 447 460 0.32046686896767 0.320775290539578 0.320454718852522 0.320408941786831 0.00609649560816743 0.00665924243310108 30305592 12129699 1443 577 0 False 447 460 26 {X=0,Y=0,Width=0,Height=0} +56 500 460 0.322652028580159 0.319776472518753 0.320683604180972 0.31990539406424 0.0157120779288756 0.00600202231694984 30512236 12091930 1443 577 0 False 500 460 26 {X=0,Y=0,Width=0,Height=0} +57 553 460 0.320834206391542 0.320989392864146 0.320668345159075 0.321065079728389 0.00563502676449488 0.00556224967416868 30340330 12137795 1443 577 0 False 553 460 26 {X=0,Y=0,Width=0,Height=0} +58 605 460 0.320758281390005 0.321486805243444 0.320668345159075 0.321355001144427 0.00543466519318587 0.00567330831783562 30333150 12156604 1443 577 0 False 605 460 26 {X=0,Y=0,Width=0,Height=0} +59 658 460 0.320908376023963 0.320457098942592 0.320790417334249 0.320119020370794 0.00512951790700789 0.00500773840573957 30347344 12117667 1443 577 0 False 658 460 26 {X=0,Y=0,Width=0,Height=0} +60 711 460 0.319912373242655 0.319848404129774 0.319707026779583 0.319707026779583 0.00482298748075619 0.00474646666302239 30253155 12094650 1443 577 0 False 711 460 26 {X=0,Y=0,Width=0,Height=0} +61 237 511 0.319096940841047 0.319015002368851 0.319005111772335 0.318837262531472 0.00532279886684027 0.00535319107842354 30176042 12063136 1443 577 0 False 237 511 26 {X=0,Y=0,Width=0,Height=0} +62 289 511 0.319644520834725 0.319734001133716 0.319523918516823 0.31967650873579 0.00441166630766214 0.00406820803314094 30227825 12090324 1443 577 0 False 289 511 26 {X=0,Y=0,Width=0,Height=0} +63 342 511 0.319820205789535 0.320260926629889 0.319645990691997 0.320256351567864 0.00414355528971442 0.00365167425813549 30244439 12110249 1443 577 0 False 342 511 26 {X=0,Y=0,Width=0,Height=0} +64 395 511 0.320498137801869 0.32078941240733 0.320393682764935 0.321004043640803 0.00417969859078393 0.00410851875082205 30308549 12130233 1443 577 0 False 395 511 26 {X=0,Y=0,Width=0,Height=0} +65 447 512 0.320253369555269 0.319853904782381 0.320256351567864 0.319996948195621 0.00587533361507742 0.00528344114643754 30285402 12094858 1443 577 0 False 447 512 26 {X=0,Y=0,Width=0,Height=0} +66 500 512 0.319936948410283 0.320656709163175 0.31990539406424 0.320668345159075 0.00662588921308459 0.00637414358353965 30255479 12125215 1443 577 0 False 500 512 26 {X=0,Y=0,Width=0,Height=0} +67 553 512 0.320806490593627 0.320771535286356 0.320851453421836 0.320485236896315 0.00591831071564673 0.00567747067155556 30337709 12129557 1443 577 0 False 553 512 26 {X=0,Y=0,Width=0,Height=0} +68 605 512 0.321590633012011 0.321688107972522 0.321553368429084 0.32156862745098 0.00597462991991328 0.00686319814818093 30411863 12164216 1443 577 0 False 605 512 26 {X=0,Y=0,Width=0,Height=0} +69 658 512 0.321030416475598 0.320945387643286 0.320836194399939 0.320759899290456 0.00553926012461525 0.00561451104078942 30358885 12136131 1443 577 0 False 658 512 26 {X=0,Y=0,Width=0,Height=0} +70 711 512 0.320276168204756 0.32041454822122 0.320256351567864 0.320469977874418 0.00530638881422184 0.00507857509477897 30287558 12116058 1443 577 0 False 711 512 26 {X=0,Y=0,Width=0,Height=0} +71 236 563 0.318878778068524 0.318535149765184 0.318699931334401 0.318211642633707 0.00555334360817723 0.00565380052393371 30155411 12044991 1443 577 0 False 236 563 26 {X=0,Y=0,Width=0,Height=0} +72 289 563 0.319014575961246 0.318568021453603 0.319035629816129 0.318577859159228 0.00434002140889983 0.0039333958393346 30168253 12046234 1443 577 0 False 289 563 26 {X=0,Y=0,Width=0,Height=0} +73 342 563 0.319372311727542 0.31930164454968 0.319523918516823 0.319432364385443 0.00431312755181905 0.00408192584324533 30202083 12073975 1443 577 0 False 342 563 26 {X=0,Y=0,Width=0,Height=0} +74 394 564 0.320096898490123 0.319952387620411 0.319935912108034 0.319798580910964 0.00455477004068478 0.00435783347985042 30270605 12098582 1443 577 0 False 394 564 26 {X=0,Y=0,Width=0,Height=0} +75 447 564 0.32049364363395 0.320990609354627 0.320378423743038 0.320759899290456 0.00535927721192897 0.00604107279943043 30308124 12137841 1443 577 0 False 447 564 26 {X=0,Y=0,Width=0,Height=0} +76 500 564 0.320126433104231 0.320794199032917 0.320149538414588 0.321080338750286 0.00686267925561397 0.00745287920802331 30273398 12130414 1443 577 0 False 500 564 26 {X=0,Y=0,Width=0,Height=0} +77 552 564 0.320212499063495 0.320874302286513 0.320180056458381 0.320622568093385 0.00603532597337118 0.00553805626279733 30281537 12133443 1443 577 0 False 552 564 26 {X=0,Y=0,Width=0,Height=0} +78 605 564 0.320878429003858 0.351828167017267 0.320714122224765 0.323460746166171 0.0054056112815424 0.11670810666347 30344512 13303923 1443 577 1 False 605 564 26 {X=0,Y=0,Width=0,Height=0} +79 658 564 0.321233870100888 0.321157189214119 0.32115663385977 0.320775158312352 0.00503339187688036 0.00474320614287011 30378125 12144140 1443 577 0 False 658 564 26 {X=0,Y=0,Width=0,Height=0} +80 710 564 0.320780138907857 0.320479894916379 0.320836194399939 0.320454718852522 0.00539738012607936 0.00502851635231212 30335217 12118529 1443 577 0 False 710 564 26 {X=0,Y=0,Width=0,Height=0} +81 237 619 0.321330468274849 0.334630917312672 0.318669413290608 0.328938735027085 0.0194767626616697 0.0178075394207866 30387260 18881762 1443 861 0 True 236 615 32 {X=0,Y=0,Width=0,Height=0} +82 289 615 0.326741731960317 0.322543274334867 0.320271610589761 0.320973525597009 0.0256767801405875 0.0087074129410373 30898987 12196553 1443 577 0 False 289 615 26 {X=0,Y=0,Width=0,Height=0} +83 342 615 0.319116091283635 0.318840171530447 0.319172961013199 0.318959334706645 0.00487340102050033 0.00491432525905646 30177853 12056525 1443 577 0 False 342 615 26 {X=0,Y=0,Width=0,Height=0} +84 394 616 0.319739617427876 0.320123066523914 0.319523918516823 0.320119020370794 0.00529361245521331 0.00502224378292935 30236818 12105036 1443 577 0 False 394 616 26 {X=0,Y=0,Width=0,Height=0} +85 447 616 0.320148227175007 0.320348937071609 0.320073243305104 0.320302128633555 0.00559052046630946 0.00563489295720225 30275459 12113577 1443 577 0 False 447 616 26 {X=0,Y=0,Width=0,Height=0} +86 500 616 0.320504651701722 0.321104430550889 0.320546272983902 0.32115663385977 0.0054743839009204 0.00538469465514691 30309165 12142145 1443 577 0 False 500 616 26 {X=0,Y=0,Width=0,Height=0} +87 552 616 0.320546516197695 0.320621351602905 0.320607309071489 0.320592050049592 0.00501798795903887 0.00498335979241201 30313124 12123878 1443 577 0 False 552 616 26 {X=0,Y=0,Width=0,Height=0} +88 605 616 0.320849412540875 0.32051070386007 0.320805676356146 0.319981689173724 0.00484366546951633 0.00469019296005834 30341768 12119694 1443 577 0 False 605 616 26 {X=0,Y=0,Width=0,Height=0} +89 658 616 0.320722994240962 0.320541274794754 0.320744640268559 0.320531013962005 0.00433260957342821 0.00392170065137956 30329813 12120850 1443 577 0 False 658 616 26 {X=0,Y=0,Width=0,Height=0} +90 710 616 0.320222682319272 0.320728958119538 0.320180056458381 0.320805676356146 0.00482908048180874 0.00431504079043629 30282500 12127947 1443 577 0 False 710 616 26 {X=0,Y=0,Width=0,Height=0} +91 238 673 0.31765440810989 0.346016453055639 0.317601281757839 0.33676661326009 0.00622711198644017 0.0278444139447474 30039626 16984465 1443 749 0 True 236 667 31 {X=0,Y=0,Width=0,Height=0} +92 289 667 0.318657157430332 0.318446716196341 0.318593118181125 0.318516823071641 0.00484124152872334 0.00427947917216527 30134453 12041647 1443 577 0 False 289 667 26 {X=0,Y=0,Width=0,Height=0} +93 341 668 0.318892641254738 0.318893988011486 0.318898298619059 0.318715190356298 0.00517809587248829 0.00564520977139497 30156722 12058560 1443 577 0 False 341 668 26 {X=0,Y=0,Width=0,Height=0} +94 394 668 0.319072936697107 0.319217918270087 0.319218738078889 0.319188220035096 0.00519799957167405 0.00513459065115158 30173772 12070809 1443 577 0 False 394 668 26 {X=0,Y=0,Width=0,Height=0} +95 447 668 0.319907857925711 0.320018501233482 0.319981689173724 0.320103761348898 0.00541676008109421 0.00522841725126958 30252728 12101082 1443 577 0 False 447 668 26 {X=0,Y=0,Width=0,Height=0} +96 500 668 0.320028269902383 0.320399104081207 0.320164797436484 0.320271610589761 0.00463691154783506 0.00479090283001056 30264115 12115474 1443 577 0 False 500 668 26 {X=0,Y=0,Width=0,Height=0} +97 552 668 0.320214265007124 0.320109949583081 0.320119020370794 0.320027466239414 0.00426781932657718 0.00387885464456801 30281704 12104540 1443 577 0 False 552 668 26 {X=0,Y=0,Width=0,Height=0} +98 605 668 0.320038622350364 0.319711892741505 0.320027466239414 0.319554436560616 0.00386938280608562 0.00351594108123066 30265094 12089488 1443 577 0 False 605 668 26 {X=0,Y=0,Width=0,Height=0} +99 658 668 0.320371095605703 0.3204614888865 0.320393682764935 0.320439459830625 0.00407930030442244 0.00403186678564126 30296535 12117833 1443 577 0 False 658 668 26 {X=0,Y=0,Width=0,Height=0} +100 712 672 0.320096993660738 0.338201173987674 0.320103761348898 0.328633554589151 0.00454491032062182 0.0220516463760601 30270614 19083216 1443 861 0 True 710 669 32 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C04_4.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C04_4.csv new file mode 100644 index 0000000..94b808b --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_C04_4.csv @@ -0,0 +1,101 @@ + ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour +1 238 197 0.0334396230482291 0.0354089413437704 0.0333562218661784 0.035233081559472 0.00253183866594534 0.00350766799618349 3162285 1997972 1443 861 0 True 237 199 32 {X=0,Y=0,Width=0,Height=0} +2 290 199 0.0336475285433857 0.0332122264169106 0.0336003662165255 0.033173113603418 0.0022018937890133 0.00220734217751705 3181946 1255877 1443 577 0 False 290 199 26 {X=0,Y=0,Width=0,Height=0} +3 343 199 0.0333076425546098 0.0332887330899559 0.0332646677347982 0.0332341496910048 0.00188968733184484 0.00187629090296956 3149804 1258770 1443 577 0 False 343 199 26 {X=0,Y=0,Width=0,Height=0} +4 395 199 0.0332761622301563 0.0332918536524928 0.0332188906691081 0.0332646677347982 0.00179192626951218 0.00175361265791316 3146827 1258888 1443 577 0 False 395 199 26 {X=0,Y=0,Width=0,Height=0} +5 448 199 0.0333897536461052 0.033400200641593 0.0333409628442817 0.0333867399099718 0.00221958794509711 0.00241596474435984 3157569 1262985 1443 577 0 False 448 199 26 {X=0,Y=0,Width=0,Height=0} +6 501 199 0.0332974170007816 0.0335734183078379 0.0332036316472114 0.0335851071946288 0.00269013339511014 0.00265243789915896 3148837 1269535 1443 577 0 False 501 199 26 {X=0,Y=0,Width=0,Height=0} +7 554 199 0.0333738072808798 0.0333600300102912 0.0332341496910048 0.0332646677347982 0.00258450533352113 0.00256269495630757 3156061 1261466 1443 577 0 False 554 199 26 {X=0,Y=0,Width=0,Height=0} +8 606 200 0.033453020955882 0.0334430422628627 0.0334782940413519 0.0334477759975586 0.00239980230150602 0.00256134477446428 3163552 1264605 1443 577 0 False 606 200 26 {X=0,Y=0,Width=0,Height=0} +9 659 200 0.0334410717564757 0.0331918898695301 0.0333562218661784 0.0332646677347982 0.00200604612517953 0.0018484498900875 3162422 1255108 1443 577 0 False 659 200 26 {X=0,Y=0,Width=0,Height=0} +10 711 198 0.0332510371878648 0.0359192058715866 0.0332188906691081 0.0353398947127489 0.00201053702868419 0.00353399195037663 3144451 2026764 1443 861 0 True 712 200 32 {X=0,Y=0,Width=0,Height=0} +11 237 251 0.0333728344257069 0.0334250593601075 0.0333104448004883 0.0334172579537652 0.00212546338433104 0.00215243221625286 3155969 1263925 1443 577 0 False 237 251 26 {X=0,Y=0,Width=0,Height=0} +12 290 251 0.0334640818962174 0.0333066895472659 0.0334630350194553 0.033325703822385 0.00181893940108134 0.0017166250132595 3164598 1259449 1443 577 0 False 290 251 26 {X=0,Y=0,Width=0,Height=0} +13 343 251 0.033347519042186 0.0335653524470433 0.033325703822385 0.0336461432822156 0.00162122272778888 0.00139114615122423 3153575 1269230 1443 577 0 False 343 251 26 {X=0,Y=0,Width=0,Height=0} +14 395 251 0.0333207232268802 0.0332884421900584 0.0332951857785916 0.0332799267566949 0.00159427362336072 0.0014923725803528 3151041 1258759 1443 577 0 False 395 251 26 {X=0,Y=0,Width=0,Height=0} +15 448 251 0.0334484104683235 0.0335083360671312 0.0334477759975586 0.033524071107042 0.00178698144590267 0.00175709026077483 3163116 1267074 1443 577 0 False 448 251 26 {X=0,Y=0,Width=0,Height=0} +16 501 251 0.0334102047537616 0.0332567076557845 0.0334019989318685 0.032974746318761 0.00223868564596585 0.0023802555174874 3159503 1257559 1443 577 0 False 501 251 26 {X=0,Y=0,Width=0,Height=0} +17 553 252 0.0336033482291207 0.0336492109538621 0.0335545891508354 0.0336919203479057 0.00237542210464161 0.00216143707218071 3177768 1272401 1443 577 0 False 553 252 26 {X=0,Y=0,Width=0,Height=0} +18 606 252 0.0334257915855535 0.0332165105790376 0.0334325169756619 0.0332036316472114 0.00217998114827116 0.00223767871844359 3160977 1256039 1443 577 0 False 606 252 26 {X=0,Y=0,Width=0,Height=0} +19 659 252 0.0334772048665388 0.0334061244213241 0.0334477759975586 0.0333409628442817 0.00180748394137915 0.00151667601911122 3165839 1263209 1443 577 0 False 659 252 26 {X=0,Y=0,Width=0,Height=0} +20 711 252 0.0333935710452076 0.0333240377593356 0.0333104448004883 0.0332799267566949 0.00175319628878445 0.00176180923670596 3157930 1260105 1443 577 0 False 711 252 26 {X=0,Y=0,Width=0,Height=0} +21 237 303 0.0334031938518091 0.0334706777531262 0.0333562218661784 0.0334325169756619 0.00207112663110323 0.00197575721394632 3158840 1265650 1443 577 0 False 237 303 26 {X=0,Y=0,Width=0,Height=0} +22 290 303 0.0334760310956237 0.0335615443029305 0.0334630350194553 0.0335393301289387 0.00190377278939858 0.00183353678669264 3165728 1269086 1443 577 0 False 290 303 26 {X=0,Y=0,Width=0,Height=0} +23 343 303 0.0334909094350614 0.0334951133445171 0.0335088120851453 0.033524071107042 0.00165014935461031 0.00169617504965963 3167135 1266574 1443 577 0 False 343 303 26 {X=0,Y=0,Width=0,Height=0} +24 395 303 0.0332978505558043 0.0331816025913363 0.0332799267566949 0.033173113603418 0.00164675235931867 0.0015963774732615 3148878 1254719 1443 577 0 False 395 303 26 {X=0,Y=0,Width=0,Height=0} +25 448 303 0.0333885058536008 0.033541101973769 0.0333409628442817 0.033524071107042 0.00162591296159614 0.001624463309911 3157451 1268313 1443 577 0 False 448 303 26 {X=0,Y=0,Width=0,Height=0} +26 501 303 0.0336071550537103 0.033313195126792 0.0336003662165255 0.0332494087129015 0.00199316461135388 0.00193727351072393 3178128 1259695 1443 577 0 False 501 303 26 {X=0,Y=0,Width=0,Height=0} +27 553 304 0.0336155617913457 0.0335275883512574 0.0335393301289387 0.0334935530632486 0.00209292570538057 0.00195936934159612 3178923 1267802 1443 577 0 False 553 304 26 {X=0,Y=0,Width=0,Height=0} +28 606 304 0.0335727561637381 0.0333840953654489 0.0335698481727321 0.0332951857785916 0.00216669638467171 0.00222440172787504 3174875 1262376 1443 577 0 False 606 304 26 {X=0,Y=0,Width=0,Height=0} +29 659 304 0.0334473107189976 0.0334480933429013 0.0334172579537652 0.0333867399099718 0.00174769975882791 0.00174079529957734 3163012 1264796 1443 577 0 False 659 304 26 {X=0,Y=0,Width=0,Height=0} +30 711 304 0.0333894998577992 0.0335440903090798 0.0333562218661784 0.0335545891508354 0.00163731681598419 0.00158168344249134 3157545 1268426 1443 577 0 False 711 304 26 {X=0,Y=0,Width=0,Height=0} +31 237 355 0.0334173214008417 0.0335896029203176 0.0333714808880751 0.0335545891508354 0.00257320138391188 0.00241904525980785 3160176 1270147 1443 577 0 False 237 355 26 {X=0,Y=0,Width=0,Height=0} +32 290 355 0.033271668062238 0.0332702477237414 0.0332341496910048 0.033325703822385 0.00217633557423981 0.0016176107252111 3146402 1258071 1443 577 0 False 290 355 26 {X=0,Y=0,Width=0,Height=0} +33 342 355 0.033546478499557 0.0335028883054142 0.0335698481727321 0.0333409628442817 0.00205207530626483 0.00206642561046005 3172390 1266868 1443 577 0 False 342 355 26 {X=0,Y=0,Width=0,Height=0} +34 395 355 0.0335165843520158 0.0334096152200942 0.0334782940413519 0.033524071107042 0.00183243877475004 0.00169870108132841 3169563 1263341 1443 577 0 False 395 355 26 {X=0,Y=0,Width=0,Height=0} +35 448 355 0.0335497565985092 0.033398931260222 0.0335393301289387 0.0333714808880751 0.00157673402227 0.00153466073304826 3172700 1262937 1443 577 0 False 448 355 26 {X=0,Y=0,Width=0,Height=0} +36 500 356 0.0335844198513001 0.0336438425284808 0.0335393301289387 0.0336308842603189 0.00183794505529684 0.00178549845430661 3175978 1272198 1443 577 0 False 500 356 26 {X=0,Y=0,Width=0,Height=0} +37 553 356 0.0336656003856736 0.0335506223340512 0.0336614023041123 0.0334630350194553 0.00197713302764027 0.00205482151276053 3183655 1268673 1443 577 0 False 553 356 26 {X=0,Y=0,Width=0,Height=0} +38 606 356 0.0335431475280411 0.0332768855304936 0.0334477759975586 0.0331425955596246 0.00193224047641445 0.00181042638948198 3172075 1258322 1443 577 0 False 606 356 26 {X=0,Y=0,Width=0,Height=0} +39 658 356 0.0333318476142921 0.0331944021868268 0.033325703822385 0.0332646677347982 0.00176106426868184 0.00177686929957703 3152093 1255203 1443 577 0 False 658 356 26 {X=0,Y=0,Width=0,Height=0} +40 711 356 0.0334687135328014 0.0336066337870446 0.0334477759975586 0.0336156252384222 0.00161900350817266 0.00161065923829387 3165036 1270791 1443 577 0 False 711 356 26 {X=0,Y=0,Width=0,Height=0} +41 237 407 0.0335169438854493 0.0332966667235244 0.0334325169756619 0.0332494087129015 0.00262748373158063 0.00254088795875582 3169597 1259070 1443 577 0 False 237 407 26 {X=0,Y=0,Width=0,Height=0} +42 290 407 0.033458498553486 0.0335755603889014 0.0334477759975586 0.0334935530632486 0.00220482199098364 0.00214585324404882 3164070 1269616 1443 577 0 False 290 407 26 {X=0,Y=0,Width=0,Height=0} +43 342 407 0.0333879454044251 0.0334332838935735 0.0332951857785916 0.0334019989318685 0.00198689557685011 0.001891473628803 3157398 1264236 1443 577 0 False 342 407 26 {X=0,Y=0,Width=0,Height=0} +44 395 407 0.0334884984461547 0.0335915863287097 0.0334477759975586 0.0336461432822156 0.00196331352592677 0.00191196315149977 3166907 1270222 1443 577 0 False 395 407 26 {X=0,Y=0,Width=0,Height=0} +45 448 407 0.0334006982668003 0.0334784791594685 0.0333409628442817 0.0334172579537652 0.00193264376875134 0.00191578493022693 3158604 1265945 1443 577 0 False 448 407 26 {X=0,Y=0,Width=0,Height=0} +46 500 408 0.033583288378436 0.0334975992163686 0.0335698481727321 0.0336156252384222 0.00178401258539488 0.00193989413341158 3175871 1266668 1443 577 0 False 500 408 26 {X=0,Y=0,Width=0,Height=0} +47 553 408 0.0335967497331654 0.0334905382824926 0.0335545891508354 0.0334477759975586 0.00206488792153444 0.00198541193787065 3177144 1266401 1443 577 0 False 553 408 26 {X=0,Y=0,Width=0,Height=0} +48 606 408 0.0335863867106714 0.0336433136195762 0.0335851071946288 0.0335851071946288 0.00202753819954174 0.00207763184368957 3176164 1272178 1443 577 0 False 606 408 26 {X=0,Y=0,Width=0,Height=0} +49 658 408 0.0333963204185223 0.0335473959897334 0.033325703822385 0.0335393301289387 0.00180277424924157 0.00167246015499096 3158190 1268551 1443 577 0 False 658 408 26 {X=0,Y=0,Width=0,Height=0} +50 711 408 0.0336301757679647 0.0336246960261355 0.0336308842603189 0.0335088120851453 0.00152139162071311 0.00158741105930623 3180305 1271474 1443 577 0 False 711 408 26 {X=0,Y=0,Width=0,Height=0} +51 237 459 0.0334879274224662 0.033390362935968 0.0334782940413519 0.0333867399099718 0.00237216576617888 0.0023695911058604 3166853 1262613 1443 577 0 False 237 459 26 {X=0,Y=0,Width=0,Height=0} +52 289 459 0.0335113922662561 0.0335212414444026 0.0334782940413519 0.0335088120851453 0.0019958732416363 0.00203526754098963 3169072 1267562 1443 577 0 False 289 459 26 {X=0,Y=0,Width=0,Height=0} +53 342 459 0.0334769087801818 0.0335009048970221 0.0334477759975586 0.0334477759975586 0.00170856877289641 0.00171672080331163 3165811 1266793 1443 577 0 False 342 459 26 {X=0,Y=0,Width=0,Height=0} +54 395 459 0.0334663448419457 0.0334124713281789 0.0334325169756619 0.0334325169756619 0.00178641807462785 0.00169368438903045 3164812 1263449 1443 577 0 False 395 459 26 {X=0,Y=0,Width=0,Height=0} +55 447 460 0.033642209563473 0.0333738345327004 0.0336308842603189 0.0333104448004883 0.00234517603779148 0.00236507999928502 3181443 1261988 1443 577 0 False 447 460 26 {X=0,Y=0,Width=0,Height=0} +56 500 460 0.0336478986513319 0.0335321898587271 0.0334935530632486 0.0335545891508354 0.00275773545526104 0.00238874006995975 3181981 1267976 1443 577 0 False 500 460 26 {X=0,Y=0,Width=0,Height=0} +57 553 460 0.0335436656791658 0.0333168181527883 0.0336003662165255 0.0333104448004883 0.00215609877758437 0.002054760764226 3172124 1259832 1443 577 0 False 553 460 26 {X=0,Y=0,Width=0,Height=0} +58 605 460 0.033661455176676 0.0335968225268649 0.0335545891508354 0.0335393301289387 0.00210195052452732 0.00219174675579318 3183263 1270420 1443 577 0 False 605 460 26 {X=0,Y=0,Width=0,Height=0} +59 658 460 0.0335793440851807 0.0335942044277873 0.0335545891508354 0.0335698481727321 0.00188806079324185 0.00189100030872251 3175498 1270321 1443 577 0 False 658 460 26 {X=0,Y=0,Width=0,Height=0} +60 711 460 0.0334153016689066 0.0335305237956777 0.0334325169756619 0.0335393301289387 0.00177617713002355 0.00177262068465005 3159985 1267913 1443 577 0 False 711 460 26 {X=0,Y=0,Width=0,Height=0} +61 237 511 0.0335550332803709 0.0334436769535482 0.0335698481727321 0.0335393301289387 0.00202492540855965 0.00209640721970004 3173199 1264629 1443 577 0 False 237 511 26 {X=0,Y=0,Width=0,Height=0} +62 289 511 0.0334660910536397 0.0332316373737081 0.0334477759975586 0.0332036316472114 0.00169872663002895 0.00156394900450013 3164788 1256611 1443 577 0 False 289 511 26 {X=0,Y=0,Width=0,Height=0} +63 342 511 0.0336033270800952 0.0335570221317964 0.0335545891508354 0.0335545891508354 0.00156144619153407 0.00149852372004002 3177766 1268915 1443 577 0 False 342 511 26 {X=0,Y=0,Width=0,Height=0} +64 395 511 0.0335943281697459 0.0334770511054262 0.0335851071946288 0.0334019989318685 0.00158951134203254 0.00151658520216206 3176915 1265891 1443 577 0 False 395 511 26 {X=0,Y=0,Width=0,Height=0} +65 447 512 0.0335394781721172 0.0335706679815342 0.0335393301289387 0.0336461432822156 0.00217391260069148 0.00183937009373426 3171728 1269431 1443 577 0 False 447 512 26 {X=0,Y=0,Width=0,Height=0} +66 500 512 0.0335239336383763 0.0335076484855553 0.0334477759975586 0.0335393301289387 0.00251239421793445 0.0024734313337949 3170258 1267048 1443 577 0 False 500 512 26 {X=0,Y=0,Width=0,Height=0} +67 553 512 0.0335919806279156 0.0333372075910593 0.0335698481727321 0.0333104448004883 0.00223968816893539 0.00213166615647188 3176693 1260603 1443 577 0 False 553 512 26 {X=0,Y=0,Width=0,Height=0} +68 605 512 0.0337191391437214 0.0338071167073199 0.0337376974135958 0.0337834744792859 0.00224543128392254 0.00237247691731622 3188718 1278372 1443 577 0 False 605 512 26 {X=0,Y=0,Width=0,Height=0} +69 658 512 0.0336163337307764 0.0334071029027975 0.0335698481727321 0.0334630350194553 0.00215933158699022 0.00207715314455004 3178996 1263246 1443 577 0 False 658 512 26 {X=0,Y=0,Width=0,Height=0} +70 711 512 0.0335902252587993 0.0334592004298972 0.0335851071946288 0.0334172579537652 0.00202993861298182 0.00196579619520616 3176527 1265216 1443 577 0 False 711 512 26 {X=0,Y=0,Width=0,Height=0} +71 236 563 0.0333906207561506 0.0335130698018271 0.0333104448004883 0.0334782940413519 0.00205490282952924 0.00213355390799223 3157651 1267253 1443 577 0 False 236 563 26 {X=0,Y=0,Width=0,Height=0} +72 289 563 0.0333500674997585 0.033496144716881 0.0333562218661784 0.0335088120851453 0.00172242525991939 0.00156898777705818 3153816 1266613 1443 577 0 False 289 563 26 {X=0,Y=0,Width=0,Height=0} +73 342 563 0.0334851780491515 0.0334482784610179 0.0335393301289387 0.0334019989318685 0.00161721584801227 0.0017374864021662 3166593 1264803 1443 577 0 False 342 563 26 {X=0,Y=0,Width=0,Height=0} +74 394 564 0.0335057137529099 0.0335233041891304 0.0334477759975586 0.0334782940413519 0.00178078046601141 0.00156216353604015 3168535 1267640 1443 577 0 False 394 564 26 {X=0,Y=0,Width=0,Height=0} +75 447 564 0.0335807504953763 0.0336914443298916 0.0336156252384222 0.0336461432822156 0.0020637348101805 0.00222261871696511 3175631 1273998 1443 577 0 False 447 564 26 {X=0,Y=0,Width=0,Height=0} +76 500 564 0.0334691682368496 0.0337761755364029 0.0334325169756619 0.0336614023041123 0.00254849105424939 0.00273635050517717 3165079 1277202 1443 577 0 False 500 564 26 {X=0,Y=0,Width=0,Height=0} +77 552 564 0.033627468692701 0.0332334356639836 0.0337071793698024 0.0332036316472114 0.00228254241083199 0.0022096539028615 3180049 1256679 1443 577 0 False 552 564 26 {X=0,Y=0,Width=0,Height=0} +78 605 564 0.0336874367545002 0.0372351604359214 0.0336614023041123 0.0340581368734264 0.00208908392103428 0.0150241296134048 3185720 1407999 1443 577 0 False 605 564 26 {X=0,Y=0,Width=0,Height=0} +79 658 564 0.0335761823058687 0.0333335052287273 0.0335088120851453 0.0332188906691081 0.00181232777899678 0.00196012686716077 3175199 1260463 1443 577 0 False 658 564 26 {X=0,Y=0,Width=0,Height=0} +80 710 564 0.0336426219694702 0.0335500140888109 0.0336003662165255 0.0335088120851453 0.00190941377334186 0.00197469353201063 3181482 1268650 1443 577 0 False 710 564 26 {X=0,Y=0,Width=0,Height=0} +81 237 619 0.0336940035269172 0.0351723644758273 0.0334630350194553 0.0350194552529183 0.00286110104605682 0.0026216891448557 3186341 1984623 1443 861 0 True 236 615 32 {X=0,Y=0,Width=0,Height=0} +82 289 615 0.0342061166048348 0.0337857752330207 0.0336308842603189 0.0337834744792859 0.00320536232885411 0.00172912589203953 3234770 1277565 1443 577 0 False 289 615 26 {X=0,Y=0,Width=0,Height=0} +83 342 615 0.0333521401042573 0.0335039990141138 0.0333409628442817 0.0334325169756619 0.00175245689930168 0.00188208063088357 3154012 1266910 1443 577 0 False 342 615 26 {X=0,Y=0,Width=0,Height=0} +84 394 616 0.0335719102027182 0.0334887135467719 0.0335393301289387 0.0335088120851453 0.0019358020473715 0.0020502800467047 3174795 1266332 1443 577 0 False 394 616 26 {X=0,Y=0,Width=0,Height=0} +85 447 616 0.0336087623796482 0.033511086393435 0.0336156252384222 0.0334019989318685 0.00203315278591157 0.00203120371848201 3178280 1267178 1443 577 0 False 447 616 26 {X=0,Y=0,Width=0,Height=0} +86 500 616 0.0335553505157534 0.0336438425284808 0.033524071107042 0.0336308842603189 0.00207915489586958 0.00196395824748461 3173229 1272198 1443 577 0 False 500 616 26 {X=0,Y=0,Width=0,Height=0} +87 552 616 0.0334617132053616 0.0335443547635321 0.0333867399099718 0.0333867399099718 0.00190945281542793 0.00182816308484916 3164374 1268436 1443 577 0 False 552 616 26 {X=0,Y=0,Width=0,Height=0} +88 605 616 0.0336017832012339 0.033628689288365 0.0335698481727321 0.0335545891508354 0.00184987254448141 0.00180265424904289 3177620 1271625 1443 577 0 False 605 616 26 {X=0,Y=0,Width=0,Height=0} +89 658 616 0.0336335596120444 0.0335687374640325 0.0335851071946288 0.0335545891508354 0.0016664651573668 0.00163079134652026 3180625 1269358 1443 577 0 False 658 616 26 {X=0,Y=0,Width=0,Height=0} +90 710 616 0.0335080718692529 0.0333203353970037 0.0335698481727321 0.0333409628442817 0.00181948702703962 0.0017806292827812 3168758 1259965 1443 577 0 False 710 616 26 {X=0,Y=0,Width=0,Height=0} +91 238 673 0.0332668355099117 0.0361838062254976 0.0331120775158312 0.0357824063477531 0.00247771020061855 0.0039373927878716 3145945 1776108 1443 749 0 True 236 667 31 {X=0,Y=0,Width=0,Height=0} +92 289 667 0.0333502366919625 0.0331950368775122 0.0333104448004883 0.0332188906691081 0.00190944292086021 0.00168724585826089 3153832 1255227 1443 577 0 False 289 667 26 {X=0,Y=0,Width=0,Height=0} +93 341 668 0.0333099477983891 0.0334437827353291 0.0332188906691081 0.0334477759975586 0.00204719690815513 0.00204806016929243 3150022 1264633 1443 577 0 False 341 668 26 {X=0,Y=0,Width=0,Height=0} +94 394 668 0.0333040683693007 0.0335815635049682 0.0333104448004883 0.0335698481727321 0.00189620446653587 0.00192496348222569 3149466 1269843 1443 577 0 False 394 668 26 {X=0,Y=0,Width=0,Height=0} +95 447 668 0.0334389885774642 0.0334970967529092 0.0334630350194553 0.0334172579537652 0.00208829312528207 0.00179693239009585 3162225 1266649 1443 577 0 False 447 668 26 {X=0,Y=0,Width=0,Height=0} +96 500 668 0.0333925241684454 0.0334951133445171 0.0333714808880751 0.0333867399099718 0.00182771364541378 0.00177126158381105 3157831 1266574 1443 577 0 False 500 668 26 {X=0,Y=0,Width=0,Height=0} +97 552 668 0.033544458767622 0.0335500140888109 0.0335393301289387 0.0334477759975586 0.00158114364214785 0.00160484395569318 3172199 1268650 1443 577 0 False 552 668 26 {X=0,Y=0,Width=0,Height=0} +98 605 668 0.0334274094860041 0.0334771304417619 0.0334019989318685 0.0333714808880751 0.00156587217127668 0.00149455231924036 3161130 1265894 1443 577 0 False 605 668 26 {X=0,Y=0,Width=0,Height=0} +99 658 668 0.0334607932227525 0.0335801618963711 0.0334172579537652 0.0335851071946288 0.00155356118559786 0.00147074480793936 3164287 1269790 1443 577 0 False 658 668 26 {X=0,Y=0,Width=0,Height=0} +100 712 672 0.0334340820035487 0.0352619336937901 0.0334172579537652 0.0347447928587778 0.00171736414456526 0.00293392175380735 3161761 1989677 1443 861 0 True 710 669 32 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D01_1.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D01_1.csv new file mode 100644 index 0000000..3d0dc29 --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D01_1.csv @@ -0,0 +1,101 @@ + ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour +1 231 230 0.236400461341667 0.951545870950323 0.236148622873274 1 0.00674094514056463 0.140447520676048 20124763 53691580 1299 861 80 True 229 232 33 {X=0,Y=0,Width=0,Height=0} +2 282 232 0.232144051744882 0.23205177383485 0.231952391851682 0.232135500114443 0.0048611864145578 0.00415101462722028 19762415 8774735 1299 577 0 False 282 232 27 {X=0,Y=0,Width=0,Height=0} +3 335 232 0.231144368495864 0.231153501396782 0.231036850537881 0.231067368581674 0.00399000500017033 0.00357399409556236 19677312 8740768 1299 577 0 False 335 232 27 {X=0,Y=0,Width=0,Height=0} +4 388 232 0.231405804055012 0.231041584272576 0.231174181734951 0.230960555428397 0.00413266315166338 0.00342693800338056 19699568 8736536 1299 577 0 False 388 232 27 {X=0,Y=0,Width=0,Height=0} +5 441 232 0.231389064943231 0.231616931378962 0.231158922713054 0.231296253910124 0.00482405631594465 0.00455273730147691 19698143 8758292 1299 577 0 False 441 232 27 {X=0,Y=0,Width=0,Height=0} +6 494 232 0.23171630576848 0.231149032116539 0.231494621194781 0.231036850537881 0.00620526812910525 0.00634921842380081 19726001 8740599 1299 577 0 False 494 232 27 {X=0,Y=0,Width=0,Height=0} +7 547 232 0.231853860153707 0.231546507158319 0.231738765545129 0.231738765545129 0.0053625872495381 0.00515297546085228 19737711 8755629 1299 577 0 False 547 232 27 {X=0,Y=0,Width=0,Height=0} +8 601 233 0.231855563431748 0.231711764745551 0.231891355764096 0.231540398260472 0.00456644457693957 0.00436695624373502 19737856 8761878 1299 577 0 False 601 233 27 {X=0,Y=0,Width=0,Height=0} +9 654 233 0.232611560453478 0.231629202065548 0.232669565880827 0.231494621194781 0.00398231976205613 0.00387643813305102 19802214 8758756 1299 577 0 False 654 233 27 {X=0,Y=0,Width=0,Height=0} +10 706 232 0.234739448089753 0.95353167048984 0.234775310902571 1 0.00441000801369919 0.126854955211558 19983361 53803630 1299 861 82 True 707 233 33 {X=0,Y=0,Width=0,Height=0} +11 229 284 0.231239810799875 0.230960714101068 0.231113145647364 0.230884260318914 0.00500208433098505 0.00520672072753801 19685437 8733478 1299 577 0 False 229 284 27 {X=0,Y=0,Width=0,Height=0} +12 282 284 0.231836016847887 0.231161276357679 0.231662470435645 0.231311512932021 0.00389381687823305 0.00380382309079042 19736192 8741062 1299 577 0 False 282 284 27 {X=0,Y=0,Width=0,Height=0} +13 335 285 0.231543205732553 0.231140834028518 0.231387808041505 0.231158922713054 0.00367776184714908 0.00330446791587391 19711265 8740289 1299 577 0 False 335 285 27 {X=0,Y=0,Width=0,Height=0} +14 388 285 0.231980337358297 0.232119315501963 0.231876096742199 0.232104982070649 0.00376159519771347 0.00333468012858457 19748478 8777289 1299 577 0 False 388 285 27 {X=0,Y=0,Width=0,Height=0} +15 441 285 0.232035781995212 0.231814822645605 0.231845578698405 0.231784542610819 0.00393088325036467 0.00382099207562931 19753198 8765775 1299 577 0 False 441 285 27 {X=0,Y=0,Width=0,Height=0} +16 494 285 0.232464902340792 0.233238989207482 0.232547493705653 0.233264667734798 0.00509073899368022 0.00535926208074104 19789729 8819628 1299 577 0 False 494 285 27 {X=0,Y=0,Width=0,Height=0} +17 547 285 0.233154659466852 0.232667794035997 0.232593270771344 0.232715342946517 0.00814688748959346 0.00479503276586225 19848448 8798029 1299 577 0 False 547 285 27 {X=0,Y=0,Width=0,Height=0} +18 600 285 0.232265172433702 0.232587188318941 0.232257572289616 0.232455939574273 0.00421499028397221 0.00438198944572924 19772726 8794981 1299 577 0 False 600 285 27 {X=0,Y=0,Width=0,Height=0} +19 654 285 0.232498991395098 0.232307607071988 0.231876096742199 0.232257572289616 0.00773570332455012 0.0033696258652442 19792631 8784409 1299 577 0 False 654 285 27 {X=0,Y=0,Width=0,Height=0} +20 707 285 0.231974475732487 0.232204628508269 0.231952391851682 0.23224231326772 0.00357581403115363 0.0034307009808867 19747979 8780515 1299 577 0 False 707 285 27 {X=0,Y=0,Width=0,Height=0} +21 228 337 0.231061976825669 0.230907188519926 0.230746929121843 0.230792706187533 0.00496526836085419 0.00475736050890968 19670298 8731454 1299 577 0 False 228 337 27 {X=0,Y=0,Width=0,Height=0} +22 282 337 0.231502738195652 0.231583001872734 0.231265735866331 0.231540398260472 0.00414322378635814 0.00371370317279317 19707820 8757009 1299 577 0 False 282 337 27 {X=0,Y=0,Width=0,Height=0} +23 335 337 0.232320570083636 0.232612813955367 0.23224231326772 0.23242542153048 0.0038317134317308 0.00363966580257273 19777442 8795950 1299 577 0 False 335 337 27 {X=0,Y=0,Width=0,Height=0} +24 388 337 0.234551065538439 0.256699087460244 0.233356221866178 0.237949187457084 0.0092938740360409 0.0373984365928866 19967324 9706741 1299 577 0 False 388 337 27 {X=0,Y=0,Width=0,Height=0} +25 441 337 0.233204512653095 0.232692229627388 0.233096818493935 0.232761120012207 0.00418143011201267 0.00407928629007231 19852692 8798953 1299 577 0 False 441 337 27 {X=0,Y=0,Width=0,Height=0} +26 494 337 0.233220171064325 0.233243379151389 0.233188372625315 0.233112077515831 0.00474233476494223 0.00497182745943064 19854025 8819794 1299 577 0 False 494 337 27 {X=0,Y=0,Width=0,Height=0} +27 547 337 0.23306774529979 0.233012245960095 0.233020523384451 0.232730601968414 0.00436671454476193 0.00429415087234247 19841049 8811054 1299 577 0 False 547 337 27 {X=0,Y=0,Width=0,Height=0} +28 600 338 0.233124470331921 0.232891390275402 0.233188372625315 0.232730601968414 0.00428107902122216 0.00440572104323224 19845878 8806484 1299 577 0 False 600 338 27 {X=0,Y=0,Width=0,Height=0} +29 653 338 0.232943323775594 0.232814222466226 0.232623788815137 0.232776379034104 0.00626808625512624 0.00366063914637025 19830457 8803566 1299 577 0 False 653 338 27 {X=0,Y=0,Width=0,Height=0} +30 707 338 0.232460262376473 0.231985237094656 0.232410162508583 0.232150759136339 0.00387811546608357 0.00339434725733895 19789334 8772219 1299 577 0 False 707 338 27 {X=0,Y=0,Width=0,Height=0} +31 228 389 0.231390039923075 0.231663343135338 0.231219958800641 0.231601434348058 0.00539448985560845 0.00542810254696008 19698226 8760047 1299 577 0 False 228 389 27 {X=0,Y=0,Width=0,Height=0} +32 281 389 0.231656420861914 0.231794115861991 0.231616693369955 0.231769283588922 0.00439915683648352 0.00442319238527649 19720903 8764992 1299 577 0 False 281 389 27 {X=0,Y=0,Width=0,Height=0} +33 335 390 0.23264347635994 0.232003907578987 0.232639047837034 0.231952391851682 0.00441547780723283 0.00466486485828985 19804931 8772925 1299 577 0 False 335 390 27 {X=0,Y=0,Width=0,Height=0} +34 388 390 0.233522461802962 0.234021536377231 0.233447775997559 0.233432516975662 0.00467396705642191 0.00436886363404496 19879759 8849219 1299 577 0 False 388 390 27 {X=0,Y=0,Width=0,Height=0} +35 441 390 0.233572373722931 0.233713182485869 0.233493553063249 0.233768215457389 0.00390378193934064 0.00384603824498683 19884008 8837559 1299 577 0 False 441 390 27 {X=0,Y=0,Width=0,Height=0} +36 494 390 0.23353459619066 0.233555964313987 0.233356221866178 0.233401998931868 0.00444763479915803 0.00448125903964771 19880792 8831614 1299 577 0 False 494 390 27 {X=0,Y=0,Width=0,Height=0} +37 547 390 0.23456950792826 0.233638156757757 0.233600366216526 0.233539330128939 0.009865150088284 0.00368557607235401 19968894 8834722 1299 577 0 False 547 390 27 {X=0,Y=0,Width=0,Height=0} +38 600 390 0.233479503956098 0.2334386787644 0.233295185778592 0.233401998931868 0.00394215767435022 0.00412537298076199 19876102 8827179 1299 577 0 False 600 390 27 {X=0,Y=0,Width=0,Height=0} +39 653 390 0.233147188536962 0.232761596030221 0.232928969253071 0.232639047837034 0.00427286814293115 0.00395843432287821 19847812 8801576 1299 577 0 False 653 390 27 {X=0,Y=0,Width=0,Height=0} +40 706 390 0.231919818127495 0.232503911611917 0.231815060654612 0.232486457618067 0.00361341897016593 0.0038133383200867 19743326 8791832 1299 577 0 False 706 390 27 {X=0,Y=0,Width=0,Height=0} +41 228 442 0.231613815417403 0.231492320441047 0.231464103150988 0.231418326085298 0.00605101805981611 0.00620543702034958 19717276 8753580 1299 577 0 False 228 442 27 {X=0,Y=0,Width=0,Height=0} +42 281 442 0.232165759729844 0.23225799541674 0.232104982070649 0.232196536202029 0.00516267333048157 0.00540413505399738 19764263 8782533 1299 577 0 False 281 442 27 {X=0,Y=0,Width=0,Height=0} +43 335 442 0.233690017375198 0.235479341545437 0.232990005340658 0.234897383077745 0.00669456552264562 0.00602162110323008 19894023 8904344 1299 577 0 False 335 442 27 {X=0,Y=0,Width=0,Height=0} +44 388 442 0.233966923397654 0.234017331551439 0.233981841763943 0.234210727092393 0.00476258525574464 0.00520071615630654 19917596 8849060 1299 577 0 False 388 442 27 {X=0,Y=0,Width=0,Height=0} +45 441 442 0.234401329778533 0.234298182179763 0.233875028610666 0.234424353398947 0.00585730598455433 0.00540279281997947 19954577 8859680 1299 577 0 False 441 442 27 {X=0,Y=0,Width=0,Height=0} +46 494 442 0.234131401322672 0.2342885560377 0.234210727092393 0.234760051880674 0.00522466193502582 0.00519309237493944 19931598 8859316 1299 577 0 False 494 442 27 {X=0,Y=0,Width=0,Height=0} +47 547 442 0.234000284153764 0.233723337536837 0.233737697413596 0.233508812085145 0.00515582304375213 0.0047537018808184 19920436 8837943 1299 577 0 False 547 442 27 {X=0,Y=0,Width=0,Height=0} +48 600 443 0.233923507427731 0.233540863964762 0.23413443198291 0.233401998931868 0.00471381895552627 0.00492480755355388 19913900 8831043 1299 577 0 False 600 443 27 {X=0,Y=0,Width=0,Height=0} +49 653 443 0.234310210276722 0.233141617078151 0.233798733501183 0.232806897077897 0.00549110721282109 0.00406052045900362 19946820 8815946 1299 577 0 False 653 443 27 {X=0,Y=0,Width=0,Height=0} +50 706 443 0.232117809516308 0.234417054456064 0.232211795223926 0.233386739909972 0.0046120012776971 0.00688611321930372 19760181 8864175 1299 577 0 False 706 443 27 {X=0,Y=0,Width=0,Height=0} +51 228 494 0.231615777123836 0.231278165225588 0.231403067063401 0.231052109559777 0.0056257709260379 0.00566933975522655 19717443 8745482 1299 577 0 False 228 494 27 {X=0,Y=0,Width=0,Height=0} +52 281 495 0.236772633466958 0.232224145246848 0.233310444800488 0.232272831311513 0.0257739890109209 0.00399757257557933 20156446 8781253 1299 577 0 False 281 495 27 {X=0,Y=0,Width=0,Height=0} +53 334 495 0.23359221397542 0.233463801937367 0.233569848172732 0.233310444800488 0.00397254756438978 0.00410156284128495 19885697 8828129 1299 577 0 False 334 495 27 {X=0,Y=0,Width=0,Height=0} +54 388 495 0.234279527778497 0.234839864234373 0.234241245136187 0.234714274814984 0.00413880181473845 0.0039021454485211 19944208 8880163 1299 577 0 False 388 495 27 {X=0,Y=0,Width=0,Height=0} +55 441 495 0.235345615377617 0.234760765907696 0.234454871442741 0.235065232318608 0.00824008690019922 0.00532253330412925 20034964 8877172 1299 577 0 False 441 495 27 {X=0,Y=0,Width=0,Height=0} +56 494 495 0.234432082757229 0.234354960550668 0.23440909437705 0.234393835355154 0.0057618979482399 0.00556580394302943 19957195 8861827 1299 577 0 False 494 495 27 {X=0,Y=0,Width=0,Height=0} +57 547 495 0.234264315743581 0.234540052221821 0.23422598611429 0.234744792858778 0.00499166545923058 0.00487051512645054 19942913 8868826 1299 577 0 False 547 495 27 {X=0,Y=0,Width=0,Height=0} +58 600 495 0.234011161639735 0.233896925439315 0.233920805676356 0.23399710078584 0.00503044746277292 0.00510140028249248 19921362 8844507 1299 577 0 False 600 495 27 {X=0,Y=0,Width=0,Height=0} +59 653 495 0.232687973030413 0.232947137273943 0.232623788815137 0.233020523384451 0.00452594926673726 0.00462669254562013 19808719 8808592 1299 577 0 False 653 495 27 {X=0,Y=0,Width=0,Height=0} +60 706 495 0.232081770502314 0.231869908508015 0.232135500114443 0.232013427939269 0.00468174313145678 0.00435811250775045 19757113 8767858 1299 577 0 False 706 495 27 {X=0,Y=0,Width=0,Height=0} +61 228 547 0.233748022802547 0.232509941173429 0.233432516975662 0.232349126420996 0.00597959796955644 0.00506492648109024 19898961 8792060 1299 577 0 False 228 547 27 {X=0,Y=0,Width=0,Height=0} +62 281 547 0.240744701351633 0.232955176689292 0.233432516975662 0.232974746318761 0.0414195613925015 0.00373692135223251 20494588 8808896 1299 577 0 False 281 547 27 {X=0,Y=0,Width=0,Height=0} +63 334 547 0.233857020850414 0.233911523325081 0.233875028610666 0.233966582742046 0.00371347581181152 0.00352942047408859 19908240 8845059 1299 577 0 False 334 547 27 {X=0,Y=0,Width=0,Height=0} +64 387 547 0.23400579337722 0.234289428737393 0.234058136873426 0.234348058289464 0.00360318074071639 0.00347101609375688 19920905 8859349 1299 577 0 False 387 547 27 {X=0,Y=0,Width=0,Height=0} +65 441 547 0.235341128120985 0.234424459180728 0.234699015793088 0.23427176317998 0.00691132166542613 0.00442324461850693 20034582 8864455 1299 577 0 False 441 547 27 {X=0,Y=0,Width=0,Height=0} +66 494 547 0.236096208896597 0.234983727456415 0.234546425574121 0.234943160143435 0.0142418869142844 0.00632507663032627 20098862 8885603 1299 577 0 False 494 547 27 {X=0,Y=0,Width=0,Height=0} +67 547 548 0.234316882427944 0.233579712323802 0.23436331731136 0.233463035019455 0.00482565821630687 0.00486834373664505 19947388 8832512 1299 577 0 False 547 548 27 {X=0,Y=0,Width=0,Height=0} +68 600 548 0.232945132774341 0.2334120746465 0.233020523384451 0.233554589150835 0.00406294060200151 0.00436821929673905 19830611 8826173 1299 577 0 False 600 548 27 {X=0,Y=0,Width=0,Height=0} +69 653 548 0.232484002548339 0.232268018240481 0.232349126420996 0.232303349355306 0.00396692598172557 0.00370501582053841 19791355 8782912 1299 577 0 False 653 548 27 {X=0,Y=0,Width=0,Height=0} +70 706 548 0.231948691626973 0.232426056221165 0.232074464026856 0.23256275272755 0.0040482151818551 0.0038198649619285 19745784 8788888 1299 577 0 False 706 548 27 {X=0,Y=0,Width=0,Height=0} +71 228 599 0.23261064420736 0.232393184532747 0.232730601968414 0.232349126420996 0.00489775306538211 0.00480630110116449 19802136 8787645 1299 577 0 False 228 599 27 {X=0,Y=0,Width=0,Height=0} +72 281 600 0.232881794324713 0.232885572277451 0.232944228274968 0.232974746318761 0.00399010766792841 0.00386008497764433 19825219 8806264 1299 577 0 False 281 600 27 {X=0,Y=0,Width=0,Height=0} +73 334 600 0.233179844488366 0.233211776844342 0.233203631647211 0.233173113603418 0.00357044481427553 0.00335536004812903 19850592 8818599 1299 577 0 False 334 600 27 {X=0,Y=0,Width=0,Height=0} +74 387 600 0.233887480160482 0.234007176500472 0.233981841763943 0.234103913939117 0.0040146479832042 0.00407266635765581 19910833 8848676 1299 577 0 False 387 600 27 {X=0,Y=0,Width=0,Height=0} +75 440 600 0.234474300559151 0.234164685572251 0.234378576333257 0.233920805676356 0.00454547301881898 0.0042903546181115 19960789 8854632 1299 577 0 False 440 600 27 {X=0,Y=0,Width=0,Height=0} +76 494 600 0.234013076359188 0.234491154593594 0.23404287785153 0.234470130464637 0.00517959284992321 0.00543528504680399 19921525 8866977 1299 577 0 False 494 600 27 {X=0,Y=0,Width=0,Height=0} +77 547 600 0.233507884092282 0.233901712064901 0.233432516975662 0.233600366216526 0.0045827857493791 0.00464034783320131 19878518 8844688 1299 577 0 False 547 600 27 {X=0,Y=0,Width=0,Height=0} +78 600 600 0.232567157756966 0.232699052552257 0.232639047837034 0.232837415121691 0.0039051796150183 0.00405642982218168 19798434 8799211 1299 577 0 False 600 600 27 {X=0,Y=0,Width=0,Height=0} +79 653 600 0.232545120863141 0.232196060184015 0.23242542153048 0.2323338673991 0.00360145051108303 0.00347278164198109 19796558 8780191 1299 577 0 False 653 600 27 {X=0,Y=0,Width=0,Height=0} +80 706 600 0.23147348880033 0.232000284552991 0.231494621194781 0.231754024567025 0.00367799554723842 0.00363902737585846 19705330 8772788 1299 577 0 False 706 600 27 {X=0,Y=0,Width=0,Height=0} +81 229 654 0.239435632329932 0.933160610421132 0.238742656595712 1 0.00693980427207055 0.173969569209266 20383147 52654180 1299 861 79 True 228 652 32 {X=0,Y=0,Width=0,Height=0} +82 281 652 0.234576931871169 0.233376955095237 0.234119172961013 0.233295185778592 0.00514416244169391 0.00415092735770905 19969526 8824845 1299 577 0 False 281 652 27 {X=0,Y=0,Width=0,Height=0} +83 334 652 0.232595514399659 0.232991221831138 0.232593270771344 0.232913710231174 0.00385290419582313 0.00343424800696105 19800848 8810259 1299 577 0 False 334 652 27 {X=0,Y=0,Width=0,Height=0} +84 387 652 0.233138202276954 0.233025177782811 0.233020523384451 0.233203631647211 0.00409827221697991 0.00411394638185777 19847047 8811543 1299 577 0 False 387 652 27 {X=0,Y=0,Width=0,Height=0} +85 440 652 0.233508812085145 0.23397742537459 0.233371480888075 0.233829251544976 0.00433617586715339 0.00445852726864227 19878597 8847551 1299 577 0 False 440 652 27 {X=0,Y=0,Width=0,Height=0} +86 493 652 0.233387397727698 0.23371439897635 0.233585107194629 0.233585107194629 0.00454970237458635 0.00438564059980922 19868261 8837605 1299 577 0 False 493 652 27 {X=0,Y=0,Width=0,Height=0} +87 547 653 0.232683650228213 0.233323984868445 0.232639047837034 0.233218890669108 0.00369084419149794 0.0036007908336692 19808351 8822842 1299 577 0 False 547 653 27 {X=0,Y=0,Width=0,Height=0} +88 600 653 0.232386927446757 0.23259694668823 0.232349126420996 0.232593270771344 0.00362077556634122 0.00355190381155335 19783091 8795350 1299 577 0 False 600 653 27 {X=0,Y=0,Width=0,Height=0} +89 653 653 0.233041679272392 0.232129920125499 0.23270008392462 0.231967650873579 0.00412393226139645 0.0037203617012297 19838830 8777690 1299 577 0 False 653 653 27 {X=0,Y=0,Width=0,Height=0} +90 706 653 0.232118420347054 0.232248924629027 0.232211795223926 0.232211795223926 0.00371087672226126 0.00359200579226103 19760233 8782190 1299 577 0 False 706 653 27 {X=0,Y=0,Width=0,Height=0} +91 229 709 0.238928243421691 0.986888344195455 0.238437476157778 1 0.00722659721577224 0.0592989114688976 20339953 48442120 1299 749 91 True 228 704 31 {X=0,Y=0,Width=0,Height=0} +92 281 705 0.233964738503064 0.232742026400752 0.233554589150835 0.232578011749447 0.00508897522688432 0.00383153378381422 19917410 8800836 1299 577 0 False 281 705 27 {X=0,Y=0,Width=0,Height=0} +93 334 705 0.232555563719543 0.232766938010157 0.232623788815137 0.23265430685893 0.00406172864880582 0.00431018078324167 19797447 8801778 1299 577 0 False 334 705 27 {X=0,Y=0,Width=0,Height=0} +94 387 705 0.232090122438086 0.232515785616825 0.232272831311513 0.232623788815137 0.00434764030790959 0.00443249010387463 19757824 8792281 1299 577 0 False 387 705 27 {X=0,Y=0,Width=0,Height=0} +95 440 705 0.232775204359593 0.232814830711466 0.23270008392462 0.233051041428244 0.00423502439808965 0.00421694098579546 19816145 8803589 1299 577 0 False 440 705 27 {X=0,Y=0,Width=0,Height=0} +96 493 705 0.232920311901925 0.232334740098792 0.232761120012207 0.23242542153048 0.00521801283530144 0.00457196656151144 19828498 8785435 1299 577 0 False 493 705 27 {X=0,Y=0,Width=0,Height=0} +97 546 705 0.232556327257976 0.232791347156103 0.232486457618067 0.232883192187381 0.0040489247965008 0.00421067172611524 19797512 8802701 1299 577 0 False 546 705 27 {X=0,Y=0,Width=0,Height=0} +98 600 705 0.232177107085619 0.232345027376986 0.232074464026856 0.23237964446479 0.00411658768599265 0.00360059794266028 19765229 8785824 1299 577 0 False 600 705 27 {X=0,Y=0,Width=0,Height=0} +99 653 705 0.2343928838688 0.234241483145194 0.233875028610666 0.233249408712902 0.00539322610573458 0.00585539896869086 19953858 8857536 1299 577 0 False 653 705 27 {X=0,Y=0,Width=0,Height=0} +100 706 709 0.235503057002314 0.947935348888852 0.235324635690852 1 0.00537112902819553 0.14240796901308 20048367 53487854 1299 861 82 True 706 705 33 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D01_2.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D01_2.csv new file mode 100644 index 0000000..92c8d4c --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D01_2.csv @@ -0,0 +1,101 @@ + ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour +1 231 230 0.0239338756923018 0.160828424881705 0.0239566643778134 0.170229648279545 0.0021563173174692 0.0406040483626715 2037490 9074846 1299 861 0 True 229 232 33 {X=0,Y=0,Width=0,Height=0} +2 282 232 0.0234092895492204 0.0234274910187962 0.0233615625238422 0.0234836346990158 0.00176937091179964 0.0015718595727295 1992832 885880 1299 577 0 False 282 232 27 {X=0,Y=0,Width=0,Height=0} +3 335 232 0.0233647458917668 0.0234243175653688 0.0233463035019455 0.023422598611429 0.00147736396854617 0.00143452974353989 1989040 885760 1299 577 0 False 335 232 27 {X=0,Y=0,Width=0,Height=0} +4 388 232 0.023225417748028 0.0233619856509659 0.0232547493705653 0.0233005264362554 0.0015180019716271 0.00140194646130504 1977179 883403 1299 577 0 False 388 232 27 {X=0,Y=0,Width=0,Height=0} +5 441 232 0.023368540090437 0.0234032669909672 0.0234073395895323 0.0233920805676356 0.00196862021867772 0.00194957776600092 1989363 884964 1299 577 0 False 441 232 27 {X=0,Y=0,Width=0,Height=0} +6 494 232 0.0234127078520472 0.0234079478347726 0.0233615625238422 0.0233463035019455 0.00232025364332934 0.00232106774720057 1993123 885141 1299 577 0 False 494 232 27 {X=0,Y=0,Width=0,Height=0} +7 547 232 0.023313729777758 0.0233864741332472 0.0232089723048753 0.0233463035019455 0.00215934106026091 0.0021659771776504 1984697 884329 1299 577 0 False 547 232 27 {X=0,Y=0,Width=0,Height=0} +8 601 233 0.0234798052601102 0.0234996077479337 0.0234988937209125 0.0234378576333257 0.00183006959128599 0.00175739089294373 1998835 888607 1299 577 0 False 601 233 27 {X=0,Y=0,Width=0,Height=0} +9 654 233 0.0234156562850695 0.0231976800997628 0.0234378576333257 0.0232089723048753 0.00153344890811096 0.00142924528008399 1993374 877190 1299 577 0 False 654 233 27 {X=0,Y=0,Width=0,Height=0} +10 706 232 0.0238051666061416 0.152865005418193 0.0237888151369497 0.163668268863966 0.0015483046661446 0.0337979881260633 2026533 8625505 1299 861 0 True 707 233 33 {X=0,Y=0,Width=0,Height=0} +11 229 284 0.0233473019752798 0.0233869501512613 0.0233157854581521 0.0233615625238422 0.00195171150481779 0.00220572156669151 1987555 884347 1299 577 0 False 229 284 27 {X=0,Y=0,Width=0,Height=0} +12 282 284 0.0234480420613353 0.0233272627813812 0.0234836346990158 0.0233157854581521 0.00154322001386576 0.00158319763067315 1996131 882090 1299 577 0 False 282 284 27 {X=0,Y=0,Width=0,Height=0} +13 335 285 0.0234058594996486 0.0234758597381187 0.023422598611429 0.023422598611429 0.00143581214132744 0.00140038877958227 1992540 887709 1299 577 0 False 335 285 27 {X=0,Y=0,Width=0,Height=0} +14 388 285 0.0233997042052114 0.0234200598486871 0.0233615625238422 0.0234531166552224 0.00145684440616617 0.00140167219395602 1992016 885599 1299 577 0 False 388 285 27 {X=0,Y=0,Width=0,Height=0} +15 441 285 0.0233715707506752 0.0235650866703188 0.0234073395895323 0.0236057068741894 0.00157753261488383 0.00144344109947399 1989621 891083 1299 577 0 False 441 285 27 {X=0,Y=0,Width=0,Height=0} +16 494 285 0.0234386916522284 0.0232336459052732 0.0233768215457389 0.0231784542610819 0.00205501567162031 0.00215373293049347 1995335 878550 1299 577 0 False 494 285 27 {X=0,Y=0,Width=0,Height=0} +17 547 285 0.0233793470959374 0.0234113328517618 0.0233920805676356 0.0233768215457389 0.00193601059420597 0.0018349690121134 1990283 885269 1299 577 0 False 547 285 27 {X=0,Y=0,Width=0,Height=0} +18 600 285 0.0233601999014096 0.0235818795280387 0.0233768215457389 0.0235599298084993 0.00170567288198106 0.0017382981235587 1988653 891718 1299 577 0 False 600 285 27 {X=0,Y=0,Width=0,Height=0} +19 654 285 0.0234274147769237 0.0235859785720491 0.0233615625238422 0.0234988937209125 0.00163682381764751 0.00134337792884104 1994375 891873 1299 577 0 False 654 285 27 {X=0,Y=0,Width=0,Height=0} +20 707 285 0.0234406063716812 0.0236010789212744 0.0234378576333257 0.0236514839398795 0.0014626693950407 0.00141238148047033 1995498 892444 1299 577 0 False 707 285 27 {X=0,Y=0,Width=0,Height=0} +21 228 337 0.0233572162281519 0.0232847913963446 0.0233310444800488 0.023422598611429 0.00191897110542215 0.00204486359848818 1988399 880484 1299 577 0 False 228 337 27 {X=0,Y=0,Width=0,Height=0} +22 282 337 0.023397942193445 0.0233127177865057 0.0233768215457389 0.0233157854581521 0.00165905385478135 0.0014587929162477 1991866 881540 1299 577 0 False 282 337 27 {X=0,Y=0,Width=0,Height=0} +23 335 337 0.0235513546845696 0.023516453496544 0.0235294117647059 0.0235141527428092 0.00148655821541326 0.00132365008168085 2004926 889244 1299 577 0 False 335 337 27 {X=0,Y=0,Width=0,Height=0} +24 388 337 0.0235804748656951 0.0259079679994245 0.023575188830396 0.0246433203631647 0.00184895287669345 0.00414805953960234 2007405 979676 1299 577 0 False 388 337 27 {X=0,Y=0,Width=0,Height=0} +25 441 337 0.0234137415656168 0.0234496523018975 0.0233463035019455 0.0234531166552224 0.00158031194848604 0.00164933491822964 1993211 886718 1299 577 0 False 441 337 27 {X=0,Y=0,Width=0,Height=0} +26 494 337 0.0234671540156278 0.0233936144034589 0.0234836346990158 0.0235294117647059 0.00179654358685593 0.00201605224741904 1997758 884599 1299 577 0 False 494 337 27 {X=0,Y=0,Width=0,Height=0} +27 547 337 0.0236520242901545 0.0232275634528707 0.0236972610055695 0.0231631952391852 0.0016883655764135 0.00168449015626575 2013496 878320 1299 577 0 False 547 337 27 {X=0,Y=0,Width=0,Height=0} +28 600 338 0.0234857256196452 0.0235126717978764 0.0234683756771191 0.0233920805676356 0.00173695609770927 0.0016596022196765 1999339 889101 1299 577 0 False 600 338 27 {X=0,Y=0,Width=0,Height=0} +29 653 338 0.0235032400166028 0.0232828344333977 0.0234988937209125 0.0233615625238422 0.0015241202610876 0.00144006986790617 2000830 880410 1299 577 0 False 653 338 27 {X=0,Y=0,Width=0,Height=0} +30 707 338 0.0236205077730268 0.0234561314359784 0.0236362249179828 0.0234378576333257 0.00142056159392688 0.00139105007094973 2010813 886963 1299 577 0 False 707 338 27 {X=0,Y=0,Width=0,Height=0} +31 228 389 0.0234182170755033 0.0233876641782825 0.0233768215457389 0.0233310444800488 0.00208666768846957 0.00215654888330365 1993592 884374 1299 577 0 False 228 389 27 {X=0,Y=0,Width=0,Height=0} +32 281 389 0.0233904242765752 0.0233294577533351 0.0234378576333257 0.0233157854581521 0.00184349687644807 0.00164935210605084 1991226 882173 1299 577 0 False 281 389 27 {X=0,Y=0,Width=0,Height=0} +33 335 390 0.0235925387729221 0.0232719124645185 0.023575188830396 0.0232547493705653 0.00168343816976002 0.00166413010847006 2008432 879997 1299 577 0 False 335 390 27 {X=0,Y=0,Width=0,Height=0} +34 388 390 0.0235528700146887 0.0235424229237582 0.0235294117647059 0.0235446707866026 0.00172176913602406 0.00160436001865579 2005055 890226 1299 577 0 False 388 390 27 {X=0,Y=0,Width=0,Height=0} +35 441 390 0.0236365538268458 0.0235724913949827 0.0236057068741894 0.0234988937209125 0.00162841038057556 0.00157218201952755 2012179 891363 1299 577 0 False 441 390 27 {X=0,Y=0,Width=0,Height=0} +36 494 390 0.0234604348774254 0.0237877573191406 0.023422598611429 0.023773556115053 0.00174176544190494 0.00191899593247629 1997186 899503 1299 577 0 False 494 390 27 {X=0,Y=0,Width=0,Height=0} +37 547 390 0.0234842220362712 0.0233813701623182 0.0233920805676356 0.023422598611429 0.00182932427819606 0.00147143967446324 1999211 884136 1299 577 0 False 547 390 27 {X=0,Y=0,Width=0,Height=0} +38 600 390 0.0235173713509691 0.0235696881777885 0.0235294117647059 0.023575188830396 0.00160738650627792 0.00148208161434079 2002033 891257 1299 577 0 False 600 390 27 {X=0,Y=0,Width=0,Height=0} +39 653 390 0.0235708542814507 0.0233281090356285 0.0235904478522927 0.0232394903486687 0.00157266289028846 0.001553141907387 2006586 882122 1299 577 0 False 653 390 27 {X=0,Y=0,Width=0,Height=0} +40 706 390 0.0234481947690217 0.0235095776807847 0.0234378576333257 0.0235446707866026 0.00149277684330481 0.00139576847709089 1996144 888984 1299 577 0 False 706 390 27 {X=0,Y=0,Width=0,Height=0} +41 228 442 0.0233863951430028 0.0234652286691369 0.0233768215457389 0.023224231326772 0.00228784447351055 0.00259701089563766 1990883 887307 1299 577 0 False 228 442 27 {X=0,Y=0,Width=0,Height=0} +42 281 442 0.0233987409721125 0.0233941433123634 0.0233768215457389 0.0233768215457389 0.0020232051015645 0.00208174695766035 1991934 884619 1299 577 0 False 281 442 27 {X=0,Y=0,Width=0,Height=0} +43 335 442 0.0235637944876402 0.0237120440094521 0.0235141527428092 0.0236209658960861 0.00190972248144426 0.00178334395438976 2005985 896640 1299 577 0 False 335 442 27 {X=0,Y=0,Width=0,Height=0} +44 388 442 0.0235263576109775 0.0234305586904427 0.0234683756771191 0.0234531166552224 0.00188774965850001 0.00183157180070745 2002798 885996 1299 577 0 False 388 442 27 {X=0,Y=0,Width=0,Height=0} +45 441 442 0.0235792414574586 0.0238526544417307 0.0235294117647059 0.0238345922026398 0.00202757541298542 0.00212032981800009 2007300 901957 1299 577 0 False 441 442 27 {X=0,Y=0,Width=0,Height=0} +46 494 442 0.0235334878852587 0.0237158257081198 0.0234988937209125 0.0236972610055695 0.00206445004539334 0.00198851722126165 2003405 896783 1299 577 0 False 494 442 27 {X=0,Y=0,Width=0,Height=0} +47 547 442 0.0235416166328742 0.0235350710899847 0.0234378576333257 0.0235141527428092 0.00185144486599609 0.00177405562398929 2004097 889948 1299 577 0 False 547 442 27 {X=0,Y=0,Width=0,Height=0} +48 600 443 0.0235889560156638 0.0235170881872295 0.0235599298084993 0.0235141527428092 0.00177231396059688 0.00188383399238178 2008127 889268 1299 577 0 False 600 443 27 {X=0,Y=0,Width=0,Height=0} +49 653 443 0.0236235031930296 0.023520499649664 0.023575188830396 0.0234988937209125 0.00178124727225349 0.00169565742890458 2011068 889397 1299 577 0 False 653 443 27 {X=0,Y=0,Width=0,Height=0} +50 706 443 0.0233747541185997 0.0238489256339535 0.0233463035019455 0.0237430380712596 0.0019001536769265 0.00220180191563186 1989892 901816 1299 577 0 False 706 443 27 {X=0,Y=0,Width=0,Height=0} +51 228 494 0.0234815672718766 0.0235306811460768 0.0234683756771191 0.0234836346990158 0.00226580825761866 0.00226721951727287 1998985 889782 1299 577 0 False 228 494 27 {X=0,Y=0,Width=0,Height=0} +52 281 495 0.0240570168212803 0.0233816081713252 0.0237125200274662 0.0233005264362554 0.00305464286806995 0.00171161148668824 2047973 884145 1299 577 0 False 281 495 27 {X=0,Y=0,Width=0,Height=0} +53 334 495 0.0236815321138685 0.0233938788579111 0.0236820019836728 0.0233615625238422 0.00154824715316115 0.00164708477251206 2016008 884609 1299 577 0 False 334 495 27 {X=0,Y=0,Width=0,Height=0} +54 388 495 0.0236883569727769 0.0236645479898222 0.0236514839398795 0.0236972610055695 0.00168806337000258 0.0015327045390793 2016589 894844 1299 577 0 False 388 495 27 {X=0,Y=0,Width=0,Height=0} +55 441 495 0.0236455635803445 0.023731613638921 0.0236362249179828 0.0238040741588464 0.00227269673869219 0.00222928720199627 2012946 897380 1299 577 0 False 441 495 27 {X=0,Y=0,Width=0,Height=0} +56 494 495 0.0235795116325961 0.0234469813119295 0.0235446707866026 0.0235141527428092 0.00226162343350356 0.00240893224908146 2007323 886617 1299 577 0 False 494 495 27 {X=0,Y=0,Width=0,Height=0} +57 547 495 0.0236054014588165 0.0239172077735328 0.0235904478522927 0.0238498512245365 0.00194650415887428 0.00191323466221234 2009527 904398 1299 577 0 False 547 495 27 {X=0,Y=0,Width=0,Height=0} +58 600 495 0.0236754120596667 0.0235186749139432 0.0236057068741894 0.0235141527428092 0.00202965506014452 0.00195809615634034 2015487 889328 1299 577 0 False 600 495 27 {X=0,Y=0,Width=0,Height=0} +59 653 495 0.0235884509056241 0.0233119244231488 0.0236057068741894 0.0232089723048753 0.0018398976902885 0.00171140268797584 2008084 881510 1299 577 0 False 653 495 27 {X=0,Y=0,Width=0,Height=0} +60 706 495 0.0235920806498628 0.0233605311514783 0.0235446707866026 0.0234073395895323 0.00184676191798696 0.00174157500079567 2008393 883348 1299 577 0 False 706 495 27 {X=0,Y=0,Width=0,Height=0} +61 228 547 0.023543531352327 0.0234619758793739 0.0235599298084993 0.0234378576333257 0.00204262737513971 0.00212990656028445 2004260 887184 1299 577 0 False 228 547 27 {X=0,Y=0,Width=0,Height=0} +62 281 547 0.0244019482446633 0.0235185955776075 0.023773556115053 0.023575188830396 0.00443139500943104 0.00151869346643837 2077337 889325 1299 577 0 False 281 547 27 {X=0,Y=0,Width=0,Height=0} +63 334 547 0.0236560064367465 0.0234954293675876 0.023575188830396 0.0235599298084993 0.00146712444072602 0.0015247221684595 2013835 888449 1299 577 0 False 334 547 27 {X=0,Y=0,Width=0,Height=0} +64 387 547 0.0236287892283287 0.0235326909999142 0.0236209658960861 0.0234683756771191 0.00151656187222653 0.00148943847414023 2011518 889858 1299 577 0 False 387 547 27 {X=0,Y=0,Width=0,Height=0} +65 441 547 0.02383999570539 0.0236675627705782 0.0237125200274662 0.0236514839398795 0.00196715716403517 0.00162914802521144 2029498 894958 1299 577 0 False 441 547 27 {X=0,Y=0,Width=0,Height=0} +66 494 547 0.0238381514664079 0.0236667694072214 0.0236972610055695 0.0236209658960861 0.00270298895521463 0.00257768692160783 2029341 894928 1299 577 0 False 494 547 27 {X=0,Y=0,Width=0,Height=0} +67 547 548 0.0236197559813398 0.0235687096963151 0.0236057068741894 0.023575188830396 0.00191040260787344 0.00210191432292125 2010749 891220 1299 577 0 False 547 548 27 {X=0,Y=0,Width=0,Height=0} +68 600 548 0.0235179117012441 0.0236306713744848 0.023575188830396 0.0236972610055695 0.00161491920465057 0.0018381011933768 2002079 893563 1299 577 0 False 600 548 27 {X=0,Y=0,Width=0,Height=0} +69 653 548 0.0234222814493111 0.0234117559788854 0.0233768215457389 0.0233005264362554 0.00153906429589026 0.00147084663362596 1993938 885285 1299 577 0 False 653 548 27 {X=0,Y=0,Width=0,Height=0} +70 706 548 0.0234547729462828 0.0234597280165295 0.0234836346990158 0.0234531166552224 0.00151694116769265 0.00162370305712437 1996704 887099 1299 577 0 False 706 548 27 {X=0,Y=0,Width=0,Height=0} +71 228 599 0.0234315026442217 0.0235216896946992 0.0234836346990158 0.0234378576333257 0.00185674754633027 0.00189564591889486 1994723 889442 1299 577 0 False 228 599 27 {X=0,Y=0,Width=0,Height=0} +72 281 600 0.0236810622440641 0.0237442810071854 0.0236514839398795 0.0236514839398795 0.00167133733034563 0.00134271115786469 2015968 897859 1299 577 0 False 281 600 27 {X=0,Y=0,Width=0,Height=0} +73 334 600 0.0235733328446687 0.0235168237327772 0.0235294117647059 0.0234683756771191 0.00143641754040152 0.00138709774037525 2006797 889258 1299 577 0 False 334 600 27 {X=0,Y=0,Width=0,Height=0} +74 387 600 0.0235190628822648 0.0236499501040562 0.0235141527428092 0.0236057068741894 0.00151812455291753 0.00167064116627631 2002177 894292 1299 577 0 False 387 600 27 {X=0,Y=0,Width=0,Height=0} +75 440 600 0.0236482888252098 0.0237092143468127 0.0235904478522927 0.0236514839398795 0.0017642205433989 0.00175012173358387 2013178 896533 1299 577 0 False 440 600 27 {X=0,Y=0,Width=0,Height=0} +76 494 600 0.0236451289507754 0.0236161263796093 0.0236972610055695 0.0236209658960861 0.0022114898822917 0.00233554538724956 2012909 893013 1299 577 0 False 494 600 27 {X=0,Y=0,Width=0,Height=0} +77 547 600 0.0234873701639605 0.0235692121597744 0.0234378576333257 0.0235904478522927 0.00178952774854865 0.00166226875566149 1999479 891239 1299 577 0 False 547 600 27 {X=0,Y=0,Width=0,Height=0} +78 600 600 0.0235061297158997 0.0235570472549694 0.0234836346990158 0.0235446707866026 0.00157276157255705 0.00178005751491316 2001076 890779 1299 577 0 False 600 600 27 {X=0,Y=0,Width=0,Height=0} +79 653 600 0.023316314061682 0.023414374077963 0.0232852674143587 0.0233768215457389 0.00142348211515965 0.00136830957381865 1984917 885384 1299 577 0 False 653 600 27 {X=0,Y=0,Width=0,Height=0} +80 706 600 0.0234644757577429 0.0234208796574892 0.0234988937209125 0.0234836346990158 0.00143725874435191 0.00142569818414111 1997530 885630 1299 577 0 False 706 600 27 {X=0,Y=0,Width=0,Height=0} +81 229 654 0.0243504622608502 0.158183421418297 0.0243533989471275 0.169298847943847 0.00197257537167472 0.0455733632647387 2072954 8925600 1299 861 0 True 228 652 32 {X=0,Y=0,Width=0,Height=0} +82 281 652 0.0236444711330493 0.0236544722751902 0.0236209658960861 0.0237125200274662 0.0016813051395341 0.00156863377806836 2012853 894463 1299 577 0 False 281 652 27 {X=0,Y=0,Width=0,Height=0} +83 334 652 0.0235974489123777 0.0233926888128759 0.0235904478522927 0.0233463035019455 0.00144151867684368 0.00132549872866582 2008850 884564 1299 577 0 False 334 652 27 {X=0,Y=0,Width=0,Height=0} +84 387 652 0.0235689395619979 0.0235894693708192 0.023575188830396 0.023575188830396 0.00158053218817763 0.00155913327518145 2006423 892005 1299 577 0 False 387 652 27 {X=0,Y=0,Width=0,Height=0} +85 440 652 0.0236385625202595 0.0235798961196466 0.0236362249179828 0.0235446707866026 0.00174253597480935 0.0017446533454642 2012350 891643 1299 577 0 False 440 652 27 {X=0,Y=0,Width=0,Height=0} +86 493 652 0.0235956399136309 0.0235717773679615 0.0236057068741894 0.0236057068741894 0.00191204397317335 0.00187041498478876 2008696 891336 1299 577 0 False 493 652 27 {X=0,Y=0,Width=0,Height=0} +87 547 653 0.0234994105776973 0.0234099841340551 0.0234836346990158 0.0234683756771191 0.00154813564563021 0.00148106618301785 2000504 885218 1299 577 0 False 547 653 27 {X=0,Y=0,Width=0,Height=0} +88 600 653 0.0234380690747377 0.0234178913221784 0.0234531166552224 0.0233615625238422 0.00146626682828948 0.00130600394696244 1995282 885517 1299 577 0 False 600 653 27 {X=0,Y=0,Width=0,Height=0} +89 653 653 0.023435414310343 0.0233482340194472 0.0233463035019455 0.0233768215457389 0.00148724648301025 0.00142011275482338 1995056 882883 1299 577 0 False 653 653 27 {X=0,Y=0,Width=0,Height=0} +90 706 653 0.0235343571443968 0.0233891451232153 0.0235141527428092 0.0233920805676356 0.0014350914443514 0.00137516713597092 2003479 884430 1299 577 0 False 706 653 27 {X=0,Y=0,Width=0,Height=0} +91 229 709 0.0241879695357563 0.17436608593763 0.0242008087281605 0.177340352483406 0.00223149296074778 0.028549547286371 2059121 8558884 1299 749 0 True 228 704 31 {X=0,Y=0,Width=0,Height=0} +92 281 705 0.0235383510377339 0.0234797736640125 0.0234683756771191 0.0235446707866026 0.0017219941035604 0.001447083387727 2003819 887857 1299 577 0 False 281 705 27 {X=0,Y=0,Width=0,Height=0} +93 334 705 0.0234948410938499 0.0234995019661527 0.0235599298084993 0.023575188830396 0.00157519901672007 0.00169546154977727 2000115 888603 1299 577 0 False 334 705 27 {X=0,Y=0,Width=0,Height=0} +94 387 705 0.0234678000866088 0.0232624185496815 0.0234683756771191 0.0232089723048753 0.00174934596382344 0.00174917685660551 1997813 879638 1299 577 0 False 387 705 27 {X=0,Y=0,Width=0,Height=0} +95 440 705 0.0234006204513299 0.0235499598756482 0.0233768215457389 0.0234988937209125 0.00180669679954845 0.00168570788695454 1992094 890511 1299 577 0 False 440 705 27 {X=0,Y=0,Width=0,Height=0} +96 493 705 0.0235285190120776 0.023503468782937 0.0234988937209125 0.0234988937209125 0.00186085082546244 0.00174695669607643 2002982 888753 1299 577 0 False 493 705 27 {X=0,Y=0,Width=0,Height=0} +97 546 705 0.023312754797914 0.0232385118671952 0.0233615625238422 0.0231631952391852 0.00161662456826532 0.00165919052391232 1984614 878734 1299 577 0 False 546 705 27 {X=0,Y=0,Width=0,Height=0} +98 600 705 0.0235093835642949 0.023412628678578 0.0235141527428092 0.0233615625238422 0.0015901902115644 0.00156813821059822 2001353 885318 1299 577 0 False 600 705 27 {X=0,Y=0,Width=0,Height=0} +99 653 705 0.0236250420166389 0.0236937966522446 0.0236362249179828 0.0236514839398795 0.00157732155325706 0.0017381807942562 2011199 895950 1299 577 0 False 653 705 27 {X=0,Y=0,Width=0,Height=0} +100 706 709 0.0238491699133202 0.15396776660112 0.0238193331807431 0.16600289921416 0.00168695741431963 0.0350188095927845 2030279 8687729 1299 861 0 True 706 705 33 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D01_3.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D01_3.csv new file mode 100644 index 0000000..f2ee87b --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D01_3.csv @@ -0,0 +1,101 @@ + ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour +1 231 230 0.326221207773315 0.369710983314587 0.326161593041886 0.373739223315785 0.00586552375407859 0.0289230760047997 27771200 20861177 1299 861 0 True 229 232 33 {X=0,Y=0,Width=0,Height=0} +2 282 232 0.326084816315853 0.326407006773604 0.326131074998093 0.326771953917754 0.0049046770862032 0.00452760441086206 27759589 12342655 1299 577 0 False 282 232 27 {X=0,Y=0,Width=0,Height=0} +3 335 232 0.325688034759558 0.325493105077406 0.325566491187915 0.325566491187915 0.00456767688919916 0.00424830774827568 27725811 12308097 1299 577 0 False 335 232 27 {X=0,Y=0,Width=0,Height=0} +4 388 232 0.325089667310447 0.325837927237738 0.325139238574807 0.325825894560159 0.00417052657054322 0.00390135104708595 27674872 12321136 1299 577 0 False 388 232 27 {X=0,Y=0,Width=0,Height=0} +5 441 232 0.325421219191151 0.325950479052629 0.325307087815671 0.325978484779126 0.00487138010654435 0.00435799279496042 27703097 12325392 1299 577 0 False 441 232 27 {X=0,Y=0,Width=0,Height=0} +6 494 232 0.325782560817451 0.325297964137067 0.325719081406882 0.325383382925155 0.00633742310843521 0.0065262092931619 27733858 12300718 1299 577 0 False 494 232 27 {X=0,Y=0,Width=0,Height=0} +7 547 232 0.325274267409836 0.325875717778969 0.325093461509117 0.325871671625849 0.00653995367103104 0.00694499838216254 27690587 12322565 1299 577 0 False 547 232 27 {X=0,Y=0,Width=0,Height=0} +8 601 233 0.325270167795793 0.325336072023641 0.325291828793774 0.324910353246357 0.00595881460233795 0.00658528548072146 27690238 12302159 1299 577 0 False 601 233 27 {X=0,Y=0,Width=0,Height=0} +9 654 233 0.325226234969085 0.325491729914255 0.325352864881361 0.325200274662394 0.00468899877499293 0.00455065209944041 27686498 12308045 1299 577 0 False 654 233 27 {X=0,Y=0,Width=0,Height=0} +10 706 232 0.324184286931165 0.373319467295317 0.324223697261006 0.373144121461814 0.00488538280671241 0.0235490074590128 27597797 21064788 1299 861 0 True 707 233 33 {X=0,Y=0,Width=0,Height=0} +11 229 284 0.325793919919972 0.326319869031577 0.325764858472572 0.326085297932403 0.00511607917743284 0.00462975044433823 27734825 12339360 1299 577 0 False 229 284 27 {X=0,Y=0,Width=0,Height=0} +12 282 284 0.326150962237562 0.325951695543109 0.326024261844816 0.325902189669642 0.00488849371221954 0.00463881279496211 27765220 12325438 1299 577 0 False 282 284 27 {X=0,Y=0,Width=0,Height=0} +13 335 285 0.326048330925544 0.326155827934826 0.326024261844816 0.326176852063783 0.00403211460348048 0.00405688418290499 27756483 12333157 1299 577 0 False 335 285 27 {X=0,Y=0,Width=0,Height=0} +14 388 285 0.325772670058069 0.326318599650206 0.325841153582055 0.32628366521706 0.00425254553215838 0.00404740057826837 27733016 12339312 1299 577 0 False 388 285 27 {X=0,Y=0,Width=0,Height=0} +15 441 285 0.326363272908664 0.326766929283161 0.326268406195163 0.32660410467689 0.0043823431652789 0.00456562265679747 27783294 12356265 1299 577 0 False 441 285 27 {X=0,Y=0,Width=0,Height=0} +16 494 285 0.326467078895193 0.32609251753895 0.32646677347982 0.326222629129473 0.00551249162023438 0.00533605643475265 27792131 12330763 1299 577 0 False 494 285 27 {X=0,Y=0,Width=0,Height=0} +17 547 285 0.326324896292392 0.325375264173469 0.32623788815137 0.325093461509117 0.00599208314020083 0.00531690479958293 27780027 12303641 1299 577 0 False 547 285 27 {X=0,Y=0,Width=0,Height=0} +18 600 285 0.325529641648508 0.325910546430334 0.325551232166018 0.325947966735332 0.00598675464716875 0.00615356324316645 27712327 12323882 1299 577 0 False 600 285 27 {X=0,Y=0,Width=0,Height=0} +19 654 285 0.32571668507088 0.325683168492262 0.325215533684291 0.325673304341192 0.00640503599092616 0.00467192098847441 27728250 12315284 1299 577 0 False 654 285 27 {X=0,Y=0,Width=0,Height=0} +20 707 285 0.324545499343269 0.325427123691562 0.324467841611353 0.325642786297398 0.00458380360445917 0.00402675749879891 27628547 12305602 1299 577 0 False 707 285 27 {X=0,Y=0,Width=0,Height=0} +21 228 337 0.326154415780624 0.326671593453113 0.325963225757229 0.326436255436027 0.00647744559226405 0.00630154290642238 27765514 12352660 1299 577 0 False 228 337 27 {X=0,Y=0,Width=0,Height=0} +22 282 337 0.326864330321292 0.327465829509653 0.326848249027237 0.327351796749828 0.00533261411830287 0.0053794542588211 27825949 12382693 1299 577 0 False 282 337 27 {X=0,Y=0,Width=0,Height=0} +23 335 337 0.327372412287495 0.327381336312148 0.327489127946899 0.327367055771725 0.00508297934034854 0.00539263833120757 27869202 12379498 1299 577 0 False 335 337 27 {X=0,Y=0,Width=0,Height=0} +24 388 337 0.327364612448742 0.333570469640695 0.326878767071031 0.330800335698482 0.00567610274327205 0.0101628451672496 27868538 12613532 1299 577 0 False 388 337 27 {X=0,Y=0,Width=0,Height=0} +25 441 337 0.32667193038315 0.326566552144666 0.32674143587396 0.326527809567407 0.00425766584438819 0.0039344969605575 27809570 12348688 1299 577 0 False 441 337 27 {X=0,Y=0,Width=0,Height=0} +26 494 337 0.326730687602186 0.327004462272201 0.326817730983444 0.326802471961547 0.00490359596560981 0.00483008793635979 27814572 12365247 1299 577 0 False 494 337 27 {X=0,Y=0,Width=0,Height=0} +27 547 337 0.326476652492457 0.326727261115318 0.326726176852064 0.326680399786374 0.00530098311269414 0.0055393511389701 27792946 12354765 1299 577 0 False 547 337 27 {X=0,Y=0,Width=0,Height=0} +28 600 338 0.326064717634971 0.325692107052749 0.325856412603952 0.325764858472572 0.00558740040958174 0.00529348505044655 27757878 12315622 1299 577 0 False 600 338 27 {X=0,Y=0,Width=0,Height=0} +29 653 338 0.325660805804396 0.325902824360328 0.325200274662394 0.325795376516365 0.00572317646967856 0.00494858521181523 27723493 12323590 1299 577 0 False 653 338 27 {X=0,Y=0,Width=0,Height=0} +30 707 338 0.325521689102069 0.325620307668954 0.325459678034638 0.325612268253605 0.00407945447799448 0.00418996631564138 27711650 12312907 1299 577 0 False 707 338 27 {X=0,Y=0,Width=0,Height=0} +31 228 389 0.326463801553307 0.325829702704272 0.326268406195163 0.325749599450675 0.00692026286365721 0.00679956126560807 27791852 12320825 1299 577 0 False 228 389 27 {X=0,Y=0,Width=0,Height=0} +32 281 389 0.327147650066578 0.327104346718828 0.327168688487068 0.326970321202411 0.00614060270248624 0.00548367304242166 27850068 12369024 1299 577 0 False 281 389 27 {X=0,Y=0,Width=0,Height=0} +33 335 390 0.327239121970742 0.326947578119515 0.327275501640345 0.32674143587396 0.00538766750275984 0.00530213970573279 27857855 12363096 1299 577 0 False 335 390 27 {X=0,Y=0,Width=0,Height=0} +34 388 390 0.327122547272279 0.32778589873325 0.327061875333791 0.327931639581903 0.0050688877921555 0.00477848272795774 27847931 12394796 1299 577 0 False 388 390 27 {X=0,Y=0,Width=0,Height=0} +35 441 390 0.326936420096026 0.327431688439863 0.326787212939651 0.327336537727932 0.00486099132113471 0.00462938082773426 27832086 12381402 1299 577 0 False 441 390 27 {X=0,Y=0,Width=0,Height=0} +36 494 390 0.326828350041023 0.327017526322143 0.326710917830167 0.327153429465171 0.00445114630268083 0.00459668173492148 27822886 12365741 1299 577 0 False 494 390 27 {X=0,Y=0,Width=0,Height=0} +37 547 390 0.327248836528947 0.326360515680893 0.326848249027237 0.326222629129473 0.00786520418397308 0.00543484590423989 27858682 12340897 1299 577 0 False 547 390 27 {X=0,Y=0,Width=0,Height=0} +38 600 390 0.325835409423697 0.326699176052486 0.325719081406882 0.326817730983444 0.00520050148473734 0.00507961200004207 27738357 12353703 1299 577 0 False 600 390 27 {X=0,Y=0,Width=0,Height=0} +39 653 390 0.325838745499308 0.325900999624607 0.325703822384985 0.326070038910506 0.00474361844126027 0.0049072074664344 27738641 12323521 1299 577 0 False 653 390 27 {X=0,Y=0,Width=0,Height=0} +40 706 390 0.325621266260358 0.32521370894857 0.325627527275502 0.325001907377737 0.00384112855894459 0.00396722855582316 27720127 12297532 1299 577 0 False 706 390 27 {X=0,Y=0,Width=0,Height=0} +41 228 442 0.326279107479957 0.326443369260793 0.325993743801022 0.32651255054551 0.00648646210970327 0.00722270753673656 27776129 12344030 1299 577 0 False 228 442 27 {X=0,Y=0,Width=0,Height=0} +42 281 442 0.327313925243597 0.327589356184314 0.327367055771725 0.327580682078279 0.00555705899955366 0.0054021462015712 27864223 12387364 1299 577 0 False 281 442 27 {X=0,Y=0,Width=0,Height=0} +43 335 442 0.327819787074974 0.329644220169439 0.327763790341039 0.329106584267948 0.00466623872298642 0.00596022499160279 27907287 12465066 1299 577 0 False 335 442 27 {X=0,Y=0,Width=0,Height=0} +44 388 442 0.327456201820358 0.327883561762478 0.327565423056382 0.327687495231556 0.00484718175072879 0.00484809871788128 27876335 12398489 1299 577 0 False 388 442 27 {X=0,Y=0,Width=0,Height=0} +45 441 442 0.326983007687129 0.327004515163091 0.327077134355688 0.326924544136721 0.00593010478396319 0.00592726998301068 27836052 12365249 1299 577 0 False 441 442 27 {X=0,Y=0,Width=0,Height=0} +46 494 442 0.327024274002697 0.326807311478024 0.327077134355688 0.3265583276112 0.00594562779210503 0.00569355627104819 27839565 12357792 1299 577 0 False 494 442 27 {X=0,Y=0,Width=0,Height=0} +47 547 442 0.326621478112907 0.326749581071091 0.326588845654994 0.326756694895857 0.00552270740219909 0.00559744083209409 27805275 12355609 1299 577 0 False 547 442 27 {X=0,Y=0,Width=0,Height=0} +48 600 443 0.326327363108865 0.326173731501246 0.326405737392233 0.326070038910506 0.0054521877728221 0.00585417009931611 27780237 12333834 1299 577 0 False 600 443 27 {X=0,Y=0,Width=0,Height=0} +49 653 443 0.326251103239617 0.3252792143164 0.32632944228275 0.324834058136873 0.00508933315193997 0.00536047886749992 27773745 12300009 1299 577 0 False 653 443 27 {X=0,Y=0,Width=0,Height=0} +50 706 443 0.325532460867334 0.326307228108758 0.325612268253605 0.326436255436027 0.00446370675371965 0.00466462574228281 27712567 12338882 1299 577 0 False 706 443 27 {X=0,Y=0,Width=0,Height=0} +51 228 494 0.326578755200945 0.326577209659093 0.32632944228275 0.326451514457923 0.00567106314214496 0.0054469269720381 27801638 12349091 1299 577 0 False 228 494 27 {X=0,Y=0,Width=0,Height=0} +52 281 495 0.341139562829023 0.327534984348924 0.32826733806363 0.327626459143969 0.0741449659895959 0.00463027207511601 28616424 12385308 1280 577 0 False 281 495 27 {X=0,Y=0,Width=0,Height=0} +53 334 495 0.327476605916612 0.327096756876047 0.327519645990692 0.327153429465171 0.00432738169552307 0.00438350632106351 27878072 12368737 1299 577 0 False 334 495 27 {X=0,Y=0,Width=0,Height=0} +54 388 495 0.32659598767602 0.327119579295279 0.326482032501717 0.327122911421378 0.00425333747081173 0.00397504769923941 27803105 12369600 1299 577 0 False 388 495 27 {X=0,Y=0,Width=0,Height=0} +55 441 495 0.327272142071244 0.326185341051701 0.327183947508965 0.326131074998093 0.00633453709724976 0.00572570023950573 27860666 12334273 1299 577 0 False 441 495 27 {X=0,Y=0,Width=0,Height=0} +56 494 495 0.326661041150434 0.326129276707817 0.326619363698787 0.326131074998093 0.00658057975078782 0.00681144680588834 27808643 12332153 1299 577 0 False 494 495 27 {X=0,Y=0,Width=0,Height=0} +57 547 495 0.326310530023124 0.326556661548151 0.326527809567407 0.32651255054551 0.00572906466012472 0.00538019835195117 27778804 12348314 1299 577 0 False 547 495 27 {X=0,Y=0,Width=0,Height=0} +58 600 495 0.326612879495487 0.326518209870789 0.326405737392233 0.326344701304646 0.00566544666295057 0.00579299905634681 27804543 12346860 1299 577 0 False 600 495 27 {X=0,Y=0,Width=0,Height=0} +59 653 495 0.32586969817267 0.326221809320671 0.325734340428779 0.326024261844816 0.00564949076546968 0.00529916068057677 27741276 12335652 1299 577 0 False 653 495 27 {X=0,Y=0,Width=0,Height=0} +60 706 495 0.325174126407781 0.325198370590338 0.325047684443427 0.325001907377737 0.00543118015269751 0.00568720394646823 27682062 12296952 1299 577 0 False 706 495 27 {X=0,Y=0,Width=0,Height=0} +61 228 547 0.326752618775304 0.326572052797274 0.326771953917754 0.3265583276112 0.00580338123452199 0.00575662256429104 27816439 12348896 1299 577 0 False 228 547 27 {X=0,Y=0,Width=0,Height=0} +62 281 547 0.340018117060919 0.327022868302079 0.327794308384833 0.326771953917754 0.0680473278644304 0.00402730079929692 28076690 12365943 1260 577 0 False 281 547 27 {X=0,Y=0,Width=0,Height=0} +63 334 547 0.326670861429345 0.326578822831252 0.326680399786374 0.3265583276112 0.0043287634654138 0.00410629461266566 27809479 12349152 1299 577 0 False 334 547 27 {X=0,Y=0,Width=0,Height=0} +64 387 547 0.3272507512484 0.327214835788991 0.327290760662242 0.327077134355688 0.00427957179651559 0.00446959905598598 27858845 12373202 1299 577 0 False 387 547 27 {X=0,Y=0,Width=0,Height=0} +65 441 547 0.326586919188796 0.326714461519828 0.32637521934844 0.32664988174258 0.00550246583503694 0.00542049961801861 27802333 12354281 1299 577 0 False 441 547 27 {X=0,Y=0,Width=0,Height=0} +66 494 547 0.326953394142709 0.326507658138143 0.326451514457923 0.326314183260853 0.00791996089909623 0.00703880353657164 27833531 12346461 1299 577 0 False 494 547 27 {X=0,Y=0,Width=0,Height=0} +67 547 548 0.32673817027882 0.326289218760558 0.326634622720684 0.326085297932403 0.00622731421543478 0.00660798083667745 27815209 12338201 1299 577 0 False 547 548 27 {X=0,Y=0,Width=0,Height=0} +68 600 548 0.326272693757128 0.32624375904021 0.326024261844816 0.326085297932403 0.0057189170735796 0.005201873299359 27775583 12336482 1299 577 0 False 600 548 27 {X=0,Y=0,Width=0,Height=0} +69 653 548 0.326094930263392 0.326365487424596 0.326054779888609 0.326161593041886 0.00523264335145708 0.00521376343525794 27760450 12341085 1299 577 0 False 653 548 27 {X=0,Y=0,Width=0,Height=0} +70 706 548 0.325804409763354 0.325440055514279 0.325764858472572 0.325520714122225 0.00507330637216184 0.00506216248879778 27735718 12306091 1299 577 0 False 706 548 27 {X=0,Y=0,Width=0,Height=0} +71 228 599 0.325804762165707 0.325836552074586 0.325764858472572 0.325749599450675 0.00563526342276631 0.00549642980019914 27735748 12321084 1299 577 0 False 228 599 27 {X=0,Y=0,Width=0,Height=0} +72 281 600 0.326161052691611 0.325977585633988 0.325993743801022 0.325932707713436 0.00464667108502955 0.00437308784603317 27766079 12326417 1299 577 0 False 281 600 27 {X=0,Y=0,Width=0,Height=0} +73 334 600 0.326064905582893 0.325817194008679 0.325917448691539 0.325856412603952 0.004799364359311 0.00444393346728606 27757894 12320352 1299 577 0 False 334 600 27 {X=0,Y=0,Width=0,Height=0} +74 387 600 0.326927974186293 0.327120055313293 0.326894026092927 0.326894026092927 0.00505582416659983 0.0050943600800366 27831367 12369618 1299 577 0 False 387 600 27 {X=0,Y=0,Width=0,Height=0} +75 440 600 0.326574925762039 0.326728451160353 0.32646677347982 0.326832990005341 0.005253040527869 0.00552088931510979 27801312 12354810 1299 577 0 False 440 600 27 {X=0,Y=0,Width=0,Height=0} +76 494 600 0.32683347162189 0.326743604400469 0.327000839246204 0.326756694895857 0.00618457859107018 0.00599846424054592 27823322 12355383 1299 577 0 False 494 600 27 {X=0,Y=0,Width=0,Height=0} +77 547 600 0.326278320448035 0.32682130111855 0.326070038910506 0.326939803158618 0.00563129896970254 0.00469627708511156 27776062 12358321 1299 577 0 False 547 600 27 {X=0,Y=0,Width=0,Height=0} +78 600 600 0.326427351403234 0.3266985413618 0.326298924238956 0.32646677347982 0.00505650161498004 0.00569327033400155 27788749 12353679 1299 577 0 False 600 600 27 {X=0,Y=0,Width=0,Height=0} +79 653 600 0.326121407426868 0.326587285373725 0.325886930647745 0.326573586633097 0.00449287859144678 0.00439360827959979 27762704 12349472 1299 577 0 False 653 600 27 {X=0,Y=0,Width=0,Height=0} +80 706 600 0.325549387927036 0.325909144821737 0.325459678034638 0.325993743801022 0.00478107600484662 0.00447724123723759 27714008 12323829 1299 577 0 False 706 600 27 {X=0,Y=0,Width=0,Height=0} +81 229 654 0.325156306595451 0.365348622128931 0.325200274662394 0.370519569695583 0.00606940551267159 0.0278406979289507 27680545 20615028 1299 861 0 True 228 652 32 {X=0,Y=0,Width=0,Height=0} +82 281 652 0.325606218679874 0.325535867362341 0.325535973144121 0.325597009231708 0.00486892790409703 0.00454540674581152 27718846 12309714 1299 577 0 False 281 652 27 {X=0,Y=0,Width=0,Height=0} +83 334 652 0.3258093433963 0.32571537904455 0.325719081406882 0.325566491187915 0.00514429177598922 0.00514792821317463 27736138 12316502 1299 577 0 False 334 652 27 {X=0,Y=0,Width=0,Height=0} +84 387 652 0.325841517731154 0.326200838082605 0.325810635538262 0.326390478370336 0.00517697807160279 0.00467092919911389 27738877 12334859 1299 577 0 False 387 652 27 {X=0,Y=0,Width=0,Height=0} +85 440 652 0.326554357211353 0.327100829474612 0.326771953917754 0.327061875333791 0.00574512959010663 0.00547750212662685 27799561 12368891 1299 577 0 False 440 652 27 {X=0,Y=0,Width=0,Height=0} +86 493 652 0.326463625352131 0.32671012446681 0.326436255436027 0.326710917830167 0.00502298716771463 0.00500664553853511 27791837 12354117 1299 577 0 False 493 652 27 {X=0,Y=0,Width=0,Height=0} +87 547 653 0.326338287581817 0.327015595804642 0.32651255054551 0.327046616311894 0.00419586321495671 0.00382980015418312 27781167 12365668 1299 577 0 False 547 653 27 {X=0,Y=0,Width=0,Height=0} +88 600 653 0.326152571541642 0.326042297638461 0.32628366521706 0.326024261844816 0.00419459831090002 0.00396900255569938 27765357 12328864 1299 577 0 False 600 653 27 {X=0,Y=0,Width=0,Height=0} +89 653 653 0.326036196537847 0.326061787931595 0.326009002822919 0.325947966735332 0.00389111545153746 0.00386464435687901 27755450 12329601 1299 577 0 False 653 653 27 {X=0,Y=0,Width=0,Height=0} +90 706 653 0.325055801444298 0.325060960056932 0.325001907377737 0.32498664835584 0.00440974255046865 0.0043743593764329 27671989 12291756 1299 577 0 False 706 653 27 {X=0,Y=0,Width=0,Height=0} +91 229 709 0.324469732837315 0.368134048775698 0.324422064545663 0.371663996337835 0.00678860806669207 0.0281061420551795 27622097 18070123 1299 749 0 True 228 704 31 {X=0,Y=0,Width=0,Height=0} +92 281 705 0.32473838089796 0.324990615172625 0.324773022049287 0.324910353246357 0.00571527619509369 0.00522704654640146 27644967 12289096 1299 577 0 False 281 705 27 {X=0,Y=0,Width=0,Height=0} +93 334 705 0.325510976070529 0.325742750080361 0.325612268253605 0.325749599450675 0.00600363379623316 0.00615337594619928 27710738 12317537 1299 577 0 False 334 705 27 {X=0,Y=0,Width=0,Height=0} +94 387 705 0.326049094463976 0.325185094976833 0.325841153582055 0.32503242542153 0.00614555426871979 0.00607868112043036 27756548 12296450 1299 577 0 False 387 705 27 {X=0,Y=0,Width=0,Height=0} +95 440 705 0.325977122156693 0.325891056137201 0.326085297932403 0.325810635538262 0.00591033834286073 0.00553294654903596 27750421 12323145 1299 577 0 False 440 705 27 {X=0,Y=0,Width=0,Height=0} +96 493 705 0.326429501057589 0.32616727881261 0.326543068589303 0.326054779888609 0.00542183866313374 0.00532671854889753 27788932 12333590 1299 577 0 False 493 705 27 {X=0,Y=0,Width=0,Height=0} +97 546 705 0.326001038529735 0.325570352222918 0.325871671625849 0.325368123903258 0.00433670771833164 0.00448515797224157 27752457 12311018 1299 577 0 False 546 705 27 {X=0,Y=0,Width=0,Height=0} +98 600 705 0.325857035181443 0.325593809332836 0.325795376516365 0.325764858472572 0.00417410868603121 0.00385954267522104 27740198 12311905 1299 577 0 False 600 705 27 {X=0,Y=0,Width=0,Height=0} +99 653 705 0.326061992390106 0.326496974178271 0.325932707713436 0.326497291523613 0.00446401625613661 0.00433288621246073 27757646 12346057 1299 577 0 False 653 705 27 {X=0,Y=0,Width=0,Height=0} +100 706 709 0.325255343403466 0.373634341908602 0.325246051728084 0.37796597238117 0.00492588025953971 0.0238784053497112 27688976 21082555 1299 861 0 True 706 705 33 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D01_4.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D01_4.csv new file mode 100644 index 0000000..fac7a7d --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D01_4.csv @@ -0,0 +1,101 @@ + ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour +1 231 230 0.0341930717344944 0.038604315219492 0.0341954680704967 0.0386663614862287 0.00232528808088286 0.00384112342638558 2910855 2178273 1299 861 0 True 229 232 33 {X=0,Y=0,Width=0,Height=0} +2 282 232 0.034265607885543 0.0343597207308093 0.0342870222018769 0.0342717631799802 0.00188751913481578 0.00174456878803115 2917030 1299268 1299 577 0 False 282 232 27 {X=0,Y=0,Width=0,Height=0} +3 335 232 0.0341014471226436 0.0340545667383206 0.0341039139391165 0.0340123598077363 0.00172371796744552 0.00145305514193581 2903055 1287729 1299 577 0 False 335 232 27 {X=0,Y=0,Width=0,Height=0} +4 388 232 0.0341566803181465 0.034098757077297 0.0341649500267033 0.0340886549172198 0.00150919521928394 0.0015526977466267 2907757 1289400 1299 577 0 False 388 232 27 {X=0,Y=0,Width=0,Height=0} +5 441 232 0.0339921319126585 0.0341591584741983 0.0339818417639429 0.0340428778515297 0.00179701442580248 0.00185882767388315 2893749 1291684 1299 577 0 False 441 232 27 {X=0,Y=0,Width=0,Height=0} +6 494 232 0.0341009302658588 0.0339118142249785 0.0341191729610132 0.033829251544976 0.00252557010249602 0.00239996818492411 2903011 1282331 1299 577 0 False 494 232 27 {X=0,Y=0,Width=0,Height=0} +7 547 232 0.0340708351048893 0.0340821493376937 0.0339971007858396 0.0340428778515297 0.002537023830961 0.00256721388738565 2900449 1288772 1299 577 0 False 547 232 27 {X=0,Y=0,Width=0,Height=0} +8 601 233 0.0341499611799441 0.0339394497152421 0.0341039139391165 0.0338597695887694 0.00233369186507072 0.0024350483547413 2907185 1283376 1299 577 0 False 601 233 27 {X=0,Y=0,Width=0,Height=0} +9 654 233 0.0340211111328426 0.0339909918879919 0.0339971007858396 0.0339971007858396 0.00187743542131705 0.00163931429802538 2896216 1285325 1299 577 0 False 654 233 27 {X=0,Y=0,Width=0,Height=0} +10 706 232 0.0338938116560955 0.0388972494505379 0.0338445105668727 0.0389868009460594 0.00179484442515255 0.00298617674224811 2885379 2194802 1299 861 0 True 707 233 33 {X=0,Y=0,Width=0,Height=0} +11 229 284 0.0340240125788845 0.0340778651755667 0.0339360646982528 0.0339971007858396 0.00189342416400059 0.00187953850056253 2896463 1288610 1299 577 0 False 229 284 27 {X=0,Y=0,Width=0,Height=0} +12 282 284 0.0342110794947466 0.0343550663324491 0.0342259861142901 0.0343480582894636 0.00183846824616201 0.00182878939546821 2912388 1299092 1299 577 0 False 282 284 27 {X=0,Y=0,Width=0,Height=0} +13 335 285 0.0341324115427511 0.034279617477213 0.0340886549172198 0.0342870222018769 0.0016428787991111 0.00152804753928067 2905691 1296239 1299 577 0 False 335 285 27 {X=0,Y=0,Width=0,Height=0} +14 388 285 0.0341497027515517 0.0338933817496545 0.0341496910048066 0.033829251544976 0.00160212994968923 0.00155575652848667 2907163 1281634 1299 577 0 False 388 285 27 {X=0,Y=0,Width=0,Height=0} +15 441 285 0.0339887018630866 0.0341013222854841 0.0339818417639429 0.0341344319829099 0.00166283451251961 0.00170182335364942 2893457 1289497 1299 577 0 False 441 285 27 {X=0,Y=0,Width=0,Height=0} +16 494 285 0.0341460965008032 0.0339722420673251 0.0340123598077363 0.0339208056763561 0.00208118456010887 0.00198205908215973 2906856 1284616 1299 577 0 False 494 285 27 {X=0,Y=0,Width=0,Height=0} +17 547 285 0.0342625537318146 0.0342947707173287 0.0342565041580835 0.0342870222018769 0.00218851463962237 0.00211868939540577 2916770 1296812 1299 577 0 False 547 285 27 {X=0,Y=0,Width=0,Height=0} +18 600 285 0.034174605851183 0.0341585237835128 0.0341802090486 0.0340886549172198 0.00233047947728435 0.00239683578744631 2909283 1291660 1299 577 0 False 600 285 27 {X=0,Y=0,Width=0,Height=0} +19 654 285 0.0341770139339303 0.0341213943784124 0.0341802090486 0.0341954680704967 0.00180634213171036 0.00171024087629514 2909488 1290256 1299 577 0 False 654 285 27 {X=0,Y=0,Width=0,Height=0} +20 707 285 0.0339787406232341 0.0339288186462603 0.0339360646982528 0.0338750286106661 0.00167466653031827 0.0017170890817626 2892609 1282974 1299 577 0 False 707 285 27 {X=0,Y=0,Width=0,Height=0} +21 228 337 0.0339650556651821 0.0342348453384415 0.0339513237201495 0.0341191729610132 0.0022617045586416 0.00221820477820677 2891444 1294546 1299 577 0 False 228 337 27 {X=0,Y=0,Width=0,Height=0} +22 282 337 0.0343737954079976 0.0341854981376456 0.034378576333257 0.0340886549172198 0.00215710007912226 0.00186339795057361 2926240 1292680 1299 577 0 False 282 337 27 {X=0,Y=0,Width=0,Height=0} +23 335 337 0.0342492211761158 0.0341716936152365 0.0341954680704967 0.0342107270923934 0.00189982537238516 0.00222112462533747 2915635 1292158 1299 577 0 False 335 337 27 {X=0,Y=0,Width=0,Height=0} +24 388 337 0.0344258099953407 0.0350783757048868 0.0343938353551537 0.0349889372091249 0.00175610486356258 0.00188190098289541 2930668 1326443 1299 577 0 False 388 337 27 {X=0,Y=0,Width=0,Height=0} +25 441 337 0.0345028568965111 0.0345004369448688 0.0345922026398108 0.0344396124208438 0.00165835033834913 0.00168439641540905 2937227 1304589 1299 577 0 False 441 337 27 {X=0,Y=0,Width=0,Height=0} +26 494 337 0.0342344437707686 0.034153446258029 0.0342107270923934 0.0341191729610132 0.00180043003493863 0.00192924756964604 2914377 1291468 1299 577 0 False 494 337 27 {X=0,Y=0,Width=0,Height=0} +27 547 337 0.0342442640496798 0.0339237940116669 0.0342259861142901 0.0338902876325628 0.00197182503550821 0.00199611858350754 2915213 1282784 1299 577 0 False 547 337 27 {X=0,Y=0,Width=0,Height=0} +28 600 338 0.034120230168073 0.0340904796529406 0.0340581368734264 0.034027618829633 0.00203823709518379 0.00205870952743081 2904654 1289087 1299 577 0 False 600 338 27 {X=0,Y=0,Width=0,Height=0} +29 653 338 0.0340786349436418 0.0343047406501798 0.0340733958953231 0.0343175402456703 0.00186125492246628 0.00183576036254171 2901113 1297189 1299 577 0 False 653 338 27 {X=0,Y=0,Width=0,Height=0} +30 707 338 0.03408651700961 0.0340827046920434 0.034027618829633 0.0339513237201495 0.00158915418247539 0.00157663014051722 2901784 1288793 1299 577 0 False 707 338 27 {X=0,Y=0,Width=0,Height=0} +31 228 389 0.034184625824761 0.0341615121188236 0.0340581368734264 0.034027618829633 0.00266740142070736 0.00265057321837112 2910136 1291773 1299 577 0 False 228 389 27 {X=0,Y=0,Width=0,Height=0} +32 281 389 0.0342892775769378 0.0341377112181182 0.0342412451361868 0.0341344319829099 0.00227545888984039 0.00231582521937757 2919045 1290873 1299 577 0 False 281 389 27 {X=0,Y=0,Width=0,Height=0} +33 335 390 0.0342833454706577 0.0343783647696952 0.0342717631799802 0.0344548714427405 0.00203533394636163 0.00204197354231394 2918540 1299973 1299 577 0 False 335 390 27 {X=0,Y=0,Width=0,Height=0} +34 388 390 0.0343956561006456 0.0343818820139106 0.0343938353551537 0.0343633173113603 0.00190686482896178 0.00195644571963082 2928101 1300106 1299 577 0 False 388 390 27 {X=0,Y=0,Width=0,Height=0} +35 441 390 0.0343256102595602 0.0342176557990432 0.0343022812237736 0.0341802090486 0.0017508506321578 0.00171636288477287 2922138 1293896 1299 577 0 False 441 390 27 {X=0,Y=0,Width=0,Height=0} +36 494 390 0.0340869633859241 0.0343462335537429 0.0341039139391165 0.034332799267567 0.00178222732097399 0.00171428487941582 2901822 1298758 1299 577 0 False 494 390 27 {X=0,Y=0,Width=0,Height=0} +37 547 390 0.0342728438805302 0.033937942324864 0.0341802090486 0.0338750286106661 0.00216129561134258 0.00203236906650771 2917646 1283319 1299 577 0 False 547 390 27 {X=0,Y=0,Width=0,Height=0} +38 600 390 0.0340213108275094 0.0342059404668071 0.0339665827420462 0.0341954680704967 0.0018693257004531 0.00195806131753365 2896233 1293453 1299 577 0 False 600 390 27 {X=0,Y=0,Width=0,Height=0} +39 653 390 0.0343008128806349 0.0339684339232122 0.0343480582894636 0.0339818417639429 0.00177799233905488 0.00167740941972794 2920027 1284472 1299 577 0 False 653 390 27 {X=0,Y=0,Width=0,Height=0} +40 706 390 0.0339900409920291 0.0341679119165689 0.0339818417639429 0.0342107270923934 0.00162503267788949 0.00159506852936933 2893571 1292015 1299 577 0 False 706 390 27 {X=0,Y=0,Width=0,Height=0} +41 228 442 0.0341309784398478 0.0340129680529766 0.0341039139391165 0.0339513237201495 0.00252103069151249 0.00273903964761017 2905569 1286156 1299 577 0 False 228 442 27 {X=0,Y=0,Width=0,Height=0} +42 281 442 0.0343111970033113 0.0344199105641488 0.034332799267567 0.0343480582894636 0.00208043976541957 0.00197262338314189 2920911 1301544 1299 577 0 False 281 442 27 {X=0,Y=0,Width=0,Height=0} +43 335 442 0.0342983695576522 0.034728714028079 0.0342412451361868 0.0347600518806745 0.00178570594222906 0.00173933865100367 2919819 1313221 1299 577 0 False 335 442 27 {X=0,Y=0,Width=0,Height=0} +44 388 442 0.0343180336089648 0.034240689781837 0.0343022812237736 0.0342870222018769 0.00182719290009451 0.00204260546255852 2921493 1294767 1299 577 0 False 388 442 27 {X=0,Y=0,Width=0,Height=0} +45 441 442 0.0343276659399543 0.0344435263467376 0.034378576333257 0.0343633173113603 0.00218323636899328 0.00216402176641394 2922313 1302437 1299 577 0 False 441 442 27 {X=0,Y=0,Width=0,Height=0} +46 494 442 0.0341932009486906 0.0341606394191311 0.0341496910048066 0.0341039139391165 0.00221144549163696 0.00206055025664154 2910866 1291740 1299 577 0 False 494 442 27 {X=0,Y=0,Width=0,Height=0} +47 547 442 0.0343445577594211 0.0339719776128728 0.034378576333257 0.0337529564354925 0.00213088836219259 0.00206391012602408 2923751 1284606 1299 577 0 False 547 442 27 {X=0,Y=0,Width=0,Height=0} +48 600 443 0.0341130059198309 0.0342030579132772 0.0341954680704967 0.0341344319829099 0.00210275432246324 0.00211419046025044 2904039 1293344 1299 577 0 False 600 443 27 {X=0,Y=0,Width=0,Height=0} +49 653 443 0.0341729143198872 0.0340929919702372 0.0340733958953231 0.0340733958953231 0.00191945953508093 0.00207482144666776 2909139 1289182 1299 577 0 False 653 443 27 {X=0,Y=0,Width=0,Height=0} +50 706 443 0.0340596404568004 0.0340782089663547 0.0340123598077363 0.0339818417639429 0.00158526175164456 0.00168469282227677 2899496 1288623 1299 577 0 False 706 443 27 {X=0,Y=0,Width=0,Height=0} +51 228 494 0.0344180453968235 0.0340133911801002 0.0344243533989471 0.0341802090486 0.00228243789328391 0.00216565710650019 2930007 1286172 1299 577 0 False 228 494 27 {X=0,Y=0,Width=0,Height=0} +52 281 495 0.040396727521267 0.0345020765624729 0.034683756771191 0.034378576333257 0.0362860221096205 0.00176568255733945 3438972 1304651 1299 577 0 False 281 495 27 {X=0,Y=0,Width=0,Height=0} +53 334 495 0.0343768025747456 0.0344618265948356 0.034378576333257 0.0344853894865339 0.00163615956904983 0.00168607296165998 2926496 1303129 1299 577 0 False 334 495 27 {X=0,Y=0,Width=0,Height=0} +54 388 495 0.0342780359418684 0.0341580477654987 0.0343175402456703 0.0342412451361868 0.0015604578620717 0.00165021543185405 2918088 1291642 1299 577 0 False 388 495 27 {X=0,Y=0,Width=0,Height=0} +55 441 495 0.0341986161981859 0.0345017856625754 0.0342259861142901 0.0343938353551537 0.00224613123711672 0.0020613445002231 2911327 1304640 1299 577 0 False 441 495 27 {X=0,Y=0,Width=0,Height=0} +56 494 495 0.0341178103385805 0.0345007807356567 0.0341802090486 0.0344548714427405 0.00250190499613129 0.00283190448970898 2904448 1304602 1299 577 0 False 494 495 27 {X=0,Y=0,Width=0,Height=0} +57 547 495 0.0342437002059146 0.0343508350612126 0.0342412451361868 0.0343633173113603 0.00215347192893399 0.00196214785272844 2915165 1298932 1299 577 0 False 547 495 27 {X=0,Y=0,Width=0,Height=0} +58 600 495 0.0342095641646276 0.0340582162097621 0.0341344319829099 0.0340123598077363 0.00223010114845107 0.00213784080228573 2912259 1287867 1299 577 0 False 600 495 27 {X=0,Y=0,Width=0,Height=0} +59 653 495 0.0341440173269189 0.0341441903521991 0.0340886549172198 0.0341039139391165 0.00209224651613947 0.0022298750985358 2906679 1291118 1299 577 0 False 653 495 27 {X=0,Y=0,Width=0,Height=0} +60 706 495 0.0339644918214168 0.0341447721519941 0.034027618829633 0.0341344319829099 0.00198202154318345 0.00223081511141247 2891396 1291140 1299 577 0 False 706 495 27 {X=0,Y=0,Width=0,Height=0} +61 228 547 0.0344183508121964 0.0341353575734929 0.034378576333257 0.0341039139391165 0.00223519857850559 0.00214034412699435 2930033 1290784 1299 577 0 False 228 547 27 {X=0,Y=0,Width=0,Height=0} +62 281 547 0.045286086984765 0.034318439390808 0.0344548714427405 0.0342412451361868 0.0562461643390306 0.00159732885144228 3855203 1297707 1299 577 0 False 281 547 27 {X=0,Y=0,Width=0,Height=0} +63 334 547 0.034385459925891 0.0345738759462676 0.034332799267567 0.0345922026398108 0.00167970336269176 0.00155776249726448 2927233 1307366 1299 577 0 False 334 547 27 {X=0,Y=0,Width=0,Height=0} +64 387 547 0.0343661717704218 0.0342158575087677 0.0343480582894636 0.0343022812237736 0.0016663414595914 0.00163800153101319 2925591 1293828 1299 577 0 False 387 547 27 {X=0,Y=0,Width=0,Height=0} +65 441 547 0.0343643392781848 0.0341740208144166 0.034378576333257 0.0342107270923934 0.00209073884710122 0.00203018866972871 2925435 1292246 1299 577 0 False 441 547 27 {X=0,Y=0,Width=0,Height=0} +66 494 547 0.0342841559960702 0.0342181318170573 0.0342107270923934 0.0342259861142901 0.00260216176494788 0.00263988378914264 2918609 1293914 1299 577 0 False 494 547 27 {X=0,Y=0,Width=0,Height=0} +67 547 548 0.0341812192686794 0.0341696837613991 0.0341191729610132 0.0342412451361868 0.00243529457313998 0.00248941801558128 2909846 1292082 1299 577 0 False 547 548 27 {X=0,Y=0,Width=0,Height=0} +68 600 548 0.034153720138379 0.0341761364500348 0.0340581368734264 0.0341802090486 0.00205170628033006 0.00215301188479858 2907505 1292326 1299 577 0 False 600 548 27 {X=0,Y=0,Width=0,Height=0} +69 653 548 0.0341319534196919 0.034201418295673 0.0340886549172198 0.0341954680704967 0.00199984807170333 0.00206477387944959 2905652 1293282 1299 577 0 False 653 548 27 {X=0,Y=0,Width=0,Height=0} +70 706 548 0.033975815683702 0.0340946580332866 0.0339818417639429 0.034027618829633 0.0019644753353072 0.00218653609760284 2892360 1289245 1299 577 0 False 706 548 27 {X=0,Y=0,Width=0,Height=0} +71 228 599 0.0341048889189606 0.0341190142883418 0.0340428778515297 0.0341191729610132 0.00210502944237585 0.00209967643153752 2903348 1290166 1299 577 0 False 228 599 27 {X=0,Y=0,Width=0,Height=0} +72 281 600 0.0342975237920044 0.0342273612774419 0.0342717631799802 0.0342412451361868 0.0017558268345543 0.00167150290748528 2919747 1294263 1299 577 0 False 281 600 27 {X=0,Y=0,Width=0,Height=0} +73 334 600 0.0341172464948153 0.0343388023836338 0.0340886549172198 0.0344243533989471 0.0017661887603515 0.00181281485424309 2904400 1298477 1299 577 0 False 334 600 27 {X=0,Y=0,Width=0,Height=0} +74 387 600 0.0343329519752534 0.0343432981093226 0.0343175402456703 0.0343175402456703 0.00194004599371 0.00195576597553524 2922763 1298647 1299 577 0 False 387 600 27 {X=0,Y=0,Width=0,Height=0} +75 440 600 0.0342400352214405 0.0343019638784308 0.0343022812237736 0.0342870222018769 0.00202186411127395 0.00202672208552722 2914853 1297084 1299 577 0 False 440 600 27 {X=0,Y=0,Width=0,Height=0} +76 494 600 0.0341614142564255 0.0341618030187211 0.0341344319829099 0.0341344319829099 0.00233239610406342 0.00236510091604957 2908160 1291784 1299 577 0 False 494 600 27 {X=0,Y=0,Width=0,Height=0} +77 547 600 0.0339971712663103 0.0338599018159955 0.0339208056763561 0.0338445105668727 0.00204219437225864 0.00201683219612853 2894178 1280368 1299 577 0 False 547 600 27 {X=0,Y=0,Width=0,Height=0} +78 600 600 0.034246331476819 0.034062844162677 0.0342565041580835 0.034027618829633 0.00198337051050334 0.00196940067797548 2915389 1288042 1299 577 0 False 600 600 27 {X=0,Y=0,Width=0,Height=0} +79 653 600 0.0340908985455356 0.0343177253637869 0.0340581368734264 0.0343175402456703 0.00171488593949069 0.00178569292476355 2902157 1297680 1299 577 0 False 653 600 27 {X=0,Y=0,Width=0,Height=0} +80 706 600 0.0339424079406117 0.0341690226252684 0.0339360646982528 0.0341954680704967 0.0018704338491038 0.00177236844299728 2889516 1292057 1299 577 0 False 706 600 27 {X=0,Y=0,Width=0,Height=0} +81 229 654 0.0340326346897946 0.0382704067043286 0.0339208056763561 0.0382696269169146 0.00232740203838569 0.00380940989266245 2897197 2159432 1299 861 0 True 228 652 32 {X=0,Y=0,Width=0,Height=0} +82 281 652 0.0343153670978251 0.0340507321487625 0.0342259861142901 0.0339513237201495 0.00188685190550279 0.00175369338475367 2921266 1287584 1299 577 0 False 281 652 27 {X=0,Y=0,Width=0,Height=0} +83 334 652 0.0342765558519847 0.0340100590540015 0.0343022812237736 0.0340123598077363 0.00191618984573829 0.0019132283219307 2917962 1286046 1299 577 0 False 334 652 27 {X=0,Y=0,Width=0,Height=0} +84 387 652 0.0343294866854462 0.0342655220549063 0.0342565041580835 0.0342717631799802 0.00201613807478116 0.0018643199079693 2922468 1295706 1299 577 0 False 387 652 27 {X=0,Y=0,Width=0,Height=0} +85 440 652 0.0344144391460751 0.0341731216692788 0.0344396124208438 0.0342565041580835 0.0020911066257712 0.00208466825736416 2929700 1292212 1299 577 0 False 440 652 27 {X=0,Y=0,Width=0,Height=0} +86 493 652 0.0341104568761423 0.0340822022285841 0.0341802090486 0.0341191729610132 0.00183959256385606 0.00177108203432091 2903822 1288774 1299 577 0 False 493 652 27 {X=0,Y=0,Width=0,Height=0} +87 547 653 0.0341686972383931 0.0338509897009536 0.0341191729610132 0.0338750286106661 0.00155770060082053 0.00151056409255823 2908780 1280031 1299 577 0 False 547 653 27 {X=0,Y=0,Width=0,Height=0} +88 600 653 0.0342001902620305 0.0341216323874194 0.0342107270923934 0.0341344319829099 0.00158886422950157 0.0015019522102678 2911461 1290265 1299 577 0 False 600 653 27 {X=0,Y=0,Width=0,Height=0} +89 653 653 0.034131965166437 0.0342692244172383 0.0341802090486 0.0342412451361868 0.00154193461922298 0.00157764652706379 2905653 1295846 1299 577 0 False 653 653 27 {X=0,Y=0,Width=0,Height=0} +90 706 653 0.0339211815721996 0.0339576441815591 0.0339360646982528 0.0339513237201495 0.00175956807111791 0.00171792223589117 2887709 1284064 1299 577 0 False 706 653 27 {X=0,Y=0,Width=0,Height=0} +91 229 709 0.0338764499668243 0.0385082503127437 0.033829251544976 0.0385900663767453 0.00262472023540986 0.00374572704030698 2883901 1890205 1299 749 0 True 228 704 31 {X=0,Y=0,Width=0,Height=0} +92 281 705 0.033916271432744 0.0340743214859061 0.0339513237201495 0.0340886549172198 0.00222803938032783 0.00189427544255603 2887291 1288476 1299 577 0 False 281 705 27 {X=0,Y=0,Width=0,Height=0} +93 334 705 0.0339604391943542 0.0340516577393455 0.0340428778515297 0.0339665827420462 0.00210576827808982 0.00226230098509834 2891051 1287619 1299 577 0 False 334 705 27 {X=0,Y=0,Width=0,Height=0} +94 387 705 0.0341539668200263 0.0341662194080742 0.0340733958953231 0.0341649500267033 0.00235643425505899 0.0022801067555313 2907526 1291951 1299 577 0 False 387 705 27 {X=0,Y=0,Width=0,Height=0} +95 440 705 0.0340751344135993 0.0340269841389475 0.0339971007858396 0.0341039139391165 0.00226144206776823 0.00213435994044196 2900815 1286686 1299 577 0 False 440 705 27 {X=0,Y=0,Width=0,Height=0} +96 493 705 0.0340481991270641 0.0341499025683684 0.0339665827420462 0.0340123598077363 0.00198720786272651 0.0020088763471897 2898522 1291334 1299 577 0 False 493 705 27 {X=0,Y=0,Width=0,Height=0} +97 546 705 0.0342035145908964 0.0339924463874795 0.0341649500267033 0.0339971007858396 0.00172014355003014 0.0016109238678024 2911744 1285380 1299 577 0 False 546 705 27 {X=0,Y=0,Width=0,Height=0} +98 600 705 0.0339868458773594 0.0339501601205595 0.0339513237201495 0.0338445105668727 0.00155958209565097 0.00148126261051013 2893299 1283781 1299 577 0 False 600 705 27 {X=0,Y=0,Width=0,Height=0} +99 653 705 0.0341094936430433 0.034202687677044 0.0339971007858396 0.0341954680704967 0.00169103025985962 0.0016632946266671 2903740 1293330 1299 577 0 False 653 705 27 {X=0,Y=0,Width=0,Height=0} +100 706 709 0.0340110911592645 0.039134925109837 0.0340733958953231 0.0392156862745098 0.00179346056376413 0.00302659671128995 2895363 2208213 1299 861 0 True 706 705 33 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D02_1.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D02_1.csv new file mode 100644 index 0000000..5f3185f --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D02_1.csv @@ -0,0 +1,101 @@ + ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour +1 256 216 0.238583256390535 0.957257618811024 0.237537193865873 1 0.00843608746224413 0.11634998749478 22562104 54013869 1443 861 79 True 255 217 33 {X=0,Y=0,Width=0,Height=0} +2 307 217 0.23297493665999 0.23176790842577 0.232455939574273 0.231769283588922 0.00542056957995235 0.00461608950685137 22031742 8764001 1443 577 0 False 307 217 26 {X=0,Y=0,Width=0,Height=0} +3 360 217 0.230980668151646 0.231069061090169 0.230975814450294 0.230914778362707 0.0038865352593196 0.00419189297164153 21843150 8737575 1443 577 0 False 360 217 26 {X=0,Y=0,Width=0,Height=0} +4 413 217 0.230962765501562 0.230859851172968 0.231006332494087 0.230594338902876 0.00451343482064834 0.00437923771791813 21841457 8729664 1443 577 0 False 413 217 26 {X=0,Y=0,Width=0,Height=0} +5 466 217 0.231269394647742 0.231136311857384 0.231143663691157 0.231219958800641 0.00569089219961816 0.00583940066507446 21870454 8740118 1443 577 0 False 466 217 26 {X=0,Y=0,Width=0,Height=0} +6 519 217 0.230858595976472 0.231232811287022 0.230655374990463 0.231250476844434 0.00587127226884311 0.00543970935174708 21831606 8743767 1443 577 0 False 519 217 26 {X=0,Y=0,Width=0,Height=0} +7 572 217 0.231416739908386 0.231089344746659 0.231265735866331 0.231235217822538 0.00521868038644506 0.00472922665807539 21884388 8738342 1443 577 0 False 572 217 26 {X=0,Y=0,Width=0,Height=0} +8 625 217 0.231381664249597 0.230627157700405 0.231448844129091 0.230395971618219 0.00451116532659495 0.00461548324457756 21881071 8720865 1443 577 0 False 625 217 26 {X=0,Y=0,Width=0,Height=0} +9 678 217 0.23157697550007 0.231499645829375 0.231692988479438 0.231570916304265 0.0036169598031207 0.00354841688290203 21899541 8753857 1443 577 0 False 678 217 26 {X=0,Y=0,Width=0,Height=0} +10 731 216 0.235063424076928 0.921226158996704 0.234699015793088 1 0.00586102194182853 0.185553080893847 22229244 51980771 1443 861 75 True 731 217 32 {X=0,Y=0,Width=0,Height=0} +11 255 270 0.231352045039388 0.231573322839781 0.231433585107195 0.231860837720302 0.00446105942875234 0.00444542447412974 21878270 8756643 1443 577 0 False 255 270 26 {X=0,Y=0,Width=0,Height=0} +12 308 270 0.231218911923879 0.231780628684925 0.231326771953918 0.231876096742199 0.00363083808680981 0.00330095401711147 21865680 8764482 1443 577 0 False 308 270 26 {X=0,Y=0,Width=0,Height=0} +13 360 270 0.231230290099597 0.231163444884188 0.231189440756847 0.231052109559777 0.00358608321606696 0.0035579326790987 21866756 8741144 1443 577 0 False 360 270 26 {X=0,Y=0,Width=0,Height=0} +14 413 269 0.231216426913383 0.231087017547479 0.231143663691157 0.231189440756847 0.00381780827116311 0.00330467618499774 21865445 8738254 1443 577 0 False 413 269 26 {X=0,Y=0,Width=0,Height=0} +15 466 269 0.231684211633857 0.231336160086974 0.231845578698405 0.231403067063401 0.00502480537596348 0.00479417561605029 21909682 8747675 1443 577 0 False 466 269 26 {X=0,Y=0,Width=0,Height=0} +16 519 269 0.231614863979249 0.231822862060954 0.231540398260472 0.231692988479438 0.00561062836277864 0.00529058498330977 21903124 8766079 1443 577 0 False 519 269 26 {X=0,Y=0,Width=0,Height=0} +17 572 269 0.231742223410797 0.231506521645134 0.231845578698405 0.231250476844434 0.00455359654534729 0.00426877192244575 21915168 8754117 1443 577 0 False 572 269 26 {X=0,Y=0,Width=0,Height=0} +18 625 269 0.231743883609299 0.231598974921652 0.231677729457542 0.231631952391852 0.00405649674406658 0.00389105478435348 21915325 8757613 1443 577 0 False 625 269 26 {X=0,Y=0,Width=0,Height=0} +19 678 269 0.231334438475661 0.231102937705506 0.231296253910124 0.230869001297017 0.0034147449356962 0.00355269514510744 21876605 8738856 1443 577 0 False 678 269 26 {X=0,Y=0,Width=0,Height=0} +20 731 269 0.231388474235808 0.231003899513126 0.231387808041505 0.231067368581674 0.00407598614907274 0.00370765033922618 21881715 8735111 1443 577 0 False 731 269 26 {X=0,Y=0,Width=0,Height=0} +21 255 322 0.231218034239321 0.231730541011663 0.231296253910124 0.231784542610819 0.00471087946525432 0.00471632795494765 21865597 8762588 1443 577 0 False 255 322 26 {X=0,Y=0,Width=0,Height=0} +22 308 322 0.231362386912856 0.232068117120001 0.231448844129091 0.232059205004959 0.00350612446260912 0.00329851441906025 21879248 8775353 1443 577 0 False 308 322 26 {X=0,Y=0,Width=0,Height=0} +23 360 322 0.23137094169367 0.231778116367628 0.231265735866331 0.231555657282368 0.00387617921876821 0.00459057256237359 21880057 8764387 1443 577 0 False 360 322 26 {X=0,Y=0,Width=0,Height=0} +24 413 322 0.231677962096822 0.231362182405078 0.231708247501335 0.231097886625467 0.00394142540352454 0.00379267955602112 21909091 8748659 1443 577 0 False 413 322 26 {X=0,Y=0,Width=0,Height=0} +25 466 322 0.231809413864804 0.232676335914805 0.231799801632715 0.23256275272755 0.00459288751778348 0.00432449238841825 21921522 8798352 1443 577 0 False 466 322 26 {X=0,Y=0,Width=0,Height=0} +26 519 322 0.232363444311258 0.233209978554066 0.232364385442893 0.232837415121691 0.00489528626265816 0.00446921616986857 21973915 8818531 1443 577 0 False 519 322 26 {X=0,Y=0,Width=0,Height=0} +27 572 322 0.232884672619166 0.232119950192648 0.232883192187381 0.232196536202029 0.00456516830099558 0.00451523893013878 22023206 8777313 1443 577 0 False 572 322 26 {X=0,Y=0,Width=0,Height=0} +28 625 321 0.232087396655948 0.232004489378782 0.231891355764096 0.231998168917372 0.00413867684250311 0.00434431812647848 21947810 8772947 1443 577 0 False 625 321 26 {X=0,Y=0,Width=0,Height=0} +29 678 321 0.231487356504523 0.231406161180493 0.231494621194781 0.231555657282368 0.00348803943550747 0.00337152999240674 21891066 8750322 1443 577 0 False 678 321 26 {X=0,Y=0,Width=0,Height=0} +30 731 321 0.23137124835454 0.231089714982892 0.231342030975814 0.231052109559777 0.00370801076120127 0.0038709292925589 21880086 8738356 1443 577 0 False 731 321 26 {X=0,Y=0,Width=0,Height=0} +31 255 374 0.231342253040582 0.231285173268574 0.231250476844434 0.231128404669261 0.00483089640464741 0.00506578221748388 21877344 8745747 1443 577 0 False 255 374 26 {X=0,Y=0,Width=0,Height=0} +32 308 374 0.231746802174818 0.232169350284335 0.231662470435645 0.232196536202029 0.00398466116431236 0.00339385765452122 21915601 8779181 1443 577 0 False 308 374 26 {X=0,Y=0,Width=0,Height=0} +33 361 374 0.232731638270663 0.23367044664638 0.23237964446479 0.232867933165484 0.00529865192344517 0.0064664590786849 22008734 8835943 1443 577 0 False 361 374 26 {X=0,Y=0,Width=0,Height=0} +34 413 374 0.232247674545683 0.232724651743237 0.232181277180133 0.232532234683757 0.00381478201325081 0.00380425472888203 21962967 8800179 1443 577 0 False 413 374 26 {X=0,Y=0,Width=0,Height=0} +35 466 374 0.232883477699225 0.232789390193156 0.232867933165484 0.232913710231174 0.00439503709898811 0.00401861620649759 22023093 8802627 1443 577 0 False 466 374 26 {X=0,Y=0,Width=0,Height=0} +36 519 374 0.233556630031796 0.232515177371585 0.233447775997559 0.23247119859617 0.00449692348142026 0.004399651530716 22086751 8792258 1443 577 0 False 519 374 26 {X=0,Y=0,Width=0,Height=0} +37 572 374 0.23304575417187 0.232362111134604 0.233020523384451 0.23224231326772 0.00400111002030387 0.00384288004700323 22038439 8786470 1443 577 0 False 572 374 26 {X=0,Y=0,Width=0,Height=0} +38 625 374 0.232910992581398 0.232718119718266 0.232959487296864 0.232455939574273 0.00399886333181255 0.00410452248584798 22025695 8799932 1443 577 0 False 625 374 26 {X=0,Y=0,Width=0,Height=0} +39 678 374 0.231792589815021 0.232025037489724 0.231799801632715 0.232181277180133 0.00366330319710868 0.00360400860867013 21919931 8773724 1443 577 0 False 678 374 26 {X=0,Y=0,Width=0,Height=0} +40 731 374 0.231559622724649 0.231592628014797 0.231586175326162 0.231494621194781 0.00347679246438459 0.00349430861296137 21897900 8757373 1443 577 0 False 731 374 26 {X=0,Y=0,Width=0,Height=0} +41 255 427 0.23161086681343 0.231279434606959 0.231692988479438 0.231052109559777 0.0055252394228589 0.00603135824331043 21902746 8745530 1443 577 0 False 255 427 26 {X=0,Y=0,Width=0,Height=0} +42 308 427 0.232215972156462 0.232202988890665 0.232181277180133 0.232150759136339 0.00451199492834011 0.00456469679329859 21959969 8780453 1443 577 0 False 308 427 26 {X=0,Y=0,Width=0,Height=0} +43 361 426 0.232194727960349 0.23233220133605 0.232227054245823 0.232364385442893 0.00479250614477447 0.00454745821289662 21957960 8785339 1443 577 0 False 361 426 26 {X=0,Y=0,Width=0,Height=0} +44 414 426 0.232716442695843 0.233024807546578 0.232578011749447 0.232776379034104 0.00467865511045763 0.00453884516519332 22007297 8811529 1443 577 0 False 414 426 26 {X=0,Y=0,Width=0,Height=0} +45 466 426 0.233461364246441 0.23392128169437 0.233463035019455 0.233981841763943 0.00479530964485033 0.0050565644828156 22077742 8845428 1443 577 0 False 466 426 26 {X=0,Y=0,Width=0,Height=0} +46 519 426 0.233551744606906 0.233976446893116 0.233569848172732 0.233875028610666 0.00471986288486853 0.0046139283023653 22086289 8847514 1443 577 0 False 519 426 26 {X=0,Y=0,Width=0,Height=0} +47 572 426 0.233446062926493 0.234054778301882 0.233279926756695 0.233890287632563 0.00434344284929902 0.00444208799979325 22076295 8850476 1443 577 0 False 572 426 26 {X=0,Y=0,Width=0,Height=0} +48 625 426 0.23295123917692 0.233104064545927 0.232761120012207 0.233081559472038 0.00435666437787913 0.00419679022787322 22029501 8814526 1443 577 0 False 625 426 26 {X=0,Y=0,Width=0,Height=0} +49 678 426 0.232078112233754 0.232156127561721 0.231982909895476 0.232303349355306 0.00399612220588307 0.0039416431862874 21946932 8778681 1443 577 0 False 678 426 26 {X=0,Y=0,Width=0,Height=0} +50 731 426 0.2313498984133 0.230849749012891 0.231311512932021 0.230930037384604 0.00438930096162796 0.00429822538053833 21878067 8729282 1443 577 0 False 731 426 26 {X=0,Y=0,Width=0,Height=0} +51 255 479 0.240531060489861 0.231817096953895 0.232547493705653 0.231601434348058 0.0503250576786883 0.00555500996392095 22746302 8765861 1443 577 0 False 255 479 26 {X=0,Y=0,Width=0,Height=0} +52 308 479 0.232688705748903 0.232446154759539 0.23265430685893 0.232593270771344 0.00432570731571518 0.00419228714951509 22004674 8789648 1443 577 0 False 308 479 26 {X=0,Y=0,Width=0,Height=0} +53 361 479 0.23295335407947 0.232854816224651 0.232898451209277 0.232715342946517 0.00441744512754974 0.00428374653868431 22029701 8805101 1443 577 0 False 361 479 26 {X=0,Y=0,Width=0,Height=0} +54 414 479 0.233529157447674 0.233844299003311 0.233356221866178 0.233493553063249 0.00514927331469814 0.00472353138040089 22084153 8842517 1443 577 0 False 414 479 26 {X=0,Y=0,Width=0,Height=0} +55 467 479 0.233699967552108 0.233699087063563 0.233783474479286 0.233676661326009 0.00594343801772347 0.00634436603519025 22100306 8837026 1443 577 0 False 467 479 26 {X=0,Y=0,Width=0,Height=0} +56 519 478 0.233812723581549 0.234094049788046 0.233737697413596 0.23395132372015 0.00520475170691795 0.00545808971674549 22110969 8851961 1443 577 0 False 519 478 26 {X=0,Y=0,Width=0,Height=0} +57 572 478 0.234192422610825 0.234657443553189 0.234149691004807 0.234531166552224 0.00488274105202786 0.00630561684914891 22146876 8873265 1443 577 0 False 572 478 26 {X=0,Y=0,Width=0,Height=0} +58 625 478 0.232857242333095 0.233249752503689 0.232913710231174 0.233493553063249 0.00503455745842101 0.00497934121995768 22020612 8820035 1443 577 0 False 625 478 26 {X=0,Y=0,Width=0,Height=0} +59 678 478 0.231608699038317 0.232213699295983 0.231631952391852 0.232410162508583 0.00444608130544376 0.00482125556782882 21902541 8780858 1443 577 0 False 678 478 26 {X=0,Y=0,Width=0,Height=0} +60 731 478 0.231012211923176 0.231267534156606 0.230930037384604 0.231265735866331 0.00486117907413009 0.00513270163497687 21846133 8745080 1443 577 0 False 731 478 26 {X=0,Y=0,Width=0,Height=0} +61 255 531 0.23188006218448 0.232275898983159 0.231754024567025 0.23228809033341 0.00472265335071158 0.00437828454981231 21928203 8783210 1443 577 0 False 255 531 26 {X=0,Y=0,Width=0,Height=0} +62 308 531 0.231884122797375 0.232174850936942 0.231967650873579 0.232089723048753 0.00386613949636694 0.00386887921464367 21928587 8779389 1443 577 0 False 308 531 26 {X=0,Y=0,Width=0,Height=0} +63 361 531 0.233578487549648 0.233655134733593 0.233585107194629 0.233585107194629 0.00373614977630672 0.00364316957224767 22088818 8835364 1443 577 0 False 361 531 26 {X=0,Y=0,Width=0,Height=0} +64 414 531 0.233489185789483 0.233189324661343 0.233340962844282 0.232913710231174 0.00428500454303897 0.00386597316238801 22080373 8817750 1443 577 0 False 414 531 26 {X=0,Y=0,Width=0,Height=0} +65 467 531 0.234069451602068 0.234521302401154 0.23404287785153 0.234210727092393 0.00584269711697001 0.006800276469055 22135247 8868117 1443 577 0 False 467 531 26 {X=0,Y=0,Width=0,Height=0} +66 519 531 0.234153212317552 0.234199778678069 0.234012359807736 0.23436331731136 0.00558676223329408 0.00531152634122173 22143168 8855959 1443 577 0 False 519 531 26 {X=0,Y=0,Width=0,Height=0} +67 572 531 0.233531430967915 0.234022356186033 0.233554589150835 0.23404287785153 0.0045272039227539 0.00427806146678711 22084368 8849250 1443 577 0 False 572 531 26 {X=0,Y=0,Width=0,Height=0} +68 625 531 0.23264695757257 0.23290741621521 0.232730601968414 0.232913710231174 0.00443615328491619 0.00426484276286418 22000726 8807090 1443 577 0 False 625 531 26 {X=0,Y=0,Width=0,Height=0} +69 678 531 0.236768170951909 0.23137918682636 0.231967650873579 0.231342030975814 0.0467312634476915 0.00368753617173734 22343907 8749302 1440 577 0 False 678 531 26 {X=0,Y=0,Width=0,Height=0} +70 731 530 0.231381611377034 0.231158975603945 0.231448844129091 0.231250476844434 0.00439789980268516 0.00416175643889927 21881066 8740975 1443 577 0 False 731 530 26 {X=0,Y=0,Width=0,Height=0} +71 255 583 0.232471462958989 0.231809110429436 0.232532234683757 0.231998168917372 0.00439373505054827 0.0042583313466418 21984130 8765559 1443 577 0 False 255 583 26 {X=0,Y=0,Width=0,Height=0} +72 308 583 0.23235744856253 0.232701115296984 0.232349126420996 0.232745860990311 0.00358543338672795 0.00325801992246263 21973348 8799289 1443 577 0 False 308 583 26 {X=0,Y=0,Width=0,Height=0} +73 361 583 0.23366627715449 0.233036311315252 0.233646143282216 0.232669565880827 0.00413067712422924 0.00361165282224011 22097120 8811964 1443 577 0 False 361 583 26 {X=0,Y=0,Width=0,Height=0} +74 414 583 0.233510038728624 0.233616868174348 0.233478294041352 0.233539330128939 0.00404464824214002 0.00375704762762278 22082345 8833917 1443 577 0 False 414 583 26 {X=0,Y=0,Width=0,Height=0} +75 467 583 0.233759702974626 0.233788023095865 0.233539330128939 0.233829251544976 0.00527111198377977 0.00488392317532384 22105955 8840389 1443 577 0 False 467 583 26 {X=0,Y=0,Width=0,Height=0} +76 520 583 0.23411796746656 0.233875187283337 0.233844510566873 0.233829251544976 0.00652297104539307 0.00563726233303033 22139835 8843685 1443 577 0 False 520 583 26 {X=0,Y=0,Width=0,Height=0} +77 572 583 0.233157505622601 0.232367823350773 0.233066300450141 0.232349126420996 0.00413416617607115 0.00396414148507644 22049007 8786686 1443 577 0 False 572 583 26 {X=0,Y=0,Width=0,Height=0} +78 625 583 0.232076399162689 0.232318317477306 0.232104982070649 0.23251697566186 0.00394031929270413 0.00420881249121418 21946770 8784814 1443 577 0 False 625 583 26 {X=0,Y=0,Width=0,Height=0} +79 678 583 0.231198767477092 0.231305985833968 0.231250476844434 0.231342030975814 0.00353296458156234 0.00348675056480639 21863775 8746534 1443 577 0 False 678 583 26 {X=0,Y=0,Width=0,Height=0} +80 731 583 0.230856734862228 0.230731405645494 0.23089951934081 0.230914778362707 0.00441571063500808 0.00408904701465272 21831430 8724807 1443 577 0 False 731 583 26 {X=0,Y=0,Width=0,Height=0} +81 257 638 0.240937164077471 0.932809901031685 0.239826047150378 1 0.00750767155607931 0.152664128038759 22784706 52634391 1443 861 75 True 255 636 32 {X=0,Y=0,Width=0,Height=0} +82 308 636 0.2342816503494 0.233133947899035 0.233524071107042 0.232928969253071 0.00504913224783367 0.00354321111136101 22155314 8815656 1443 577 0 False 308 636 26 {X=0,Y=0,Width=0,Height=0} +83 361 636 0.232800901329169 0.232621197161505 0.232761120012207 0.232730601968414 0.00389126951569168 0.00379576487507158 22015284 8796267 1443 577 0 False 361 636 26 {X=0,Y=0,Width=0,Height=0} +84 414 636 0.232669322667034 0.232998811673919 0.232486457618067 0.232822156099794 0.00409758382606564 0.00417180520639221 22002841 8810546 1443 577 0 False 414 636 26 {X=0,Y=0,Width=0,Height=0} +85 467 635 0.233339894818494 0.232755566468709 0.233295185778592 0.232684824902724 0.00467008523104204 0.00513516198380096 22066255 8801348 1443 577 0 False 467 635 26 {X=0,Y=0,Width=0,Height=0} +86 520 635 0.233237618131186 0.233450843669205 0.233264667734798 0.233218890669108 0.00448270881430908 0.00410046743244792 22056583 8827639 1443 577 0 False 520 635 26 {X=0,Y=0,Width=0,Height=0} +87 573 635 0.232163871532148 0.232070470764626 0.232028686961166 0.232013427939269 0.00391962530434135 0.00395768559061662 21955042 8775442 1443 577 0 False 573 635 26 {X=0,Y=0,Width=0,Height=0} +88 625 635 0.231951154633691 0.231647211413748 0.231952391851682 0.231555657282368 0.00374689923944944 0.00346514170937283 21934926 8759437 1443 577 0 False 625 635 26 {X=0,Y=0,Width=0,Height=0} +89 678 635 0.231237512491804 0.231153157605994 0.231174181734951 0.231006332494087 0.00346521153097592 0.00339300819091707 21867439 8740755 1443 577 0 False 678 635 26 {X=0,Y=0,Width=0,Height=0} +90 731 635 0.23145599249971 0.231239925111788 0.231448844129091 0.231387808041505 0.004188978219201 0.0036203938557788 21888100 8744036 1443 577 0 False 731 635 26 {X=0,Y=0,Width=0,Height=0} +91 257 692 0.241276605936711 0.938525281992839 0.240405889982452 1 0.00843073015260114 0.142058781925077 22816806 52956885 1443 861 75 True 255 688 32 {X=0,Y=0,Width=0,Height=0} +92 308 688 0.234399926274497 0.233297565868662 0.233798733501183 0.233432516975662 0.0054736194775532 0.0038924641191703 22166499 8821843 1443 577 0 False 308 688 26 {X=0,Y=0,Width=0,Height=0} +93 361 688 0.232821320713287 0.23201702451982 0.232639047837034 0.231860837720302 0.00452232139337978 0.00415207983517798 22017215 8773421 1443 577 0 False 361 688 26 {X=0,Y=0,Width=0,Height=0} +94 414 688 0.232196250690185 0.231828891622466 0.232349126420996 0.231815060654612 0.00395650654047486 0.00373362667949909 21958104 8766307 1443 577 0 False 414 688 26 {X=0,Y=0,Width=0,Height=0} +95 467 688 0.232343743994007 0.232213805077764 0.232272831311513 0.232043945983062 0.00440148762533456 0.00446775356330164 21972052 8780862 1443 577 0 False 467 688 26 {X=0,Y=0,Width=0,Height=0} +96 520 688 0.232701532632867 0.232200873255047 0.232730601968414 0.2323338673991 0.00436318529317375 0.00420793936610014 22005887 8780373 1443 577 0 False 520 688 26 {X=0,Y=0,Width=0,Height=0} +97 573 688 0.231881468594675 0.231732524420055 0.231799801632715 0.231692988479438 0.00356198290404132 0.00339245308791093 21928336 8762663 1443 577 0 False 573 688 26 {X=0,Y=0,Width=0,Height=0} +98 626 687 0.231732685200298 0.230764145106687 0.231876096742199 0.230457007705806 0.0037627038025522 0.00363446436481824 21914266 8726045 1443 577 0 False 626 687 26 {X=0,Y=0,Width=0,Height=0} +99 678 687 0.231751053128943 0.231145726435885 0.231784542610819 0.231128404669261 0.00377023693527255 0.00382762841873888 21916003 8740474 1443 577 0 False 678 687 26 {X=0,Y=0,Width=0,Height=0} +100 733 690 0.234923565571311 0.963709686209114 0.234744792858778 1 0.00560440833325915 0.110472550443558 22216018 47304379 1443 749 83 True 731 687 31 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D02_2.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D02_2.csv new file mode 100644 index 0000000..7937d81 --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D02_2.csv @@ -0,0 +1,101 @@ + ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour +1 256 216 0.0240888669362004 0.174367235743116 0.0240482185091936 0.196856641489281 0.00208551961157734 0.0468083532664703 2278012 9838782 1443 861 0 True 255 217 33 {X=0,Y=0,Width=0,Height=0} +2 307 217 0.0234214459895394 0.0235195476136357 0.0233463035019455 0.0234988937209125 0.00162190639710498 0.00167399087204202 2214896 889361 1443 577 0 False 307 217 26 {X=0,Y=0,Width=0,Height=0} +3 360 217 0.0233961411805312 0.0231771584342657 0.0234073395895323 0.0231937132829786 0.00162384774834236 0.00152632616217123 2212503 876414 1443 577 0 False 360 217 26 {X=0,Y=0,Width=0,Height=0} +4 413 217 0.0232172204248194 0.0231475659810553 0.0231937132829786 0.0231479362172885 0.0017277387934469 0.00161585728522469 2195583 875295 1443 577 0 False 413 217 26 {X=0,Y=0,Width=0,Height=0} +5 466 217 0.0232396595408726 0.0233001562000222 0.0231937132829786 0.0231631952391852 0.00232707971589014 0.002295057761809 2197705 881065 1443 577 0 False 466 217 26 {X=0,Y=0,Width=0,Height=0} +6 519 217 0.0231350458862475 0.0233310709254941 0.0231174181734951 0.0234073395895323 0.00239822377581685 0.00223751343866091 2187812 882234 1443 577 0 False 519 217 26 {X=0,Y=0,Width=0,Height=0} +7 572 217 0.0232530045759618 0.0231683785464499 0.0231784542610819 0.0232089723048753 0.00204894469493615 0.0019543654865017 2198967 876082 1443 577 0 False 572 217 26 {X=0,Y=0,Width=0,Height=0} +8 625 217 0.0233555773496263 0.023327474344943 0.0233310444800488 0.0233768215457389 0.00178582341166955 0.00198346955349576 2208667 882098 1443 577 0 False 625 217 26 {X=0,Y=0,Width=0,Height=0} +9 678 217 0.02334851357511 0.0233986390380522 0.0233310444800488 0.0233615625238422 0.00152679551304958 0.00130179196005166 2207999 884789 1443 577 0 False 678 217 26 {X=0,Y=0,Width=0,Height=0} +10 731 216 0.0238312612311239 0.165718631256875 0.0238040741588464 0.190539406424048 0.001943632465776 0.0556485628892552 2253651 9350779 1443 861 0 True 731 217 32 {X=0,Y=0,Width=0,Height=0} +11 255 270 0.0234306458156309 0.0233369418143347 0.0234073395895323 0.0232394903486687 0.00178962453025226 0.00183125592682466 2215766 882456 1443 577 0 False 255 270 26 {X=0,Y=0,Width=0,Height=0} +12 308 270 0.0232176645543549 0.0231402670381723 0.0231784542610819 0.0231021591515984 0.00143316715002274 0.00145727618899552 2195625 875019 1443 577 0 False 308 270 26 {X=0,Y=0,Width=0,Height=0} +13 360 270 0.0233758698395915 0.023500454002181 0.0233615625238422 0.0234988937209125 0.00142148103251328 0.00135273651163754 2210586 888639 1443 577 0 False 360 270 26 {X=0,Y=0,Width=0,Height=0} +14 413 269 0.0232629446179458 0.0235127511342121 0.0232852674143587 0.0234988937209125 0.00149607050981454 0.00138743760888117 2199907 889104 1443 577 0 False 413 269 26 {X=0,Y=0,Width=0,Height=0} +15 466 269 0.0233708680950613 0.0232863781230583 0.0233768215457389 0.023270008392462 0.0020001618604449 0.00185787061330199 2210113 880544 1443 577 0 False 466 269 26 {X=0,Y=0,Width=0,Height=0} +16 519 269 0.0233194230905378 0.0235006391202976 0.0233310444800488 0.0234073395895323 0.00219813203163544 0.00226438087284547 2205248 888646 1443 577 0 False 519 269 26 {X=0,Y=0,Width=0,Height=0} +17 572 269 0.0231654581849134 0.0234458970486751 0.0231631952391852 0.0234531166552224 0.00182385143200727 0.00174559940775185 2190688 886576 1443 577 0 False 572 269 26 {X=0,Y=0,Width=0,Height=0} +18 625 269 0.0232968253567933 0.0234061230990518 0.0233005264362554 0.0233157854581521 0.00156364179136731 0.0013977040615763 2203111 885072 1443 577 0 False 625 269 26 {X=0,Y=0,Width=0,Height=0} +19 678 269 0.0234670961610765 0.0234154583412174 0.0234378576333257 0.0233768215457389 0.00145687347491341 0.00144702267889098 2219213 885425 1443 577 0 False 678 269 26 {X=0,Y=0,Width=0,Height=0} +20 731 269 0.0233475618689626 0.0232681307658508 0.0233310444800488 0.0232547493705653 0.00164898564311462 0.00143689697202813 2207909 879854 1443 577 0 False 731 269 26 {X=0,Y=0,Width=0,Height=0} +21 255 322 0.0234211076051314 0.0233045461439301 0.023422598611429 0.0233463035019455 0.00187050923800948 0.00185517264679196 2214864 881231 1443 577 0 False 255 322 26 {X=0,Y=0,Width=0,Height=0} +22 308 322 0.0232833428530384 0.0234102750339526 0.023270008392462 0.0234073395895323 0.00136311086294054 0.00134893770080216 2201836 885229 1443 577 0 False 308 322 26 {X=0,Y=0,Width=0,Height=0} +23 360 322 0.0233693770887637 0.0234626370155046 0.0233310444800488 0.0235141527428092 0.00157612594040826 0.00172777150629272 2209972 887209 1443 577 0 False 360 322 26 {X=0,Y=0,Width=0,Height=0} +24 413 322 0.0233482809358296 0.023440555068739 0.0233920805676356 0.0234378576333257 0.00154121323344125 0.00154211622056712 2207977 886374 1443 577 0 False 413 322 26 {X=0,Y=0,Width=0,Height=0} +25 466 322 0.02328054060716 0.0232658829030064 0.023224231326772 0.0231326771953918 0.00183541967405321 0.00170525246328583 2201571 879769 1443 577 0 False 466 322 26 {X=0,Y=0,Width=0,Height=0} +26 519 322 0.0234342940225293 0.0235085991993113 0.0234531166552224 0.0235446707866026 0.00189185468771062 0.00193604294039383 2216111 888947 1443 577 0 False 519 322 26 {X=0,Y=0,Width=0,Height=0} +27 572 322 0.0234748578534342 0.0234539100185792 0.0234683756771191 0.0234988937209125 0.00182600053997456 0.00176768863934043 2219947 886879 1443 577 0 False 572 322 26 {X=0,Y=0,Width=0,Height=0} +28 625 321 0.0233465255667133 0.0234349486343506 0.0233310444800488 0.0234988937209125 0.00169903319976579 0.00163563656149402 2207811 886162 1443 577 0 False 625 321 26 {X=0,Y=0,Width=0,Height=0} +29 678 321 0.023356729971516 0.0234477482298411 0.0233768215457389 0.0235446707866026 0.00133737776159417 0.00129642972976158 2208776 886646 1443 577 0 False 678 321 26 {X=0,Y=0,Width=0,Height=0} +30 731 321 0.0232981365963742 0.0232735256366774 0.0233157854581521 0.023270008392462 0.00138572909528127 0.00154082279618791 2203235 880058 1443 577 0 False 731 321 26 {X=0,Y=0,Width=0,Height=0} +31 255 374 0.0234545019163925 0.0232076764780591 0.023422598611429 0.0231631952391852 0.00195357084519607 0.002134816655933 2218022 877568 1443 577 0 False 255 374 26 {X=0,Y=0,Width=0,Height=0} +32 308 374 0.0234060917970279 0.023370924211453 0.0233310444800488 0.0234073395895323 0.00153985294244478 0.00136856515681643 2213444 883741 1443 577 0 False 308 374 26 {X=0,Y=0,Width=0,Height=0} +33 361 374 0.0235233737179263 0.0233412259764617 0.0234378576333257 0.0233157854581521 0.00170307639571183 0.00158133544331162 2224535 882618 1443 577 0 False 361 374 26 {X=0,Y=0,Width=0,Height=0} +34 413 374 0.0234535607847579 0.0232638730491691 0.0233920805676356 0.023270008392462 0.0015957224726057 0.00154426551886594 2217933 879693 1443 577 0 False 413 374 26 {X=0,Y=0,Width=0,Height=0} +35 466 374 0.0234273677166788 0.0236109430723446 0.0234531166552224 0.0235904478522927 0.00172013235853366 0.00159890272021172 2215456 892817 1443 577 0 False 466 374 26 {X=0,Y=0,Width=0,Height=0} +36 519 374 0.0234267861184776 0.0235707724410429 0.0233768215457389 0.0235294117647059 0.00172359586449718 0.00152673931083886 2215401 891298 1443 577 0 False 519 374 26 {X=0,Y=0,Width=0,Height=0} +37 572 374 0.0234197117694486 0.0237538013674675 0.0233768215457389 0.023773556115053 0.00159736503061899 0.00155317415894906 2214732 898219 1443 577 0 False 572 374 26 {X=0,Y=0,Width=0,Height=0} +38 625 374 0.0233589717682187 0.0235158452513038 0.0233157854581521 0.023575188830396 0.00155166435809851 0.00164275670751493 2208988 889221 1443 577 0 False 625 374 26 {X=0,Y=0,Width=0,Height=0} +39 678 374 0.0233599128998534 0.0233735423105306 0.0233920805676356 0.0233463035019455 0.00143682907449405 0.00138730922613866 2209077 883840 1443 577 0 False 678 374 26 {X=0,Y=0,Width=0,Height=0} +40 731 374 0.0233474561238352 0.0232532155347421 0.0233157854581521 0.023224231326772 0.00153248809968203 0.0015139939054398 2207899 879290 1443 577 0 False 731 374 26 {X=0,Y=0,Width=0,Height=0} +41 255 427 0.0232992257711873 0.0232940737476197 0.0232547493705653 0.0231479362172885 0.00216447562630667 0.00252738281217655 2203338 880835 1443 577 0 False 255 427 26 {X=0,Y=0,Width=0,Height=0} +42 308 427 0.0232704630965102 0.023417388858719 0.0232089723048753 0.0234073395895323 0.00173069022593176 0.00174873057133865 2200618 885498 1443 577 0 False 308 427 26 {X=0,Y=0,Width=0,Height=0} +43 361 426 0.0233844880674819 0.0234359800067145 0.0233310444800488 0.0234073395895323 0.00177420494769418 0.00174064143120858 2211401 886201 1443 577 0 False 361 426 26 {X=0,Y=0,Width=0,Height=0} +44 414 426 0.0235116148597494 0.0235840744999927 0.0234531166552224 0.0234836346990158 0.00183591629395131 0.00180059286000933 2223423 891801 1443 577 0 False 414 426 26 {X=0,Y=0,Width=0,Height=0} +45 466 426 0.0233550274749634 0.0233917896677381 0.023270008392462 0.0233463035019455 0.00196630879431542 0.00190127789248088 2208615 884530 1443 577 0 False 466 426 26 {X=0,Y=0,Width=0,Height=0} +46 519 426 0.0233949462605906 0.0234158021320053 0.0233920805676356 0.0234378576333257 0.00185182548400981 0.00177513959647814 2212390 885438 1443 577 0 False 519 426 26 {X=0,Y=0,Width=0,Height=0} +47 572 426 0.0235953332771827 0.0235560158826055 0.023575188830396 0.0235446707866026 0.00167977682063734 0.0016123838196289 2231340 890740 1443 577 0 False 572 426 26 {X=0,Y=0,Width=0,Height=0} +48 625 426 0.0234882769101126 0.0235430311689984 0.0234683756771191 0.0234378576333257 0.0017423557825763 0.00171846820223237 2221216 890249 1443 577 0 False 625 426 26 {X=0,Y=0,Width=0,Height=0} +49 678 426 0.0233324614647572 0.0236037499112425 0.023270008392462 0.0236514839398795 0.00163375885009734 0.00170735710863348 2206481 892545 1443 577 0 False 678 426 26 {X=0,Y=0,Width=0,Height=0} +50 731 426 0.0234261727967381 0.0232416853206226 0.0234836346990158 0.023224231326772 0.0017368738833249 0.0018025342592271 2215343 878854 1443 577 0 False 731 426 26 {X=0,Y=0,Width=0,Height=0} +51 255 479 0.0242534909506757 0.0233389252227268 0.0235141527428092 0.0233615625238422 0.00547176309863061 0.00213341470107112 2293580 882531 1443 577 0 False 255 479 26 {X=0,Y=0,Width=0,Height=0} +52 308 479 0.0234162010312159 0.0233735952014211 0.0234073395895323 0.0232547493705653 0.00168967965221801 0.00155902528964614 2214400 883842 1443 577 0 False 308 479 26 {X=0,Y=0,Width=0,Height=0} +53 361 479 0.0237137995435089 0.0235522606293831 0.0237277790493629 0.0235446707866026 0.00166597845039161 0.0016528551670362 2242543 890598 1443 577 0 False 361 479 26 {X=0,Y=0,Width=0,Height=0} +54 414 479 0.0235419637113389 0.0235536093470897 0.0235599298084993 0.0234836346990158 0.00196247393738698 0.00194803876006071 2226293 890649 1443 577 0 False 414 479 26 {X=0,Y=0,Width=0,Height=0} +55 467 479 0.0235714771764211 0.0236185858060155 0.0235599298084993 0.023575188830396 0.00237074036097863 0.00244184262863502 2229084 893106 1443 577 0 False 467 479 26 {X=0,Y=0,Width=0,Height=0} +56 519 478 0.0235532361419292 0.0234936310773121 0.0234836346990158 0.0234378576333257 0.00208867652436675 0.0022372565511234 2227359 888381 1443 577 0 False 519 478 26 {X=0,Y=0,Width=0,Height=0} +57 572 478 0.0235840079740286 0.0235011415837569 0.0235599298084993 0.0233157854581521 0.00196482443883865 0.00220687563764239 2230269 888665 1443 577 0 False 572 478 26 {X=0,Y=0,Width=0,Height=0} +58 625 478 0.0234988619973742 0.0232530039711803 0.0234836346990158 0.023270008392462 0.00205171505341608 0.00196431229626117 2222217 879282 1443 577 0 False 625 478 26 {X=0,Y=0,Width=0,Height=0} +59 678 478 0.0235388230810524 0.023547156658454 0.0235599298084993 0.0234531166552224 0.00177311627884972 0.00182435076132084 2225996 890405 1443 577 0 False 678 478 26 {X=0,Y=0,Width=0,Height=0} +60 731 478 0.0233017107816833 0.0234959847219374 0.023270008392462 0.0235446707866026 0.00201112215654362 0.00208734396868237 2203573 888470 1443 577 0 False 731 478 26 {X=0,Y=0,Width=0,Height=0} +61 255 531 0.0235105891320128 0.0235418146785179 0.0234836346990158 0.023575188830396 0.00184818058081474 0.00175905852426772 2223326 890203 1443 577 0 False 255 531 26 {X=0,Y=0,Width=0,Height=0} +62 308 531 0.0234586999979538 0.02333813185937 0.0234836346990158 0.0233157854581521 0.00151308293816996 0.00159124780386613 2218419 882501 1443 577 0 False 308 531 26 {X=0,Y=0,Width=0,Height=0} +63 361 531 0.0235790379530366 0.0236976841326932 0.0235141527428092 0.0237277790493629 0.001416742464151 0.00145136262889872 2229799 896097 1443 577 0 False 361 531 26 {X=0,Y=0,Width=0,Height=0} +64 414 531 0.0235399439794038 0.0235785738473852 0.0235294117647059 0.0236209658960861 0.00162256017411889 0.00147333167586763 2226102 891593 1443 577 0 False 414 531 26 {X=0,Y=0,Width=0,Height=0} +65 467 531 0.0235101767260156 0.0233597113426762 0.0235141527428092 0.0232852674143587 0.00229522261687324 0.00230892250250458 2223287 883317 1443 577 0 False 467 531 26 {X=0,Y=0,Width=0,Height=0} +66 519 531 0.0236480683722616 0.0236084572004931 0.0236209658960861 0.0235141527428092 0.00210900889412075 0.00195689998356048 2236327 892723 1443 577 0 False 519 531 26 {X=0,Y=0,Width=0,Height=0} +67 572 531 0.0235952381065679 0.0235075149360569 0.0235599298084993 0.0235446707866026 0.00179875197019106 0.00166311653899469 2231331 888906 1443 577 0 False 572 531 26 {X=0,Y=0,Width=0,Height=0} +68 625 531 0.0235224643098298 0.0236601580459143 0.0234988937209125 0.0236514839398795 0.00170435074156866 0.00174583330368746 2224449 894678 1443 577 0 False 625 531 26 {X=0,Y=0,Width=0,Height=0} +69 678 531 0.0246909585430986 0.0233386607682746 0.0235141527428092 0.0232547493705653 0.0133492402025632 0.00152529676632273 2334950 882521 1443 577 0 False 678 531 26 {X=0,Y=0,Width=0,Height=0} +70 731 530 0.0234148580680968 0.0233887484415369 0.0233768215457389 0.0234073395895323 0.00176478357821664 0.00176647856359627 2214273 884415 1443 577 0 False 731 530 26 {X=0,Y=0,Width=0,Height=0} +71 255 583 0.0234837615931688 0.02354147088773 0.0235141527428092 0.0235141527428092 0.00178308863977875 0.00186796311058998 2220789 890190 1443 577 0 False 255 583 26 {X=0,Y=0,Width=0,Height=0} +72 308 583 0.0234783262936158 0.0235045266007461 0.023422598611429 0.0234378576333257 0.00139657100213461 0.00140414967635351 2220275 888793 1443 577 0 False 308 583 26 {X=0,Y=0,Width=0,Height=0} +73 361 583 0.0234915655835775 0.0236553185294375 0.0234988937209125 0.0236209658960861 0.0014437872734616 0.00149508330697697 2221527 894495 1443 577 0 False 361 583 26 {X=0,Y=0,Width=0,Height=0} +74 414 583 0.0234707337934621 0.0236485220500139 0.0234531166552224 0.0236057068741894 0.00161892055440532 0.0016985079409516 2219557 894238 1443 577 0 False 414 583 26 {X=0,Y=0,Width=0,Height=0} +75 467 583 0.0235410754522679 0.0233180597664418 0.0234988937209125 0.0232547493705653 0.00204787236551608 0.00201391611766799 2226209 881742 1443 577 0 False 467 583 26 {X=0,Y=0,Width=0,Height=0} +76 520 583 0.0235441209119396 0.0235446707866026 0.0234683756771191 0.0234988937209125 0.00222383596149721 0.00227711844848854 2226497 890311 1443 577 0 False 520 583 26 {X=0,Y=0,Width=0,Height=0} +77 572 583 0.0235173250966339 0.0234681112226668 0.0234836346990158 0.0234073395895323 0.00167818272132037 0.00160633718940635 2223963 887416 1443 577 0 False 572 583 26 {X=0,Y=0,Width=0,Height=0} +78 625 583 0.0233394935157352 0.0234943715497785 0.023270008392462 0.0234683756771191 0.00154413112753055 0.00151879512855105 2207146 888409 1443 577 0 False 625 583 26 {X=0,Y=0,Width=0,Height=0} +79 678 583 0.0234074030366088 0.023458167735261 0.0234073395895323 0.0234836346990158 0.00134400980439284 0.00144166544068139 2213568 887040 1443 577 0 False 678 583 26 {X=0,Y=0,Width=0,Height=0} +80 731 583 0.0234851680033644 0.0231644646205561 0.0234836346990158 0.023224231326772 0.00176591832369996 0.00160543812290444 2220922 875934 1443 577 0 False 731 583 26 {X=0,Y=0,Width=0,Height=0} +81 257 638 0.0244710298269465 0.1618235754015 0.0244754711223011 0.178820477607385 0.00185972039492138 0.0503449783607916 2314152 9130998 1443 861 0 True 255 636 32 {X=0,Y=0,Width=0,Height=0} +82 308 636 0.0236200564879897 0.0234965665217324 0.0235446707866026 0.0234073395895323 0.0014535167082617 0.00130283667059929 2233678 888492 1443 577 0 False 308 636 26 {X=0,Y=0,Width=0,Height=0} +83 361 636 0.0234357321562632 0.0233749703645729 0.0234531166552224 0.023422598611429 0.00142917312996509 0.00156280428182271 2216247 883894 1443 577 0 False 361 636 26 {X=0,Y=0,Width=0,Height=0} +84 414 636 0.0235980192034209 0.0236572490469392 0.0235446707866026 0.0236209658960861 0.00170225389625803 0.00161254618650198 2231594 894568 1443 577 0 False 414 636 26 {X=0,Y=0,Width=0,Height=0} +85 467 635 0.0234381854432209 0.0233678036489161 0.023422598611429 0.0233157854581521 0.00192577727218204 0.00200231649025042 2216479 883623 1443 577 0 False 467 635 26 {X=0,Y=0,Width=0,Height=0} +86 520 635 0.0234674028219462 0.0235893900344835 0.023422598611429 0.0235294117647059 0.00175740992897726 0.00164148579049812 2219242 892002 1443 577 0 False 520 635 26 {X=0,Y=0,Width=0,Height=0} +87 573 635 0.0233491691949005 0.0236025598662072 0.0233463035019455 0.0236362249179828 0.00151447733642775 0.00150882233763346 2208061 892500 1443 577 0 False 573 635 26 {X=0,Y=0,Width=0,Height=0} +88 625 635 0.0232702727552808 0.0233029594172164 0.0233005264362554 0.0233463035019455 0.001457052318149 0.00148428108416514 2200600 881171 1443 577 0 False 625 635 26 {X=0,Y=0,Width=0,Height=0} +89 678 635 0.0232421551258814 0.0236355108909616 0.0232547493705653 0.0236057068741894 0.00138511853745115 0.00131058039378217 2197941 893746 1443 577 0 False 678 635 26 {X=0,Y=0,Width=0,Height=0} +90 731 635 0.0234200078558055 0.0232586897419044 0.0234836346990158 0.0232089723048753 0.00156343107251163 0.00152526293856403 2214760 879497 1443 577 0 False 731 635 26 {X=0,Y=0,Width=0,Height=0} +91 257 692 0.0244528416650184 0.161221207346625 0.0244754711223011 0.178927290760662 0.00205648644323577 0.0495609338023199 2312432 9097009 1443 861 0 True 255 688 32 {X=0,Y=0,Width=0,Height=0} +92 308 688 0.0237302957833972 0.0234647262056776 0.0236972610055695 0.0235141527428092 0.00147742494724194 0.00143599474796294 2244103 887288 1443 577 0 False 308 688 26 {X=0,Y=0,Width=0,Height=0} +93 361 688 0.0234415798618133 0.0234877601884714 0.0234531166552224 0.023422598611429 0.0017308212321368 0.00158329579151384 2216800 888159 1443 577 0 False 361 688 26 {X=0,Y=0,Width=0,Height=0} +94 414 688 0.0234319993532628 0.0232923283482347 0.0233920805676356 0.0233920805676356 0.00174695327247079 0.00151196278660652 2215894 880769 1443 577 0 False 414 688 26 {X=0,Y=0,Width=0,Height=0} +95 467 688 0.0233710690108035 0.0231849862860532 0.0233768215457389 0.0230106050202182 0.00173542589159577 0.00200984346235399 2210132 876710 1443 577 0 False 467 688 26 {X=0,Y=0,Width=0,Height=0} +96 520 688 0.0233679706785681 0.0233109723871206 0.0233920805676356 0.0233005264362554 0.00167763957406934 0.0018399460292374 2209839 881474 1443 577 0 False 520 688 26 {X=0,Y=0,Width=0,Height=0} +97 573 688 0.0233034661507996 0.0230917925370689 0.0232852674143587 0.0231021591515984 0.00148083733913324 0.00141831944789892 2203739 873186 1443 577 0 False 573 688 26 {X=0,Y=0,Width=0,Height=0} +98 626 687 0.0234119818006291 0.0231282079151482 0.0233768215457389 0.0231021591515984 0.00150069603525207 0.00147244864775665 2214001 874563 1443 577 0 False 626 687 26 {X=0,Y=0,Width=0,Height=0} +99 678 687 0.0232936001304049 0.0234018918278153 0.0232852674143587 0.023422598611429 0.0015263353493413 0.00144994073515797 2202806 884912 1443 577 0 False 678 687 26 {X=0,Y=0,Width=0,Height=0} +100 733 690 0.0237097600796388 0.182421769755213 0.0236972610055695 0.194506752117189 0.00166556449029086 0.0467434733154341 2242161 8954303 1443 749 0 True 731 687 31 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D02_3.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D02_3.csv new file mode 100644 index 0000000..3e5ee1d --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D02_3.csv @@ -0,0 +1,101 @@ + ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour +1 256 216 0.317867463392755 0.367524796132113 0.317845426108186 0.367986572060731 0.00620013774091582 0.0318243460274577 30059774 20737820 1443 861 0 True 255 217 33 {X=0,Y=0,Width=0,Height=0} +2 307 217 0.317465050310095 0.3174072515262 0.317402914473182 0.317601281757839 0.00492729550637337 0.00465705197978249 30021719 12002341 1443 577 0 False 307 217 26 {X=0,Y=0,Width=0,Height=0} +3 360 217 0.316957780359016 0.316778881302131 0.316853589684901 0.316426337071794 0.00428743261165129 0.00427622404837832 29973748 11978580 1443 577 0 False 360 217 26 {X=0,Y=0,Width=0,Height=0} +4 413 217 0.316671972428438 0.316973096651888 0.31648737315938 0.316975661860075 0.00445112985911122 0.00442183520045416 29946720 11985924 1443 577 0 False 413 217 26 {X=0,Y=0,Width=0,Height=0} +5 466 217 0.317334476226671 0.317243818674689 0.317204547188525 0.317036697947662 0.00597749206235878 0.00600337180536221 30009371 11996161 1443 577 0 False 466 217 26 {X=0,Y=0,Width=0,Height=0} +6 519 217 0.316815806950849 0.316943900880356 0.317036697947662 0.316914625772488 0.00661802684354813 0.0071803686715666 29960322 11984820 1443 577 0 False 519 217 26 {X=0,Y=0,Width=0,Height=0} +7 572 217 0.317304190822158 0.316980712940113 0.317326619363699 0.316838330663004 0.00624648766701539 0.00556505040955773 30006507 11986212 1443 577 0 False 572 217 26 {X=0,Y=0,Width=0,Height=0} +8 625 217 0.317298744948093 0.317325508654999 0.317448691538872 0.317509727626459 0.00595461732327324 0.00561110405378164 30005992 11999250 1443 577 0 False 625 217 26 {X=0,Y=0,Width=0,Height=0} +9 678 217 0.31716779018221 0.317120424227254 0.317204547188525 0.317204547188525 0.00448372206499126 0.00433502392815423 29993608 11991495 1443 577 0 False 678 217 26 {X=0,Y=0,Width=0,Height=0} +10 731 216 0.316636463214628 0.3446699359254 0.316594186312657 0.33829251544976 0.00572591419845666 0.0251512429077455 29943362 19448220 1443 861 0 True 731 217 32 {X=0,Y=0,Width=0,Height=0} +11 255 270 0.317124392381888 0.318471336905849 0.317067215991455 0.318577859159228 0.00528949625135051 0.004870766842807 29989504 12042578 1443 577 0 False 255 270 26 {X=0,Y=0,Width=0,Height=0} +12 308 270 0.317783692102758 0.317671044842351 0.31783016708629 0.317647058823529 0.00412745553718534 0.00404545027739264 30051852 12012316 1443 577 0 False 308 270 26 {X=0,Y=0,Width=0,Height=0} +13 360 270 0.317575257881964 0.31719587308249 0.317509727626459 0.317250324254215 0.00405518969149383 0.00457716588401252 30032141 11994348 1443 577 0 False 360 270 26 {X=0,Y=0,Width=0,Height=0} +14 413 269 0.317313602138505 0.316967834008287 0.317326619363699 0.317006179903868 0.00424425124706316 0.00383913538242858 30007397 11985725 1443 577 0 False 413 269 26 {X=0,Y=0,Width=0,Height=0} +15 466 269 0.317503647281629 0.317514910933724 0.317494468604562 0.317296101319905 0.00510700303930247 0.00449963524908389 30025369 12006412 1443 577 0 False 466 269 26 {X=0,Y=0,Width=0,Height=0} +16 519 269 0.317447115936473 0.3176951630884 0.317097734035248 0.317479209582666 0.00561976476105752 0.00607620192821041 30020023 12013228 1443 577 0 False 519 269 26 {X=0,Y=0,Width=0,Height=0} +17 572 269 0.31770145411711 0.317283301724415 0.317448691538872 0.316884107728695 0.00585738439449483 0.00586964814325294 30044075 11997654 1443 577 0 False 572 269 26 {X=0,Y=0,Width=0,Height=0} +18 625 269 0.317431782892987 0.318216746604636 0.317341878385595 0.318486305027848 0.0055306548276437 0.00534316049554891 30018573 12032951 1443 577 0 False 625 269 26 {X=0,Y=0,Width=0,Height=0} +19 678 269 0.317471786274716 0.317827548987212 0.317341878385595 0.317662317845426 0.00416970225840175 0.0039775972484872 30022356 12018234 1443 577 0 False 678 269 26 {X=0,Y=0,Width=0,Height=0} +20 731 269 0.316639995101886 0.316351998925257 0.316777294575418 0.316197451743343 0.00483613505296572 0.00457861930908998 29943696 11962438 1443 577 0 False 731 269 26 {X=0,Y=0,Width=0,Height=0} +21 255 322 0.317767090117742 0.318545304816152 0.317723353933013 0.318547341115434 0.00569304357068724 0.00587264574646697 30050282 12045375 1443 577 0 False 255 322 26 {X=0,Y=0,Width=0,Height=0} +22 308 322 0.317906938048847 0.318111652405299 0.317891203173877 0.318272678721294 0.00457300927973245 0.00433936090917638 30063507 12028977 1443 577 0 False 308 322 26 {X=0,Y=0,Width=0,Height=0} +23 360 322 0.318029538949658 0.317460486207444 0.317998016327153 0.317647058823529 0.00481225277227162 0.00510267902352631 30075101 12004354 1443 577 0 False 360 322 26 {X=0,Y=0,Width=0,Height=0} +24 413 322 0.318000226400318 0.318265617787418 0.317952239261463 0.318211642633707 0.0042291802698861 0.00413504223308033 30072329 12034799 1443 577 0 False 413 322 26 {X=0,Y=0,Width=0,Height=0} +25 466 322 0.318164205369516 0.318969701321175 0.318120088502327 0.318944075684749 0.0043461826913273 0.00438259623891713 30087836 12061423 1443 577 0 False 466 322 26 {X=0,Y=0,Width=0,Height=0} +26 519 322 0.318294948645143 0.318618955381113 0.31815060654612 0.318364232852674 0.00527447729541552 0.00534388056886014 30100200 12048160 1443 577 0 False 519 322 26 {X=0,Y=0,Width=0,Height=0} +27 572 322 0.318103528815362 0.318225711610569 0.31819638361181 0.317998016327153 0.00531672975000964 0.00519446902910496 30082098 12033290 1443 577 0 False 572 322 26 {X=0,Y=0,Width=0,Height=0} +28 625 321 0.318161455996201 0.318477340021915 0.31815060654612 0.318272678721294 0.00532322481009925 0.00530410434258605 30087576 12042805 1443 577 0 False 625 321 26 {X=0,Y=0,Width=0,Height=0} +29 678 321 0.318011371936755 0.317551881666153 0.31792172121767 0.317677576867323 0.00425750047255278 0.0045568013326525 30073383 12007810 1443 577 0 False 678 321 26 {X=0,Y=0,Width=0,Height=0} +30 731 321 0.317326587640161 0.317081496531878 0.317265583276112 0.316807812619211 0.00433244871706355 0.00442482838749893 30008625 11990023 1443 577 0 False 731 321 26 {X=0,Y=0,Width=0,Height=0} +31 255 374 0.317769078126139 0.317277536617355 0.317845426108186 0.317097734035248 0.00645904355284617 0.00738473089426984 30050470 11997436 1443 577 0 False 255 374 26 {X=0,Y=0,Width=0,Height=0} +32 308 374 0.318113627475037 0.318460705836867 0.31792172121767 0.318440527962158 0.0055101524937701 0.00511871279134811 30083053 12042176 1443 577 0 False 308 374 26 {X=0,Y=0,Width=0,Height=0} +33 361 374 0.319011170968141 0.319727521999635 0.319157701991302 0.319462882429236 0.00543004750194547 0.00568467759073174 30167931 12090079 1443 577 0 False 361 374 26 {X=0,Y=0,Width=0,Height=0} +34 413 374 0.318721503340409 0.318714925901846 0.318684672312505 0.318425268940261 0.0044444218043341 0.00448656762210201 30140538 12051789 1443 577 0 False 413 374 26 {X=0,Y=0,Width=0,Height=0} +35 466 374 0.31838891376543 0.318255753636348 0.318501564049744 0.318226901655604 0.00418452743834326 0.00385039643542205 30109086 12034426 1443 577 0 False 466 374 26 {X=0,Y=0,Width=0,Height=0} +36 519 374 0.318192354722453 0.318585581229235 0.31819638361181 0.318440527962158 0.00499372725314428 0.00470838590553072 30090498 12046898 1443 577 0 False 519 374 26 {X=0,Y=0,Width=0,Height=0} +37 572 374 0.318412124820914 0.317829823295502 0.318348973830777 0.317677576867323 0.00501195626720822 0.00531092854409545 30111281 12018320 1443 577 0 False 572 374 26 {X=0,Y=0,Width=0,Height=0} +38 625 374 0.318262410869415 0.317737211346313 0.318379491874571 0.317769130998703 0.00472223103449178 0.00464524081966611 30097123 12014818 1443 577 0 False 625 374 26 {X=0,Y=0,Width=0,Height=0} +39 678 374 0.31794457273972 0.317977706225218 0.317845426108186 0.317708094911116 0.0042940378406357 0.00389963012719965 30067066 12023912 1443 577 0 False 678 374 26 {X=0,Y=0,Width=0,Height=0} +40 731 374 0.317101900393271 0.317605883265309 0.317235065232319 0.317448691538872 0.00409905017252717 0.00380423745297429 29987377 12009852 1443 577 0 False 731 374 26 {X=0,Y=0,Width=0,Height=0} +41 255 427 0.317839218869203 0.318266781387008 0.317952239261463 0.317952239261463 0.0063727824179233 0.00626138661049926 30057103 12034843 1443 577 0 False 255 427 26 {X=0,Y=0,Width=0,Height=0} +42 308 427 0.31869211676948 0.319227306403143 0.318638895246815 0.318944075684749 0.00514570734594213 0.00486436262095651 30137759 12071164 1443 577 0 False 308 427 26 {X=0,Y=0,Width=0,Height=0} +43 361 426 0.318617947137059 0.318702496542589 0.318654154268711 0.318715190356298 0.00524326840566532 0.00501854598229418 30130745 12051319 1443 577 0 False 361 426 26 {X=0,Y=0,Width=0,Height=0} +44 414 426 0.3186058710435 0.318316921951161 0.318394750896468 0.318120088502327 0.00529496338153995 0.00545185363362648 30129603 12036739 1443 577 0 False 414 426 26 {X=0,Y=0,Width=0,Height=0} +45 466 426 0.318118142791981 0.318399775531061 0.318135347524224 0.318242160677501 0.0056422047095131 0.00589134202391786 30083480 12039872 1443 577 0 False 466 426 26 {X=0,Y=0,Width=0,Height=0} +46 519 426 0.318224448368646 0.318455496084157 0.31815060654612 0.318425268940261 0.0052855912530232 0.00487660625641986 30093533 12041979 1443 577 0 False 519 426 26 {X=0,Y=0,Width=0,Height=0} +47 572 426 0.318703590115813 0.318313484043281 0.318638895246815 0.31810482948043 0.00541582791616236 0.00568595450710625 30138844 12036609 1443 577 0 False 572 426 26 {X=0,Y=0,Width=0,Height=0} +48 625 426 0.31869815481626 0.317619132433368 0.318593118181125 0.317586022735943 0.00531406514870304 0.00538845013801892 30138330 12010353 1443 577 0 False 625 426 26 {X=0,Y=0,Width=0,Height=0} +49 678 426 0.317660403858619 0.31823113292684 0.317601281757839 0.318410009918364 0.00442604039845677 0.00385150411896001 30040193 12033495 1443 577 0 False 678 426 26 {X=0,Y=0,Width=0,Height=0} +50 731 426 0.31772407299988 0.316515934240227 0.317708094911116 0.316533150225071 0.00422694913263702 0.00428729214339217 30046214 11968637 1443 577 0 False 731 426 26 {X=0,Y=0,Width=0,Height=0} +51 255 479 0.327414948896898 0.317697358060354 0.318699931334401 0.317479209582666 0.0573430032641384 0.00500981377251199 30790994 12013311 1435 577 0 False 255 479 26 {X=0,Y=0,Width=0,Height=0} +52 308 479 0.318656237447723 0.318523804669181 0.318730449378195 0.318440527962158 0.00451853471384246 0.0050317115575622 30134366 12044562 1443 577 0 False 308 479 26 {X=0,Y=0,Width=0,Height=0} +53 361 479 0.319031833566052 0.318629083986635 0.319096665903716 0.318532082093538 0.00406221111258853 0.00384904625360526 30169885 12048543 1443 577 0 False 361 479 26 {X=0,Y=0,Width=0,Height=0} +54 414 479 0.318839536051713 0.318372668949702 0.318760967421988 0.318043793392844 0.00492434774810593 0.00476509988961811 30151700 12038847 1443 577 0 False 414 479 26 {X=0,Y=0,Width=0,Height=0} +55 467 479 0.318235403563854 0.318361588308151 0.318089570458534 0.318257419699397 0.00639936627036059 0.00711462433213892 30094569 12038428 1443 577 0 False 467 479 26 {X=0,Y=0,Width=0,Height=0} +56 519 478 0.318140433864856 0.318628026168826 0.31792172121767 0.318715190356298 0.00607209265216231 0.00608745242252124 30085588 12048503 1443 577 0 False 519 478 26 {X=0,Y=0,Width=0,Height=0} +57 572 478 0.318203722323658 0.318683984730929 0.318165865568017 0.318577859159228 0.0053713389525904 0.00553081224200593 30091573 12050619 1443 577 0 False 572 478 26 {X=0,Y=0,Width=0,Height=0} +58 625 478 0.318078149984765 0.318504076367041 0.31810482948043 0.318532082093538 0.0054583808855834 0.00569791492661955 30079698 12043816 1443 577 0 False 625 478 26 {X=0,Y=0,Width=0,Height=0} +59 678 478 0.317801499582227 0.317513773779579 0.317753871976806 0.317708094911116 0.00506014807198148 0.00470921237942858 30053536 12006369 1443 577 0 False 678 478 26 {X=0,Y=0,Width=0,Height=0} +60 731 478 0.317537961575499 0.31756486637976 0.317601281757839 0.317235065232319 0.00508030304684891 0.00545343806418375 30028614 12008301 1443 577 0 False 731 478 26 {X=0,Y=0,Width=0,Height=0} +61 255 531 0.31824542820194 0.31756885964199 0.31805905241474 0.317433432516976 0.00474733947031168 0.00543514923170882 30095517 12008452 1443 577 0 False 255 531 26 {X=0,Y=0,Width=0,Height=0} +62 308 531 0.318063155325687 0.31782551268793 0.317936980239567 0.31796749828336 0.00413012579006455 0.00396555840820611 30078280 12018157 1443 577 0 False 308 531 26 {X=0,Y=0,Width=0,Height=0} +63 361 531 0.318503869293524 0.318363809725551 0.318348973830777 0.318165865568017 0.00409208223263123 0.00389758420416201 30119957 12038512 1443 577 0 False 361 531 26 {X=0,Y=0,Width=0,Height=0} +64 414 531 0.318667922284311 0.318336941153199 0.318745708400092 0.31815060654612 0.00452383551867514 0.00475493540502009 30135471 12037496 1443 577 0 False 414 531 26 {X=0,Y=0,Width=0,Height=0} +65 467 531 0.318278748491612 0.318510264601225 0.318165865568017 0.318440527962158 0.00626662907699775 0.00578905158438916 30098668 12044050 1443 577 0 False 467 531 26 {X=0,Y=0,Width=0,Height=0} +66 519 531 0.318248092979153 0.318227192555501 0.317906462195773 0.31805905241474 0.00678980990472309 0.00677341799904831 30095769 12033346 1443 577 0 False 519 531 26 {X=0,Y=0,Width=0,Height=0} +67 572 531 0.318005249293874 0.318622551961664 0.318043793392844 0.318822003509575 0.00575269743457233 0.0062445071021226 30072804 12048296 1443 577 0 False 572 531 26 {X=0,Y=0,Width=0,Height=0} +68 625 531 0.318371539840984 0.318007007778531 0.318547341115434 0.317723353933013 0.00569967055001945 0.00547958598651322 30107443 12025020 1443 577 0 False 625 531 26 {X=0,Y=0,Width=0,Height=0} +69 678 531 0.320797951608583 0.318370473977748 0.317998016327153 0.318120088502327 0.0308943617221688 0.00499843796462033 30315878 12038764 1442 577 0 False 678 531 26 {X=0,Y=0,Width=0,Height=0} +70 731 530 0.317647365484399 0.317681385011436 0.317723353933013 0.317402914473182 0.00548895898406273 0.00561266741544451 30038960 12012707 1443 577 0 False 731 530 26 {X=0,Y=0,Width=0,Height=0} +71 255 583 0.317421493892082 0.31796406037548 0.317463950560769 0.3177843900206 0.00531420192548466 0.00538741895371525 30017600 12023396 1443 577 0 False 255 583 26 {X=0,Y=0,Width=0,Height=0} +72 308 583 0.317885366042839 0.316953500576973 0.317891203173877 0.316807812619211 0.00414455986125398 0.00393643458374924 30061467 11985183 1443 577 0 False 308 583 26 {X=0,Y=0,Width=0,Height=0} +73 361 583 0.31799819609387 0.317603608957019 0.317860685130083 0.317662317845426 0.00473199882140273 0.00472693977977005 30072137 12009766 1443 577 0 False 361 583 26 {X=0,Y=0,Width=0,Height=0} +74 414 583 0.318647196239323 0.318746475318003 0.318486305027848 0.318638895246815 0.00499715975290213 0.00431673920008753 30133511 12052982 1443 577 0 False 414 583 26 {X=0,Y=0,Width=0,Height=0} +75 467 583 0.318531088089339 0.318131830280008 0.318654154268711 0.318181124589914 0.00594606353610724 0.00605118135440285 30122531 12029740 1443 577 0 False 467 583 26 {X=0,Y=0,Width=0,Height=0} +76 520 583 0.318117476597678 0.318015179421107 0.318120088502327 0.31815060654612 0.00637388454473821 0.00709455235075205 30083417 12025329 1443 577 0 False 520 583 26 {X=0,Y=0,Width=0,Height=0} +77 572 583 0.318278092871821 0.317977573997992 0.318318455786984 0.317906462195773 0.00520250257155486 0.00464407050376079 30098606 12023907 1443 577 0 False 572 583 26 {X=0,Y=0,Width=0,Height=0} +78 625 583 0.318511641560394 0.318706939377387 0.318425268940261 0.318684672312505 0.00528132370079317 0.00541698213487661 30120692 12051487 1443 577 0 False 625 583 26 {X=0,Y=0,Width=0,Height=0} +79 678 583 0.318135241779096 0.318742746510226 0.318318455786984 0.318608377203021 0.00460502225774357 0.00429829498395472 30085097 12052841 1443 577 0 False 678 583 26 {X=0,Y=0,Width=0,Height=0} +80 731 583 0.318165601205198 0.317668241625157 0.317952239261463 0.31787594415198 0.00565142828786912 0.00546341372269459 30087968 12012210 1443 577 0 False 731 583 26 {X=0,Y=0,Width=0,Height=0} +81 257 638 0.316723153070143 0.347310987284414 0.316685740444038 0.343450064850843 0.00510768127227585 0.0233045671416084 29951560 19597243 1443 861 0 True 255 636 32 {X=0,Y=0,Width=0,Height=0} +82 308 636 0.317458409516089 0.317609691409422 0.317372396429389 0.317311360341802 0.00453548841829325 0.0041275907681646 30021091 12009996 1443 577 0 False 308 636 26 {X=0,Y=0,Width=0,Height=0} +83 361 636 0.316953074700843 0.317532682272917 0.316823071641108 0.317708094911116 0.00509468090522105 0.00511862056183391 29973303 12007084 1443 577 0 False 361 636 26 {X=0,Y=0,Width=0,Height=0} +84 414 636 0.317898943717209 0.318211193061138 0.317982757305257 0.318089570458534 0.00506235987910973 0.00534134401123941 30062751 12032741 1443 577 0 False 414 636 26 {X=0,Y=0,Width=0,Height=0} +85 467 635 0.318224638709876 0.317805361258666 0.318135347524224 0.317647058823529 0.00525112349458207 0.0052468543090454 30093551 12017395 1443 577 0 False 467 635 26 {X=0,Y=0,Width=0,Height=0} +86 520 635 0.318398938403516 0.318598777506403 0.318379491874571 0.318715190356298 0.00484395838364434 0.00452885248975087 30110034 12047397 1443 577 0 False 520 635 26 {X=0,Y=0,Width=0,Height=0} +87 573 635 0.318258128191751 0.318193157267493 0.318089570458534 0.318348973830777 0.00453210803619257 0.00447822818562594 30096718 12032059 1443 577 0 False 573 635 26 {X=0,Y=0,Width=0,Height=0} +88 625 635 0.318098410751192 0.317318817957356 0.318089570458534 0.317387655451286 0.00454272178741764 0.00420652793700631 30081614 11998997 1443 577 0 False 625 635 26 {X=0,Y=0,Width=0,Height=0} +89 678 635 0.31743606557065 0.318273630757322 0.317357137407492 0.318287937743191 0.00414351547521982 0.00397245439769161 30018978 12035102 1443 577 0 False 678 635 26 {X=0,Y=0,Width=0,Height=0} +90 731 635 0.317302921880628 0.317776879514155 0.317204547188525 0.317708094911116 0.00513938934691193 0.00512888929387453 30006387 12016318 1443 577 0 False 731 635 26 {X=0,Y=0,Width=0,Height=0} +91 257 692 0.316466054941679 0.346707733107479 0.316334782940414 0.341344319829099 0.0058757373213352 0.0302055467406012 29927247 19563204 1443 861 0 True 255 688 32 {X=0,Y=0,Width=0,Height=0} +92 308 688 0.317065227983058 0.317625241331216 0.317067215991455 0.317753871976806 0.00503001193948663 0.00515944887516165 29983909 12010584 1443 577 0 False 308 688 26 {X=0,Y=0,Width=0,Height=0} +93 361 688 0.317587143634294 0.316738049534699 0.317448691538872 0.316746776531624 0.00602302614323012 0.00557251214264505 30033265 11977036 1443 577 0 False 361 688 26 {X=0,Y=0,Width=0,Height=0} +94 414 688 0.317622303889184 0.317639997889653 0.317555504692149 0.317387655451286 0.00560565239483011 0.00527757347029863 30036590 12011142 1443 577 0 False 414 688 26 {X=0,Y=0,Width=0,Height=0} +95 467 688 0.317998745968533 0.31844367497014 0.318074311436637 0.318745708400092 0.00541961101084495 0.00538579046563205 30072189 12041532 1443 577 0 False 467 688 26 {X=0,Y=0,Width=0,Height=0} +96 520 688 0.318210035307769 0.318185488088376 0.31815060654612 0.318226901655604 0.0046525990265107 0.00436742949572006 30092170 12031769 1443 577 0 False 520 688 26 {X=0,Y=0,Width=0,Height=0} +97 573 688 0.317591288843292 0.317750724968824 0.317509727626459 0.31787594415198 0.00400658904820815 0.00398108586196392 30033657 12015329 1443 577 0 False 573 688 26 {X=0,Y=0,Width=0,Height=0} +98 626 687 0.317775031576817 0.317117277219272 0.317677576867323 0.317250324254215 0.0039806192752016 0.00382638508909344 30051033 11991376 1443 577 0 False 626 687 26 {X=0,Y=0,Width=0,Height=0} +99 678 687 0.317241177300688 0.317493410786753 0.317311360341802 0.317235065232319 0.00422196445347866 0.00387953247546845 30000548 12005599 1443 577 0 False 678 687 26 {X=0,Y=0,Width=0,Height=0} +100 733 690 0.316948707427078 0.352941054235433 0.316746776531624 0.341680018310826 0.00477946614348154 0.0336227329215935 29972890 17324364 1443 749 0 True 731 687 31 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D02_4.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D02_4.csv new file mode 100644 index 0000000..5a552cc --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D02_4.csv @@ -0,0 +1,101 @@ + ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour +1 256 216 0.0333523092964613 0.0388588626428396 0.0333409628442817 0.0387273975738155 0.0022360421352562 0.00412423397954494 3154028 2192636 1443 861 0 True 255 217 33 {X=0,Y=0,Width=0,Height=0} +2 307 217 0.0333222142331778 0.0334210925433233 0.0333409628442817 0.0334325169756619 0.00186822053065483 0.0018620103748078 3151182 1263775 1443 577 0 False 307 217 26 {X=0,Y=0,Width=0,Height=0} +3 360 217 0.0333717241018683 0.0333386091996564 0.0333409628442817 0.0333104448004883 0.00165418062090945 0.00160563708976968 3155864 1260656 1443 577 0 False 360 217 26 {X=0,Y=0,Width=0,Height=0} +4 413 217 0.033308266450862 0.0334540171226324 0.0333409628442817 0.0334477759975586 0.00177016844316959 0.00176603407928211 3149863 1265020 1443 577 0 False 413 217 26 {X=0,Y=0,Width=0,Height=0} +5 466 217 0.0333291828370794 0.033363705927178 0.0332951857785916 0.033325703822385 0.00226816571781533 0.00234229448526009 3151841 1261605 1443 577 0 False 466 217 26 {X=0,Y=0,Width=0,Height=0} +6 519 217 0.0334073390608067 0.0334078433752639 0.0333104448004883 0.0332951857785916 0.00251572356274786 0.00274488815693078 3159232 1263274 1443 577 0 False 519 217 26 {X=0,Y=0,Width=0,Height=0} +7 572 217 0.0334277901684631 0.0334551542767772 0.0333714808880751 0.0334019989318685 0.00248387968353054 0.00240500982887102 3161166 1265063 1443 577 0 False 572 217 26 {X=0,Y=0,Width=0,Height=0} +8 625 217 0.0334163273966433 0.0334168612720867 0.0334019989318685 0.0333867399099718 0.00226098819357417 0.00232965881047697 3160082 1263615 1443 577 0 False 625 217 26 {X=0,Y=0,Width=0,Height=0} +9 678 217 0.0332583970487381 0.033308091155863 0.0332494087129015 0.0332341496910048 0.00175964847763049 0.00146146243046548 3145147 1259502 1443 577 0 False 678 217 26 {X=0,Y=0,Width=0,Height=0} +10 731 216 0.0332732965372013 0.0364544058742095 0.0332341496910048 0.0360570687418936 0.00218123941092438 0.00362502909685816 3146556 2056963 1443 861 0 True 731 217 32 {X=0,Y=0,Width=0,Height=0} +11 255 270 0.0334466022266434 0.0335519446063126 0.0334172579537652 0.0335393301289387 0.00211424359084716 0.00193981719034346 3162945 1268723 1443 577 0 False 255 270 26 {X=0,Y=0,Width=0,Height=0} +12 308 270 0.0334904970290642 0.0333973709789535 0.0334477759975586 0.0334325169756619 0.00154512167603554 0.00148068458801857 3167096 1262878 1443 577 0 False 308 270 26 {X=0,Y=0,Width=0,Height=0} +13 360 270 0.033438745363671 0.0335807965870566 0.0334477759975586 0.0335851071946288 0.00150339728734034 0.00165375882059932 3162202 1269814 1443 577 0 False 360 270 26 {X=0,Y=0,Width=0,Height=0} +14 413 269 0.0335226329733082 0.0335816957321944 0.0334935530632486 0.0336461432822156 0.00167408209836831 0.00153898658957378 3170135 1269848 1443 577 0 False 413 269 26 {X=0,Y=0,Width=0,Height=0} +15 466 269 0.0333105505456158 0.0331821050547956 0.0332341496910048 0.0330968184939345 0.00186540170560972 0.00187390586946 3150079 1254738 1443 577 0 False 466 269 26 {X=0,Y=0,Width=0,Height=0} +16 519 269 0.033318544877254 0.0333337696831796 0.0332799267566949 0.0332799267566949 0.00217614802831293 0.00223622851947898 3150835 1260473 1443 577 0 False 519 269 26 {X=0,Y=0,Width=0,Height=0} +17 572 269 0.0334188441306775 0.0334486222518059 0.0334172579537652 0.0334172579537652 0.00226970538551961 0.00217003166809979 3160320 1264816 1443 577 0 False 572 269 26 {X=0,Y=0,Width=0,Height=0} +18 625 269 0.0334947479831893 0.0332755897036775 0.0334630350194553 0.0331883726253147 0.00203974370176519 0.00203593641530037 3167498 1258273 1443 577 0 False 625 269 26 {X=0,Y=0,Width=0,Height=0} +19 678 269 0.033463341680325 0.033530444459342 0.0334477759975586 0.0335545891508354 0.00163910936752821 0.00147598038228673 3164528 1267910 1443 577 0 False 678 269 26 {X=0,Y=0,Width=0,Height=0} +20 731 269 0.0333214105702089 0.0331499473933981 0.0333104448004883 0.0330968184939345 0.00194185255293519 0.00182420160249046 3151106 1253522 1443 577 0 False 731 269 26 {X=0,Y=0,Width=0,Height=0} +21 255 322 0.0334087031729513 0.0335309204773562 0.0334477759975586 0.0334172579537652 0.00213767472877264 0.00236852074776111 3159361 1267928 1443 577 0 False 255 322 26 {X=0,Y=0,Width=0,Height=0} +22 308 322 0.0334829996995252 0.0332308969012417 0.0334630350194553 0.0332494087129015 0.00167170203378284 0.001623157837158 3166387 1256583 1443 577 0 False 308 322 26 {X=0,Y=0,Width=0,Height=0} +23 360 322 0.0334973493133255 0.0334098003382108 0.0334477759975586 0.0333104448004883 0.00182832552497033 0.00188950608237531 3167744 1263348 1443 577 0 False 360 322 26 {X=0,Y=0,Width=0,Height=0} +24 413 322 0.0334362920767132 0.0335655375651599 0.0334172579537652 0.0335851071946288 0.00159014037863461 0.00153505461036937 3161970 1269237 1443 577 0 False 413 322 26 {X=0,Y=0,Width=0,Height=0} +25 466 322 0.0333445370295908 0.0335067228949723 0.0333409628442817 0.0334477759975586 0.00170065660287565 0.00167327432663347 3153293 1267013 1443 577 0 False 466 322 26 {X=0,Y=0,Width=0,Height=0} +26 519 322 0.0333954427339641 0.0336342428318629 0.0334019989318685 0.0336308842603189 0.00212707549359655 0.00202163485522641 3158107 1271835 1443 577 0 False 519 322 26 {X=0,Y=0,Width=0,Height=0} +27 572 322 0.0332876990235654 0.0334538055590706 0.0332494087129015 0.0335393301289387 0.00204736435702243 0.0020437772014314 3147918 1265012 1443 577 0 False 572 322 26 {X=0,Y=0,Width=0,Height=0} +28 625 321 0.0333213894211834 0.0333429462526738 0.0333104448004883 0.0332951857785916 0.00203142327164001 0.00212854132540891 3151104 1260820 1443 577 0 False 625 321 26 {X=0,Y=0,Width=0,Height=0} +29 678 321 0.0333136488778512 0.033251207003177 0.0333104448004883 0.0332646677347982 0.00160491146043466 0.00160725311948814 3150372 1257351 1443 577 0 False 678 321 26 {X=0,Y=0,Width=0,Height=0} +30 731 321 0.0334230527867516 0.0334897184736906 0.0334477759975586 0.0334630350194553 0.00171136345034678 0.00177808600020496 3160718 1266370 1443 577 0 False 731 321 26 {X=0,Y=0,Width=0,Height=0} +31 255 374 0.0334376561888578 0.0334028187406705 0.0334172579537652 0.0333104448004883 0.00251218379216204 0.00279898771646961 3162099 1263084 1443 577 0 False 255 374 26 {X=0,Y=0,Width=0,Height=0} +32 308 374 0.0333667752299018 0.0333419148803099 0.0332951857785916 0.033325703822385 0.00204873920856616 0.00197389503292225 3155396 1260781 1443 577 0 False 308 374 26 {X=0,Y=0,Width=0,Height=0} +33 361 374 0.0336193368923971 0.0335271387786885 0.0336003662165255 0.0334019989318685 0.00195691280688874 0.00213029607072143 3179280 1267785 1443 577 0 False 361 374 26 {X=0,Y=0,Width=0,Height=0} +34 413 374 0.0334698767292038 0.0335937284097732 0.0334630350194553 0.0336156252384222 0.00171766431176401 0.00174140671098852 3165146 1270303 1443 577 0 False 413 374 26 {X=0,Y=0,Width=0,Height=0} +35 466 374 0.0335104934326724 0.0334477495521133 0.0335088120851453 0.0333562218661784 0.00160044663751826 0.00150241572964355 3168987 1264783 1443 577 0 False 466 374 26 {X=0,Y=0,Width=0,Height=0} +36 519 374 0.0334869016947296 0.033702498525997 0.0334477759975586 0.0336614023041123 0.0019467105232143 0.00188344142210904 3166756 1274416 1443 577 0 False 519 374 26 {X=0,Y=0,Width=0,Height=0} +37 572 374 0.0332819782121682 0.0333501129683307 0.033325703822385 0.0334477759975586 0.00199560535031354 0.00192421680436016 3147377 1261091 1443 577 0 False 572 374 26 {X=0,Y=0,Width=0,Height=0} +38 625 374 0.0334415476095494 0.0334200611709594 0.0334019989318685 0.0333714808880751 0.00184136104731555 0.00175745619446831 3162467 1263736 1443 577 0 False 625 374 26 {X=0,Y=0,Width=0,Height=0} +39 678 374 0.0334746669834791 0.033424186660415 0.0334935530632486 0.0334630350194553 0.00169292682121786 0.00160725500837967 3165599 1263892 1443 577 0 False 678 374 26 {X=0,Y=0,Width=0,Height=0} +40 731 374 0.0334538880659274 0.033406573993893 0.033524071107042 0.0333104448004883 0.00153546691640375 0.00166794735557896 3163634 1263226 1443 577 0 False 731 374 26 {X=0,Y=0,Width=0,Height=0} +41 255 427 0.0333611601636321 0.0333387149814373 0.0333714808880751 0.0333562218661784 0.0023723853953224 0.00268336480097552 3154865 1260660 1443 577 0 False 255 427 26 {X=0,Y=0,Width=0,Height=0} +42 308 427 0.0334480192113518 0.0335620203209446 0.0333714808880751 0.0334935530632486 0.00198536122886299 0.00189784233805175 3163079 1269104 1443 577 0 False 308 427 26 {X=0,Y=0,Width=0,Height=0} +43 361 426 0.033657500308908 0.0333371018092784 0.0336614023041123 0.0334477759975586 0.00189676020679142 0.00187436894982794 3182889 1260599 1443 577 0 False 361 426 26 {X=0,Y=0,Width=0,Height=0} +44 414 426 0.0336455511095017 0.0334849582935495 0.0336461432822156 0.0334019989318685 0.00199857209386085 0.00199767126890849 3181759 1266190 1443 577 0 False 414 426 26 {X=0,Y=0,Width=0,Height=0} +45 466 426 0.0335032816149777 0.0334974405436972 0.0334172579537652 0.0335088120851453 0.00211725546859537 0.00216801396831244 3168305 1266662 1443 577 0 False 466 426 26 {X=0,Y=0,Width=0,Height=0} +46 519 426 0.0334959640521554 0.0336212316728106 0.0334325169756619 0.0336308842603189 0.00198650325018616 0.00180300511150921 3167613 1271343 1443 577 0 False 519 426 26 {X=0,Y=0,Width=0,Height=0} +47 572 426 0.0336334115688659 0.0333979527787485 0.0335851071946288 0.0334172579537652 0.00211075236094688 0.00224348450560972 3180611 1262900 1443 577 0 False 572 426 26 {X=0,Y=0,Width=0,Height=0} +48 625 426 0.0332982523872888 0.0333811599210286 0.0332799267566949 0.0334019989318685 0.00199690080132925 0.00200645957600213 3148916 1262265 1443 577 0 False 625 426 26 {X=0,Y=0,Width=0,Height=0} +49 678 426 0.0335060944353689 0.03323301253686 0.0334935530632486 0.0331425955596246 0.00162394181701527 0.00157012087113167 3168571 1256663 1443 577 0 False 678 426 26 {X=0,Y=0,Width=0,Height=0} +50 731 426 0.0334442123867622 0.0331890073160002 0.0334325169756619 0.0330968184939345 0.00162902062279371 0.00165467897155078 3162719 1254999 1443 577 0 False 731 426 26 {X=0,Y=0,Width=0,Height=0} +51 255 479 0.0352592006059619 0.0334468768524208 0.0337224383916991 0.0334477759975586 0.011942144692824 0.00192551023868011 3334357 1264750 1443 577 0 False 255 479 26 {X=0,Y=0,Width=0,Height=0} +52 308 479 0.0335443530224945 0.0334665787091158 0.0334782940413519 0.0334630350194553 0.0018084086907219 0.00183600224110428 3172189 1265495 1443 577 0 False 308 479 26 {X=0,Y=0,Width=0,Height=0} +53 361 479 0.0335597495130569 0.0335770677792794 0.0335088120851453 0.0336308842603189 0.00153815291345541 0.00150960968334841 3173645 1269673 1443 577 0 False 361 479 26 {X=0,Y=0,Width=0,Height=0} +54 414 479 0.0336005036851913 0.0336089609862247 0.0336003662165255 0.0337071793698024 0.00193088000121506 0.00190385056111028 3177499 1270879 1443 577 0 False 414 479 26 {X=0,Y=0,Width=0,Height=0} +55 467 479 0.0335061790314709 0.0336263091982944 0.0335545891508354 0.0336156252384222 0.00241136011439695 0.00273709079299584 3168579 1271535 1443 577 0 False 467 479 26 {X=0,Y=0,Width=0,Height=0} +56 519 478 0.033536749947828 0.0333923992352506 0.0334935530632486 0.0333714808880751 0.00237563008480979 0.0022786666295896 3171470 1262690 1443 577 0 False 519 478 26 {X=0,Y=0,Width=0,Height=0} +57 572 478 0.0332788164328563 0.0335550651688495 0.0332341496910048 0.0336003662165255 0.00215043572670006 0.00207257562938011 3147078 1268841 1443 577 0 False 572 478 26 {X=0,Y=0,Width=0,Height=0} +58 625 478 0.0334802186026723 0.033622315936065 0.0334172579537652 0.0336308842603189 0.0020927445626024 0.0020656563594711 3166124 1271384 1443 577 0 False 625 478 26 {X=0,Y=0,Width=0,Height=0} +59 678 478 0.0333331800028985 0.0334053575034125 0.0332951857785916 0.0334019989318685 0.00195179023892046 0.00180796229693224 3152219 1263180 1443 577 0 False 678 478 26 {X=0,Y=0,Width=0,Height=0} +60 731 478 0.0333064582091819 0.0332963493781816 0.0332799267566949 0.0331425955596246 0.00188004754452157 0.00195106683581803 3149692 1259058 1443 577 0 False 731 478 26 {X=0,Y=0,Width=0,Height=0} +61 255 531 0.0334835389996754 0.0334569261216075 0.0334782940413519 0.033524071107042 0.001865969039324 0.00189145794566419 3166438 1265130 1443 577 0 False 255 531 26 {X=0,Y=0,Width=0,Height=0} +62 308 531 0.0334402152209431 0.0332957940238318 0.0334935530632486 0.0332799267566949 0.00150333654579202 0.00158912844276071 3162341 1259037 1443 577 0 False 308 531 26 {X=0,Y=0,Width=0,Height=0} +63 361 531 0.0336789242717373 0.0336217341362699 0.0337071793698024 0.0336461432822156 0.00160139490881349 0.00155425415612135 3184915 1271362 1443 577 0 False 361 531 26 {X=0,Y=0,Width=0,Height=0} +64 414 531 0.0335601936425924 0.033688482440026 0.0335393301289387 0.0337071793698024 0.00170519565667357 0.00175354963134159 3173687 1273886 1443 577 0 False 414 531 26 {X=0,Y=0,Width=0,Height=0} +65 467 531 0.0335112970956413 0.0333437925069211 0.033524071107042 0.0333409628442817 0.0023835228495831 0.00222655662041708 3169063 1260852 1443 577 0 False 467 531 26 {X=0,Y=0,Width=0,Height=0} +66 519 531 0.0335426399514292 0.0335068551221984 0.0335088120851453 0.0335088120851453 0.00259459277734746 0.00255608511334316 3172027 1267018 1443 577 0 False 519 531 26 {X=0,Y=0,Width=0,Height=0} +67 572 531 0.0334244168988962 0.0334953249080789 0.0334477759975586 0.0334935530632486 0.00217243710044842 0.00241858892150984 3160847 1266582 1443 577 0 False 572 531 26 {X=0,Y=0,Width=0,Height=0} +68 625 531 0.0333978114248199 0.0334089276385183 0.0332799267566949 0.0333409628442817 0.00210386802627168 0.0021723698170924 3158331 1263315 1443 577 0 False 625 531 26 {X=0,Y=0,Width=0,Height=0} +69 678 531 0.0338106086789996 0.0333248311226925 0.0335393301289387 0.0332799267566949 0.00445054349776226 0.00190625803754591 3197368 1260135 1443 577 0 False 678 531 26 {X=0,Y=0,Width=0,Height=0} +70 731 530 0.0333913609720431 0.0335756926161276 0.0334019989318685 0.0336156252384222 0.00209157217777838 0.00214859021145016 3157721 1269621 1443 577 0 False 731 530 26 {X=0,Y=0,Width=0,Height=0} +71 255 583 0.0335500315358406 0.0333664562534817 0.0335545891508354 0.0332646677347982 0.00196135959464134 0.00204612755939164 3172726 1261709 1443 577 0 False 255 583 26 {X=0,Y=0,Width=0,Height=0} +72 308 583 0.0333044913498107 0.0333525723947369 0.0332494087129015 0.0332951857785916 0.00161652915638742 0.00150722811162307 3149506 1261184 1443 577 0 False 308 583 26 {X=0,Y=0,Width=0,Height=0} +73 361 583 0.0332857321641941 0.0333249369044734 0.0333409628442817 0.0332799267566949 0.00178267821794737 0.00196433438945842 3147732 1260139 1443 577 0 False 361 583 26 {X=0,Y=0,Width=0,Height=0} +74 414 583 0.0334038811951378 0.0335151589920001 0.0333409628442817 0.033524071107042 0.00184389447690897 0.00185654252163431 3158905 1267332 1443 577 0 False 414 583 26 {X=0,Y=0,Width=0,Height=0} +75 467 583 0.0334610152875202 0.0334703604077835 0.0334935530632486 0.0333562218661784 0.00240301693219328 0.00216606752545097 3164308 1265638 1443 577 0 False 467 583 26 {X=0,Y=0,Width=0,Height=0} +76 520 583 0.0332654079506906 0.0333102861278169 0.0332036316472114 0.0332646677347982 0.00243352000511274 0.00255191829878784 3145810 1259585 1443 577 0 False 520 583 26 {X=0,Y=0,Width=0,Height=0} +77 572 583 0.0333078540448648 0.0335831237862367 0.0332799267566949 0.033676661326009 0.00207354788255327 0.0018286119756074 3149824 1269902 1443 577 0 False 572 583 26 {X=0,Y=0,Width=0,Height=0} +78 625 583 0.0336193474669098 0.0335591642128599 0.0336308842603189 0.0336308842603189 0.00202863603372653 0.00197863297379988 3179281 1268996 1443 577 0 False 625 583 26 {X=0,Y=0,Width=0,Height=0} +79 678 583 0.0333367647627204 0.0335754017162301 0.0333409628442817 0.0335545891508354 0.00173051876543037 0.00173758199325096 3152558 1269610 1443 577 0 False 678 583 26 {X=0,Y=0,Width=0,Height=0} +80 731 583 0.0332985061755948 0.033449336278827 0.033325703822385 0.0334019989318685 0.00206561877113885 0.00215857090887086 3148940 1264843 1443 577 0 False 731 583 26 {X=0,Y=0,Width=0,Height=0} +81 257 638 0.0332500220346409 0.0363943799657726 0.0332188906691081 0.0361486228732738 0.00194752723704798 0.00316678952295929 3144355 2053576 1443 861 0 True 255 636 32 {X=0,Y=0,Width=0,Height=0} +82 308 636 0.0333988371525565 0.0332954237875986 0.0333409628442817 0.0331883726253147 0.00170883686322541 0.00175580822926557 3158428 1259023 1443 577 0 False 308 636 26 {X=0,Y=0,Width=0,Height=0} +83 361 636 0.0333996725390637 0.0333915000901129 0.0334019989318685 0.033325703822385 0.00188513125928566 0.0019873114386383 3158507 1262656 1443 577 0 False 361 636 26 {X=0,Y=0,Width=0,Height=0} +84 414 636 0.0334397605168949 0.0332983327865738 0.0334630350194553 0.0332951857785916 0.00206845952278876 0.00195379542721302 3162298 1259133 1443 577 0 False 414 636 26 {X=0,Y=0,Width=0,Height=0} +85 467 635 0.033472774145697 0.0337184186840244 0.0334477759975586 0.0336003662165255 0.00206952052601091 0.00207802461075917 3165420 1275018 1443 577 0 False 467 635 26 {X=0,Y=0,Width=0,Height=0} +86 520 635 0.0334125205720536 0.0335659871377288 0.0333562218661784 0.033524071107042 0.00186876623436028 0.00167384082762859 3159722 1269254 1443 577 0 False 520 635 26 {X=0,Y=0,Width=0,Height=0} +87 573 635 0.0333529754907645 0.033540176383186 0.0334019989318685 0.0336156252384222 0.00167174556081304 0.00161321077401309 3154091 1268278 1443 577 0 False 573 635 26 {X=0,Y=0,Width=0,Height=0} +88 625 635 0.0334568383549844 0.0331709186314641 0.0334325169756619 0.033173113603418 0.00161316545921428 0.0016269137375304 3163913 1254315 1443 577 0 False 625 635 26 {X=0,Y=0,Width=0,Height=0} +89 678 635 0.0334497217079044 0.0333031194121601 0.0333867399099718 0.0332951857785916 0.00150357865837511 0.00164338679839029 3163240 1259314 1443 577 0 False 678 635 26 {X=0,Y=0,Width=0,Height=0} +90 731 635 0.033370180223007 0.0333172412799119 0.033325703822385 0.0332951857785916 0.00203057826942264 0.00190381734625246 3155718 1259848 1443 577 0 False 731 635 26 {X=0,Y=0,Width=0,Height=0} +91 257 692 0.0331955950175222 0.0363978181193707 0.0332036316472114 0.0359502555886168 0.00222802055589764 0.00409558408957087 3139208 2053770 1443 861 0 True 255 688 32 {X=0,Y=0,Width=0,Height=0} +92 308 688 0.0333303037354308 0.0334807005768677 0.0333409628442817 0.0334172579537652 0.00188566133128628 0.00183924298969761 3151947 1266029 1443 577 0 False 308 688 26 {X=0,Y=0,Width=0,Height=0} +93 361 688 0.0335655760695816 0.0333467808422319 0.0335698481727321 0.0331578545815213 0.00208545419040813 0.00222006607610799 3174196 1260965 1443 577 0 False 361 688 26 {X=0,Y=0,Width=0,Height=0} +94 414 688 0.0334816673109189 0.0334829748851573 0.0334172579537652 0.0334477759975586 0.00210740558002349 0.00202461833479057 3166261 1266115 1443 577 0 False 414 688 26 {X=0,Y=0,Width=0,Height=0} +95 467 688 0.0334804512419527 0.033461263174625 0.0334325169756619 0.0334172579537652 0.00200080026884439 0.00211905838554786 3166146 1265294 1443 577 0 False 467 688 26 {X=0,Y=0,Width=0,Height=0} +96 520 688 0.0333753828832794 0.033421991688461 0.0332799267566949 0.0333867399099718 0.00170930635456838 0.00172954936439593 3156210 1263809 1443 577 0 False 520 688 26 {X=0,Y=0,Width=0,Height=0} +97 573 688 0.0334376350398323 0.0333299615390667 0.0334477759975586 0.0333714808880751 0.00151884555568615 0.00148395735289074 3162097 1260329 1443 577 0 False 573 688 26 {X=0,Y=0,Width=0,Height=0} +98 626 687 0.0333997888587039 0.0334803038951893 0.0333409628442817 0.0334172579537652 0.00160991190406561 0.00167036358857668 3158518 1266014 1443 577 0 False 626 687 26 {X=0,Y=0,Width=0,Height=0} +99 678 687 0.0333250482025946 0.0334417464360465 0.0333104448004883 0.0334325169756619 0.00165121614847661 0.00163533343218801 3151450 1264556 1443 577 0 False 678 687 26 {X=0,Y=0,Width=0,Height=0} +100 733 690 0.0332828876202646 0.0372562974788082 0.0332341496910048 0.0363775082017243 0.0018170153207359 0.00403552323562546 3147463 1828752 1443 749 0 True 731 687 31 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D03_1.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D03_1.csv new file mode 100644 index 0000000..0ff0a5e --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D03_1.csv @@ -0,0 +1,101 @@ + ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour +1 96 230 0.235788909673094 0.932939717913675 0.235080491340505 1 0.00665056461491196 0.167737669573712 22297851 52641716 1443 861 78 True 94 232 32 {X=0,Y=0,Width=0,Height=0} +2 147 232 0.232252993525596 0.231131287222791 0.232028686961166 0.230823224231327 0.00563572992281072 0.00563527958417575 21963470 8739928 1443 577 0 False 147 232 26 {X=0,Y=0,Width=0,Height=0} +3 200 232 0.232426627024933 0.231534262917179 0.231876096742199 0.231403067063401 0.00795116238627381 0.00543967515604547 21979890 8755166 1443 577 0 False 200 232 26 {X=0,Y=0,Width=0,Height=0} +4 253 233 0.232186659607122 0.232165542140222 0.232349126420996 0.232013427939269 0.00489363984704459 0.00444291361089692 21957197 8779037 1443 577 0 False 253 233 26 {X=0,Y=0,Width=0,Height=0} +5 306 233 0.232962670225202 0.232918734865768 0.232944228274968 0.232959487296864 0.0038089928386495 0.00419150551371427 22030582 8807518 1443 577 0 False 306 233 26 {X=0,Y=0,Width=0,Height=0} +6 359 233 0.233039642103501 0.23314904824826 0.232990005340658 0.233096818493935 0.00368654355015699 0.00374784523554319 22037861 8816227 1443 577 0 False 359 233 26 {X=0,Y=0,Width=0,Height=0} +7 412 233 0.233628452122387 0.23328976446232 0.233524071107042 0.233325703822385 0.0040990924284155 0.00404466082779747 22093543 8821548 1443 577 0 False 412 233 26 {X=0,Y=0,Width=0,Height=0} +8 465 234 0.233769029694871 0.233712706467855 0.233676661326009 0.233508812085145 0.00559072869924725 0.00563608751215009 22106837 8837541 1443 577 0 False 465 234 26 {X=0,Y=0,Width=0,Height=0} +9 518 234 0.234758825237196 0.234470738709877 0.234546425574121 0.234393835355154 0.00605860610901595 0.00582412985261481 22200439 8866205 1443 577 0 False 518 234 26 {X=0,Y=0,Width=0,Height=0} +10 572 232 0.23787066112541 0.940352253014078 0.237491416800183 1 0.0058153826970132 0.149129204869639 22494716 53059973 1443 861 78 True 571 234 32 {X=0,Y=0,Width=0,Height=0} +11 94 284 0.230845525878714 0.229981835945945 0.230731670099947 0.230197604333562 0.00408235135432767 0.0036765182514796 21830370 8696463 1443 577 0 False 94 284 26 {X=0,Y=0,Width=0,Height=0} +12 147 285 0.23102557810729 0.231153554287673 0.230914778362707 0.23099107347219 0.00420299835754197 0.00400768008368626 21847397 8740770 1443 577 0 False 147 285 26 {X=0,Y=0,Width=0,Height=0} +13 200 285 0.232157029822399 0.231649512167483 0.231998168917372 0.231937132829786 0.00490333790461141 0.00471355345865649 21954395 8759524 1443 577 0 False 200 285 26 {X=0,Y=0,Width=0,Height=0} +14 253 285 0.232980900685181 0.232710397648259 0.233051041428244 0.232684824902724 0.00454893517137061 0.00458166587299091 22032306 8799640 1443 577 0 False 253 285 26 {X=0,Y=0,Width=0,Height=0} +15 306 285 0.233636583922691 0.23280144931618 0.233585107194629 0.232730601968414 0.00360157321754968 0.0035431207266141 22094312 8803083 1443 577 0 False 306 285 26 {X=0,Y=0,Width=0,Height=0} +16 359 285 0.233762367751839 0.234016088615514 0.233600366216526 0.23399710078584 0.00362180929916404 0.00405855336168595 22106207 8849013 1443 577 0 False 359 285 26 {X=0,Y=0,Width=0,Height=0} +17 412 286 0.233791870642409 0.234248200288282 0.233676661326009 0.234164950026703 0.00375242432500402 0.00352782490953066 22108997 8857790 1443 577 0 False 412 286 26 {X=0,Y=0,Width=0,Height=0} +18 465 286 0.234604130690192 0.234725805029104 0.234561684596017 0.234790569924468 0.00465087180519212 0.00412522858236621 22185810 8875850 1443 577 0 False 465 286 26 {X=0,Y=0,Width=0,Height=0} +19 518 286 0.234570345121959 0.234641391167935 0.234393835355154 0.234927901121538 0.00517249590646424 0.00537244126457608 22182615 8872658 1443 577 0 False 518 286 26 {X=0,Y=0,Width=0,Height=0} +20 571 286 0.234754680028198 0.234721388639751 0.234744792858778 0.234546425574121 0.00448563237095713 0.00435537859907896 22200047 8875683 1443 577 0 False 571 286 26 {X=0,Y=0,Width=0,Height=0} +21 93 337 0.230695780203677 0.230782630472901 0.230838483253223 0.231052109559777 0.00447339977790196 0.00429706369630803 21816209 8726744 1443 577 0 False 93 337 26 {X=0,Y=0,Width=0,Height=0} +22 147 337 0.231597447756752 0.231520722849222 0.231464103150988 0.231342030975814 0.004453428165498 0.00409716519599239 21901477 8754654 1443 577 0 False 147 337 26 {X=0,Y=0,Width=0,Height=0} +23 200 337 0.232595396248406 0.232546382996954 0.23270008392462 0.232578011749447 0.00471637961430966 0.00437629745983445 21995850 8793438 1443 577 0 False 200 337 26 {X=0,Y=0,Width=0,Height=0} +24 253 337 0.233445534200856 0.233314067826485 0.233340962844282 0.233142595559625 0.00474887653861329 0.00480190875002849 22076245 8822467 1443 577 0 False 253 337 26 {X=0,Y=0,Width=0,Height=0} +25 306 338 0.234175736029707 0.233630143787853 0.23408865491722 0.233585107194629 0.00368923275713807 0.00342279408232796 22145298 8834419 1443 577 0 False 306 338 26 {X=0,Y=0,Width=0,Height=0} +26 359 338 0.235334702626989 0.234707055208437 0.235004196231022 0.234805828946365 0.00668444057168462 0.00430441114194888 22254898 8875141 1443 577 0 False 359 338 26 {X=0,Y=0,Width=0,Height=0} +27 412 338 0.235152683539042 0.234737731924902 0.235141527428092 0.234790569924468 0.00383098791579074 0.00409147030177748 22237685 8876301 1443 577 0 False 412 338 26 {X=0,Y=0,Width=0,Height=0} +28 465 338 0.235096215640963 0.235625055948645 0.235126268406195 0.235263599603265 0.00438292415494999 0.00460923222504994 22232345 8909854 1443 577 0 False 465 338 26 {X=0,Y=0,Width=0,Height=0} +29 518 339 0.235551564734444 0.234925864822256 0.235461966887922 0.234729533836881 0.00510901347834195 0.00453038399433374 22275406 8883415 1443 577 0 False 518 339 26 {X=0,Y=0,Width=0,Height=0} +30 571 339 0.235318925453968 0.235273490199781 0.235294117647059 0.235263599603265 0.00425563200812247 0.00434051103511435 22253406 8896560 1443 577 0 False 571 339 26 {X=0,Y=0,Width=0,Height=0} +31 93 389 0.231212694110382 0.231136206075603 0.231250476844434 0.231174181734951 0.00449808045504575 0.0047899501088611 21865092 8740114 1443 577 0 False 93 389 26 {X=0,Y=0,Width=0,Height=0} +32 146 389 0.232214724363958 0.232067984892775 0.232196536202029 0.232227054245823 0.00445104982772562 0.004370598310533 21959851 8775348 1443 577 0 False 146 389 26 {X=0,Y=0,Width=0,Height=0} +33 199 390 0.232822388739074 0.233064713723427 0.232791638056001 0.233310444800488 0.00477689066770947 0.00491928120375539 22017316 8813038 1443 577 0 False 199 390 26 {X=0,Y=0,Width=0,Height=0} +34 252 390 0.23370890301538 0.233731324061296 0.233783474479286 0.233707179369802 0.00525743603786172 0.00549322615121165 22101151 8838245 1443 577 0 False 252 390 26 {X=0,Y=0,Width=0,Height=0} +35 305 390 0.234654306753185 0.234472457663817 0.234561684596017 0.234210727092393 0.00464463257209378 0.00382638097943039 22190555 8866270 1443 577 0 False 305 390 26 {X=0,Y=0,Width=0,Height=0} +36 358 390 0.235278160707321 0.235676598121395 0.235156786449989 0.235614557106889 0.00553100529328143 0.00421743537737286 22249551 8911803 1443 577 0 False 358 390 26 {X=0,Y=0,Width=0,Height=0} +37 412 391 0.235887591026067 0.23647728686657 0.235965514610513 0.236408026245518 0.00402663347374008 0.00402264531413458 22307183 8942080 1443 577 0 False 412 391 26 {X=0,Y=0,Width=0,Height=0} +38 465 391 0.23608017405225 0.235803060240476 0.236057068741894 0.23607232776379 0.00433272992567847 0.0041391795858013 22325395 8916585 1443 577 0 False 465 391 26 {X=0,Y=0,Width=0,Height=0} +39 518 391 0.235426383652522 0.236236025069753 0.235355153734646 0.235873960479133 0.00434494881804425 0.00448559067424878 22263568 8932957 1443 577 0 False 518 391 26 {X=0,Y=0,Width=0,Height=0} +40 571 391 0.236056719782973 0.235716742307251 0.23593499656672 0.235584039063096 0.00384769713422788 0.00343364443869569 22323177 8913321 1443 577 0 False 571 391 26 {X=0,Y=0,Width=0,Height=0} +41 93 442 0.231632237903696 0.231899686079342 0.231570916304265 0.231555657282368 0.00535516233989216 0.00546176667573625 21904767 8768984 1443 577 0 False 93 442 26 {X=0,Y=0,Width=0,Height=0} +42 146 442 0.232649939585165 0.232951950344974 0.23260852979324 0.232730601968414 0.00516127092505986 0.00489971550111771 22001008 8808774 1443 577 0 False 146 442 26 {X=0,Y=0,Width=0,Height=0} +43 199 442 0.233528501827884 0.233673408536246 0.233600366216526 0.233585107194629 0.00595133898404823 0.00636646387206211 22084091 8836055 1443 577 0 False 199 442 26 {X=0,Y=0,Width=0,Height=0} +44 252 442 0.233863629285923 0.23390099803788 0.233676661326009 0.233875028610666 0.00588758892993137 0.00605996333135234 22115783 8844661 1443 577 0 False 252 442 26 {X=0,Y=0,Width=0,Height=0} +45 305 443 0.235005243107784 0.235237497948825 0.235156786449989 0.235400930800336 0.00446148087482073 0.00484864199506448 22223742 8895199 1443 577 0 False 305 443 26 {X=0,Y=0,Width=0,Height=0} +46 358 443 0.236104812666955 0.236160126641948 0.235812924391546 0.2360265506981 0.00446488635970463 0.0048106735113733 22327725 8930087 1443 577 0 False 358 443 26 {X=0,Y=0,Width=0,Height=0} +47 411 443 0.235562065225604 0.236445790341304 0.235950255588617 0.236392767223621 0.00532149525505513 0.00519893780854149 22276399 8940889 1443 577 0 False 411 443 26 {X=0,Y=0,Width=0,Height=0} +48 464 443 0.23594688231905 0.236421248968132 0.23579766536965 0.236270695048447 0.00544384912336475 0.00530654412955341 22312790 8939961 1443 577 0 False 464 443 26 {X=0,Y=0,Width=0,Height=0} +49 517 444 0.235924041371512 0.235948642416458 0.235828183413443 0.235584039063096 0.00501085207100661 0.0049119483047116 22310630 8922090 1443 577 0 False 517 444 26 {X=0,Y=0,Width=0,Height=0} +50 570 444 0.236082394699927 0.236472130004751 0.23593499656672 0.236362249179828 0.0046686264272475 0.00459058979236971 22325605 8941885 1443 577 0 False 570 444 26 {X=0,Y=0,Width=0,Height=0} +51 93 494 0.232289190082736 0.23198394126784 0.23224231326772 0.231830319676509 0.00522428161728119 0.00520624292188196 21966893 8772170 1443 577 0 False 93 494 26 {X=0,Y=0,Width=0,Height=0} +52 146 494 0.232909639043766 0.232846274345842 0.232852674143587 0.232623788815137 0.00553560505198209 0.00518749870061479 22025567 8804778 1443 577 0 False 146 494 26 {X=0,Y=0,Width=0,Height=0} +53 199 495 0.23357995740692 0.233585027858293 0.233478294041352 0.233585107194629 0.00569642478868683 0.00621089999031033 22088957 8832713 1443 577 0 False 199 495 26 {X=0,Y=0,Width=0,Height=0} +54 252 495 0.234104358068652 0.234073104995426 0.234195468070497 0.234103913939117 0.00500632005903978 0.00515809638556169 22138548 8851169 1443 577 0 False 252 495 26 {X=0,Y=0,Width=0,Height=0} +55 305 495 0.235299246285742 0.235458978552612 0.235248340581369 0.235461966887922 0.00387894735166171 0.00389659343149324 22251545 8903574 1443 577 0 False 305 495 26 {X=0,Y=0,Width=0,Height=0} +56 358 495 0.236535998998805 0.236605177039694 0.236362249179828 0.236530098420691 0.00440689098873668 0.00375428826094476 22368501 8946916 1443 577 0 False 358 495 26 {X=0,Y=0,Width=0,Height=0} +57 411 495 0.237459344303016 0.234479439261358 0.236285954070344 0.234592202639811 0.00954235778665202 0.00482145067527177 22455819 8866534 1443 577 0 False 411 495 26 {X=0,Y=0,Width=0,Height=0} +58 462 501 0.236830583774965 0.386897501960386 0.236865796902419 0.37625696192874 0.00599071551996696 0.0469548854214189 22396359 10674593 1443 421 0 True 464 496 22 {X=0,Y=0,Width=0,Height=0} +59 517 496 0.236382869479688 0.23675938043082 0.236240177004654 0.236621652552071 0.00522794492148941 0.00590841085189284 22354020 8952747 1443 577 0 False 517 496 26 {X=0,Y=0,Width=0,Height=0} +60 570 496 0.23577631542841 0.236221109838644 0.235645075150683 0.236285954070344 0.00496751617666447 0.00512043866341039 22296660 8932393 1443 577 0 False 570 496 26 {X=0,Y=0,Width=0,Height=0} +61 93 547 0.232770140071582 0.23252850587598 0.232776379034104 0.232806897077897 0.00403038724990628 0.00367587944777544 22012375 8792762 1443 577 0 False 93 547 26 {X=0,Y=0,Width=0,Height=0} +62 146 547 0.233189271458898 0.232799492353233 0.233218890669108 0.232669565880827 0.00437842582002368 0.00447253909924231 22052011 8803009 1443 577 0 False 146 547 26 {X=0,Y=0,Width=0,Height=0} +63 199 547 0.233585932006623 0.233101975355754 0.233508812085145 0.233112077515831 0.00517947587593576 0.00548494218189952 22089522 8814447 1443 577 0 False 199 547 26 {X=0,Y=0,Width=0,Height=0} +64 252 547 0.234904605469952 0.234925494586022 0.234454871442741 0.234622720683604 0.00535111700105358 0.00484817640741933 22214225 8883401 1443 577 0 False 252 547 26 {X=0,Y=0,Width=0,Height=0} +65 305 547 0.235584620661297 0.234995151888754 0.235584039063096 0.234821087968261 0.00382655396966321 0.00381416174303248 22278532 8886035 1443 577 0 False 305 547 26 {X=0,Y=0,Width=0,Height=0} +66 358 548 0.236032102317293 0.236346117458238 0.236011291676204 0.236591134508278 0.00378315961447439 0.00349634064728674 22320849 8937120 1443 577 0 False 358 548 26 {X=0,Y=0,Width=0,Height=0} +67 411 548 0.236407423498291 0.236705828404233 0.236270695048447 0.236911573968109 0.00400055873901356 0.00372141617749451 22356342 8950722 1443 577 0 False 411 548 26 {X=0,Y=0,Width=0,Height=0} +68 464 548 0.236823319084706 0.236766520701032 0.236865796902419 0.236987869077592 0.00555806589692831 0.00551878083762071 22395672 8953017 1443 577 0 False 464 548 26 {X=0,Y=0,Width=0,Height=0} +69 517 548 0.236245918965077 0.235940920346451 0.236041809719997 0.23588921950103 0.0057165625487589 0.00577268593682691 22341069 8921798 1443 577 0 False 517 548 26 {X=0,Y=0,Width=0,Height=0} +70 570 549 0.235631106219342 0.235558122526772 0.235553521019303 0.235523002975509 0.00461703574746126 0.0039688596871656 22282928 8907323 1443 577 0 False 570 549 26 {X=0,Y=0,Width=0,Height=0} +71 92 599 0.232780344476385 0.232910219432404 0.233020523384451 0.232944228274968 0.00427639011499543 0.00446020619574804 22013340 8807196 1443 577 0 False 92 599 26 {X=0,Y=0,Width=0,Height=0} +72 145 599 0.233649326210553 0.234248967206193 0.233646143282216 0.234073395895323 0.00464485449382993 0.00460180923836987 22095517 8857819 1443 577 0 False 145 599 26 {X=0,Y=0,Width=0,Height=0} +73 198 599 0.234133353382609 0.233941221560072 0.23404287785153 0.233630884260319 0.00493092099812411 0.00498095061541553 22141290 8846182 1443 577 0 False 198 599 26 {X=0,Y=0,Width=0,Height=0} +74 251 600 0.234348883101458 0.233792333703437 0.234500648508431 0.233768215457389 0.00452526427507552 0.00453685758616883 22161672 8840552 1443 577 0 False 251 600 26 {X=0,Y=0,Width=0,Height=0} +75 304 600 0.235073924568088 0.234585141705935 0.235065232318608 0.234668497749294 0.0035402251165556 0.00336038959149183 22230237 8870531 1443 577 0 False 304 600 26 {X=0,Y=0,Width=0,Height=0} +76 358 600 0.235974101114866 0.235400216773315 0.236011291676204 0.235370412756542 0.00374661120643507 0.00355251715133967 22315364 8901352 1443 577 0 False 358 600 26 {X=0,Y=0,Width=0,Height=0} +77 411 600 0.236166123691873 0.236563313899898 0.236209658960861 0.236362249179828 0.00423532396758583 0.00410964204105424 22333523 8945333 1443 577 0 False 411 600 26 {X=0,Y=0,Width=0,Height=0} +78 464 601 0.236308646974703 0.236171101501718 0.236377508201724 0.236057068741894 0.00498386475081131 0.00435566359649134 22347001 8930502 1443 577 0 False 464 601 26 {X=0,Y=0,Width=0,Height=0} +79 517 601 0.235814383674306 0.235696035523638 0.23566033417258 0.23584344243534 0.00521077089805102 0.00545343253693676 22300260 8912538 1443 577 0 False 517 601 26 {X=0,Y=0,Width=0,Height=0} +80 570 601 0.235213624456014 0.235075149360569 0.235233081559472 0.235049973296712 0.00411075420581243 0.00426842678665431 22243448 8889060 1443 577 0 False 570 601 26 {X=0,Y=0,Width=0,Height=0} +81 94 653 0.238541127531743 0.976549592890722 0.238056000610361 1 0.00576855504903406 0.0836955756968172 22558120 47934635 1443 749 86 True 92 651 31 {X=0,Y=0,Width=0,Height=0} +82 145 652 0.234670855865637 0.234393835355154 0.234500648508431 0.234378576333257 0.00456447530816175 0.00410631632787916 22192120 8863297 1443 577 0 False 145 652 26 {X=0,Y=0,Width=0,Height=0} +83 198 652 0.234478357435556 0.234437602567006 0.234454871442741 0.234622720683604 0.00464291170729348 0.00446657011214229 22173916 8864952 1443 577 0 False 198 652 26 {X=0,Y=0,Width=0,Height=0} +84 251 652 0.233924961459866 0.233876721119161 0.233890287632563 0.233478294041352 0.00421227351838163 0.00497541534266321 22121583 8843743 1443 577 0 False 251 652 26 {X=0,Y=0,Width=0,Height=0} +85 304 652 0.234088750087835 0.234505567361243 0.234149691004807 0.234393835355154 0.00349169171725306 0.00342652469971779 22137072 8867522 1443 577 0 False 304 652 26 {X=0,Y=0,Width=0,Height=0} +86 357 653 0.234759322239295 0.235318024329545 0.234775310902571 0.235355153734646 0.00374703075883208 0.00371331135819222 22200486 8898244 1443 577 0 False 357 653 26 {X=0,Y=0,Width=0,Height=0} +87 410 653 0.23530247151213 0.235290706184624 0.235202563515679 0.235233081559472 0.00421943767175049 0.00385705445065811 22251850 8897211 1443 577 0 False 410 653 26 {X=0,Y=0,Width=0,Height=0} +88 463 653 0.235920668101945 0.235518851040608 0.235950255588617 0.23566033417258 0.00467527132142127 0.00499255922113799 22310311 8905838 1443 577 0 False 463 653 26 {X=0,Y=0,Width=0,Height=0} +89 516 653 0.235465932330203 0.236197044483487 0.235233081559472 0.2360265506981 0.00438503127848657 0.0041434643664886 22267308 8931483 1443 577 0 False 516 653 26 {X=0,Y=0,Width=0,Height=0} +90 569 654 0.235506073180598 0.234988619863782 0.235523002975509 0.234851606012055 0.00372501496523504 0.00388283546199499 22271104 8885788 1443 577 0 False 569 654 26 {X=0,Y=0,Width=0,Height=0} +91 93 707 0.23863605493269 0.981491458360136 0.238300144960708 1 0.00688043519522747 0.0709084900104364 22567097 48177210 1443 749 87 True 92 704 31 {X=0,Y=0,Width=0,Height=0} +92 145 704 0.234844066384465 0.233697288773287 0.234760051880674 0.233615625238422 0.00491186655815767 0.00452308313000827 22208500 8836958 1443 577 0 False 145 704 26 {X=0,Y=0,Width=0,Height=0} +93 198 704 0.234248774189264 0.233779534107947 0.234073395895323 0.233936064698253 0.00533654982985493 0.0049582893811923 22152205 8840068 1443 577 0 False 198 704 26 {X=0,Y=0,Width=0,Height=0} +94 251 705 0.233683629929911 0.233260066227328 0.233661402304112 0.233340962844282 0.00494774280470218 0.00523613460640167 22098761 8820425 1443 577 0 False 251 705 26 {X=0,Y=0,Width=0,Height=0} +95 304 705 0.23392478169315 0.23374809047357 0.233859769588769 0.233508812085145 0.00383854963506196 0.00361222115133748 22121566 8838879 1443 577 0 False 304 705 26 {X=0,Y=0,Width=0,Height=0} +96 357 705 0.23436639449457 0.234314261010462 0.234378576333257 0.23399710078584 0.00443936387028621 0.00432839722032764 22163328 8860288 1443 577 0 False 357 705 26 {X=0,Y=0,Width=0,Height=0} +97 410 705 0.234617866982252 0.23489159152524 0.234515907530327 0.234882124055848 0.0044195403786614 0.00446519484671982 22187109 8882119 1443 577 0 False 410 705 26 {X=0,Y=0,Width=0,Height=0} +98 463 706 0.234816308288499 0.234936019873223 0.234821087968261 0.234973678187228 0.00447943396550998 0.00444711832356185 22205875 8883799 1443 577 0 False 463 706 26 {X=0,Y=0,Width=0,Height=0} +99 516 706 0.235130762574113 0.234830502546762 0.234927901121538 0.235034714274815 0.00465030330434124 0.00492492964801778 22235612 8879809 1443 577 0 False 516 706 26 {X=0,Y=0,Width=0,Height=0} +100 571 710 0.239052870501715 0.9831893250409 0.238605325398642 1 0.00516674261347962 0.0626292303482279 22606514 48260551 1443 749 89 True 569 706 31 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D03_2.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D03_2.csv new file mode 100644 index 0000000..3eb50c7 --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D03_2.csv @@ -0,0 +1,101 @@ + ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour +1 96 230 0.0237814235525382 0.147277031087023 0.0237277790493629 0.164049744411383 0.00203136456216323 0.039337299676525 2248938 8310200 1443 861 0 True 94 232 32 {X=0,Y=0,Width=0,Height=0} +2 147 232 0.0235195668933366 0.0232952109017646 0.0236057068741894 0.0233157854581521 0.00216186099367395 0.00235858525179603 2224175 880878 1443 577 0 False 147 232 26 {X=0,Y=0,Width=0,Height=0} +3 200 232 0.0235263663050342 0.0232906093942948 0.0234988937209125 0.0233005264362554 0.00228432737797099 0.00199874838543286 2224818 880704 1443 577 0 False 200 232 26 {X=0,Y=0,Width=0,Height=0} +4 253 233 0.0235123656501546 0.0233310444800488 0.0236057068741894 0.0233768215457389 0.00189439228539774 0.00179044316490501 2223494 882233 1443 577 0 False 253 233 26 {X=0,Y=0,Width=0,Height=0} +5 306 233 0.0234627817598749 0.0233956771481867 0.0234683756771191 0.0233463035019455 0.0015111201242357 0.00161331729583558 2218805 884677 1443 577 0 False 306 233 26 {X=0,Y=0,Width=0,Height=0} +6 359 233 0.0235053653227148 0.0235657478064495 0.0235141527428092 0.0236209658960861 0.0014329587742479 0.00145296192523858 2222832 891108 1443 577 0 False 359 233 26 {X=0,Y=0,Width=0,Height=0} +7 412 233 0.0236281459902426 0.0237006989134492 0.023575188830396 0.0236514839398795 0.00167475831190593 0.00152936719851732 2234443 896211 1443 577 0 False 412 233 26 {X=0,Y=0,Width=0,Height=0} +8 465 234 0.0238163405936352 0.0237217494878509 0.0238040741588464 0.0237277790493629 0.0021405737783399 0.00237179230182628 2252240 897007 1443 577 0 False 465 234 26 {X=0,Y=0,Width=0,Height=0} +9 518 234 0.0237446559717102 0.0239151185833598 0.0236209658960861 0.0238803692683299 0.00238584595122073 0.00229989597227549 2245461 904319 1443 577 0 False 518 234 26 {X=0,Y=0,Width=0,Height=0} +10 572 232 0.0241379538243809 0.149887085896331 0.024124513618677 0.166781109330892 0.00195251425808932 0.0387378857218795 2282654 8457474 1443 861 0 True 571 234 32 {X=0,Y=0,Width=0,Height=0} +11 94 284 0.0233704874126023 0.023205693069667 0.0233768215457389 0.0231174181734951 0.00156785398519075 0.00159366067940804 2210077 877493 1443 577 0 False 94 284 26 {X=0,Y=0,Width=0,Height=0} +12 147 285 0.0233603676039016 0.0234049330540165 0.0233768215457389 0.023422598611429 0.00166885781967333 0.00166878611030018 2209120 885027 1443 577 0 False 147 285 26 {X=0,Y=0,Width=0,Height=0} +13 200 285 0.0234176074414115 0.023453883573134 0.0233920805676356 0.0234836346990158 0.00196014747077397 0.00199850915514961 2214533 886878 1443 577 0 False 200 285 26 {X=0,Y=0,Width=0,Height=0} +14 253 285 0.0236451815302811 0.0235843918453354 0.0236057068741894 0.0236362249179828 0.00182656825945962 0.00187576813730119 2236054 891813 1443 577 0 False 253 285 26 {X=0,Y=0,Width=0,Height=0} +15 306 285 0.0234902120459456 0.0236260698670151 0.0235141527428092 0.0235599298084993 0.00141110893046648 0.00139626440377174 2221399 893389 1443 577 0 False 306 285 26 {X=0,Y=0,Width=0,Height=0} +16 359 285 0.0237095908874348 0.0234750663747618 0.0236972610055695 0.0234683756771191 0.00147024415470198 0.00147241282356063 2242145 887679 1443 577 0 False 359 285 26 {X=0,Y=0,Width=0,Height=0} +17 412 286 0.0237059426805364 0.0236731956504118 0.0237125200274662 0.0236362249179828 0.00148395908208029 0.00139560970118017 2241800 895171 1443 577 0 False 412 286 26 {X=0,Y=0,Width=0,Height=0} +18 465 286 0.0239125263615994 0.0238183811447149 0.0238498512245365 0.0236820019836728 0.0018560019039276 0.00178093181848163 2261336 900661 1443 577 0 False 465 286 26 {X=0,Y=0,Width=0,Height=0} +19 518 286 0.0238098901408583 0.023918265591342 0.0237582970931563 0.0239414053559167 0.00206886694036833 0.00215316137064972 2251630 904438 1443 577 0 False 518 286 26 {X=0,Y=0,Width=0,Height=0} +20 571 286 0.0237182831369144 0.0239339477403623 0.0237125200274662 0.0238498512245365 0.00179685992445336 0.00175070893525456 2242967 905031 1443 577 0 False 571 286 26 {X=0,Y=0,Width=0,Height=0} +21 93 337 0.0232151689693461 0.0233397185860837 0.0232089723048753 0.0233768215457389 0.00171515867048577 0.001859926653189 2195389 882561 1443 577 0 False 93 337 26 {X=0,Y=0,Width=0,Height=0} +22 147 337 0.0235234583140282 0.0234722367121224 0.0234683756771191 0.0234378576333257 0.00178138916380323 0.00175189776259676 2224543 887572 1443 577 0 False 147 337 26 {X=0,Y=0,Width=0,Height=0} +23 200 337 0.0236575325611718 0.0233342443789214 0.0236667429617761 0.0233615625238422 0.00196707755034049 0.00189621158644765 2237222 882354 1443 577 0 False 200 337 26 {X=0,Y=0,Width=0,Height=0} +24 253 337 0.0235299933629071 0.0236439998788799 0.0235446707866026 0.0234988937209125 0.00187034928484436 0.00190423164617098 2225161 894067 1443 577 0 False 253 337 26 {X=0,Y=0,Width=0,Height=0} +25 306 338 0.0236902712526425 0.0237296831214194 0.0236820019836728 0.0237125200274662 0.00140922839544757 0.00137529937934078 2240318 897307 1443 577 0 False 306 338 26 {X=0,Y=0,Width=0,Height=0} +26 359 338 0.0238625300653225 0.0239579337591843 0.0237888151369497 0.0239108873121233 0.00168995004491462 0.00153157240149783 2256608 905938 1443 577 0 False 359 338 26 {X=0,Y=0,Width=0,Height=0} +27 412 338 0.023832265809835 0.0237759097596783 0.0238193331807431 0.023773556115053 0.00156640694635597 0.00156387674578187 2253746 899055 1443 577 0 False 412 338 26 {X=0,Y=0,Width=0,Height=0} +28 465 338 0.023923153746912 0.0240209797006085 0.0238651102464332 0.0240329594872969 0.00175372940292928 0.00179011400554284 2262341 908322 1443 577 0 False 465 338 26 {X=0,Y=0,Width=0,Height=0} +29 518 339 0.0236769790901171 0.023919429190932 0.0236514839398795 0.0239108873121233 0.00179789175774212 0.00183575708471064 2239061 904482 1443 577 0 False 518 339 26 {X=0,Y=0,Width=0,Height=0} +30 571 339 0.0237485685414273 0.0238819824404888 0.0236972610055695 0.0238803692683299 0.00174521753135071 0.00172036980853938 2245831 903066 1443 577 0 False 571 339 26 {X=0,Y=0,Width=0,Height=0} +31 93 389 0.0235533841851077 0.023286113668606 0.0235904478522927 0.023422598611429 0.00183504455336122 0.00192028295647898 2227373 880534 1443 577 0 False 93 389 26 {X=0,Y=0,Width=0,Height=0} +32 146 389 0.0234736629334936 0.0235867190445155 0.0234836346990158 0.0236514839398795 0.0017334687985886 0.00179547634402123 2219834 891901 1443 577 0 False 146 389 26 {X=0,Y=0,Width=0,Height=0} +33 199 390 0.0235381463122365 0.0234876544066905 0.0235446707866026 0.0235141527428092 0.00203074373203791 0.00196545288113091 2225932 888155 1443 577 0 False 199 390 26 {X=0,Y=0,Width=0,Height=0} +34 252 390 0.023439739896595 0.0236737510047616 0.0234378576333257 0.0237125200274662 0.00205051021714465 0.00212170637668657 2216626 895192 1443 577 0 False 252 390 26 {X=0,Y=0,Width=0,Height=0} +35 305 390 0.0238092979681444 0.0237783427406393 0.0237888151369497 0.0238345922026398 0.00172041106949486 0.00146456115185599 2251574 899147 1443 577 0 False 305 390 26 {X=0,Y=0,Width=0,Height=0} +36 358 390 0.0238577926836109 0.0239360633759806 0.0238193331807431 0.0238803692683299 0.00174239702534901 0.00168244582847574 2256160 905111 1443 577 0 False 358 390 26 {X=0,Y=0,Width=0,Height=0} +37 412 391 0.0238899497768804 0.0238858434754921 0.0238803692683299 0.0239108873121233 0.00161436466886015 0.00152226196092041 2259201 903212 1443 577 0 False 412 391 26 {X=0,Y=0,Width=0,Height=0} +38 465 391 0.0238245252665028 0.0239742241534449 0.0237888151369497 0.0239719233997101 0.00172766639234169 0.00164473257431264 2253014 906554 1443 577 0 False 465 391 26 {X=0,Y=0,Width=0,Height=0} +39 518 391 0.023746813172311 0.0236661876074264 0.0237430380712596 0.0235904478522927 0.00170901624374823 0.00173081076697788 2245665 894906 1443 577 0 False 518 391 26 {X=0,Y=0,Width=0,Height=0} +40 571 391 0.0238442573072923 0.023731613638921 0.0238345922026398 0.0236514839398795 0.00158784890197274 0.0015641983880374 2254880 897380 1443 577 0 False 571 391 26 {X=0,Y=0,Width=0,Height=0} +41 93 442 0.023398382977234 0.0234501547653568 0.0233768215457389 0.023270008392462 0.00213687810528527 0.00228226189784813 2212715 886737 1443 577 0 False 93 442 26 {X=0,Y=0,Width=0,Height=0} +42 146 442 0.0234874415236054 0.0236756550768181 0.0234683756771191 0.0236972610055695 0.00209938097283228 0.00184949134452769 2221137 895264 1443 577 0 False 146 442 26 {X=0,Y=0,Width=0,Height=0} +43 199 442 0.0235456859398265 0.023679939238945 0.0235294117647059 0.0237277790493629 0.00236016215403641 0.00237594254782269 2226645 895426 1443 577 0 False 199 442 26 {X=0,Y=0,Width=0,Height=0} +44 252 442 0.0237010784046719 0.0234177590949522 0.0236667429617761 0.0234531166552224 0.00233839783901509 0.00245692688749013 2241340 885512 1443 577 0 False 252 442 26 {X=0,Y=0,Width=0,Height=0} +45 305 443 0.0238435276659126 0.023743540534719 0.0237582970931563 0.0236667429617761 0.00175070833344677 0.00193196995570318 2254811 897831 1443 577 0 False 305 443 26 {X=0,Y=0,Width=0,Height=0} +46 358 443 0.0239774115718268 0.0240489325362147 0.0239566643778134 0.0239871824216068 0.0017630511835284 0.00182872699797214 2267472 909379 1443 577 0 False 358 443 26 {X=0,Y=0,Width=0,Height=0} +47 411 443 0.0237912155513437 0.0240738441456197 0.0238040741588464 0.024277103837644 0.00194471219237385 0.00200372351940782 2249864 910321 1443 577 0 False 411 443 26 {X=0,Y=0,Width=0,Height=0} +48 464 443 0.0237767496179032 0.0241134065316812 0.0238040741588464 0.024124513618677 0.00216445073766095 0.00210186856427817 2248496 911817 1443 577 0 False 464 443 26 {X=0,Y=0,Width=0,Height=0} +49 517 444 0.0238873061486932 0.0240265332441064 0.0238345922026398 0.0240177004654002 0.00200901899247964 0.00196211790554187 2258951 908532 1443 577 0 False 517 444 26 {X=0,Y=0,Width=0,Height=0} +50 570 444 0.0236894781641863 0.0240667832117438 0.0236514839398795 0.0240634775310903 0.00185284678161646 0.00186837657352251 2240243 910054 1443 577 0 False 570 444 26 {X=0,Y=0,Width=0,Height=0} +51 93 494 0.0234973498420511 0.0233293519715542 0.0234988937209125 0.0233005264362554 0.00197313489769853 0.00211987609292643 2222074 882169 1443 577 0 False 93 494 26 {X=0,Y=0,Width=0,Height=0} +52 146 494 0.0236669544520311 0.0236866828274782 0.0236667429617761 0.0237277790493629 0.00217729947520534 0.0021910114483077 2238113 895681 1443 577 0 False 146 494 26 {X=0,Y=0,Width=0,Height=0} +53 199 495 0.0235757492795717 0.0236135082805317 0.0234683756771191 0.0236667429617761 0.00227344997814844 0.00240932951596624 2229488 892914 1443 577 0 False 199 495 26 {X=0,Y=0,Width=0,Height=0} +54 252 495 0.023685449274829 0.0234679789954407 0.0236667429617761 0.0233920805676356 0.00199928254629225 0.00197771577300745 2239862 887411 1443 577 0 False 252 495 26 {X=0,Y=0,Width=0,Height=0} +55 305 495 0.0237163057030304 0.024108752133321 0.0236514839398795 0.0240482185091936 0.00162728029595954 0.00158313860031069 2242780 911641 1443 577 0 False 305 495 26 {X=0,Y=0,Width=0,Height=0} +56 358 495 0.0239142817307157 0.0239499472347254 0.0238498512245365 0.0239108873121233 0.00158633051238854 0.00166261231076118 2261502 905636 1443 577 0 False 358 495 26 {X=0,Y=0,Width=0,Height=0} +57 411 495 0.023990249030304 0.023740525753963 0.0239108873121233 0.0237277790493629 0.00208179725642957 0.00181183155087648 2268686 897717 1443 577 0 False 411 495 26 {X=0,Y=0,Width=0,Height=0} +58 462 501 0.0240381409985438 0.039333155371819 0.0240939955748837 0.0385900663767453 0.00237632030181097 0.00559404462398275 2273215 1085211 1443 421 0 True 464 496 22 {X=0,Y=0,Width=0,Height=0} +59 517 496 0.0238648458836145 0.0238067451488145 0.023773556115053 0.0237277790493629 0.0020533006895439 0.00204727030012494 2256827 900221 1443 577 0 False 517 496 26 {X=0,Y=0,Width=0,Height=0} +60 570 496 0.0238657764407364 0.0238036245862775 0.0238040741588464 0.0238651102464332 0.00194777066536212 0.00198152253086909 2256915 900103 1443 577 0 False 570 496 26 {X=0,Y=0,Width=0,Height=0} +61 93 547 0.0234294826192286 0.0233781438180003 0.0234073395895323 0.0234073395895323 0.0015960082339939 0.00143805290380077 2215656 884014 1443 577 0 False 93 547 26 {X=0,Y=0,Width=0,Height=0} +62 146 547 0.0236320479854469 0.023682372219906 0.0236362249179828 0.0237277790493629 0.00182261652611693 0.00181385008753267 2234812 895518 1443 577 0 False 146 547 26 {X=0,Y=0,Width=0,Height=0} +63 199 547 0.0235755906618804 0.0233347468423808 0.0236209658960861 0.0233463035019455 0.00206160737142904 0.00216029786593809 2229473 882373 1443 577 0 False 199 547 26 {X=0,Y=0,Width=0,Height=0} +64 252 547 0.0236932849887759 0.0237965372069564 0.0236667429617761 0.0238193331807431 0.00187048710282522 0.00180786020176396 2240603 899835 1443 577 0 False 252 547 26 {X=0,Y=0,Width=0,Height=0} +65 305 547 0.0238379654722067 0.0238458315168618 0.0237888151369497 0.023773556115053 0.0014906091693572 0.00148281697065902 2254285 901699 1443 577 0 False 305 547 26 {X=0,Y=0,Width=0,Height=0} +66 358 548 0.0238462558902019 0.0240397824121658 0.0238345922026398 0.0239566643778134 0.00143884809779487 0.00140539239251858 2255069 909033 1443 577 0 False 358 548 26 {X=0,Y=0,Width=0,Height=0} +67 411 548 0.0240669142477337 0.0240405757755226 0.0240634775310903 0.0239871824216068 0.00161971239621597 0.00142058472619583 2275936 909063 1443 577 0 False 411 548 26 {X=0,Y=0,Width=0,Height=0} +68 464 548 0.0240183137871396 0.0238596095938257 0.0240177004654002 0.0238040741588464 0.00216655708446975 0.00224848382244151 2271340 902220 1443 577 0 False 464 548 26 {X=0,Y=0,Width=0,Height=0} +69 517 548 0.0239418706344776 0.023952909124591 0.0238345922026398 0.0239414053559167 0.0021806109081459 0.00225550568644064 2264111 905748 1443 577 0 False 517 548 26 {X=0,Y=0,Width=0,Height=0} +70 570 549 0.0239080533427066 0.0237719164974489 0.0238651102464332 0.0237277790493629 0.00178554312133255 0.00174604013755545 2260913 898904 1443 577 0 False 570 549 26 {X=0,Y=0,Width=0,Height=0} +71 92 599 0.0234694542774195 0.023596160068462 0.0234836346990158 0.0235599298084993 0.0016331925983 0.00172232383370616 2219436 892258 1443 577 0 False 92 599 26 {X=0,Y=0,Width=0,Height=0} +72 145 599 0.0235169761377131 0.0235439567595814 0.0234531166552224 0.0234378576333257 0.00183050550297078 0.00199475505302589 2223930 890284 1443 577 0 False 145 599 26 {X=0,Y=0,Width=0,Height=0} +73 198 599 0.0236678215620765 0.0234267769917751 0.0236667429617761 0.0234378576333257 0.00197219634920016 0.00213523397035446 2238195 885853 1443 577 0 False 198 599 26 {X=0,Y=0,Width=0,Height=0} +74 251 600 0.0238010498482002 0.0237765180049186 0.0237125200274662 0.0236820019836728 0.00178303413580305 0.00189612035651959 2250794 899078 1443 577 0 False 251 600 26 {X=0,Y=0,Width=0,Height=0} +75 304 600 0.0237304015285247 0.0235489549487296 0.0237125200274662 0.0235141527428092 0.00139740181926447 0.00134817808101116 2244113 890473 1443 577 0 False 304 600 26 {X=0,Y=0,Width=0,Height=0} +76 358 600 0.0237334681372219 0.0239270454791577 0.0237125200274662 0.0239566643778134 0.00151736920118922 0.00156889243826781 2244403 904770 1443 577 0 False 358 600 26 {X=0,Y=0,Width=0,Height=0} +77 411 600 0.0239931358722844 0.0238864252752872 0.0240024414435035 0.0239108873121233 0.00171516512950443 0.00157814114060209 2268959 903234 1443 577 0 False 411 600 26 {X=0,Y=0,Width=0,Height=0} +78 464 601 0.0240004534351067 0.0240144741210823 0.0239871824216068 0.0239871824216068 0.00190122183327369 0.00192263090367055 2269651 908076 1443 577 0 False 464 601 26 {X=0,Y=0,Width=0,Height=0} +79 517 601 0.023854588606248 0.0239825015778014 0.0237277790493629 0.0238193331807431 0.0020256051745147 0.00224368615348037 2255857 906867 1443 577 0 False 517 601 26 {X=0,Y=0,Width=0,Height=0} +80 570 601 0.0237216458319686 0.0237704619979613 0.0236667429617761 0.0236820019836728 0.00168113016096829 0.00166890878006268 2243285 898849 1443 577 0 False 570 601 26 {X=0,Y=0,Width=0,Height=0} +81 94 653 0.0241432728042936 0.161531985425902 0.024124513618677 0.170077058060578 0.00171819706264012 0.0269949541498296 2283157 7928913 1443 749 0 True 92 651 31 {X=0,Y=0,Width=0,Height=0} +82 145 652 0.0237241202679518 0.0237712024704277 0.0236820019836728 0.0238193331807431 0.00171986504060985 0.00156667184049967 2243519 898877 1443 577 0 False 145 652 26 {X=0,Y=0,Width=0,Height=0} +83 198 652 0.0235779487782234 0.0235823555460528 0.0235904478522927 0.0235141527428092 0.00179183431255929 0.00180168858117277 2229696 891736 1443 577 0 False 198 652 26 {X=0,Y=0,Width=0,Height=0} +84 251 652 0.0236215897923382 0.0236603167185857 0.0236057068741894 0.0236057068741894 0.0018379698350831 0.00196385086462614 2233823 894684 1443 577 0 False 251 652 26 {X=0,Y=0,Width=0,Height=0} +85 304 652 0.0235939480160126 0.0237409488810866 0.0236057068741894 0.0236820019836728 0.00139543201175862 0.00133944683829608 2231209 897733 1443 577 0 False 304 652 26 {X=0,Y=0,Width=0,Height=0} +86 357 653 0.0238092133720424 0.0238161332818705 0.0237888151369497 0.0238193331807431 0.00148807311416629 0.00154982206097822 2251566 900576 1443 577 0 False 357 653 26 {X=0,Y=0,Width=0,Height=0} +87 410 653 0.0238937777504955 0.0241088050242115 0.0238803692683299 0.0240939955748837 0.00162311614197098 0.0016685266083921 2259563 911643 1443 577 0 False 410 653 26 {X=0,Y=0,Width=0,Height=0} +88 463 653 0.0238347190967928 0.0238890433743648 0.0238651102464332 0.0240329594872969 0.00192055404229159 0.00189022025366244 2253978 903333 1443 577 0 False 463 653 26 {X=0,Y=0,Width=0,Height=0} +89 516 653 0.0237143071201208 0.0238317360945552 0.0236514839398795 0.0237277790493629 0.00169768934584624 0.00161444619709052 2242591 901166 1443 577 0 False 516 653 26 {X=0,Y=0,Width=0,Height=0} +90 569 654 0.0238266507435654 0.0238858699209374 0.023773556115053 0.0237582970931563 0.00146955292505738 0.00139064816997283 2253215 903213 1443 577 0 False 569 654 26 {X=0,Y=0,Width=0,Height=0} +91 93 707 0.0240830192306503 0.161172614069083 0.0240939955748837 0.167040512703136 0.0020845228218699 0.0249074366653394 2277459 7911273 1443 749 0 True 92 704 31 {X=0,Y=0,Width=0,Height=0} +92 145 704 0.0236693231428869 0.0236248533765346 0.0236667429617761 0.0236209658960861 0.00173026209663493 0.00182567575753243 2238337 893343 1443 577 0 False 145 704 26 {X=0,Y=0,Width=0,Height=0} +93 198 704 0.0236088686535013 0.0234813074998357 0.0236209658960861 0.0234531166552224 0.00202537606893823 0.00194233639931827 2232620 887915 1443 577 0 False 198 704 26 {X=0,Y=0,Width=0,Height=0} +94 251 705 0.0236967005563939 0.023507065363488 0.023575188830396 0.0234683756771191 0.00201897166785326 0.00203699991413579 2240926 888889 1443 577 0 False 251 705 26 {X=0,Y=0,Width=0,Height=0} +95 304 705 0.0237195415039315 0.0235755326211839 0.0236820019836728 0.0235294117647059 0.00154847541933221 0.00146039367293009 2243086 891478 1443 577 0 False 304 705 26 {X=0,Y=0,Width=0,Height=0} +96 357 705 0.0236472435602671 0.0237421653715671 0.0236820019836728 0.0236667429617761 0.00179695404973928 0.00173755476812607 2236249 897779 1443 577 0 False 357 705 26 {X=0,Y=0,Width=0,Height=0} +97 410 705 0.0237611627861113 0.0238244107062269 0.0237125200274662 0.0237582970931563 0.00172741421353106 0.0016474892289876 2247022 900889 1443 577 0 False 410 705 26 {X=0,Y=0,Width=0,Height=0} +98 463 706 0.0237236338403654 0.0239803594967379 0.0237582970931563 0.0239871824216068 0.0017489228636778 0.00177448024697479 2243473 906786 1443 577 0 False 463 706 26 {X=0,Y=0,Width=0,Height=0} +99 516 706 0.0236643848454331 0.02381608039098 0.0236209658960861 0.0238040741588464 0.00181838143775957 0.00195903798540193 2237870 900574 1443 577 0 False 516 706 26 {X=0,Y=0,Width=0,Height=0} +100 571 710 0.0241300652378702 0.166568420160529 0.024124513618677 0.168764782177462 0.00158523812325391 0.0261465541631679 2281908 8176130 1443 749 0 True 569 706 31 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D03_3.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D03_3.csv new file mode 100644 index 0000000..8e57a99 --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D03_3.csv @@ -0,0 +1,101 @@ + ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour +1 96 230 0.324992971914464 0.347315028001014 0.324650949874113 0.348165102616922 0.00518784988806814 0.00899975421208001 30733612 19597471 1443 861 0 True 94 232 32 {X=0,Y=0,Width=0,Height=0} +2 147 232 0.325627537850014 0.325753936503693 0.325459678034638 0.325978484779126 0.00598278806215598 0.00563993315471956 30793621 12317960 1443 577 0 False 147 232 26 {X=0,Y=0,Width=0,Height=0} +3 200 232 0.325312808627068 0.326007283868979 0.325200274662394 0.326039520866712 0.00650411946913108 0.00626252377820875 30763858 12327540 1443 577 0 False 200 232 26 {X=0,Y=0,Width=0,Height=0} +4 253 233 0.325242255478007 0.325584764990568 0.325123979552911 0.325627527275502 0.00551804749631333 0.00535410251013543 30757186 12311563 1443 577 0 False 253 233 26 {X=0,Y=0,Width=0,Height=0} +5 306 233 0.325249213507396 0.325685151900654 0.325123979552911 0.325291828793774 0.00474377487812102 0.00465187633026479 30757844 12315359 1443 577 0 False 306 233 26 {X=0,Y=0,Width=0,Height=0} +6 359 233 0.325230433172754 0.325372778301618 0.325291828793774 0.325413900968948 0.00432064726630659 0.00401524443568181 30756068 12303547 1443 577 0 False 359 233 26 {X=0,Y=0,Width=0,Height=0} +7 412 233 0.325040017921684 0.324548262210292 0.325062943465324 0.32462043183032 0.00420080033290916 0.00404394849730606 30738061 12272369 1443 577 0 False 412 233 26 {X=0,Y=0,Width=0,Height=0} +8 465 234 0.324950229733933 0.325451347719391 0.324910353246357 0.325307087815671 0.00574159757939598 0.00536390418696322 30729570 12306518 1443 577 0 False 465 234 26 {X=0,Y=0,Width=0,Height=0} +9 518 234 0.324954723901851 0.32454289378491 0.324910353246357 0.32452887769894 0.00698800792842053 0.00749287199134754 30729995 12272166 1443 577 0 False 518 234 26 {X=0,Y=0,Width=0,Height=0} +10 572 232 0.324220387438515 0.351547448247592 0.324223697261006 0.352529182879377 0.00615932350562316 0.0120840933469748 30660551 19836288 1443 861 0 True 571 234 32 {X=0,Y=0,Width=0,Height=0} +11 94 284 0.323977374561032 0.324461336031827 0.323765926604105 0.32452887769894 0.00470526324567423 0.00470342032736457 30637570 12269082 1443 577 0 False 94 284 26 {X=0,Y=0,Width=0,Height=0} +12 147 285 0.325051649885708 0.324654334891102 0.32489509422446 0.324483100633249 0.00461713293473954 0.00465730794508723 30739161 12276380 1443 577 0 False 147 285 26 {X=0,Y=0,Width=0,Height=0} +13 200 285 0.325490682506018 0.325759780947088 0.325474937056535 0.325917448691539 0.00508282376947794 0.00480904117573086 30780679 12318181 1443 577 0 False 200 285 26 {X=0,Y=0,Width=0,Height=0} +14 253 285 0.325661101353479 0.326008156568672 0.325535973144121 0.325947966735332 0.00522812214507919 0.00494119357208144 30796795 12327573 1443 577 0 False 253 285 26 {X=0,Y=0,Width=0,Height=0} +15 306 285 0.325500939783384 0.325768931071137 0.325505455100328 0.325551232166018 0.00445383094126954 0.00410464355789014 30781649 12318527 1443 577 0 False 306 285 26 {X=0,Y=0,Width=0,Height=0} +16 359 285 0.325469501756982 0.325096291171757 0.325383382925155 0.325337605859464 0.00428563802526745 0.00453368205038064 30778676 12293092 1443 577 0 False 359 285 26 {X=0,Y=0,Width=0,Height=0} +17 412 286 0.325683064616459 0.325197233436193 0.325597009231708 0.325215533684291 0.00422582550054241 0.0039886659926351 30798872 12296909 1443 577 0 False 412 286 26 {X=0,Y=0,Width=0,Height=0} +18 465 286 0.325319935848661 0.325158411522598 0.325261310749981 0.325185015640497 0.00458979788824602 0.00479435681022201 30764532 12295441 1443 577 0 False 465 286 26 {X=0,Y=0,Width=0,Height=0} +19 518 286 0.325745189878859 0.324846302378014 0.325749599450675 0.324910353246357 0.00560555943884153 0.00577540323509274 30804747 12283639 1443 577 0 False 518 286 26 {X=0,Y=0,Width=0,Height=0} +20 571 286 0.325244486700197 0.325191441883688 0.325246051728084 0.325154497596704 0.00571066658973826 0.0058599391902769 30757397 12296690 1443 577 0 False 571 286 26 {X=0,Y=0,Width=0,Height=0} +21 93 337 0.324126168529922 0.324587269242003 0.324147402151522 0.32457465476463 0.00535068023583692 0.0054871711293866 30651641 12273844 1443 577 0 False 93 337 26 {X=0,Y=0,Width=0,Height=0} +22 147 337 0.324978558853587 0.32548138974517 0.324864576180667 0.325337605859464 0.0049893917183218 0.00509638705543978 30732249 12307654 1443 577 0 False 147 337 26 {X=0,Y=0,Width=0,Height=0} +23 200 337 0.325578768197216 0.325429477336187 0.325490196078431 0.325398641947051 0.00573688124333496 0.00589721371134243 30789009 12305691 1443 577 0 False 200 337 26 {X=0,Y=0,Width=0,Height=0} +24 253 337 0.325928276992594 0.326292445104875 0.325810635538262 0.326268406195163 0.00606664134555969 0.00622566236272239 30822061 12338323 1443 577 0 False 253 337 26 {X=0,Y=0,Width=0,Height=0} +25 306 338 0.3266390322925 0.326480763120346 0.326588845654994 0.3265583276112 0.00492837510651293 0.00457449461282036 30889275 12345444 1443 577 0 False 306 338 26 {X=0,Y=0,Width=0,Height=0} +26 359 338 0.326682007112311 0.326384845490503 0.326451514457923 0.326146334019989 0.0056726718640234 0.00505802662826369 30893339 12341817 1443 577 0 False 359 338 26 {X=0,Y=0,Width=0,Height=0} +27 412 338 0.32601327492607 0.325999323789966 0.325886930647745 0.32632944228275 0.00441819602589956 0.00417629345285341 30830099 12327239 1443 577 0 False 412 338 26 {X=0,Y=0,Width=0,Height=0} +28 465 338 0.326071202106908 0.326364059370553 0.326070038910506 0.326268406195163 0.00432840358207962 0.00435332179916718 30835577 12341031 1443 577 0 False 465 338 26 {X=0,Y=0,Width=0,Height=0} +29 518 339 0.326402342973641 0.326085456605074 0.32642099641413 0.325749599450675 0.00523105463278622 0.00524860304152929 30866892 12330496 1443 577 0 False 518 339 26 {X=0,Y=0,Width=0,Height=0} +30 571 339 0.325813332039013 0.325812460273983 0.325841153582055 0.325734340428779 0.00549091708791472 0.00507549830325901 30811191 12320173 1443 577 0 False 571 339 26 {X=0,Y=0,Width=0,Height=0} +31 93 389 0.324366548353731 0.323939276497576 0.324223697261006 0.323994811932555 0.00547832005065653 0.00569981840485785 30674373 12249341 1443 577 0 False 93 389 26 {X=0,Y=0,Width=0,Height=0} +32 146 389 0.324762690750331 0.324432748505535 0.32480354009308 0.32452887769894 0.00529928450658524 0.0046895044111555 30711835 12268001 1443 577 0 False 146 389 26 {X=0,Y=0,Width=0,Height=0} +33 199 390 0.326065047740488 0.325300952472378 0.325978484779126 0.325322346837568 0.00616051913887972 0.00574846229066879 30834995 12300831 1443 577 0 False 199 390 26 {X=0,Y=0,Width=0,Height=0} +34 252 390 0.326457351588961 0.326025637007968 0.326390478370336 0.325902189669642 0.00686911195899236 0.00779056391293849 30872094 12328234 1443 577 0 False 252 390 26 {X=0,Y=0,Width=0,Height=0} +35 305 390 0.326790522762141 0.326689311901416 0.326848249027237 0.326878767071031 0.00522898325060038 0.00552661378236029 30903601 12353330 1443 577 0 False 305 390 26 {X=0,Y=0,Width=0,Height=0} +36 358 390 0.326438708722984 0.327308796455887 0.326436255436027 0.327077134355688 0.00545033474570062 0.00512929201893838 30870331 12376755 1443 577 0 False 358 390 26 {X=0,Y=0,Width=0,Height=0} +37 412 391 0.326538405229181 0.327322706760077 0.326665140764477 0.327382314793622 0.0048581239416355 0.00452591928303273 30879759 12377281 1443 577 0 False 412 391 26 {X=0,Y=0,Width=0,Height=0} +38 465 391 0.3262269646797 0.326327194419905 0.326268406195163 0.325932707713436 0.00456436527769137 0.00439820573261172 30850307 12339637 1443 577 0 False 465 391 26 {X=0,Y=0,Width=0,Height=0} +39 518 391 0.325827565333173 0.326440962725277 0.326009002822919 0.326451514457923 0.00505850330449942 0.00474849205034556 30812537 12343939 1443 577 0 False 518 391 26 {X=0,Y=0,Width=0,Height=0} +40 571 391 0.326084060714411 0.325454045154804 0.326161593041886 0.325261310749981 0.00538957627870708 0.00548767610070601 30836793 12306620 1443 577 0 False 571 391 26 {X=0,Y=0,Width=0,Height=0} +41 93 442 0.324131075103838 0.324155653130433 0.324010070954452 0.324254215304799 0.00593494330681324 0.00657398796831859 30652105 12257523 1443 577 0 False 93 442 26 {X=0,Y=0,Width=0,Height=0} +42 146 442 0.325313030691836 0.325046970416406 0.325307087815671 0.325078202487221 0.00617113532049197 0.00651839792978128 30763879 12291227 1443 577 0 False 146 442 26 {X=0,Y=0,Width=0,Height=0} +43 199 442 0.325767354057581 0.325673277895747 0.325535973144121 0.325307087815671 0.00645641004402272 0.00655804518149309 30806843 12314910 1443 577 0 False 199 442 26 {X=0,Y=0,Width=0,Height=0} +44 252 442 0.326259904286913 0.326618596780875 0.326115815976196 0.326817730983444 0.00669003614832011 0.00614691955592015 30853422 12350656 1443 577 0 False 252 442 26 {X=0,Y=0,Width=0,Height=0} +45 305 443 0.32695200614633 0.327079461554868 0.326909285114824 0.327275501640345 0.00504267331310756 0.0051263394229354 30918872 12368083 1443 577 0 False 305 443 26 {X=0,Y=0,Width=0,Height=0} +46 358 443 0.327080359582076 0.327212561480702 0.327031357289998 0.327092393377585 0.00468453242431837 0.00462656189036147 30931010 12373116 1443 577 0 False 358 443 26 {X=0,Y=0,Width=0,Height=0} +47 411 443 0.325183038206613 0.326120999283461 0.325566491187915 0.325703822384985 0.00626756796800359 0.00537132789530489 30751586 12331840 1443 577 0 False 411 443 26 {X=0,Y=0,Width=0,Height=0} +48 464 443 0.326019143780645 0.325980150842175 0.326222629129473 0.326176852063783 0.00627439091333786 0.00628533651138054 30830654 12326514 1443 577 0 False 464 443 26 {X=0,Y=0,Width=0,Height=0} +49 517 444 0.326005037380638 0.325693720224908 0.326131074998093 0.325856412603952 0.00568879400116947 0.00592715191605271 30829320 12315683 1443 577 0 False 517 444 26 {X=0,Y=0,Width=0,Height=0} +50 570 444 0.32622611871868 0.325568818387095 0.326176852063783 0.325535973144121 0.00581581439467895 0.00573893622063042 30850227 12310960 1443 577 0 False 570 444 26 {X=0,Y=0,Width=0,Height=0} +51 93 494 0.323751947098251 0.324024827512889 0.323750667582208 0.324238956282902 0.00510082555562234 0.00478825564094435 30616252 12252576 1443 577 0 False 93 494 26 {X=0,Y=0,Width=0,Height=0} +52 146 494 0.32462681883602 0.324776380620831 0.324589913786526 0.324559395742733 0.00547668150341177 0.00556962385125687 30698986 12280995 1443 577 0 False 146 494 26 {X=0,Y=0,Width=0,Height=0} +53 199 495 0.325582278935449 0.325698797750392 0.325764858472572 0.325627527275502 0.00600030584455912 0.00638252319546357 30789341 12315875 1443 577 0 False 199 495 26 {X=0,Y=0,Width=0,Height=0} +54 252 495 0.326091769534205 0.32611917454774 0.326070038910506 0.326085297932403 0.00502357658475371 0.00493804982083116 30837522 12331771 1443 577 0 False 252 495 26 {X=0,Y=0,Width=0,Height=0} +55 305 495 0.326797459642504 0.326757303141097 0.326787212939651 0.326771953917754 0.00456452659731085 0.00482501848193852 30904257 12355901 1443 577 0 False 305 495 26 {X=0,Y=0,Width=0,Height=0} +56 358 495 0.326619881849912 0.326656466658442 0.32660410467689 0.326405737392233 0.0040014803469122 0.00397176539523881 30887464 12352088 1443 577 0 False 358 495 26 {X=0,Y=0,Width=0,Height=0} +57 411 495 0.326081321915609 0.326834418059383 0.326146334019989 0.326817730983444 0.00552391770713615 0.00424963117422639 30836534 12358817 1443 577 0 False 411 495 26 {X=0,Y=0,Width=0,Height=0} +58 462 501 0.325959715018996 0.36915227434634 0.325993743801022 0.366155489433127 0.00640309011740801 0.0135764373031215 30825034 10184998 1443 421 0 True 464 496 22 {X=0,Y=0,Width=0,Height=0} +59 517 496 0.326290908758293 0.325982478041355 0.326268406195163 0.325917448691539 0.00622145612065088 0.00638037358247159 30856354 12326602 1443 577 0 False 517 496 26 {X=0,Y=0,Width=0,Height=0} +60 570 496 0.326257366403853 0.326271209412357 0.326100556954299 0.326100556954299 0.00564125119654203 0.00546055070327482 30853182 12337520 1443 577 0 False 570 496 26 {X=0,Y=0,Width=0,Height=0} +61 93 547 0.323912743139111 0.32301572221387 0.323903257801175 0.322789349202716 0.00455712242522597 0.00439893071501475 30631458 12214418 1443 577 0 False 93 547 26 {X=0,Y=0,Width=0,Height=0} +62 146 547 0.324553706654874 0.324556090062079 0.324559395742733 0.324498359655146 0.00493263937698183 0.00472397739108455 30692072 12272665 1443 577 0 False 146 547 26 {X=0,Y=0,Width=0,Height=0} +63 199 547 0.325454496523391 0.325050514106067 0.325520714122225 0.32484931715877 0.00561575775694049 0.00565048512554389 30777257 12291361 1443 577 0 False 199 547 26 {X=0,Y=0,Width=0,Height=0} +64 252 547 0.325838351336177 0.325647096904971 0.325673304341192 0.325825894560159 0.00505649108431232 0.00574378224629675 30813557 12313920 1443 577 0 False 252 547 26 {X=0,Y=0,Width=0,Height=0} +65 305 547 0.326037405964163 0.326141600285293 0.326100556954299 0.326161593041886 0.00403083909035604 0.00421690928493216 30832381 12332619 1443 577 0 False 305 547 26 {X=0,Y=0,Width=0,Height=0} +66 358 548 0.326459603960176 0.326878370389352 0.326573586633097 0.326832990005341 0.00412351186354168 0.00432966621770953 30872307 12360479 1443 577 0 False 358 548 26 {X=0,Y=0,Width=0,Height=0} +67 411 548 0.326391324331356 0.326206867644117 0.326405737392233 0.326146334019989 0.00460089908388431 0.00468216899270792 30865850 12335087 1443 577 0 False 411 548 26 {X=0,Y=0,Width=0,Height=0} +68 464 548 0.326431761268108 0.32634977883013 0.326405737392233 0.325993743801022 0.00637019176059097 0.006200644446244 30869674 12340491 1443 577 0 False 464 548 26 {X=0,Y=0,Width=0,Height=0} +69 517 548 0.325845446834231 0.326058826041729 0.325749599450675 0.326085297932403 0.00698467546104316 0.0073851454809852 30814228 12329489 1443 577 0 False 517 548 26 {X=0,Y=0,Width=0,Height=0} +70 570 549 0.326108773350705 0.325399461755853 0.32632944228275 0.325322346837568 0.00580791847918199 0.00556059268775912 30839130 12304556 1443 577 0 False 570 549 26 {X=0,Y=0,Width=0,Height=0} +71 92 599 0.323485004098417 0.323648535272737 0.323430228122377 0.323262378881514 0.00500797219071046 0.0055808356930269 30591008 12238347 1443 577 0 False 92 599 26 {X=0,Y=0,Width=0,Height=0} +72 145 599 0.324598278226111 0.323797634692933 0.324925612268254 0.323842221713588 0.00521730181688108 0.00511467026987641 30696287 12243985 1443 577 0 False 145 599 26 {X=0,Y=0,Width=0,Height=0} +73 198 599 0.324433125485998 0.32471486851523 0.324315251392386 0.324773022049287 0.00551304976922758 0.00559257844006913 30680669 12278669 1443 577 0 False 198 599 26 {X=0,Y=0,Width=0,Height=0} +74 251 600 0.325170655452184 0.324896548723948 0.325139238574807 0.324513618677043 0.00531711506767655 0.005616601429221 30750415 12285539 1443 577 0 False 251 600 26 {X=0,Y=0,Width=0,Height=0} +75 304 600 0.325105262665345 0.325775463096108 0.325017166399634 0.325658045319295 0.00412265495378858 0.00406368543411343 30744231 12318774 1443 577 0 False 304 600 26 {X=0,Y=0,Width=0,Height=0} +76 358 600 0.326002488923066 0.325169862400382 0.325947966735332 0.32503242542153 0.00490849255700182 0.00483768682518006 30829079 12295874 1443 577 0 False 358 600 26 {X=0,Y=0,Width=0,Height=0} +77 411 600 0.326382589783826 0.326484412591787 0.326298924238956 0.326298924238956 0.00492954706903376 0.00473322398858692 30865024 12345582 1443 577 0 False 411 600 26 {X=0,Y=0,Width=0,Height=0} +78 464 601 0.326001960197428 0.325486282152538 0.325856412603952 0.325764858472572 0.00565240954677823 0.0057848978692174 30829029 12307839 1443 577 0 False 464 601 26 {X=0,Y=0,Width=0,Height=0} +79 517 601 0.326080296187872 0.326389446997973 0.326298924238956 0.32637521934844 0.00582449439947603 0.00582482545390863 30836437 12341991 1443 577 0 False 517 601 26 {X=0,Y=0,Width=0,Height=0} +80 570 601 0.326060394954879 0.326084213669148 0.325825894560159 0.325749599450675 0.00483508315646133 0.00517883693231087 30834555 12330449 1443 577 0 False 570 601 26 {X=0,Y=0,Width=0,Height=0} +81 94 653 0.322146672615888 0.355422061184196 0.322209506370642 0.353200579842832 0.005340985191361 0.0146296952047395 30464446 17446146 1443 749 0 True 92 651 31 {X=0,Y=0,Width=0,Height=0} +82 145 652 0.323254839253924 0.32337606785055 0.323262378881514 0.323338673990997 0.00497856719630013 0.00519866935776153 30569242 12228044 1443 577 0 False 145 652 26 {X=0,Y=0,Width=0,Height=0} +83 198 652 0.324457087331887 0.323785892915252 0.324681467917906 0.323582818341344 0.00582145224856154 0.00598567855326174 30682935 12243541 1443 577 0 False 198 652 26 {X=0,Y=0,Width=0,Height=0} +84 251 652 0.324510404025167 0.324898320568778 0.324406805523766 0.324498359655146 0.00545232305287642 0.00551006268828356 30687977 12285606 1443 577 0 False 251 652 26 {X=0,Y=0,Width=0,Height=0} +85 304 652 0.324518144568499 0.324548791119196 0.324559395742733 0.324162661173419 0.00459769842719491 0.00443497464103171 30688709 12272389 1443 577 0 False 304 652 26 {X=0,Y=0,Width=0,Height=0} +86 357 653 0.325010039178041 0.324734226581137 0.32498664835584 0.324696726939803 0.00528337961842776 0.00541276973142952 30735226 12279401 1443 577 0 False 357 653 26 {X=0,Y=0,Width=0,Height=0} +87 410 653 0.325598658855697 0.325842264290755 0.325337605859464 0.325734340428779 0.00517356992111445 0.00506813191947416 30790890 12321300 1443 577 0 False 410 653 26 {X=0,Y=0,Width=0,Height=0} +88 463 653 0.32538648125739 0.326020295028032 0.325368123903258 0.325932707713436 0.00527052065229397 0.00480558081974449 30770825 12328032 1443 577 0 False 463 653 26 {X=0,Y=0,Width=0,Height=0} +89 516 653 0.325814727874696 0.325740237763064 0.325764858472572 0.325612268253605 0.00447550171257061 0.00445849333482186 30811323 12317442 1443 577 0 False 516 653 26 {X=0,Y=0,Width=0,Height=0} +90 569 654 0.3250104198605 0.32547729070116 0.324925612268254 0.325276569771878 0.00431479370257049 0.00449968017233938 30735262 12307499 1443 577 0 False 569 654 26 {X=0,Y=0,Width=0,Height=0} +91 93 707 0.3211101271527 0.354582590882093 0.320927748531319 0.353841458762493 0.00634122423106957 0.0138776976025012 30366423 17404940 1443 749 0 True 92 704 31 {X=0,Y=0,Width=0,Height=0} +92 145 704 0.322936419526028 0.323707561506486 0.322926680399786 0.323628595407034 0.0060335685631651 0.00589291186940445 30539130 12240579 1443 577 0 False 145 704 26 {X=0,Y=0,Width=0,Height=0} +93 198 704 0.323491528572783 0.323401957941428 0.323567559319448 0.323216601815824 0.00674012593899025 0.00631835476063947 30591625 12229023 1443 577 0 False 198 704 26 {X=0,Y=0,Width=0,Height=0} +94 251 705 0.323862059499505 0.323660012595966 0.323598077363241 0.323552300297551 0.00638204181352882 0.00695778259691478 30626665 12238781 1443 577 0 False 251 705 26 {X=0,Y=0,Width=0,Height=0} +95 304 705 0.32380376221072 0.323980187601344 0.323857480735485 0.323872739757382 0.00556672846337133 0.00503186183744373 30621152 12250888 1443 577 0 False 304 705 26 {X=0,Y=0,Width=0,Height=0} +96 357 705 0.324464690406554 0.324074677177144 0.324330510414282 0.323826962691691 0.00624078143246586 0.0056178875326691 30683654 12254461 1443 577 0 False 357 705 26 {X=0,Y=0,Width=0,Height=0} +97 410 705 0.325169418234193 0.325084628730411 0.325215533684291 0.325062943465324 0.00574509691028958 0.00583861408012848 30750298 12292651 1443 577 0 False 410 705 26 {X=0,Y=0,Width=0,Height=0} +98 463 706 0.325507263342008 0.325583760063649 0.325398641947051 0.325413900968948 0.00545504392030877 0.00618643534700057 30782247 12311525 1443 577 0 False 463 706 26 {X=0,Y=0,Width=0,Height=0} +99 516 706 0.325488260942598 0.325548032267146 0.325520714122225 0.325856412603952 0.0047994220118745 0.00479874246702083 30780450 12310174 1443 577 0 False 516 706 26 {X=0,Y=0,Width=0,Height=0} +100 571 710 0.32508635543655 0.359190469161955 0.324925612268254 0.358419165331502 0.0040365136057837 0.0121854676026494 30742443 17631121 1443 749 0 True 569 706 31 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D03_4.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D03_4.csv new file mode 100644 index 0000000..52dad5d --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D03_4.csv @@ -0,0 +1,101 @@ + ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour +1 96 230 0.0339626807468419 0.0362196544177128 0.0339513237201495 0.0361638818951705 0.00199744214913465 0.00214046804167986 3211749 2043717 1443 861 0 True 94 232 32 {X=0,Y=0,Width=0,Height=0} +2 147 232 0.0339780032158151 0.0341295131300974 0.0339360646982528 0.0341496910048066 0.00227135280468618 0.00236123370586266 3213198 1290563 1443 577 0 False 147 232 26 {X=0,Y=0,Width=0,Height=0} +3 200 232 0.0339985071960352 0.0341600840647813 0.0339665827420462 0.0341344319829099 0.00251711969529618 0.00233927704110451 3215137 1291719 1443 577 0 False 200 232 26 {X=0,Y=0,Width=0,Height=0} +4 253 233 0.0340681403624869 0.0337852992150066 0.034027618829633 0.0338597695887694 0.00217812163324203 0.00201443016222366 3221722 1277547 1443 577 0 False 253 233 26 {X=0,Y=0,Width=0,Height=0} +5 306 233 0.0340832407666924 0.0342432020991337 0.0340581368734264 0.0342870222018769 0.00176434911839542 0.00171110620970774 3223150 1294862 1443 577 0 False 306 233 26 {X=0,Y=0,Width=0,Height=0} +6 359 233 0.0339432342178966 0.0342454764074233 0.0339360646982528 0.0342107270923934 0.00163692560894511 0.00156071087877943 3209910 1294948 1443 577 0 False 359 233 26 {X=0,Y=0,Width=0,Height=0} +7 412 233 0.0340241821129896 0.0338725956297051 0.0340428778515297 0.0339208056763561 0.00152099013116598 0.00145474763573255 3217565 1280848 1443 577 0 False 412 233 26 {X=0,Y=0,Width=0,Height=0} +8 465 234 0.0340445274755185 0.0340490131948227 0.0339665827420462 0.0339513237201495 0.00215853536329687 0.00207440843864155 3219489 1287519 1443 577 0 False 465 234 26 {X=0,Y=0,Width=0,Height=0} +9 518 234 0.0339272244055947 0.0339803343735649 0.0338902876325628 0.0337529564354925 0.00260208533972762 0.00271591567459443 3208396 1284922 1443 577 0 False 518 234 26 {X=0,Y=0,Width=0,Height=0} +10 572 232 0.0340940584932345 0.0366508236903315 0.0339818417639429 0.0366979476615549 0.00252895985914641 0.00259564550992484 3224173 2068046 1443 861 0 True 571 234 32 {X=0,Y=0,Width=0,Height=0} +11 94 284 0.0337731537548429 0.03379553360231 0.0337682154573892 0.0338139925230793 0.00175416125103767 0.0017056745541466 3193826 1277934 1443 577 0 False 94 284 26 {X=0,Y=0,Width=0,Height=0} +12 147 285 0.0339704530137123 0.0340503883579745 0.0339971007858396 0.0340733958953231 0.00185912646204649 0.00184348937209179 3212484 1287571 1443 577 0 False 147 285 26 {X=0,Y=0,Width=0,Height=0} +13 200 285 0.0338887120301632 0.0339880035526811 0.0338750286106661 0.0340733958953231 0.00192555494006759 0.00184613290572559 3204754 1285212 1443 577 0 False 200 285 26 {X=0,Y=0,Width=0,Height=0} +14 253 285 0.0340988064494588 0.0338940428857852 0.034027618829633 0.0338902876325628 0.00201391102006758 0.00200156499421486 3224622 1281659 1443 577 0 False 253 285 26 {X=0,Y=0,Width=0,Height=0} +15 306 285 0.0341029305094309 0.0342691715263478 0.0341191729610132 0.0343022812237736 0.00161683574776495 0.00162496131080857 3225012 1295844 1443 577 0 False 306 285 26 {X=0,Y=0,Width=0,Height=0} +16 359 285 0.0341398990060011 0.0341717729515722 0.0341039139391165 0.0341344319829099 0.00162491121996328 0.00160796382084329 3228508 1292161 1443 577 0 False 359 285 26 {X=0,Y=0,Width=0,Height=0} +17 412 286 0.034086582312721 0.0341851807923029 0.0340886549172198 0.0342412451361868 0.00158677931493175 0.00156565841211434 3223466 1292668 1443 577 0 False 412 286 26 {X=0,Y=0,Width=0,Height=0} +18 465 286 0.034256060028548 0.0341865030645643 0.0341802090486 0.0341802090486 0.00190456249128297 0.00180133355962391 3239493 1292718 1443 577 0 False 465 286 26 {X=0,Y=0,Width=0,Height=0} +19 518 286 0.0342848650012761 0.033951720401828 0.0342412451361868 0.0338902876325628 0.00214836099178769 0.00203004610088586 3242217 1283840 1443 577 0 False 518 286 26 {X=0,Y=0,Width=0,Height=0} +20 571 286 0.0340565612710268 0.0341269214764651 0.0341802090486 0.0341344319829099 0.00229733755112251 0.00211565448171145 3220627 1290465 1443 577 0 False 571 286 26 {X=0,Y=0,Width=0,Height=0} +21 93 337 0.0338626141326988 0.0337519250631286 0.0339055466544594 0.0337376974135958 0.00206299880424627 0.00214921760165708 3202286 1276285 1443 577 0 False 93 337 26 {X=0,Y=0,Width=0,Height=0} +22 147 337 0.0339412567840126 0.0340769395849837 0.0338597695887694 0.0339360646982528 0.00202031383707839 0.00199562869526171 3209723 1288575 1443 577 0 False 147 337 26 {X=0,Y=0,Width=0,Height=0} +23 200 337 0.0340834734059728 0.0338108719605423 0.0340886549172198 0.0337529564354925 0.00213217934949608 0.00245757235000966 3223172 1278514 1443 577 0 False 200 337 26 {X=0,Y=0,Width=0,Height=0} +24 253 337 0.0339982111096783 0.0340935208791418 0.0339360646982528 0.0338902876325628 0.00229770997561415 0.00240330225147615 3215109 1289202 1443 577 0 False 253 337 26 {X=0,Y=0,Width=0,Height=0} +25 306 338 0.0343504058312939 0.034101428067265 0.0343175402456703 0.0341191729610132 0.0018894126830791 0.00165967055805823 3248415 1289501 1443 577 0 False 306 338 26 {X=0,Y=0,Width=0,Height=0} +26 359 338 0.0342811321982757 0.0343735252532184 0.0342259861142901 0.0343938353551537 0.00191375260913259 0.00195572944741646 3241864 1299790 1443 577 0 False 359 338 26 {X=0,Y=0,Width=0,Height=0} +27 412 338 0.0341986087007831 0.0342727945523441 0.0341802090486 0.0342870222018769 0.00162131748844622 0.00164575541597271 3234060 1295981 1443 577 0 False 412 338 26 {X=0,Y=0,Width=0,Height=0} +28 465 338 0.0342432860171473 0.0340897391804742 0.0342259861142901 0.0341039139391165 0.00167519507393323 0.00160206520332478 3238285 1289059 1443 577 0 False 465 338 26 {X=0,Y=0,Width=0,Height=0} +29 518 339 0.0342291584681148 0.0340959274146576 0.0342717631799802 0.0341802090486 0.00197936245084677 0.00199233454492185 3236949 1289293 1443 577 0 False 518 339 26 {X=0,Y=0,Width=0,Height=0} +30 571 339 0.0341158631385228 0.0341865295100095 0.0341496910048066 0.0341496910048066 0.0020382145940358 0.00206193935355946 3226235 1292719 1443 577 0 False 571 339 26 {X=0,Y=0,Width=0,Height=0} +31 93 389 0.0338701220367506 0.0338144949865386 0.0338902876325628 0.0338750286106661 0.00201406811010882 0.00213016230348419 3202996 1278651 1443 577 0 False 93 389 26 {X=0,Y=0,Width=0,Height=0} +32 146 389 0.0339371750220915 0.0339563748001881 0.0339208056763561 0.0339360646982528 0.00200956914651554 0.00194737015619971 3209337 1284016 1443 577 0 False 146 389 26 {X=0,Y=0,Width=0,Height=0} +33 199 390 0.0340130260020395 0.0341896500725465 0.0339360646982528 0.0342717631799802 0.00244628303163295 0.00227304106999487 3216510 1292837 1443 577 0 False 199 390 26 {X=0,Y=0,Width=0,Height=0} +34 252 390 0.034057438955585 0.0339813393004836 0.0339818417639429 0.0339360646982528 0.00258167349060241 0.00290520137728043 3220710 1284960 1443 577 0 False 252 390 26 {X=0,Y=0,Width=0,Height=0} +35 305 390 0.0341556338809715 0.0343949460638533 0.0341496910048066 0.0344548714427405 0.00208797231314695 0.00209197644562873 3229996 1300600 1443 577 0 False 305 390 26 {X=0,Y=0,Width=0,Height=0} +36 358 390 0.0342704519403993 0.0343743450620205 0.0342259861142901 0.0343480582894636 0.00197591417513607 0.0020018749001566 3240854 1299821 1443 577 0 False 358 390 26 {X=0,Y=0,Width=0,Height=0} +37 412 391 0.0341981645712477 0.0340535089205115 0.0341344319829099 0.0340123598077363 0.00180115692514019 0.00182798213069919 3234018 1287689 1443 577 0 False 412 391 26 {X=0,Y=0,Width=0,Height=0} +38 465 391 0.0341064095241252 0.0340927539612302 0.0341649500267033 0.0340886549172198 0.00182015312371447 0.0016489162590086 3225341 1289173 1443 577 0 False 465 391 26 {X=0,Y=0,Width=0,Height=0} +39 518 391 0.0341974878024317 0.0341239066957091 0.0341649500267033 0.0341802090486 0.00182932790337141 0.00181700531810611 3233954 1290351 1443 577 0 False 518 391 26 {X=0,Y=0,Width=0,Height=0} +40 571 391 0.0341000013693994 0.0339460346311039 0.0340886549172198 0.0339513237201495 0.00194642538428706 0.00197692394895363 3224735 1283625 1443 577 0 False 571 391 26 {X=0,Y=0,Width=0,Height=0} +41 93 442 0.0337963225122758 0.0337591446696759 0.0337682154573892 0.0337529564354925 0.00229803539690512 0.00251103547434705 3196017 1276558 1443 577 0 False 93 442 26 {X=0,Y=0,Width=0,Height=0} +42 146 442 0.0339857226101218 0.0341147830171053 0.0339360646982528 0.0341802090486 0.00231707265580466 0.00231041287839894 3213928 1290006 1443 577 0 False 146 442 26 {X=0,Y=0,Width=0,Height=0} +43 199 442 0.0340577773399929 0.0341067436017559 0.034027618829633 0.0340581368734264 0.00249143008093316 0.00245529674959607 3220742 1289702 1443 577 0 False 199 442 26 {X=0,Y=0,Width=0,Height=0} +44 252 442 0.0340461348014564 0.034032246782548 0.0341191729610132 0.0340733958953231 0.00239112098728001 0.00239459363464031 3219641 1286885 1443 577 0 False 252 442 26 {X=0,Y=0,Width=0,Height=0} +45 305 443 0.0342201278342272 0.0343130445199814 0.0342412451361868 0.0343022812237736 0.00186794528518155 0.00193310979564586 3236095 1297503 1443 577 0 False 305 443 26 {X=0,Y=0,Width=0,Height=0} +46 358 443 0.0341079005304228 0.0344743088449833 0.0341039139391165 0.0344243533989471 0.00187091399797578 0.00182983670422259 3225482 1303601 1443 577 0 False 358 443 26 {X=0,Y=0,Width=0,Height=0} +47 411 443 0.0342453163235951 0.0339574326179973 0.0342870222018769 0.0338597695887694 0.0021555344590451 0.00181509159934655 3238477 1284056 1443 577 0 False 411 443 26 {X=0,Y=0,Width=0,Height=0} +48 464 443 0.0339988984530069 0.0343301282775989 0.0340123598077363 0.0343633173113603 0.0022977030448374 0.00229458840342569 3215174 1298149 1443 577 0 False 464 443 26 {X=0,Y=0,Width=0,Height=0} +49 517 444 0.0341917035439581 0.0343094743848756 0.0341344319829099 0.0341954680704967 0.00219116722613322 0.00221346595924852 3233407 1297368 1443 577 0 False 517 444 26 {X=0,Y=0,Width=0,Height=0} +50 570 444 0.0340257788644147 0.0342043537400934 0.0340581368734264 0.0341649500267033 0.00219072544869941 0.00215628013295193 3217716 1293393 1443 577 0 False 570 444 26 {X=0,Y=0,Width=0,Height=0} +51 93 494 0.03378726015485 0.0337587215425522 0.0338597695887694 0.0337834744792859 0.0019138882316873 0.00191685031309937 3195160 1276542 1443 577 0 False 93 494 26 {X=0,Y=0,Width=0,Height=0} +52 146 494 0.033840830636436 0.0340443323510173 0.0337834744792859 0.0340733958953231 0.00221648436548896 0.00220905500574527 3200226 1287342 1443 577 0 False 146 494 26 {X=0,Y=0,Width=0,Height=0} +53 199 495 0.0341156093502168 0.0339838516177803 0.0340428778515297 0.0339513237201495 0.0023777172681898 0.00248305126724787 3226211 1285055 1443 577 0 False 199 495 26 {X=0,Y=0,Width=0,Height=0} +54 252 495 0.0340663849933706 0.0341999373507403 0.0340733958953231 0.0341191729610132 0.00200676769759075 0.00182470671446404 3221556 1293226 1443 577 0 False 252 495 26 {X=0,Y=0,Width=0,Height=0} +55 305 495 0.0341715908207096 0.0342296091402863 0.0341802090486 0.0342107270923934 0.00175643295424648 0.0017047117309283 3231505 1294348 1443 577 0 False 305 495 26 {X=0,Y=0,Width=0,Height=0} +56 358 495 0.0342959365161242 0.0343663585375616 0.0342870222018769 0.0344548714427405 0.00161456962253534 0.00149772059444295 3243264 1299519 1443 577 0 False 358 495 26 {X=0,Y=0,Width=0,Height=0} +57 411 495 0.0341515944171014 0.034226435686859 0.0341344319829099 0.0340581368734264 0.00177986851535395 0.00167194213301687 3229614 1294228 1443 577 0 False 411 495 26 {X=0,Y=0,Width=0,Height=0} +58 462 501 0.0341894828962808 0.038562919090758 0.0341802090486 0.0385442893110552 0.00250812594274691 0.00272816191051209 3233197 1063960 1443 421 0 True 464 496 22 {X=0,Y=0,Width=0,Height=0} +59 517 496 0.0341055318395671 0.0342480680610557 0.0340886549172198 0.0342412451361868 0.00246763483388806 0.00237845767604006 3225258 1295046 1443 577 0 False 517 496 26 {X=0,Y=0,Width=0,Height=0} +60 570 496 0.0340577561909675 0.0342136889822589 0.0341039139391165 0.0341802090486 0.00207646503578029 0.00212520008234693 3220740 1293746 1443 577 0 False 570 496 26 {X=0,Y=0,Width=0,Height=0} +61 93 547 0.0336798125308082 0.0336268116617538 0.0336614023041123 0.0336614023041123 0.00175575640283877 0.00164939432622872 3184999 1271554 1443 577 0 False 93 547 26 {X=0,Y=0,Width=0,Height=0} +62 146 547 0.0338491527779694 0.0338709824575461 0.0338139925230793 0.0338597695887694 0.00197784062206523 0.00184156232643647 3201013 1280787 1443 577 0 False 146 547 26 {X=0,Y=0,Width=0,Height=0} +63 199 547 0.0340621340392455 0.0339833755997662 0.0340123598077363 0.0338750286106661 0.00218467927875866 0.00224992943729525 3221154 1285037 1443 577 0 False 199 547 26 {X=0,Y=0,Width=0,Height=0} +64 252 547 0.0340425394671217 0.034230376058198 0.0340733958953231 0.0341496910048066 0.00198535507878473 0.00221761689923581 3219301 1294377 1443 577 0 False 252 547 26 {X=0,Y=0,Width=0,Height=0} +65 305 547 0.0339837134526995 0.0340326170187812 0.0339971007858396 0.0339818417639429 0.0016284745102094 0.00159496895460548 3213738 1286899 1443 577 0 False 305 547 26 {X=0,Y=0,Width=0,Height=0} +66 358 548 0.0342932188663477 0.0341337972922244 0.0342565041580835 0.0340733958953231 0.00162316267837622 0.00156100578209932 3243007 1290725 1443 577 0 False 358 548 26 {X=0,Y=0,Width=0,Height=0} +67 411 548 0.0342427149934589 0.0340615218904156 0.0342717631799802 0.0340123598077363 0.00169165717348432 0.00172718286966775 3238231 1287992 1443 577 0 False 411 548 26 {X=0,Y=0,Width=0,Height=0} +68 464 548 0.0342894649143219 0.0342331792753922 0.0342870222018769 0.0341649500267033 0.0024200340585016 0.00237971819002718 3242652 1294483 1443 577 0 False 464 548 26 {X=0,Y=0,Width=0,Height=0} +69 517 548 0.0340806182875306 0.0338929586225308 0.0340886549172198 0.0337529564354925 0.00266949388054947 0.00289486154434755 3222902 1281618 1443 577 0 False 517 548 26 {X=0,Y=0,Width=0,Height=0} +70 570 549 0.034093952748107 0.0339439983318213 0.0341496910048066 0.0339055466544594 0.00221162895630283 0.00210277970455084 3224163 1283548 1443 577 0 False 570 549 26 {X=0,Y=0,Width=0,Height=0} +71 92 599 0.0336782580774341 0.0339253542929354 0.0336003662165255 0.0339513237201495 0.00199438887580766 0.00196633088466987 3184852 1282843 1443 577 0 False 92 599 26 {X=0,Y=0,Width=0,Height=0} +72 145 599 0.0338697307797788 0.034042798515194 0.033829251544976 0.0340886549172198 0.0020732621841632 0.00195966739424869 3202959 1287284 1443 577 0 False 145 599 26 {X=0,Y=0,Width=0,Height=0} +73 198 599 0.0338536998184515 0.0337529299900473 0.033829251544976 0.0337224383916991 0.00218684877513327 0.00202615866271394 3201443 1276323 1443 577 0 False 198 599 26 {X=0,Y=0,Width=0,Height=0} +74 251 600 0.0339592546047112 0.0338913190049267 0.0339513237201495 0.0337529564354925 0.00205032135569271 0.00204535263772008 3211425 1281556 1443 577 0 False 251 600 26 {X=0,Y=0,Width=0,Height=0} +75 304 600 0.0340877243600979 0.0342559752491789 0.0340733958953231 0.0342565041580835 0.00163074361829097 0.00160182857028908 3223574 1295345 1443 577 0 False 304 600 26 {X=0,Y=0,Width=0,Height=0} +76 358 600 0.0340571111456898 0.0341158937258049 0.0340733958953231 0.0341191729610132 0.00197282057369335 0.00188860004955261 3220679 1290048 1443 577 0 False 358 600 26 {X=0,Y=0,Width=0,Height=0} +77 411 600 0.034256313816854 0.033986945734872 0.0342717631799802 0.0340733958953231 0.00200321636275016 0.00195708630457138 3239517 1285172 1443 577 0 False 411 600 26 {X=0,Y=0,Width=0,Height=0} +78 464 601 0.0341595464506886 0.0341445076975419 0.0341039139391165 0.0341344319829099 0.00224823507418133 0.00225326071782181 3230366 1291130 1443 577 0 False 464 601 26 {X=0,Y=0,Width=0,Height=0} +79 517 601 0.0341663775859244 0.034172910105717 0.0341191729610132 0.0341191729610132 0.00224146102320207 0.00219468923552035 3231012 1292204 1443 577 0 False 517 601 26 {X=0,Y=0,Width=0,Height=0} +80 570 601 0.0341520596956624 0.0340396779526571 0.0341649500267033 0.0341039139391165 0.00184127940346785 0.00196064038920738 3229658 1287166 1443 577 0 False 570 601 26 {X=0,Y=0,Width=0,Height=0} +81 94 653 0.033641913477116 0.0371248539417222 0.0336308842603189 0.0368963149462119 0.00210923337364213 0.00257458526262876 3181415 1822300 1443 749 0 True 92 651 31 {X=0,Y=0,Width=0,Height=0} +82 145 652 0.0335939051892359 0.0338286432997357 0.0335698481727321 0.0338902876325628 0.00188818868763369 0.00194403483982847 3176875 1279186 1443 577 0 False 145 652 26 {X=0,Y=0,Width=0,Height=0} +83 198 652 0.033758032201612 0.0337516341632311 0.0337224383916991 0.0337376974135958 0.00222229648445952 0.00228725680392903 3192396 1276274 1443 577 0 False 198 652 26 {X=0,Y=0,Width=0,Height=0} +84 251 652 0.0340110591426682 0.0338181973488706 0.0340123598077363 0.0338445105668727 0.00210623478371314 0.002132937529969 3216324 1278791 1443 577 0 False 251 652 26 {X=0,Y=0,Width=0,Height=0} +85 304 652 0.0339535443678268 0.0340059600099911 0.0339360646982528 0.0339818417639429 0.001716241877929 0.00165381439868515 3210885 1285891 1443 577 0 False 304 652 26 {X=0,Y=0,Width=0,Height=0} +86 357 653 0.0339357263138449 0.0341643946723535 0.0338902876325628 0.034027618829633 0.00201126183525704 0.00206200708906592 3209200 1291882 1443 577 0 False 357 653 26 {X=0,Y=0,Width=0,Height=0} +87 410 653 0.0342262081790578 0.0339465370945632 0.0341496910048066 0.0338750286106661 0.00197295863893395 0.00189372951918992 3236670 1283644 1443 577 0 False 410 653 26 {X=0,Y=0,Width=0,Height=0} +88 463 653 0.0341348126653689 0.0340917490343115 0.0341649500267033 0.0341191729610132 0.00207659627944951 0.00201073933434273 3228027 1289135 1443 577 0 False 463 653 26 {X=0,Y=0,Width=0,Height=0} +89 516 653 0.0342284288267351 0.0340294171199085 0.0342412451361868 0.0340428778515297 0.00172492744941303 0.00171492141108013 3236880 1286778 1443 577 0 False 516 653 26 {X=0,Y=0,Width=0,Height=0} +90 569 654 0.0341142875361232 0.0340309245102866 0.0340886549172198 0.0339971007858396 0.00156394788187644 0.00164397256105095 3226086 1286835 1443 577 0 False 569 654 26 {X=0,Y=0,Width=0,Height=0} +91 93 707 0.0334438740023542 0.0373257677921163 0.0333562218661784 0.0373235675593194 0.00236472324809578 0.00285590042217623 3162687 1832162 1443 749 0 True 92 704 31 {X=0,Y=0,Width=0,Height=0} +92 145 704 0.0336700945535919 0.033481308822108 0.0335698481727321 0.0334477759975586 0.00222100257337134 0.00218634302657093 3184080 1266052 1443 577 0 False 145 704 26 {X=0,Y=0,Width=0,Height=0} +93 198 704 0.0337091991017374 0.0335910045289147 0.0336919203479057 0.0335088120851453 0.00246644926943278 0.00275195713040622 3187778 1270200 1443 577 0 False 198 704 26 {X=0,Y=0,Width=0,Height=0} +94 251 705 0.0338507918274455 0.0337398130492141 0.0338750286106661 0.033676661326009 0.00239839998890393 0.00260757445473634 3201168 1275827 1443 577 0 False 251 705 26 {X=0,Y=0,Width=0,Height=0} +95 304 705 0.0339619511054622 0.0340058542282102 0.0339360646982528 0.0340886549172198 0.00200463413558605 0.00217679152893355 3211680 1285887 1443 577 0 False 304 705 26 {X=0,Y=0,Width=0,Height=0} +96 357 705 0.0340155215870483 0.0341945689253589 0.0340428778515297 0.0340581368734264 0.00232843749960561 0.00236853380295069 3216746 1293023 1443 577 0 False 357 705 26 {X=0,Y=0,Width=0,Height=0} +97 410 705 0.0340470865076038 0.0339400579604823 0.034027618829633 0.0339360646982528 0.00230651599185247 0.00218578481862873 3219731 1283399 1443 577 0 False 410 705 26 {X=0,Y=0,Width=0,Height=0} +98 463 706 0.0341389155763154 0.0343216392896806 0.0341496910048066 0.0343633173113603 0.00211767656385187 0.00219697217514484 3228415 1297828 1443 577 0 False 463 706 26 {X=0,Y=0,Width=0,Height=0} +99 516 706 0.034165721966134 0.034149743895697 0.0341649500267033 0.0341039139391165 0.00175733974287382 0.00180063226417202 3230950 1291328 1443 577 0 False 516 706 26 {X=0,Y=0,Width=0,Height=0} +100 571 710 0.0339796211162657 0.0376151187774284 0.0339971007858396 0.0375829709315633 0.00154278100591291 0.00205960396911938 3213351 1846365 1443 749 0 True 569 706 31 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D04_1.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D04_1.csv new file mode 100644 index 0000000..ec20d2f --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D04_1.csv @@ -0,0 +1,101 @@ + ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour +1 237 197 0.241042563567364 0.932282445735879 0.240421149004349 1 0.00840781657704896 0.167781256208258 20519945 52604629 1299 861 75 True 234 200 32 {X=0,Y=0,Width=0,Height=0} +2 287 200 0.236752734480744 0.23531046093221 0.236133363851377 0.234882124055848 0.00601446571663094 0.00456987828626851 20154752 8897958 1299 577 0 False 287 200 27 {X=0,Y=0,Width=0,Height=0} +3 340 200 0.235842772870869 0.234346021990181 0.235523002975509 0.234073395895323 0.00532429580624478 0.00407267662774945 20077287 8861489 1299 577 0 False 340 200 27 {X=0,Y=0,Width=0,Height=0} +4 393 200 0.235045145384472 0.235123280070884 0.235004196231022 0.234912642099641 0.00464370904431351 0.00482869212542449 20009385 8890880 1299 577 0 False 393 200 27 {X=0,Y=0,Width=0,Height=0} +5 446 200 0.235239965152106 0.235327121562704 0.235111009384298 0.235614557106889 0.00564027247537111 0.00519473288665607 20025970 8898588 1299 577 0 False 446 200 27 {X=0,Y=0,Width=0,Height=0} +6 500 200 0.235541139949958 0.235281450278794 0.235538261997406 0.235095750362402 0.00584139349291113 0.00593608495630782 20051609 8896861 1299 577 0 False 500 200 27 {X=0,Y=0,Width=0,Height=0} +7 553 200 0.236327361346854 0.235484101725579 0.236102845807584 0.235614557106889 0.00750254692190147 0.00570706272821348 20118540 8904524 1299 577 0 False 553 200 27 {X=0,Y=0,Width=0,Height=0} +8 606 200 0.23590535952881 0.236361164916573 0.235782406347753 0.23611810482948 0.00504231500308516 0.00510401545133959 20082615 8937689 1299 577 0 False 606 200 27 {X=0,Y=0,Width=0,Height=0} +9 659 200 0.236404020605435 0.236316710123145 0.236240177004654 0.236133363851377 0.00421337925999169 0.00394070660027772 20125066 8936008 1299 577 0 False 659 200 27 {X=0,Y=0,Width=0,Height=0} +10 711 200 0.23936591539771 0.938238072110309 0.239139391165026 1 0.00484772037975157 0.136892340312803 20377212 52940679 1299 861 74 True 712 200 32 {X=0,Y=0,Width=0,Height=0} +11 234 252 0.23857283390167 0.23499644771557 0.236209658960861 0.234790569924468 0.0202500877106094 0.00513652043475575 20309697 8886084 1299 577 0 False 234 252 27 {X=0,Y=0,Width=0,Height=0} +12 287 252 0.234786470310425 0.235238370648518 0.234821087968261 0.235156786449989 0.00410942808388048 0.00380875518538899 19987364 8895232 1299 577 0 False 287 252 27 {X=0,Y=0,Width=0,Height=0} +13 340 252 0.234978130203625 0.235303399998334 0.235080491340505 0.235431448844129 0.00366862111703207 0.00335837312523835 20003680 8897691 1299 577 0 False 340 252 27 {X=0,Y=0,Width=0,Height=0} +14 393 252 0.238446991021317 0.235516523841428 0.23584344243534 0.235523002975509 0.0154606130769048 0.00355081238934945 20298984 8905750 1299 577 0 False 393 252 27 {X=0,Y=0,Width=0,Height=0} +15 446 252 0.235365197201714 0.235360998178041 0.235233081559472 0.235248340581369 0.0046423256962418 0.00445078990499741 20036631 8899869 1299 577 0 False 446 252 27 {X=0,Y=0,Width=0,Height=0} +16 499 253 0.235575041056342 0.235895883753228 0.235446707866026 0.235523002975509 0.00565203229138767 0.00615367764106944 20054495 8920095 1299 577 0 False 499 253 27 {X=0,Y=0,Width=0,Height=0} +17 553 253 0.236712866027843 0.236632072057491 0.236606393530175 0.236667429617761 0.00508091848149667 0.00484923129270066 20151358 8947933 1299 577 0 False 553 253 27 {X=0,Y=0,Width=0,Height=0} +18 606 253 0.236213652854198 0.236852944416038 0.236301213092241 0.236850537880522 0.00438961185962633 0.00448445729931074 20108860 8956285 1299 577 0 False 606 253 27 {X=0,Y=0,Width=0,Height=0} +19 659 253 0.236060933421035 0.236569555024972 0.236057068741894 0.236652170595865 0.0035473050118961 0.00330676284763071 20095859 8945569 1299 577 0 False 659 253 27 {X=0,Y=0,Width=0,Height=0} +20 712 253 0.236204419912542 0.236116465211876 0.236270695048447 0.236057068741894 0.00381183371198963 0.00404319032367879 20108074 8928436 1299 577 0 False 712 253 27 {X=0,Y=0,Width=0,Height=0} +21 233 305 0.238471036608555 0.234959556319476 0.235248340581369 0.234988937209125 0.0179819043557574 0.00473666303240474 20301031 8884689 1299 577 0 False 233 305 27 {X=0,Y=0,Width=0,Height=0} +22 287 305 0.235047459493258 0.246418314845984 0.235065232318608 0.239734493018997 0.00401844041621949 0.0170130117239348 20009582 9317987 1299 577 0 False 287 305 27 {X=0,Y=0,Width=0,Height=0} +23 340 305 0.235528747133868 0.235990611338035 0.235385671778439 0.235904478522927 0.00382121599747337 0.00349608159087749 20050554 8923677 1299 577 0 False 340 305 27 {X=0,Y=0,Width=0,Height=0} +24 393 305 0.235733528141354 0.235314031067316 0.235507743953613 0.235172045471885 0.00445806700258483 0.00366692797537648 20067987 8898093 1299 577 0 False 393 305 27 {X=0,Y=0,Width=0,Height=0} +25 446 305 0.235780691322967 0.23642563891204 0.235629816128786 0.236667429617761 0.00426768367734362 0.00441459091392588 20072002 8940127 1299 577 0 False 446 305 27 {X=0,Y=0,Width=0,Height=0} +26 499 305 0.237027925478414 0.237274907940099 0.236881055924315 0.237216754406043 0.00498914608222238 0.00522454415866166 20178179 8972241 1299 577 0 False 499 305 27 {X=0,Y=0,Width=0,Height=0} +27 553 305 0.237639613736479 0.237569986217956 0.237537193865873 0.237445639734493 0.00437407233351681 0.00467367617657378 20230252 8983399 1299 577 0 False 553 305 27 {X=0,Y=0,Width=0,Height=0} +28 606 305 0.238464940047843 0.237667569910848 0.237857633325704 0.237491416800183 0.00553215221982015 0.00455333192617715 20300512 8987089 1299 577 0 False 606 305 27 {X=0,Y=0,Width=0,Height=0} +29 659 305 0.237051113553259 0.23691633414825 0.236743724727245 0.236957351033799 0.00416880930587402 0.00344448384958338 20180153 8958682 1299 577 0 False 659 305 27 {X=0,Y=0,Width=0,Height=0} +30 712 305 0.236609001307589 0.237106582681222 0.236652170595865 0.236865796902419 0.00343211823973701 0.00374099589543023 20142516 8965876 1299 577 0 False 712 305 27 {X=0,Y=0,Width=0,Height=0} +31 233 357 0.235135607068557 0.23536665750332 0.235126268406195 0.235416189822232 0.00518218566727912 0.00528058373032895 20017086 8900083 1299 577 0 False 233 357 27 {X=0,Y=0,Width=0,Height=0} +32 287 357 0.235385413350047 0.235920716026297 0.235416189822232 0.236011291676204 0.00420016004093219 0.00390288376047177 20038352 8921034 1299 577 0 False 287 357 27 {X=0,Y=0,Width=0,Height=0} +33 340 357 0.235718468814124 0.236233354079785 0.235675593194476 0.236133363851377 0.00401384168085584 0.0039591792058086 20066705 8932856 1299 577 0 False 340 357 27 {X=0,Y=0,Width=0,Height=0} +34 393 358 0.236237815908887 0.236367617605209 0.236224917982757 0.236362249179828 0.00409488070542618 0.00381145109051692 20110917 8937933 1299 577 0 False 393 358 27 {X=0,Y=0,Width=0,Height=0} +35 446 358 0.236844347345849 0.236713153792561 0.236789501792935 0.236697947661555 0.00418580109293174 0.00406558313055771 20162551 8950999 1299 577 0 False 446 358 27 {X=0,Y=0,Width=0,Height=0} +36 499 358 0.237981138603781 0.238065996988657 0.237979705500877 0.23773556115053 0.0045475988256741 0.00436557298973921 20259326 9002155 1299 577 0 False 499 358 27 {X=0,Y=0,Width=0,Height=0} +37 552 358 0.238019844128915 0.238248920133301 0.238101777676051 0.238406958113985 0.0041126301950209 0.00411379572166496 20262621 9009072 1299 577 0 False 552 358 27 {X=0,Y=0,Width=0,Height=0} +38 606 358 0.237936500972366 0.237575989334023 0.237842374303807 0.23750667582208 0.00421860966238913 0.00411162970318093 20255526 8983626 1299 577 0 False 606 358 27 {X=0,Y=0,Width=0,Height=0} +39 659 358 0.237808473197422 0.237655669460496 0.237628747997253 0.237521934843976 0.00382597553774253 0.003784282960235 20244627 8986639 1299 577 0 False 659 358 27 {X=0,Y=0,Width=0,Height=0} +40 712 358 0.236912055584658 0.236627285431905 0.236972610055695 0.236591134508278 0.00359378598043049 0.00346708492951904 20168315 8947752 1299 577 0 False 712 358 27 {X=0,Y=0,Width=0,Height=0} +41 233 410 0.235291533363135 0.234864564280216 0.235339894712749 0.234897383077745 0.00545829102650996 0.00576389910494373 20030360 8881097 1299 577 0 False 233 410 27 {X=0,Y=0,Width=0,Height=0} +42 286 410 0.235884802724869 0.235387443623269 0.235812924391546 0.235523002975509 0.00485818409157171 0.00435649442425506 20080865 8900869 1299 577 0 False 286 410 27 {X=0,Y=0,Width=0,Height=0} +43 340 410 0.235876333321645 0.235759795492083 0.23584344243534 0.23575188830396 0.00441555929986231 0.00438919000952446 20080144 8914949 1299 577 0 False 340 410 27 {X=0,Y=0,Width=0,Height=0} +44 393 410 0.236957351033799 0.236690780945898 0.236743724727245 0.236697947661555 0.0058359467880279 0.00430097651263394 20172171 8950153 1299 577 0 False 393 410 27 {X=0,Y=0,Width=0,Height=0} +45 446 410 0.237474736422128 0.237658737132142 0.23746089875639 0.237705043106737 0.00441748681838003 0.00418342362817218 20216216 8986755 1299 577 0 False 446 410 27 {X=0,Y=0,Width=0,Height=0} +46 499 410 0.238082771442464 0.238354014332638 0.238071259632258 0.238284885938811 0.00454572027343072 0.0046075732259233 20267978 9013046 1299 577 0 False 499 410 27 {X=0,Y=0,Width=0,Height=0} +47 552 410 0.238256905191961 0.238750775347397 0.238223849851225 0.238910505836576 0.0041440155047381 0.0038067131696772 20282802 9028049 1299 577 0 False 552 410 27 {X=0,Y=0,Width=0,Height=0} +48 606 410 0.2382837112643 0.238814905552076 0.238284885938811 0.238712138551919 0.00418649014942516 0.00418513848010835 20285084 9030474 1299 577 0 False 606 410 27 {X=0,Y=0,Width=0,Height=0} +49 659 411 0.238119315566499 0.237904415318313 0.237994964522774 0.237888151369497 0.0040184522428971 0.00376583418414393 20271089 8996045 1299 577 0 False 659 411 27 {X=0,Y=0,Width=0,Height=0} +50 712 411 0.236646731852879 0.236818591782686 0.236865796902419 0.236957351033799 0.00420645644868825 0.00388080228268187 20145728 8954986 1299 577 0 False 712 411 27 {X=0,Y=0,Width=0,Height=0} +51 233 462 0.235353051067271 0.235187172266556 0.235385671778439 0.234836346990158 0.00605073245967115 0.00634141062889641 20035597 8893296 1299 577 0 False 233 462 27 {X=0,Y=0,Width=0,Height=0} +52 286 463 0.235518409998172 0.235590491751732 0.235568780041199 0.235507743953613 0.00491280515141191 0.00529177367357001 20049674 8908547 1299 577 0 False 286 463 27 {X=0,Y=0,Width=0,Height=0} +53 340 463 0.236281901443281 0.236297775184361 0.236530098420691 0.236438544289311 0.0044355597512722 0.00421636385497421 20114670 8935292 1299 577 0 False 340 463 27 {X=0,Y=0,Width=0,Height=0} +54 393 463 0.237427526253535 0.237320367660447 0.237277790493629 0.237430380712596 0.00466815444712092 0.00485497021603796 20212197 8973960 1299 577 0 False 393 463 27 {X=0,Y=0,Width=0,Height=0} +55 446 463 0.238184498255109 0.238220702843242 0.238193331807431 0.238315403982605 0.00557611860190989 0.00568911241928228 20276638 9008005 1299 577 0 False 446 463 27 {X=0,Y=0,Width=0,Height=0} +56 499 463 0.238529300464296 0.238607361697925 0.238574807354849 0.238544289311055 0.00549321395733542 0.00589156563381686 20305991 9022626 1299 577 0 False 499 463 27 {X=0,Y=0,Width=0,Height=0} +57 552 463 0.238600591460363 0.238717877213533 0.238574807354849 0.238696879530022 0.00518199877415866 0.00504602190032012 20312060 9026805 1299 577 0 False 552 463 27 {X=0,Y=0,Width=0,Height=0} +58 605 463 0.238992709558849 0.239272253081853 0.238986800946059 0.239154650186923 0.00497501525848958 0.00535159938434205 20345441 9047768 1299 577 0 False 605 463 27 {X=0,Y=0,Width=0,Height=0} +59 659 463 0.237938427438564 0.237866201649958 0.237705043106737 0.23773556115053 0.0046127674319396 0.00485854229576513 20255690 8994600 1299 577 0 False 659 463 27 {X=0,Y=0,Width=0,Height=0} +60 712 463 0.236771893422017 0.23657693330419 0.236621652552071 0.236697947661555 0.00500311451736769 0.00488758630065302 20156383 8945848 1299 577 0 False 712 463 27 {X=0,Y=0,Width=0,Height=0} +61 233 515 0.235293929699137 0.235851799196032 0.235172045471885 0.235828183413443 0.005317605500753 0.00547700822683561 20030564 8918428 1299 577 0 False 233 515 27 {X=0,Y=0,Width=0,Height=0} +62 286 515 0.235648716641667 0.235518057677252 0.235690852216373 0.235523002975509 0.0039842913664596 0.00396387658837017 20060767 8905808 1299 577 0 False 286 515 27 {X=0,Y=0,Width=0,Height=0} +63 340 515 0.23650625252812 0.236696995625527 0.236545357442588 0.236667429617761 0.00397116709379515 0.00367313842699566 20133769 8950388 1299 577 0 False 340 515 27 {X=0,Y=0,Width=0,Height=0} +64 393 515 0.237321335677749 0.237754548980204 0.237247272449836 0.237567711909667 0.0038582993440055 0.00378248024211069 20203157 8990378 1299 577 0 False 393 515 27 {X=0,Y=0,Width=0,Height=0} +65 446 515 0.23811136302006 0.238215625317759 0.238178072785534 0.238254367895018 0.00527701263494652 0.00562138168166442 20270412 9007813 1299 577 0 False 446 515 27 {X=0,Y=0,Width=0,Height=0} +66 499 515 0.238530017015748 0.238811811434984 0.238437476157778 0.238773174639506 0.00593145507857758 0.00554908259497304 20306052 9030357 1299 577 0 False 499 515 27 {X=0,Y=0,Width=0,Height=0} +67 552 516 0.238834563129446 0.238936395927454 0.238788433661402 0.239230945296407 0.00485594724838943 0.0044355249784182 20331978 9035068 1299 577 0 False 552 516 27 {X=0,Y=0,Width=0,Height=0} +68 605 516 0.238737863923708 0.238655836199028 0.238498512245365 0.238895246814679 0.00510173579132952 0.00500848097097953 20323746 9024459 1299 577 0 False 605 516 27 {X=0,Y=0,Width=0,Height=0} +69 659 516 0.23756325989327 0.237308070528416 0.237537193865873 0.237232013427939 0.00429102752153992 0.00421423932197096 20223752 8973495 1299 577 0 False 659 516 27 {X=0,Y=0,Width=0,Height=0} +70 712 516 0.236765867341776 0.236656507648882 0.236820019836728 0.236606393530175 0.00417453354817145 0.00371289695410393 20155870 8948857 1299 577 0 False 712 516 27 {X=0,Y=0,Width=0,Height=0} +71 233 568 0.239814288658523 0.235971438390245 0.236713206683452 0.235812924391546 0.0162501180410937 0.00537647649461447 20415382 8922952 1299 577 0 False 233 568 27 {X=0,Y=0,Width=0,Height=0} +72 286 568 0.23587956367655 0.23625937639789 0.235828183413443 0.236362249179828 0.00399233387240067 0.00378378455293837 20080419 8933840 1299 577 0 False 286 568 27 {X=0,Y=0,Width=0,Height=0} +73 339 568 0.236661215589599 0.23679706519027 0.236621652552071 0.236835278858625 0.00385293170533496 0.00374684104428496 20146961 8954172 1299 577 0 False 339 568 27 {X=0,Y=0,Width=0,Height=0} +74 393 568 0.237382101590198 0.238345604681055 0.237430380712596 0.238330663004501 0.00371146735354191 0.0038599469718917 20208330 9012728 1299 577 0 False 393 568 27 {X=0,Y=0,Width=0,Height=0} +75 446 568 0.237928407464986 0.238091463952412 0.23773556115053 0.238086518654154 0.00469435510100863 0.00488294239310757 20254837 9003118 1299 577 0 False 446 568 27 {X=0,Y=0,Width=0,Height=0} +76 499 568 0.23881675506386 0.238648695928816 0.238742656595712 0.238559548332952 0.00594540896477681 0.00640890960562895 20330462 9024189 1299 577 0 False 499 568 27 {X=0,Y=0,Width=0,Height=0} +77 552 568 0.238819891444804 0.238376413624746 0.238651102464332 0.238483253223468 0.00478431262635853 0.00505490515768728 20330729 9013893 1299 577 0 False 552 568 27 {X=0,Y=0,Width=0,Height=0} +78 605 568 0.238043126177721 0.238078347011579 0.238010223544671 0.23782711528191 0.00415895868024842 0.00431407894812104 20264603 9002622 1299 577 0 False 605 568 27 {X=0,Y=0,Width=0,Height=0} +79 658 568 0.236749504125839 0.236791961219341 0.236606393530175 0.236591134508278 0.00366766930618888 0.0035284502497834 20154477 8953979 1299 577 0 False 658 568 27 {X=0,Y=0,Width=0,Height=0} +80 712 568 0.236380844277335 0.236374757875421 0.236484321355001 0.236362249179828 0.00412155372838198 0.00370280716541046 20123093 8938203 1299 577 0 False 712 568 27 {X=0,Y=0,Width=0,Height=0} +81 235 620 0.247542530999514 0.973270960808048 0.243366140230411 1 0.0161717353605638 0.0880486691481976 21073287 47773701 1299 749 84 True 233 620 31 {X=0,Y=0,Width=0,Height=0} +82 286 620 0.238560899208639 0.23735836976524 0.237933928435187 0.237293049515526 0.00536261961208442 0.00355635152644817 20308681 8975397 1299 577 0 False 286 620 27 {X=0,Y=0,Width=0,Height=0} +83 339 620 0.236556798772324 0.236545383888033 0.236560616464485 0.236377508201724 0.0035105612587696 0.00339006406326907 20138072 8944655 1299 577 0 False 339 620 27 {X=0,Y=0,Width=0,Height=0} +84 393 620 0.237302341190907 0.237113564278762 0.237186236362249 0.236972610055695 0.00403136171182455 0.00403853717717366 20201540 8966140 1299 577 0 False 393 620 27 {X=0,Y=0,Width=0,Height=0} +85 446 621 0.237575711443086 0.23773667185923 0.237430380712596 0.237659266041047 0.00475947265198417 0.00489275214021348 20224812 8989702 1299 577 0 False 446 621 27 {X=0,Y=0,Width=0,Height=0} +86 499 621 0.238269861851817 0.238358959630896 0.238147554741741 0.238437476157778 0.00528020357998612 0.00506538705849642 20283905 9013233 1299 577 0 False 499 621 27 {X=0,Y=0,Width=0,Height=0} +87 552 621 0.237873785100229 0.237866836340643 0.237918669413291 0.237750820172427 0.00423164908230498 0.00442250651449608 20250187 8994624 1299 577 0 False 552 621 27 {X=0,Y=0,Width=0,Height=0} +88 605 621 0.237583605255799 0.236882854214591 0.237277790493629 0.236560616464485 0.0053635546350425 0.00369224604827968 20225484 8957416 1299 577 0 False 605 621 27 {X=0,Y=0,Width=0,Height=0} +89 658 621 0.236380585848943 0.236077987089069 0.236301213092241 0.236240177004654 0.00347700697187376 0.00353884676898546 20123071 8926981 1299 577 0 False 658 621 27 {X=0,Y=0,Width=0,Height=0} +90 712 621 0.236816730748098 0.236691018954905 0.236652170595865 0.236697947661555 0.00377335751088658 0.0036483041456469 20160200 8950162 1299 577 0 False 712 621 27 {X=0,Y=0,Width=0,Height=0} +91 235 673 0.244012951256353 0.965797666388276 0.243030441748684 1 0.0087964863468751 0.105833717094155 20772814 47406869 1299 749 82 True 233 673 31 {X=0,Y=0,Width=0,Height=0} +92 286 673 0.237952664493636 0.236683111766782 0.237186236362249 0.236591134508278 0.00536031043440889 0.00378740537538271 20256902 8949863 1299 577 0 False 286 673 27 {X=0,Y=0,Width=0,Height=0} +93 339 673 0.236010610364987 0.23595295302403 0.2360265506981 0.236133363851377 0.00387520199241812 0.00356634000143619 20091575 8922253 1299 577 0 False 339 673 27 {X=0,Y=0,Width=0,Height=0} +94 392 673 0.236580797372582 0.236533853673914 0.236621652552071 0.236453803311208 0.00409612287171926 0.00400061549094026 20140115 8944219 1299 577 0 False 392 673 27 {X=0,Y=0,Width=0,Height=0} +95 446 673 0.237179857879655 0.23905756895749 0.237140459296559 0.23764400701915 0.0044609794972789 0.00704992750858761 20191113 9039650 1299 577 0 False 446 673 27 {X=0,Y=0,Width=0,Height=0} +96 499 673 0.237385696094201 0.23741977608906 0.237430380712596 0.237354085603113 0.00464914456740386 0.00436948059087454 20208636 8977719 1299 577 0 False 499 673 27 {X=0,Y=0,Width=0,Height=0} +97 552 673 0.237242503271322 0.237008258515863 0.237155718318456 0.236850537880522 0.00401503001510725 0.00343076620574944 20196446 8962158 1299 577 0 False 552 673 27 {X=0,Y=0,Width=0,Height=0} +98 605 673 0.23633130825321 0.236479825629312 0.236438544289311 0.236346990157931 0.0036104290678541 0.00338504420498117 20118876 8942176 1299 577 0 False 605 673 27 {X=0,Y=0,Width=0,Height=0} +99 658 673 0.237038943925326 0.236560616464485 0.236942092011902 0.236331731136034 0.00393769063131558 0.00400909273203099 20179117 8945231 1299 577 0 False 658 673 27 {X=0,Y=0,Width=0,Height=0} +100 710 674 0.239683007035184 0.930738821104982 0.239673456931411 1 0.00428073580859341 0.157743216239126 20404206 52517529 1299 861 75 True 711 674 32 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D04_2.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D04_2.csv new file mode 100644 index 0000000..d6677a2 --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D04_2.csv @@ -0,0 +1,101 @@ + ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour +1 237 197 0.0242550904373096 0.146384458057052 0.0241702906843671 0.16577401388571 0.00241403153152713 0.0456168604825973 2064835 8259836 1299 861 0 True 234 200 32 {X=0,Y=0,Width=0,Height=0} +2 287 200 0.0240736032253743 0.0237956116163734 0.0240177004654002 0.0237277790493629 0.00192092731318968 0.0018395790682933 2049385 899800 1299 577 0 False 287 200 27 {X=0,Y=0,Width=0,Height=0} +3 340 200 0.0238708778982818 0.0239144574472291 0.0238803692683299 0.0238498512245365 0.00171849028767145 0.00156643925354367 2032127 904294 1299 577 0 False 340 200 27 {X=0,Y=0,Width=0,Height=0} +4 393 200 0.0238975547564245 0.0237553087578455 0.0238803692683299 0.0236667429617761 0.00190076791645261 0.0019875454469361 2034398 898276 1299 577 0 False 393 200 27 {X=0,Y=0,Width=0,Height=0} +5 446 200 0.0238482066802212 0.0240551472158434 0.0238498512245365 0.0240482185091936 0.00220369235508943 0.00206489092008069 2030197 909614 1299 577 0 False 446 200 27 {X=0,Y=0,Width=0,Height=0} +6 500 200 0.0238192392067822 0.0238615930022178 0.0238345922026398 0.0239108873121233 0.0023068001579168 0.00229881760179479 2027731 902295 1299 577 0 False 500 200 27 {X=0,Y=0,Width=0,Height=0} +7 553 200 0.0238700203858888 0.023994507809935 0.0237277790493629 0.02392614633402 0.00230458362526109 0.00235339164409725 2032054 907321 1299 577 0 False 553 200 27 {X=0,Y=0,Width=0,Height=0} +8 606 200 0.0239274619694722 0.0240886007040571 0.02392614633402 0.0241397726405737 0.00183148658999066 0.00205506018944423 2036944 910879 1299 577 0 False 606 200 27 {X=0,Y=0,Width=0,Height=0} +9 659 200 0.0239892028617655 0.0240178855835168 0.0240024414435035 0.0240024414435035 0.0015982682983259 0.00159106893280493 2042200 908205 1299 577 0 False 659 200 27 {X=0,Y=0,Width=0,Height=0} +10 711 200 0.0243105585677147 0.15134844295505 0.024277103837644 0.170214389257649 0.00182703521283775 0.0456582108266726 2069557 8539932 1299 861 0 True 712 200 32 {X=0,Y=0,Width=0,Height=0} +11 234 252 0.0241940073627424 0.0237658604904916 0.0239566643778134 0.0237430380712596 0.00270070531124284 0.00207405665470289 2059635 898675 1299 577 0 False 234 252 27 {X=0,Y=0,Width=0,Height=0} +12 287 252 0.023908913858945 0.0235447501229383 0.0238803692683299 0.0235904478522927 0.0015800692004448 0.00163796509595346 2035365 890314 1299 577 0 False 287 252 27 {X=0,Y=0,Width=0,Height=0} +13 340 252 0.0238326304962066 0.0237208767881584 0.023773556115053 0.0236972610055695 0.00141764348398739 0.00148910920349904 2028871 896974 1299 577 0 False 340 252 27 {X=0,Y=0,Width=0,Height=0} +14 393 252 0.0242416521609048 0.0237205858882609 0.0240177004654002 0.0236820019836728 0.00217254070108811 0.00138491391230836 2063691 896963 1299 577 0 False 393 252 27 {X=0,Y=0,Width=0,Height=0} +15 446 252 0.0239185814301697 0.0237451537068779 0.0238193331807431 0.0236820019836728 0.00187270073561494 0.00179065038026758 2036188 897892 1299 577 0 False 446 252 27 {X=0,Y=0,Width=0,Height=0} +16 499 253 0.023746421133851 0.0241931924399348 0.0236514839398795 0.0240482185091936 0.00225986862867441 0.00234343195386611 2021532 914834 1299 577 0 False 499 253 27 {X=0,Y=0,Width=0,Height=0} +17 553 253 0.024121706146596 0.0241405395584854 0.0240329594872969 0.0240939955748837 0.00208762229235179 0.00192021668893635 2053480 912843 1299 577 0 False 553 253 27 {X=0,Y=0,Width=0,Height=0} +18 606 253 0.0239503563756898 0.0240164310840292 0.0239414053559167 0.024078736552987 0.00181476786889998 0.0017935619742966 2038893 908150 1299 577 0 False 606 253 27 {X=0,Y=0,Width=0,Height=0} +19 659 253 0.0241078919743477 0.0240132840760471 0.0240634775310903 0.0239871824216068 0.0014761507591744 0.00145930014764282 2052304 908031 1299 577 0 False 659 253 27 {X=0,Y=0,Width=0,Height=0} +20 712 253 0.0239790536739913 0.0236932941887853 0.02392614633402 0.0237277790493629 0.00158896980534933 0.00144865835327453 2041336 895931 1299 577 0 False 712 253 27 {X=0,Y=0,Width=0,Height=0} +21 233 305 0.0242376700143128 0.0238318418763361 0.0239871824216068 0.0237582970931563 0.00259827344184561 0.00194580434953753 2063352 901170 1299 577 0 False 233 305 27 {X=0,Y=0,Width=0,Height=0} +22 287 305 0.0237811562591386 0.0250590427621527 0.0237888151369497 0.0247959105821317 0.00159594499085403 0.00217855112423925 2024489 947575 1299 577 0 False 287 305 27 {X=0,Y=0,Width=0,Height=0} +23 340 305 0.0239606700178956 0.0236762633220583 0.0239871824216068 0.0236667429617761 0.00155545747904814 0.00152245581343599 2039771 895287 1299 577 0 False 340 305 27 {X=0,Y=0,Width=0,Height=0} +24 393 305 0.0239070578732177 0.0237819393211904 0.0239108873121233 0.0238193331807431 0.00156340528469323 0.00147264695983798 2035207 899283 1299 577 0 False 393 305 27 {X=0,Y=0,Width=0,Height=0} +25 446 305 0.0237672246194392 0.0237697215254949 0.0237582970931563 0.023773556115053 0.0016513836674727 0.00157997299645038 2023303 898821 1299 577 0 False 446 305 27 {X=0,Y=0,Width=0,Height=0} +26 499 305 0.0241241377228336 0.0239979457178147 0.0241550316624704 0.0239108873121233 0.00191323292314161 0.0021327794296646 2053687 907451 1299 577 0 False 499 305 27 {X=0,Y=0,Width=0,Height=0} +27 553 305 0.024110405777801 0.0240766738082592 0.024078736552987 0.0240482185091936 0.00188681257445463 0.00173961820611696 2052518 910428 1299 577 0 False 553 305 27 {X=0,Y=0,Width=0,Height=0} +28 606 305 0.0242358257753307 0.0241384768137576 0.0243076218814374 0.0241702906843671 0.00177916113302144 0.00187887360940041 2063195 912765 1299 577 0 False 606 305 27 {X=0,Y=0,Width=0,Height=0} +29 659 305 0.0240010670743257 0.0240042661792242 0.0239871824216068 0.0238651102464332 0.00139028672985193 0.00145187873843754 2043210 907690 1299 577 0 False 659 305 27 {X=0,Y=0,Width=0,Height=0} +30 712 305 0.0241289421415832 0.0241479971740397 0.0240939955748837 0.0241397726405737 0.00145763191916496 0.00146743063184544 2054096 913125 1299 577 0 False 712 305 27 {X=0,Y=0,Width=0,Height=0} +31 233 357 0.0238708309113013 0.0236516426125508 0.0238193331807431 0.0236514839398795 0.00206743125782994 0.00209746260941459 2032123 894356 1299 577 0 False 233 357 27 {X=0,Y=0,Width=0,Height=0} +32 287 357 0.0238733329680096 0.023783631829685 0.0238498512245365 0.0238040741588464 0.00156770450158264 0.00144838679422474 2032336 899347 1299 577 0 False 287 357 27 {X=0,Y=0,Width=0,Height=0} +33 340 357 0.0239395141299541 0.0240532166983417 0.0238345922026398 0.0240482185091936 0.00152991998677886 0.00153041123170407 2037970 909541 1299 577 0 False 340 357 27 {X=0,Y=0,Width=0,Height=0} +34 393 358 0.02400206554766 0.0237002228954351 0.0240482185091936 0.0236667429617761 0.00161452813320114 0.00154064835428294 2043295 896193 1299 577 0 False 393 358 27 {X=0,Y=0,Width=0,Height=0} +35 446 358 0.0240358961735741 0.0239478844899976 0.0240329594872969 0.0240177004654002 0.0016653966618083 0.00163948074837896 2046175 905558 1299 577 0 False 446 358 27 {X=0,Y=0,Width=0,Height=0} +36 499 358 0.0239453522622733 0.0240903725488874 0.02392614633402 0.0240634775310903 0.0017967860858861 0.00185475154183876 2038467 910946 1299 577 0 False 499 358 27 {X=0,Y=0,Width=0,Height=0} +37 552 358 0.0241776324000603 0.0240265861349969 0.0242008087281605 0.0240024414435035 0.00163493765887983 0.00153131158249528 2058241 908534 1299 577 0 False 552 358 27 {X=0,Y=0,Width=0,Height=0} +38 606 358 0.02418298891583 0.0240051388789168 0.0241092545967803 0.0238345922026398 0.00162963470241396 0.00169390068214602 2058697 907723 1299 577 0 False 606 358 27 {X=0,Y=0,Width=0,Height=0} +39 659 358 0.0241551491299215 0.0240239944813645 0.024124513618677 0.0239719233997101 0.00153087142461007 0.00145898807961743 2056327 908436 1299 577 0 False 659 358 27 {X=0,Y=0,Width=0,Height=0} +40 712 358 0.0241001038823404 0.0237863821559887 0.024078736552987 0.0237888151369497 0.00139283386432649 0.00131152402221893 2051641 899451 1299 577 0 False 712 358 27 {X=0,Y=0,Width=0,Height=0} +41 233 410 0.0239397255713661 0.023606130001313 0.0238498512245365 0.0236209658960861 0.00223210607175871 0.00220643282422495 2037988 892635 1299 577 0 False 233 410 27 {X=0,Y=0,Width=0,Height=0} +42 286 410 0.0238480657192799 0.0238899689649478 0.0238040741588464 0.0238956282902266 0.00194219223284698 0.00171388512066273 2030185 903368 1299 577 0 False 286 410 27 {X=0,Y=0,Width=0,Height=0} +43 340 410 0.0239391852210911 0.0240717549554467 0.02392614633402 0.0240634775310903 0.00173981181191612 0.00174436097664435 2037942 910242 1299 577 0 False 340 410 27 {X=0,Y=0,Width=0,Height=0} +44 393 410 0.0240046850718193 0.0238632590652672 0.0239566643778134 0.0238803692683299 0.00171995165689854 0.00169348248852209 2043518 902358 1299 577 0 False 393 410 27 {X=0,Y=0,Width=0,Height=0} +45 446 410 0.0240167019920659 0.0240831000514496 0.02392614633402 0.0239871824216068 0.00176096006884708 0.00172480003533587 2044541 910671 1299 577 0 False 446 410 27 {X=0,Y=0,Width=0,Height=0} +46 499 410 0.0241486649266213 0.0243134398793876 0.0242008087281605 0.024277103837644 0.00187691913535849 0.00181647119450251 2055775 919381 1299 577 0 False 499 410 27 {X=0,Y=0,Width=0,Height=0} +47 552 410 0.0241039920549715 0.024178382990607 0.0241092545967803 0.0241855497062638 0.00169123684484732 0.00151108155351609 2051972 914274 1299 577 0 False 552 410 27 {X=0,Y=0,Width=0,Height=0} +48 606 410 0.0242442246980837 0.0242330986167842 0.0242618448157473 0.024277103837644 0.00163906090467412 0.00157788658364629 2063910 916343 1299 577 0 False 606 410 27 {X=0,Y=0,Width=0,Height=0} +49 659 411 0.0242896258679303 0.0240727334369201 0.024277103837644 0.0240482185091936 0.00155651680754576 0.00157976676119746 2067775 910279 1299 577 0 False 659 411 27 {X=0,Y=0,Width=0,Height=0} +50 712 411 0.023992163041533 0.0240174095655027 0.02392614633402 0.0240939955748837 0.00159892190116314 0.00164572065012995 2042452 908187 1299 577 0 False 712 411 27 {X=0,Y=0,Width=0,Height=0} +51 233 462 0.0237904479345199 0.0237617085555908 0.023773556115053 0.023773556115053 0.00243251875799116 0.00246117423715021 2025280 898518 1299 577 0 False 233 462 27 {X=0,Y=0,Width=0,Height=0} +52 286 463 0.0238481949334761 0.0235810597192366 0.0237430380712596 0.0236057068741894 0.00194526993055058 0.00191707670662367 2030196 891687 1299 577 0 False 286 463 27 {X=0,Y=0,Width=0,Height=0} +53 340 463 0.0239676358377453 0.0238789676597328 0.0238956282902266 0.0239108873121233 0.00176311018923137 0.00172939777955286 2040364 902952 1299 577 0 False 340 463 27 {X=0,Y=0,Width=0,Height=0} +54 393 463 0.0241009496479882 0.0241391908407787 0.0240024414435035 0.0240939955748837 0.00197947401074885 0.0018646289388762 2051713 912792 1299 577 0 False 393 463 27 {X=0,Y=0,Width=0,Height=0} +55 446 463 0.0241873587050106 0.0242513459739917 0.0241702906843671 0.024277103837644 0.00222772779687745 0.00225675133995435 2059069 917033 1299 577 0 False 446 463 27 {X=0,Y=0,Width=0,Height=0} +56 499 463 0.0241648754348718 0.0240090528048105 0.0240634775310903 0.0240329594872969 0.00222681404830962 0.00223876693014026 2057155 907871 1299 577 0 False 499 463 27 {X=0,Y=0,Width=0,Height=0} +57 552 463 0.0240431204218162 0.0242371976607946 0.0240482185091936 0.024124513618677 0.00203050295994077 0.00191313706706783 2046790 916498 1299 577 0 False 552 463 27 {X=0,Y=0,Width=0,Height=0} +58 605 463 0.0243511670655568 0.0241186427298364 0.0243686579690242 0.0241092545967803 0.00196935111969042 0.00213482438198922 2073014 912015 1299 577 0 False 605 463 27 {X=0,Y=0,Width=0,Height=0} +59 659 463 0.024121811867302 0.0240595636051965 0.0241702906843671 0.0240177004654002 0.00182356225128572 0.00174855637560435 2053489 909781 1299 577 0 False 659 463 27 {X=0,Y=0,Width=0,Height=0} +60 712 463 0.0239784076030103 0.0239608163127142 0.0239719233997101 0.0240177004654002 0.00192751086075328 0.00214895171284357 2041281 906047 1299 577 0 False 712 463 27 {X=0,Y=0,Width=0,Height=0} +61 233 515 0.0238951114334418 0.0236946164610467 0.0239108873121233 0.0237888151369497 0.00205591131333493 0.00214243658679228 2034190 895981 1299 577 0 False 233 515 27 {X=0,Y=0,Width=0,Height=0} +62 286 515 0.024026193362114 0.0238136738554643 0.0240329594872969 0.0237125200274662 0.00159702685435638 0.00153103094606534 2045349 900483 1299 577 0 False 286 515 27 {X=0,Y=0,Width=0,Height=0} +63 340 515 0.023975247728576 0.0240712789374326 0.0240329594872969 0.0240177004654002 0.0014863419811359 0.00141870043088957 2041012 910224 1299 577 0 False 340 515 27 {X=0,Y=0,Width=0,Height=0} +64 393 515 0.0241140002818044 0.0241237467007654 0.0240939955748837 0.0240177004654002 0.00155078312416804 0.00153212659225364 2052824 912208 1299 577 0 False 393 515 27 {X=0,Y=0,Width=0,Height=0} +65 446 515 0.024063125128737 0.0240886535949475 0.0240024414435035 0.0240177004654002 0.00214064318646831 0.00223988306758227 2048493 910881 1299 577 0 False 446 515 27 {X=0,Y=0,Width=0,Height=0} +66 499 515 0.0241042269898737 0.0241845183338999 0.0240177004654002 0.0240482185091936 0.00226351948560453 0.00216706662347746 2051992 914506 1299 577 0 False 499 515 27 {X=0,Y=0,Width=0,Height=0} +67 552 516 0.024404391567646 0.0239275479426171 0.024277103837644 0.0239871824216068 0.00191725575681784 0.00200562459798671 2077545 904789 1299 577 0 False 552 516 27 {X=0,Y=0,Width=0,Height=0} +68 605 516 0.0241947943946647 0.0239288437694333 0.024124513618677 0.02392614633402 0.00182935799013912 0.00191161582683511 2059702 904838 1299 577 0 False 605 516 27 {X=0,Y=0,Width=0,Height=0} +69 659 516 0.0240199206002258 0.023928923105769 0.0239108873121233 0.0238498512245365 0.00163339127218973 0.00164726972376523 2044815 904841 1299 577 0 False 659 516 27 {X=0,Y=0,Width=0,Height=0} +70 712 516 0.0239249011790384 0.0238868219569656 0.0238956282902266 0.0239414053559167 0.00171595269865727 0.00153579677981818 2036726 903249 1299 577 0 False 712 516 27 {X=0,Y=0,Width=0,Height=0} +71 233 568 0.0243916933361831 0.0239637517571346 0.0241855497062638 0.0239871824216068 0.0025852108230714 0.0020369153232717 2076464 906158 1299 577 0 False 233 568 27 {X=0,Y=0,Width=0,Height=0} +72 286 568 0.0237248658565759 0.0238818502132627 0.0237125200274662 0.0238651102464332 0.00165017555376209 0.00140918371333961 2019697 903061 1299 577 0 False 286 568 27 {X=0,Y=0,Width=0,Height=0} +73 339 568 0.0238653686748256 0.0239687235008375 0.0238651102464332 0.0239414053559167 0.00143587792000096 0.00149655964610299 2031658 906346 1299 577 0 False 339 568 27 {X=0,Y=0,Width=0,Height=0} +74 393 568 0.0239540213601638 0.0240994433366007 0.0240024414435035 0.0240939955748837 0.00147581366414457 0.00157290084955344 2039205 911289 1299 577 0 False 393 568 27 {X=0,Y=0,Width=0,Height=0} +75 446 568 0.0241455872794027 0.0241685981758725 0.024124513618677 0.0240329594872969 0.00186014959341513 0.00184291650853278 2055513 913904 1299 577 0 False 446 568 27 {X=0,Y=0,Width=0,Height=0} +76 499 568 0.0241769863290793 0.0241025638991376 0.0240634775310903 0.0238193331807431 0.00233738226073761 0.00241855195199438 2058186 911407 1299 577 0 False 499 568 27 {X=0,Y=0,Width=0,Height=0} +77 552 568 0.0241290948492696 0.0240924881845056 0.0241092545967803 0.0242008087281605 0.00190434240207815 0.0018880886768881 2054109 911026 1299 577 0 False 552 568 27 {X=0,Y=0,Width=0,Height=0} +78 605 568 0.0240355907582013 0.024175368209851 0.024078736552987 0.0240939955748837 0.00155698958005452 0.00159592919313427 2046149 914160 1299 577 0 False 605 568 27 {X=0,Y=0,Width=0,Height=0} +79 658 568 0.0240105819378641 0.0240482185091936 0.0239719233997101 0.0240482185091936 0.00144436599436816 0.00144733474893732 2044020 909352 1299 577 0 False 658 568 27 {X=0,Y=0,Width=0,Height=0} +80 712 568 0.0240118153461005 0.024075377981443 0.0239719233997101 0.0240329594872969 0.00159400828776877 0.00148926692507446 2044125 910379 1299 577 0 False 712 568 27 {X=0,Y=0,Width=0,Height=0} +81 235 620 0.0250182647203015 0.157416470351914 0.0247959105821317 0.169954985885405 0.00243730881965806 0.0359703129092961 2129804 7726900 1299 749 0 True 233 620 31 {X=0,Y=0,Width=0,Height=0} +82 286 620 0.0241583677380814 0.0238752652974009 0.0240939955748837 0.0238651102464332 0.00161834705028998 0.00146055333904415 2056601 902812 1299 577 0 False 286 620 27 {X=0,Y=0,Width=0,Height=0} +83 339 620 0.0239436019972521 0.0239569552777109 0.0239566643778134 0.0239566643778134 0.00140888491506342 0.00139274655164316 2038318 905901 1299 577 0 False 339 620 27 {X=0,Y=0,Width=0,Height=0} +84 393 620 0.024060646565519 0.0241592100428165 0.0240024414435035 0.024078736552987 0.0016348961072778 0.00168850015112971 2048282 913549 1299 577 0 False 393 620 27 {X=0,Y=0,Width=0,Height=0} +85 446 621 0.0240650750884251 0.024087437104467 0.0240329594872969 0.0240024414435035 0.00187827902110999 0.00176911448106618 2048659 910835 1299 577 0 False 446 621 27 {X=0,Y=0,Width=0,Height=0} +86 499 621 0.0239691511678643 0.0241723534290949 0.02392614633402 0.0241550316624704 0.00203014294568539 0.00186742575425929 2040493 914046 1299 577 0 False 499 621 27 {X=0,Y=0,Width=0,Height=0} +87 552 621 0.0240924567512744 0.0242080018892626 0.0240634775310903 0.0241855497062638 0.00166671888373045 0.00170806237739981 2050990 915394 1299 577 0 False 552 621 27 {X=0,Y=0,Width=0,Height=0} +88 605 621 0.0240737559330607 0.0238802899319942 0.0240329594872969 0.02392614633402 0.00154010228019996 0.00164515980467767 2049398 903002 1299 577 0 False 605 621 27 {X=0,Y=0,Width=0,Height=0} +89 658 621 0.0239940190272603 0.0239866535127022 0.0239871824216068 0.0239719233997101 0.00140897976762443 0.00141642297901504 2042610 907024 1299 577 0 False 658 621 27 {X=0,Y=0,Width=0,Height=0} +90 712 621 0.023913013472988 0.0241352504694397 0.0238956282902266 0.024078736552987 0.00148470706020564 0.00136025732234131 2035714 912643 1299 577 0 False 712 621 27 {X=0,Y=0,Width=0,Height=0} +91 235 673 0.024801220110921 0.156980600160352 0.0247348744945449 0.169893949797818 0.00214005602491329 0.0384673229076188 2111327 7705505 1299 749 0 True 233 673 31 {X=0,Y=0,Width=0,Height=0} +92 286 673 0.0241898255214835 0.0240250787446188 0.0241092545967803 0.0239566643778134 0.00160032226060183 0.00143069197107194 2059279 908477 1299 577 0 False 286 673 27 {X=0,Y=0,Width=0,Height=0} +93 339 673 0.0238984357623077 0.0239451870545843 0.0238498512245365 0.0239414053559167 0.00150160089557881 0.00154378422136359 2034473 905456 1299 577 0 False 339 673 27 {X=0,Y=0,Width=0,Height=0} +94 392 673 0.0239529524063589 0.0240843958782658 0.0239108873121233 0.0239871824216068 0.00162630584313452 0.00158662250640338 2039114 910720 1299 577 0 False 392 673 27 {X=0,Y=0,Width=0,Height=0} +95 446 673 0.0239499922265914 0.0240996284547173 0.02392614633402 0.024078736552987 0.00167169541579252 0.00166365880932612 2038862 911296 1299 577 0 False 446 673 27 {X=0,Y=0,Width=0,Height=0} +96 499 673 0.0240559948544558 0.0241482880739372 0.0240482185091936 0.024124513618677 0.00186493783014214 0.00191554156693325 2047886 913136 1299 577 0 False 499 673 27 {X=0,Y=0,Width=0,Height=0} +97 552 673 0.0240030640209943 0.0240282521980462 0.0239719233997101 0.0240482185091936 0.00151061729134464 0.00139180578748487 2043380 908597 1299 577 0 False 552 673 27 {X=0,Y=0,Width=0,Height=0} +98 605 673 0.024166402511736 0.0239448961546868 0.0241855497062638 0.0239108873121233 0.00140741092792014 0.0013935255859278 2057285 905445 1299 577 0 False 605 673 27 {X=0,Y=0,Width=0,Height=0} +99 658 673 0.0240629959145408 0.0238335872757211 0.0240634775310903 0.0238498512245365 0.00154579483278616 0.00146312538415454 2048482 901236 1299 577 0 False 658 673 27 {X=0,Y=0,Width=0,Height=0} +100 710 674 0.024196979289255 0.149057675646893 0.0241702906843671 0.16910048065919 0.00157326832188506 0.0454948803572185 2059888 8410674 1299 861 0 True 711 674 32 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D04_3.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D04_3.csv new file mode 100644 index 0000000..61dbe24 --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D04_3.csv @@ -0,0 +1,101 @@ + ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour +1 237 197 0.319659299754205 0.339732428354595 0.319615472648203 0.33141069657435 0.00705638299859455 0.0234088470430742 27212585 19169618 1299 861 0 True 234 200 32 {X=0,Y=0,Width=0,Height=0} +2 287 200 0.319248022714446 0.319545894681808 0.319050888838025 0.319569695582513 0.00569568950711441 0.00542911635743781 27177573 12083211 1299 577 0 False 287 200 27 {X=0,Y=0,Width=0,Height=0} +3 340 200 0.319054271900617 0.318862359258993 0.318898298619059 0.318913557640955 0.00495117179715599 0.00441161002764916 27161079 12057364 1299 577 0 False 340 200 27 {X=0,Y=0,Width=0,Height=0} +4 393 200 0.31896684087677 0.319752486499931 0.318944075684749 0.319569695582513 0.00435965534220409 0.0043919837336907 27153636 12091023 1299 577 0 False 393 200 27 {X=0,Y=0,Width=0,Height=0} +5 446 200 0.318885271478733 0.319269354661056 0.318730449378195 0.319462882429236 0.00598866758463208 0.00594747029874131 27146692 12072754 1299 577 0 False 446 200 27 {X=0,Y=0,Width=0,Height=0} +6 500 200 0.319291285976683 0.319656092852074 0.319157701991302 0.31949340047303 0.00681296916634963 0.00660341965724501 27181256 12087378 1299 577 0 False 500 200 27 {X=0,Y=0,Width=0,Height=0} +7 553 200 0.319686881111721 0.31976451917751 0.319325551232166 0.320149538414588 0.00643432225217916 0.00646850377762947 27214933 12091478 1299 577 0 False 553 200 27 {X=0,Y=0,Width=0,Height=0} +8 606 200 0.319317316763845 0.319195730541541 0.319203479056992 0.318791485465782 0.0061734532455199 0.00636696089169163 27183472 12069970 1299 577 0 False 606 200 27 {X=0,Y=0,Width=0,Height=0} +9 659 200 0.319286786973306 0.319535554512724 0.319188220035096 0.319340810254063 0.00513007406104651 0.00459778814353953 27180873 12082820 1299 577 0 False 659 200 27 {X=0,Y=0,Width=0,Height=0} +10 711 200 0.319298075595356 0.33402454398608 0.319371328297856 0.325154497596704 0.00520062495038423 0.0207226382974532 27181834 18847547 1299 861 0 True 712 200 32 {X=0,Y=0,Width=0,Height=0} +11 234 252 0.319887139622341 0.31920548891083 0.319295033188373 0.319386587319753 0.00820649754655946 0.00553588079967616 27231981 12070339 1299 577 0 False 234 252 27 {X=0,Y=0,Width=0,Height=0} +12 287 252 0.318941103758236 0.319755607062468 0.318822003509575 0.319569695582513 0.0047762612485616 0.0045173536570731 27151445 12091141 1299 577 0 False 287 252 27 {X=0,Y=0,Width=0,Height=0} +13 340 252 0.318993552975148 0.32004211701607 0.318883039597162 0.320042725261311 0.00429580418469088 0.00413062823511484 27155910 12101975 1299 577 0 False 340 252 27 {X=0,Y=0,Width=0,Height=0} +14 393 252 0.321317482040548 0.318719580300206 0.319188220035096 0.318547341115434 0.0138326886462773 0.00404572053850184 27353746 12051965 1299 577 0 False 393 252 27 {X=0,Y=0,Width=0,Height=0} +15 446 252 0.319942549019021 0.319759573879252 0.319798580910964 0.31958495460441 0.00467976179226741 0.00475075214876204 27236698 12091291 1299 577 0 False 446 252 27 {X=0,Y=0,Width=0,Height=0} +16 499 253 0.320139812109637 0.320319582627405 0.320119020370794 0.320149538414588 0.00615926831085866 0.00699808603199911 27253491 12112467 1299 577 0 False 499 253 27 {X=0,Y=0,Width=0,Height=0} +17 553 253 0.319825539690989 0.32006517744431 0.31985961699855 0.320042725261311 0.00601565834191712 0.00558990776176564 27226737 12102847 1299 577 0 False 553 253 27 {X=0,Y=0,Width=0,Height=0} +18 606 253 0.320165008877896 0.319688832313266 0.320210574502174 0.31953917753872 0.00570030214906066 0.00554787006724554 27255636 12088616 1299 577 0 False 606 253 27 {X=0,Y=0,Width=0,Height=0} +19 659 253 0.31986336421024 0.319943925077938 0.319935912108034 0.320180056458381 0.00439748197452377 0.00400103058065564 27229957 12098262 1299 577 0 False 659 253 27 {X=0,Y=0,Width=0,Height=0} +20 712 253 0.319182793038855 0.319451748896795 0.319249256122683 0.3196307316701 0.00427392971388445 0.00470344618188058 27172020 12079651 1299 577 0 False 712 253 27 {X=0,Y=0,Width=0,Height=0} +21 233 305 0.320154871436867 0.319557715795825 0.3196307316701 0.319844357976654 0.00701067291140214 0.00539336124338569 27254773 12083658 1299 577 0 False 233 305 27 {X=0,Y=0,Width=0,Height=0} +22 287 305 0.319354072329291 0.323858247653396 0.319356069275959 0.322270542458228 0.00493218107255678 0.00847242280690752 27186601 12246277 1299 577 0 False 287 305 27 {X=0,Y=0,Width=0,Height=0} +23 340 305 0.319900307723608 0.319946648958797 0.319874876020447 0.31990539406424 0.00457366587619595 0.00408279247232576 27233102 12098365 1299 577 0 False 340 305 27 {X=0,Y=0,Width=0,Height=0} +24 393 305 0.320180361873754 0.31955142177986 0.320256351567864 0.31967650873579 0.00430615933960081 0.00453376662089249 27256943 12083420 1299 577 0 False 393 305 27 {X=0,Y=0,Width=0,Height=0} +25 446 305 0.320115108704673 0.319391770627018 0.320164797436484 0.319356069275959 0.00424012979018431 0.00401411893572302 27251388 12077383 1299 577 0 False 446 305 27 {X=0,Y=0,Width=0,Height=0} +26 499 305 0.320381865539355 0.320664642796743 0.320332646677348 0.320607309071489 0.0050241502868546 0.00470691179956311 27274097 12125515 1299 577 0 False 499 305 27 {X=0,Y=0,Width=0,Height=0} +27 553 305 0.320914404228875 0.320998807442647 0.320897230487526 0.320714122224765 0.00542166926422018 0.00540601510820699 27319432 12138151 1299 577 0 False 553 305 27 {X=0,Y=0,Width=0,Height=0} +28 606 305 0.321033410503575 0.320719966668161 0.321095597772183 0.320912489509422 0.00578874884664285 0.00576994909668542 27329563 12127607 1299 577 0 False 606 305 27 {X=0,Y=0,Width=0,Height=0} +29 659 305 0.320655517713416 0.320313447284112 0.320729381246662 0.320134279392691 0.00446934680777786 0.0045956558038407 27297393 12112235 1299 577 0 False 659 305 27 {X=0,Y=0,Width=0,Height=0} +30 712 305 0.319730261841409 0.320375091616939 0.319645990691997 0.320408941786831 0.00398481130095669 0.00388885745593546 27218626 12114566 1299 577 0 False 712 305 27 {X=0,Y=0,Width=0,Height=0} +31 233 357 0.318838249258061 0.319000404483085 0.318806744487678 0.319020370794232 0.00658689289510117 0.00679874362719371 27142689 12062584 1299 577 0 False 233 357 27 {X=0,Y=0,Width=0,Height=0} +32 287 357 0.319282053035027 0.319325789241173 0.319279774166476 0.319295033188373 0.00565597566460635 0.00475432062486835 27180470 12074888 1299 577 0 False 287 357 27 {X=0,Y=0,Width=0,Height=0} +33 340 357 0.320126538287664 0.320028524057223 0.320012207217517 0.320073243305104 0.00517276489539795 0.00552640060978936 27252361 12101461 1299 577 0 False 340 357 27 {X=0,Y=0,Width=0,Height=0} +34 393 358 0.320823860317574 0.320280126023125 0.320851453421836 0.320042725261311 0.00457497924442142 0.00481929500541304 27311724 12110975 1299 577 0 False 393 358 27 {X=0,Y=0,Width=0,Height=0} +35 446 358 0.320301881951907 0.320342378601192 0.320286869611658 0.319996948195621 0.00407347808679302 0.00434891005442272 27267288 12113329 1299 577 0 False 446 358 27 {X=0,Y=0,Width=0,Height=0} +36 499 358 0.320712254492293 0.320963291209706 0.320653086137179 0.320881971465629 0.0044937778559236 0.00468089100251158 27302223 12136808 1299 577 0 False 499 358 27 {X=0,Y=0,Width=0,Height=0} +37 552 358 0.321178153896809 0.321596818295594 0.321278706034943 0.321614404516671 0.00535686396025998 0.00493513950877718 27341885 12160764 1299 577 0 False 552 358 27 {X=0,Y=0,Width=0,Height=0} +38 606 358 0.321102551845287 0.320929917057828 0.321049820706493 0.320698863202869 0.00518812124131799 0.00472664336122735 27335449 12135546 1299 577 0 False 606 358 27 {X=0,Y=0,Width=0,Height=0} +39 659 358 0.320247294827385 0.320153637458598 0.320149538414588 0.320073243305104 0.00446406800519714 0.0043739072443217 27262641 12106192 1299 577 0 False 659 358 27 {X=0,Y=0,Width=0,Height=0} +40 712 358 0.320192872157295 0.320503325580851 0.320286869611658 0.320454718852522 0.00407416895860149 0.00380050571420329 27258008 12119415 1299 577 0 False 712 358 27 {X=0,Y=0,Width=0,Height=0} +41 233 410 0.319003267533353 0.319411366701932 0.319066147859922 0.319295033188373 0.00688541235037202 0.00678711737478073 27156737 12078124 1299 577 0 False 233 410 27 {X=0,Y=0,Width=0,Height=0} +42 286 410 0.319656081146045 0.319866360587084 0.319752803845273 0.320164797436484 0.00598032131564114 0.00563306509469454 27212311 12095329 1299 577 0 False 286 410 27 {X=0,Y=0,Width=0,Height=0} +43 340 410 0.320248739677034 0.320311199421268 0.320103761348898 0.320378423743038 0.00521751365552121 0.00497536514649721 27262764 12112150 1299 577 0 False 340 410 27 {X=0,Y=0,Width=0,Height=0} +44 393 410 0.321120512618559 0.320895723097148 0.321141374837873 0.320897230487526 0.00526772603440963 0.00563280465740439 27336978 12134253 1299 577 0 False 393 410 27 {X=0,Y=0,Width=0,Height=0} +45 446 410 0.320827807223931 0.320959509511038 0.320836194399939 0.321095597772183 0.00509449257028007 0.00518185687158194 27312060 12136665 1299 577 0 False 446 410 27 {X=0,Y=0,Width=0,Height=0} +46 499 410 0.320703914303266 0.320705791909518 0.320958266575113 0.320653086137179 0.00508925075463674 0.00504742101149572 27301513 12127071 1299 577 0 False 499 410 27 {X=0,Y=0,Width=0,Height=0} +47 552 410 0.320986681951531 0.320973419815228 0.321126115815976 0.320576791027695 0.00525682714583171 0.00480538671441674 27325585 12137191 1299 577 0 False 552 410 27 {X=0,Y=0,Width=0,Height=0} +48 606 410 0.320921393542215 0.321039480537408 0.320759899290456 0.321019302662699 0.00537742613949603 0.00574729369935106 27320027 12139689 1299 577 0 False 606 410 27 {X=0,Y=0,Width=0,Height=0} +49 659 411 0.320799556301944 0.320544368911845 0.320759899290456 0.320195315480278 0.00468865984559349 0.00439092760615314 27309655 12120967 1299 577 0 False 659 411 27 {X=0,Y=0,Width=0,Height=0} +50 712 411 0.320202762916677 0.320813292644371 0.320119020370794 0.320927748531319 0.00422685842245764 0.00416321837934544 27258850 12131136 1299 577 0 False 712 411 27 {X=0,Y=0,Width=0,Height=0} +51 233 462 0.319520183051878 0.318629692231875 0.319661249713893 0.318593118181125 0.00609955743231917 0.00645682470565598 27200742 12048566 1299 577 0 False 233 462 27 {X=0,Y=0,Width=0,Height=0} +52 286 463 0.319641726623522 0.319645117992304 0.31967650873579 0.319432364385443 0.00509806061664286 0.00488396078521366 27211089 12086963 1299 577 0 False 286 463 27 {X=0,Y=0,Width=0,Height=0} +53 340 463 0.320380878812766 0.320062929581465 0.320195315480278 0.319966430151827 0.00431168754195437 0.00436215118619469 27274013 12102762 1299 577 0 False 340 463 27 {X=0,Y=0,Width=0,Height=0} +54 393 463 0.32065159430055 0.320686592516283 0.320683604180972 0.320622568093385 0.00456471613964171 0.00432219116360606 27297059 12126345 1299 577 0 False 393 463 27 {X=0,Y=0,Width=0,Height=0} +55 446 463 0.320388326249165 0.320697964057731 0.320378423743038 0.320668345159075 0.00610163492652482 0.00634569594292947 27274647 12126775 1299 577 0 False 446 463 27 {X=0,Y=0,Width=0,Height=0} +56 499 463 0.321039847719895 0.319480627322984 0.321019302662699 0.319218738078889 0.00633972972865888 0.00650162713026352 27330111 12080743 1299 577 0 False 499 463 27 {X=0,Y=0,Width=0,Height=0} +57 552 463 0.321145991308701 0.32055304301788 0.320759899290456 0.320408941786831 0.00569257049607696 0.00564871907754933 27339147 12121295 1299 577 0 False 552 463 27 {X=0,Y=0,Width=0,Height=0} +58 605 463 0.321321781349258 0.321849874760983 0.32124818799115 0.321492332341497 0.00562314450296994 0.00565732373861965 27354112 12170333 1299 577 0 False 605 463 27 {X=0,Y=0,Width=0,Height=0} +59 659 463 0.320997970573581 0.320823632813456 0.320851453421836 0.320607309071489 0.00488962240961861 0.00497607164525187 27326546 12131527 1299 577 0 False 659 463 27 {X=0,Y=0,Width=0,Height=0} +60 712 463 0.320572996829025 0.321066772236884 0.320531013962005 0.320927748531319 0.00472570079512089 0.00488434058353519 27290368 12140721 1299 577 0 False 712 463 27 {X=0,Y=0,Width=0,Height=0} +61 233 515 0.31891621240535 0.319337636800635 0.318883039597162 0.319401846341649 0.00549888419050566 0.00548090349488562 27149326 12075336 1299 577 0 False 233 515 27 {X=0,Y=0,Width=0,Height=0} +62 286 515 0.319823683705262 0.319522675580897 0.319935912108034 0.319478141451133 0.00444959576143397 0.00416408661279083 27226579 12082333 1299 577 0 False 286 515 27 {X=0,Y=0,Width=0,Height=0} +63 340 515 0.320254707023549 0.319843141486173 0.320271610589761 0.31981383993286 0.00422179484338299 0.00400860162733552 27263272 12094451 1299 577 0 False 340 515 27 {X=0,Y=0,Width=0,Height=0} +64 393 515 0.320502116969037 0.319500778752248 0.320561532005798 0.319478141451133 0.00403855499472697 0.00420190810021187 27284334 12081505 1299 577 0 False 393 515 27 {X=0,Y=0,Width=0,Height=0} +65 446 515 0.320166806129898 0.320648193729811 0.319935912108034 0.320439459830625 0.00555544410638724 0.00543505377687764 27255789 12124893 1299 577 0 False 446 515 27 {X=0,Y=0,Width=0,Height=0} +66 499 515 0.320465831273395 0.320685455362138 0.320332646677348 0.320729381246662 0.00655427968088436 0.00679214848323105 27281245 12126302 1299 577 0 False 499 515 27 {X=0,Y=0,Width=0,Height=0} +67 552 516 0.320622168704051 0.320796261777644 0.320653086137179 0.321034561684596 0.00614934396894232 0.00588230176862473 27294554 12130492 1299 577 0 False 552 516 27 {X=0,Y=0,Width=0,Height=0} +68 605 516 0.321204959969148 0.321485059844059 0.321324483100633 0.321675440604257 0.00590362113805157 0.00529649836010326 27344167 12156538 1299 577 0 False 605 516 27 {X=0,Y=0,Width=0,Height=0} +69 659 516 0.321318280819216 0.320870044569831 0.321126115815976 0.320500495918212 0.00527026490266776 0.00553022362464359 27353814 12133282 1299 577 0 False 659 516 27 {X=0,Y=0,Width=0,Height=0} +70 712 516 0.321127290490487 0.320786133172122 0.320958266575113 0.320637827115282 0.00541402670106145 0.00522271222748511 27337555 12130109 1299 577 0 False 712 516 27 {X=0,Y=0,Width=0,Height=0} +71 233 568 0.31990424288322 0.319278002321646 0.319707026779583 0.319432364385443 0.00628729099775016 0.00559791559758918 27233437 12073081 1299 577 0 False 233 568 27 {X=0,Y=0,Width=0,Height=0} +72 286 568 0.319001975391391 0.31903108119955 0.318989852750439 0.319081406881819 0.00433881417670286 0.00422999124253412 27156627 12063744 1299 577 0 False 286 568 27 {X=0,Y=0,Width=0,Height=0} +73 339 568 0.319799332702651 0.319334965810667 0.319752803845273 0.319295033188373 0.00469553928619831 0.00433833729062201 27224506 12075235 1299 577 0 False 339 568 27 {X=0,Y=0,Width=0,Height=0} +74 393 568 0.32038396820673 0.320407090605666 0.320515754940108 0.320119020370794 0.00469374758310163 0.00444603819785055 27274276 12115776 1299 577 0 False 393 568 27 {X=0,Y=0,Width=0,Height=0} +75 446 568 0.320359147334314 0.321196989609188 0.320393682764935 0.32111085679408 0.00555860363997583 0.00522771387143569 27272163 12145645 1299 577 0 False 446 568 27 {X=0,Y=0,Width=0,Height=0} +76 499 568 0.320638285238341 0.320986351637945 0.320561532005798 0.321080338750286 0.00702993647945611 0.00735325417454219 27295926 12137680 1299 577 0 False 499 568 27 {X=0,Y=0,Width=0,Height=0} +77 552 568 0.320881196180452 0.320512026132331 0.320943007553216 0.320759899290456 0.0059733166441187 0.00536554041795428 27316605 12119744 1299 577 0 False 552 568 27 {X=0,Y=0,Width=0,Height=0} +78 605 568 0.321098334763793 0.320641079905045 0.321004043640803 0.320729381246662 0.00554855343048718 0.00565525593170026 27335090 12124624 1299 577 0 False 605 568 27 {X=0,Y=0,Width=0,Height=0} +79 658 568 0.321017951787012 0.321151794343293 0.320943007553216 0.321141374837873 0.00478286078591928 0.00491882891538096 27328247 12143936 1299 577 0 False 658 568 27 {X=0,Y=0,Width=0,Height=0} +80 712 568 0.320883522035983 0.320955146012576 0.320836194399939 0.320912489509422 0.00529478864753468 0.00481754943446595 27316803 12136500 1299 577 0 False 712 568 27 {X=0,Y=0,Width=0,Height=0} +81 235 620 0.318991238866362 0.340077678403992 0.318715190356298 0.334248874647135 0.00587175713592862 0.0213157375626497 27155713 16692956 1299 749 0 True 233 620 31 {X=0,Y=0,Width=0,Height=0} +82 286 620 0.319272491184508 0.318550673241533 0.319295033188373 0.318669413290608 0.00431323814871936 0.00408548520162845 27179656 12045578 1299 577 0 False 286 620 27 {X=0,Y=0,Width=0,Height=0} +83 339 620 0.319311184962898 0.319464178256053 0.319096665903716 0.319417105363546 0.00475647660360078 0.00494638814388237 27182950 12080121 1299 577 0 False 339 620 27 {X=0,Y=0,Width=0,Height=0} +84 393 620 0.319682170666933 0.319735111842416 0.31967650873579 0.319798580910964 0.00491412977787515 0.00514201439476633 27214532 12090366 1299 577 0 False 393 620 27 {X=0,Y=0,Width=0,Height=0} +85 446 621 0.32024240818142 0.320198779833603 0.319996948195621 0.320347905699245 0.00563651555903332 0.00518809355028583 27262225 12107899 1299 577 0 False 446 621 27 {X=0,Y=0,Width=0,Height=0} +86 499 621 0.320380033047118 0.320603950499945 0.320317387655451 0.320378423743038 0.00521938785592488 0.00530737942103651 27273941 12123220 1299 577 0 False 499 621 27 {X=0,Y=0,Width=0,Height=0} +87 552 621 0.320938931432663 0.320456649370023 0.320973525597009 0.320332646677348 0.00478195657553113 0.00464977302803525 27321520 12117650 1299 577 0 False 552 621 27 {X=0,Y=0,Width=0,Height=0} +88 605 621 0.320709353046251 0.321331570479954 0.320653086137179 0.321278706034943 0.00521608309140698 0.00467407584837457 27301976 12150734 1299 577 0 False 605 621 27 {X=0,Y=0,Width=0,Height=0} +89 658 621 0.320959734918251 0.32113407589499 0.320881971465629 0.321126115815976 0.0041193754013458 0.00410616980224887 27323291 12143266 1299 577 0 False 658 621 27 {X=0,Y=0,Width=0,Height=0} +90 712 621 0.320677072990691 0.320377365925229 0.320759899290456 0.320241092545968 0.00485876779177361 0.00462599894340838 27299228 12114652 1299 577 0 False 712 621 27 {X=0,Y=0,Width=0,Height=0} +91 235 673 0.317755551761357 0.339255646984056 0.317570763714046 0.334386205844205 0.00623231760772613 0.0205365019032773 27050519 16652606 1299 749 0 True 233 673 31 {X=0,Y=0,Width=0,Height=0} +92 286 673 0.318731024968705 0.318772947208677 0.318867780575265 0.318623636224918 0.00516925403928565 0.00415765037474278 27133561 12053983 1299 577 0 False 286 673 27 {X=0,Y=0,Width=0,Height=0} +93 339 673 0.319107731337608 0.318754620515133 0.319050888838025 0.318791485465782 0.00524624397290669 0.00558069105864562 27165630 12053290 1299 577 0 False 339 673 27 {X=0,Y=0,Width=0,Height=0} +94 392 673 0.319497112444484 0.31903002338174 0.319249256122683 0.318959334706645 0.00530044157501348 0.00502238654789697 27198778 12063704 1299 577 0 False 392 673 27 {X=0,Y=0,Width=0,Height=0} +95 446 673 0.319960650753234 0.321005630367516 0.320119020370794 0.320592050049592 0.00532084553280298 0.00605468269284791 27238239 12138409 1299 577 0 False 446 673 27 {X=0,Y=0,Width=0,Height=0} +96 499 673 0.320550302117474 0.32012021041583 0.320653086137179 0.320210574502174 0.00475995853057671 0.00454629006739594 27288436 12104928 1299 577 0 False 499 673 27 {X=0,Y=0,Width=0,Height=0} +97 552 673 0.320354436889525 0.320125816850218 0.320378423743038 0.320332646677348 0.00406466259097358 0.00411922919640227 27271762 12105140 1299 577 0 False 552 673 27 {X=0,Y=0,Width=0,Height=0} +98 605 673 0.319952874407971 0.320615877395742 0.319920653086137 0.320439459830625 0.00418053998041558 0.00372692644812437 27237577 12123671 1299 577 0 False 605 673 27 {X=0,Y=0,Width=0,Height=0} +99 658 673 0.3200857418419 0.32013073570303 0.320073243305104 0.320042725261311 0.00417437645512026 0.00397577623410429 27248888 12105326 1299 577 0 False 658 673 27 {X=0,Y=0,Width=0,Height=0} +100 710 674 0.320393600537719 0.335087713235305 0.320119020370794 0.326054779888609 0.00443947069891215 0.0191531349090572 27275096 18907537 1299 861 0 True 711 674 32 {X=0,Y=0,Width=0,Height=0} diff --git a/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D04_4.csv b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D04_4.csv new file mode 100644 index 0000000..0144d31 --- /dev/null +++ b/example_data/xml_wo_parameters/220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D04_4.csv @@ -0,0 +1,101 @@ + ID Pos.X Pos.Y Bkg.Mean Spot.Mean Bkg.Median Spot.Median Bkg.StdDev Spot.StdDev Bkg.Sum Spot.Sum Bkg.Area Spot.Area Spot.Sat. (%) Found Pos.Nom.X Pos.Nom.Y Dia. Id Name Rect. Contour +1 237 197 0.033352733082881 0.035624499396418 0.0332799267566949 0.0356145571068894 0.00257140821764557 0.00339990500514886 2839317 2010135 1299 861 0 True 234 200 32 {X=0,Y=0,Width=0,Height=0} +2 287 200 0.0332892536723115 0.0332927263521854 0.0332494087129015 0.0333714808880751 0.00201023033124923 0.0020863756772569 2833913 1258921 1299 577 0 False 287 200 27 {X=0,Y=0,Width=0,Height=0} +3 340 200 0.0331839088621733 0.0335298891049923 0.0331578545815213 0.0334782940413519 0.00178247626187384 0.00179476684788364 2824945 1267889 1299 577 0 False 340 200 27 {X=0,Y=0,Width=0,Height=0} +4 393 200 0.033342501667891 0.0333615902915597 0.0332951857785916 0.033325703822385 0.00178976850516566 0.00167811198152413 2838446 1261525 1299 577 0 False 393 200 27 {X=0,Y=0,Width=0,Height=0} +5 446 200 0.033408189466541 0.0334790874047088 0.0333714808880751 0.033524071107042 0.00224809095622794 0.00232189796616303 2844038 1265968 1299 577 0 False 446 200 27 {X=0,Y=0,Width=0,Height=0} +6 500 200 0.0334904284290496 0.03356265501163 0.0334477759975586 0.0335851071946288 0.00274932637103506 0.00261909077214589 2851039 1269128 1299 577 0 False 500 200 27 {X=0,Y=0,Width=0,Height=0} +7 553 200 0.0334379087316669 0.0334026600679992 0.0333562218661784 0.033325703822385 0.00263996565772943 0.00264522036432668 2846568 1263078 1299 577 0 False 553 200 27 {X=0,Y=0,Width=0,Height=0} +8 606 200 0.0333889600447974 0.0334151158727017 0.0334019989318685 0.0332646677347982 0.00235077865748956 0.00242420197875748 2842401 1263549 1299 577 0 False 606 200 27 {X=0,Y=0,Width=0,Height=0} +9 659 200 0.0332777418621046 0.0334670282816847 0.0333562218661784 0.0334935530632486 0.00193563244151122 0.00200369047078839 2832933 1265512 1299 577 0 False 659 200 27 {X=0,Y=0,Width=0,Height=0} +10 711 200 0.033176661120441 0.0349169309304184 0.0331578545815213 0.0345769436179141 0.00212697249097741 0.0027405361318919 2824328 1970210 1299 861 0 True 712 200 32 {X=0,Y=0,Width=0,Height=0} +11 234 252 0.0335423255489416 0.0331626147616624 0.0334477759975586 0.0331120775158312 0.00225766434406157 0.002165216710644 2855457 1254001 1299 577 0 False 234 252 27 {X=0,Y=0,Width=0,Height=0} +12 287 252 0.0331533085911641 0.0334955100261955 0.0331425955596246 0.033524071107042 0.00179513236494178 0.00176828687333833 2822340 1266589 1299 577 0 False 287 252 27 {X=0,Y=0,Width=0,Height=0} +13 340 252 0.033249678888039 0.0335670449555379 0.0332494087129015 0.0335088120851453 0.00152209811546823 0.0014749452294929 2830544 1269294 1299 577 0 False 340 252 27 {X=0,Y=0,Width=0,Height=0} +14 393 252 0.0336548358735963 0.0332125966531438 0.0334630350194553 0.0331883726253147 0.00200531609237882 0.00145049493405025 2865035 1255891 1299 577 0 False 393 252 27 {X=0,Y=0,Width=0,Height=0} +15 446 252 0.0333942578268416 0.0333429462526738 0.0333714808880751 0.0333867399099718 0.00181823983760474 0.00182682406352961 2842852 1260820 1299 577 0 False 446 252 27 {X=0,Y=0,Width=0,Height=0} +16 499 253 0.033522238614805 0.0336344279499795 0.0335545891508354 0.0335088120851453 0.00238229387581079 0.00240555329859084 2853747 1271842 1299 577 0 False 499 253 27 {X=0,Y=0,Width=0,Height=0} +17 553 253 0.033506404002398 0.0334505792147528 0.0334782940413519 0.0334325169756619 0.00230557659209314 0.00225049310523019 2852399 1264890 1299 577 0 False 553 253 27 {X=0,Y=0,Width=0,Height=0} +18 606 253 0.0333360996918065 0.0333011624492132 0.033325703822385 0.0332951857785916 0.00227694919059546 0.00221175285402818 2837901 1259240 1299 577 0 False 606 253 27 {X=0,Y=0,Width=0,Height=0} +19 659 253 0.0334458025443802 0.0333257302678302 0.0334782940413519 0.0332951857785916 0.0017033898459887 0.00168180023898181 2847240 1260169 1299 577 0 False 659 253 27 {X=0,Y=0,Width=0,Height=0} +20 712 253 0.0332149672562417 0.0335219025805333 0.0332036316472114 0.0334782940413519 0.00176995773450395 0.00173226872729747 2827589 1267587 1299 577 0 False 712 253 27 {X=0,Y=0,Width=0,Height=0} +21 233 305 0.0334255394090671 0.0332737649679567 0.0333714808880751 0.0333104448004883 0.00215429101206857 0.00203146551687338 2845515 1258204 1299 577 0 False 233 305 27 {X=0,Y=0,Width=0,Height=0} +22 287 305 0.0333246936023056 0.0337054075249721 0.0333104448004883 0.0335698481727321 0.00197435559888252 0.00186999737135344 2836930 1274526 1299 577 0 False 287 305 27 {X=0,Y=0,Width=0,Height=0} +23 340 305 0.0335187968184881 0.0333468866240128 0.0336003662165255 0.0333409628442817 0.00169130521946636 0.00170195870480505 2853454 1260969 1299 577 0 False 340 305 27 {X=0,Y=0,Width=0,Height=0} +24 393 305 0.0334142742805075 0.0334713124438117 0.0333714808880751 0.0334935530632486 0.00162905522158094 0.00160030069423674 2844556 1265674 1299 577 0 False 393 305 27 {X=0,Y=0,Width=0,Height=0} +25 446 305 0.0335791046078781 0.0337126800224099 0.0336156252384222 0.033676661326009 0.0016777667291688 0.00146396241098521 2858588 1274801 1299 577 0 False 446 305 27 {X=0,Y=0,Width=0,Height=0} +26 499 305 0.033398181239708 0.0337079991786045 0.0334477759975586 0.0337376974135958 0.00194608799182813 0.0019136295963992 2843186 1274624 1299 577 0 False 499 305 27 {X=0,Y=0,Width=0,Height=0} +27 553 305 0.0334535906363876 0.0333343779284198 0.0334172579537652 0.0333104448004883 0.00211205304003751 0.00199404140692715 2847903 1260496 1299 577 0 False 553 305 27 {X=0,Y=0,Width=0,Height=0} +28 606 305 0.033426937271735 0.0337518192813477 0.0333714808880751 0.0336308842603189 0.00222433427215878 0.00234904208891684 2845634 1276281 1299 577 0 False 606 305 27 {X=0,Y=0,Width=0,Height=0} +29 659 305 0.033368344507131 0.0333131157904563 0.0333104448004883 0.0333104448004883 0.00167870256184175 0.0017345041821784 2840646 1259692 1299 577 0 False 659 305 27 {X=0,Y=0,Width=0,Height=0} +30 712 305 0.0332966776152204 0.0333519112586062 0.033325703822385 0.0333562218661784 0.00161626971850395 0.00166054760642784 2834545 1261159 1299 577 0 False 712 305 27 {X=0,Y=0,Width=0,Height=0} +31 233 357 0.0332997905026743 0.0333085142829866 0.0332646677347982 0.0332036316472114 0.00256294805593792 0.00257686325115597 2834810 1259518 1299 577 0 False 233 357 27 {X=0,Y=0,Width=0,Height=0} +32 287 357 0.0332608852828731 0.0333987461421054 0.0331883726253147 0.0333562218661784 0.00215597196732453 0.00178854205741987 2831498 1262930 1299 577 0 False 287 357 27 {X=0,Y=0,Width=0,Height=0} +33 340 357 0.0334630937531808 0.0336735672089173 0.0334782940413519 0.0336614023041123 0.00201253378329723 0.00214805289991319 2848712 1273322 1299 577 0 False 340 357 27 {X=0,Y=0,Width=0,Height=0} +34 393 358 0.0334114903019166 0.0335137838288483 0.0333714808880751 0.0335393301289387 0.00179368314249345 0.00181370982269169 2844319 1267280 1299 577 0 False 393 358 27 {X=0,Y=0,Width=0,Height=0} +35 446 358 0.0336982166032842 0.0335503049887085 0.0336919203479057 0.0334935530632486 0.00157305768642853 0.00148929259419544 2868728 1268661 1299 577 0 False 446 358 27 {X=0,Y=0,Width=0,Height=0} +36 499 358 0.0335210287000588 0.0337294728801298 0.0335088120851453 0.0338139925230793 0.00177785918032203 0.00168040181039362 2853644 1275436 1299 577 0 False 499 358 27 {X=0,Y=0,Width=0,Height=0} +37 552 358 0.0334459200118313 0.0334963298349976 0.0334172579537652 0.0333714808880751 0.00207064876377597 0.00205152423995848 2847250 1266620 1299 577 0 False 552 358 27 {X=0,Y=0,Width=0,Height=0} +38 606 358 0.033376860897335 0.0335803205690425 0.0333867399099718 0.0335545891508354 0.00192415049188245 0.00183557990702353 2841371 1269796 1299 577 0 False 606 358 27 {X=0,Y=0,Width=0,Height=0} +39 659 358 0.0333129351104514 0.0333963131611444 0.0332951857785916 0.0334019989318685 0.00165467549548024 0.00167099749081044 2835929 1262838 1299 577 0 False 659 358 27 {X=0,Y=0,Width=0,Height=0} +40 712 358 0.033407331954148 0.0334168083811963 0.0333714808880751 0.0334477759975586 0.00149830738649423 0.00159885658992957 2843965 1263613 1299 577 0 False 712 358 27 {X=0,Y=0,Width=0,Height=0} +41 233 410 0.0331122302235177 0.0331755730298242 0.0331578545815213 0.0331425955596246 0.00255101283315122 0.00240726802623506 2818843 1254491 1299 577 0 False 233 410 27 {X=0,Y=0,Width=0,Height=0} +42 286 410 0.0333147910961786 0.0333623043185809 0.0333409628442817 0.0333409628442817 0.00223282608306223 0.00214667272825382 2836087 1261552 1299 577 0 False 286 410 27 {X=0,Y=0,Width=0,Height=0} +43 340 410 0.0335406340176458 0.033267074270314 0.033524071107042 0.0332188906691081 0.00199211333730875 0.00184189166520261 2855313 1257951 1299 577 0 False 340 410 27 {X=0,Y=0,Width=0,Height=0} +44 393 410 0.0334726321102094 0.0335194167086819 0.0334325169756619 0.0334935530632486 0.00198473921643191 0.00207505977333147 2849524 1267493 1299 577 0 False 393 410 27 {X=0,Y=0,Width=0,Height=0} +45 446 410 0.0336163065496385 0.033621046554694 0.0335851071946288 0.0336919203479057 0.00198802211857737 0.00201751528109447 2861755 1271336 1299 577 0 False 446 410 27 {X=0,Y=0,Width=0,Height=0} +46 499 410 0.0336498200134348 0.0334169934993129 0.0336614023041123 0.0333409628442817 0.00196857074133038 0.00197126242122449 2864608 1263620 1299 577 0 False 499 410 27 {X=0,Y=0,Width=0,Height=0} +47 552 410 0.0336191962489354 0.0334140051640021 0.0336614023041123 0.0333562218661784 0.00202832844429598 0.00203757108373957 2862001 1263507 1299 577 0 False 552 410 27 {X=0,Y=0,Width=0,Height=0} +48 606 410 0.0335087533514198 0.0334252973691145 0.0334630350194553 0.0334325169756619 0.00201415079889138 0.0020271618702671 2852599 1263934 1299 577 0 False 606 410 27 {X=0,Y=0,Width=0,Height=0} +49 659 411 0.0334274306350296 0.033520130735703 0.0334172579537652 0.033524071107042 0.00182188633782635 0.00172416363352754 2845676 1267520 1299 577 0 False 659 411 27 {X=0,Y=0,Width=0,Height=0} +50 712 411 0.0332463310656829 0.0335110335025445 0.0332799267566949 0.0335088120851453 0.00154840971112998 0.00159017857563056 2830259 1267176 1299 577 0 False 712 411 27 {X=0,Y=0,Width=0,Height=0} +51 233 462 0.0333390951118093 0.0332942072971181 0.0333562218661784 0.0332494087129015 0.00233390526142853 0.00219004117168518 2838156 1258977 1299 577 0 False 233 462 27 {X=0,Y=0,Width=0,Height=0} +52 286 463 0.0334471886603031 0.033425112250998 0.0334172579537652 0.0334630350194553 0.00194303575337138 0.0018755497700424 2847358 1263927 1299 577 0 False 286 463 27 {X=0,Y=0,Width=0,Height=0} +53 340 463 0.0335008360452163 0.0335421333461329 0.0334935530632486 0.0335698481727321 0.00172976479932116 0.00177631242720645 2851925 1268352 1299 577 0 False 340 463 27 {X=0,Y=0,Width=0,Height=0} +54 393 463 0.0336543072700664 0.0332844224823837 0.0336919203479057 0.0332799267566949 0.00179412327011483 0.00165170237341791 2864990 1258607 1299 577 0 False 393 463 27 {X=0,Y=0,Width=0,Height=0} +55 446 463 0.03366976598663 0.0335962671725151 0.0337071793698024 0.0334935530632486 0.00232920237003779 0.00248544471265885 2866306 1270399 1299 577 0 False 446 463 27 {X=0,Y=0,Width=0,Height=0} +56 499 463 0.0335935413576171 0.0335948126730276 0.0335698481727321 0.0336614023041123 0.00239962870282624 0.00241684344652151 2859817 1270344 1299 577 0 False 499 463 27 {X=0,Y=0,Width=0,Height=0} +57 552 463 0.0335384256295653 0.0336301702332978 0.0335698481727321 0.0335393301289387 0.00211962134058787 0.00213454925504463 2855125 1271681 1299 577 0 False 552 463 27 {X=0,Y=0,Width=0,Height=0} +58 605 463 0.0333810427385939 0.03338885554559 0.0333104448004883 0.0334325169756619 0.00212602296244003 0.00208186863429333 2841727 1262556 1299 577 0 False 605 463 27 {X=0,Y=0,Width=0,Height=0} +59 659 463 0.0335093759289106 0.0335828328863392 0.0334782940413519 0.0335545891508354 0.00197345660921128 0.001960208493514 2852652 1269891 1299 577 0 False 659 463 27 {X=0,Y=0,Width=0,Height=0} +60 712 463 0.033479809371471 0.0335000586427748 0.033524071107042 0.0334172579537652 0.00191537681081157 0.00190581068940405 2850135 1266761 1299 577 0 False 712 463 27 {X=0,Y=0,Width=0,Height=0} +61 233 515 0.0333472943398955 0.0335321898587271 0.0333409628442817 0.0335851071946288 0.00200084819581079 0.0020161426660591 2838854 1267976 1299 577 0 False 233 515 27 {X=0,Y=0,Width=0,Height=0} +62 286 515 0.033267228525232 0.0334209603160971 0.0332951857785916 0.0333104448004883 0.00171911234323711 0.00151648207432765 2832038 1263770 1299 577 0 False 286 515 27 {X=0,Y=0,Width=0,Height=0} +63 340 515 0.0334747582710741 0.033569715945506 0.0334325169756619 0.0336003662165255 0.00157951250546949 0.00145711290243095 2849705 1269395 1299 577 0 False 340 515 27 {X=0,Y=0,Width=0,Height=0} +64 393 515 0.0335696837183006 0.0335572336953583 0.0335545891508354 0.0335698481727321 0.00159059587558124 0.00144324701015093 2857786 1268923 1299 577 0 False 393 515 27 {X=0,Y=0,Width=0,Height=0} +65 446 515 0.0334566447901159 0.0334956686988669 0.0334172579537652 0.0335088120851453 0.00215487800546501 0.00185722758286303 2848163 1266595 1299 577 0 False 446 515 27 {X=0,Y=0,Width=0,Height=0} +66 499 515 0.0335748287926584 0.0334671076180204 0.0335393301289387 0.0334019989318685 0.00255803267144221 0.00259341007147445 2858224 1265515 1299 577 0 False 499 515 27 {X=0,Y=0,Width=0,Height=0} +67 552 516 0.0334707996179724 0.0337079198422688 0.0334782940413519 0.0337376974135958 0.00227251660395379 0.00220379683714733 2849368 1274621 1299 577 0 False 552 516 27 {X=0,Y=0,Width=0,Height=0} +68 605 516 0.0336573496770497 0.0334345797203897 0.0336308842603189 0.0334477759975586 0.00209536747686057 0.00228110535908299 2865249 1264285 1299 577 0 False 605 516 27 {X=0,Y=0,Width=0,Height=0} +69 659 516 0.0333673695272869 0.03363448084087 0.033325703822385 0.0336003662165255 0.00210918008778787 0.00207903318177917 2840563 1271844 1299 577 0 False 659 516 27 {X=0,Y=0,Width=0,Height=0} +70 712 516 0.0333898645441708 0.0334202198436307 0.0333714808880751 0.0334782940413519 0.00200984629546489 0.0019730923128093 2842478 1263742 1299 577 0 False 712 516 27 {X=0,Y=0,Width=0,Height=0} +71 233 568 0.0332520164903157 0.0333099423370289 0.033173113603418 0.033325703822385 0.00218327134630994 0.00230455442607897 2830743 1259572 1299 577 0 False 233 568 27 {X=0,Y=0,Width=0,Height=0} +72 286 568 0.0334034320347718 0.0333119521908663 0.0334019989318685 0.0333409628442817 0.00178022693427582 0.00160599444182033 2843633 1259648 1299 577 0 False 286 568 27 {X=0,Y=0,Width=0,Height=0} +73 339 568 0.0334480814129314 0.0334732429613134 0.0334935530632486 0.033524071107042 0.00168838485085253 0.00166722946365099 2847434 1265747 1299 577 0 False 339 568 27 {X=0,Y=0,Width=0,Height=0} +74 393 568 0.0333833333538901 0.0333024053851389 0.0333562218661784 0.0334172579537652 0.00176650272896923 0.00158525324435592 2841922 1259287 1299 577 0 False 393 568 27 {X=0,Y=0,Width=0,Height=0} +75 446 568 0.0333888425773463 0.0338889653603013 0.0334019989318685 0.0339665827420462 0.00209803142736615 0.0022293052223595 2842391 1281467 1299 577 0 False 446 568 27 {X=0,Y=0,Width=0,Height=0} +76 499 568 0.0334917205710116 0.0337760433091767 0.0334477759975586 0.0337224383916991 0.00258730694258458 0.00283511942734791 2851149 1277197 1299 577 0 False 499 568 27 {X=0,Y=0,Width=0,Height=0} +77 552 568 0.0334093993812872 0.0334674514088084 0.0333104448004883 0.0334019989318685 0.00230074823775416 0.00212874600784249 2844141 1265528 1299 577 0 False 552 568 27 {X=0,Y=0,Width=0,Height=0} +78 605 568 0.0336767083129894 0.033714901439809 0.0336308842603189 0.0337376974135958 0.00208299629360952 0.00208386736811938 2866897 1274885 1299 577 0 False 605 568 27 {X=0,Y=0,Width=0,Height=0} +79 658 568 0.0334663710950662 0.0337131824858692 0.0334325169756619 0.0336308842603189 0.00193978289276763 0.00185375147012207 2848991 1274820 1299 577 0 False 658 568 27 {X=0,Y=0,Width=0,Height=0} +80 712 568 0.0335871863685131 0.0335917714468263 0.0335393301289387 0.0336003662165255 0.00205690743406452 0.00185694869130694 2859276 1270229 1299 577 0 False 712 568 27 {X=0,Y=0,Width=0,Height=0} +81 235 620 0.0334399291718257 0.0354887975045286 0.0333562218661784 0.0350652323186084 0.00201908895561982 0.00305796285417006 2846740 1741993 1299 749 0 True 233 620 31 {X=0,Y=0,Width=0,Height=0} +82 286 620 0.0332576901682034 0.0332036580926566 0.0332494087129015 0.0332494087129015 0.00172435998315632 0.0016151947768934 2831226 1255553 1299 577 0 False 286 620 27 {X=0,Y=0,Width=0,Height=0} +83 339 620 0.0332440874373671 0.033425694050793 0.0332799267566949 0.0333104448004883 0.00176696727894953 0.00204574306825429 2830068 1263949 1299 577 0 False 339 620 27 {X=0,Y=0,Width=0,Height=0} +84 393 620 0.0333378617035729 0.0335004024335628 0.033325703822385 0.0335393301289387 0.00193487929916095 0.00183941675729449 2838051 1266774 1299 577 0 False 393 620 27 {X=0,Y=0,Width=0,Height=0} +85 446 621 0.0336350543548326 0.0332975129777717 0.0335545891508354 0.0332799267566949 0.00208239953053644 0.0021482885849131 2863351 1259102 1299 577 0 False 446 621 27 {X=0,Y=0,Width=0,Height=0} +86 499 621 0.0334832981547684 0.0336050470603309 0.033524071107042 0.0336003662165255 0.00205879300282892 0.00200123469767607 2850432 1270731 1299 577 0 False 499 621 27 {X=0,Y=0,Width=0,Height=0} +87 552 621 0.0335140393867189 0.033602508297589 0.0335545891508354 0.0335393301289387 0.00187126101700385 0.00175422409704178 2853049 1270635 1299 577 0 False 552 621 27 {X=0,Y=0,Width=0,Height=0} +88 605 621 0.0335008712854516 0.0332368471264181 0.0335088120851453 0.0332951857785916 0.00186847677452798 0.00197974852609381 2851928 1256808 1299 577 0 False 605 621 27 {X=0,Y=0,Width=0,Height=0} +89 658 621 0.0333957261699802 0.0334771833326524 0.033325703822385 0.0334477759975586 0.00152905050425203 0.00155913797471566 2842977 1265896 1299 577 0 False 658 621 27 {X=0,Y=0,Width=0,Height=0} +90 712 621 0.0335465543771808 0.0333659273445771 0.033524071107042 0.0334172579537652 0.00179363969330966 0.00188155043199907 2855817 1261689 1299 577 0 False 712 621 27 {X=0,Y=0,Width=0,Height=0} +91 235 673 0.0328463543947187 0.0352257474501492 0.0328068970778973 0.0349584191653315 0.002462431182791 0.00341608118873777 2796209 1729081 1299 749 0 True 233 673 31 {X=0,Y=0,Width=0,Height=0} +92 286 673 0.0332943047727084 0.0331672956054678 0.0333409628442817 0.0331883726253147 0.00191553909673961 0.00167186050701518 2834343 1254178 1299 577 0 False 286 673 27 {X=0,Y=0,Width=0,Height=0} +93 339 673 0.033076085488817 0.0330550346904739 0.0330205233844511 0.0331120775158312 0.00204829331976168 0.00208776135523106 2815766 1249933 1299 577 0 False 339 673 27 {X=0,Y=0,Width=0,Height=0} +94 392 673 0.0332794098999101 0.0333913414174415 0.0332799267566949 0.0333867399099718 0.00195368867947022 0.0018695851953139 2833075 1262650 1299 577 0 False 392 673 27 {X=0,Y=0,Width=0,Height=0} +95 446 673 0.0336493618903755 0.0335804792417139 0.0336156252384222 0.0335851071946288 0.00208800249762715 0.00199270495894081 2864569 1269802 1299 577 0 False 446 673 27 {X=0,Y=0,Width=0,Height=0} +96 499 673 0.0333520635184098 0.0334003328688191 0.0332646677347982 0.0333104448004883 0.00188554054327149 0.00185430239230893 2839260 1262990 1299 577 0 False 499 673 27 {X=0,Y=0,Width=0,Height=0} +97 552 673 0.0333728787507431 0.0334732165158681 0.0333562218661784 0.0334325169756619 0.00158920130616019 0.00142160553627083 2841032 1265746 1299 577 0 False 552 673 27 {X=0,Y=0,Width=0,Height=0} +98 605 673 0.033370823070349 0.0332055357192678 0.0333409628442817 0.0331425955596246 0.00162373968402055 0.00148246655868243 2840857 1255624 1299 577 0 False 605 673 27 {X=0,Y=0,Width=0,Height=0} +99 658 673 0.0334637045839265 0.0333161041257671 0.0334935530632486 0.0332951857785916 0.00153851216635943 0.00150234154803665 2848764 1259805 1299 577 0 False 658 673 27 {X=0,Y=0,Width=0,Height=0} +100 710 674 0.0332799032632047 0.0349764074431772 0.0332646677347982 0.0347142748149844 0.00169142031966893 0.00251627288709915 2833117 1973566 1299 861 0 True 711 674 32 {X=0,Y=0,Width=0,Height=0} diff --git a/src/sensospot_parser/__init__.py b/src/sensospot_parser/__init__.py index 8124da2..9a8cf36 100644 --- a/src/sensospot_parser/__init__.py +++ b/src/sensospot_parser/__init__.py @@ -3,19 +3,43 @@ Parsing the numerical output from Sensovations Sensospot image analysis. """ -__version__ = "1.0.1" +__version__ = "2.0.0" import pathlib +from typing import Union import click import pandas from . import columns # noqa: F401 -from .parser import parse_file, parse_folder # noqa: F401 +from .csv_parser import parse_csv_folder +from .xml_parser import parse_xml_folder DEFAULT_OUTPUT_FILENAME = "collected_data.csv" +PathLike = Union[str, pathlib.Path] + + +def parse_folder(source: PathLike, quiet: bool = False) -> pandas.DataFrame: + """parses an assay result folder + + The function will first try to use an assay results xml file, and will + fall back to parsing csv files if the xml file could not be parsed. + + Args: + folder: path of folder containing the assay result + quiet: skip sanity check for csv files, defaults to False + + Returns: + a pandas data frame with parsed data + """ + try: + return parse_xml_folder(source) + except ValueError: + pass + return parse_csv_folder(source, quiet) + @click.command() @click.argument( @@ -42,18 +66,22 @@ DEFAULT_OUTPUT_FILENAME = "collected_data.csv" "--quiet", is_flag=True, default=False, - help="Ignore Sanity Check", + help="Ignore sanity check for csv file parsing", ) def main(sources, output, quiet=False): """Parses the measurement results of the Sensospot reader The resulting output is either echoed to stdout or saved to a file. + At first parsing the assay result xml file is tried. + I this doesn't work, the fallback is to parse the csv files. """ paths = (pathlib.Path(source) for source in sources) collection = (parse_folder(source, quiet) for source in paths) - result = pandas.concat(collection, ignore_index=True).to_csv( - output, sep="\t", index=False + result = ( + pandas.concat(collection, ignore_index=True) + .reset_index() + .to_csv(output, sep="\t", index=False) ) # if 'output' is None, the call to 'to_csv()' returns the csv as text # if 'output' is not None, 'to_csv()' writes to the file and returns None diff --git a/src/sensospot_parser/columns.py b/src/sensospot_parser/columns.py index 9897d32..5d4391e 100644 --- a/src/sensospot_parser/columns.py +++ b/src/sensospot_parser/columns.py @@ -1,5 +1,7 @@ """ Column name definitions """ +import pandas + # original, unmodified column names POS_X = "Pos.X" POS_Y = "Pos.Y" @@ -121,3 +123,17 @@ INDEX_COLUMNS_POS = ( WELL_ROW, POS_ID, ) + + +def _cleanup_data_columns(data_frame: pandas.DataFrame) -> pandas.DataFrame: + """renames some data columns for consistency and drops unused columns + + Args: + data_frame: pandas DataFrame with parsed measurement data + + Returns: + pandas DataFrame, column names cleaned up + """ + renamed = data_frame.rename(columns=CSV_RENAME_MAP) + surplus_columns = set(renamed.columns) - PARSED_DATA_COLUMN_SET + return renamed.drop(columns=surplus_columns) diff --git a/src/sensospot_parser/parser.py b/src/sensospot_parser/csv_parser.py similarity index 84% rename from src/sensospot_parser/parser.py rename to src/sensospot_parser/csv_parser.py index 73f0656..267bfea 100644 --- a/src/sensospot_parser/parser.py +++ b/src/sensospot_parser/csv_parser.py @@ -1,6 +1,6 @@ """ Sensospot Data Parser -Parsing the numerical output from Sensovations Sensospot image analysis. +Parsing the csv result files from Sensovations Sensospot image analysis. """ import re @@ -12,7 +12,6 @@ import pandas from . import columns from .parameters import add_measurement_parameters -from .recordtime import add_record_time PathLike = Union[str, pathlib.Path] @@ -85,21 +84,7 @@ def _extract_measurement_info(data_file: PathLike) -> FileInfo: return FileInfo(row, column, exposure) -def _cleanup_data_columns(data_frame: pandas.DataFrame) -> pandas.DataFrame: - """renames some data columns for consistency and drops unused columns - - Args: - data_frame: pandas DataFrame with parsed measurement data - - Returns: - pandas DataFrame, column names cleaned up - """ - renamed = data_frame.rename(columns=columns.CSV_RENAME_MAP) - surplus_columns = set(renamed.columns) - columns.PARSED_DATA_COLUMN_SET - return renamed.drop(columns=surplus_columns) - - -def parse_file(data_file: PathLike) -> pandas.DataFrame: +def parse_csv_file(data_file: PathLike) -> pandas.DataFrame: """parses one data file and adds metadata to result will race a ValueError, if metadata could not be extracted @@ -125,10 +110,12 @@ def parse_file(data_file: PathLike) -> pandas.DataFrame: data_frame[columns.EXPOSURE_ID] = measurement_info.exposure data_frame[columns.ANALYSIS_NAME] = data_path.parent.name data_frame[columns.ANALYSIS_IMAGE] = data_path.with_suffix(".tif").name - return _cleanup_data_columns(data_frame) + return columns._cleanup_data_columns(data_frame) -def _parse_file_silenced(data_file: PathLike) -> Optional[pandas.DataFrame]: +def _parse_csv_file_silenced( + data_file: PathLike, +) -> Optional[pandas.DataFrame]: """parses one data file and adds metadata Safety checks are supressed @@ -140,12 +127,14 @@ def _parse_file_silenced(data_file: PathLike) -> Optional[pandas.DataFrame]: pandas data frame with the parsed data or None on error """ try: - return parse_file(data_file) + return parse_csv_file(data_file) except ValueError: return None -def parse_multiple_files(file_list: Sequence[PathLike]) -> pandas.DataFrame: +def parse_multiple_csv_files( + file_list: Sequence[PathLike], +) -> pandas.DataFrame: """parses a list of file paths to one combined data frame Args: @@ -155,7 +144,7 @@ def parse_multiple_files(file_list: Sequence[PathLike]) -> pandas.DataFrame: """ if not file_list: raise ValueError("Empty file list provided") - collection = (_parse_file_silenced(path) for path in file_list) + collection = (_parse_csv_file_silenced(path) for path in file_list) filtered = (frame for frame in collection if frame is not None) data_frame = pandas.concat(filtered, ignore_index=True).reset_index() data_frame[columns.WELL_ROW] = data_frame[columns.WELL_ROW].astype( @@ -206,7 +195,9 @@ def _sanity_check(data_frame: pandas.DataFrame) -> pandas.DataFrame: return data_frame -def parse_folder(folder: PathLike, quiet: bool = False) -> pandas.DataFrame: +def parse_csv_folder( + folder: PathLike, quiet: bool = False +) -> pandas.DataFrame: """parses all csv files in a folder to one large dataframe Will raise an ValueError, if no sensospot data could be found in @@ -222,11 +213,18 @@ def parse_folder(folder: PathLike, quiet: bool = False) -> pandas.DataFrame: folder_path = pathlib.Path(folder) file_list = find_csv_files(folder_path) try: - data_frame = parse_multiple_files(file_list) + data_frame = parse_multiple_csv_files(file_list) except ValueError: raise ValueError(f"No sensospot data found in folder '{folder}'") + data_frame = add_measurement_parameters(data_frame, folder_path) - data_frame = add_record_time(data_frame, folder_path) + + # The csv parser is only used if the xml analysis file is not present + # the xml file would hold the Analysis.Datetime value + data_frame[columns.ANALYSIS_DATETIME] = None + + data_frame = columns._cleanup_data_columns(data_frame) + if quiet: return data_frame return _sanity_check(data_frame) diff --git a/src/sensospot_parser/recordtime.py b/src/sensospot_parser/recordtime.py deleted file mode 100644 index 6bda6c8..0000000 --- a/src/sensospot_parser/recordtime.py +++ /dev/null @@ -1,98 +0,0 @@ -""" Sensospot Data Parser - -Parsing the numerical output from Sensovations Sensospot image analysis. -""" - -import pathlib -from typing import Tuple, Union, Iterable, Optional - -import numpy -import pandas -from defusedxml import ElementTree - -from . import columns - -PathLike = Union[str, pathlib.Path] - - -def _search_records_file(folder: PathLike) -> Optional[pathlib.Path]: - """searches for a the records xml file in a folder - - Args: - folder: directory to search - - Returns: - the path to the settings file or None - """ - folder_path = pathlib.Path(folder) - files = (item for item in folder_path.iterdir() if item.suffix == ".xsl") - xls_files = [path for path in files if not path.name.startswith(".")] - if len(xls_files) == 1: - xml_file = xls_files[0].with_suffix(".xml") - if xml_file.is_file(): - return xml_file - return None - - -def _iter_records(records_file: PathLike) -> Iterable[Tuple[str, str]]: - """parses the information from a records file - - Args: - records_file: path to the records file - - Yields: - tuples, filename as first element and the datetime string as second - """ - records_path = pathlib.Path(records_file) - tree = ElementTree.parse(records_path) - for channel_config in tree.findall(".//*[ImageFileName]"): - image_tag = channel_config.find("ImageFileName") - image_name = None if image_tag is None else image_tag.text - datetime_tag = channel_config.find("Timestamp") - datetime_str = None if datetime_tag is None else datetime_tag.text - yield image_name, datetime_str - - -def _parse_records_file(records_file: PathLike) -> pandas.DataFrame: - """parses the information from a records file - - Args: - records_file: path to the records file - - Returns: - pandas data frame with the parsed information - """ - data = _iter_records(records_file) - data_frame = pandas.DataFrame( - data, columns=[columns.ANALYSIS_IMAGE, columns.ANALYSIS_DATETIME] - ) - data_frame[columns.ANALYSIS_DATETIME] = pandas.to_datetime( - data_frame[columns.ANALYSIS_DATETIME] - ) - return data_frame - - -def add_record_time( - measurement: pandas.DataFrame, folder: PathLike -) -> pandas.DataFrame: - """adds the recoding datetime to the data frame - - The returned DataFrame will contain one more column for parsed datetime - - If the parameters could not be foundor do not match up with the - measurement data, the additional collumn will contain NaN. - - Argumentss: - measurement: the parsed measurement data - folder: the folder of the measurement data - - Returns: - the measurement data with parameters added - """ - record_path = _search_records_file(folder) - if record_path is None: - measurement[columns.ANALYSIS_DATETIME] = numpy.NAN - return measurement - - data_frame = _parse_records_file(record_path) - return measurement.merge(data_frame, how="left", on=columns.ANALYSIS_IMAGE) diff --git a/src/sensospot_parser/xml_parser.py b/src/sensospot_parser/xml_parser.py new file mode 100644 index 0000000..d097944 --- /dev/null +++ b/src/sensospot_parser/xml_parser.py @@ -0,0 +1,192 @@ +""" Sensospot Data Parser + +Parsing the csv result files from Sensovations Sensospot image analysis. +""" + +import pathlib +from typing import Union, Optional +from datetime import datetime + +import pandas +from defusedxml import ElementTree + +from . import columns, parameters + +PathLike = Union[str, pathlib.Path] + +RESULT_TAG_TYPES = { + "System.Int32": int, + "System.UInt32": int, + "System.Double": float, + "System.Boolean": lambda x: x.lower() == "true", +} + +DATETIME_XML_FORMAT = "%m/%d/%Y %I:%M:%S %p" + + +class ParserTarget: + """Class to parse the event stream emitted by ElementTree.XMLParser + + The methods "start()", "data()", "end()" and "close()" are defined + according to the requirements of the ElementTree.XMLParser + """ + + def __init__(self): + """initialization of the object instance""" + self.collected = [] + self._current = {} + self._data_func = None + + def start(self, tag: str, attributes: dict[str:str]) -> None: + """start of an xml tag + + The sensovation software uses sometimes the attributes of a tag to + store relevant data and sometimes the data part of the xml tree. + + This methods extracts the data from the attributes or preparse the + parsing of the data section + + Args: + tag: the name of the tag + attributes: the attributes of the tag as a dict + """ + if tag == "ScanJobResult": + self._current[columns.ANALYSIS_NAME] = attributes["ID"] + elif tag == "AssayResult": + well = attributes["ID"] + self._current[columns.WELL_NAME] = attributes["ID"] + self._current[columns.WELL_ROW] = well[0] + self._current[columns.WELL_COLUMN] = int(well[1:]) + elif tag.startswith("ChannelConfig"): + self._current[columns.EXPOSURE_ID] = int(tag[13:]) + elif tag == "Spot": + self._current[columns.POS_ID] = int(attributes["ID"]) + elif tag == "Result": + self._result_attributes_parser(attributes) + elif tag == "Timestamp": + self._data_func = self._data_timestamp_parser + elif tag == "ImageFileName": + self._data_func = self._data_image_name_parser + + def _result_attributes_parser(self, data: dict[str:str]) -> None: + """parses the attributes of the "Result" tag""" + label = data["Label"] + converter = RESULT_TAG_TYPES.get(data["Type"], str) + self._current[label] = converter(data["Value"]) + + def _data_timestamp_parser(self, data: str) -> None: + """parses the data section of a "Timestamp" tag""" + timestamp = datetime.strptime(data.strip(), DATETIME_XML_FORMAT) + self._current[columns.ANALYSIS_DATETIME] = timestamp + + def _data_image_name_parser(self, data: str) -> None: + """parses the data section of a "ImageFileName" tag""" + self._current[columns.ANALYSIS_IMAGE] = data.strip() + + def data(self, data: str) -> None: + """parses the data section of the xml tree + + The data sections in the xml tree of the sensovation software are + not often used. + + The "start()" method sets a parser for the upcoming data section and + this parser is removed after it was called. + """ + if self._data_func: + self._data_func(data) + self._data_func = None + + def end(self, tag: str) -> None: + """the end of a tag is reached + + If it is the end of a "Spot" tag, a copy of the current data is added + to the collected data property. + """ + if tag == "Spot": + spot_data = dict(self._current) + self.collected.append(spot_data) + + def closed(self) -> None: + """the end of the xml file is reached""" + pass + + +def _find_result_xml_file(folder: PathLike) -> Optional[pathlib.Path]: + """searches a results folder for the analysis xml file + + There may be multiple xml files in the folder, but only one xsl file with + the same (base) name as the xml file we are looking for. This is why we + first look for the xsl file and then derive the path from the xml file + from it. + + Args: + folder: path of folder containing data files + + Returns: + Path to xml assay result file or None if it could not be found + """ + source = pathlib.Path(folder) + files = (i for i in source.iterdir() if i.is_file()) + not_hidden = (f for f in files if not f.name.startswith(".")) + xsl_files = [f for f in not_hidden if f.suffix == ".xsl"] + if len(xsl_files) != 1: + # multiple xsl files in a folder + # this does not to be a "normal" results folder + return None + xsl_file = xsl_files[0] + xml_file = xsl_file.with_suffix(".xml") + return xml_file if xml_file.is_file() else None + + +def parse_xml_file(xml_file: PathLike) -> pandas.DataFrame: + """parses an assay result xml file into a pandas data frame + + Will raise a ValueError on a non-parsable xml file. + + Args: + xml_file: path to the xml file + + Returns: + A pandas DataFrame with the parsed data + + Raises: + ValueError if the xml file could not be parsed + """ + xml_file = pathlib.Path(xml_file) + if not xml_file.is_file(): + raise ValueError("Xml file does not exist") + + target = ParserTarget() + parser = ElementTree.DefusedXMLParser(target=target) + + try: + parser.feed(xml_file.read_text()) + except (IndexError, KeyError, ValueError, TypeError) as e: + raise ValueError("Malformed data in xml file") from e + + data_frame = pandas.DataFrame(data=target.collected).reset_index() + if data_frame.empty: + raise ValueError("Could not parse assay results xml file") + + return columns._cleanup_data_columns(data_frame) + + +def parse_xml_folder(folder: PathLike) -> pandas.DataFrame: + """parses the xml result file in a folder to one large dataframe + + Will raise an ValueError, if no sensospot data could be found in + the folder + + Args: + folder: path of folder containing data files + + Returns: + a pandas data frame with parsed data + """ + folder = pathlib.Path(folder) + xml_file = _find_result_xml_file(folder) + if xml_file is None: + raise ValueError("Could not find assay results xml file") + data_frame = parse_xml_file(xml_file) + data_frame = parameters.add_measurement_parameters(data_frame, folder) + return columns._cleanup_data_columns(data_frame) diff --git a/tests/conftest.py b/tests/conftest.py index 19d2ce6..3c575a1 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -5,9 +5,10 @@ from pathlib import Path import pandas import pytest -EXAMPLE_DIR_WO_PARAMS = "mtp_wo_parameters" -EXAMPLE_DIR_WITH_PARAMS = "mtp_with_parameters" -EXAMPLE_DIR_WITH_RECORD = "record_time" +EXAMPLE_DIR_CSV_WO_PARAMS = "csv_wo_parameters" +EXAMPLE_DIR_CSV_WITH_PARAMS = "csv_with_parameters" +EXAMPLE_DIR_XML_WO_PARAMS = "xml_wo_parameters" +EXAMPLE_DIR_XML_WITH_PARAMS = "xml_with_parameters" @pytest.fixture(scope="session") @@ -18,7 +19,7 @@ def example_dir(request): @pytest.fixture def example_file(example_dir): - data_dir = example_dir / EXAMPLE_DIR_WO_PARAMS + data_dir = example_dir / EXAMPLE_DIR_CSV_WO_PARAMS yield data_dir / "160218_SG2-013-001_Regen1_Cy3-100_1_A1_1.csv" @@ -93,16 +94,16 @@ def normalization_data_frame(): @pytest.fixture(scope="session") def parsed_data_frame_with_params(example_dir): - from sensospot_parser.parser import parse_folder + from sensospot_parser.csv_parser import parse_csv_folder - return parse_folder(example_dir / EXAMPLE_DIR_WITH_PARAMS) + return parse_csv_folder(example_dir / EXAMPLE_DIR_CSV_WITH_PARAMS) @pytest.fixture(scope="session") def parsed_data_frame_without_params(example_dir): - from sensospot_parser.parser import parse_folder + from sensospot_parser.csv_parser import parse_csv_folder - return parse_folder(example_dir / EXAMPLE_DIR_WO_PARAMS) + return parse_csv_folder(example_dir / EXAMPLE_DIR_CSV_WO_PARAMS) @pytest.fixture diff --git a/tests/test_columns.py b/tests/test_columns.py new file mode 100644 index 0000000..499c221 --- /dev/null +++ b/tests/test_columns.py @@ -0,0 +1,15 @@ +def test_cleanup_data_columns(): + from pandas import DataFrame + + from sensospot_parser.columns import _cleanup_data_columns + + columns = ["Rect.", "Contour", " ID ", "Found", "Dia."] + data = {col: [i] for i, col in enumerate(columns)} + data_frame = DataFrame(data=data) + + result = _cleanup_data_columns(data_frame) + + assert set(result.columns) == {"Pos.Id", "Spot.Found", "Spot.Diameter"} + assert result["Pos.Id"][0] == 2 + assert result["Spot.Found"][0] == 3 + assert result["Spot.Diameter"][0] == 4 diff --git a/tests/test_parser.py b/tests/test_csv_parser.py similarity index 65% rename from tests/test_parser.py rename to tests/test_csv_parser.py index c9659b1..371bf7f 100644 --- a/tests/test_parser.py +++ b/tests/test_csv_parser.py @@ -4,28 +4,24 @@ import numpy import pytest -from .conftest import ( - EXAMPLE_DIR_WO_PARAMS, - EXAMPLE_DIR_WITH_PARAMS, - EXAMPLE_DIR_WITH_RECORD, -) +from .conftest import EXAMPLE_DIR_CSV_WO_PARAMS, EXAMPLE_DIR_CSV_WITH_PARAMS @pytest.mark.parametrize( "sub_dir, file_name", [ ( - EXAMPLE_DIR_WO_PARAMS, + EXAMPLE_DIR_CSV_WO_PARAMS, "160218_SG2-013-001_Regen1_Cy3-100_1_A1_1.csv", ), ( - EXAMPLE_DIR_WITH_PARAMS, + EXAMPLE_DIR_CSV_WITH_PARAMS, "160210_SG2-010-001_Regen_cy3100_1_A1_1.csv", ), ], ) def test_parse_csv(example_dir, sub_dir, file_name): - from sensospot_parser.parser import _parse_csv + from sensospot_parser.csv_parser import _parse_csv result = _parse_csv(example_dir / sub_dir / file_name) @@ -60,7 +56,7 @@ def test_parse_csv(example_dir, sub_dir, file_name): def test_parse_csv_no_array(example_dir): - from sensospot_parser.parser import _parse_csv + from sensospot_parser.csv_parser import _parse_csv result = _parse_csv(example_dir / "no_array_A1_1.csv") @@ -74,7 +70,7 @@ def test_parse_csv_no_array(example_dir): def test_guess_decimal_separator_returns_correct_separator(input, expected): from io import StringIO - from sensospot_parser.parser import _guess_decimal_separator + from sensospot_parser.csv_parser import _guess_decimal_separator handle = StringIO(f"header\n{input}\n") result = _guess_decimal_separator(handle) @@ -85,7 +81,7 @@ def test_guess_decimal_separator_returns_correct_separator(input, expected): def test_guess_decimal_separator_rewinds_handle(): from io import StringIO - from sensospot_parser.parser import _guess_decimal_separator + from sensospot_parser.csv_parser import _guess_decimal_separator handle = StringIO("\n".join(["header", "data_line"])) _guess_decimal_separator(handle) @@ -94,7 +90,7 @@ def test_guess_decimal_separator_rewinds_handle(): def test_well_regex_ok(): - from sensospot_parser.parser import REGEX_WELL + from sensospot_parser.csv_parser import REGEX_WELL result = REGEX_WELL.match("AbC123") @@ -104,7 +100,7 @@ def test_well_regex_ok(): @pytest.mark.parametrize("input", ["", "A", "1", "1A", "-1", "A-"]) def test_well_regex_no_match(input): - from sensospot_parser.parser import REGEX_WELL + from sensospot_parser.csv_parser import REGEX_WELL result = REGEX_WELL.match(input) @@ -116,7 +112,7 @@ def test_well_regex_no_match(input): [("A1_1.csv", ("A", 1, 1)), ("test/measurement_1_H12_2", ("H", 12, 2))], ) def test_extract_measurement_info_ok(filename, expected): - from sensospot_parser.parser import _extract_measurement_info + from sensospot_parser.csv_parser import _extract_measurement_info result = _extract_measurement_info(filename) @@ -125,33 +121,16 @@ def test_extract_measurement_info_ok(filename, expected): @pytest.mark.parametrize("filename", ["wrong_exposure_A1_B", "no_well_XX_1"]) def test_extract_measurement_info_raises_error(filename): - from sensospot_parser.parser import _extract_measurement_info + from sensospot_parser.csv_parser import _extract_measurement_info with pytest.raises(ValueError): _extract_measurement_info(filename) -def test_cleanup_data_columns(): - from pandas import DataFrame - - from sensospot_parser.parser import _cleanup_data_columns - - columns = ["Rect.", "Contour", " ID ", "Found", "Dia."] - data = {col: [i] for i, col in enumerate(columns)} - data_frame = DataFrame(data=data) - - result = _cleanup_data_columns(data_frame) - - assert set(result.columns) == {"Pos.Id", "Spot.Found", "Spot.Diameter"} - assert result["Pos.Id"][0] == 2 - assert result["Spot.Found"][0] == 3 - assert result["Spot.Diameter"][0] == 4 - - def test_parse_file(example_file): - from sensospot_parser.parser import parse_file + from sensospot_parser.csv_parser import parse_csv_file - result = parse_file(example_file) + result = parse_csv_file(example_file) columns = { "Pos.Id", @@ -185,26 +164,28 @@ def test_parse_file(example_file): assert result["Well.Row"][0] == "A" assert result["Well.Column"][0] == 1 assert result["Exposure.Id"][0] == 1 - assert result["Analysis.Name"][0] == "mtp_wo_parameters" + assert result["Analysis.Name"][0] == "csv_wo_parameters" file_name = "160218_SG2-013-001_Regen1_Cy3-100_1_A1_1.tif" assert result["Analysis.Image"][0] == file_name def test_parse_file_raises_error(example_dir): - from sensospot_parser.parser import parse_file + from sensospot_parser.csv_parser import parse_csv_file csv_file = ( - example_dir / EXAMPLE_DIR_WITH_PARAMS / "should_raise_value_error.csv" + example_dir + / EXAMPLE_DIR_CSV_WITH_PARAMS + / "should_raise_value_error.csv" ) with pytest.raises(ValueError): - parse_file(csv_file) + parse_csv_file(csv_file) def test_parse_file_silenced_returns_data_frame(example_file): - from sensospot_parser.parser import _parse_file_silenced + from sensospot_parser.csv_parser import _parse_csv_file_silenced - result = _parse_file_silenced(example_file) + result = _parse_csv_file_silenced(example_file) assert result["Well.Row"][0] == "A" assert result["Well.Column"][0] == 1 @@ -212,13 +193,15 @@ def test_parse_file_silenced_returns_data_frame(example_file): def test_parse_file_silenced_returns_none_on_error(example_dir): - from sensospot_parser.parser import _parse_file_silenced + from sensospot_parser.csv_parser import _parse_csv_file_silenced csv_file = ( - example_dir / EXAMPLE_DIR_WITH_PARAMS / "should_raise_value_error.csv" + example_dir + / EXAMPLE_DIR_CSV_WITH_PARAMS + / "should_raise_value_error.csv" ) - result = _parse_file_silenced(csv_file) + result = _parse_csv_file_silenced(csv_file) assert result is None @@ -234,12 +217,12 @@ def test_parse_file_silenced_returns_none_on_error(example_dir): ], ) def testparse_multiple_files_ok(example_dir, file_list): - from sensospot_parser.parser import parse_multiple_files + from sensospot_parser.csv_parser import parse_multiple_csv_files - sub_dir = example_dir / EXAMPLE_DIR_WO_PARAMS + sub_dir = example_dir / EXAMPLE_DIR_CSV_WO_PARAMS files = [sub_dir / file for file in file_list] - data_frame = parse_multiple_files(files) + data_frame = parse_multiple_csv_files(files) print(data_frame["Exposure.Id"].unique()) assert len(data_frame) == 100 * len(files) @@ -247,27 +230,27 @@ def testparse_multiple_files_ok(example_dir, file_list): def testparse_multiple_files_empty_file_list(): - from sensospot_parser.parser import parse_multiple_files + from sensospot_parser.csv_parser import parse_multiple_csv_files with pytest.raises(ValueError): - parse_multiple_files([]) + parse_multiple_csv_files([]) def testparse_multiple_files_empty_array(example_dir): - from sensospot_parser.parser import parse_multiple_files + from sensospot_parser.csv_parser import parse_multiple_csv_files files = [example_dir / "no_array_A1_1.csv"] - data_frame = parse_multiple_files(files) + data_frame = parse_multiple_csv_files(files) print(data_frame["Exposure.Id"].unique()) assert len(data_frame) == 1 def test_find_csv_files(example_dir): - from sensospot_parser.parser import find_csv_files + from sensospot_parser.csv_parser import find_csv_files - result = list(find_csv_files(example_dir / EXAMPLE_DIR_WITH_PARAMS)) + result = list(find_csv_files(example_dir / EXAMPLE_DIR_CSV_WITH_PARAMS)) assert len(result) == (36 * 3) + 1 # 36 wells, 3 exposure + one error file assert all(str(item).endswith(".csv") for item in result) @@ -275,9 +258,9 @@ def test_find_csv_files(example_dir): def test_parse_folder_no_datetime_records(example_dir): - from sensospot_parser.parser import parse_folder + from sensospot_parser.csv_parser import parse_csv_folder - data_frame = parse_folder(example_dir / EXAMPLE_DIR_WITH_PARAMS) + data_frame = parse_csv_folder(example_dir / EXAMPLE_DIR_CSV_WITH_PARAMS) assert len(data_frame) == 36 * 3 * 100 assert len(data_frame["Well.Row"].unique()) == 3 @@ -289,31 +272,19 @@ def test_parse_folder_no_datetime_records(example_dir): assert len(data_frame["Analysis.Datetime"].unique()) == 1 -def test_parse_folder_with_datetime_records(example_dir): - from sensospot_parser.parser import parse_folder - - data_frame = parse_folder(example_dir / EXAMPLE_DIR_WITH_RECORD) - - assert len(data_frame) == 8 * 4 * 100 - assert len(data_frame["Well.Row"].unique()) == 2 - assert len(data_frame["Well.Column"].unique()) == 4 - assert len(data_frame["Exposure.Id"].unique()) == 4 - assert len(data_frame["Pos.Id"].unique()) == 100 - assert len(data_frame["Parameters.Channel"].unique()) == 1 - assert len(data_frame["Parameters.Time"].unique()) == 1 - assert len(data_frame["Analysis.Datetime"].unique()) == 8 - - def test_sanity_check_ok(example_dir): - from sensospot_parser.parser import _sanity_check, parse_multiple_files + from sensospot_parser.csv_parser import ( + _sanity_check, + parse_multiple_csv_files, + ) - sub_dir = example_dir / EXAMPLE_DIR_WO_PARAMS + sub_dir = example_dir / EXAMPLE_DIR_CSV_WO_PARAMS file_list = [ "160218_SG2-013-001_Regen1_Cy3-100_1_A1_1.csv", "160218_SG2-013-001_Regen1_Cy3-100_1_A1_2.csv", ] files = [sub_dir / file for file in file_list] - data_frame = parse_multiple_files(files) + data_frame = parse_multiple_csv_files(files) result = _sanity_check(data_frame) @@ -321,15 +292,18 @@ def test_sanity_check_ok(example_dir): def test_sanity_check_raises_value_error(example_dir): - from sensospot_parser.parser import _sanity_check, parse_multiple_files + from sensospot_parser.csv_parser import ( + _sanity_check, + parse_multiple_csv_files, + ) - sub_dir = example_dir / EXAMPLE_DIR_WO_PARAMS + sub_dir = example_dir / EXAMPLE_DIR_CSV_WO_PARAMS file_list = [ "160218_SG2-013-001_Regen1_Cy3-100_1_A1_1.csv", "160218_SG2-013-001_Regen1_Cy3-100_1_A1_2.csv", ] files = [sub_dir / file for file in file_list] - data_frame = parse_multiple_files(files) + data_frame = parse_multiple_csv_files(files) data_frame = data_frame.drop(data_frame.index[1]) with pytest.raises(ValueError): diff --git a/tests/test_parameters.py b/tests/test_parameters.py index b91fd92..ea291e4 100644 --- a/tests/test_parameters.py +++ b/tests/test_parameters.py @@ -1,12 +1,12 @@ import pandas -from .conftest import EXAMPLE_DIR_WO_PARAMS, EXAMPLE_DIR_WITH_PARAMS +from .conftest import EXAMPLE_DIR_CSV_WO_PARAMS, EXAMPLE_DIR_CSV_WITH_PARAMS def test_search_params_file_ok(example_dir): from sensospot_parser.parameters import _search_params_file - result = _search_params_file(example_dir / EXAMPLE_DIR_WITH_PARAMS) + result = _search_params_file(example_dir / EXAMPLE_DIR_CSV_WITH_PARAMS) assert result.suffix == ".svexp" @@ -14,7 +14,7 @@ def test_search_params_file_ok(example_dir): def test_search_params_file_no_parameters_folder(example_dir): from sensospot_parser.parameters import _search_params_file - result = _search_params_file(example_dir / EXAMPLE_DIR_WO_PARAMS) + result = _search_params_file(example_dir / EXAMPLE_DIR_CSV_WO_PARAMS) assert result is None @@ -36,7 +36,7 @@ def test_parse_channel_info(example_dir): _parse_measurement_params, ) - params = _search_params_file(example_dir / EXAMPLE_DIR_WITH_PARAMS) + params = _search_params_file(example_dir / EXAMPLE_DIR_CSV_WITH_PARAMS) result = _parse_measurement_params(params) expected = pandas.DataFrame( @@ -53,7 +53,7 @@ def test_parse_channel_info(example_dir): def test_get_measurement_params_file_found(example_dir): from sensospot_parser.parameters import get_measurement_params - result = get_measurement_params(example_dir / EXAMPLE_DIR_WITH_PARAMS) + result = get_measurement_params(example_dir / EXAMPLE_DIR_CSV_WITH_PARAMS) expected = pandas.DataFrame( { @@ -69,7 +69,7 @@ def test_get_measurement_params_file_found(example_dir): def test_get_measurement_params_file_not_found(example_dir): from sensospot_parser.parameters import get_measurement_params - result = get_measurement_params(example_dir / EXAMPLE_DIR_WO_PARAMS) + result = get_measurement_params(example_dir / EXAMPLE_DIR_CSV_WO_PARAMS) assert result is None @@ -77,7 +77,7 @@ def test_get_measurement_params_file_not_found(example_dir): def test_add_measurement_parameters_with_params_file(exposure_df, example_dir): from sensospot_parser.parameters import add_measurement_parameters - folder = example_dir / EXAMPLE_DIR_WITH_PARAMS + folder = example_dir / EXAMPLE_DIR_CSV_WITH_PARAMS exposure_df = add_measurement_parameters(exposure_df, folder) expected = [(1, "green", 100), (2, "red", 150), (3, "red", 15)] @@ -93,7 +93,7 @@ def test_add_measurement_parameters_without_params_file( ): from sensospot_parser.parameters import add_measurement_parameters - folder = example_dir / EXAMPLE_DIR_WO_PARAMS + folder = example_dir / EXAMPLE_DIR_CSV_WO_PARAMS exposure_df = add_measurement_parameters(exposure_df, folder) for exposure_id in range(1, 4): diff --git a/tests/test_recordtime.py b/tests/test_recordtime.py deleted file mode 100644 index 6a998da..0000000 --- a/tests/test_recordtime.py +++ /dev/null @@ -1,98 +0,0 @@ -import pandas -import pytest - -from .conftest import EXAMPLE_DIR_WITH_PARAMS, EXAMPLE_DIR_WITH_RECORD - - -@pytest.fixture -def file_list(example_dir): - import pathlib - - path = pathlib.Path(example_dir / EXAMPLE_DIR_WITH_RECORD) - tifs = (i.with_suffix(".tif") for i in path.glob("*.csv")) - return [i.name for i in tifs] - - -def test_search_records_file_ok(example_dir): - from sensospot_parser.recordtime import _search_records_file - - result = _search_records_file(example_dir / EXAMPLE_DIR_WITH_RECORD) - - assert result.suffix == ".xml" - - -def test_search_records_file_not_found(example_dir): - from sensospot_parser.recordtime import _search_records_file - - result = _search_records_file(example_dir / EXAMPLE_DIR_WITH_PARAMS) - - assert result is None - - -def test_iter_records(example_dir): - from sensospot_parser.recordtime import _iter_records, _search_records_file - - path = _search_records_file(example_dir / EXAMPLE_DIR_WITH_RECORD) - - result = list(_iter_records(path)) - - assert ( - result[0][0] == "220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_A01_1.tif" - ) - assert result[0][1] == "3/7/2022 5:31:47 PM" - assert ( - result[-1][0] == "220307_SN0801_CHECK-01_SL1,11,9,14_MS_1_1_D04_4.tif" - ) - assert result[-1][1] == "3/7/2022 5:33:41 PM" - - -def test_parse_records_file(example_dir): - from sensospot_parser.recordtime import ( - _parse_records_file, - _search_records_file, - ) - - path = _search_records_file(example_dir / EXAMPLE_DIR_WITH_RECORD) - - result = _parse_records_file(path) - - assert isinstance(result, pandas.DataFrame) - assert list(result.columns) == ["Analysis.Image", "Analysis.Datetime"] - assert len(result) == 64 - - -def test_add_record_time_ok(example_dir, file_list): - from sensospot_parser.recordtime import add_record_time - - df = pandas.DataFrame(file_list, columns=["Analysis.Image"]) - - result = add_record_time(df, example_dir / EXAMPLE_DIR_WITH_RECORD) - - assert len(df) == len(result) - assert list(result.columns) == ["Analysis.Image", "Analysis.Datetime"] - assert not result["Analysis.Datetime"].hasnans - - -def test_add_record_time_unknown_file(example_dir, file_list): - from sensospot_parser.recordtime import add_record_time - - extended_list = file_list + ["unknown file"] - df = pandas.DataFrame(extended_list, columns=["Analysis.Image"]) - - result = add_record_time(df, example_dir / EXAMPLE_DIR_WITH_RECORD) - - assert len(df) == len(result) - assert list(result.columns) == ["Analysis.Image", "Analysis.Datetime"] - assert result["Analysis.Datetime"].hasnans - - -def test_add_record_time_no_record_xml(example_dir, file_list): - from sensospot_parser.recordtime import add_record_time - - df = pandas.DataFrame(file_list, columns=["Analysis.Image"]) - - result = add_record_time(df, example_dir / EXAMPLE_DIR_WITH_PARAMS) - - assert len(df) == len(result) - assert list(result.columns) == ["Analysis.Image", "Analysis.Datetime"] - assert result["Analysis.Datetime"].hasnans diff --git a/tests/test_sensospot_data.py b/tests/test_sensospot_data.py index 549de0d..61a83a3 100644 --- a/tests/test_sensospot_data.py +++ b/tests/test_sensospot_data.py @@ -1,8 +1,50 @@ """ testing the __ini__ file """ +import pytest + +from .conftest import EXAMPLE_DIR_CSV_WO_PARAMS, EXAMPLE_DIR_XML_WO_PARAMS def test_import_api(): from sensospot_parser import main # noqa: F401 from sensospot_parser import columns # noqa: F401 - from sensospot_parser import parse_file # noqa: F401 from sensospot_parser import parse_folder # noqa: F401 + from sensospot_parser import parse_csv_folder # noqa: F401 + from sensospot_parser import parse_xml_folder # noqa: F401 + + +def test_compare_xml_to_csv(example_dir): + import pandas + + from sensospot_parser import parse_csv_folder, parse_xml_folder + + folder = example_dir / EXAMPLE_DIR_XML_WO_PARAMS + + csv_df = parse_csv_folder(folder) + xml_df = parse_xml_folder(folder) + + assert isinstance(csv_df, pandas.DataFrame) + assert isinstance(xml_df, pandas.DataFrame) + + assert len(csv_df) == len(xml_df) + assert set(csv_df["Well.Name"]) == set(xml_df["Well.Name"]) + assert set(csv_df["Exposure.Id"]) == set(xml_df["Exposure.Id"]) + assert set(csv_df["Spot.Diameter"]) == set(xml_df["Spot.Diameter"]) + + +@pytest.mark.parametrize( + "folder, length, hasnans", + [ + (EXAMPLE_DIR_XML_WO_PARAMS, 6400, False), + (EXAMPLE_DIR_CSV_WO_PARAMS, 28800, True), + ], +) +def test_parse_folder_switches_parser(example_dir, folder, length, hasnans): + import pandas + + from sensospot_parser import parse_folder + + result = parse_folder(example_dir / folder) + + assert isinstance(result, pandas.DataFrame) + assert len(result) == length + assert result["Analysis.Datetime"].hasnans == hasnans diff --git a/tests/test_xml_parser.py b/tests/test_xml_parser.py new file mode 100644 index 0000000..a485ddf --- /dev/null +++ b/tests/test_xml_parser.py @@ -0,0 +1,341 @@ +from datetime import datetime + +import pytest + +from .conftest import EXAMPLE_DIR_XML_WO_PARAMS, EXAMPLE_DIR_XML_WITH_PARAMS + + +class DummyDataFunc: + def __init__(self, as_bool): + self.data = None + self.as_bool = as_bool + + def __call__(self, data): + self.data = data + + def __bool__(self): + return self.as_bool + + +def test_parser_target_init(): + from sensospot_parser.xml_parser import ParserTarget + + target = ParserTarget() + + assert target.collected == [] + assert target._current == {} + assert target._data_func is None + + +@pytest.mark.parametrize( + "tag, attributes, expected", + [ + ("UnknownTag", {"ID": "something"}, {}), + ( + "ScanJobResult", + {"ID": "scan job 1"}, + {"Analysis.Name": "scan job 1"}, + ), + ( + "AssayResult", + {"ID": "C03"}, + {"Well.Name": "C03", "Well.Row": "C", "Well.Column": 3}, + ), + ("ChannelConfig1", {}, {"Exposure.Id": 1}), + ("Spot", {"ID": "456"}, {"Pos.Id": 456}), + ( + "Result", + {"Label": "a label", "Type": "Unknown", "Value": "a value"}, + {"a label": "a value"}, + ), + ], +) +@pytest.mark.parametrize("additionals", [{}, {"Ignored": "value"}]) +def test_parser_target_start_simple_attributes( + tag, attributes, additionals, expected +): + from sensospot_parser.xml_parser import ParserTarget + + target = ParserTarget() + attributes.update(additionals) + + target.start(tag, attributes) # stateful operation + + assert target._current == expected + assert target._data_func is None + + +def test_parser_target_start_timestamp(): + from sensospot_parser.xml_parser import ParserTarget + + target = ParserTarget() + target.start("Timestamp", {}) + + assert target._data_func == target._data_timestamp_parser + + +def test_parser_target_start_image_file_name(): + from sensospot_parser.xml_parser import ParserTarget + + target = ParserTarget() + target.start("ImageFileName", {}) + + assert target._data_func == target._data_image_name_parser + + +@pytest.mark.parametrize( + "data_type, value, expected", + [ + ("unknown type", 1, "1"), + ("System.Int32", "12", 12), + ("System.UInt32", "23", 23), + ("System.Double", "4.56", 4.56), + ("System.Boolean", "true", True), + ("System.Boolean", "True", True), + ("System.Boolean", "Xrue", False), + ], +) +def test_parser_target_result_attributes_parser(data_type, value, expected): + from sensospot_parser.xml_parser import ParserTarget + + target = ParserTarget() + data = {"Label": "some label", "Type": data_type, "Value": value} + + target._result_attributes_parser(data) # stateful operation + + assert target._current == {"some label": expected} + assert type(target._current["some label"]) == type(expected) + + +@pytest.mark.parametrize( + "value, expected", + [ + ("3/7/2022 5:31:47 PM", datetime(2022, 3, 7, 17, 31, 47)), + ("03/7/2022 5:31:47 PM", datetime(2022, 3, 7, 17, 31, 47)), + ("3/07/2022 5:31:47 PM", datetime(2022, 3, 7, 17, 31, 47)), + ("03/07/2022 5:31:47 PM", datetime(2022, 3, 7, 17, 31, 47)), + ("3/7/2022 5:3:47 PM", datetime(2022, 3, 7, 17, 3, 47)), + ("3/7/2022 5:31:4 PM", datetime(2022, 3, 7, 17, 31, 4)), + ("3/7/2022 5:31:47 pm", datetime(2022, 3, 7, 17, 31, 47)), + ("3/7/2022 5:31:47 AM", datetime(2022, 3, 7, 5, 31, 47)), + ], +) +def test_parser_target_data_timestamp_parser(value, expected): + from sensospot_parser.xml_parser import ParserTarget + + target = ParserTarget() + + target._data_timestamp_parser(value) # stateful operation + + assert target._current == {"Analysis.Datetime": expected} + + +def test_parser_target_data_image_name_parser(): + from sensospot_parser.xml_parser import ParserTarget + + target = ParserTarget() + + target._data_image_name_parser(" some file path ") # stateful operation + + assert target._current == {"Analysis.Image": "some file path"} + + +def test_parser_target_data_does_not_call_function(): + from sensospot_parser.xml_parser import ParserTarget + + target = ParserTarget() + dummy = DummyDataFunc(as_bool=False) + target._data_func = dummy + + target.data("some data") # the NotImplementedError is not raised + + assert dummy.data is None + + +def test_parser_target_data_does_call_function(): + from sensospot_parser.xml_parser import ParserTarget + + target = ParserTarget() + dummy = DummyDataFunc(as_bool=True) + target._data_func = dummy + + target.data("some data") # stateful operation + + assert dummy.data == "some data" + + +def test_parser_target_data_reacts_on_spot(): + from sensospot_parser.xml_parser import ParserTarget + + target = ParserTarget() + target._current = {"some current": "data values"} + + target.end("Spot") # stateful operation + + assert target.collected == [{"some current": "data values"}] + assert target.collected[0] is not target._current + + +def test_parser_target_data_does_only_react_on_spot(): + from sensospot_parser.xml_parser import ParserTarget + + target = ParserTarget() + target._current = {"some current": "data values"} + + target.end("NonSpotTag") # stateful operation + + assert target.collected == [] + + +def test_parser_target_closed(): + from sensospot_parser.xml_parser import ParserTarget + + target = ParserTarget() + + target.closed() # stateful operation, must be callable + + +def test_find_result_xml_file_ok(tmp_path): + from sensospot_parser.xml_parser import _find_result_xml_file + + xls_file = tmp_path / "result.xsl" + xls_file.touch() + xml_file = tmp_path / "result.xml" + xml_file.touch() + + print(list(tmp_path.iterdir())) + + result = _find_result_xml_file(tmp_path) + + assert result == xml_file + + +def test_find_result_xml_file_no_matching_xml_file(tmp_path): + from sensospot_parser.xml_parser import _find_result_xml_file + + xls_file = tmp_path / "result.xsl" + xls_file.touch() + xml_file = tmp_path / "other.xml" + xml_file.touch() + + result = _find_result_xml_file(tmp_path) + + assert result is None + + +def test_find_result_xml_file_no_xsl_file(tmp_path): + from sensospot_parser.xml_parser import _find_result_xml_file + + xml_file = tmp_path / "result.xml" + xml_file.touch() + + result = _find_result_xml_file(tmp_path) + + assert result is None + + +def test_find_result_xml_file_multiple_xsl_files(tmp_path): + from sensospot_parser.xml_parser import _find_result_xml_file + + xls_file = tmp_path / "result.xsl" + xls_file.touch() + surplus_file = tmp_path / "surplus.xsl" + surplus_file.touch() + xml_file = tmp_path / "result.xml" + xml_file.touch() + + result = _find_result_xml_file(tmp_path) + + assert result is None + + +def test_find_result_hidden_xsl_file(tmp_path): + from sensospot_parser.xml_parser import _find_result_xml_file + + xls_file = tmp_path / ".result.xsl" + xls_file.touch() + xml_file = tmp_path / ".result.xml" + xml_file.touch() + + print(list(tmp_path.iterdir())) + + result = _find_result_xml_file(tmp_path) + + assert result is None + + +def test_parse_xml_file_ok(example_dir): + import pandas + + from sensospot_parser.xml_parser import ( + parse_xml_file, + _find_result_xml_file, + ) + + folder = example_dir / EXAMPLE_DIR_XML_WO_PARAMS + xml_file = _find_result_xml_file(folder) + + result = parse_xml_file(xml_file) + + assert isinstance(result, pandas.DataFrame) + assert len(result) == 4 * 4 * 4 * 100 + assert set(result["Well.Row"]) == set("ABCD") + assert set(result["Well.Column"]) == {1, 2, 3, 4} + assert set(result["Exposure.Id"]) == {1, 2, 3, 4} + assert min(result["Spot.Diameter"]) == 22 + assert max(result["Spot.Diameter"]) == 34 + assert "Parameters.Time" not in result + + +@pytest.mark.parametrize( + "file_name, message", + [ + ("not_existing.xml", "Xml file does not exist"), + ("incomplete.xml", "Could not parse assay results xml file"), + ("malformed_data.xml", "Malformed data in xml file"), + ], +) +def test_parse_xml_file_raies_error(file_name, message, example_dir): + from sensospot_parser.xml_parser import parse_xml_file + + xml_file = example_dir / file_name + + with pytest.raises(ValueError) as e: + parse_xml_file(xml_file) + assert message in str(e) + + +def test_parse_xml_folder_with_params(example_dir): + import pandas + + from sensospot_parser.xml_parser import parse_xml_folder + + folder = example_dir / EXAMPLE_DIR_XML_WITH_PARAMS + + result = parse_xml_folder(folder) + + assert isinstance(result, pandas.DataFrame) + assert len(result) == 4 * 4 * 4 * 100 + assert not result["Parameters.Time"].hasnans + + +def test_parse_xml_folder_without_params(example_dir): + import pandas + + from sensospot_parser.xml_parser import parse_xml_folder + + folder = example_dir / EXAMPLE_DIR_XML_WO_PARAMS + + result = parse_xml_folder(folder) + + assert isinstance(result, pandas.DataFrame) + assert len(result) == 4 * 4 * 4 * 100 + assert result["Parameters.Time"].hasnans + + +def test_parse_xml_folder_non_existing_xml_file(tmp_path): + from sensospot_parser.xml_parser import parse_xml_folder + + with pytest.raises(ValueError) as e: + parse_xml_folder(tmp_path) + assert "Could not find assay results xml file" in str(e)