From e6d24d223a33d24655afcf7e5b93b21403dc5136 Mon Sep 17 00:00:00 2001 From: linglp Date: Fri, 13 Jan 2023 15:47:45 -0500 Subject: [PATCH 01/36] add code to test api endpoints --- api-test.py | 244 ++++++++++++++++++ duration_cal.txt | 2 + .../synapse_storage_manifest_patient.csv | 2 + 3 files changed, 248 insertions(+) create mode 100644 api-test.py create mode 100644 duration_cal.txt create mode 100644 test-manifests/synapse_storage_manifest_patient.csv diff --git a/api-test.py b/api-test.py new file mode 100644 index 0000000..e226ac2 --- /dev/null +++ b/api-test.py @@ -0,0 +1,244 @@ +import time +import requests +import datetime +import concurrent.futures +from concurrent.futures import ThreadPoolExecutor +from numbers import Number +import os +from typing import Callable + +EXAMPLE_SCHEMA_URL = "https://raw.githubusercontent.com/Sage-Bionetworks/schematic/develop/tests/data/example.model.jsonld" +DATA_FLOW_SCHEMA_URL = "https://raw.githubusercontent.com/Sage-Bionetworks/data_flow/dev/inst/data_flow_component.jsonld" +CONCURRENT_THREADS = 4 +RUN_TOTAL_TIMES_PER_ENDPOINT = 3 + + +def fetch(url: str, params: dict): + return requests.get(url, params=params) + + +def send_post_request_with_file(url: str, params: dict): + return requests.post( + url, + params=params, + files={ + "file_name": open( + "test-manifests/synapse_storage_manifest_patient.csv", "rb" + ) + }, + ) + + +def get_token(): + token = os.environ.get("TOKEN") + if token == "": + return LookupError("Please provide token of asset store") + else: + return token + + +def cal_time_api_call(url: str, params: dict, request_type="get"): + start_time = time.time() + with ThreadPoolExecutor() as executor: + if request_type == "get": + futures = [ + executor.submit(fetch, url, params) for x in range(CONCURRENT_THREADS) + ] + else: + futures = [ + executor.submit(send_post_request_with_file, url, params) + for x in range(CONCURRENT_THREADS) + ] + + for f in concurrent.futures.as_completed(futures): + try: + status_code = f.result() + print("status code", status_code) + except Exception as exc: + print(f"generated an exception:{exc}") + + time_diff = time.time() - start_time + time.sleep(2) + print(f"duration time of running {url}", time_diff) + return time_diff + + +def write_to_txt_file(name_of_endpoint: str, duration: Number): + with open("duration_cal.txt", "a") as f: + f.write(f"{name_of_endpoint}: {duration}") + f.write("\n") + f.close() + + +def execute_api_call(url, params, name_of_endpoint): + time_diff = cal_time_api_call(url, params) + + # write_to_txt_file(name_of_endpoint, time_diff) + + +def calculate_avg_run_time_per_endpoint( + function_to_run: Callable, name_of_endpoint: str +): + sum_time = 0 + for x in range(RUN_TOTAL_TIMES_PER_ENDPOINT): + run_time = function_to_run() + sum_time = sum_time + run_time + avg_time = sum_time / RUN_TOTAL_TIMES_PER_ENDPOINT + write_to_txt_file(name_of_endpoint, avg_time) + + +## defining endpoints to test +def find_class_specific_property_req(): + base_url = "https://schematic.dnt-dev.sagebase.org/v1/explorer/find_class_specific_properties" + params = {"schema_url": EXAMPLE_SCHEMA_URL, "schema_class": "MolecularEntity"} + time_diff = cal_time_api_call(base_url, params) + return time_diff + + +def get_node_dependencies_req(): + base_url = ( + "https://schematic.dnt-dev.sagebase.org/v1/explorer/get_node_dependencies" + ) + params = { + "schema_url": EXAMPLE_SCHEMA_URL, + "source_node": "Patient", + } + # execute_api_call(base_url, params, '/explorer/get_node_dependencies') + time_diff = cal_time_api_call(base_url, params) + return time_diff + + +def get_datatype_manifest_req(): + base_url = "https://schematic.dnt-dev.sagebase.org/v1/get/datatype/manifest" + input_token = get_token() + params = { + "input_token": input_token, + "asset_view": "syn23643253", + "manifest_id": "syn23643253", + } + time_diff = cal_time_api_call(base_url, params) + return time_diff + + +def get_manifest_generate_req(): + base_url = "https://schematic.dnt-dev.sagebase.org/v1/manifest/generate" + params = { + "schema_url": EXAMPLE_SCHEMA_URL, + "title": "Example", + "data_type": ["Patient", "Biospecimen"], + "use_annotations": False, + } + time_diff = cal_time_api_call(base_url, params) + return time_diff + + +def download_manifest_req(): + base_url = "https://schematic.dnt-dev.sagebase.org/v1/manifest/download" + token = get_token() + params = { + "input_token": token, + "asset_view": "syn28559058", + "dataset_id": "syn28268700", + "as_json": True, + } + time_diff = cal_time_api_call(base_url, params) + return time_diff + + +def populate_manifest_req(): + base_url = "https://schematic.dnt-dev.sagebase.org/v1/manifest/populate" + params = { + "schema_url": EXAMPLE_SCHEMA_URL, + "data_type": "Patient", + "title": "Example", + "return_excel": True, + } + time_diff = cal_time_api_call(base_url, params) + return time_diff + + +def model_component_requirements(): + base_url = "https://schematic.dnt-dev.sagebase.org/v1/model/component-requirements" + params = { + "schema_url": EXAMPLE_SCHEMA_URL, + "source_component": "Biospecimen", + "as_graph": False, + } + time_diff = cal_time_api_call(base_url, params) + return time_diff + + +def model_submit_req(): + ### Can't concurrently modify the same object + base_url = "https://schematic.dnt-dev.sagebase.org/v1/model/submit" + token = get_token() + params = { + "schema_url": EXAMPLE_SCHEMA_URL, + "data_type": "Patient", + "dataset_id": "syn45794337", + "manifest_record_type": "table", + "restrict_rules": False, + "input_token": token, + "asset_view": "syn23643253", + } + time_diff = cal_time_api_call(base_url, params, request_type="post-file") + return time_diff + + +def model_submit_big_manifest(): + base_url = "https://schematic.dnt-dev.sagebase.org/v1/model/submit" + token = get_token() + params = { + "schema_url": DATA_FLOW_SCHEMA_URL, + "data_type": "DataFlow", + "dataset_id": "syn38212343", + "manifest_record_type": "table", + "restrict_rules": False, + "input_token": token, + "asset_view": "syn20446927", + } + r = requests.post( + base_url, + params=params, + files={ + "file_name": open( + "test-manifests/synapse_storage_manifest_dataflow.csv", "rb" + ) + }, + ) + print(r.status_code) + + +def model_validate_req(): + base_url = "https://schematic.dnt-dev.sagebase.org/v1/model/validate" + params = { + "schema_url": EXAMPLE_SCHEMA_URL, + "data_type": "Patient", + } + + time_diff = cal_time_api_call(base_url, params, request_type="post") + return time_diff + + +def execute_all_endpoints(): + with open("duration_cal.txt", "w") as f: + f.write( + f"when sending {CONCURRENT_THREADS} requests at the same time, we calculate the avg duration time of finishing running the endpoint" + ) + f.write("\n") + f.close() + + # calculate_avg_run_time_per_endpoint(find_class_specific_property_req, "explorer/find_class_specific_property") + # calculate_avg_run_time_per_endpoint(get_node_dependencies_req, "explorer/get_node_dependencies") + # calculate_avg_run_time_per_endpoint(get_datatype_manifest_req, "get/datatype/manifest") + # calculate_avg_run_time_per_endpoint(get_manifest_generate_req, "manifest/generate") + # calculate_avg_run_time_per_endpoint(download_manifest_req, "manifest/download") + # calculate_avg_run_time_per_endpoint(populate_manifest_req, "manifest/populate") + # calculate_avg_run_time_per_endpoint( + # model_component_requirements, "model/component-requirements" + # ) + # calculate_avg_run_time_per_endpoint(model_submit_req, "manifest/submit") + calculate_avg_run_time_per_endpoint(model_validate_req, "model/validate") + + +execute_all_endpoints() diff --git a/duration_cal.txt b/duration_cal.txt new file mode 100644 index 0000000..7f36f8f --- /dev/null +++ b/duration_cal.txt @@ -0,0 +1,2 @@ +when sending 4 requests at the same time, we calculate the avg duration time of finishing running the endpoint +model/validate: 30.876177231470745 diff --git a/test-manifests/synapse_storage_manifest_patient.csv b/test-manifests/synapse_storage_manifest_patient.csv new file mode 100644 index 0000000..3e4cd38 --- /dev/null +++ b/test-manifests/synapse_storage_manifest_patient.csv @@ -0,0 +1,2 @@ +Patient ID,Sex,Year of Birth,Diagnosis,Component,Cancer Type,Family History,Uuid,entityId +123,Female,,Healthy,Patient,Breast,"Breast, Lung",803e9d13-1e7e-4c8c-bee5-2a64e9742d56, From 43d4079e9a7ccf18bedc2240fddfc36d7463ea57 Mon Sep 17 00:00:00 2001 From: linglp Date: Fri, 13 Jan 2023 15:49:36 -0500 Subject: [PATCH 02/36] only run aws deployment script if pushed to main --- .github/workflows/docker_deploy.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/docker_deploy.yml b/.github/workflows/docker_deploy.yml index cfa1368..51eeb42 100644 --- a/.github/workflows/docker_deploy.yml +++ b/.github/workflows/docker_deploy.yml @@ -5,6 +5,8 @@ name: Deploy to AWS on: push: + branches: + - main env: IMAGE_PATH_AND_TAG: ghcr.io/sage-bionetworks/schematic:0.1.11-beta From 309c05519f554a4e62e81d8e591a4c040869efc4 Mon Sep 17 00:00:00 2001 From: linglp Date: Fri, 13 Jan 2023 18:16:26 -0500 Subject: [PATCH 03/36] add storage assets table --- api-test.py | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/api-test.py b/api-test.py index e226ac2..9a409af 100644 --- a/api-test.py +++ b/api-test.py @@ -52,8 +52,9 @@ def cal_time_api_call(url: str, params: dict, request_type="get"): for f in concurrent.futures.as_completed(futures): try: - status_code = f.result() - print("status code", status_code) + status_code = f.result().status_code + if status_code != 200: + print("Error code: ", status_code) except Exception as exc: print(f"generated an exception:{exc}") @@ -220,6 +221,14 @@ def model_validate_req(): return time_diff +def storage_assets_table_req(): + base_url = "https://schematic.dnt-dev.sagebase.org/v1/storage/assets/tables" + token = get_token() + params = {"input_token": token, "asset_view": "syn23643253", "return_type": "json"} + time_diff = cal_time_api_call(base_url, params) + return time_diff + + def execute_all_endpoints(): with open("duration_cal.txt", "w") as f: f.write( @@ -238,7 +247,8 @@ def execute_all_endpoints(): # model_component_requirements, "model/component-requirements" # ) # calculate_avg_run_time_per_endpoint(model_submit_req, "manifest/submit") - calculate_avg_run_time_per_endpoint(model_validate_req, "model/validate") + # calculate_avg_run_time_per_endpoint(model_validate_req, "model/validate") + calculate_avg_run_time_per_endpoint(storage_assets_table_req, "storage/asset/table") execute_all_endpoints() From 456ab186b45ecf04eefb97e8b60fc83134e4063e Mon Sep 17 00:00:00 2001 From: linglp Date: Tue, 17 Jan 2023 14:05:52 -0500 Subject: [PATCH 04/36] add using wrk --- api-test.py | 61 +++++++++++++++++++++-- wrk/get-node-dependencies.py | 91 +++++++++++++++++++++++++++++++++++ wrk/get-node-dependencies.txt | 70 +++++++++++++++++++++++++++ 3 files changed, 219 insertions(+), 3 deletions(-) create mode 100644 wrk/get-node-dependencies.py create mode 100644 wrk/get-node-dependencies.txt diff --git a/api-test.py b/api-test.py index 9a409af..9de6a92 100644 --- a/api-test.py +++ b/api-test.py @@ -9,7 +9,7 @@ EXAMPLE_SCHEMA_URL = "https://raw.githubusercontent.com/Sage-Bionetworks/schematic/develop/tests/data/example.model.jsonld" DATA_FLOW_SCHEMA_URL = "https://raw.githubusercontent.com/Sage-Bionetworks/data_flow/dev/inst/data_flow_component.jsonld" -CONCURRENT_THREADS = 4 +CONCURRENT_THREADS = 40 RUN_TOTAL_TIMES_PER_ENDPOINT = 3 @@ -229,6 +229,51 @@ def storage_assets_table_req(): return time_diff +def storage_dataset_files_req(): + base_url = "https://schematic.dnt-dev.sagebase.org/v1/storage/dataset/files" + token = get_token() + params = { + "input_token": token, + "asset_view": "syn23643253", + "dataset_id": "syn23643250", + "full_path": True, + } + time_diff = cal_time_api_call(base_url, params) + return time_diff + + +def storage_project_datasets_req(): + base_url = "https://schematic.dnt-dev.sagebase.org/v1/storage/project/datasets" + token = get_token() + params = { + "input_token": token, + "asset_view": "syn23643253", + "project_id": "syn26251192", + } + time_diff = cal_time_api_call(base_url, params) + return time_diff + + +def storage_project_manifest_req(): + base_url = "https://schematic.dnt-dev.sagebase.org/v1/storage/project/manifests" + token = get_token() + params = { + "input_token": token, + "project_id": "syn30988314", + "asset_view": "syn23643253", + } + time_diff = cal_time_api_call(base_url, params) + return time_diff + + +def storage_project_req(): + base_url = "https://schematic.dnt-dev.sagebase.org/v1/storage/projects" + token = get_token() + params = {"input_token": token, "asset_view": "syn23643253"} + time_diff = cal_time_api_call(base_url, params) + return time_diff + + def execute_all_endpoints(): with open("duration_cal.txt", "w") as f: f.write( @@ -238,7 +283,9 @@ def execute_all_endpoints(): f.close() # calculate_avg_run_time_per_endpoint(find_class_specific_property_req, "explorer/find_class_specific_property") - # calculate_avg_run_time_per_endpoint(get_node_dependencies_req, "explorer/get_node_dependencies") + calculate_avg_run_time_per_endpoint( + get_node_dependencies_req, "explorer/get_node_dependencies" + ) # calculate_avg_run_time_per_endpoint(get_datatype_manifest_req, "get/datatype/manifest") # calculate_avg_run_time_per_endpoint(get_manifest_generate_req, "manifest/generate") # calculate_avg_run_time_per_endpoint(download_manifest_req, "manifest/download") @@ -248,7 +295,15 @@ def execute_all_endpoints(): # ) # calculate_avg_run_time_per_endpoint(model_submit_req, "manifest/submit") # calculate_avg_run_time_per_endpoint(model_validate_req, "model/validate") - calculate_avg_run_time_per_endpoint(storage_assets_table_req, "storage/asset/table") + # calculate_avg_run_time_per_endpoint(storage_assets_table_req, "storage/asset/table") + # calculate_avg_run_time_per_endpoint(storage_dataset_files_req, "storage/dataset/files") + # calculate_avg_run_time_per_endpoint( + # storage_project_datasets_req, "storage/project/datasets" + # ) + # calculate_avg_run_time_per_endpoint( + # storage_project_manifest_req, "storage/project/manifests" + # ) + # calculate_avg_run_time_per_endpoint(storage_project_req, "storage/projects") execute_all_endpoints() diff --git a/wrk/get-node-dependencies.py b/wrk/get-node-dependencies.py new file mode 100644 index 0000000..73de7c6 --- /dev/null +++ b/wrk/get-node-dependencies.py @@ -0,0 +1,91 @@ +import subprocess +import sys + +# -c, --connections Connections to keep open +# -d, --duration Duration of test +# -t, --threads Number of threads to use + +# -s, --script Load Lua script file +# -H, --header Add header to request +# --latency Print latency statistics +# --timeout Socket/request timeout +# -v, --version Print version details + + +# subprocess + +result_one = subprocess.run( + [ + "wrk", + "-c1", + "-d30", + "-t1", + "--latency", + "https://schematic.dnt-dev.sagebase.org/v1/explorer/get_node_dependencies?schema_url=https%3A%2F%2Fraw.githubusercontent.com%2FSage-Bionetworks%2Fschematic%2Fdevelop%2Ftests%2Fdata%2Fexample.model.jsonld&source_node=Patient&return_display_names=true&return_schema_ordered=true", + ], + stdout=subprocess.PIPE, +) + + +result_two = subprocess.run( + [ + "wrk", + "-c5", + "-d30", + "-t1", + "--latency", + "https://schematic.dnt-dev.sagebase.org/v1/explorer/get_node_dependencies?schema_url=https%3A%2F%2Fraw.githubusercontent.com%2FSage-Bionetworks%2Fschematic%2Fdevelop%2Ftests%2Fdata%2Fexample.model.jsonld&source_node=Patient&return_display_names=true&return_schema_ordered=true", + ], + stdout=subprocess.PIPE, +) + + +result_three = subprocess.run( + [ + "wrk", + "-c10", + "-d30", + "-t1", + "--latency", + "https://schematic.dnt-dev.sagebase.org/v1/explorer/get_node_dependencies?schema_url=https%3A%2F%2Fraw.githubusercontent.com%2FSage-Bionetworks%2Fschematic%2Fdevelop%2Ftests%2Fdata%2Fexample.model.jsonld&source_node=Patient&return_display_names=true&return_schema_ordered=true", + ], + stdout=subprocess.PIPE, +) + +result_four = subprocess.run( + [ + "wrk", + "-c20", + "-d30", + "-t1", + "--latency", + "https://schematic.dnt-dev.sagebase.org/v1/explorer/get_node_dependencies?schema_url=https%3A%2F%2Fraw.githubusercontent.com%2FSage-Bionetworks%2Fschematic%2Fdevelop%2Ftests%2Fdata%2Fexample.model.jsonld&source_node=Patient&return_display_names=true&return_schema_ordered=true", + ], + stdout=subprocess.PIPE, +) + + +result_five = subprocess.run( + [ + "wrk", + "-c40", + "-d30", + "--timeout", + "100s", + "-t1", + "--latency", + "https://schematic.dnt-dev.sagebase.org/v1/explorer/get_node_dependencies?schema_url=https%3A%2F%2Fraw.githubusercontent.com%2FSage-Bionetworks%2Fschematic%2Fdevelop%2Ftests%2Fdata%2Fexample.model.jsonld&source_node=Patient&return_display_names=true&return_schema_ordered=true", + ], + stdout=subprocess.PIPE, +) + +with open("get-node-dependencies.txt", "w") as writer: + writer.write(result_one.stdout.decode("utf-8")) + writer.write("\n") + writer.write(result_two.stdout.decode("utf-8")) + writer.write("\n") + writer.write(result_three.stdout.decode("utf-8")) + writer.write("\n") + writer.write(result_four.stdout.decode("utf-8")) + writer.write("\n") + writer.write(result_five.stdout.decode("utf-8")) diff --git a/wrk/get-node-dependencies.txt b/wrk/get-node-dependencies.txt new file mode 100644 index 0000000..4dd42eb --- /dev/null +++ b/wrk/get-node-dependencies.txt @@ -0,0 +1,70 @@ +Running 30s test @ https://schematic.dnt-dev.sagebase.org/v1/explorer/get_node_dependencies?schema_url=https%3A%2F%2Fraw.githubusercontent.com%2FSage-Bionetworks%2Fschematic%2Fdevelop%2Ftests%2Fdata%2Fexample.model.jsonld&source_node=Patient&return_display_names=true&return_schema_ordered=true + 1 threads and 1 connections + Thread Stats Avg Stdev Max +/- Stdev + Latency 81.94ms 51.00ms 493.09ms 95.56% + Req/Sec 13.15 5.16 20.00 57.09% + Latency Distribution + 50% 67.81ms + 75% 74.71ms + 90% 110.39ms + 99% 373.51ms + 391 requests in 30.05s, 106.53KB read +Requests/sec: 13.01 +Transfer/sec: 3.54KB + +Running 30s test @ https://schematic.dnt-dev.sagebase.org/v1/explorer/get_node_dependencies?schema_url=https%3A%2F%2Fraw.githubusercontent.com%2FSage-Bionetworks%2Fschematic%2Fdevelop%2Ftests%2Fdata%2Fexample.model.jsonld&source_node=Patient&return_display_names=true&return_schema_ordered=true + 1 threads and 5 connections + Thread Stats Avg Stdev Max +/- Stdev + Latency 310.93ms 150.88ms 915.74ms 85.87% + Req/Sec 18.59 9.83 49.00 72.89% + Latency Distribution + 50% 290.30ms + 75% 311.52ms + 90% 503.56ms + 99% 827.48ms + 496 requests in 30.08s, 135.14KB read +Requests/sec: 16.49 +Transfer/sec: 4.49KB + +Running 30s test @ https://schematic.dnt-dev.sagebase.org/v1/explorer/get_node_dependencies?schema_url=https%3A%2F%2Fraw.githubusercontent.com%2FSage-Bionetworks%2Fschematic%2Fdevelop%2Ftests%2Fdata%2Fexample.model.jsonld&source_node=Patient&return_display_names=true&return_schema_ordered=true + 1 threads and 10 connections + Thread Stats Avg Stdev Max +/- Stdev + Latency 588.85ms 220.09ms 1.40s 78.30% + Req/Sec 19.00 10.95 50.00 79.45% + Latency Distribution + 50% 512.35ms + 75% 613.63ms + 90% 985.17ms + 99% 1.21s + 500 requests in 30.04s, 136.23KB read + Socket errors: connect 0, read 0, write 0, timeout 1 +Requests/sec: 16.64 +Transfer/sec: 4.54KB + +Running 30s test @ https://schematic.dnt-dev.sagebase.org/v1/explorer/get_node_dependencies?schema_url=https%3A%2F%2Fraw.githubusercontent.com%2FSage-Bionetworks%2Fschematic%2Fdevelop%2Ftests%2Fdata%2Fexample.model.jsonld&source_node=Patient&return_display_names=true&return_schema_ordered=true + 1 threads and 20 connections + Thread Stats Avg Stdev Max +/- Stdev + Latency 1.19s 268.16ms 1.94s 61.84% + Req/Sec 18.45 9.70 48.00 70.48% + Latency Distribution + 50% 1.11s + 75% 1.41s + 90% 1.59s + 99% 1.82s + 490 requests in 30.08s, 133.51KB read +Requests/sec: 16.29 +Transfer/sec: 4.44KB + +Running 30s test @ https://schematic.dnt-dev.sagebase.org/v1/explorer/get_node_dependencies?schema_url=https%3A%2F%2Fraw.githubusercontent.com%2FSage-Bionetworks%2Fschematic%2Fdevelop%2Ftests%2Fdata%2Fexample.model.jsonld&source_node=Patient&return_display_names=true&return_schema_ordered=true + 1 threads and 40 connections + Thread Stats Avg Stdev Max +/- Stdev + Latency 2.33s 308.40ms 3.37s 73.57% + Req/Sec 19.27 11.56 58.00 83.72% + Latency Distribution + 50% 2.41s + 75% 2.51s + 90% 2.60s + 99% 3.01s + 488 requests in 30.09s, 132.96KB read +Requests/sec: 16.22 +Transfer/sec: 4.42KB From ea3853634443efc44964a967c2c35c597e34d9db Mon Sep 17 00:00:00 2001 From: linglp Date: Tue, 17 Jan 2023 14:14:19 -0500 Subject: [PATCH 05/36] /get_node_dependencies endpoint avg run time --- duration_cal.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/duration_cal.txt b/duration_cal.txt index 7f36f8f..444946e 100644 --- a/duration_cal.txt +++ b/duration_cal.txt @@ -1,2 +1,2 @@ -when sending 4 requests at the same time, we calculate the avg duration time of finishing running the endpoint -model/validate: 30.876177231470745 +when sending 40 requests at the same time, we calculate the avg duration time of finishing running the endpoint +explorer/get_node_dependencies: 2.737501382827759 From 107af7eccbf2785c15d969404e34f3937b0eaa1e Mon Sep 17 00:00:00 2001 From: linglp Date: Thu, 19 Jan 2023 13:12:59 -0500 Subject: [PATCH 06/36] add comment --- api-test.py | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/api-test.py b/api-test.py index 9de6a92..d2b4384 100644 --- a/api-test.py +++ b/api-test.py @@ -10,7 +10,7 @@ EXAMPLE_SCHEMA_URL = "https://raw.githubusercontent.com/Sage-Bionetworks/schematic/develop/tests/data/example.model.jsonld" DATA_FLOW_SCHEMA_URL = "https://raw.githubusercontent.com/Sage-Bionetworks/data_flow/dev/inst/data_flow_component.jsonld" CONCURRENT_THREADS = 40 -RUN_TOTAL_TIMES_PER_ENDPOINT = 3 +RUN_TOTAL_TIMES_PER_ENDPOINT = 3 # use at least 10 def fetch(url: str, params: dict): @@ -286,7 +286,9 @@ def execute_all_endpoints(): calculate_avg_run_time_per_endpoint( get_node_dependencies_req, "explorer/get_node_dependencies" ) - # calculate_avg_run_time_per_endpoint(get_datatype_manifest_req, "get/datatype/manifest") + # calculate_avg_run_time_per_endpoint( + # get_datatype_manifest_req, "get/datatype/manifest" + # ) # calculate_avg_run_time_per_endpoint(get_manifest_generate_req, "manifest/generate") # calculate_avg_run_time_per_endpoint(download_manifest_req, "manifest/download") # calculate_avg_run_time_per_endpoint(populate_manifest_req, "manifest/populate") @@ -296,7 +298,9 @@ def execute_all_endpoints(): # calculate_avg_run_time_per_endpoint(model_submit_req, "manifest/submit") # calculate_avg_run_time_per_endpoint(model_validate_req, "model/validate") # calculate_avg_run_time_per_endpoint(storage_assets_table_req, "storage/asset/table") - # calculate_avg_run_time_per_endpoint(storage_dataset_files_req, "storage/dataset/files") + # calculate_avg_run_time_per_endpoint( + # storage_dataset_files_req, "storage/dataset/files" + # ) # calculate_avg_run_time_per_endpoint( # storage_project_datasets_req, "storage/project/datasets" # ) From e40c061044c1f416ba33bfaae905118333fdd2f3 Mon Sep 17 00:00:00 2001 From: linglp Date: Thu, 26 Jan 2023 12:42:15 -0500 Subject: [PATCH 07/36] update testing manifest/generate --- api-test.py | 21 +++++++++++++-------- duration_cal.txt | 4 ++-- 2 files changed, 15 insertions(+), 10 deletions(-) diff --git a/api-test.py b/api-test.py index d2b4384..e4f77e2 100644 --- a/api-test.py +++ b/api-test.py @@ -9,8 +9,9 @@ EXAMPLE_SCHEMA_URL = "https://raw.githubusercontent.com/Sage-Bionetworks/schematic/develop/tests/data/example.model.jsonld" DATA_FLOW_SCHEMA_URL = "https://raw.githubusercontent.com/Sage-Bionetworks/data_flow/dev/inst/data_flow_component.jsonld" -CONCURRENT_THREADS = 40 -RUN_TOTAL_TIMES_PER_ENDPOINT = 3 # use at least 10 +CONCURRENT_THREADS = 5 + +RUN_TOTAL_TIMES_PER_ENDPOINT = 1 # use at least 10 def fetch(url: str, params: dict): @@ -115,19 +116,23 @@ def get_datatype_manifest_req(): params = { "input_token": input_token, "asset_view": "syn23643253", - "manifest_id": "syn23643253", + "manifest_id": "syn27600110", } time_diff = cal_time_api_call(base_url, params) return time_diff def get_manifest_generate_req(): - base_url = "https://schematic.dnt-dev.sagebase.org/v1/manifest/generate" + # base_url = "https://schematic.dnt-dev.sagebase.org/v1/manifest/generate" + base_url = "http://localhost:80/v1/manifest/generate" + input_token = get_token() params = { "schema_url": EXAMPLE_SCHEMA_URL, "title": "Example", "data_type": ["Patient", "Biospecimen"], + # "dataset_id": "syn35294937", "use_annotations": False, + # "input_token": input_token, } time_diff = cal_time_api_call(base_url, params) return time_diff @@ -283,13 +288,13 @@ def execute_all_endpoints(): f.close() # calculate_avg_run_time_per_endpoint(find_class_specific_property_req, "explorer/find_class_specific_property") - calculate_avg_run_time_per_endpoint( - get_node_dependencies_req, "explorer/get_node_dependencies" - ) + # calculate_avg_run_time_per_endpoint( + # get_node_dependencies_req, "explorer/get_node_dependencies" + # ) # calculate_avg_run_time_per_endpoint( # get_datatype_manifest_req, "get/datatype/manifest" # ) - # calculate_avg_run_time_per_endpoint(get_manifest_generate_req, "manifest/generate") + calculate_avg_run_time_per_endpoint(get_manifest_generate_req, "manifest/generate") # calculate_avg_run_time_per_endpoint(download_manifest_req, "manifest/download") # calculate_avg_run_time_per_endpoint(populate_manifest_req, "manifest/populate") # calculate_avg_run_time_per_endpoint( diff --git a/duration_cal.txt b/duration_cal.txt index 444946e..a826bfa 100644 --- a/duration_cal.txt +++ b/duration_cal.txt @@ -1,2 +1,2 @@ -when sending 40 requests at the same time, we calculate the avg duration time of finishing running the endpoint -explorer/get_node_dependencies: 2.737501382827759 +when sending 5 requests at the same time, we calculate the avg duration time of finishing running the endpoint +manifest/generate: 0.36838197708129883 From 05533d9d3ca36ff9d6052f5042906c70d3b3e6d0 Mon Sep 17 00:00:00 2001 From: linglp Date: Fri, 27 Jan 2023 11:59:16 -0500 Subject: [PATCH 08/36] save temp progress --- api-test.py | 6 +-- duration_cal.txt | 4 +- wrk/get-node-dependencies.txt | 89 +++++++++++++++++------------------ 3 files changed, 49 insertions(+), 50 deletions(-) diff --git a/api-test.py b/api-test.py index e4f77e2..1f87217 100644 --- a/api-test.py +++ b/api-test.py @@ -9,7 +9,7 @@ EXAMPLE_SCHEMA_URL = "https://raw.githubusercontent.com/Sage-Bionetworks/schematic/develop/tests/data/example.model.jsonld" DATA_FLOW_SCHEMA_URL = "https://raw.githubusercontent.com/Sage-Bionetworks/data_flow/dev/inst/data_flow_component.jsonld" -CONCURRENT_THREADS = 5 +CONCURRENT_THREADS = 20 RUN_TOTAL_TIMES_PER_ENDPOINT = 1 # use at least 10 @@ -123,8 +123,8 @@ def get_datatype_manifest_req(): def get_manifest_generate_req(): - # base_url = "https://schematic.dnt-dev.sagebase.org/v1/manifest/generate" - base_url = "http://localhost:80/v1/manifest/generate" + base_url = "https://schematic.dnt-dev.sagebase.org/v1/manifest/generate" + #base_url = "http://localhost:80/v1/manifest/generate" input_token = get_token() params = { "schema_url": EXAMPLE_SCHEMA_URL, diff --git a/duration_cal.txt b/duration_cal.txt index a826bfa..7794786 100644 --- a/duration_cal.txt +++ b/duration_cal.txt @@ -1,2 +1,2 @@ -when sending 5 requests at the same time, we calculate the avg duration time of finishing running the endpoint -manifest/generate: 0.36838197708129883 +when sending 20 requests at the same time, we calculate the avg duration time of finishing running the endpoint +manifest/generate: 43.858938217163086 diff --git a/wrk/get-node-dependencies.txt b/wrk/get-node-dependencies.txt index 4dd42eb..0d08dba 100644 --- a/wrk/get-node-dependencies.txt +++ b/wrk/get-node-dependencies.txt @@ -1,70 +1,69 @@ Running 30s test @ https://schematic.dnt-dev.sagebase.org/v1/explorer/get_node_dependencies?schema_url=https%3A%2F%2Fraw.githubusercontent.com%2FSage-Bionetworks%2Fschematic%2Fdevelop%2Ftests%2Fdata%2Fexample.model.jsonld&source_node=Patient&return_display_names=true&return_schema_ordered=true 1 threads and 1 connections Thread Stats Avg Stdev Max +/- Stdev - Latency 81.94ms 51.00ms 493.09ms 95.56% - Req/Sec 13.15 5.16 20.00 57.09% + Latency 92.25ms 95.72ms 843.12ms 95.13% + Req/Sec 13.35 5.16 20.00 57.51% Latency Distribution - 50% 67.81ms - 75% 74.71ms - 90% 110.39ms - 99% 373.51ms - 391 requests in 30.05s, 106.53KB read -Requests/sec: 13.01 -Transfer/sec: 3.54KB + 50% 68.85ms + 75% 77.03ms + 90% 102.47ms + 99% 611.33ms + 389 requests in 30.06s, 105.99KB read +Requests/sec: 12.94 +Transfer/sec: 3.53KB Running 30s test @ https://schematic.dnt-dev.sagebase.org/v1/explorer/get_node_dependencies?schema_url=https%3A%2F%2Fraw.githubusercontent.com%2FSage-Bionetworks%2Fschematic%2Fdevelop%2Ftests%2Fdata%2Fexample.model.jsonld&source_node=Patient&return_display_names=true&return_schema_ordered=true 1 threads and 5 connections Thread Stats Avg Stdev Max +/- Stdev - Latency 310.93ms 150.88ms 915.74ms 85.87% - Req/Sec 18.59 9.83 49.00 72.89% + Latency 166.41ms 154.22ms 1.03s 87.87% + Req/Sec 39.52 17.71 90.00 56.88% Latency Distribution - 50% 290.30ms - 75% 311.52ms - 90% 503.56ms - 99% 827.48ms - 496 requests in 30.08s, 135.14KB read -Requests/sec: 16.49 -Transfer/sec: 4.49KB + 50% 101.85ms + 75% 196.26ms + 90% 376.10ms + 99% 742.60ms + 1101 requests in 30.08s, 299.98KB read +Requests/sec: 36.60 +Transfer/sec: 9.97KB Running 30s test @ https://schematic.dnt-dev.sagebase.org/v1/explorer/get_node_dependencies?schema_url=https%3A%2F%2Fraw.githubusercontent.com%2FSage-Bionetworks%2Fschematic%2Fdevelop%2Ftests%2Fdata%2Fexample.model.jsonld&source_node=Patient&return_display_names=true&return_schema_ordered=true 1 threads and 10 connections Thread Stats Avg Stdev Max +/- Stdev - Latency 588.85ms 220.09ms 1.40s 78.30% - Req/Sec 19.00 10.95 50.00 79.45% + Latency 266.76ms 213.31ms 1.20s 85.27% + Req/Sec 42.44 17.42 90.00 66.32% Latency Distribution - 50% 512.35ms - 75% 613.63ms - 90% 985.17ms - 99% 1.21s - 500 requests in 30.04s, 136.23KB read - Socket errors: connect 0, read 0, write 0, timeout 1 -Requests/sec: 16.64 -Transfer/sec: 4.54KB + 50% 200.94ms + 75% 392.28ms + 90% 565.60ms + 99% 924.86ms + 1243 requests in 30.04s, 338.67KB read +Requests/sec: 41.38 +Transfer/sec: 11.27KB Running 30s test @ https://schematic.dnt-dev.sagebase.org/v1/explorer/get_node_dependencies?schema_url=https%3A%2F%2Fraw.githubusercontent.com%2FSage-Bionetworks%2Fschematic%2Fdevelop%2Ftests%2Fdata%2Fexample.model.jsonld&source_node=Patient&return_display_names=true&return_schema_ordered=true 1 threads and 20 connections Thread Stats Avg Stdev Max +/- Stdev - Latency 1.19s 268.16ms 1.94s 61.84% - Req/Sec 18.45 9.70 48.00 70.48% + Latency 529.38ms 418.88ms 1.72s 59.75% + Req/Sec 41.13 18.45 100.00 65.26% Latency Distribution - 50% 1.11s - 75% 1.41s - 90% 1.59s - 99% 1.82s - 490 requests in 30.08s, 133.51KB read -Requests/sec: 16.29 -Transfer/sec: 4.44KB + 50% 453.88ms + 75% 834.59ms + 90% 1.12s + 99% 1.59s + 1203 requests in 30.07s, 327.97KB read +Requests/sec: 40.01 +Transfer/sec: 10.91KB Running 30s test @ https://schematic.dnt-dev.sagebase.org/v1/explorer/get_node_dependencies?schema_url=https%3A%2F%2Fraw.githubusercontent.com%2FSage-Bionetworks%2Fschematic%2Fdevelop%2Ftests%2Fdata%2Fexample.model.jsonld&source_node=Patient&return_display_names=true&return_schema_ordered=true 1 threads and 40 connections Thread Stats Avg Stdev Max +/- Stdev - Latency 2.33s 308.40ms 3.37s 73.57% - Req/Sec 19.27 11.56 58.00 83.72% + Latency 1.01s 863.80ms 3.32s 59.37% + Req/Sec 42.58 19.37 90.00 66.67% Latency Distribution - 50% 2.41s - 75% 2.51s - 90% 2.60s + 50% 774.34ms + 75% 1.75s + 90% 2.27s 99% 3.01s - 488 requests in 30.09s, 132.96KB read -Requests/sec: 16.22 -Transfer/sec: 4.42KB + 1247 requests in 30.10s, 339.76KB read +Requests/sec: 41.43 +Transfer/sec: 11.29KB From cc6909718477ae7babe7a70f0cc927deccf094c2 Mon Sep 17 00:00:00 2001 From: linglp Date: Mon, 30 Jan 2023 13:55:43 -0500 Subject: [PATCH 09/36] add ending slash to path and see if it fixes 308 --- cdk/docker_fargate/docker_fargate_stack.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cdk/docker_fargate/docker_fargate_stack.py b/cdk/docker_fargate/docker_fargate_stack.py index a640404..bd6a724 100644 --- a/cdk/docker_fargate/docker_fargate_stack.py +++ b/cdk/docker_fargate/docker_fargate_stack.py @@ -127,7 +127,7 @@ def __init__(self, scope: Construct, **kwargs) -> None: # Overriding health check timeout helps with sluggishly responding app's (e.g. Shiny) # https://docs.aws.amazon.com/cdk/api/v1/python/aws_cdk.aws_elasticloadbalancingv2/ApplicationTargetGroup.html#aws_cdk.aws_elasticloadbalancingv2.ApplicationTargetGroup - load_balanced_fargate_service.target_group.configure_health_check(interval=Duration.seconds(120), timeout=Duration.seconds(60), path="/v1/ui") + load_balanced_fargate_service.target_group.configure_health_check(interval=Duration.seconds(120), timeout=Duration.seconds(60), path="/v1/ui/") if False: # enable/disable autoscaling scalable_target = load_balanced_fargate_service.service.auto_scale_task_count( From ad2d1c79edf122258237c3c3f57a898562b2ab2f Mon Sep 17 00:00:00 2001 From: linglp Date: Mon, 30 Jan 2023 14:02:22 -0500 Subject: [PATCH 10/36] temporary changes --- wrk/get-node-dependencies.txt | 90 +++++++++++++++++------------------ 1 file changed, 45 insertions(+), 45 deletions(-) diff --git a/wrk/get-node-dependencies.txt b/wrk/get-node-dependencies.txt index 0d08dba..4d94f4a 100644 --- a/wrk/get-node-dependencies.txt +++ b/wrk/get-node-dependencies.txt @@ -1,69 +1,69 @@ Running 30s test @ https://schematic.dnt-dev.sagebase.org/v1/explorer/get_node_dependencies?schema_url=https%3A%2F%2Fraw.githubusercontent.com%2FSage-Bionetworks%2Fschematic%2Fdevelop%2Ftests%2Fdata%2Fexample.model.jsonld&source_node=Patient&return_display_names=true&return_schema_ordered=true 1 threads and 1 connections Thread Stats Avg Stdev Max +/- Stdev - Latency 92.25ms 95.72ms 843.12ms 95.13% - Req/Sec 13.35 5.16 20.00 57.51% + Latency 80.14ms 51.14ms 495.63ms 95.91% + Req/Sec 13.52 5.21 20.00 55.36% Latency Distribution - 50% 68.85ms - 75% 77.03ms - 90% 102.47ms - 99% 611.33ms - 389 requests in 30.06s, 105.99KB read -Requests/sec: 12.94 -Transfer/sec: 3.53KB + 50% 67.95ms + 75% 75.60ms + 90% 101.64ms + 99% 374.02ms + 402 requests in 30.06s, 109.53KB read +Requests/sec: 13.37 +Transfer/sec: 3.64KB Running 30s test @ https://schematic.dnt-dev.sagebase.org/v1/explorer/get_node_dependencies?schema_url=https%3A%2F%2Fraw.githubusercontent.com%2FSage-Bionetworks%2Fschematic%2Fdevelop%2Ftests%2Fdata%2Fexample.model.jsonld&source_node=Patient&return_display_names=true&return_schema_ordered=true 1 threads and 5 connections Thread Stats Avg Stdev Max +/- Stdev - Latency 166.41ms 154.22ms 1.03s 87.87% - Req/Sec 39.52 17.71 90.00 56.88% + Latency 142.34ms 120.10ms 695.72ms 88.94% + Req/Sec 43.42 18.38 80.00 71.01% Latency Distribution - 50% 101.85ms - 75% 196.26ms - 90% 376.10ms - 99% 742.60ms - 1101 requests in 30.08s, 299.98KB read -Requests/sec: 36.60 -Transfer/sec: 9.97KB + 50% 94.02ms + 75% 163.50ms + 90% 287.92ms + 99% 600.84ms + 1237 requests in 30.10s, 337.03KB read +Requests/sec: 41.10 +Transfer/sec: 11.20KB Running 30s test @ https://schematic.dnt-dev.sagebase.org/v1/explorer/get_node_dependencies?schema_url=https%3A%2F%2Fraw.githubusercontent.com%2FSage-Bionetworks%2Fschematic%2Fdevelop%2Ftests%2Fdata%2Fexample.model.jsonld&source_node=Patient&return_display_names=true&return_schema_ordered=true 1 threads and 10 connections Thread Stats Avg Stdev Max +/- Stdev - Latency 266.76ms 213.31ms 1.20s 85.27% - Req/Sec 42.44 17.42 90.00 66.32% + Latency 251.56ms 190.63ms 1.17s 81.93% + Req/Sec 44.71 18.61 101.00 71.33% Latency Distribution - 50% 200.94ms - 75% 392.28ms - 90% 565.60ms - 99% 924.86ms - 1243 requests in 30.04s, 338.67KB read -Requests/sec: 41.38 -Transfer/sec: 11.27KB + 50% 207.97ms + 75% 328.95ms + 90% 522.65ms + 99% 842.02ms + 1310 requests in 30.04s, 356.92KB read +Requests/sec: 43.60 +Transfer/sec: 11.88KB Running 30s test @ https://schematic.dnt-dev.sagebase.org/v1/explorer/get_node_dependencies?schema_url=https%3A%2F%2Fraw.githubusercontent.com%2FSage-Bionetworks%2Fschematic%2Fdevelop%2Ftests%2Fdata%2Fexample.model.jsonld&source_node=Patient&return_display_names=true&return_schema_ordered=true 1 threads and 20 connections Thread Stats Avg Stdev Max +/- Stdev - Latency 529.38ms 418.88ms 1.72s 59.75% - Req/Sec 41.13 18.45 100.00 65.26% + Latency 423.18ms 237.05ms 1.34s 67.53% + Req/Sec 47.75 20.38 110.00 65.87% Latency Distribution - 50% 453.88ms - 75% 834.59ms - 90% 1.12s - 99% 1.59s - 1203 requests in 30.07s, 327.97KB read -Requests/sec: 40.01 -Transfer/sec: 10.91KB + 50% 399.77ms + 75% 573.70ms + 90% 747.17ms + 99% 1.04s + 1425 requests in 30.06s, 388.26KB read +Requests/sec: 47.41 +Transfer/sec: 12.92KB Running 30s test @ https://schematic.dnt-dev.sagebase.org/v1/explorer/get_node_dependencies?schema_url=https%3A%2F%2Fraw.githubusercontent.com%2FSage-Bionetworks%2Fschematic%2Fdevelop%2Ftests%2Fdata%2Fexample.model.jsonld&source_node=Patient&return_display_names=true&return_schema_ordered=true 1 threads and 40 connections Thread Stats Avg Stdev Max +/- Stdev - Latency 1.01s 863.80ms 3.32s 59.37% - Req/Sec 42.58 19.37 90.00 66.67% + Latency 824.42ms 244.70ms 1.70s 67.09% + Req/Sec 47.83 21.67 130.00 65.98% Latency Distribution - 50% 774.34ms - 75% 1.75s - 90% 2.27s - 99% 3.01s - 1247 requests in 30.10s, 339.76KB read -Requests/sec: 41.43 -Transfer/sec: 11.29KB + 50% 808.38ms + 75% 999.73ms + 90% 1.15s + 99% 1.40s + 1419 requests in 30.00s, 386.62KB read +Requests/sec: 47.29 +Transfer/sec: 12.89KB From c13798d159c2f5c1ad939a1b442f25ee757e986d Mon Sep 17 00:00:00 2001 From: linglp Date: Thu, 9 Feb 2023 18:04:03 -0500 Subject: [PATCH 11/36] update data model link and add test for get data type manifest --- api-test.py | 49 ++++++++++++++++++++++++++++++++++++------------- 1 file changed, 36 insertions(+), 13 deletions(-) diff --git a/api-test.py b/api-test.py index 1f87217..76beacd 100644 --- a/api-test.py +++ b/api-test.py @@ -7,9 +7,9 @@ import os from typing import Callable -EXAMPLE_SCHEMA_URL = "https://raw.githubusercontent.com/Sage-Bionetworks/schematic/develop/tests/data/example.model.jsonld" -DATA_FLOW_SCHEMA_URL = "https://raw.githubusercontent.com/Sage-Bionetworks/data_flow/dev/inst/data_flow_component.jsonld" -CONCURRENT_THREADS = 20 +EXAMPLE_SCHEMA_URL = "https://raw.githubusercontent.com/Sage-Bionetworks/schematic/develop-add-uWSGI/tests/data/example.model.new.jsonld" +DATA_FLOW_SCHEMA_URL = "https://raw.githubusercontent.com/Sage-Bionetworks/data_flow/main/inst/data_flow_component.jsonld" +CONCURRENT_THREADS = 1000 RUN_TOTAL_TIMES_PER_ENDPOINT = 1 # use at least 10 @@ -32,7 +32,7 @@ def send_post_request_with_file(url: str, params: dict): def get_token(): token = os.environ.get("TOKEN") - if token == "": + if token == "" or None: return LookupError("Please provide token of asset store") else: return token @@ -51,10 +51,12 @@ def cal_time_api_call(url: str, params: dict, request_type="get"): for x in range(CONCURRENT_THREADS) ] + all_error = 0 for f in concurrent.futures.as_completed(futures): try: status_code = f.result().status_code if status_code != 200: + all_error = all_error + 1 print("Error code: ", status_code) except Exception as exc: print(f"generated an exception:{exc}") @@ -62,6 +64,7 @@ def cal_time_api_call(url: str, params: dict, request_type="get"): time_diff = time.time() - start_time time.sleep(2) print(f"duration time of running {url}", time_diff) + print(f"total errors", all_error) return time_diff @@ -98,14 +101,16 @@ def find_class_specific_property_req(): def get_node_dependencies_req(): + # base_url = ( + # "https://schematic.dnt-dev.sagebase.org/v1/explorer/get_node_dependencies" + # ) base_url = ( - "https://schematic.dnt-dev.sagebase.org/v1/explorer/get_node_dependencies" + "http://localhost:7080/v1/explorer/get_node_dependencies" ) params = { "schema_url": EXAMPLE_SCHEMA_URL, "source_node": "Patient", } - # execute_api_call(base_url, params, '/explorer/get_node_dependencies') time_diff = cal_time_api_call(base_url, params) return time_diff @@ -139,12 +144,13 @@ def get_manifest_generate_req(): def download_manifest_req(): - base_url = "https://schematic.dnt-dev.sagebase.org/v1/manifest/download" + #base_url = "https://schematic.dnt-dev.sagebase.org/v1/manifest/download" + base_url = ("http://localhost:7080/v1/manifest/download") token = get_token() params = { "input_token": token, "asset_view": "syn28559058", - "dataset_id": "syn28268700", + "dataset_id": "syn51078367", "as_json": True, } time_diff = cal_time_api_call(base_url, params) @@ -216,7 +222,8 @@ def model_submit_big_manifest(): def model_validate_req(): - base_url = "https://schematic.dnt-dev.sagebase.org/v1/model/validate" + #base_url = "https://schematic.dnt-dev.sagebase.org/v1/model/validate" + base_url = "http://localhost:7080/v1/model/validate" params = { "schema_url": EXAMPLE_SCHEMA_URL, "data_type": "Patient", @@ -278,6 +285,20 @@ def storage_project_req(): time_diff = cal_time_api_call(base_url, params) return time_diff +def send_concurrent_req(): + #base_url = "https://schematic.dnt-dev.sagebase.org/v1/ui/" + base_url = "http://localhost:7080/v1/ui/" + params = {} + time_diff = cal_time_api_call(base_url, params) + return time_diff + +def get_data_type_manifest_req(): + #base_url = "https://schematic.dnt-dev.sagebase.org/v1/get/datatype/manifest" + base_url = "http://localhost:7080/v1/get/datatype/manifest" + token = get_token() + params = {"input_token": token, "asset_view": "syn23643253", "manifest_id": "syn27600110"} + time_diff = cal_time_api_call(base_url, params) + return time_diff def execute_all_endpoints(): with open("duration_cal.txt", "w") as f: @@ -286,7 +307,8 @@ def execute_all_endpoints(): ) f.write("\n") f.close() - + + #calculate_avg_run_time_per_endpoint(send_concurrent_req, "swagger-ui") # calculate_avg_run_time_per_endpoint(find_class_specific_property_req, "explorer/find_class_specific_property") # calculate_avg_run_time_per_endpoint( # get_node_dependencies_req, "explorer/get_node_dependencies" @@ -294,14 +316,14 @@ def execute_all_endpoints(): # calculate_avg_run_time_per_endpoint( # get_datatype_manifest_req, "get/datatype/manifest" # ) - calculate_avg_run_time_per_endpoint(get_manifest_generate_req, "manifest/generate") - # calculate_avg_run_time_per_endpoint(download_manifest_req, "manifest/download") + #calculate_avg_run_time_per_endpoint(get_manifest_generate_req, "manifest/generate") + #calculate_avg_run_time_per_endpoint(download_manifest_req, "manifest/download") # calculate_avg_run_time_per_endpoint(populate_manifest_req, "manifest/populate") # calculate_avg_run_time_per_endpoint( # model_component_requirements, "model/component-requirements" # ) # calculate_avg_run_time_per_endpoint(model_submit_req, "manifest/submit") - # calculate_avg_run_time_per_endpoint(model_validate_req, "model/validate") + calculate_avg_run_time_per_endpoint(model_validate_req, "model/validate") # calculate_avg_run_time_per_endpoint(storage_assets_table_req, "storage/asset/table") # calculate_avg_run_time_per_endpoint( # storage_dataset_files_req, "storage/dataset/files" @@ -313,6 +335,7 @@ def execute_all_endpoints(): # storage_project_manifest_req, "storage/project/manifests" # ) # calculate_avg_run_time_per_endpoint(storage_project_req, "storage/projects") + #calculate_avg_run_time_per_endpoint(get_data_type_manifest_req, "get/datatype/manifest") execute_all_endpoints() From db73467d8f850186c9fc504dbb65e504139d3220 Mon Sep 17 00:00:00 2001 From: linglp Date: Tue, 14 Feb 2023 17:55:27 -0500 Subject: [PATCH 12/36] save temporary changes of the script --- api-test.py | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/api-test.py b/api-test.py index 76beacd..20e5192 100644 --- a/api-test.py +++ b/api-test.py @@ -9,9 +9,9 @@ EXAMPLE_SCHEMA_URL = "https://raw.githubusercontent.com/Sage-Bionetworks/schematic/develop-add-uWSGI/tests/data/example.model.new.jsonld" DATA_FLOW_SCHEMA_URL = "https://raw.githubusercontent.com/Sage-Bionetworks/data_flow/main/inst/data_flow_component.jsonld" -CONCURRENT_THREADS = 1000 +CONCURRENT_THREADS = 1 -RUN_TOTAL_TIMES_PER_ENDPOINT = 1 # use at least 10 +RUN_TOTAL_TIMES_PER_ENDPOINT = 10 # use at least 10 def fetch(url: str, params: dict): @@ -24,7 +24,8 @@ def send_post_request_with_file(url: str, params: dict): params=params, files={ "file_name": open( - "test-manifests/synapse_storage_manifest_patient.csv", "rb" + #"test-manifests/synapse_storage_manifest_patient.csv", "rb" + "test-manifests/synapse_storage_manifest_patient_two.csv", "rb" ) }, ) @@ -182,11 +183,12 @@ def model_component_requirements(): def model_submit_req(): ### Can't concurrently modify the same object - base_url = "https://schematic.dnt-dev.sagebase.org/v1/model/submit" + #base_url = "https://schematic.dnt-dev.sagebase.org/v1/model/submit" + base_url = "http://localhost:7080/v1/model/submit" token = get_token() params = { "schema_url": EXAMPLE_SCHEMA_URL, - "data_type": "Patient", + "data_type": None, "dataset_id": "syn45794337", "manifest_record_type": "table", "restrict_rules": False, @@ -222,8 +224,8 @@ def model_submit_big_manifest(): def model_validate_req(): - #base_url = "https://schematic.dnt-dev.sagebase.org/v1/model/validate" - base_url = "http://localhost:7080/v1/model/validate" + base_url = "https://schematic.dnt-dev.sagebase.org/v1/model/validate" + #base_url = "http://localhost:7080/v1/model/validate" params = { "schema_url": EXAMPLE_SCHEMA_URL, "data_type": "Patient", @@ -322,8 +324,8 @@ def execute_all_endpoints(): # calculate_avg_run_time_per_endpoint( # model_component_requirements, "model/component-requirements" # ) - # calculate_avg_run_time_per_endpoint(model_submit_req, "manifest/submit") - calculate_avg_run_time_per_endpoint(model_validate_req, "model/validate") + calculate_avg_run_time_per_endpoint(model_submit_req, "manifest/submit") + #calculate_avg_run_time_per_endpoint(model_validate_req, "model/validate") # calculate_avg_run_time_per_endpoint(storage_assets_table_req, "storage/asset/table") # calculate_avg_run_time_per_endpoint( # storage_dataset_files_req, "storage/dataset/files" From 23c2624af7cc9ce79ac1c820b0a14266052a936c Mon Sep 17 00:00:00 2001 From: linglp Date: Fri, 17 Feb 2023 16:52:45 -0500 Subject: [PATCH 13/36] modify the example model url and add params to submit endpoint --- api-test.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/api-test.py b/api-test.py index 20e5192..307a951 100644 --- a/api-test.py +++ b/api-test.py @@ -7,7 +7,7 @@ import os from typing import Callable -EXAMPLE_SCHEMA_URL = "https://raw.githubusercontent.com/Sage-Bionetworks/schematic/develop-add-uWSGI/tests/data/example.model.new.jsonld" +EXAMPLE_SCHEMA_URL = "https://raw.githubusercontent.com/Sage-Bionetworks/schematic/develop-add-uWSGI-two/tests/data/example.model.jsonld" DATA_FLOW_SCHEMA_URL = "https://raw.githubusercontent.com/Sage-Bionetworks/data_flow/main/inst/data_flow_component.jsonld" CONCURRENT_THREADS = 1 @@ -189,11 +189,14 @@ def model_submit_req(): params = { "schema_url": EXAMPLE_SCHEMA_URL, "data_type": None, - "dataset_id": "syn45794337", + "dataset_id": "syn27221721", "manifest_record_type": "table", "restrict_rules": False, "input_token": token, - "asset_view": "syn23643253", + "asset_view": "syn28559058", + "restrict_rules": False, + "table_manipulation": "replace", + "use_schema_label": True } time_diff = cal_time_api_call(base_url, params, request_type="post-file") return time_diff From af2d7d909b447dd26146be46842d2563610427f8 Mon Sep 17 00:00:00 2001 From: linglp Date: Tue, 21 Feb 2023 10:48:24 -0500 Subject: [PATCH 14/36] update post script --- wrk/post.lua | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 wrk/post.lua diff --git a/wrk/post.lua b/wrk/post.lua new file mode 100644 index 0000000..1b45f75 --- /dev/null +++ b/wrk/post.lua @@ -0,0 +1,31 @@ +-- example HTTP POST script which demonstrates setting the +-- HTTP method, body, and adding a header + +-- wrk.method = "POST" +-- local f = io.open("/Users/lpeng/Documents/schematic-infra/schematic-infra/test-manifests/synapse_storage_manifest_patient.csv", "rb") +-- wrk.body = f:read("*all") +-- wrk.headers["Content-Type"] = "multipart/form-data" + + +function read_file(path) + local file, errorMessage = io.open(path, "rb") + if not file then + error("Could not read the file:" .. errorMessage .. "\n") + end + + local content = file:read "*all" + file:close() + return content +end + + +local FileBody = read_file("/Users/lpeng/Downloads/synapse-storage-manifest-big.csv") +local Filename = "synapse-storage-manifest-big.csv" +local ContentDisposition = 'Content-Disposition: form-data; filename="' .. Filename .. '";type=text/csv' +local ContentType = 'Content-Type: multipart/form-data' + + +wrk.method = "POST" +wrk.headers["Content-Type"] = "multipart/form-data" +wrk.body = ContentDisposition .. ContentType .. FileBody + From f34aff52b4c6327dff739473490861f8d4655df0 Mon Sep 17 00:00:00 2001 From: linglp Date: Tue, 21 Feb 2023 10:52:29 -0500 Subject: [PATCH 15/36] save temporary changes --- api-test.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/api-test.py b/api-test.py index 307a951..a4e30c7 100644 --- a/api-test.py +++ b/api-test.py @@ -145,13 +145,13 @@ def get_manifest_generate_req(): def download_manifest_req(): - #base_url = "https://schematic.dnt-dev.sagebase.org/v1/manifest/download" - base_url = ("http://localhost:7080/v1/manifest/download") + base_url = "https://schematic.dnt-dev.sagebase.org/v1/manifest/download" + #base_url = ("http://localhost:7080/v1/manifest/download") token = get_token() params = { "input_token": token, - "asset_view": "syn28559058", - "dataset_id": "syn51078367", + "asset_view": "syn50896957", + "dataset_id": "syn50900267", "as_json": True, } time_diff = cal_time_api_call(base_url, params) @@ -183,8 +183,8 @@ def model_component_requirements(): def model_submit_req(): ### Can't concurrently modify the same object - #base_url = "https://schematic.dnt-dev.sagebase.org/v1/model/submit" - base_url = "http://localhost:7080/v1/model/submit" + base_url = "https://schematic.dnt-dev.sagebase.org/v1/model/submit" + #base_url = "http://localhost:7080/v1/model/submit" token = get_token() params = { "schema_url": EXAMPLE_SCHEMA_URL, @@ -322,12 +322,12 @@ def execute_all_endpoints(): # get_datatype_manifest_req, "get/datatype/manifest" # ) #calculate_avg_run_time_per_endpoint(get_manifest_generate_req, "manifest/generate") - #calculate_avg_run_time_per_endpoint(download_manifest_req, "manifest/download") + calculate_avg_run_time_per_endpoint(download_manifest_req, "manifest/download") # calculate_avg_run_time_per_endpoint(populate_manifest_req, "manifest/populate") # calculate_avg_run_time_per_endpoint( # model_component_requirements, "model/component-requirements" # ) - calculate_avg_run_time_per_endpoint(model_submit_req, "manifest/submit") + # calculate_avg_run_time_per_endpoint(model_submit_req, "manifest/submit") #calculate_avg_run_time_per_endpoint(model_validate_req, "model/validate") # calculate_avg_run_time_per_endpoint(storage_assets_table_req, "storage/asset/table") # calculate_avg_run_time_per_endpoint( From 7a34265abfe0a7a2d43cec2ebc70add23d6158da Mon Sep 17 00:00:00 2001 From: linglp Date: Fri, 24 Feb 2023 17:45:15 -0500 Subject: [PATCH 16/36] save temp changes --- api-test.py | 17 +++++++++++------ wrk/post.lua | 41 +++++++++++++++++++++++++---------------- 2 files changed, 36 insertions(+), 22 deletions(-) diff --git a/api-test.py b/api-test.py index a4e30c7..9d9a504 100644 --- a/api-test.py +++ b/api-test.py @@ -8,6 +8,7 @@ from typing import Callable EXAMPLE_SCHEMA_URL = "https://raw.githubusercontent.com/Sage-Bionetworks/schematic/develop-add-uWSGI-two/tests/data/example.model.jsonld" +HTAN_SCHEMA_URL = "https://raw.githubusercontent.com/ncihtan/data-models/main/HTAN.model.jsonld" DATA_FLOW_SCHEMA_URL = "https://raw.githubusercontent.com/Sage-Bionetworks/data_flow/main/inst/data_flow_component.jsonld" CONCURRENT_THREADS = 1 @@ -25,7 +26,8 @@ def send_post_request_with_file(url: str, params: dict): files={ "file_name": open( #"test-manifests/synapse_storage_manifest_patient.csv", "rb" - "test-manifests/synapse_storage_manifest_patient_two.csv", "rb" + #"test-manifests/synapse_storage_manifest_patient_two.csv", "rb" + "test-manifests/synapse_storage_manifest_HTAN.csv", "rb" ) }, ) @@ -187,7 +189,8 @@ def model_submit_req(): #base_url = "http://localhost:7080/v1/model/submit" token = get_token() params = { - "schema_url": EXAMPLE_SCHEMA_URL, + #"schema_url": EXAMPLE_SCHEMA_URL, + "schema_url": HTAN_SCHEMA_URL, "data_type": None, "dataset_id": "syn27221721", "manifest_record_type": "table", @@ -230,8 +233,10 @@ def model_validate_req(): base_url = "https://schematic.dnt-dev.sagebase.org/v1/model/validate" #base_url = "http://localhost:7080/v1/model/validate" params = { - "schema_url": EXAMPLE_SCHEMA_URL, - "data_type": "Patient", + # "schema_url": EXAMPLE_SCHEMA_URL, + # "data_type": "Patient", + "schema_url": HTAN_SCHEMA_URL, + "data_type": "Biospecimen", } time_diff = cal_time_api_call(base_url, params, request_type="post") @@ -322,12 +327,12 @@ def execute_all_endpoints(): # get_datatype_manifest_req, "get/datatype/manifest" # ) #calculate_avg_run_time_per_endpoint(get_manifest_generate_req, "manifest/generate") - calculate_avg_run_time_per_endpoint(download_manifest_req, "manifest/download") + #calculate_avg_run_time_per_endpoint(download_manifest_req, "manifest/download") # calculate_avg_run_time_per_endpoint(populate_manifest_req, "manifest/populate") # calculate_avg_run_time_per_endpoint( # model_component_requirements, "model/component-requirements" # ) - # calculate_avg_run_time_per_endpoint(model_submit_req, "manifest/submit") + calculate_avg_run_time_per_endpoint(model_submit_req, "manifest/submit") #calculate_avg_run_time_per_endpoint(model_validate_req, "model/validate") # calculate_avg_run_time_per_endpoint(storage_assets_table_req, "storage/asset/table") # calculate_avg_run_time_per_endpoint( diff --git a/wrk/post.lua b/wrk/post.lua index 1b45f75..2fecfff 100644 --- a/wrk/post.lua +++ b/wrk/post.lua @@ -7,25 +7,34 @@ -- wrk.headers["Content-Type"] = "multipart/form-data" -function read_file(path) - local file, errorMessage = io.open(path, "rb") - if not file then - error("Could not read the file:" .. errorMessage .. "\n") - end +-- function read_file(path) +-- local file, errorMessage = io.open(path, "rb") +-- if not file then +-- error("Could not read the file:" .. errorMessage .. "\n") +-- end - local content = file:read "*all" - file:close() - return content -end +-- local content = file:read "*all" +-- file:close() +-- return content +-- end -local FileBody = read_file("/Users/lpeng/Downloads/synapse-storage-manifest-big.csv") -local Filename = "synapse-storage-manifest-big.csv" -local ContentDisposition = 'Content-Disposition: form-data; filename="' .. Filename .. '";type=text/csv' -local ContentType = 'Content-Type: multipart/form-data' +-- local FileBody = read_file("/Users/lpeng/Downloads/synapse-storage-manifest-big.csv") +-- local Filename = "synapse-storage-manifest-big.csv" +-- local ContentDisposition = 'Content-Disposition: form-data; filename="' .. Filename .. '";type=text/csv' +-- local ContentType = 'Content-Type: multipart/form-data' -wrk.method = "POST" -wrk.headers["Content-Type"] = "multipart/form-data" -wrk.body = ContentDisposition .. ContentType .. FileBody +-- wrk.method = "POST" +-- wrk.headers["Content-Type"] = "multipart/form-data" +-- wrk.body = ContentDisposition .. ContentType .. FileBody +wrk.method = "POST" +wrk.headers["Content-Type"] = "text/csv" + +counter = 0 +request = function() + counter = counter + 1 + os.execute("/Users/lpeng/Documents/schematic-infra/schematic-infra/wrk/send-csv.sh") + return wrk.format("POST", "/", wrk.headers, nil) +end \ No newline at end of file From 017a5f03e12c388ee574bcc06a2292494afc5fd6 Mon Sep 17 00:00:00 2001 From: linglp Date: Sun, 5 Mar 2023 11:21:11 -0500 Subject: [PATCH 17/36] save temp changes --- api-test.py | 21 ++++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-) diff --git a/api-test.py b/api-test.py index 9d9a504..5096b7e 100644 --- a/api-test.py +++ b/api-test.py @@ -1,16 +1,15 @@ import time import requests -import datetime import concurrent.futures from concurrent.futures import ThreadPoolExecutor from numbers import Number import os from typing import Callable -EXAMPLE_SCHEMA_URL = "https://raw.githubusercontent.com/Sage-Bionetworks/schematic/develop-add-uWSGI-two/tests/data/example.model.jsonld" +EXAMPLE_SCHEMA_URL = "https://raw.githubusercontent.com/Sage-Bionetworks/schematic/develop/tests/data/example.model.jsonld" HTAN_SCHEMA_URL = "https://raw.githubusercontent.com/ncihtan/data-models/main/HTAN.model.jsonld" DATA_FLOW_SCHEMA_URL = "https://raw.githubusercontent.com/Sage-Bionetworks/data_flow/main/inst/data_flow_component.jsonld" -CONCURRENT_THREADS = 1 +CONCURRENT_THREADS = 2 RUN_TOTAL_TIMES_PER_ENDPOINT = 10 # use at least 10 @@ -36,7 +35,7 @@ def send_post_request_with_file(url: str, params: dict): def get_token(): token = os.environ.get("TOKEN") if token == "" or None: - return LookupError("Please provide token of asset store") + raise LookupError("Please provide token of asset store") else: return token @@ -136,11 +135,15 @@ def get_manifest_generate_req(): input_token = get_token() params = { "schema_url": EXAMPLE_SCHEMA_URL, + #"schema_url": HTAN_SCHEMA_URL, "title": "Example", - "data_type": ["Patient", "Biospecimen"], - # "dataset_id": "syn35294937", + "data_type": ["Patient"], + #"data_type": ["Biospecimen"], + "dataset_id": "syn28268700", + "asset_view": "syn23643253", "use_annotations": False, - # "input_token": input_token, + "input_token": input_token, + "output_format": "excel" } time_diff = cal_time_api_call(base_url, params) return time_diff @@ -326,13 +329,13 @@ def execute_all_endpoints(): # calculate_avg_run_time_per_endpoint( # get_datatype_manifest_req, "get/datatype/manifest" # ) - #calculate_avg_run_time_per_endpoint(get_manifest_generate_req, "manifest/generate") + calculate_avg_run_time_per_endpoint(get_manifest_generate_req, "manifest/generate") #calculate_avg_run_time_per_endpoint(download_manifest_req, "manifest/download") # calculate_avg_run_time_per_endpoint(populate_manifest_req, "manifest/populate") # calculate_avg_run_time_per_endpoint( # model_component_requirements, "model/component-requirements" # ) - calculate_avg_run_time_per_endpoint(model_submit_req, "manifest/submit") + #calculate_avg_run_time_per_endpoint(model_submit_req, "manifest/submit") #calculate_avg_run_time_per_endpoint(model_validate_req, "model/validate") # calculate_avg_run_time_per_endpoint(storage_assets_table_req, "storage/asset/table") # calculate_avg_run_time_per_endpoint( From 17e378b5dc2e66d649ff90a1ab1d22d95714d1cd Mon Sep 17 00:00:00 2001 From: linglp Date: Tue, 7 Mar 2023 16:43:27 -0500 Subject: [PATCH 18/36] update base url --- api-test.py | 28 +++++++++++++++------------- 1 file changed, 15 insertions(+), 13 deletions(-) diff --git a/api-test.py b/api-test.py index 5096b7e..4052e93 100644 --- a/api-test.py +++ b/api-test.py @@ -9,7 +9,7 @@ EXAMPLE_SCHEMA_URL = "https://raw.githubusercontent.com/Sage-Bionetworks/schematic/develop/tests/data/example.model.jsonld" HTAN_SCHEMA_URL = "https://raw.githubusercontent.com/ncihtan/data-models/main/HTAN.model.jsonld" DATA_FLOW_SCHEMA_URL = "https://raw.githubusercontent.com/Sage-Bionetworks/data_flow/main/inst/data_flow_component.jsonld" -CONCURRENT_THREADS = 2 +CONCURRENT_THREADS = 5 RUN_TOTAL_TIMES_PER_ENDPOINT = 10 # use at least 10 @@ -26,7 +26,8 @@ def send_post_request_with_file(url: str, params: dict): "file_name": open( #"test-manifests/synapse_storage_manifest_patient.csv", "rb" #"test-manifests/synapse_storage_manifest_patient_two.csv", "rb" - "test-manifests/synapse_storage_manifest_HTAN.csv", "rb" + #"test-manifests/synapse_storage_manifest_HTAN.csv", "rb" + "test-manifests/synapse_storage_manifest_HTAN_HMS.csv", "rb" ) }, ) @@ -130,7 +131,8 @@ def get_datatype_manifest_req(): def get_manifest_generate_req(): - base_url = "https://schematic.dnt-dev.sagebase.org/v1/manifest/generate" + #base_url = "https://schematic.dnt-dev.sagebase.org/v1/manifest/generate" + base_url = "https://schematic-dev.api.sagebionetworks.org/v1/manifest/generate" #base_url = "http://localhost:80/v1/manifest/generate" input_token = get_token() params = { @@ -150,7 +152,7 @@ def get_manifest_generate_req(): def download_manifest_req(): - base_url = "https://schematic.dnt-dev.sagebase.org/v1/manifest/download" + base_url = "https://schematic-dev.api.sagebionetworks.org/v1/manifest/download" #base_url = ("http://localhost:7080/v1/manifest/download") token = get_token() params = { @@ -164,7 +166,7 @@ def download_manifest_req(): def populate_manifest_req(): - base_url = "https://schematic.dnt-dev.sagebase.org/v1/manifest/populate" + base_url = "https://schematic-dev.api.sagebionetworks.org/v1/manifest/populate" params = { "schema_url": EXAMPLE_SCHEMA_URL, "data_type": "Patient", @@ -176,7 +178,7 @@ def populate_manifest_req(): def model_component_requirements(): - base_url = "https://schematic.dnt-dev.sagebase.org/v1/model/component-requirements" + base_url = "https://schematic-dev.api.sagebionetworks.org/v1/model/component-requirements" params = { "schema_url": EXAMPLE_SCHEMA_URL, "source_component": "Biospecimen", @@ -188,7 +190,7 @@ def model_component_requirements(): def model_submit_req(): ### Can't concurrently modify the same object - base_url = "https://schematic.dnt-dev.sagebase.org/v1/model/submit" + base_url = "https://schematic-dev.api.sagebionetworks.org/v1/model/submit" #base_url = "http://localhost:7080/v1/model/submit" token = get_token() params = { @@ -233,11 +235,11 @@ def model_submit_big_manifest(): def model_validate_req(): - base_url = "https://schematic.dnt-dev.sagebase.org/v1/model/validate" + base_url = "https://schematic-dev.api.sagebionetworks.org/v1/model/validate" #base_url = "http://localhost:7080/v1/model/validate" params = { - # "schema_url": EXAMPLE_SCHEMA_URL, - # "data_type": "Patient", + #"schema_url": EXAMPLE_SCHEMA_URL, + #"data_type": "Patient", "schema_url": HTAN_SCHEMA_URL, "data_type": "Biospecimen", } @@ -329,14 +331,14 @@ def execute_all_endpoints(): # calculate_avg_run_time_per_endpoint( # get_datatype_manifest_req, "get/datatype/manifest" # ) - calculate_avg_run_time_per_endpoint(get_manifest_generate_req, "manifest/generate") - #calculate_avg_run_time_per_endpoint(download_manifest_req, "manifest/download") + # calculate_avg_run_time_per_endpoint(get_manifest_generate_req, "manifest/generate") + # calculate_avg_run_time_per_endpoint(download_manifest_req, "manifest/download") # calculate_avg_run_time_per_endpoint(populate_manifest_req, "manifest/populate") # calculate_avg_run_time_per_endpoint( # model_component_requirements, "model/component-requirements" # ) #calculate_avg_run_time_per_endpoint(model_submit_req, "manifest/submit") - #calculate_avg_run_time_per_endpoint(model_validate_req, "model/validate") + calculate_avg_run_time_per_endpoint(model_validate_req, "model/validate") # calculate_avg_run_time_per_endpoint(storage_assets_table_req, "storage/asset/table") # calculate_avg_run_time_per_endpoint( # storage_dataset_files_req, "storage/dataset/files" From ef1038e3dc86aee569cf2cdd77d17a15c7935d29 Mon Sep 17 00:00:00 2001 From: linglp Date: Wed, 8 Mar 2023 11:10:59 -0500 Subject: [PATCH 19/36] add restrict rules param --- api-test.py | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/api-test.py b/api-test.py index 4052e93..18c304b 100644 --- a/api-test.py +++ b/api-test.py @@ -9,8 +9,7 @@ EXAMPLE_SCHEMA_URL = "https://raw.githubusercontent.com/Sage-Bionetworks/schematic/develop/tests/data/example.model.jsonld" HTAN_SCHEMA_URL = "https://raw.githubusercontent.com/ncihtan/data-models/main/HTAN.model.jsonld" DATA_FLOW_SCHEMA_URL = "https://raw.githubusercontent.com/Sage-Bionetworks/data_flow/main/inst/data_flow_component.jsonld" -CONCURRENT_THREADS = 5 - +CONCURRENT_THREADS = 20 RUN_TOTAL_TIMES_PER_ENDPOINT = 10 # use at least 10 @@ -24,10 +23,10 @@ def send_post_request_with_file(url: str, params: dict): params=params, files={ "file_name": open( - #"test-manifests/synapse_storage_manifest_patient.csv", "rb" + "test-manifests/synapse_storage_manifest_patient.csv", "rb" #"test-manifests/synapse_storage_manifest_patient_two.csv", "rb" #"test-manifests/synapse_storage_manifest_HTAN.csv", "rb" - "test-manifests/synapse_storage_manifest_HTAN_HMS.csv", "rb" + #"test-manifests/synapse_storage_manifest_HTAN_HMS.csv", "rb" ) }, ) @@ -238,10 +237,12 @@ def model_validate_req(): base_url = "https://schematic-dev.api.sagebionetworks.org/v1/model/validate" #base_url = "http://localhost:7080/v1/model/validate" params = { - #"schema_url": EXAMPLE_SCHEMA_URL, - #"data_type": "Patient", - "schema_url": HTAN_SCHEMA_URL, - "data_type": "Biospecimen", + "schema_url": EXAMPLE_SCHEMA_URL, + "data_type": "Patient", + #"restrict_rules": False + #"restrict_rules": True + #"schema_url": HTAN_SCHEMA_URL, + #"data_type": "Biospecimen", } time_diff = cal_time_api_call(base_url, params, request_type="post") From 570bd9126449e68e87c10af1d456c632264cac65 Mon Sep 17 00:00:00 2001 From: linglp Date: Thu, 9 Mar 2023 14:00:07 -0500 Subject: [PATCH 20/36] add code to produce box plot --- api-test.py | 52 ++++++++++++++++++++++++++++++---------------------- 1 file changed, 30 insertions(+), 22 deletions(-) diff --git a/api-test.py b/api-test.py index 18c304b..41b79c1 100644 --- a/api-test.py +++ b/api-test.py @@ -5,6 +5,11 @@ from numbers import Number import os from typing import Callable +import pandas as pd +import matplotlib.pyplot as plt + +import warnings +warnings.simplefilter(action='ignore', category=FutureWarning) EXAMPLE_SCHEMA_URL = "https://raw.githubusercontent.com/Sage-Bionetworks/schematic/develop/tests/data/example.model.jsonld" HTAN_SCHEMA_URL = "https://raw.githubusercontent.com/ncihtan/data-models/main/HTAN.model.jsonld" @@ -64,7 +69,6 @@ def cal_time_api_call(url: str, params: dict, request_type="get"): print(f"generated an exception:{exc}") time_diff = time.time() - start_time - time.sleep(2) print(f"duration time of running {url}", time_diff) print(f"total errors", all_error) return time_diff @@ -76,39 +80,42 @@ def write_to_txt_file(name_of_endpoint: str, duration: Number): f.write("\n") f.close() - -def execute_api_call(url, params, name_of_endpoint): - time_diff = cal_time_api_call(url, params) - - # write_to_txt_file(name_of_endpoint, time_diff) - - def calculate_avg_run_time_per_endpoint( function_to_run: Callable, name_of_endpoint: str ): sum_time = 0 + df = pd.DataFrame(columns=['#number','latency']) for x in range(RUN_TOTAL_TIMES_PER_ENDPOINT): run_time = function_to_run() + df=df.append({"#number": x+1, "latency": run_time}, ignore_index=True) sum_time = sum_time + run_time avg_time = sum_time / RUN_TOTAL_TIMES_PER_ENDPOINT + + draw_boxplot(df) write_to_txt_file(name_of_endpoint, avg_time) +def draw_boxplot(df): + myFig = plt.figure() + df["latency"].plot(kind="box") + myFig.savefig(f"latency-box-plot.svg", format="svg") + + ## defining endpoints to test def find_class_specific_property_req(): - base_url = "https://schematic.dnt-dev.sagebase.org/v1/explorer/find_class_specific_properties" + base_url = "https://schematic-dev.api.sagebionetworks.org/v1/explorer/find_class_specific_properties" params = {"schema_url": EXAMPLE_SCHEMA_URL, "schema_class": "MolecularEntity"} time_diff = cal_time_api_call(base_url, params) return time_diff def get_node_dependencies_req(): - # base_url = ( - # "https://schematic.dnt-dev.sagebase.org/v1/explorer/get_node_dependencies" - # ) base_url = ( - "http://localhost:7080/v1/explorer/get_node_dependencies" + "https://schematic-dev.api.sagebionetworks.org/v1/explorer/get_node_dependencies" ) + # base_url = ( + # "http://localhost:7080/v1/explorer/get_node_dependencies" + # ) params = { "schema_url": EXAMPLE_SCHEMA_URL, "source_node": "Patient", @@ -118,7 +125,7 @@ def get_node_dependencies_req(): def get_datatype_manifest_req(): - base_url = "https://schematic.dnt-dev.sagebase.org/v1/get/datatype/manifest" + base_url = "https://schematic-dev.api.sagebionetworks.org/v1/get/datatype/manifest" input_token = get_token() params = { "input_token": input_token, @@ -140,8 +147,8 @@ def get_manifest_generate_req(): "title": "Example", "data_type": ["Patient"], #"data_type": ["Biospecimen"], - "dataset_id": "syn28268700", - "asset_view": "syn23643253", + #"dataset_id": "syn28268700", + #"asset_view": "syn23643253", "use_annotations": False, "input_token": input_token, "output_format": "excel" @@ -156,8 +163,10 @@ def download_manifest_req(): token = get_token() params = { "input_token": token, - "asset_view": "syn50896957", - "dataset_id": "syn50900267", + "asset_view": "syn20446927", + "dataset_id": "syn24616231", + #"asset_view": "syn50896957", + #"dataset_id": "syn50900267", "as_json": True, } time_diff = cal_time_api_call(base_url, params) @@ -232,14 +241,13 @@ def model_submit_big_manifest(): ) print(r.status_code) - def model_validate_req(): base_url = "https://schematic-dev.api.sagebionetworks.org/v1/model/validate" #base_url = "http://localhost:7080/v1/model/validate" params = { "schema_url": EXAMPLE_SCHEMA_URL, "data_type": "Patient", - #"restrict_rules": False + "restrict_rules": False #"restrict_rules": True #"schema_url": HTAN_SCHEMA_URL, #"data_type": "Biospecimen", @@ -333,13 +341,13 @@ def execute_all_endpoints(): # get_datatype_manifest_req, "get/datatype/manifest" # ) # calculate_avg_run_time_per_endpoint(get_manifest_generate_req, "manifest/generate") - # calculate_avg_run_time_per_endpoint(download_manifest_req, "manifest/download") + calculate_avg_run_time_per_endpoint(download_manifest_req, "manifest/download") # calculate_avg_run_time_per_endpoint(populate_manifest_req, "manifest/populate") # calculate_avg_run_time_per_endpoint( # model_component_requirements, "model/component-requirements" # ) #calculate_avg_run_time_per_endpoint(model_submit_req, "manifest/submit") - calculate_avg_run_time_per_endpoint(model_validate_req, "model/validate") + # calculate_avg_run_time_per_endpoint(model_validate_req, "model/validate") # calculate_avg_run_time_per_endpoint(storage_assets_table_req, "storage/asset/table") # calculate_avg_run_time_per_endpoint( # storage_dataset_files_req, "storage/dataset/files" From 3e494bfa7d581b2ca23771de43a411b24c84e314 Mon Sep 17 00:00:00 2001 From: linglp Date: Fri, 10 Mar 2023 16:25:21 -0500 Subject: [PATCH 21/36] update schematic version to 0.1.34-beta --- cdk.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cdk.json b/cdk.json index 22a8e0c..46030c0 100644 --- a/cdk.json +++ b/cdk.json @@ -31,7 +31,7 @@ "aws-cn" ], "dev": { - "IMAGE_PATH_AND_TAG": "ghcr.io/sage-bionetworks/schematic:0.1.32-beta", + "IMAGE_PATH_AND_TAG": "ghcr.io/sage-bionetworks/schematic:0.1.34-beta", "AWS_DEFAULT_REGION": "us-east-1", "PORT": "7080", "COST_CENTER": "NO PROGRAM / 000000", From 5bc522a57d529a5a104cab64721fa083d5593d31 Mon Sep 17 00:00:00 2001 From: linglp Date: Fri, 17 Mar 2023 16:38:30 -0400 Subject: [PATCH 22/36] init commit --- duration_cal.txt | 2 - .../synapse_storage_manifest_HTAN.csv | 773 ++++++++++++++++++ .../synapse_storage_manifest_HTAN_HMS.csv | 773 ++++++++++++++++++ .../synapse_storage_manifest_dataflow.csv | 536 ++++++++++++ .../synapse_storage_manifest_dataflow.json | 80 ++ .../synapse_storage_manifest_patient_two.csv | 601 ++++++++++++++ tests/__init__.py | 0 tests/conftest.py | 37 + tests/latency.csv | 2 + tests/test_manifest_generate.py | 75 ++ wrk/get-node-dependencies.py | 91 --- wrk/get-node-dependencies.txt | 69 -- wrk/post.lua | 40 - 13 files changed, 2877 insertions(+), 202 deletions(-) delete mode 100644 duration_cal.txt create mode 100644 test-manifests/synapse_storage_manifest_HTAN.csv create mode 100644 test-manifests/synapse_storage_manifest_HTAN_HMS.csv create mode 100644 test-manifests/synapse_storage_manifest_dataflow.csv create mode 100644 test-manifests/synapse_storage_manifest_dataflow.json create mode 100644 test-manifests/synapse_storage_manifest_patient_two.csv create mode 100644 tests/__init__.py create mode 100644 tests/conftest.py create mode 100644 tests/latency.csv create mode 100644 tests/test_manifest_generate.py delete mode 100644 wrk/get-node-dependencies.py delete mode 100644 wrk/get-node-dependencies.txt delete mode 100644 wrk/post.lua diff --git a/duration_cal.txt b/duration_cal.txt deleted file mode 100644 index 7794786..0000000 --- a/duration_cal.txt +++ /dev/null @@ -1,2 +0,0 @@ -when sending 20 requests at the same time, we calculate the avg duration time of finishing running the endpoint -manifest/generate: 43.858938217163086 diff --git a/test-manifests/synapse_storage_manifest_HTAN.csv b/test-manifests/synapse_storage_manifest_HTAN.csv new file mode 100644 index 0000000..82b0ddf --- /dev/null +++ b/test-manifests/synapse_storage_manifest_HTAN.csv @@ -0,0 +1,773 @@ +Component,HTAN Biospecimen ID,Source HTAN Biospecimen ID,HTAN Parent ID,Timepoint Label,Collection Days from Index,Adjacent Biospecimen IDs,Biospecimen Type,Acquisition Method Type,Fixative Type,Storage Method,Processing Days from Index,Protocol Link,Site Data Source,Collection Media,Mounting Medium,Processing Location,Histology Assessment By,Histology Assessment Medium,Preinvasive Morphology,Tumor Infiltrating Lymphocytes,Degree of Dysplasia,Dysplasia Fraction,Number Proliferating Cells,Percent Eosinophil Infiltration,Percent Granulocyte Infiltration,Percent Inflam Infiltration,Percent Lymphocyte Infiltration,Percent Monocyte Infiltration,Percent Necrosis,Percent Neutrophil Infiltration,Percent Normal Cells,Percent Stromal Cells,Percent Tumor Cells,Percent Tumor Nuclei,Fiducial Marker,Slicing Method,Lysis Buffer,Method of Nucleic Acid Isolation,Acquisition Method Other Specify,Analyte Type,Biospecimen Dimension 1,Biospecimen Dimension 2,Biospecimen Dimension 3,Dimensions Unit,Fixation Duration,Histologic Morphology Code,Ischemic Temperature,Ischemic Time,Portion Weight,Preservation Method,Section Number in Sequence,Section Thickness Value,Sectioning Days from Index,Shipping Condition Type,Site of Resection or Biopsy,Slide Charge Type,Specimen Laterality,Total Volume,Total Volume Unit,Tumor Tissue Type,entityId,Uuid +Biospecimen,HTA7_1_1,,HTA7_1,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Ambient temperature,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,Superficial spreading melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26486632,0faecfda-8ca4-41fc-bfbb-0b959e61da61 +Biospecimen,HTA7_1_11,,HTA7_1,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Ambient temperature,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,Superficial spreading melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26486634,ed85f814-43a0-413a-80dd-28db586142a2 +Biospecimen,HTA7_1_6,,HTA7_1,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Ambient temperature,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,Superficial spreading melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26486633,b5db70d7-ac23-44b0-8576-38cd1ba70626 +Biospecimen,HTA7_1_16,,HTA7_1_1,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Refrigerated at 4 degrees,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Superficial spreading melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561941,3b494f18-8fe5-4792-827c-472085ec4a64 +Biospecimen,HTA7_1_17,,HTA7_1_1,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Refrigerated at 4 degrees,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Superficial spreading melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561942,c77b4deb-3f29-4177-8570-1c67d50a8350 +Biospecimen,HTA7_1_18,,HTA7_1_1,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Refrigerated at 4 degrees,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Superficial spreading melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561943,c86e9d6b-5a66-4e91-a998-b6ac4cab546c +Biospecimen,HTA7_1_2,,HTA7_1_1,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Refrigerated at 4 degrees,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Superficial spreading melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26486635,bd46017b-4809-4c1d-b546-4d383d479f5d +Biospecimen,HTA7_1_243,,HTA7_1_1,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Refrigerated at 4 degrees,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Superficial spreading melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26486642,32fb781a-299a-4bbb-b12a-1dc01208cf49 +Biospecimen,HTA7_1_244,,HTA7_1_1,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Refrigerated at 4 degrees,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Superficial spreading melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26486643,72e4e58e-1c44-421d-9c9e-341e86288ac5 +Biospecimen,HTA7_1_3,,HTA7_1_1,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Refrigerated at 4 degrees,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Superficial spreading melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26486636,43e6d9cb-f556-4e86-8ac4-fec4a7084c91 +Biospecimen,HTA7_1_4,,HTA7_1_1,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Refrigerated at 4 degrees,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Superficial spreading melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26486637,96ac1729-1a0d-4fa2-b76e-140412e3691f +Biospecimen,HTA7_1_5,,HTA7_1_1,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Refrigerated at 4 degrees,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Superficial spreading melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26486638,29cb0fd4-4f27-4019-9615-927cad1f5d67 +Biospecimen,HTA7_1_7,,HTA7_1_1,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Refrigerated at 4 degrees,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Superficial spreading melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26486639,22baf4ef-9d25-42b6-b2f1-2a21f8948921 +Biospecimen,HTA7_1_20,,HTA7_1_11,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Refrigerated at 4 degrees,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Superficial spreading melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561945,035f9c3e-7b16-4026-bd4a-230b72f09897 +Biospecimen,HTA7_1_21,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561946,a26133e5-c8d9-4e2c-b523-585947375f4c +Biospecimen,HTA7_1_22,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561947,e9267bf1-02cb-438e-a4f6-7d14cadb3e7a +Biospecimen,HTA7_1_23,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561948,05d8f905-f35f-47c2-b7fa-46480c1ca411 +Biospecimen,HTA7_1_24,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561949,deb82e68-4ccc-4e26-b51e-62dd75cf0824 +Biospecimen,HTA7_1_25,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561950,d5ab30cc-73ec-4b59-b6cd-ccbe2a8afe73 +Biospecimen,HTA7_1_26,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561951,339762fa-ec7a-4af4-bcd0-ccca9bc352bc +Biospecimen,HTA7_1_27,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561952,53cbc6bd-313a-4f10-a75b-43622456c276 +Biospecimen,HTA7_1_28,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561953,3057839f-6ddf-47fa-87d5-10ea9fec528a +Biospecimen,HTA7_1_29,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561954,f637f375-b507-4aa0-99a1-e6eede27852b +Biospecimen,HTA7_1_30,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561955,ccfcfef5-83e9-4305-90b2-567aff5b5374 +Biospecimen,HTA7_1_31,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561956,42749588-6ef3-4d5e-ad0b-859e9e36769e +Biospecimen,HTA7_1_32,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561957,d1101f1d-1276-41ae-bdd8-eb69b95d2ea7 +Biospecimen,HTA7_1_33,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Inflammatory regression,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561958,71b5f137-754c-40e0-a2fc-a74eeaae28db +Biospecimen,HTA7_1_34,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Inflammatory regression,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561959,5ce3988f-e3c9-4897-b13a-e95152078aa2 +Biospecimen,HTA7_1_35,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Inflammatory regression,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561960,d4759182-dce9-4cf8-98d3-3bc3f83fc9a6 +Biospecimen,HTA7_1_36,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Inflammatory regression,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561961,ecba2364-363d-4fb8-b9ab-5a41a21818a9 +Biospecimen,HTA7_1_37,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Inflammatory regression,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561962,3f1b22a3-1d90-4bde-af44-e68e70a853fb +Biospecimen,HTA7_1_38,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Inflammatory regression,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561963,a76b9140-5196-4594-95a9-1ecc77dd2ee1 +Biospecimen,HTA7_1_39,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Inflammatory regression,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561964,9c479826-465c-4249-a6d9-16869708ec52 +Biospecimen,HTA7_1_40,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Inflammatory regression,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561965,603c0c92-f023-4394-ab33-d5d711abe772 +Biospecimen,HTA7_1_41,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Inflammatory regression,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561966,2f119b4b-60f4-453a-8aea-7139a30d480b +Biospecimen,HTA7_1_42,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Inflammatory regression,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561967,8fffaa53-f124-4850-aad2-75a43e995d74 +Biospecimen,HTA7_1_43,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Inflammatory regression,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561968,deba1cd7-b356-4c9d-8944-3277ca190593 +Biospecimen,HTA7_1_44,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Inflammatory regression,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561969,2022b0ae-49a2-4e66-b3de-886cc16dc37c +Biospecimen,HTA7_1_45,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Inflammatory regression,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561970,de82255d-ce37-44df-a845-090bb18a9f25 +Biospecimen,HTA7_1_46,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Inflammatory regression,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561971,f62d6833-f1f3-4b8d-a57f-d435b83ff1d2 +Biospecimen,HTA7_1_47,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Inflammatory regression,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561972,25ea8b40-fea3-4c2d-b25e-5ea104f9674c +Biospecimen,HTA7_1_48,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Inflammatory regression,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561973,58d0ab6b-dda7-4162-b8ff-ba6c8a8faa73 +Biospecimen,HTA7_1_49,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Brisk TIL,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561974,2cb75f39-1182-433a-9c8d-d769add0d6c7 +Biospecimen,HTA7_1_50,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Brisk TIL,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561975,a4d586cf-60ce-413f-9a92-1a467c2d9e5b +Biospecimen,HTA7_1_51,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Brisk TIL,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561976,b11a5655-2811-4c29-af02-7a2f90fd36d1 +Biospecimen,HTA7_1_52,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Brisk TIL,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561977,f1d1d07e-7194-403c-8f52-5a98297a0323 +Biospecimen,HTA7_1_53,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Brisk TIL,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561978,a3ff7689-00be-41e8-8cf9-a5793714f62c +Biospecimen,HTA7_1_54,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Brisk TIL,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561979,0c806189-5105-4735-98c9-f1424ede8834 +Biospecimen,HTA7_1_55,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Brisk TIL,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561980,f6e70d52-6d14-4762-9f20-cfd33526287c +Biospecimen,HTA7_1_56,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Brisk TIL,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561981,7f5d07a7-55f3-4d33-a39e-ef210f2f2b91 +Biospecimen,HTA7_1_57,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Brisk TIL,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561982,b9128866-b9a7-4f05-acba-22975b664de6 +Biospecimen,HTA7_1_58,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Brisk TIL,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561983,f0085add-2937-452a-8bbc-4ce0605100b9 +Biospecimen,HTA7_1_59,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Brisk TIL,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561984,028ff6c5-5384-4f50-add1-135fe24ae7d8 +Biospecimen,HTA7_1_60,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Brisk TIL,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561985,d624a745-2437-4eb3-9022-82f51f113886 +Biospecimen,HTA7_1_61,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Brisk TIL,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561986,4363eff0-730e-44f4-bc2a-3ee64ef69667 +Biospecimen,HTA7_1_62,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Brisk TIL,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561987,d4f3eac3-b4c7-4524-8c97-284728bc58b7 +Biospecimen,HTA7_1_63,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Brisk TIL,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561988,d05a31b2-b71f-49dc-b1d5-4e7eb207de95 +Biospecimen,HTA7_1_64,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Brisk TIL,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561989,05019f75-674f-4e9b-aa62-ec7488075655 +Biospecimen,HTA7_1_65,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Invasive melanoma boundary,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561990,c6cbe16d-3969-4cba-89aa-2fe6c413d7ae +Biospecimen,HTA7_1_66,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Invasive melanoma boundary,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561991,58a25cc3-f32f-4ec3-b851-c38303a3d739 +Biospecimen,HTA7_1_67,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Invasive melanoma boundary,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561992,30616273-7382-457d-936b-b9714ad32e1b +Biospecimen,HTA7_1_68,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Invasive melanoma boundary,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561993,8319cc8c-858f-4529-bc0e-0a647d9af755 +Biospecimen,HTA7_1_69,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Invasive melanoma boundary,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561994,5b94e3b0-397d-492c-9c63-1c961aa60a48 +Biospecimen,HTA7_1_70,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Invasive melanoma boundary,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561995,9b0b0c46-a1c7-41f9-ae55-943604ab4e86 +Biospecimen,HTA7_1_71,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Invasive melanoma boundary,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561996,8c49e01c-9b9f-4c78-b11a-22cb2b7f7069 +Biospecimen,HTA7_1_72,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Invasive melanoma boundary,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561997,a94f5b22-d848-473f-a824-a1b866250ef9 +Biospecimen,HTA7_1_73,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Invasive melanoma boundary,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561998,ae245533-2770-4470-833c-053400ebd818 +Biospecimen,HTA7_1_74,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Invasive melanoma boundary,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561999,0c43c9f9-90bd-4659-af52-f96972dee231 +Biospecimen,HTA7_1_75,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Invasive melanoma boundary,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562000,55c65502-b1a6-4d45-b18e-40c1d1be5e15 +Biospecimen,HTA7_1_76,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Invasive melanoma boundary,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562001,5e0fa773-fa38-4b8f-8323-8fb799be9418 +Biospecimen,HTA7_1_77,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Invasive melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562002,a24fff2e-f5a6-4a98-a121-8901755dbd76 +Biospecimen,HTA7_1_78,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Invasive melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562003,940a21e2-da01-4a95-b606-40623478dfed +Biospecimen,HTA7_1_79,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Invasive melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562004,bef40092-ac98-4ee0-bc79-da1dbcdfeac1 +Biospecimen,HTA7_1_80,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Invasive melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562005,5a2ccdc6-5768-4c3d-98f5-54112f84cb47 +Biospecimen,HTA7_1_81,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Invasive melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562006,7c3b0bfe-7307-4efd-9c01-0292d078819c +Biospecimen,HTA7_1_82,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Invasive melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562007,e45e4477-bde5-4415-b123-8ddfdba161ba +Biospecimen,HTA7_1_83,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Invasive melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562008,992b34a5-f30e-4ce6-ad10-dc6b12f8bceb +Biospecimen,HTA7_1_84,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Invasive melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562009,67aff8ef-0656-406c-90a8-a77156928356 +Biospecimen,HTA7_1_85,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Invasive melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562010,127f3dbc-fd3d-451d-b129-8396e3aa1a2a +Biospecimen,HTA7_1_86,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Invasive melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562011,539f161a-9b82-4861-b30e-62cb2a070891 +Biospecimen,HTA7_1_87,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Invasive melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562012,2ad925b6-0b33-4e94-b51d-4076d706ad3f +Biospecimen,HTA7_1_88,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Invasive melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562013,0797ef67-dd5d-4884-9fe8-29cef0b8c1da +Biospecimen,HTA7_1_89,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Invasive melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562014,351febf0-9c4c-4adf-8b3b-cafc80fb41fb +Biospecimen,HTA7_1_90,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Invasive melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562015,69f92e28-705d-4029-8709-6b7522245a9b +Biospecimen,HTA7_1_91,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Invasive melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562016,2f5638ff-2629-4c1b-9b1e-72aae95d3685 +Biospecimen,HTA7_1_92,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Invasive melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562017,a8d1315e-3401-4104-ac93-cc51096d87eb +Biospecimen,HTA7_1_93,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Exophytic melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562018,18874e39-3098-4b07-b851-4ac8d52f70ee +Biospecimen,HTA7_1_94,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Exophytic melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562019,6c4f276f-e984-4220-aaa9-5c377cba853b +Biospecimen,HTA7_1_95,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Exophytic melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562020,a9aee6fe-b18f-4a60-9e2e-ccc673547ff8 +Biospecimen,HTA7_1_100,,HTA7_1_17,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562025,91349739-34b6-4814-9e2f-f225ba8ec996 +Biospecimen,HTA7_1_101,,HTA7_1_17,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562026,0e9f90e6-c8c4-4ba9-9df5-286204bb4f12 +Biospecimen,HTA7_1_102,,HTA7_1_17,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562027,2c5f2441-5e82-4014-ae79-9f8347f8ba89 +Biospecimen,HTA7_1_96,,HTA7_1_17,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562021,9b578afd-693d-48e3-93c3-6b41c408682e +Biospecimen,HTA7_1_97,,HTA7_1_17,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562022,33db145d-f3a9-4923-a3c6-f360f4f9eb84 +Biospecimen,HTA7_1_98,,HTA7_1_17,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562023,d98ddf55-39b0-4b83-96c0-13c3157a4698 +Biospecimen,HTA7_1_99,,HTA7_1_17,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562024,9002f56a-608b-4745-be43-0aa3880b9413 +Biospecimen,HTA7_1_103,,HTA7_1_18,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562028,9584acd8-2cb5-4a3b-8170-f02f51656e3f +Biospecimen,HTA7_1_104,,HTA7_1_18,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562029,485646de-28c0-4702-90ae-04e2d74ae9ce +Biospecimen,HTA7_1_105,,HTA7_1_18,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562030,c9aae173-9aec-47dd-a63c-46f7c13f3160 +Biospecimen,HTA7_1_106,,HTA7_1_18,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562031,3c491cdb-104f-4d63-8af9-faf5098a6c78 +Biospecimen,HTA7_1_107,,HTA7_1_18,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562032,704a34fc-749e-4554-87c3-4750d2ce13c9 +Biospecimen,HTA7_1_108,,HTA7_1_18,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562033,691bbc1f-eabc-45b4-9d1e-22e61fd3fde8 +Biospecimen,HTA7_1_109,,HTA7_1_18,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562034,1ffb60b4-342c-4817-86e0-f73b65ae1e37 +Biospecimen,HTA7_1_110,,HTA7_1_18,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562035,6d4bc56e-8020-46af-b346-ae63b4bd617b +Biospecimen,HTA7_1_111,,HTA7_1_18,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562036,aef7f3aa-1c4a-4c82-aaac-fa0dc02935ef +Biospecimen,HTA7_1_112,,HTA7_1_18,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562037,b5bf28fa-3f4a-4a9e-ab9c-6600aab17410 +Biospecimen,HTA7_1_113,,HTA7_1_18,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562038,09c0aaba-3ba3-4557-b7be-e811121ef0de +Biospecimen,HTA7_1_114,,HTA7_1_18,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562039,154d990e-c98a-4f3e-8b0a-8da718cc6a62 +Biospecimen,HTA7_1_115,,HTA7_1_18,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562040,57625a83-db9a-4c8f-8263-fbbffae44de1 +Biospecimen,HTA7_1_116,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562041,e9d07392-a9ff-4214-9846-be031e3e0bd9 +Biospecimen,HTA7_1_117,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562042,38bde602-16fd-4380-8e64-0b45ffc6c541 +Biospecimen,HTA7_1_118,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562043,1b9ef11a-93bb-492e-bab6-9e16188592e8 +Biospecimen,HTA7_1_119,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562044,01e7abab-ce42-4176-8585-0953122da63f +Biospecimen,HTA7_1_120,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562045,1b9dcddb-1c14-4826-98ab-2c5dcaa820c9 +Biospecimen,HTA7_1_121,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562046,b06a9f86-03f4-4722-91e1-d2f92b23a13f +Biospecimen,HTA7_1_122,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562047,46b7d00c-788b-4cf2-b383-1a5c79b2f6f9 +Biospecimen,HTA7_1_123,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562048,18dac815-1b1b-4d30-9b92-3c6fcf59cc71 +Biospecimen,HTA7_1_124,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562049,95e88d20-64dc-4bb4-a5e8-005fcbf2c692 +Biospecimen,HTA7_1_125,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562050,74d1f0c9-c039-44bb-81a7-ef34dcdeae03 +Biospecimen,HTA7_1_126,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562051,995a620c-7b6f-401e-aa63-eaed397206cf +Biospecimen,HTA7_1_127,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562052,8b5076f1-3528-45b9-8b76-8028703a6c9d +Biospecimen,HTA7_1_128,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Inflammatory regression,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562053,f4552bc7-65b4-4add-b19b-1e4bb867498f +Biospecimen,HTA7_1_129,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Inflammatory regression,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562054,9a758745-5779-4fc2-8d80-3e00ca0eb099 +Biospecimen,HTA7_1_130,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Inflammatory regression,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562055,c63ba49d-e8eb-468f-b587-8f2d8ea9f912 +Biospecimen,HTA7_1_131,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Inflammatory regression,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562056,d5b2ce9c-1943-4e4e-970d-28127be2c2ad +Biospecimen,HTA7_1_132,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Inflammatory regression,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562057,a78000f4-df1c-415c-8a0e-d0f41df21b9f +Biospecimen,HTA7_1_133,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Inflammatory regression,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562058,b7a19420-2d94-4514-9254-d67d41099b13 +Biospecimen,HTA7_1_134,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Inflammatory regression,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562059,235db61d-8419-44be-a6d5-e20217490b5d +Biospecimen,HTA7_1_135,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Inflammatory regression,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562060,6164ee2a-f136-4baa-bd92-599cbc903401 +Biospecimen,HTA7_1_136,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Inflammatory regression,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562061,b259db14-8c00-4f43-af2f-d373375dd4b1 +Biospecimen,HTA7_1_137,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Inflammatory regression,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562062,8ee8ec71-75c8-4a23-be74-ed1da9adee9b +Biospecimen,HTA7_1_138,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Inflammatory regression,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562063,452460f2-0da2-4ef0-8186-5554bf0f7252 +Biospecimen,HTA7_1_139,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Inflammatory regression,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562064,8592a8fa-8c27-4dab-9334-5f4ae61853ad +Biospecimen,HTA7_1_140,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Inflammatory regression,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562065,066c00b5-f402-40cf-a1e2-b725ba6dd9c4 +Biospecimen,HTA7_1_141,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Inflammatory regression,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562066,aa21f8e8-a4f8-4fb7-9a08-f8eb76415d0e +Biospecimen,HTA7_1_142,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Inflammatory regression,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562067,2a0e5435-da00-42be-ac89-31d317086c7f +Biospecimen,HTA7_1_143,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Inflammatory regression,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562068,dffd2b80-45cc-4401-8963-e2cf7fd5d748 +Biospecimen,HTA7_1_144,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Inflammatory regression,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562069,3a0c56ad-c493-456b-a6fd-fdfcec9d2d3a +Biospecimen,HTA7_1_145,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Inflammatory regression,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562070,c8a4e275-dc06-4146-9cdf-cef79b483246 +Biospecimen,HTA7_1_146,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Inflammatory regression,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562071,2413fc22-076e-424d-8e91-d87cc152fe38 +Biospecimen,HTA7_1_147,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Inflammatory regression,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562072,a7e62d24-4db7-4858-8a04-4fb14e40ac31 +Biospecimen,HTA7_1_148,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Inflammatory regression,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562073,0d42a60d-f1b1-4411-b3cb-9c4b26a85adc +Biospecimen,HTA7_1_149,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Exophytic melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562074,74820345-e06e-49c8-893a-68d2346bbc99 +Biospecimen,HTA7_1_150,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Exophytic melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562075,9920e42e-9628-45fa-b19f-6de13f5dcca5 +Biospecimen,HTA7_1_151,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Exophytic melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562076,634f0016-5de5-4981-b86b-660670c7b404 +Biospecimen,HTA7_1_152,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Exophytic melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562077,cb6c8b76-7c83-4051-b8ea-69a621afe0bb +Biospecimen,HTA7_1_153,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Exophytic melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562078,a1deb848-5420-45b0-b5b6-9ebbd607631d +Biospecimen,HTA7_1_154,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Exophytic melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562079,a24656ab-4c16-4852-8c49-e2d0e54389e7 +Biospecimen,HTA7_1_155,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Exophytic melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562080,c970efba-447d-45da-a52c-f14cfdcd4ee3 +Biospecimen,HTA7_1_156,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Exophytic melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562081,08da546f-d282-455c-a258-c28eebbad91a +Biospecimen,HTA7_1_157,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Exophytic melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562082,601cbc85-7083-473b-8d33-70e40906c78a +Biospecimen,HTA7_1_158,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Exophytic melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562083,9e398edf-2bff-482b-9ecc-2d11455194e7 +Biospecimen,HTA7_1_159,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Exophytic melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562084,dd63f589-78e8-45da-b7b7-ca1b7c38c1dd +Biospecimen,HTA7_1_160,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Exophytic melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562085,fba05941-1e8a-4e2b-8a07-04b0e80b6352 +Biospecimen,HTA7_1_161,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Exophytic melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562086,38b50349-7da2-44a1-a7c3-f526e9d1ba1e +Biospecimen,HTA7_1_162,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Exophytic melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562087,a41470ee-b300-4077-ae98-d986165dc309 +Biospecimen,HTA7_1_163,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562088,40d3800d-9167-4724-833c-8d228b8c7c1e +Biospecimen,HTA7_1_164,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562089,6c165806-e685-4381-9063-220808fc0ab6 +Biospecimen,HTA7_1_165,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562090,35c02d96-5ed5-414f-8879-10533bdc3af2 +Biospecimen,HTA7_1_166,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562091,41f59f2a-4e0a-4416-ba73-2224ea718803 +Biospecimen,HTA7_1_167,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562092,16440045-1fc6-447c-849f-062274ae67e3 +Biospecimen,HTA7_1_168,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562093,59330690-1da3-425a-a9c9-50b1cdc4c68e +Biospecimen,HTA7_1_169,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562094,f231ee27-15de-4f0b-b5f6-f1ae3b8ec464 +Biospecimen,HTA7_1_170,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562095,e2d3c80b-1970-4e3f-818c-6baef9c1a937 +Biospecimen,HTA7_1_171,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562096,d95db890-089e-42c3-9628-d6f748657f0d +Biospecimen,HTA7_1_172,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562097,a6ff604c-9fdf-4092-9347-2dee8a69624a +Biospecimen,HTA7_1_173,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562098,5d12060f-21ba-4ab3-8635-907b0b8db1d5 +Biospecimen,HTA7_1_174,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562099,90acae02-1015-4f28-8f0e-4709f27dc706 +Biospecimen,HTA7_1_175,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562100,49d2fbc5-adc0-4a10-a520-48586b95af97 +Biospecimen,HTA7_1_176,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562101,c3b9d044-0d04-4fe3-a63a-a7fd62a98f9f +Biospecimen,HTA7_1_177,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562102,2b5850ef-066a-4162-ad5b-1643285df49d +Biospecimen,HTA7_1_178,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562103,b2fe8db9-45ee-4d47-88db-19fb3ab0a902 +Biospecimen,HTA7_1_179,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562104,220b1c22-0aff-422c-89cb-14a6abe668ec +Biospecimen,HTA7_1_180,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562105,27beeb39-1cc7-41af-952f-7c74fade60ee +Biospecimen,HTA7_1_181,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562106,06957b28-8aff-4d0f-ba48-4e395c4b7967 +Biospecimen,HTA7_1_182,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562107,7ebf2153-3af0-4366-8888-aa962ca9d600 +Biospecimen,HTA7_1_183,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562108,ebb073e9-ef5c-40da-b497-2041aebe9b9e +Biospecimen,HTA7_1_184,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562109,2868c96c-6fd2-4a25-9a25-33c229d158bd +Biospecimen,HTA7_1_185,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562110,d9d3b1ca-5c12-49b1-9609-c2282d9f4c43 +Biospecimen,HTA7_1_186,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562111,910004d7-3ed9-4039-b239-72ad81c4f813 +Biospecimen,HTA7_1_187,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562112,05c16a31-259b-4f5a-8631-29add349efef +Biospecimen,HTA7_1_188,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562113,555e9e7b-3e1d-4dbf-bece-a43b62deddb7 +Biospecimen,HTA7_1_189,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562114,2e593fcb-538f-420c-a9e8-2dcc5911effd +Biospecimen,HTA7_1_190,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562115,da22573e-2de4-48ab-a7f2-564b0f31ed26 +Biospecimen,HTA7_1_191,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562116,0f95cf27-f636-480c-90b0-8c4240c75580 +Biospecimen,HTA7_1_192,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562117,3d25013c-e1ea-4887-8e67-09bf45283e36 +Biospecimen,HTA7_1_193,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562118,20c19605-cf75-4729-9fbc-64461f47eabf +Biospecimen,HTA7_1_194,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562119,ebacaf76-4343-4d71-8f10-08a26f543a68 +Biospecimen,HTA7_1_195,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562120,e3c2f530-5b9e-4f29-b268-2a7c1266f514 +Biospecimen,HTA7_1_196,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562121,ba39f770-e7c1-407d-a94c-e6b040b4c7cb +Biospecimen,HTA7_1_197,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562122,3435f8c4-d2c2-4341-be03-4dbb009279ae +Biospecimen,HTA7_1_198,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562123,c5947971-bb04-4bd7-99b6-9053a99cb326 +Biospecimen,HTA7_1_199,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562124,b1b9c3ac-6254-45e7-a4dd-2f2bb79ca98f +Biospecimen,HTA7_1_200,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562125,28212acc-4eff-4066-a3c8-d609a02d07df +Biospecimen,HTA7_1_201,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562126,99b50e27-bce6-4313-98dc-6b6ed10036e8 +Biospecimen,HTA7_1_202,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562127,70261e5b-0f95-40cf-b149-b18a9378a22e +Biospecimen,HTA7_1_203,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562128,974247fa-22af-4f7d-8547-b02525855a61 +Biospecimen,HTA7_1_204,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562129,e9f5b50f-20d4-4cd3-81dc-c2dd33080747 +Biospecimen,HTA7_1_205,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562130,22bc0fa5-3476-41ad-a24f-b409dc9ce219 +Biospecimen,HTA7_1_206,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562131,2fc34235-d418-4618-b153-2e9d0d4445ed +Biospecimen,HTA7_1_207,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562132,d3d12002-6683-4cce-9135-0d590769c7ce +Biospecimen,HTA7_1_208,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562133,81566816-ee4c-431b-9528-d588f240565f +Biospecimen,HTA7_1_209,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562134,de0586af-e2f4-4290-bf49-761364da851e +Biospecimen,HTA7_1_210,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562135,8358674a-efad-4e6c-88e9-edf0e1001d8f +Biospecimen,HTA7_1_211,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562136,7d725682-312b-4756-82d7-3497e3a3310e +Biospecimen,HTA7_1_212,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562137,091b2990-6d2d-49f9-b48a-fa13147d3e49 +Biospecimen,HTA7_1_213,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562138,36d22f40-fd2d-4dc8-8b59-1499d17bf323 +Biospecimen,HTA7_1_214,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562139,2438595a-dd05-414e-a3d1-6d0767253187 +Biospecimen,HTA7_1_215,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562140,793a8446-88b3-4b3a-9990-ed53a628e2a5 +Biospecimen,HTA7_1_216,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Inflammatory regression,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562141,a4896b58-1f10-4fad-8a0d-52d3003baf6b +Biospecimen,HTA7_1_217,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Inflammatory regression,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562142,9c0f2210-8690-4215-8cad-2c89d200ab6a +Biospecimen,HTA7_1_218,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Inflammatory regression,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562143,c2c271ca-f083-45bc-aacd-3fdd8b5d23d2 +Biospecimen,HTA7_1_219,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Inflammatory regression,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562144,c44f7c2b-e7fb-4891-9a95-85bdc7b47f98 +Biospecimen,HTA7_1_220,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Inflammatory regression,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562145,efa60be6-707e-4aa8-bd0f-d18797b41915 +Biospecimen,HTA7_1_221,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Inflammatory regression,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562146,ec1a07e6-f2b3-4ac7-989c-f5ea74215008 +Biospecimen,HTA7_1_222,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Inflammatory regression,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562147,037c2124-bbd8-4dee-a5fc-ce2e611f614c +Biospecimen,HTA7_1_223,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Inflammatory regression,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562148,d864e2c7-c4f8-4c13-9eb2-527cef8e5f83 +Biospecimen,HTA7_1_224,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Inflammatory regression,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562149,9d35853d-e7ba-45ff-8a0a-96d32f5eeaa2 +Biospecimen,HTA7_1_225,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Inflammatory regression,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562150,3b8628dd-d6e1-41af-a6c3-09b99e8d344d +Biospecimen,HTA7_1_226,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Exophytic melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562151,176a31a7-c04d-4cf3-92fc-49e33bf5d341 +Biospecimen,HTA7_1_227,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Exophytic melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562152,2e3eba90-54b5-4e5f-9e60-586e4154345d +Biospecimen,HTA7_1_228,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Exophytic melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562153,0e9327a9-9c05-4899-b85a-1abb7f41dd9a +Biospecimen,HTA7_1_229,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Exophytic melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562154,f7e62dc8-195e-40db-a481-cf96e962f4ce +Biospecimen,HTA7_1_230,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Exophytic melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562155,4a32c618-e99f-4207-9951-8cf3925bbd3f +Biospecimen,HTA7_1_231,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Exophytic melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562156,1a48b4a0-ba78-4ba4-ab9f-de3c6c43fc73 +Biospecimen,HTA7_1_232,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Exophytic melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562157,de7a3ed7-c8ff-45e9-b66a-39d41ab646e7 +Biospecimen,HTA7_1_233,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Exophytic melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562158,e1b105b8-a918-4c46-bb52-6ea13e76ce14 +Biospecimen,HTA7_1_234,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Exophytic melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562159,f3fa8650-82a5-4ffd-8ad8-0d75e7a47cf0 +Biospecimen,HTA7_1_235,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Exophytic melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562160,416a3ecf-428b-4df1-b701-bb2f98baee38 +Biospecimen,HTA7_1_236,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Exophytic melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562161,7294d024-7f59-42cc-92b4-221d7a57debc +Biospecimen,HTA7_1_237,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Exophytic melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562162,7126ae79-7048-4ed3-8f9b-9d2e1958a2ab +Biospecimen,HTA7_1_238,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Exophytic melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562163,7566e3ad-9762-4cca-9807-8c56d2f86156 +Biospecimen,HTA7_1_239,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Exophytic melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562164,ab6febfd-68cb-461d-a60a-53869c548faf +Biospecimen,HTA7_1_240,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Exophytic melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562165,da65a8f0-dc3f-48b3-8778-beb50752bf57 +Biospecimen,HTA7_1_241,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Exophytic melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562166,186457c9-25ea-44e3-af99-8ea9d6089560 +Biospecimen,HTA7_1_242,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Exophytic melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562167,94aece1e-80ac-493c-a3fb-e2497ceeefd0 +Biospecimen,HTA7_1_19,,HTA7_1_6,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Refrigerated at 4 degrees,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Superficial spreading melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561944,747c8daf-3736-4e47-ab39-ca9349ed12b6 +Biospecimen,HTA7_1_8,,HTA7_1_6,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Refrigerated at 4 degrees,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Superficial spreading melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26486640,46c47738-d180-4ced-bb0e-7b8163700696 +Biospecimen,HTA7_1_9,,HTA7_1_6,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Refrigerated at 4 degrees,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Superficial spreading melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26486641,564e8afa-4b3e-4496-808a-34b7806f96e2 +Biospecimen,HTA7_10_1,,HTA7_10,Baseline,20704,,Tissue Biospecimen Type,Excision,Formalin,Ambient temperature,20699,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,Superficial spreading melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of trunk,,Not Reported,,,Not Otherwise Specified,syn26486648,77bbd557-ade3-4434-8312-01898e8ff8f0 +Biospecimen,HTA7_10_2,,HTA7_10_1,Baseline,20704,,Tissue Biospecimen Type,Excision,Formalin,Refrigerated at 4 degrees,20699,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Superficial spreading melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of trunk,,Not Reported,,,Not Otherwise Specified,syn26486649,64af0ce3-cdfd-47ca-8d44-56a45627630f +Biospecimen,HTA7_13_1,,HTA7_13,Locoregional,21794,,Tissue Biospecimen Type,Excision,Formalin,Ambient temperature,21781,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Malignant melanoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of trunk,,Not Reported,,,Not Otherwise Specified,syn26486650,af866322-6dc9-48c0-8a21-487005ea0313 +Biospecimen,HTA7_13_2,,HTA7_13_1,Locoregional,21794,,Tissue Biospecimen Type,Excision,Formalin,Refrigerated at 4 degrees,21781,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,"Malignant melanoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of trunk,,Not Reported,,,Not Otherwise Specified,syn26486651,6099d94f-e287-46d3-a872-6ba74c32e9e8 +Biospecimen,HTA7_14_1,,HTA7_14,Metastasis,13522,,Tissue Biospecimen Type,Excision,Formalin,Ambient temperature,13523,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Malignant melanoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of trunk,,Not Reported,,,Not Otherwise Specified,syn26486652,78513c55-93d2-4d68-89fa-7849720dd219 +Biospecimen,HTA7_14_2,,HTA7_14_1,Metastasis,13522,,Tissue Biospecimen Type,Excision,Formalin,Refrigerated at 4 degrees,13523,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,"Malignant melanoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of trunk,,Not Reported,,,Not Otherwise Specified,syn26486653,6cea695f-4930-4348-8699-f1827997a311 +Biospecimen,HTA7_15_1,,HTA7_15,Baseline,28242,,Tissue Biospecimen Type,Excision,Formalin,Ambient temperature,28242,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26486654,097fb411-19bf-4989-bdc3-27d923f27321 +Biospecimen,HTA7_15_2,,HTA7_15_1,Baseline,28242,,Tissue Biospecimen Type,Excision,Formalin,Refrigerated at 4 degrees,28242,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26486655,8e830f59-f77d-4f90-a613-c8879691624a +Biospecimen,HTA7_16_1,,HTA7_16,Baseline,15524,,Tissue Biospecimen Type,Shave Biopsy,Formalin,Ambient temperature,15524,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,Superficial spreading melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of trunk,,Not Reported,,,Not Otherwise Specified,syn26486656,8829473a-fc18-4253-83fa-90035ed81c1b +Biospecimen,HTA7_16_2,,HTA7_16_1,Baseline,15524,,Tissue Biospecimen Type,Shave Biopsy,Formalin,Refrigerated at 4 degrees,15524,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Superficial spreading melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of trunk,,Not Reported,,,Not Otherwise Specified,syn26486657,dc01f17e-8dd4-4041-83d8-5b796d16e165 +Biospecimen,HTA7_22_1,,HTA7_22,Baseline,20336,,Tissue Biospecimen Type,Shave Biopsy,Formalin,Ambient temperature,20701,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,Superficial spreading melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of trunk,,Not Reported,,,Not Otherwise Specified,syn26486658,b6265a7f-b3c2-4222-b701-f2c9ce24e5b4 +Biospecimen,HTA7_22_2,,HTA7_22_1,Baseline,20336,,Tissue Biospecimen Type,Shave Biopsy,Formalin,Refrigerated at 4 degrees,20701,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Superficial spreading melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of trunk,,Not Reported,,,Not Otherwise Specified,syn26486659,a8ca2938-bd22-4d9b-9c70-759c2d479ec6 +Biospecimen,HTA7_32_1,,HTA7_32,Baseline,9002,,Tissue Biospecimen Type,Shave Biopsy,Formalin,Ambient temperature,9002,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,Superficial spreading melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26486660,610005a9-4432-42df-9ad4-62adeba24138 +Biospecimen,HTA7_32_2,,HTA7_32_1,Baseline,9002,,Tissue Biospecimen Type,Shave Biopsy,Formalin,Refrigerated at 4 degrees,9002,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Superficial spreading melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26486661,5f854250-b338-4abb-b7e3-969a634550b8 +Biospecimen,HTA7_47_1,,HTA7_47,Baseline,8972,,Tissue Biospecimen Type,Punch Biopsy,Formalin,Ambient temperature,8972,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,Dysplastic nevus,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of trunk,,Not Reported,,,Not Otherwise Specified,syn26486662,50f4f986-c056-4d15-bdc6-b219a4d5d2f2 +Biospecimen,HTA7_47_2,,HTA7_47_1,Baseline,8972,,Tissue Biospecimen Type,Punch Biopsy,Formalin,Refrigerated at 4 degrees,8972,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Dysplastic nevus,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of trunk,,Not Reported,,,Not Otherwise Specified,syn26486663,9494e7cf-0d0f-4f3f-b826-884e331f02ef +Biospecimen,HTA7_49_1,,HTA7_49,Baseline,22811,,Tissue Biospecimen Type,Excision,Formalin,Ambient temperature,22811,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of trunk,,Not Reported,,,Not Otherwise Specified,syn26486664,04887645-4bad-4ff2-9fa3-66418a92d08a +Biospecimen,HTA7_49_2,,HTA7_49_1,Baseline,22811,,Tissue Biospecimen Type,Excision,Formalin,Refrigerated at 4 degrees,22811,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of trunk,,Not Reported,,,Not Otherwise Specified,syn26486665,1f4f05c9-2dea-4a87-b483-e9bd2902dc8c +Biospecimen,HTA7_52_1,,HTA7_52,Baseline,25533,,Tissue Biospecimen Type,Excision,Formalin,Ambient temperature,25533,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,Superficial spreading melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of lower limb and hip,,Not Reported,,,Not Otherwise Specified,syn26486666,94ce0b69-ae9e-41fd-9b82-0209ff4324e8 +Biospecimen,HTA7_52_2,,HTA7_52_1,Baseline,25533,,Tissue Biospecimen Type,Excision,Formalin,Refrigerated at 4 degrees,25533,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Superficial spreading melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of lower limb and hip,,Not Reported,,,Not Otherwise Specified,syn26486667,716c846f-8ff8-4ca2-8c63-beac11a97107 +Biospecimen,HTA7_52_3,,HTA7_52_1,Baseline,25533,,Tissue Biospecimen Type,Excision,Formalin,Refrigerated at 4 degrees,25533,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Superficial spreading melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of lower limb and hip,,Not Reported,,,Not Otherwise Specified,syn26486668,640e74de-10ef-4630-95e6-8d18f27dab7e +Biospecimen,HTA7_6_1,,HTA7_6,Baseline,16334,,Tissue Biospecimen Type,Excision,Formalin,Ambient temperature,16320,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Malignant melanoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of scalp and neck,,Not Reported,,,Not Otherwise Specified,syn26486644,2ba5bfe4-eb3b-456a-91c2-f771bd65d586 +Biospecimen,HTA7_6_2,,HTA7_6_1,Baseline,16334,,Tissue Biospecimen Type,Excision,Formalin,Refrigerated at 4 degrees,16320,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,"Malignant melanoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of scalp and neck,,Not Reported,,,Not Otherwise Specified,syn26486645,a73d30c4-0901-4656-a659-75c16bafe676 +Biospecimen,HTA7_8_1,,HTA7_8,Baseline,19629,,Tissue Biospecimen Type,Excision,Formalin,Ambient temperature,19630,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,Nodular melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of lower limb and hip,,Not Reported,,,Not Otherwise Specified,syn26486646,c4be05e5-64a7-49b1-a372-8f1417557336 +Biospecimen,HTA7_8_2,,HTA7_8_1,Baseline,19629,,Tissue Biospecimen Type,Excision,Formalin,Refrigerated at 4 degrees,19630,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Nodular melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of lower limb and hip,,Not Reported,,,Not Otherwise Specified,syn26486647,47e50f18-c580-4b4b-9957-0c1f90858b40 +Biospecimen,HTA7_904_1,,HTA7_904,Initial Diagnosis,20951,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,20951,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26708819,986b782c-a5a5-4cea-937d-53627f096055 +Biospecimen,HTA7_904_2,,HTA7_904_1,Initial Diagnosis,20951,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,20951,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26708820,93843bb9-3a0f-4db8-b8b3-3c705a69945f +Biospecimen,HTA7_904_3,,HTA7_904_1,Initial Diagnosis,20951,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,20951,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26708821,c46e0e2f-aa57-4bc7-b7ac-d82f5410c1ed +Biospecimen,HTA7_904_4,,HTA7_904_1,Initial Diagnosis,20951,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,20951,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26708822,60f2db66-6a76-47f6-9fef-d8ae1732e3fd +Biospecimen,HTA7_904_5,,HTA7_904_1,Initial Diagnosis,20951,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,20951,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26708823,2b14d44f-8e88-4fd0-8d42-247c93b25bbd +Biospecimen,HTA7_905_1,,HTA7_905,Initial Diagnosis,17734,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,17734,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26708824,94c510aa-19fa-4f23-8bbd-8df6c6df2494 +Biospecimen,HTA7_905_2,,HTA7_905_1,Initial Diagnosis,17734,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,17734,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26708825,9aa990e5-60f7-436e-8dff-39b4dddb2909 +Biospecimen,HTA7_905_3,,HTA7_905_1,Initial Diagnosis,17734,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,17734,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26708826,ae5afb2a-6453-48aa-9987-80093de2846f +Biospecimen,HTA7_905_4,,HTA7_905_1,Initial Diagnosis,17734,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,17734,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26708827,7a51ce16-4ded-40ad-abcc-8efb206dd725 +Biospecimen,HTA7_905_5,,HTA7_905_1,Initial Diagnosis,17734,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,17734,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26708828,6d1a96d6-b943-4396-8fe7-b0a8eda12910 +Biospecimen,HTA7_906_1,,HTA7_906,Initial Diagnosis,26014,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,26014,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Ascending colon,,Not Reported,,,primary,syn26708829,dc9c2e04-cc1a-47dc-b871-9bd74429ad4b +Biospecimen,HTA7_906_2,,HTA7_906_1,Initial Diagnosis,26014,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,26014,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Ascending colon,,Not Reported,,,primary,syn26708830,197f6b4b-a6f5-48f0-bb1e-1b674bb16ed0 +Biospecimen,HTA7_906_3,,HTA7_906_1,Initial Diagnosis,26014,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,26014,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Ascending colon,,Not Reported,,,primary,syn26708831,237909fc-56bc-4c29-9e55-384df29d9e8b +Biospecimen,HTA7_906_4,,HTA7_906_1,Initial Diagnosis,26014,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,26014,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Ascending colon,,Not Reported,,,primary,syn26708832,aa69b096-7a9b-4ffc-bbf9-596c7b30f3bd +Biospecimen,HTA7_906_5,,HTA7_906_1,Initial Diagnosis,26014,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,26014,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Ascending colon,,Not Reported,,,primary,syn26708833,ae2e55aa-8568-4a4a-8090-d12e6d8f5bd8 +Biospecimen,HTA7_907_1,,HTA7_907,Initial Diagnosis,24384,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,24384,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Ascending colon,,Not Reported,,,primary,syn26708834,76abd282-46ea-443c-8b32-e04a018b1b83 +Biospecimen,HTA7_907_2,,HTA7_907_1,Initial Diagnosis,24384,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,24384,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Ascending colon,,Not Reported,,,primary,syn26708835,b146eeea-61d8-478d-9bad-bcfafd6fd471 +Biospecimen,HTA7_907_3,,HTA7_907_1,Initial Diagnosis,24384,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,24384,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Ascending colon,,Not Reported,,,primary,syn26708836,cbefd412-6dd2-4fc1-bea0-fcdc20a19dd9 +Biospecimen,HTA7_907_4,,HTA7_907_1,Initial Diagnosis,24384,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,24384,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Ascending colon,,Not Reported,,,primary,syn26708837,60b044ea-5e20-4e85-a056-911268396cd7 +Biospecimen,HTA7_907_5,,HTA7_907_1,Initial Diagnosis,24384,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,24384,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Ascending colon,,Not Reported,,,primary,syn26708838,5ea46532-2593-47cd-9282-3dfde5c2ca7b +Biospecimen,HTA7_908_1,,HTA7_908,Initial Diagnosis,21072,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,21072,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Ascending colon,,Not Reported,,,primary,syn26708839,5661e7cf-8850-49da-8684-1cc657ff545a +Biospecimen,HTA7_908_2,,HTA7_908_1,Initial Diagnosis,21072,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,21072,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Ascending colon,,Not Reported,,,primary,syn26708840,e3bda0bb-39d6-43a7-a2d1-9865ce0b98b8 +Biospecimen,HTA7_908_3,,HTA7_908_1,Initial Diagnosis,21072,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,21072,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Ascending colon,,Not Reported,,,primary,syn26708841,ed8fae75-4df2-44b0-9a11-b5f0b353408b +Biospecimen,HTA7_908_4,,HTA7_908_1,Initial Diagnosis,21072,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,21072,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Ascending colon,,Not Reported,,,primary,syn26708842,87edd125-a22f-4e52-81cb-fd9b8297579b +Biospecimen,HTA7_908_5,,HTA7_908_1,Initial Diagnosis,21072,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,21072,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Ascending colon,,Not Reported,,,primary,syn26708843,515a9338-e08f-4601-8b71-22eb47a0f1ba +Biospecimen,HTA7_909_1,,HTA7_909,Initial Diagnosis,11977,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,11977,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26708844,4bbe7494-8f6f-4729-90e4-778aa543a74b +Biospecimen,HTA7_909_3,,HTA7_909_1,Initial Diagnosis,11977,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,11977,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26708845,ff79f0b4-30a0-436a-9633-928620b33b15 +Biospecimen,HTA7_909_4,,HTA7_909_1,Initial Diagnosis,11977,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,11977,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26708846,6214e081-957a-4e58-ab0c-948270ed1e1f +Biospecimen,HTA7_909_5,,HTA7_909_1,Initial Diagnosis,11977,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,11977,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26708847,8d199f65-a021-489f-80bd-87bbfe8bcbc6 +Biospecimen,HTA7_910_1,,HTA7_910,Initial Diagnosis,25200,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,25200,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectosigmoid junction,,Not Reported,,,primary,syn26708848,a55d358a-2ef1-4844-bdbc-34c4e4243189 +Biospecimen,HTA7_910_2,,HTA7_910_1,Initial Diagnosis,25200,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,25200,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectosigmoid junction,,Not Reported,,,primary,syn26708849,d8638632-97b9-46e3-b0c6-31afb453ffe9 +Biospecimen,HTA7_910_3,,HTA7_910_1,Initial Diagnosis,25200,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,25200,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectosigmoid junction,,Not Reported,,,primary,syn26708850,7f749336-e7ac-4af6-94e4-1621f1010766 +Biospecimen,HTA7_910_4,,HTA7_910_1,Initial Diagnosis,25200,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,25200,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectosigmoid junction,,Not Reported,,,primary,syn26708851,9e336ead-a2f1-426d-9170-bea5c814467f +Biospecimen,HTA7_911_1,,HTA7_911,Initial Diagnosis,9911,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,9911,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26708852,9e27d07d-701e-453c-8908-8cd9043a8505 +Biospecimen,HTA7_911_2,,HTA7_911_1,Initial Diagnosis,9911,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,9911,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26708853,f72ab927-81e5-4bea-b1f5-afae1e61295f +Biospecimen,HTA7_911_3,,HTA7_911_1,Initial Diagnosis,9911,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,9911,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26708854,6821648a-8c47-45fe-8be3-f11f82f5489a +Biospecimen,HTA7_911_4,,HTA7_911_1,Initial Diagnosis,9911,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,9911,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26708855,97e26e63-87dd-4c2b-80a7-6ef0b931f9c2 +Biospecimen,HTA7_911_5,,HTA7_911_1,Initial Diagnosis,9911,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,9911,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26708856,4ddb0a8d-b731-412a-8379-8659f189b98e +Biospecimen,HTA7_912_1,,HTA7_912,Initial Diagnosis,19555,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,19555,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Transverse colon,,Not Reported,,,primary,syn26708857,8c39b39c-7907-407e-a827-7c469c18d91f +Biospecimen,HTA7_912_2,,HTA7_912_1,Initial Diagnosis,19555,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,19555,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Transverse colon,,Not Reported,,,primary,syn26708858,32311bbf-6cd9-4b0d-8df0-43a8ea96bd30 +Biospecimen,HTA7_912_3,,HTA7_912_1,Initial Diagnosis,19555,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,19555,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Transverse colon,,Not Reported,,,primary,syn26708859,8d3ed369-4019-42cd-9306-b4b5a404bedc +Biospecimen,HTA7_912_4,,HTA7_912_1,Initial Diagnosis,19555,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,19555,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Transverse colon,,Not Reported,,,primary,syn26708860,7ecbb2b6-e3e9-45ab-8eda-d403a37a9ffc +Biospecimen,HTA7_912_5,,HTA7_912_1,Initial Diagnosis,19555,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,19555,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Transverse colon,,Not Reported,,,primary,syn26708861,3bf4f1a8-73b5-443d-9d54-f96085026c35 +Biospecimen,HTA7_913_1,,HTA7_913,Initial Diagnosis,17134,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,17134,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26708862,601a8c54-1d61-45bb-a921-ac4ad4a271f0 +Biospecimen,HTA7_913_2,,HTA7_913_1,Initial Diagnosis,17134,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,17134,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26708863,2bef0dfd-28a5-4cc4-8cdc-520c6fdf092b +Biospecimen,HTA7_913_3,,HTA7_913_1,Initial Diagnosis,17134,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,17134,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26708864,d1c9c35e-b3d5-4d8b-9f5b-52778adbc672 +Biospecimen,HTA7_913_4,,HTA7_913_1,Initial Diagnosis,17134,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,17134,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26708865,faf8c0c1-e175-48de-98ea-802b193f0e55 +Biospecimen,HTA7_913_5,,HTA7_913_1,Initial Diagnosis,17134,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,17134,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26708866,998ff65d-2c41-48dc-b393-12057b90f5ba +Biospecimen,HTA7_914_1,,HTA7_914,Initial Diagnosis,27248,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,27248,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26708867,af28b232-0d89-4eb4-bb6e-594163c64233 +Biospecimen,HTA7_914_4,,HTA7_914_1,Initial Diagnosis,27248,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,27248,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26708868,888a335c-5114-42b0-b0f2-7f51b84bc447 +Biospecimen,HTA7_914_5,,HTA7_914_1,Initial Diagnosis,27248,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,27248,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26708869,a021f7d7-5b60-4d89-9209-f81f8be8795e +Biospecimen,HTA7_915_1,,HTA7_915,Initial Diagnosis,13613,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,13613,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26708870,d224d148-bdc8-4960-b57c-e93e154ece96 +Biospecimen,HTA7_915_2,,HTA7_915_1,Initial Diagnosis,13613,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,13613,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26708871,c4ba7cf6-fef1-4df2-9c3b-96d892090f0d +Biospecimen,HTA7_915_3,,HTA7_915_1,Initial Diagnosis,13613,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,13613,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26708872,cf9ab0cb-e042-406b-9346-eef477d0e079 +Biospecimen,HTA7_915_4,,HTA7_915_1,Initial Diagnosis,13613,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,13613,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26708873,b957165a-10ed-4f4d-820c-34af0ec20e93 +Biospecimen,HTA7_915_5,,HTA7_915_1,Initial Diagnosis,13613,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,13613,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26708874,1209a043-faaf-4d13-986c-6c2ac13657a7 +Biospecimen,HTA7_916_1,,HTA7_916,Initial Diagnosis,23683,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,23683,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26708876,c8c45d6a-d8eb-41d1-bc07-67ac6a40ce5c +Biospecimen,HTA7_916_3,,HTA7_916_1,Initial Diagnosis,23683,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,23683,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26708878,83bef440-9208-4d1d-a2f6-e728e920e3a0 +Biospecimen,HTA7_916_4,,HTA7_916_1,Initial Diagnosis,23683,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,23683,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26708880,478a36fc-27ea-4c30-8b70-9991b489241d +Biospecimen,HTA7_916_5,,HTA7_916_1,Initial Diagnosis,23683,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,23683,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26708882,5e085747-dbec-4f72-a754-362dbb85d12d +Biospecimen,HTA7_917_1,,HTA7_917,Initial Diagnosis,24781,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,24781,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Ascending colon,,Not Reported,,,primary,syn26708884,3a56b897-5769-4e53-9b5d-6f9cacf3bd38 +Biospecimen,HTA7_917_2,,HTA7_917_1,Initial Diagnosis,24781,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,24781,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Ascending colon,,Not Reported,,,primary,syn26708886,5631c4eb-e1f3-4d91-8c1d-03dc538422b0 +Biospecimen,HTA7_917_3,,HTA7_917_1,Initial Diagnosis,24781,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,24781,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Ascending colon,,Not Reported,,,primary,syn26708887,7e152e9c-f998-46f4-b6c4-8462eda7c30d +Biospecimen,HTA7_917_5,,HTA7_917_1,Initial Diagnosis,24781,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,24781,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Ascending colon,,Not Reported,,,primary,syn26708888,f2a71654-28c5-491d-aef7-d45c3a1152a5 +Biospecimen,HTA7_918_1,,HTA7_918,Initial Diagnosis,22627,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,22627,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,Mucinous adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Transverse colon,,Not Reported,,,primary,syn26708889,bc0e14c2-2259-487a-abcb-d7c379f50262 +Biospecimen,HTA7_918_2,,HTA7_918_1,Initial Diagnosis,22627,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,22627,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Mucinous adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Transverse colon,,Not Reported,,,primary,syn26708890,b145f396-cc5d-4e53-a17f-27fc5286fb5f +Biospecimen,HTA7_918_3,,HTA7_918_1,Initial Diagnosis,22627,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,22627,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Mucinous adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Transverse colon,,Not Reported,,,primary,syn26708891,6c477717-58b3-48aa-81fe-14585e00cf6d +Biospecimen,HTA7_918_4,,HTA7_918_1,Initial Diagnosis,22627,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,22627,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Mucinous adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Transverse colon,,Not Reported,,,primary,syn26708892,b8eb7789-74e3-47f1-8a20-7ddcfb6ebb80 +Biospecimen,HTA7_918_5,,HTA7_918_1,Initial Diagnosis,22627,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,22627,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Mucinous adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Transverse colon,,Not Reported,,,primary,syn26708893,d1ae0dbc-f761-4c93-98b8-eed6a2c58065 +Biospecimen,HTA7_919_1,,HTA7_919,Initial Diagnosis,23284,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,23284,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Descending colon,,Not Reported,,,primary,syn26708894,5123630e-b13a-4c6d-88bb-37e91a3dc4b5 +Biospecimen,HTA7_919_2,,HTA7_919_1,Initial Diagnosis,23284,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,23284,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Descending colon,,Not Reported,,,primary,syn26708895,1a86168a-23cb-4157-9f52-d7e063c9dc6a +Biospecimen,HTA7_919_3,,HTA7_919_1,Initial Diagnosis,23284,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,23284,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Descending colon,,Not Reported,,,primary,syn26708896,9453678a-091d-4117-83cf-b2be243381a8 +Biospecimen,HTA7_919_4,,HTA7_919_1,Initial Diagnosis,23284,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,23284,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Descending colon,,Not Reported,,,primary,syn26708897,8b04bfd6-bc11-4e14-b811-3dfcce79930b +Biospecimen,HTA7_919_5,,HTA7_919_1,Initial Diagnosis,23284,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,23284,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Descending colon,,Not Reported,,,primary,syn26708898,fd78c896-577c-4dde-bb45-b0c0d3db4475 +Biospecimen,HTA7_920_1,,HTA7_920,Initial Diagnosis,21534,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,21534,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, with Mucinous and Signet Ring Features",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26546875,d259114c-2196-4ec4-ae13-e129047d856a +Biospecimen,HTA7_920_2,,HTA7_920_1,Initial Diagnosis,21534,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,21534,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,"Adenocarcinoma, with Mucinous and Signet Ring Features",,,,Formalin fixed paraffin embedded - FFPE,,,23538,,Rectum NOS,,Not Reported,,,primary,syn26546876,84d7729c-abe0-46a5-8ec8-c486d4912edc +Biospecimen,HTA7_920_3,,HTA7_920_1,Initial Diagnosis,21534,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,21534,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,"Adenocarcinoma, with Mucinous and Signet Ring Features",,,,Formalin fixed paraffin embedded - FFPE,,,23538,,Rectum NOS,,Not Reported,,,primary,syn26561916,fedaa734-4d57-44d0-902f-4c83aca71c9e +Biospecimen,HTA7_920_4,,HTA7_920_1,Initial Diagnosis,21534,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,21534,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,"Adenocarcinoma, with Mucinous and Signet Ring Features",,,,Formalin fixed paraffin embedded - FFPE,,,23538,,Rectum NOS,,Not Reported,,,primary,syn26561932,8bb19ad6-d1a9-45ae-9150-a2ac2fac3f94 +Biospecimen,HTA7_920_5,,HTA7_920_1,Initial Diagnosis,21534,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,21534,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, with Mucinous and Signet Ring Features",,,,Formalin fixed paraffin embedded - FFPE,,,23538,,Rectum NOS,,Not Reported,,,primary,syn26708899,37c7d478-24df-4b54-b9a7-14ab8cb6b9b7 +Biospecimen,HTA7_920_6,,HTA7_920_1,Initial Diagnosis,21534,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,21534,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, with Mucinous and Signet Ring Features",,,,Formalin fixed paraffin embedded - FFPE,,,23538,,Rectum NOS,,Not Reported,,,primary,syn26708900,af07cee6-4608-446b-8f1c-93ce75156e0a +Biospecimen,HTA7_920_7,,HTA7_920_1,Initial Diagnosis,21534,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,21534,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, with Mucinous and Signet Ring Features",,,,Formalin fixed paraffin embedded - FFPE,,,23538,,Rectum NOS,,Not Reported,,,primary,syn26708901,8fd23831-5f98-4a93-b587-e14b0433f4b0 +Biospecimen,HTA7_920_8,,HTA7_920_1,Initial Diagnosis,21534,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,21534,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, with Mucinous and Signet Ring Features",,,,Formalin fixed paraffin embedded - FFPE,,,23538,,Rectum NOS,,Not Reported,,,primary,syn26708902,681b5395-b479-43ae-ac72-4deb83d3a284 +Biospecimen,HTA7_921_1,,HTA7_921,Initial Diagnosis,24908,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,24908,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26708903,b7c4beae-358f-4e1d-a5a0-fa6b4e207047 +Biospecimen,HTA7_921_2,,HTA7_921_1,Initial Diagnosis,24908,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,24908,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26708904,86497006-816e-4d62-8687-6659bb3d5306 +Biospecimen,HTA7_921_3,,HTA7_921_1,Initial Diagnosis,24908,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,24908,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26708905,0064d02a-9842-4e9e-9257-8395b96b2e2a +Biospecimen,HTA7_921_5,,HTA7_921_1,Initial Diagnosis,24908,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,24908,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26708906,b2f83de8-40f4-4002-bfd6-6927bebf9ed8 +Biospecimen,HTA7_922_1,,HTA7_922,Initial Diagnosis,22739,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,22740,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Transverse colon,,Not Reported,,,primary,syn26546877,a69bd02e-2894-4b52-90ef-99c9c77b5077 +Biospecimen,HTA7_922_2,,HTA7_922_1,Initial Diagnosis,22739,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,22740,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,24713,,Transverse colon,,Not Reported,,,primary,syn26546878,98c90052-f757-4b70-af8d-23b00cf68c89 +Biospecimen,HTA7_922_3,,HTA7_922_1,Initial Diagnosis,22739,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,22740,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,24713,,Transverse colon,,Not Reported,,,primary,syn26561917,7e659883-5e9e-4195-b0fa-f49a93034c89 +Biospecimen,HTA7_922_4,,HTA7_922_1,Initial Diagnosis,22739,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,22740,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,24713,,Transverse colon,,Not Reported,,,primary,syn26561933,75c3d7b9-dd58-4fef-873a-0440dcf8af0e +Biospecimen,HTA7_922_5,,HTA7_922_1,Initial Diagnosis,22739,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,22740,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,24713,,Transverse colon,,Not Reported,,,primary,syn26708907,1393317d-1f91-4780-a6c3-ca381c676d02 +Biospecimen,HTA7_922_6,,HTA7_922_1,Initial Diagnosis,22739,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,22740,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,24713,,Transverse colon,,Not Reported,,,primary,syn26708908,995176dd-2581-424b-8571-5048ef89d29f +Biospecimen,HTA7_922_7,,HTA7_922_1,Initial Diagnosis,22739,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,22740,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,24713,,Transverse colon,,Not Reported,,,primary,syn26708909,1dd0a4e3-fc44-4215-8cda-41dceee21ee8 +Biospecimen,HTA7_922_8,,HTA7_922_1,Initial Diagnosis,22739,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,22740,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,24713,,Transverse colon,,Not Reported,,,primary,syn26708910,3c648a8b-124f-45c3-b61c-b1f2bb9c2a28 +Biospecimen,HTA7_923_1,,HTA7_923,Initial Diagnosis,20236,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,20236,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Reported,,,primary,syn26708911,0528f0d1-867f-47e9-ad54-3f2f7f2f25fb +Biospecimen,HTA7_923_4,,HTA7_923_1,Initial Diagnosis,20236,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,20236,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Reported,,,primary,syn26708912,4c2faa37-38bb-4f4f-be1e-cb6cab4367f1 +Biospecimen,HTA7_923_5,,HTA7_923_1,Initial Diagnosis,20236,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,20236,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Reported,,,primary,syn26708913,8bc83bea-3961-4e94-9a3c-02e2c272ce3e +Biospecimen,HTA7_924_1,,HTA7_924,Initial Diagnosis,36114,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,36114,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Reported,,,primary,syn26708914,ca95ac44-8903-4f38-8648-1fffe693bc53 +Biospecimen,HTA7_924_2,,HTA7_924_1,Initial Diagnosis,36114,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,36114,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Reported,,,primary,syn26708915,a4bb9939-2572-459f-b176-974010b94055 +Biospecimen,HTA7_924_3,,HTA7_924_1,Initial Diagnosis,36114,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,36114,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Reported,,,primary,syn26708916,5cf9f892-793b-4327-a943-d29583ca6f34 +Biospecimen,HTA7_924_5,,HTA7_924_1,Initial Diagnosis,36114,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,36114,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Reported,,,primary,syn26708917,9628c5ef-02c9-424c-bc37-66a3e71e0cc4 +Biospecimen,HTA7_925_1,,HTA7_925,Initial Diagnosis,22073,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,22073,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, with Mucinous Features",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26546887,6e1b3987-b88a-4777-b41d-a6c08da63f81 +Biospecimen,HTA7_925_2,,HTA7_925_1,Initial Diagnosis,22073,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,22073,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,"Adenocarcinoma, with Mucinous Features",,,,Formalin fixed paraffin embedded - FFPE,,,24003,,Sigmoid colon,,Not Reported,,,primary,syn26546888,397a68a7-9eeb-44ce-8154-c8fc1c378b9c +Biospecimen,HTA7_925_3,,HTA7_925_1,Initial Diagnosis,22073,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,22073,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,"Adenocarcinoma, with Mucinous Features",,,,Formalin fixed paraffin embedded - FFPE,,,24003,,Sigmoid colon,,Not Reported,,,primary,syn26561922,4195c13b-f1e0-4e49-831f-4f750c612c7f +Biospecimen,HTA7_925_4,,HTA7_925_1,Initial Diagnosis,22073,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,22073,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,"Adenocarcinoma, with Mucinous Features",,,,Formalin fixed paraffin embedded - FFPE,,,24003,,Sigmoid colon,,Not Reported,,,primary,syn26561938,fa134a9c-4738-4dd7-a2c0-00ae2e9a59d6 +Biospecimen,HTA7_925_5,,HTA7_925_1,Initial Diagnosis,22073,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,22073,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, with Mucinous Features",,,,Formalin fixed paraffin embedded - FFPE,,,24003,,Sigmoid colon,,Not Reported,,,primary,syn26708918,74fb9293-c95a-41b1-a3d5-fab57d0f53fe +Biospecimen,HTA7_925_6,,HTA7_925_1,Initial Diagnosis,22073,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,22073,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, with Mucinous Features",,,,Formalin fixed paraffin embedded - FFPE,,,24003,,Sigmoid colon,,Not Reported,,,primary,syn26708919,f7c59c90-76e3-47e2-a0ce-65397293c529 +Biospecimen,HTA7_925_7,,HTA7_925_1,Initial Diagnosis,22073,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,22073,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, with Mucinous Features",,,,Formalin fixed paraffin embedded - FFPE,,,24003,,Sigmoid colon,,Not Reported,,,primary,syn26708920,4af67edd-77d8-4771-8db8-6c24fdc34196 +Biospecimen,HTA7_925_8,,HTA7_925_1,Initial Diagnosis,22073,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,22073,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, with Mucinous Features",,,,Formalin fixed paraffin embedded - FFPE,,,24003,,Sigmoid colon,,Not Reported,,,primary,syn26708921,5ba94518-b334-49b0-a9f5-c8cea4f71719 +Biospecimen,HTA7_926_1,,HTA7_926,Initial Diagnosis,25222,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,25223,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, with Mucinous Features",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26546861,78881d18-bf68-4b16-883c-e316d94aed2c +Biospecimen,HTA7_926_2,,HTA7_926_1,Initial Diagnosis,25222,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,25223,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,"Adenocarcinoma, with Mucinous Features",,,,Formalin fixed paraffin embedded - FFPE,,,27139,,Rectum NOS,,Not Reported,,,primary,syn26546862,dc893ee0-cdf4-4972-9e6b-fb79f0ed022c +Biospecimen,HTA7_926_3,,HTA7_926_1,Initial Diagnosis,25222,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,25223,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,"Adenocarcinoma, with Mucinous Features",,,,Formalin fixed paraffin embedded - FFPE,,,27139,,Rectum NOS,,Not Reported,,,primary,syn26561909,f9337e98-89e0-4018-b5b6-6aa1834cbb19 +Biospecimen,HTA7_926_4,,HTA7_926_1,Initial Diagnosis,25222,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,25223,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,"Adenocarcinoma, with Mucinous Features",,,,Formalin fixed paraffin embedded - FFPE,,,27139,,Rectum NOS,,Not Reported,,,primary,syn26561925,d954db36-a66c-4579-acbc-83b2c60b4277 +Biospecimen,HTA7_926_5,,HTA7_926_1,Initial Diagnosis,25222,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,25223,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, with Mucinous Features",,,,Formalin fixed paraffin embedded - FFPE,,,27139,,Rectum NOS,,Not Reported,,,primary,syn26708922,c991b2d8-79b4-460f-930b-63f44542c2ba +Biospecimen,HTA7_926_6,,HTA7_926_1,Initial Diagnosis,25222,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,25223,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, with Mucinous Features",,,,Formalin fixed paraffin embedded - FFPE,,,27139,,Rectum NOS,,Not Reported,,,primary,syn26708923,826ff776-c98c-45be-b363-1df35578c9e1 +Biospecimen,HTA7_926_7,,HTA7_926_1,Initial Diagnosis,25222,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,25223,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, with Mucinous Features",,,,Formalin fixed paraffin embedded - FFPE,,,27139,,Rectum NOS,,Not Reported,,,primary,syn26708924,975bd0bd-21b9-461d-b2f6-4173d02d06f0 +Biospecimen,HTA7_927_1,,HTA7_927,Initial Diagnosis,14776,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,14776,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26546863,154eea49-5f7f-47e8-8ceb-57365470cf47 +Biospecimen,HTA7_927_2,,HTA7_927_1,Initial Diagnosis,14776,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,14776,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,16660,,Sigmoid colon,,Not Reported,,,primary,syn26546864,18ee4355-ff06-4d8a-9914-deca9a818e1f +Biospecimen,HTA7_927_3,,HTA7_927_1,Initial Diagnosis,14776,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,14776,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,16660,,Sigmoid colon,,Not Reported,,,primary,syn26561910,39b400e4-fdfd-4b57-85d2-171ac2b6c981 +Biospecimen,HTA7_927_4,,HTA7_927_1,Initial Diagnosis,14776,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,14776,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,16660,,Sigmoid colon,,Not Reported,,,primary,syn26561926,93c55dd7-a582-44d5-b7c7-3751111a03d9 +Biospecimen,HTA7_927_5,,HTA7_927_1,Initial Diagnosis,14776,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,14776,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,16660,,Sigmoid colon,,Not Reported,,,primary,syn26708925,043af9b3-9718-4184-80ea-c2a0fdd45897 +Biospecimen,HTA7_927_6,,HTA7_927_1,Initial Diagnosis,14776,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,14776,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,16660,,Sigmoid colon,,Not Reported,,,primary,syn26708926,3c587985-188e-423e-928b-293ba1d0eb52 +Biospecimen,HTA7_927_7,,HTA7_927_1,Initial Diagnosis,14776,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,14776,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,16660,,Sigmoid colon,,Not Reported,,,primary,syn26708927,2a727260-4d57-4301-a72c-963e1d0fdfdd +Biospecimen,HTA7_927_8,,HTA7_927_1,Initial Diagnosis,14776,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,14776,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,16660,,Sigmoid colon,,Not Reported,,,primary,syn26708928,700d9791-0638-43dd-a7ce-1c01c36c92c3 +Biospecimen,HTA7_928_1,,HTA7_928,Initial Diagnosis,25737,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,25737,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,Mucinous adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Reported,,,primary,syn26708929,e51596b8-d5be-48ca-a376-33317a825545 +Biospecimen,HTA7_928_2,,HTA7_928_1,Initial Diagnosis,25737,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,25737,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Mucinous adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Reported,,,primary,syn26708930,e339825f-016e-4574-8abe-ac395f9384c4 +Biospecimen,HTA7_928_3,,HTA7_928_1,Initial Diagnosis,25737,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,25737,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Mucinous adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Reported,,,primary,syn26708931,5ee9a661-cabe-4035-b7a6-e933f5b1d86e +Biospecimen,HTA7_928_4,,HTA7_928_1,Initial Diagnosis,25737,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,25737,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Mucinous adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Reported,,,primary,syn26708932,4dccfec3-5e67-4bef-8208-d77c2c933abb +Biospecimen,HTA7_928_5,,HTA7_928_1,Initial Diagnosis,25737,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,25737,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Mucinous adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Reported,,,primary,syn26708933,e79e0a68-4617-4f9e-854e-739f905a31e1 +Biospecimen,HTA7_929_1,,HTA7_929,Initial Diagnosis,17179,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,17179,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26708934,e09a1997-c7ba-472e-bbb2-37a27eeb5c09 +Biospecimen,HTA7_929_2,,HTA7_929_1,Initial Diagnosis,17179,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,17179,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26708935,fe3d036a-6733-4eae-90f3-1db91536777c +Biospecimen,HTA7_929_3,,HTA7_929_1,Initial Diagnosis,17179,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,17179,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26708936,b51a5fd9-8a3e-4e7d-9970-eb8d5996ffb8 +Biospecimen,HTA7_929_4,,HTA7_929_1,Initial Diagnosis,17179,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,17179,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26708937,d4392d26-0562-49be-8b85-12848f5e743b +Biospecimen,HTA7_929_5,,HTA7_929_1,Initial Diagnosis,17179,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,17179,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26708938,979cdb38-4f17-4b57-8a9f-c8a0eac12f16 +Biospecimen,HTA7_930_1,,HTA7_930,Initial Diagnosis,17983,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,17983,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectosigmoid junction,,Not Reported,,,primary,syn26708939,12eaf330-e10c-4891-9307-144f81acf7d2 +Biospecimen,HTA7_930_2,,HTA7_930_1,Initial Diagnosis,17983,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,17983,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectosigmoid junction,,Not Reported,,,primary,syn26708940,8e8438cf-6d44-4600-a9cf-9ae8a6449e76 +Biospecimen,HTA7_930_3,,HTA7_930_1,Initial Diagnosis,17983,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,17983,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectosigmoid junction,,Not Reported,,,primary,syn26708941,27eed4da-d6a5-463e-80a3-c66692f29c26 +Biospecimen,HTA7_930_4,,HTA7_930_1,Initial Diagnosis,17983,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,17983,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectosigmoid junction,,Not Reported,,,primary,syn26708942,bc410739-dc85-4a26-be39-83c785504adf +Biospecimen,HTA7_930_5,,HTA7_930_1,Initial Diagnosis,17983,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,17983,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectosigmoid junction,,Not Reported,,,primary,syn26708943,7b131e87-4f01-4f82-88a0-9782127dcaec +Biospecimen,HTA7_931_1,,HTA7_931,Initial Diagnosis,9432,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,9432,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Transverse colon,,Not Reported,,,primary,syn26546879,d79c0e89-c2a1-427c-bc0b-a2773f22f60c +Biospecimen,HTA7_931_2,,HTA7_931_1,Initial Diagnosis,9432,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,9432,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,11286,,Transverse colon,,Not Reported,,,primary,syn26546880,6abc9400-2803-41e0-81c8-5a4a343a4116 +Biospecimen,HTA7_931_3,,HTA7_931_1,Initial Diagnosis,9432,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,9432,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,11286,,Transverse colon,,Not Reported,,,primary,syn26561918,2c2a7cb6-1ed7-4c22-9845-e87c691b0f9d +Biospecimen,HTA7_931_4,,HTA7_931_1,Initial Diagnosis,9432,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,9432,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,11286,,Transverse colon,,Not Reported,,,primary,syn26561934,6d6ab17d-4580-412a-bec8-ed1849e0fe87 +Biospecimen,HTA7_931_5,,HTA7_931_1,Initial Diagnosis,9432,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,9432,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,11286,,Transverse colon,,Not Reported,,,primary,syn26708944,3294c1f5-84b5-4445-98e5-1b0721d8bba9 +Biospecimen,HTA7_931_6,,HTA7_931_1,Initial Diagnosis,9432,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,9432,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,11286,,Transverse colon,,Not Reported,,,primary,syn26708945,381de9a6-9ab4-4e09-8b4d-b9d338a7936d +Biospecimen,HTA7_931_7,,HTA7_931_1,Initial Diagnosis,9432,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,9432,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,11286,,Transverse colon,,Not Reported,,,primary,syn26708946,b6617bcd-1ef5-4106-8337-a5aac775bcaa +Biospecimen,HTA7_931_8,,HTA7_931_1,Initial Diagnosis,9432,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,9432,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,11286,,Transverse colon,,Not Reported,,,primary,syn26708947,37e213b2-754a-4d0e-b984-8aa744252425 +Biospecimen,HTA7_932_1,,HTA7_932,Initial Diagnosis,21405,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,21405,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26546865,2c0c255e-a8a2-4a5d-82c7-e062799836da +Biospecimen,HTA7_932_2,,HTA7_932_1,Initial Diagnosis,21405,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,21405,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,23251,,Sigmoid colon,,Not Reported,,,primary,syn26546866,154baa6f-4422-49d4-a053-f0636b08cd96 +Biospecimen,HTA7_932_3,,HTA7_932_1,Initial Diagnosis,21405,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,21405,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,23251,,Sigmoid colon,,Not Reported,,,primary,syn26561911,022e7198-c224-4d25-acf6-43c91233911f +Biospecimen,HTA7_932_4,,HTA7_932_1,Initial Diagnosis,21405,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,21405,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,23251,,Sigmoid colon,,Not Reported,,,primary,syn26561927,77cd5509-0724-4806-aaac-807eea8afdc6 +Biospecimen,HTA7_932_5,,HTA7_932_1,Initial Diagnosis,21405,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,21405,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,23251,,Sigmoid colon,,Not Reported,,,primary,syn26708948,7b384c52-753e-4d45-987c-20e8704009b1 +Biospecimen,HTA7_932_6,,HTA7_932_1,Initial Diagnosis,21405,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,21405,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,23251,,Sigmoid colon,,Not Reported,,,primary,syn26708949,44387abb-cb4b-436b-8a49-689e7dc0299b +Biospecimen,HTA7_932_7,,HTA7_932_1,Initial Diagnosis,21405,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,21405,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,23251,,Sigmoid colon,,Not Reported,,,primary,syn26708950,3607d101-d732-4c48-9d69-d3a52ffbf42f +Biospecimen,HTA7_932_8,,HTA7_932_1,Initial Diagnosis,21405,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,21405,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,23251,,Sigmoid colon,,Not Reported,,,primary,syn26708951,5bdd652a-13e5-46e9-9df6-7f436ec19a94 +Biospecimen,HTA7_933_1,,HTA7_933,Initial Diagnosis,17563,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,17563,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,Mucinous adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26708952,1268bbaa-2d3f-4db7-be17-186fe8cc468d +Biospecimen,HTA7_933_2,,HTA7_933_1,Initial Diagnosis,17563,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,17563,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Mucinous adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26708953,51546049-415d-4d26-8249-817ec320fe39 +Biospecimen,HTA7_933_3,,HTA7_933_1,Initial Diagnosis,17563,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,17563,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Mucinous adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26708954,e9d5cb37-4ea9-41d7-9c81-f6265bec2642 +Biospecimen,HTA7_933_4,,HTA7_933_1,Initial Diagnosis,17563,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,17563,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Mucinous adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26708955,0c06ee81-1d8a-46fa-aa9f-603ac1172d15 +Biospecimen,HTA7_933_5,,HTA7_933_1,Initial Diagnosis,17563,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,17563,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Mucinous adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26708956,cfa13431-cf5e-4c03-84ee-84e0980c1223 +Biospecimen,HTA7_934_1,,HTA7_934,Initial Diagnosis,20492,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,20492,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectosigmoid junction,,Not Reported,,,primary,syn26546867,12b06d0a-c476-4b10-aabb-0364feb1b4eb +Biospecimen,HTA7_934_2,,HTA7_934_1,Initial Diagnosis,20492,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,20492,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,22324,,Rectosigmoid junction,,Not Reported,,,primary,syn26546868,1e414bad-96a8-426a-b6e4-16aee0ae8ed6 +Biospecimen,HTA7_934_3,,HTA7_934_1,Initial Diagnosis,20492,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,20492,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,22324,,Rectosigmoid junction,,Not Reported,,,primary,syn26561912,71c2da3b-7349-497e-b96b-c27e9b92cc70 +Biospecimen,HTA7_934_4,,HTA7_934_1,Initial Diagnosis,20492,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,20492,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,22324,,Rectosigmoid junction,,Not Reported,,,primary,syn26561928,0a511b70-3830-4bbd-88b8-f846d1c4bdbb +Biospecimen,HTA7_934_5,,HTA7_934_1,Initial Diagnosis,20492,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,20492,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,22324,,Rectosigmoid junction,,Not Reported,,,primary,syn26708957,73676141-a8fa-4831-a0b9-14c9f2b3b4a9 +Biospecimen,HTA7_934_6,,HTA7_934_1,Initial Diagnosis,20492,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,20492,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,22324,,Rectosigmoid junction,,Not Reported,,,primary,syn26708958,b68c1d57-eb05-4c7f-b662-6de109919f5d +Biospecimen,HTA7_934_7,,HTA7_934_1,Initial Diagnosis,20492,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,20492,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,22324,,Rectosigmoid junction,,Not Reported,,,primary,syn26708959,c84a0eff-84bb-4845-a13c-362485ae60a3 +Biospecimen,HTA7_934_8,,HTA7_934_1,Initial Diagnosis,20492,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,20492,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,22324,,Rectosigmoid junction,,Not Reported,,,primary,syn26708960,a7d6a9aa-bd7e-4341-9043-1cd62a416c60 +Biospecimen,HTA7_935_1,,HTA7_935,Initial Diagnosis,18726,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,18726,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26708961,600fe752-5fcf-43f7-8829-369ee767fd7d +Biospecimen,HTA7_935_2,,HTA7_935_1,Initial Diagnosis,18726,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,18726,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26708962,1f9af5d0-1d32-421a-a5bd-18ce1e447b0c +Biospecimen,HTA7_935_3,,HTA7_935_1,Initial Diagnosis,18726,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,18726,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26708963,2b4d42c5-ea15-4519-97d3-d0eeba74901d +Biospecimen,HTA7_935_4,,HTA7_935_1,Initial Diagnosis,18726,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,18726,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26708964,c39c16d2-b89a-44fa-9ca7-3a0a8b6f04d2 +Biospecimen,HTA7_936_1,,HTA7_936,Initial Diagnosis,17772,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,17772,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26708965,dbb0d850-363b-4e51-9f25-bc55a774487e +Biospecimen,HTA7_936_3,,HTA7_936_1,Initial Diagnosis,17772,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,17772,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26708966,88e5f902-c830-478e-a2b7-dc8ff05035a8 +Biospecimen,HTA7_936_4,,HTA7_936_1,Initial Diagnosis,17772,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,17772,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26708967,8a40d435-5da1-429a-84f1-74706a1331f8 +Biospecimen,HTA7_936_5,,HTA7_936_1,Initial Diagnosis,17772,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,17772,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26708968,86bd1732-9e25-4ea6-bfc6-9f90347cf6f6 +Biospecimen,HTA7_937_1,,HTA7_937,Metastasis,24359,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,24359,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,Metastatic/Recurrent Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,Metastatic,syn26708969,d8cc1b32-2c12-4433-b750-070df3047833 +Biospecimen,HTA7_937_2,,HTA7_937_1,Metastasis,24359,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,24359,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Metastatic/Recurrent Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,Metastatic,syn26708970,e6fc8e35-3d25-4168-875b-190ca161b115 +Biospecimen,HTA7_937_3,,HTA7_937_1,Metastasis,24359,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,24359,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Metastatic/Recurrent Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,Metastatic,syn26708971,bfce909e-2195-4fa9-b575-bfd8ec652695 +Biospecimen,HTA7_937_5,,HTA7_937_1,Metastasis,24359,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,24359,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Metastatic/Recurrent Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,Metastatic,syn26708972,832d4d35-5e91-4e86-b151-c3f9d65c75ca +Biospecimen,HTA7_938_1,,HTA7_938,Metastasis,24359,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,24359,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,Metastatic/Recurrent Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,Metastatic,syn26708973,d4cb058d-f038-41dc-af44-ae33bbedec3c +Biospecimen,HTA7_938_3,,HTA7_938_1,Metastasis,24359,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,24359,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Metastatic/Recurrent Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,Metastatic,syn26708974,d3029951-7741-4b69-a01a-e50d4b37b692 +Biospecimen,HTA7_938_4,,HTA7_938_1,Metastasis,24359,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,24359,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Metastatic/Recurrent Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,Metastatic,syn26708975,0e079a99-c93a-4008-bea3-6511c5d3f5a1 +Biospecimen,HTA7_938_5,,HTA7_938_1,Metastasis,24359,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,24359,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Metastatic/Recurrent Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,Metastatic,syn26708976,2f640ec6-9597-41da-bcca-e5cf41a20bc4 +Biospecimen,HTA7_939_1,,HTA7_939,Initial Diagnosis,20785,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,20785,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,Mucinous adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Reported,,,primary,syn26708977,bdea31c1-d433-480a-8138-572aa4a8e7df +Biospecimen,HTA7_939_2,,HTA7_939_1,Initial Diagnosis,20785,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,20785,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Mucinous adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Reported,,,primary,syn26708978,50d29751-7fc6-45c7-94ce-9f6c3151db29 +Biospecimen,HTA7_939_3,,HTA7_939_1,Initial Diagnosis,20785,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,20785,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Mucinous adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Reported,,,primary,syn26708979,522f566b-4748-4016-9566-2db9e6b60e2b +Biospecimen,HTA7_939_5,,HTA7_939_1,Initial Diagnosis,20785,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,20785,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Mucinous adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Reported,,,primary,syn26708980,90353ab5-26ef-4c2b-a71f-7e2ca5fd66e5 +Biospecimen,HTA7_940_1,,HTA7_940,Initial Diagnosis,25778,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,25778,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, Ex-Goblet Cell Carcinoid, with Solid, Signet Ring, and Mucinous Features",,,,Formalin fixed paraffin embedded - FFPE,,,,,Appendix,,Not Reported,,,primary,syn26546881,712ea2eb-8bf0-41e4-baa5-92fa33a10650 +Biospecimen,HTA7_940_2,,HTA7_940_1,Initial Diagnosis,25778,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,25778,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,"Adenocarcinoma, Ex-Goblet Cell Carcinoid, with Solid, Signet Ring, and Mucinous Features",,,,Formalin fixed paraffin embedded - FFPE,,,27569,,Appendix,,Not Reported,,,primary,syn26546882,c96da71e-c400-4b73-b811-bb1c90a8735f +Biospecimen,HTA7_940_3,,HTA7_940_1,Initial Diagnosis,25778,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,25778,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,"Adenocarcinoma, Ex-Goblet Cell Carcinoid, with Solid, Signet Ring, and Mucinous Features",,,,Formalin fixed paraffin embedded - FFPE,,,27569,,Appendix,,Not Reported,,,primary,syn26561919,7c3af515-3164-4081-a497-0814eb918aa6 +Biospecimen,HTA7_940_4,,HTA7_940_1,Initial Diagnosis,25778,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,25778,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,"Adenocarcinoma, Ex-Goblet Cell Carcinoid, with Solid, Signet Ring, and Mucinous Features",,,,Formalin fixed paraffin embedded - FFPE,,,27569,,Appendix,,Not Reported,,,primary,syn26561935,8fcc7641-1ab7-43e4-94ee-34fa4ce01b47 +Biospecimen,HTA7_940_5,,HTA7_940_1,Initial Diagnosis,25778,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,25778,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, Ex-Goblet Cell Carcinoid, with Solid, Signet Ring, and Mucinous Features",,,,Formalin fixed paraffin embedded - FFPE,,,27569,,Appendix,,Not Reported,,,primary,syn26708981,393911bf-85ec-457f-9409-2f43570d20f6 +Biospecimen,HTA7_940_6,,HTA7_940_1,Initial Diagnosis,25778,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,25778,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, Ex-Goblet Cell Carcinoid, with Solid, Signet Ring, and Mucinous Features",,,,Formalin fixed paraffin embedded - FFPE,,,27569,,Appendix,,Not Reported,,,primary,syn26708982,d9bdf2e2-7fa5-4412-a9ff-e7c2ea2442e7 +Biospecimen,HTA7_940_7,,HTA7_940_1,Initial Diagnosis,25778,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,25778,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, Ex-Goblet Cell Carcinoid, with Solid, Signet Ring, and Mucinous Features",,,,Formalin fixed paraffin embedded - FFPE,,,27569,,Appendix,,Not Reported,,,primary,syn26708983,5617b8a6-1ab6-4fde-8126-74b12c9dbd0a +Biospecimen,HTA7_940_8,,HTA7_940_1,Initial Diagnosis,25778,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,25778,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, Ex-Goblet Cell Carcinoid, with Solid, Signet Ring, and Mucinous Features",,,,Formalin fixed paraffin embedded - FFPE,,,27569,,Appendix,,Not Reported,,,primary,syn26708984,7e6dc64e-983a-4662-8bd3-38c4408d1863 +Biospecimen,HTA7_941_1,,HTA7_941,Initial Diagnosis,25976,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,25976,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Reported,,,primary,syn26708985,88b32f5e-b1cf-46ea-a31d-39b9a46f30e7 +Biospecimen,HTA7_941_2,,HTA7_941_1,Initial Diagnosis,25976,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,25976,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Reported,,,primary,syn26708986,c0cd13f3-a9da-40ae-9aba-51565dc0bed4 +Biospecimen,HTA7_941_3,,HTA7_941_1,Initial Diagnosis,25976,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,25976,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Reported,,,primary,syn26708987,0d983c63-d257-4272-9788-506cd341695d +Biospecimen,HTA7_941_4,,HTA7_941_1,Initial Diagnosis,25976,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,25976,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Reported,,,primary,syn26708988,f3d848c5-0f4f-457d-a382-89e41c641aa7 +Biospecimen,HTA7_941_5,,HTA7_941_1,Initial Diagnosis,25976,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,25976,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Reported,,,primary,syn26708989,9d2d4bdc-5769-4fda-b46e-f29be6996b25 +Biospecimen,HTA7_942_1,,HTA7_942,Initial Diagnosis,24734,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,24734,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Descending colon,,Not Reported,,,primary,syn26708990,60ea8cf7-aa78-4160-84f3-3e103e949b22 +Biospecimen,HTA7_942_2,,HTA7_942_1,Initial Diagnosis,24734,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,24734,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Descending colon,,Not Reported,,,primary,syn26708991,733a621b-87ec-476a-bc30-f21a7ac1930d +Biospecimen,HTA7_942_3,,HTA7_942_1,Initial Diagnosis,24734,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,24734,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Descending colon,,Not Reported,,,primary,syn26708992,9ae5e389-d220-4718-a579-69763664a816 +Biospecimen,HTA7_942_4,,HTA7_942_1,Initial Diagnosis,24734,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,24734,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Descending colon,,Not Reported,,,primary,syn26708993,ea5e207d-39be-4ac2-8567-3fd4fa9bd42a +Biospecimen,HTA7_942_5,,HTA7_942_1,Initial Diagnosis,24734,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,24734,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Descending colon,,Not Reported,,,primary,syn26708994,cb9e5e57-6ed0-43c3-b481-7be5c2f0df60 +Biospecimen,HTA7_943_1,,HTA7_943,Initial Diagnosis,31261,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,31261,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Ascending colon,,Not Reported,,,primary,syn26708995,5adb7854-0301-4d55-90ad-a721c103b735 +Biospecimen,HTA7_943_2,,HTA7_943_1,Initial Diagnosis,31261,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,31261,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Ascending colon,,Not Reported,,,primary,syn26708996,a680aa16-425c-4e6b-92e1-b2f3b5df4245 +Biospecimen,HTA7_943_3,,HTA7_943_1,Initial Diagnosis,31261,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,31261,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Ascending colon,,Not Reported,,,primary,syn26708997,92913aed-fd35-4b31-9be9-e3ea174fa484 +Biospecimen,HTA7_943_4,,HTA7_943_1,Initial Diagnosis,31261,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,31261,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Ascending colon,,Not Reported,,,primary,syn26708998,c1a45091-1de7-43c7-8d69-2436df8afd1b +Biospecimen,HTA7_943_5,,HTA7_943_1,Initial Diagnosis,31261,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,31261,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Ascending colon,,Not Reported,,,primary,syn26708999,e3d54598-c9f1-46be-afd1-c0b84c70ccdb +Biospecimen,HTA7_944_1,,HTA7_944,Initial Diagnosis,18312,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,18312,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709000,0197f285-586f-4479-9333-e6d47a2e852b +Biospecimen,HTA7_944_2,,HTA7_944_1,Initial Diagnosis,18312,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,18312,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709001,2c366420-c08b-4924-bf69-998edffb9d22 +Biospecimen,HTA7_944_3,,HTA7_944_1,Initial Diagnosis,18312,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,18312,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709002,2b1ef7f1-b5ed-490a-8ad3-160bccd11a10 +Biospecimen,HTA7_944_4,,HTA7_944_1,Initial Diagnosis,18312,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,18312,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709003,ccbb48be-78dc-4911-8596-327074cb7818 +Biospecimen,HTA7_944_5,,HTA7_944_1,Initial Diagnosis,18312,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,18312,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709004,1af35685-92c0-4ce3-afa2-dad72d68cb59 +Biospecimen,HTA7_945_1,,HTA7_945,Initial Diagnosis,24553,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,24553,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Reported,,,primary,syn26709005,d2594b2d-72ac-4af6-8770-3efe52ce4c4b +Biospecimen,HTA7_945_2,,HTA7_945_1,Initial Diagnosis,24553,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,24553,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Reported,,,primary,syn26709006,df6127c3-4c65-4b70-b1a6-ba5d67dbfcdc +Biospecimen,HTA7_945_3,,HTA7_945_1,Initial Diagnosis,24553,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,24553,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Reported,,,primary,syn26709007,42884e10-eec3-464e-8fc6-ea2d9d1b52a3 +Biospecimen,HTA7_945_4,,HTA7_945_1,Initial Diagnosis,24553,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,24553,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Reported,,,primary,syn26709008,d8b7d0d4-dc40-492f-a2a4-fcbcd60b4061 +Biospecimen,HTA7_945_5,,HTA7_945_1,Initial Diagnosis,24553,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,24553,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Reported,,,primary,syn26709009,c78d36d7-05eb-4365-944f-028e7d405b64 +Biospecimen,HTA7_946_1,,HTA7_946,Initial Diagnosis,23345,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,23345,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,Mucinous adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Reported,,,primary,syn26709010,d061672c-9ed0-4f8d-a92b-5fffe4eb0e12 +Biospecimen,HTA7_946_2,,HTA7_946_1,Initial Diagnosis,23345,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,23345,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Mucinous adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Reported,,,primary,syn26709011,58f7b61a-d804-4c72-879f-bfb5aa5513e2 +Biospecimen,HTA7_946_3,,HTA7_946_1,Initial Diagnosis,23345,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,23345,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Mucinous adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Reported,,,primary,syn26709012,57522524-afe3-4b2e-b7b5-33151bf4b2fd +Biospecimen,HTA7_946_4,,HTA7_946_1,Initial Diagnosis,23345,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,23345,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Mucinous adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Reported,,,primary,syn26709013,503668b0-4552-4a5e-8683-3b0162701cad +Biospecimen,HTA7_946_5,,HTA7_946_1,Initial Diagnosis,23345,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,23345,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Mucinous adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Reported,,,primary,syn26709014,dd65af04-0a02-4c6d-aa09-2551afde5a72 +Biospecimen,HTA7_947_1,,HTA7_947,Initial Diagnosis,21281,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,21282,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectosigmoid junction,,Not Reported,,,primary,syn26546871,0f5e3c8a-553a-4374-a2f9-cf8f734173b1 +Biospecimen,HTA7_947_2,,HTA7_947_1,Initial Diagnosis,21281,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,21282,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,23004,,Rectosigmoid junction,,Not Reported,,,primary,syn26546872,ea6177bd-c91e-43c0-ab4a-f28b84c1d7b4 +Biospecimen,HTA7_947_3,,HTA7_947_1,Initial Diagnosis,21281,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,21282,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,23004,,Rectosigmoid junction,,Not Reported,,,primary,syn26561914,df3d252b-4bcb-492d-a817-06ed257fa3d8 +Biospecimen,HTA7_947_4,,HTA7_947_1,Initial Diagnosis,21281,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,21282,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,23004,,Rectosigmoid junction,,Not Reported,,,primary,syn26561930,66c9ca33-9d31-4b1b-8fee-240df9cd76cc +Biospecimen,HTA7_947_5,,HTA7_947_1,Initial Diagnosis,21281,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,21282,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,23004,,Rectosigmoid junction,,Not Reported,,,primary,syn26709015,74b98384-0116-455e-930c-11d00625a91f +Biospecimen,HTA7_947_6,,HTA7_947_1,Initial Diagnosis,21281,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,21282,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,23004,,Rectosigmoid junction,,Not Reported,,,primary,syn26709016,8931b471-75e8-4dc9-97de-7ef8ed8c1886 +Biospecimen,HTA7_947_7,,HTA7_947_1,Initial Diagnosis,21281,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,21282,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,23004,,Rectosigmoid junction,,Not Reported,,,primary,syn26709017,6a22042a-7d96-4835-b24a-9e17b39cb13b +Biospecimen,HTA7_947_8,,HTA7_947_1,Initial Diagnosis,21281,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,21282,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,23004,,Rectosigmoid junction,,Not Reported,,,primary,syn26709018,00fddb64-10f0-47d8-a7bb-0efe30e9ea83 +Biospecimen,HTA7_948_1,,HTA7_948,Initial Diagnosis,16044,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,16044,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709019,230c2f57-6dab-460e-8a8b-fbf1f88c9570 +Biospecimen,HTA7_948_3,,HTA7_948_1,Initial Diagnosis,16044,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,16044,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709020,24e89eb1-c2d3-49bb-baaa-37aab24799b2 +Biospecimen,HTA7_948_4,,HTA7_948_1,Initial Diagnosis,16044,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,16044,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709021,513e955c-9864-4c21-98d6-f9ad70c22381 +Biospecimen,HTA7_948_5,,HTA7_948_1,Initial Diagnosis,16044,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,16044,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709022,94c601ea-72ce-4ae7-8549-7687e4970e78 +Biospecimen,HTA7_949_1,,HTA7_949,Initial Diagnosis,27856,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,27856,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Ascending colon,,Not Reported,,,primary,syn26709023,b9bbee21-5cf0-4dc6-b959-e893c6f8371e +Biospecimen,HTA7_949_2,,HTA7_949_1,Initial Diagnosis,27856,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,27856,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Ascending colon,,Not Reported,,,primary,syn26709024,993797cf-adeb-4fc0-bd82-1d5bb2252009 +Biospecimen,HTA7_949_3,,HTA7_949_1,Initial Diagnosis,27856,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,27856,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Ascending colon,,Not Reported,,,primary,syn26709025,317646bc-1806-45db-a94f-46ffc0d88062 +Biospecimen,HTA7_949_5,,HTA7_949_1,Initial Diagnosis,27856,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,27856,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Ascending colon,,Not Reported,,,primary,syn26709026,a9f3b53e-fa3a-4238-b349-2202175f4c6e +Biospecimen,HTA7_950_1,,HTA7_950,Initial Diagnosis,20822,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,20822,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Ascending colon,,Not Reported,,,primary,syn26709027,933dc356-9b69-42b8-afe3-5ae482bb76eb +Biospecimen,HTA7_950_2,,HTA7_950_1,Initial Diagnosis,20822,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,20822,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Ascending colon,,Not Reported,,,primary,syn26709028,6047f84d-dbbd-474c-9c06-76ec73073350 +Biospecimen,HTA7_950_3,,HTA7_950_1,Initial Diagnosis,20822,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,20822,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Ascending colon,,Not Reported,,,primary,syn26709029,f657e86a-94d2-4969-9335-73575001c268 +Biospecimen,HTA7_950_4,,HTA7_950_1,Initial Diagnosis,20822,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,20822,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Ascending colon,,Not Reported,,,primary,syn26709030,4e604b1c-64c2-4794-8b7e-d27e04b7596c +Biospecimen,HTA7_950_5,,HTA7_950_1,Initial Diagnosis,20822,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,20822,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Ascending colon,,Not Reported,,,primary,syn26709031,9c6754e2-a7cb-43f8-8a96-6e5eb6ad4a6a +Biospecimen,HTA7_951_1,,HTA7_951,Initial Diagnosis,25239,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,25239,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709032,e762b3ef-e038-4f64-824c-fd7b68487719 +Biospecimen,HTA7_951_2,,HTA7_951_1,Initial Diagnosis,25239,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,25239,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709033,9864acaf-488a-4a79-a6fd-91239308c795 +Biospecimen,HTA7_951_4,,HTA7_951_1,Initial Diagnosis,25239,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,25239,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709034,f5f61332-fa18-4107-984c-7d79cf5f31da +Biospecimen,HTA7_951_5,,HTA7_951_1,Initial Diagnosis,25239,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,25239,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709035,050b8eff-85ce-4c79-b936-a627fb2e7a0a +Biospecimen,HTA7_952_1,,HTA7_952,Initial Diagnosis,20453,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,20453,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709036,965db930-547c-4dc5-b0b5-37cdec2d348e +Biospecimen,HTA7_952_2,,HTA7_952_1,Initial Diagnosis,20453,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,20453,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709037,43119982-04a2-4454-aaac-d27dc02306ff +Biospecimen,HTA7_952_3,,HTA7_952_1,Initial Diagnosis,20453,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,20453,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709038,e66780c2-180f-4be4-bb54-3359e438b69d +Biospecimen,HTA7_952_4,,HTA7_952_1,Initial Diagnosis,20453,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,20453,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709039,3d7021d9-4976-4461-a6f5-0034a5f61bcb +Biospecimen,HTA7_952_5,,HTA7_952_1,Initial Diagnosis,20453,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,20453,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709040,93996676-9a45-4ef1-b44a-33df6c707c9a +Biospecimen,HTA7_953_1,,HTA7_953,Initial Diagnosis,20453,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,20453,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709041,b0667a48-f4f6-422f-b5ba-43ca97ace2d7 +Biospecimen,HTA7_953_2,,HTA7_953_1,Initial Diagnosis,20453,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,20453,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709042,bb842af8-59fb-4902-a871-88071f04a1e4 +Biospecimen,HTA7_953_3,,HTA7_953_1,Initial Diagnosis,20453,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,20453,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709043,629d909b-793d-4ce8-a3d7-a183f6cc5298 +Biospecimen,HTA7_953_4,,HTA7_953_1,Initial Diagnosis,20453,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,20453,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709044,841015a8-455d-4bcf-a6b2-0e62c894467c +Biospecimen,HTA7_953_5,,HTA7_953_1,Initial Diagnosis,20453,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,20453,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709045,3bfdb2c1-9eba-4af1-a926-4623d87109ee +Biospecimen,HTA7_954_1,,HTA7_954,Initial Diagnosis,23587,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,23587,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709046,4ae47b0e-0a4b-4506-af88-c6bb0490f6ce +Biospecimen,HTA7_954_2,,HTA7_954_1,Initial Diagnosis,23587,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,23587,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709047,5a017614-905f-4cc4-8e16-a09ec1593593 +Biospecimen,HTA7_954_3,,HTA7_954_1,Initial Diagnosis,23587,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,23587,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709048,4b721ba6-80ae-4eac-a068-0af1785ec8f3 +Biospecimen,HTA7_954_4,,HTA7_954_1,Initial Diagnosis,23587,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,23587,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709049,372bf2d4-beef-4d54-9a2d-5fbc4e9197b2 +Biospecimen,HTA7_954_5,,HTA7_954_1,Initial Diagnosis,23587,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,23587,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709050,5c91de11-162b-42df-a8d3-8b67afcfde26 +Biospecimen,HTA7_955_1,,HTA7_955,Initial Diagnosis,23787,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,23787,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709051,8dabd496-f454-4a2c-8378-87a9ddf3160f +Biospecimen,HTA7_955_2,,HTA7_955_1,Initial Diagnosis,23787,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,23787,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709052,b3cd2c44-90f7-4ffa-abf0-d3b62354f17a +Biospecimen,HTA7_955_3,,HTA7_955_1,Initial Diagnosis,23787,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,23787,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709053,1eee6f7d-f2f6-427e-946d-fe2acfc18892 +Biospecimen,HTA7_955_4,,HTA7_955_1,Initial Diagnosis,23787,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,23787,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709054,318dff5f-7045-4aa7-b2c3-5dee19ea69b3 +Biospecimen,HTA7_955_5,,HTA7_955_1,Initial Diagnosis,23787,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,23787,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709055,ab1674b5-9d0b-4e41-be0d-ea2ee2e0caef +Biospecimen,HTA7_956_1,,HTA7_956,Initial Diagnosis,26615,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,26615,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Transverse colon,,Not Reported,,,primary,syn26709056,2b4112f2-06e9-4142-a15a-9bc5a963d605 +Biospecimen,HTA7_956_2,,HTA7_956_1,Initial Diagnosis,26615,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,26615,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Transverse colon,,Not Reported,,,primary,syn26709057,760972de-6ab6-45c0-ac35-a63152c1d0d9 +Biospecimen,HTA7_957_1,,HTA7_957,Initial Diagnosis,28264,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,28264,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectosigmoid junction,,Not Reported,,,primary,syn26709058,c11e34e3-84ed-48ab-85f9-00be3b6d0f4e +Biospecimen,HTA7_957_2,,HTA7_957_1,Initial Diagnosis,28264,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,28264,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectosigmoid junction,,Not Reported,,,primary,syn26709059,d5811db9-d6de-4723-8db7-5568bf691c0a +Biospecimen,HTA7_957_3,,HTA7_957_1,Initial Diagnosis,28264,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,28264,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectosigmoid junction,,Not Reported,,,primary,syn26709060,859e2f7d-5273-40be-b5fc-b85a1f946489 +Biospecimen,HTA7_957_4,,HTA7_957_1,Initial Diagnosis,28264,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,28264,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectosigmoid junction,,Not Reported,,,primary,syn26709061,a4a3f65b-ea57-4feb-ba3f-09a85d4dc3ca +Biospecimen,HTA7_957_5,,HTA7_957_1,Initial Diagnosis,28264,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,28264,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectosigmoid junction,,Not Reported,,,primary,syn26709062,97da918a-a9bb-4b21-ae72-35b6a24c928a +Biospecimen,HTA7_958_1,,HTA7_958,Initial Diagnosis,22335,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,22335,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Reported,,,primary,syn26709063,7d9178f8-131d-4583-af78-b0c380bb4205 +Biospecimen,HTA7_958_2,,HTA7_958_1,Initial Diagnosis,22335,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,22335,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Reported,,,primary,syn26709064,f0414eee-f694-4be5-b12a-3a592b4a73b9 +Biospecimen,HTA7_958_3,,HTA7_958_1,Initial Diagnosis,22335,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,22335,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Reported,,,primary,syn26709065,b0478d93-2e86-4866-9926-3fdaafad627b +Biospecimen,HTA7_958_4,,HTA7_958_1,Initial Diagnosis,22335,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,22335,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Reported,,,primary,syn26709066,25ce7f9b-574c-4c9d-aaed-2abeb79765f5 +Biospecimen,HTA7_958_5,,HTA7_958_1,Initial Diagnosis,22335,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,22335,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Reported,,,primary,syn26709067,28a0ec97-9a3a-4eed-83e2-9e2b7864d54e +Biospecimen,HTA7_959_1,,HTA7_959,Initial Diagnosis,29295,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,29295,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectosigmoid junction,,Not Reported,,,primary,syn26709068,e562495d-6533-4be1-ad08-73d4a39addd1 +Biospecimen,HTA7_959_2,,HTA7_959_1,Initial Diagnosis,29295,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,29295,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectosigmoid junction,,Not Reported,,,primary,syn26709069,19434072-5d43-478a-ad04-3c0e73285a48 +Biospecimen,HTA7_959_3,,HTA7_959_1,Initial Diagnosis,29295,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,29295,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectosigmoid junction,,Not Reported,,,primary,syn26709070,c1bb1f59-c80f-4249-8c04-03a5dfa569d0 +Biospecimen,HTA7_959_4,,HTA7_959_1,Initial Diagnosis,29295,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,29295,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectosigmoid junction,,Not Reported,,,primary,syn26709071,086b0448-1c20-4e9f-8055-b21e06b20c01 +Biospecimen,HTA7_959_5,,HTA7_959_1,Initial Diagnosis,29295,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,29295,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectosigmoid junction,,Not Reported,,,primary,syn26709072,354a5142-d19b-4a71-ba28-d21e8279e409 +Biospecimen,HTA7_960_1,,HTA7_960,Initial Diagnosis,21781,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,21781,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709073,5de24094-d52c-4605-bd6a-8279d94734d0 +Biospecimen,HTA7_960_2,,HTA7_960_1,Initial Diagnosis,21781,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,21781,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709074,c4222905-9dfa-4876-bfc6-689bc72572de +Biospecimen,HTA7_960_3,,HTA7_960_1,Initial Diagnosis,21781,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,21781,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709075,fddf8097-efb5-46c9-bb65-cac16a6938db +Biospecimen,HTA7_960_4,,HTA7_960_1,Initial Diagnosis,21781,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,21781,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709076,c1b85384-84cb-4c4c-87b8-3c386f127652 +Biospecimen,HTA7_960_5,,HTA7_960_1,Initial Diagnosis,21781,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,21781,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709077,2a050ae3-a81e-4484-84df-d6fd501a37d8 +Biospecimen,HTA7_961_1,,HTA7_961,Initial Diagnosis,24226,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,24226,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Ascending colon,,Not Reported,,,primary,syn26709078,ed57f129-c244-4859-a984-7f6745b32338 +Biospecimen,HTA7_961_2,,HTA7_961_1,Initial Diagnosis,24226,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,24226,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Ascending colon,,Not Reported,,,primary,syn26709079,f48ecce9-f313-4886-8f6b-fbadada89e8d +Biospecimen,HTA7_961_3,,HTA7_961_1,Initial Diagnosis,24226,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,24226,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Ascending colon,,Not Reported,,,primary,syn26709080,67e9f888-de7a-451d-b780-65f89a6ceb7b +Biospecimen,HTA7_961_4,,HTA7_961_1,Initial Diagnosis,24226,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,24226,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Ascending colon,,Not Reported,,,primary,syn26709081,39c5a768-5d4a-4bce-bdc5-f9e95abdcb11 +Biospecimen,HTA7_961_5,,HTA7_961_1,Initial Diagnosis,24226,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,24226,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Ascending colon,,Not Reported,,,primary,syn26709082,14652291-d90d-47cf-8dce-60eb9dd8036b +Biospecimen,HTA7_962_1,,HTA7_962,Initial Diagnosis,17744,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,17744,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709083,00a01bb1-325f-452d-b503-9e25baa230b6 +Biospecimen,HTA7_962_2,,HTA7_962_1,Initial Diagnosis,17744,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,17744,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709084,fdd9fec7-861a-4677-a48c-eabcb5800612 +Biospecimen,HTA7_962_3,,HTA7_962_1,Initial Diagnosis,17744,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,17744,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709085,9afcfe0c-8af5-4bcd-805e-6923309e5745 +Biospecimen,HTA7_962_4,,HTA7_962_1,Initial Diagnosis,17744,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,17744,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709086,8a6080b1-16bd-49b8-874a-a46289fe60c6 +Biospecimen,HTA7_962_5,,HTA7_962_1,Initial Diagnosis,17744,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,17744,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709087,cf0ff283-a7cc-4819-8fb6-7252be97f506 +Biospecimen,HTA7_963_1,,HTA7_963,Initial Diagnosis,23515,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,23516,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, with Mucinous Features",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26546883,99c55a30-786d-4845-a53b-4b3af3fee5fd +Biospecimen,HTA7_963_2,,HTA7_963_1,Initial Diagnosis,23515,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,23516,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,"Adenocarcinoma, with Mucinous Features",,,,Formalin fixed paraffin embedded - FFPE,,,25118,,Rectum NOS,,Not Reported,,,primary,syn26546884,2f419ec8-47da-4ca5-9586-3c81e44f2a58 +Biospecimen,HTA7_963_3,,HTA7_963_1,Initial Diagnosis,23515,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,23516,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,"Adenocarcinoma, with Mucinous Features",,,,Formalin fixed paraffin embedded - FFPE,,,25118,,Rectum NOS,,Not Reported,,,primary,syn26561920,93a033d3-dc4c-4252-928c-19b3a03ce5fa +Biospecimen,HTA7_963_4,,HTA7_963_1,Initial Diagnosis,23515,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,23516,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,"Adenocarcinoma, with Mucinous Features",,,,Formalin fixed paraffin embedded - FFPE,,,25118,,Rectum NOS,,Not Reported,,,primary,syn26561936,882111f1-6a5a-4ae4-9eb0-66bef6537db9 +Biospecimen,HTA7_963_5,,HTA7_963_1,Initial Diagnosis,23515,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,23516,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, with Mucinous Features",,,,Formalin fixed paraffin embedded - FFPE,,,25118,,Rectum NOS,,Not Reported,,,primary,syn26709088,12d7b7c0-6e48-4789-9043-0573fcc936d2 +Biospecimen,HTA7_963_6,,HTA7_963_1,Initial Diagnosis,23515,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,23516,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, with Mucinous Features",,,,Formalin fixed paraffin embedded - FFPE,,,25118,,Rectum NOS,,Not Reported,,,primary,syn26709089,215ea6d4-a218-4afe-b3d1-e32d2ed964eb +Biospecimen,HTA7_963_7,,HTA7_963_1,Initial Diagnosis,23515,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,23516,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, with Mucinous Features",,,,Formalin fixed paraffin embedded - FFPE,,,25118,,Rectum NOS,,Not Reported,,,primary,syn26709090,a5f63872-efab-4123-9eac-4389a3e99fd4 +Biospecimen,HTA7_964_1,,HTA7_964,Initial Diagnosis,18469,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,18469,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Transverse colon,,Not Reported,,,primary,syn26709091,28b32898-d5e7-46ac-b919-2c72ee4cfa80 +Biospecimen,HTA7_964_2,,HTA7_964_1,Initial Diagnosis,18469,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,18469,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Transverse colon,,Not Reported,,,primary,syn26709092,64913bd5-bcf9-48be-a4f4-44cacb025568 +Biospecimen,HTA7_964_4,,HTA7_964_1,Initial Diagnosis,18469,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,18469,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Transverse colon,,Not Reported,,,primary,syn26709093,692476c9-7de9-4c57-a7a2-548d3811cc14 +Biospecimen,HTA7_964_5,,HTA7_964_1,Initial Diagnosis,18469,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,18469,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Transverse colon,,Not Reported,,,primary,syn26709094,3922520a-606e-4a8a-88cb-993fe76b5dad +Biospecimen,HTA7_965_1,,HTA7_965,Initial Diagnosis,29512,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,29512,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Reported,,,primary,syn26546891,3f26cd58-d3b4-459b-9e72-5af19e1f502d +Biospecimen,HTA7_965_2,,HTA7_965_1,Initial Diagnosis,29512,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,29512,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,31106,,Cecum,,Not Reported,,,primary,syn26546892,c2a0ca0f-5cd8-4339-9907-2d01b7784aec +Biospecimen,HTA7_965_3,,HTA7_965_1,Initial Diagnosis,29512,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,29512,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,31106,,Cecum,,Not Reported,,,primary,syn26561924,002f615e-4f7c-4897-834c-df793f17a0e8 +Biospecimen,HTA7_965_4,,HTA7_965_1,Initial Diagnosis,29512,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,29512,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,31106,,Cecum,,Not Reported,,,primary,syn26561940,447dce6f-4108-4c88-85e1-d7960a92fae8 +Biospecimen,HTA7_965_5,,HTA7_965_1,Initial Diagnosis,29512,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,29512,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,31106,,Cecum,,Not Reported,,,primary,syn26709095,de2aa265-6ab3-40ae-b9e4-98dea3f4323e +Biospecimen,HTA7_965_7,,HTA7_965_1,Initial Diagnosis,29512,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,29512,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,31106,,Cecum,,Not Reported,,,primary,syn26709096,60d23371-d8ae-4558-90fc-9b5a0057c1e0 +Biospecimen,HTA7_965_8,,HTA7_965_1,Initial Diagnosis,29512,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,29512,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,31106,,Cecum,,Not Reported,,,primary,syn26709097,77f870ae-6a98-4345-912b-dc5e2ce8c507 +Biospecimen,HTA7_966_1,,HTA7_966,Initial Diagnosis,26767,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,26767,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26546869,da4760a4-e0e7-49a7-8ccb-d2c962d66260 +Biospecimen,HTA7_966_2,,HTA7_966_1,Initial Diagnosis,26767,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,26767,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,28347,,Sigmoid colon,,Not Reported,,,primary,syn26546870,e8de6271-9ae4-4268-ba62-3ff0675d8f0e +Biospecimen,HTA7_966_3,,HTA7_966_1,Initial Diagnosis,26767,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,26767,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,28347,,Sigmoid colon,,Not Reported,,,primary,syn26561913,4f778d3a-bc19-461d-be47-3e76c4b7b2c5 +Biospecimen,HTA7_966_4,,HTA7_966_1,Initial Diagnosis,26767,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,26767,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,28347,,Sigmoid colon,,Not Reported,,,primary,syn26561929,ffc411eb-b88a-411c-b9bf-bfa0722ba7b9 +Biospecimen,HTA7_966_6,,HTA7_966_1,Initial Diagnosis,18469,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,18469,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Transverse colon,,Not Reported,,,primary,syn26709098,82b5bc8d-e2a4-4c51-846a-ddba9c7c06ae +Biospecimen,HTA7_967_1,,HTA7_967,Recurrence,22766,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,22766,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,Recurrent/Residual Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Not Reported,,Not Reported,,,Recurrent,syn26709099,7deded62-47da-4263-a7af-9dbb93fdfca8 +Biospecimen,HTA7_967_3,,HTA7_967_1,Recurrence,22766,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,22766,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Recurrent/Residual Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Not Reported,,Not Reported,,,Recurrent,syn26709100,00be86c3-ba97-4358-a5fa-2553fff69184 +Biospecimen,HTA7_967_4,,HTA7_967_1,Recurrence,22766,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,22766,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Recurrent/Residual Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Not Reported,,Not Reported,,,Recurrent,syn26709101,8a83e299-ff66-4000-91f1-c7ddd8184e32 +Biospecimen,HTA7_967_5,,HTA7_967_1,Recurrence,22766,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,22766,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Recurrent/Residual Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Not Reported,,Not Reported,,,Recurrent,syn26709102,54e6a2ff-90ce-4344-9ccc-6a34585f51a8 +Biospecimen,HTA7_968_1,,HTA7_968,Initial Diagnosis,17723,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,17723,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Reported,,,primary,syn26709103,fd9965ec-a797-4bd3-8b15-289cfca9e1f2 +Biospecimen,HTA7_968_2,,HTA7_968_1,Initial Diagnosis,17723,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,17723,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Reported,,,primary,syn26709104,d363d272-1d6f-4ef7-86cd-ac58be3d1052 +Biospecimen,HTA7_968_3,,HTA7_968_1,Initial Diagnosis,17723,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,17723,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Reported,,,primary,syn26709105,453319ca-18fc-4070-a0ff-9cfd8533bb56 +Biospecimen,HTA7_968_4,,HTA7_968_1,Initial Diagnosis,17723,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,17723,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Reported,,,primary,syn26709106,e5df2eaa-12a2-4659-9222-f35b16040e3a +Biospecimen,HTA7_968_5,,HTA7_968_1,Initial Diagnosis,17723,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,17723,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Reported,,,primary,syn26709107,e658679b-f1a4-47e4-901f-beae09161fb2 +Biospecimen,HTA7_969_1,,HTA7_969,Initial Diagnosis,11211,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,11211,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709108,85043ad6-55a8-492e-b7f0-7483a81c9cf8 +Biospecimen,HTA7_969_2,,HTA7_969_1,Initial Diagnosis,11211,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,11211,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709109,8dcd8547-79a4-4e44-932c-c216b415f412 +Biospecimen,HTA7_969_3,,HTA7_969_1,Initial Diagnosis,11211,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,11211,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709110,56e257e9-785b-499b-a640-f95130bfbb5c +Biospecimen,HTA7_969_4,,HTA7_969_1,Initial Diagnosis,11211,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,11211,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709111,910c0b94-0924-41c2-ac90-ab3d31a8a4be +Biospecimen,HTA7_969_5,,HTA7_969_1,Initial Diagnosis,11211,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,11211,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709112,993db200-e4fe-4b80-af00-0920914f05f5 +Biospecimen,HTA7_970_1,,HTA7_970,Initial Diagnosis,14687,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,14687,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709113,ba9cdd39-0f63-4e5d-ad50-677156b48dd6 +Biospecimen,HTA7_970_2,,HTA7_970_1,Initial Diagnosis,14687,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,14687,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709114,6859763f-15be-4681-996a-c10907ae93de +Biospecimen,HTA7_970_3,,HTA7_970_1,Initial Diagnosis,14687,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,14687,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709115,d88956cc-8606-4abf-a8ce-b71cbfa331d9 +Biospecimen,HTA7_970_4,,HTA7_970_1,Initial Diagnosis,14687,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,14687,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709116,1239bd5b-aa22-44db-978d-bb56655321f8 +Biospecimen,HTA7_970_5,,HTA7_970_1,Initial Diagnosis,14687,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,14687,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709117,324976df-8797-42e0-8863-854102db53c0 +Biospecimen,HTA7_971_1,,HTA7_971,Initial Diagnosis,21881,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,21881,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectosigmoid junction,,Not Reported,,,primary,syn26709118,951bd886-4622-4c61-8a5d-f637d0d1a473 +Biospecimen,HTA7_971_2,,HTA7_971_1,Initial Diagnosis,21881,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,21881,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectosigmoid junction,,Not Reported,,,primary,syn26709119,03d6a5d7-64a8-46c6-ab8f-bb3bb5c8eb03 +Biospecimen,HTA7_971_3,,HTA7_971_1,Initial Diagnosis,21881,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,21881,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectosigmoid junction,,Not Reported,,,primary,syn26709120,2684d765-0394-4687-a0d7-58385fedfd57 +Biospecimen,HTA7_971_4,,HTA7_971_1,Initial Diagnosis,21881,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,21881,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectosigmoid junction,,Not Reported,,,primary,syn26709121,8a90a9a9-14e9-41a9-be09-adeae315ce3b +Biospecimen,HTA7_971_5,,HTA7_971_1,Initial Diagnosis,21881,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,21881,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectosigmoid junction,,Not Reported,,,primary,syn26709122,99e7f73c-c35e-41fa-a0c2-25e3601ca66d +Biospecimen,HTA7_972_1,,HTA7_972,Initial Diagnosis,14585,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,14588,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26546885,91045527-444b-48fc-8d72-b9c13077f247 +Biospecimen,HTA7_972_2,,HTA7_972_1,Initial Diagnosis,14585,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,14588,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,16147,,Sigmoid colon,,Not Reported,,,primary,syn26546886,9867c81b-bd95-4d83-9144-caefbd46ceb1 +Biospecimen,HTA7_972_3,,HTA7_972_1,Initial Diagnosis,14585,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,14588,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,16147,,Sigmoid colon,,Not Reported,,,primary,syn26561921,53e88f94-8d65-4331-9d5c-99e703ce5c43 +Biospecimen,HTA7_972_4,,HTA7_972_1,Initial Diagnosis,14585,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,14588,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,16147,,Sigmoid colon,,Not Reported,,,primary,syn26561937,4133f3e6-5072-427c-8b0e-57150731cc2b +Biospecimen,HTA7_972_5,,HTA7_972_1,Initial Diagnosis,14585,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,14588,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,16147,,Sigmoid colon,,Not Reported,,,primary,syn26709123,8262722b-8e54-41c2-bbed-033baa3e9525 +Biospecimen,HTA7_972_6,,HTA7_972_1,Initial Diagnosis,14585,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,14588,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,16147,,Sigmoid colon,,Not Reported,,,primary,syn26709124,490bd949-da93-4bf9-a686-a1191aca2732 +Biospecimen,HTA7_972_7,,HTA7_972_1,Initial Diagnosis,14585,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,14588,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,16147,,Sigmoid colon,,Not Reported,,,primary,syn26709125,02d0e03a-93fd-4916-9c1f-2a2774ce4396 +Biospecimen,HTA7_972_8,,HTA7_972_1,Initial Diagnosis,14585,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,14588,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,16147,,Sigmoid colon,,Not Reported,,,primary,syn26709126,a87aa4cb-4d7b-40a7-81e8-b47652509f74 +Biospecimen,HTA7_973_1,,HTA7_973,Initial Diagnosis,25652,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,25652,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Ascending colon,,Not Reported,,,primary,syn26709127,2f191a88-9348-4c54-bcd3-7ac4c16f2ee7 +Biospecimen,HTA7_973_2,,HTA7_973_1,Initial Diagnosis,25652,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,25652,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Ascending colon,,Not Reported,,,primary,syn26709128,95742cdb-451a-45e7-a421-81ced33d0106 +Biospecimen,HTA7_973_3,,HTA7_973_1,Initial Diagnosis,25652,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,25652,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Ascending colon,,Not Reported,,,primary,syn26709129,799fe22e-1bcd-42bd-9164-de4333978ff2 +Biospecimen,HTA7_973_4,,HTA7_973_1,Initial Diagnosis,25652,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,25652,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Ascending colon,,Not Reported,,,primary,syn26709130,5d24ccd9-b88a-4aee-a2bf-696ac3fb9040 +Biospecimen,HTA7_973_5,,HTA7_973_1,Initial Diagnosis,25652,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,25652,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Ascending colon,,Not Reported,,,primary,syn26709131,e360a205-c66c-4cfa-ae5d-07d05a6eb477 +Biospecimen,HTA7_974_1,,HTA7_974,Initial Diagnosis,24688,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,24688,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709132,87b33ded-ff3f-401c-ab06-c969157265e4 +Biospecimen,HTA7_974_2,,HTA7_974_1,Initial Diagnosis,24688,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,24688,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709133,de5f2982-7306-4b1d-8cc5-ec35dae5f2d1 +Biospecimen,HTA7_974_3,,HTA7_974_1,Initial Diagnosis,24688,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,24688,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709134,f8bc326f-bf5e-45ea-bdf7-9a7ce87bfbfd +Biospecimen,HTA7_974_4,,HTA7_974_1,Initial Diagnosis,24688,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,24688,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709135,4516cde1-31d1-4d58-bed3-c86685d7e3cf +Biospecimen,HTA7_974_5,,HTA7_974_1,Initial Diagnosis,24688,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,24688,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709136,e8fea611-a18b-455d-8651-9d065791428c +Biospecimen,HTA7_975_1,,HTA7_975,Initial Diagnosis,24262,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,24262,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709137,eb84fbc4-d4a9-4361-af4e-ebf06fe6a233 +Biospecimen,HTA7_975_2,,HTA7_975_1,Initial Diagnosis,24262,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,24262,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709138,ea2d2c20-9086-4f7a-b8bd-b5ab9efdb673 +Biospecimen,HTA7_975_3,,HTA7_975_1,Initial Diagnosis,24262,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,24262,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709139,998cb8d5-d730-4879-9f6e-f8bcb9ef47bf +Biospecimen,HTA7_975_4,,HTA7_975_1,Initial Diagnosis,24262,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,24262,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709140,a621bad6-7084-4530-9d34-490022c2b91a +Biospecimen,HTA7_975_5,,HTA7_975_1,Initial Diagnosis,24262,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,24262,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709141,ec2c0354-795f-46a9-84a5-57bd740b4d50 +Biospecimen,HTA7_976_1,,HTA7_976,Initial Diagnosis,22868,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,22868,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709142,718e5c9c-7d6e-4b81-883d-1f631d2e0edb +Biospecimen,HTA7_976_2,,HTA7_976_1,Initial Diagnosis,22868,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,22868,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709143,11fb6ec4-f711-491e-b566-92cd92421692 +Biospecimen,HTA7_976_3,,HTA7_976_1,Initial Diagnosis,22868,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,22868,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709144,1d31e7fe-eb21-427a-868b-c2da0c27721f +Biospecimen,HTA7_976_4,,HTA7_976_1,Initial Diagnosis,22868,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,22868,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709145,4283a1b3-ebea-43e1-aa52-187aa452ae2f +Biospecimen,HTA7_976_5,,HTA7_976_1,Initial Diagnosis,22868,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,22868,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709146,ca395502-26c4-4089-b4a6-985ba823677a +Biospecimen,HTA7_977_1,,HTA7_977,Initial Diagnosis,12836,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,12836,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Descending colon,,Not Reported,,,primary,syn26709147,a78a25ef-7c82-4cfd-8a4f-893c25a0b903 +Biospecimen,HTA7_977_2,,HTA7_977_1,Initial Diagnosis,12836,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,12836,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Descending colon,,Not Reported,,,primary,syn26709148,4692da2a-71ce-4fc7-887d-abe551bfb3ad +Biospecimen,HTA7_977_4,,HTA7_977_1,Initial Diagnosis,12836,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,12836,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Descending colon,,Not Reported,,,primary,syn26709149,b0d66357-0f33-4165-8028-f0f52b5bb1d3 +Biospecimen,HTA7_977_5,,HTA7_977_1,Initial Diagnosis,12836,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,12836,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Descending colon,,Not Reported,,,primary,syn26709150,ca10d8ea-8f1f-4f98-a5ba-4df03ef0148a +Biospecimen,HTA7_978_1,,HTA7_978,Initial Diagnosis,22195,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,22195,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709151,ea7f6298-6c70-4193-9070-9a11420efaba +Biospecimen,HTA7_978_2,,HTA7_978_1,Initial Diagnosis,22195,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,22195,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709152,14c047b6-f145-4d4d-89a5-9b036ec42ffc +Biospecimen,HTA7_978_3,,HTA7_978_1,Initial Diagnosis,22195,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,22195,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709153,d7f295f0-f177-48e9-987a-2e39e606feed +Biospecimen,HTA7_978_4,,HTA7_978_1,Initial Diagnosis,22195,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,22195,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709154,03bb77a0-67e7-4879-a686-2c26ebdcdefc +Biospecimen,HTA7_978_5,,HTA7_978_1,Initial Diagnosis,22195,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,22195,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709155,3ca1f8db-fc6f-4cf3-8bd9-51bba1dda848 +Biospecimen,HTA7_979_1,,HTA7_979,Initial Diagnosis,19637,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,19637,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709156,f3f434fb-1e09-442e-9d53-fb8c0d6694eb +Biospecimen,HTA7_979_3,,HTA7_979_1,Initial Diagnosis,19637,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,19637,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709157,ded01b8f-94ba-4a56-b5d0-2a55c1b4b9d2 +Biospecimen,HTA7_979_4,,HTA7_979_1,Initial Diagnosis,19637,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,19637,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709158,1b9f308b-fbbb-494a-9e40-e63437172265 +Biospecimen,HTA7_979_5,,HTA7_979_1,Initial Diagnosis,19637,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,19637,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709159,9a4a52ca-94bd-41b9-83f0-38806815185d +Biospecimen,HTA7_980_1,,HTA7_980,Initial Diagnosis,19637,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,19637,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709160,45b61f72-ba30-40b3-aa34-25ad2c16febe +Biospecimen,HTA7_980_2,,HTA7_980_1,Initial Diagnosis,19637,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,19637,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709161,6b99cb06-a150-45f6-b0cc-c15159b9ede9 +Biospecimen,HTA7_980_3,,HTA7_980_1,Initial Diagnosis,19637,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,19637,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709162,a684ba2b-6992-4719-b24c-6327fe019a0a +Biospecimen,HTA7_980_4,,HTA7_980_1,Initial Diagnosis,19637,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,19637,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709163,9de96944-0dda-496a-a42b-80b7cd5d8286 +Biospecimen,HTA7_980_5,,HTA7_980_1,Initial Diagnosis,19637,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,19637,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709164,e76111ec-4026-4ff7-9d90-22ca5adb293b +Biospecimen,HTA7_981_1,,HTA7_981,Initial Diagnosis,30807,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,30807,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709165,30ec5959-2c2a-4605-b1c7-eb6c201235d2 +Biospecimen,HTA7_981_2,,HTA7_981_1,Initial Diagnosis,30807,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,30807,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709166,13fcc051-5f69-4ed3-9c29-0a1d93d75c60 +Biospecimen,HTA7_981_4,,HTA7_981_1,Initial Diagnosis,30807,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,30807,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709167,76973857-962b-4679-8397-f575856ac171 +Biospecimen,HTA7_981_5,,HTA7_981_1,Initial Diagnosis,30807,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,30807,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709168,01ce956a-5a78-4e08-8b72-1e6581110126 +Biospecimen,HTA7_982_1,,HTA7_982,Recurrence,14460,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,14460,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, with Mucinous Features",,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Reported,,,Recurrent,syn26546889,aaa7f6b5-76ec-4473-a408-b5b9c9ccfc8d +Biospecimen,HTA7_982_2,,HTA7_982_1,Recurrence,14460,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,14460,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,"Adenocarcinoma, with Mucinous Features",,,,Formalin fixed paraffin embedded - FFPE,,,15955,,Cecum,,Not Reported,,,Recurrent,syn26546890,9d81cd09-9696-49c4-b6f7-171224588305 +Biospecimen,HTA7_982_3,,HTA7_982_1,Recurrence,14460,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,14460,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,"Adenocarcinoma, with Mucinous Features",,,,Formalin fixed paraffin embedded - FFPE,,,15955,,Cecum,,Not Reported,,,Recurrent,syn26561923,1a06a940-67e1-4d03-987d-68e542b457d5 +Biospecimen,HTA7_982_4,,HTA7_982_1,Recurrence,14460,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,14460,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,"Adenocarcinoma, with Mucinous Features",,,,Formalin fixed paraffin embedded - FFPE,,,15955,,Cecum,,Not Reported,,,Recurrent,syn26561939,ba89b123-b06a-4a23-88f0-79ed0138517d +Biospecimen,HTA7_982_5,,HTA7_982_1,Recurrence,14460,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,14460,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, with Mucinous Features",,,,Formalin fixed paraffin embedded - FFPE,,,15955,,Cecum,,Not Reported,,,Recurrent,syn26709169,95764170-882e-4aae-bddf-36a4a67968a5 +Biospecimen,HTA7_982_6,,HTA7_982_1,Recurrence,14460,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,14460,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, with Mucinous Features",,,,Formalin fixed paraffin embedded - FFPE,,,15955,,Cecum,,Not Reported,,,Recurrent,syn26709170,b7c13e6b-8eb1-4bf2-ab5a-2e5c41939ffa +Biospecimen,HTA7_982_7,,HTA7_982_1,Recurrence,14460,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,14460,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, with Mucinous Features",,,,Formalin fixed paraffin embedded - FFPE,,,15955,,Cecum,,Not Reported,,,Recurrent,syn26709171,e0291f2f-da22-41e9-a576-929a7d142308 +Biospecimen,HTA7_982_8,,HTA7_982_1,Recurrence,14460,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,14460,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, with Mucinous Features",,,,Formalin fixed paraffin embedded - FFPE,,,15955,,Cecum,,Not Reported,,,Recurrent,syn26709172,c42e25b5-ce58-4efb-b58f-eef3a2325955 +Biospecimen,HTA7_983_1,,HTA7_983,Initial Diagnosis,17403,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,17403,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709173,14771875-4a6b-41d6-b0af-26f41ce0f7a9 +Biospecimen,HTA7_983_2,,HTA7_983_1,Initial Diagnosis,17403,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,17403,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709174,064c795c-8489-4a1d-be74-dd93c7bf3a72 +Biospecimen,HTA7_983_4,,HTA7_983_1,Initial Diagnosis,17403,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,17403,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709175,8141cc87-0283-4246-b9e9-acf6b3f8d173 +Biospecimen,HTA7_983_5,,HTA7_983_1,Initial Diagnosis,17403,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,17403,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709176,7777b2c3-dc00-45e3-9489-58797098f390 +Biospecimen,HTA7_984_1,,HTA7_984,Initial Diagnosis,17761,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,17761,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709177,94069249-432e-4217-b2f5-5d9d04cd5835 +Biospecimen,HTA7_984_2,,HTA7_984_1,Initial Diagnosis,17761,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,17761,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709178,1e4e0548-1fb5-46b6-b313-432e5a911a81 +Biospecimen,HTA7_984_4,,HTA7_984_1,Initial Diagnosis,17761,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,17761,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709179,33c38518-9b77-4e13-9e5d-2f3b1af211dd +Biospecimen,HTA7_984_5,,HTA7_984_1,Initial Diagnosis,17761,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,17761,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709180,140a9369-2cd7-4185-865d-7e64e59be654 +Biospecimen,HTA7_985_1,,HTA7_985,Initial Diagnosis,21074,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,21074,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709181,54ffcc6f-1f7c-4afd-a935-644dbcdd04ca +Biospecimen,HTA7_985_4,,HTA7_985_1,Initial Diagnosis,21074,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,21074,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709182,9f1ae91d-d282-40e1-b556-d9804f87215c +Biospecimen,HTA7_985_5,,HTA7_985_1,Initial Diagnosis,21074,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,21074,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709183,814c260a-a901-4a28-bfc1-9feda3dc7743 +Biospecimen,HTA7_986_1,,HTA7_986,Initial Diagnosis,17308,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,17308,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,Mucinous adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709184,aee8f7c3-f86c-4c0a-9ec7-528439fea5dd +Biospecimen,HTA7_986_2,,HTA7_986_1,Initial Diagnosis,17308,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,17308,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Mucinous adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709185,6628875f-4cc2-43df-b9c4-d7e5179e9df0 +Biospecimen,HTA7_986_3,,HTA7_986_1,Initial Diagnosis,17308,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,17308,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Mucinous adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709186,e2bebf64-bb18-4074-ab92-3d0ee5014447 +Biospecimen,HTA7_986_4,,HTA7_986_1,Initial Diagnosis,17308,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,17308,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Mucinous adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709187,04d9e288-3e08-472a-b8a6-3fce945e7de8 +Biospecimen,HTA7_986_5,,HTA7_986_1,Initial Diagnosis,17308,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,17308,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Mucinous adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709188,8ca40e58-2fcd-4967-8f30-fb28dd8fd94c +Biospecimen,HTA7_987_1,,HTA7_987,Metastasis,27589,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,27589,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Metastatic Adenocarcinoma, with Neuroendocrine Features",,,,Formalin fixed paraffin embedded - FFPE,,,,,Not Reported,,Not Reported,,,Metastatic,syn26709189,3befc91f-7284-4492-b3e2-aa25a0a0f8d2 +Biospecimen,HTA7_987_2,,HTA7_987_1,Metastasis,27589,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,27589,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Metastatic Adenocarcinoma, with Neuroendocrine Features",,,,Formalin fixed paraffin embedded - FFPE,,,,,Not Reported,,Not Reported,,,Metastatic,syn26709190,ecce6f2f-be51-45bb-a7d9-8ad16a8c8fc7 +Biospecimen,HTA7_987_4,,HTA7_987_1,Metastasis,27589,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,27589,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Metastatic Adenocarcinoma, with Neuroendocrine Features",,,,Formalin fixed paraffin embedded - FFPE,,,,,Not Reported,,Not Reported,,,Metastatic,syn26709191,cc153da2-8e92-46a7-ac27-cbf4ce0b823f +Biospecimen,HTA7_987_5,,HTA7_987_1,Metastasis,27589,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,27589,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Metastatic Adenocarcinoma, with Neuroendocrine Features",,,,Formalin fixed paraffin embedded - FFPE,,,,,Not Reported,,Not Reported,,,Metastatic,syn26709192,e49df2eb-42d4-4c3a-b75c-9e1c3ac4c0ef +Biospecimen,HTA7_988_1,,HTA7_988,Initial Diagnosis,13964,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,13964,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709193,0fe113a5-c95b-45b3-9dbe-e025405d5b29 +Biospecimen,HTA7_988_4,,HTA7_988_1,Initial Diagnosis,13964,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,13964,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709194,d51a26ac-5df1-43ba-9ab6-845e1ab78478 +Biospecimen,HTA7_988_5,,HTA7_988_1,Initial Diagnosis,13964,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,13964,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709195,fa1b2afb-97a8-4da9-aca9-4c73b6f8fcec +Biospecimen,HTA7_989_1,,HTA7_989,Initial Diagnosis,24559,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,24559,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Transverse colon,,Not Reported,,,primary,syn26546873,a90c27b3-bf5d-4945-9a86-be338dbfdeef +Biospecimen,HTA7_989_2,,HTA7_989_1,Initial Diagnosis,24559,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,24559,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,26013,,Transverse colon,,Not Reported,,,primary,syn26546874,28ffb66e-a458-47e5-8916-2d12984d5f8c +Biospecimen,HTA7_989_3,,HTA7_989_1,Initial Diagnosis,24559,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,24559,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,26013,,Transverse colon,,Not Reported,,,primary,syn26561915,448dba09-2121-4c41-b6b9-dc6349610053 +Biospecimen,HTA7_989_4,,HTA7_989_1,Initial Diagnosis,24559,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,24559,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,26013,,Transverse colon,,Not Reported,,,primary,syn26561931,c8d3e9e1-af09-4690-a4b9-4ed65106320d +Biospecimen,HTA7_989_5,,HTA7_989_1,Initial Diagnosis,24559,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,24559,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,26013,,Transverse colon,,Not Reported,,,primary,syn26709196,18a5f350-aa5e-4a37-89dc-eeb725f9a9f8 +Biospecimen,HTA7_989_6,,HTA7_989_1,Initial Diagnosis,24559,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,24559,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,26013,,Transverse colon,,Not Reported,,,primary,syn26709197,97adb793-86de-443f-8be3-b6c0d8ce430a +Biospecimen,HTA7_989_7,,HTA7_989_1,Initial Diagnosis,24559,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,24559,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,26013,,Transverse colon,,Not Reported,,,primary,syn26709198,52623cda-cc8b-4add-b878-3d2f0a3e100f +Biospecimen,HTA7_989_8,,HTA7_989_1,Initial Diagnosis,24559,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,24559,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,26013,,Transverse colon,,Not Reported,,,primary,syn26709199,22f7147a-53ec-471e-86bf-08a58aebd164 +Biospecimen,HTA7_990_1,,HTA7_990,Initial Diagnosis,24360,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,24360,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Transverse colon,,Not Reported,,,primary,syn26709200,a20cfdd4-b2e4-493c-9681-2713772b1a9f +Biospecimen,HTA7_990_2,,HTA7_990_1,Initial Diagnosis,24360,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,24360,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Transverse colon,,Not Reported,,,primary,syn26709201,ea97e1f1-91b4-4ac6-b5d8-e88e137c166e +Biospecimen,HTA7_990_3,,HTA7_990_1,Initial Diagnosis,24360,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,24360,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Transverse colon,,Not Reported,,,primary,syn26709202,0973d19d-70f0-4307-8d66-ea84e328ec45 +Biospecimen,HTA7_990_4,,HTA7_990_1,Initial Diagnosis,24360,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,24360,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Transverse colon,,Not Reported,,,primary,syn26709203,d4af6e3a-57e2-4d99-bcba-ce9047f20031 +Biospecimen,HTA7_990_5,,HTA7_990_1,Initial Diagnosis,24360,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,24360,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Transverse colon,,Not Reported,,,primary,syn26709204,82b380b9-6968-4743-bffa-4f376aef1dba +Biospecimen,HTA7_991_1,,HTA7_991,Initial Diagnosis,25549,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,25549,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709205,015386a7-4e8e-4d2e-905a-35e3742d5ffb +Biospecimen,HTA7_991_2,,HTA7_991_1,Initial Diagnosis,25549,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,25549,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709206,4b2751cf-e32c-4874-9e47-deeabc210106 +Biospecimen,HTA7_991_3,,HTA7_991_1,Initial Diagnosis,25549,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,25549,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709207,7d44be11-37d1-4bc2-9d70-ff421050fac1 +Biospecimen,HTA7_991_4,,HTA7_991_1,Initial Diagnosis,25549,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,25549,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709208,48834ee1-58d1-450a-a5b9-2f5ea0ab5683 +Biospecimen,HTA7_991_5,,HTA7_991_1,Initial Diagnosis,25549,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,25549,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709209,821f71d0-7378-4d08-bcdd-b1c5d87b8bfa +Biospecimen,HTA7_992_1,,HTA7_992,Initial Diagnosis,18550,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,18550,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709210,019b316a-1fbc-4971-aaa7-08372877bc8d +Biospecimen,HTA7_992_2,,HTA7_992_1,Initial Diagnosis,18550,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,18550,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709211,de37f0eb-46d8-4e60-8283-cfb00f123da9 +Biospecimen,HTA7_992_3,,HTA7_992_1,Initial Diagnosis,18550,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,18550,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709212,d07cf87e-7fa6-4a27-8d8b-c046f802d90b +Biospecimen,HTA7_992_4,,HTA7_992_1,Initial Diagnosis,18550,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,18550,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709213,68630b55-4663-4873-9489-6c5bac55e5a2 +Biospecimen,HTA7_992_5,,HTA7_992_1,Initial Diagnosis,18550,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,18550,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709214,03129ab8-b277-42fc-8da2-b97c00bac5ad +Biospecimen,HTA7_993_1,,HTA7_993,Initial Diagnosis,16774,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,16774,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,Mucinous adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Reported,,,primary,syn26709215,fbd303a8-ad13-43ff-9d03-89a3fbac1f88 +Biospecimen,HTA7_993_2,,HTA7_993_1,Initial Diagnosis,16774,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,16774,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Mucinous adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Reported,,,primary,syn26709216,b60f9de5-e1ac-45f9-86ca-b5cdf7cec95d +Biospecimen,HTA7_993_3,,HTA7_993_1,Initial Diagnosis,16774,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,16774,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Mucinous adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Reported,,,primary,syn26709217,619348f5-5175-40cb-a2d7-41ddbed2eb4d +Biospecimen,HTA7_993_4,,HTA7_993_1,Initial Diagnosis,16774,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,16774,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Mucinous adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Reported,,,primary,syn26709218,9fbe0011-ca20-4e26-a031-61c085445d22 +Biospecimen,HTA7_993_5,,HTA7_993_1,Initial Diagnosis,16774,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,16774,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Mucinous adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Reported,,,primary,syn26709219,72e96c31-d0aa-47c6-bd18-dfd091b33e51 +Biospecimen,HTA7_994_1,,HTA7_994,Initial Diagnosis,30791,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,30791,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709220,b7270951-a618-4a60-be6c-10e34c9803f2 +Biospecimen,HTA7_994_2,,HTA7_994_1,Initial Diagnosis,30791,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,30791,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709221,9ee00ecb-c79d-4fbd-88b8-48a598e665b0 +Biospecimen,HTA7_994_3,,HTA7_994_1,Initial Diagnosis,30791,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,30791,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709222,4c1bc6cb-eea2-46ea-bf59-33183f4e7b1e +Biospecimen,HTA7_994_4,,HTA7_994_1,Initial Diagnosis,30791,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,30791,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709223,db22a806-682a-44bf-88a4-14694d225532 +Biospecimen,HTA7_994_5,,HTA7_994_1,Initial Diagnosis,30791,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,30791,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709224,7f96d0dd-394c-42b2-8329-6800e0298d20 +Biospecimen,HTA7_995_1,,HTA7_995,Initial Diagnosis,9634,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,9634,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709225,bf0e4b26-37ea-441e-954d-174ee70508f3 +Biospecimen,HTA7_995_2,,HTA7_995_1,Initial Diagnosis,9634,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,9634,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709226,2b80e287-1d3e-4020-97b2-94408c721d1c +Biospecimen,HTA7_995_4,,HTA7_995_1,Initial Diagnosis,9634,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,9634,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709227,2032ec29-d4be-4aa2-a8e3-df914d977124 +Biospecimen,HTA7_995_5,,HTA7_995_1,Initial Diagnosis,9634,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,9634,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709228,ee911770-8b96-423c-a87a-e04077dcd2cb +Biospecimen,HTA7_904_6,,HTA7_904_1,Initial Diagnosis,20951,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,23791,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Applicable,,,Not Otherwise Specified,syn34644923,9fb77142-9073-48f3-9d39-514f672a5869 +Biospecimen,HTA7_906_6,,HTA7_906_1,Initial Diagnosis,26014,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,28772,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Ascending colon,,Not Applicable,,,Not Otherwise Specified,syn34644926,a4df61a3-2e9c-4a50-93a3-e0b138b11ce6 +Biospecimen,HTA7_908_6,,HTA7_908_1,Initial Diagnosis,21072,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,23788,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Ascending colon,,Not Applicable,,,Not Otherwise Specified,syn34644927,30acd259-0f23-4dd7-a0f9-200db52337cb +Biospecimen,HTA7_909_6,,HTA7_909_1,Initial Diagnosis,11977,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,14682,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Applicable,,,Not Otherwise Specified,syn34644928,41a686ee-eb2c-4ed3-957c-6978d9da69e7 +Biospecimen,HTA7_911_6,,HTA7_911_1,Initial Diagnosis,9911,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,12562,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Applicable,,,Not Otherwise Specified,syn34644930,7f7743e6-36a3-4bf5-81e9-dbac2914f669 +Biospecimen,HTA7_914_6,,HTA7_914_1,Initial Diagnosis,27248,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,29870,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Applicable,,,Not Otherwise Specified,syn34644932,50514374-80d9-4122-884c-1c8188d0c7a1 +Biospecimen,HTA7_917_6,,HTA7_917_1,Initial Diagnosis,24781,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,27369,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Ascending colon,,Not Applicable,,,Not Otherwise Specified,syn34644933,ca6515bb-f38c-4025-a27a-bb9a76bb5e77 +Biospecimen,HTA7_919_6,,HTA7_919_1,Initial Diagnosis,23314,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,25882,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Descending colon,,Not Applicable,,,Not Otherwise Specified,syn34644934,2b384b4d-6ce2-4fcf-9df7-113c7266cd33 +Biospecimen,HTA7_920_9,,HTA7_920_1,Initial Diagnosis,21534,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,24026,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Mucinous adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Applicable,,,Not Otherwise Specified,syn34644936,5d485b34-60bc-48f3-b29b-eca2e3832985 +Biospecimen,HTA7_922_9,,HTA7_922_1,Initial Diagnosis,22739,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,25201,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Transverse colon,,Not Applicable,,,Not Otherwise Specified,syn34644937,4a161315-f4b7-49ed-bdb3-8e47cfb2c670 +Biospecimen,HTA7_923_6,,HTA7_923_1,Initial Diagnosis,20236,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,22671,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Applicable,,,Not Otherwise Specified,syn34644938,a05b9a18-4a16-4aee-a6e5-63c6826c34e2 +Biospecimen,HTA7_924_6,,HTA7_924_1,Initial Diagnosis,36114,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,38522,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Applicable,,,Not Otherwise Specified,syn34644940,f7401190-3105-428b-b10f-512002662f4a +Biospecimen,HTA7_925_9,,HTA7_925_1,Initial Diagnosis,22073,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,24491,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Mucinous adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Applicable,,,Not Otherwise Specified,syn34644941,3285585f-2ce6-4457-955e-c0ce6c4ff928 +Biospecimen,HTA7_926_8,,HTA7_926_1,Initial Diagnosis,25222,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,27645,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Mucinous adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Applicable,,,Not Otherwise Specified,syn34644942,20dc534b-bb02-4d13-9e9f-a9ad8bd303c8 +Biospecimen,HTA7_927_9,,HTA7_927_1,Initial Diagnosis,14776,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,17166,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Applicable,,,Not Otherwise Specified,syn34644944,5fd74061-a70c-47a3-b559-ccc8122e8776 +Biospecimen,HTA7_928_6,,HTA7_928_1,Initial Diagnosis,25737,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,28107,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Mucinous adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Applicable,,,Not Otherwise Specified,syn34644946,69f62f75-1b89-4917-b118-2905854a685d +Biospecimen,HTA7_931_9,,HTA7_931_1,Initial Diagnosis,9432,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,11792,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Transverse colon,,Not Applicable,,,Not Otherwise Specified,syn34644948,d7cfd0be-dcc8-4630-aadd-da965aff04d9 +Biospecimen,HTA7_932_9,,HTA7_932_1,Initial Diagnosis,21405,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,23757,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Applicable,,,Not Otherwise Specified,syn34644949,a0491cda-8e1c-4659-9af5-18a88c279755 +Biospecimen,HTA7_933_6,,HTA7_933_1,Initial Diagnosis,17563,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,19905,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Mucinous adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Applicable,,,Not Otherwise Specified,syn34644950,d745a03d-dd35-42e4-922d-b5b235909605 +Biospecimen,HTA7_934_9,,HTA7_934_1,Initial Diagnosis,20492,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,22830,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectosigmoid junction,,Not Applicable,,,Not Otherwise Specified,syn34644952,79815a00-6f5c-4228-b48c-b02cfec57939 +Biospecimen,HTA7_936_6,,HTA7_936_1,Initial Diagnosis,17772,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,20107,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Applicable,,,Not Otherwise Specified,syn34644953,51d73be5-1634-4c15-ad89-e3f266cf8d2f +Biospecimen,HTA7_938_6,,HTA7_938_1,Initial Diagnosis,23749,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,26055,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Applicable,,,Not Otherwise Specified,syn34644955,0919989b-e80b-4dca-b0c8-599cb94db304 +Biospecimen,HTA7_940_9,,HTA7_940_1,Initial Diagnosis,25777,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,28031,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Appendix,,Not Applicable,,,Not Otherwise Specified,syn34644957,b856c9b6-901d-496b-b333-9add3698ab07 +Biospecimen,HTA7_941_6,,HTA7_941_1,Initial Diagnosis,25976,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,28265,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Applicable,,,Not Otherwise Specified,syn34644960,b189fe09-fe5b-4e7f-b400-25e0b5cddc77 +Biospecimen,HTA7_943_6,,HTA7_943_1,Initial Diagnosis,31261,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,33543,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Ascending colon,,Not Applicable,,,Not Otherwise Specified,syn34644961,e9b99ed1-9f85-4a4a-b275-8032db5450a0 +Biospecimen,HTA7_945_6,,HTA7_945_1,Initial Diagnosis,24552,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,26822,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Applicable,,,Not Otherwise Specified,syn34644964,f3a3baa3-dfef-4db4-a93f-9942fc8723d1 +Biospecimen,HTA7_947_9,,HTA7_947_1,Initial Diagnosis,21281,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,23524,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectosigmoid junction,,Not Applicable,,,Not Otherwise Specified,syn34644965,f9d5beb4-a672-4329-a8ff-7337b7b538dd +Biospecimen,HTA7_954_6,,HTA7_954_1,Initial Diagnosis,23587,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,25772,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Applicable,,,Not Otherwise Specified,syn34644966,0817a273-ee3c-4c0f-9feb-c02682e9b270 +Biospecimen,HTA7_957_6,,HTA7_957_1,Initial Diagnosis,28264,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,30436,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectosigmoid junction,,Not Applicable,,,Not Otherwise Specified,syn34644967,ebe118d4-992e-4641-8b8f-cdf3de5c97eb +Biospecimen,HTA7_960_6,,HTA7_960_1,Initial Diagnosis,21781,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,23934,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Applicable,,,Not Otherwise Specified,syn34644969,eecd0b70-235e-4b49-bab0-f914637ec69b +Biospecimen,HTA7_963_8,,HTA7_963_1,Initial Diagnosis,23515,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,25638,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Mucinous adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Applicable,,,Not Otherwise Specified,syn34644970,a500daa9-faf4-4300-a115-f8acf58f7824 +Biospecimen,HTA7_965_9,,HTA7_965_1,Initial Diagnosis,29512,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,31626,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Applicable,,,Not Otherwise Specified,syn34644971,b2705744-2ce8-4582-9386-d7bd3ea4c0b2 +Biospecimen,HTA7_966_7,,HTA7_966_1,Initial Diagnosis,26767,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,28867,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Applicable,,,Not Otherwise Specified,syn34644973,40c9962b-61e7-4eba-80ab-8bd00561181a +Biospecimen,HTA7_968_6,,HTA7_968_1,Initial Diagnosis,17722,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,19759,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Applicable,,,Not Otherwise Specified,syn34644974,6eea63fc-7f07-4258-afd2-f448fd53fca9 +Biospecimen,HTA7_972_9,,HTA7_972_1,Initial Diagnosis,14588,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,16667,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Applicable,,,Not Otherwise Specified,syn34644975,aa518e24-8505-457f-8107-fdfe0190d574 +Biospecimen,HTA7_982_9,,HTA7_982_1,Initial Diagnosis,14459,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,16417,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Mucinous adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Applicable,,,Not Otherwise Specified,syn34644977,181eee6c-ba46-4a6e-bb6b-bd38e976e56c +Biospecimen,HTA7_983_6,,HTA7_983_1,Initial Diagnosis,17402,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,19356,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Applicable,,,Not Otherwise Specified,syn34644980,387c4a1e-efa7-44ae-85bc-3da124fe7bc8 +Biospecimen,HTA7_985_6,,HTA7_985_1,Initial Diagnosis,21073,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,23025,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Applicable,,,Not Otherwise Specified,syn34644981,4f10e158-71ee-4e20-93a5-b5dc96f31528 +Biospecimen,HTA7_989_9,,HTA7_989_1,Initial Diagnosis,24558,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,26154,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Transverse colon,,Not Applicable,,,Not Otherwise Specified,syn34644982,a1701c47-3032-492b-a106-1506d7c34cdb +Biospecimen,HTA7_994_6,,HTA7_994_1,Initial Diagnosis,30791,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,32668,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Applicable,,,Not Otherwise Specified,syn34644984,44bded98-50c6-4e4c-bf02-00d78c91127e diff --git a/test-manifests/synapse_storage_manifest_HTAN_HMS.csv b/test-manifests/synapse_storage_manifest_HTAN_HMS.csv new file mode 100644 index 0000000..82b0ddf --- /dev/null +++ b/test-manifests/synapse_storage_manifest_HTAN_HMS.csv @@ -0,0 +1,773 @@ +Component,HTAN Biospecimen ID,Source HTAN Biospecimen ID,HTAN Parent ID,Timepoint Label,Collection Days from Index,Adjacent Biospecimen IDs,Biospecimen Type,Acquisition Method Type,Fixative Type,Storage Method,Processing Days from Index,Protocol Link,Site Data Source,Collection Media,Mounting Medium,Processing Location,Histology Assessment By,Histology Assessment Medium,Preinvasive Morphology,Tumor Infiltrating Lymphocytes,Degree of Dysplasia,Dysplasia Fraction,Number Proliferating Cells,Percent Eosinophil Infiltration,Percent Granulocyte Infiltration,Percent Inflam Infiltration,Percent Lymphocyte Infiltration,Percent Monocyte Infiltration,Percent Necrosis,Percent Neutrophil Infiltration,Percent Normal Cells,Percent Stromal Cells,Percent Tumor Cells,Percent Tumor Nuclei,Fiducial Marker,Slicing Method,Lysis Buffer,Method of Nucleic Acid Isolation,Acquisition Method Other Specify,Analyte Type,Biospecimen Dimension 1,Biospecimen Dimension 2,Biospecimen Dimension 3,Dimensions Unit,Fixation Duration,Histologic Morphology Code,Ischemic Temperature,Ischemic Time,Portion Weight,Preservation Method,Section Number in Sequence,Section Thickness Value,Sectioning Days from Index,Shipping Condition Type,Site of Resection or Biopsy,Slide Charge Type,Specimen Laterality,Total Volume,Total Volume Unit,Tumor Tissue Type,entityId,Uuid +Biospecimen,HTA7_1_1,,HTA7_1,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Ambient temperature,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,Superficial spreading melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26486632,0faecfda-8ca4-41fc-bfbb-0b959e61da61 +Biospecimen,HTA7_1_11,,HTA7_1,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Ambient temperature,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,Superficial spreading melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26486634,ed85f814-43a0-413a-80dd-28db586142a2 +Biospecimen,HTA7_1_6,,HTA7_1,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Ambient temperature,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,Superficial spreading melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26486633,b5db70d7-ac23-44b0-8576-38cd1ba70626 +Biospecimen,HTA7_1_16,,HTA7_1_1,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Refrigerated at 4 degrees,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Superficial spreading melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561941,3b494f18-8fe5-4792-827c-472085ec4a64 +Biospecimen,HTA7_1_17,,HTA7_1_1,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Refrigerated at 4 degrees,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Superficial spreading melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561942,c77b4deb-3f29-4177-8570-1c67d50a8350 +Biospecimen,HTA7_1_18,,HTA7_1_1,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Refrigerated at 4 degrees,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Superficial spreading melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561943,c86e9d6b-5a66-4e91-a998-b6ac4cab546c +Biospecimen,HTA7_1_2,,HTA7_1_1,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Refrigerated at 4 degrees,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Superficial spreading melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26486635,bd46017b-4809-4c1d-b546-4d383d479f5d +Biospecimen,HTA7_1_243,,HTA7_1_1,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Refrigerated at 4 degrees,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Superficial spreading melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26486642,32fb781a-299a-4bbb-b12a-1dc01208cf49 +Biospecimen,HTA7_1_244,,HTA7_1_1,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Refrigerated at 4 degrees,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Superficial spreading melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26486643,72e4e58e-1c44-421d-9c9e-341e86288ac5 +Biospecimen,HTA7_1_3,,HTA7_1_1,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Refrigerated at 4 degrees,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Superficial spreading melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26486636,43e6d9cb-f556-4e86-8ac4-fec4a7084c91 +Biospecimen,HTA7_1_4,,HTA7_1_1,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Refrigerated at 4 degrees,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Superficial spreading melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26486637,96ac1729-1a0d-4fa2-b76e-140412e3691f +Biospecimen,HTA7_1_5,,HTA7_1_1,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Refrigerated at 4 degrees,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Superficial spreading melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26486638,29cb0fd4-4f27-4019-9615-927cad1f5d67 +Biospecimen,HTA7_1_7,,HTA7_1_1,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Refrigerated at 4 degrees,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Superficial spreading melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26486639,22baf4ef-9d25-42b6-b2f1-2a21f8948921 +Biospecimen,HTA7_1_20,,HTA7_1_11,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Refrigerated at 4 degrees,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Superficial spreading melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561945,035f9c3e-7b16-4026-bd4a-230b72f09897 +Biospecimen,HTA7_1_21,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561946,a26133e5-c8d9-4e2c-b523-585947375f4c +Biospecimen,HTA7_1_22,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561947,e9267bf1-02cb-438e-a4f6-7d14cadb3e7a +Biospecimen,HTA7_1_23,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561948,05d8f905-f35f-47c2-b7fa-46480c1ca411 +Biospecimen,HTA7_1_24,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561949,deb82e68-4ccc-4e26-b51e-62dd75cf0824 +Biospecimen,HTA7_1_25,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561950,d5ab30cc-73ec-4b59-b6cd-ccbe2a8afe73 +Biospecimen,HTA7_1_26,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561951,339762fa-ec7a-4af4-bcd0-ccca9bc352bc +Biospecimen,HTA7_1_27,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561952,53cbc6bd-313a-4f10-a75b-43622456c276 +Biospecimen,HTA7_1_28,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561953,3057839f-6ddf-47fa-87d5-10ea9fec528a +Biospecimen,HTA7_1_29,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561954,f637f375-b507-4aa0-99a1-e6eede27852b +Biospecimen,HTA7_1_30,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561955,ccfcfef5-83e9-4305-90b2-567aff5b5374 +Biospecimen,HTA7_1_31,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561956,42749588-6ef3-4d5e-ad0b-859e9e36769e +Biospecimen,HTA7_1_32,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561957,d1101f1d-1276-41ae-bdd8-eb69b95d2ea7 +Biospecimen,HTA7_1_33,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Inflammatory regression,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561958,71b5f137-754c-40e0-a2fc-a74eeaae28db +Biospecimen,HTA7_1_34,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Inflammatory regression,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561959,5ce3988f-e3c9-4897-b13a-e95152078aa2 +Biospecimen,HTA7_1_35,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Inflammatory regression,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561960,d4759182-dce9-4cf8-98d3-3bc3f83fc9a6 +Biospecimen,HTA7_1_36,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Inflammatory regression,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561961,ecba2364-363d-4fb8-b9ab-5a41a21818a9 +Biospecimen,HTA7_1_37,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Inflammatory regression,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561962,3f1b22a3-1d90-4bde-af44-e68e70a853fb +Biospecimen,HTA7_1_38,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Inflammatory regression,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561963,a76b9140-5196-4594-95a9-1ecc77dd2ee1 +Biospecimen,HTA7_1_39,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Inflammatory regression,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561964,9c479826-465c-4249-a6d9-16869708ec52 +Biospecimen,HTA7_1_40,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Inflammatory regression,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561965,603c0c92-f023-4394-ab33-d5d711abe772 +Biospecimen,HTA7_1_41,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Inflammatory regression,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561966,2f119b4b-60f4-453a-8aea-7139a30d480b +Biospecimen,HTA7_1_42,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Inflammatory regression,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561967,8fffaa53-f124-4850-aad2-75a43e995d74 +Biospecimen,HTA7_1_43,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Inflammatory regression,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561968,deba1cd7-b356-4c9d-8944-3277ca190593 +Biospecimen,HTA7_1_44,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Inflammatory regression,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561969,2022b0ae-49a2-4e66-b3de-886cc16dc37c +Biospecimen,HTA7_1_45,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Inflammatory regression,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561970,de82255d-ce37-44df-a845-090bb18a9f25 +Biospecimen,HTA7_1_46,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Inflammatory regression,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561971,f62d6833-f1f3-4b8d-a57f-d435b83ff1d2 +Biospecimen,HTA7_1_47,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Inflammatory regression,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561972,25ea8b40-fea3-4c2d-b25e-5ea104f9674c +Biospecimen,HTA7_1_48,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Inflammatory regression,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561973,58d0ab6b-dda7-4162-b8ff-ba6c8a8faa73 +Biospecimen,HTA7_1_49,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Brisk TIL,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561974,2cb75f39-1182-433a-9c8d-d769add0d6c7 +Biospecimen,HTA7_1_50,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Brisk TIL,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561975,a4d586cf-60ce-413f-9a92-1a467c2d9e5b +Biospecimen,HTA7_1_51,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Brisk TIL,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561976,b11a5655-2811-4c29-af02-7a2f90fd36d1 +Biospecimen,HTA7_1_52,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Brisk TIL,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561977,f1d1d07e-7194-403c-8f52-5a98297a0323 +Biospecimen,HTA7_1_53,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Brisk TIL,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561978,a3ff7689-00be-41e8-8cf9-a5793714f62c +Biospecimen,HTA7_1_54,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Brisk TIL,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561979,0c806189-5105-4735-98c9-f1424ede8834 +Biospecimen,HTA7_1_55,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Brisk TIL,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561980,f6e70d52-6d14-4762-9f20-cfd33526287c +Biospecimen,HTA7_1_56,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Brisk TIL,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561981,7f5d07a7-55f3-4d33-a39e-ef210f2f2b91 +Biospecimen,HTA7_1_57,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Brisk TIL,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561982,b9128866-b9a7-4f05-acba-22975b664de6 +Biospecimen,HTA7_1_58,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Brisk TIL,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561983,f0085add-2937-452a-8bbc-4ce0605100b9 +Biospecimen,HTA7_1_59,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Brisk TIL,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561984,028ff6c5-5384-4f50-add1-135fe24ae7d8 +Biospecimen,HTA7_1_60,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Brisk TIL,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561985,d624a745-2437-4eb3-9022-82f51f113886 +Biospecimen,HTA7_1_61,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Brisk TIL,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561986,4363eff0-730e-44f4-bc2a-3ee64ef69667 +Biospecimen,HTA7_1_62,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Brisk TIL,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561987,d4f3eac3-b4c7-4524-8c97-284728bc58b7 +Biospecimen,HTA7_1_63,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Brisk TIL,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561988,d05a31b2-b71f-49dc-b1d5-4e7eb207de95 +Biospecimen,HTA7_1_64,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Brisk TIL,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561989,05019f75-674f-4e9b-aa62-ec7488075655 +Biospecimen,HTA7_1_65,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Invasive melanoma boundary,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561990,c6cbe16d-3969-4cba-89aa-2fe6c413d7ae +Biospecimen,HTA7_1_66,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Invasive melanoma boundary,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561991,58a25cc3-f32f-4ec3-b851-c38303a3d739 +Biospecimen,HTA7_1_67,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Invasive melanoma boundary,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561992,30616273-7382-457d-936b-b9714ad32e1b +Biospecimen,HTA7_1_68,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Invasive melanoma boundary,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561993,8319cc8c-858f-4529-bc0e-0a647d9af755 +Biospecimen,HTA7_1_69,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Invasive melanoma boundary,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561994,5b94e3b0-397d-492c-9c63-1c961aa60a48 +Biospecimen,HTA7_1_70,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Invasive melanoma boundary,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561995,9b0b0c46-a1c7-41f9-ae55-943604ab4e86 +Biospecimen,HTA7_1_71,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Invasive melanoma boundary,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561996,8c49e01c-9b9f-4c78-b11a-22cb2b7f7069 +Biospecimen,HTA7_1_72,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Invasive melanoma boundary,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561997,a94f5b22-d848-473f-a824-a1b866250ef9 +Biospecimen,HTA7_1_73,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Invasive melanoma boundary,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561998,ae245533-2770-4470-833c-053400ebd818 +Biospecimen,HTA7_1_74,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Invasive melanoma boundary,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561999,0c43c9f9-90bd-4659-af52-f96972dee231 +Biospecimen,HTA7_1_75,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Invasive melanoma boundary,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562000,55c65502-b1a6-4d45-b18e-40c1d1be5e15 +Biospecimen,HTA7_1_76,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Invasive melanoma boundary,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562001,5e0fa773-fa38-4b8f-8323-8fb799be9418 +Biospecimen,HTA7_1_77,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Invasive melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562002,a24fff2e-f5a6-4a98-a121-8901755dbd76 +Biospecimen,HTA7_1_78,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Invasive melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562003,940a21e2-da01-4a95-b606-40623478dfed +Biospecimen,HTA7_1_79,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Invasive melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562004,bef40092-ac98-4ee0-bc79-da1dbcdfeac1 +Biospecimen,HTA7_1_80,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Invasive melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562005,5a2ccdc6-5768-4c3d-98f5-54112f84cb47 +Biospecimen,HTA7_1_81,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Invasive melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562006,7c3b0bfe-7307-4efd-9c01-0292d078819c +Biospecimen,HTA7_1_82,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Invasive melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562007,e45e4477-bde5-4415-b123-8ddfdba161ba +Biospecimen,HTA7_1_83,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Invasive melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562008,992b34a5-f30e-4ce6-ad10-dc6b12f8bceb +Biospecimen,HTA7_1_84,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Invasive melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562009,67aff8ef-0656-406c-90a8-a77156928356 +Biospecimen,HTA7_1_85,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Invasive melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562010,127f3dbc-fd3d-451d-b129-8396e3aa1a2a +Biospecimen,HTA7_1_86,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Invasive melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562011,539f161a-9b82-4861-b30e-62cb2a070891 +Biospecimen,HTA7_1_87,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Invasive melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562012,2ad925b6-0b33-4e94-b51d-4076d706ad3f +Biospecimen,HTA7_1_88,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Invasive melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562013,0797ef67-dd5d-4884-9fe8-29cef0b8c1da +Biospecimen,HTA7_1_89,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Invasive melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562014,351febf0-9c4c-4adf-8b3b-cafc80fb41fb +Biospecimen,HTA7_1_90,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Invasive melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562015,69f92e28-705d-4029-8709-6b7522245a9b +Biospecimen,HTA7_1_91,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Invasive melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562016,2f5638ff-2629-4c1b-9b1e-72aae95d3685 +Biospecimen,HTA7_1_92,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Invasive melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562017,a8d1315e-3401-4104-ac93-cc51096d87eb +Biospecimen,HTA7_1_93,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Exophytic melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562018,18874e39-3098-4b07-b851-4ac8d52f70ee +Biospecimen,HTA7_1_94,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Exophytic melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562019,6c4f276f-e984-4220-aaa9-5c377cba853b +Biospecimen,HTA7_1_95,,HTA7_1_16,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Exophytic melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562020,a9aee6fe-b18f-4a60-9e2e-ccc673547ff8 +Biospecimen,HTA7_1_100,,HTA7_1_17,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562025,91349739-34b6-4814-9e2f-f225ba8ec996 +Biospecimen,HTA7_1_101,,HTA7_1_17,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562026,0e9f90e6-c8c4-4ba9-9df5-286204bb4f12 +Biospecimen,HTA7_1_102,,HTA7_1_17,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562027,2c5f2441-5e82-4014-ae79-9f8347f8ba89 +Biospecimen,HTA7_1_96,,HTA7_1_17,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562021,9b578afd-693d-48e3-93c3-6b41c408682e +Biospecimen,HTA7_1_97,,HTA7_1_17,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562022,33db145d-f3a9-4923-a3c6-f360f4f9eb84 +Biospecimen,HTA7_1_98,,HTA7_1_17,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562023,d98ddf55-39b0-4b83-96c0-13c3157a4698 +Biospecimen,HTA7_1_99,,HTA7_1_17,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562024,9002f56a-608b-4745-be43-0aa3880b9413 +Biospecimen,HTA7_1_103,,HTA7_1_18,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562028,9584acd8-2cb5-4a3b-8170-f02f51656e3f +Biospecimen,HTA7_1_104,,HTA7_1_18,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562029,485646de-28c0-4702-90ae-04e2d74ae9ce +Biospecimen,HTA7_1_105,,HTA7_1_18,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562030,c9aae173-9aec-47dd-a63c-46f7c13f3160 +Biospecimen,HTA7_1_106,,HTA7_1_18,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562031,3c491cdb-104f-4d63-8af9-faf5098a6c78 +Biospecimen,HTA7_1_107,,HTA7_1_18,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562032,704a34fc-749e-4554-87c3-4750d2ce13c9 +Biospecimen,HTA7_1_108,,HTA7_1_18,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562033,691bbc1f-eabc-45b4-9d1e-22e61fd3fde8 +Biospecimen,HTA7_1_109,,HTA7_1_18,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562034,1ffb60b4-342c-4817-86e0-f73b65ae1e37 +Biospecimen,HTA7_1_110,,HTA7_1_18,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562035,6d4bc56e-8020-46af-b346-ae63b4bd617b +Biospecimen,HTA7_1_111,,HTA7_1_18,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562036,aef7f3aa-1c4a-4c82-aaac-fa0dc02935ef +Biospecimen,HTA7_1_112,,HTA7_1_18,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562037,b5bf28fa-3f4a-4a9e-ab9c-6600aab17410 +Biospecimen,HTA7_1_113,,HTA7_1_18,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562038,09c0aaba-3ba3-4557-b7be-e811121ef0de +Biospecimen,HTA7_1_114,,HTA7_1_18,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562039,154d990e-c98a-4f3e-8b0a-8da718cc6a62 +Biospecimen,HTA7_1_115,,HTA7_1_18,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562040,57625a83-db9a-4c8f-8263-fbbffae44de1 +Biospecimen,HTA7_1_116,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562041,e9d07392-a9ff-4214-9846-be031e3e0bd9 +Biospecimen,HTA7_1_117,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562042,38bde602-16fd-4380-8e64-0b45ffc6c541 +Biospecimen,HTA7_1_118,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562043,1b9ef11a-93bb-492e-bab6-9e16188592e8 +Biospecimen,HTA7_1_119,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562044,01e7abab-ce42-4176-8585-0953122da63f +Biospecimen,HTA7_1_120,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562045,1b9dcddb-1c14-4826-98ab-2c5dcaa820c9 +Biospecimen,HTA7_1_121,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562046,b06a9f86-03f4-4722-91e1-d2f92b23a13f +Biospecimen,HTA7_1_122,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562047,46b7d00c-788b-4cf2-b383-1a5c79b2f6f9 +Biospecimen,HTA7_1_123,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562048,18dac815-1b1b-4d30-9b92-3c6fcf59cc71 +Biospecimen,HTA7_1_124,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562049,95e88d20-64dc-4bb4-a5e8-005fcbf2c692 +Biospecimen,HTA7_1_125,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562050,74d1f0c9-c039-44bb-81a7-ef34dcdeae03 +Biospecimen,HTA7_1_126,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562051,995a620c-7b6f-401e-aa63-eaed397206cf +Biospecimen,HTA7_1_127,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562052,8b5076f1-3528-45b9-8b76-8028703a6c9d +Biospecimen,HTA7_1_128,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Inflammatory regression,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562053,f4552bc7-65b4-4add-b19b-1e4bb867498f +Biospecimen,HTA7_1_129,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Inflammatory regression,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562054,9a758745-5779-4fc2-8d80-3e00ca0eb099 +Biospecimen,HTA7_1_130,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Inflammatory regression,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562055,c63ba49d-e8eb-468f-b587-8f2d8ea9f912 +Biospecimen,HTA7_1_131,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Inflammatory regression,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562056,d5b2ce9c-1943-4e4e-970d-28127be2c2ad +Biospecimen,HTA7_1_132,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Inflammatory regression,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562057,a78000f4-df1c-415c-8a0e-d0f41df21b9f +Biospecimen,HTA7_1_133,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Inflammatory regression,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562058,b7a19420-2d94-4514-9254-d67d41099b13 +Biospecimen,HTA7_1_134,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Inflammatory regression,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562059,235db61d-8419-44be-a6d5-e20217490b5d +Biospecimen,HTA7_1_135,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Inflammatory regression,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562060,6164ee2a-f136-4baa-bd92-599cbc903401 +Biospecimen,HTA7_1_136,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Inflammatory regression,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562061,b259db14-8c00-4f43-af2f-d373375dd4b1 +Biospecimen,HTA7_1_137,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Inflammatory regression,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562062,8ee8ec71-75c8-4a23-be74-ed1da9adee9b +Biospecimen,HTA7_1_138,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Inflammatory regression,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562063,452460f2-0da2-4ef0-8186-5554bf0f7252 +Biospecimen,HTA7_1_139,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Inflammatory regression,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562064,8592a8fa-8c27-4dab-9334-5f4ae61853ad +Biospecimen,HTA7_1_140,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Inflammatory regression,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562065,066c00b5-f402-40cf-a1e2-b725ba6dd9c4 +Biospecimen,HTA7_1_141,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Inflammatory regression,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562066,aa21f8e8-a4f8-4fb7-9a08-f8eb76415d0e +Biospecimen,HTA7_1_142,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Inflammatory regression,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562067,2a0e5435-da00-42be-ac89-31d317086c7f +Biospecimen,HTA7_1_143,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Inflammatory regression,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562068,dffd2b80-45cc-4401-8963-e2cf7fd5d748 +Biospecimen,HTA7_1_144,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Inflammatory regression,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562069,3a0c56ad-c493-456b-a6fd-fdfcec9d2d3a +Biospecimen,HTA7_1_145,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Inflammatory regression,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562070,c8a4e275-dc06-4146-9cdf-cef79b483246 +Biospecimen,HTA7_1_146,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Inflammatory regression,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562071,2413fc22-076e-424d-8e91-d87cc152fe38 +Biospecimen,HTA7_1_147,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Inflammatory regression,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562072,a7e62d24-4db7-4858-8a04-4fb14e40ac31 +Biospecimen,HTA7_1_148,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Inflammatory regression,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562073,0d42a60d-f1b1-4411-b3cb-9c4b26a85adc +Biospecimen,HTA7_1_149,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Exophytic melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562074,74820345-e06e-49c8-893a-68d2346bbc99 +Biospecimen,HTA7_1_150,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Exophytic melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562075,9920e42e-9628-45fa-b19f-6de13f5dcca5 +Biospecimen,HTA7_1_151,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Exophytic melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562076,634f0016-5de5-4981-b86b-660670c7b404 +Biospecimen,HTA7_1_152,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Exophytic melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562077,cb6c8b76-7c83-4051-b8ea-69a621afe0bb +Biospecimen,HTA7_1_153,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Exophytic melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562078,a1deb848-5420-45b0-b5b6-9ebbd607631d +Biospecimen,HTA7_1_154,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Exophytic melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562079,a24656ab-4c16-4852-8c49-e2d0e54389e7 +Biospecimen,HTA7_1_155,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Exophytic melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562080,c970efba-447d-45da-a52c-f14cfdcd4ee3 +Biospecimen,HTA7_1_156,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Exophytic melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562081,08da546f-d282-455c-a258-c28eebbad91a +Biospecimen,HTA7_1_157,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Exophytic melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562082,601cbc85-7083-473b-8d33-70e40906c78a +Biospecimen,HTA7_1_158,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Exophytic melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562083,9e398edf-2bff-482b-9ecc-2d11455194e7 +Biospecimen,HTA7_1_159,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Exophytic melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562084,dd63f589-78e8-45da-b7b7-ca1b7c38c1dd +Biospecimen,HTA7_1_160,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Exophytic melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562085,fba05941-1e8a-4e2b-8a07-04b0e80b6352 +Biospecimen,HTA7_1_161,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Exophytic melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562086,38b50349-7da2-44a1-a7c3-f526e9d1ba1e +Biospecimen,HTA7_1_162,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Exophytic melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562087,a41470ee-b300-4077-ae98-d986165dc309 +Biospecimen,HTA7_1_163,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562088,40d3800d-9167-4724-833c-8d228b8c7c1e +Biospecimen,HTA7_1_164,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562089,6c165806-e685-4381-9063-220808fc0ab6 +Biospecimen,HTA7_1_165,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562090,35c02d96-5ed5-414f-8879-10533bdc3af2 +Biospecimen,HTA7_1_166,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562091,41f59f2a-4e0a-4416-ba73-2224ea718803 +Biospecimen,HTA7_1_167,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562092,16440045-1fc6-447c-849f-062274ae67e3 +Biospecimen,HTA7_1_168,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562093,59330690-1da3-425a-a9c9-50b1cdc4c68e +Biospecimen,HTA7_1_169,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562094,f231ee27-15de-4f0b-b5f6-f1ae3b8ec464 +Biospecimen,HTA7_1_170,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562095,e2d3c80b-1970-4e3f-818c-6baef9c1a937 +Biospecimen,HTA7_1_171,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562096,d95db890-089e-42c3-9628-d6f748657f0d +Biospecimen,HTA7_1_172,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562097,a6ff604c-9fdf-4092-9347-2dee8a69624a +Biospecimen,HTA7_1_173,,HTA7_1_19,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562098,5d12060f-21ba-4ab3-8635-907b0b8db1d5 +Biospecimen,HTA7_1_174,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562099,90acae02-1015-4f28-8f0e-4709f27dc706 +Biospecimen,HTA7_1_175,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562100,49d2fbc5-adc0-4a10-a520-48586b95af97 +Biospecimen,HTA7_1_176,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562101,c3b9d044-0d04-4fe3-a63a-a7fd62a98f9f +Biospecimen,HTA7_1_177,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562102,2b5850ef-066a-4162-ad5b-1643285df49d +Biospecimen,HTA7_1_178,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562103,b2fe8db9-45ee-4d47-88db-19fb3ab0a902 +Biospecimen,HTA7_1_179,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562104,220b1c22-0aff-422c-89cb-14a6abe668ec +Biospecimen,HTA7_1_180,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562105,27beeb39-1cc7-41af-952f-7c74fade60ee +Biospecimen,HTA7_1_181,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562106,06957b28-8aff-4d0f-ba48-4e395c4b7967 +Biospecimen,HTA7_1_182,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562107,7ebf2153-3af0-4366-8888-aa962ca9d600 +Biospecimen,HTA7_1_183,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562108,ebb073e9-ef5c-40da-b497-2041aebe9b9e +Biospecimen,HTA7_1_184,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562109,2868c96c-6fd2-4a25-9a25-33c229d158bd +Biospecimen,HTA7_1_185,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562110,d9d3b1ca-5c12-49b1-9609-c2282d9f4c43 +Biospecimen,HTA7_1_186,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562111,910004d7-3ed9-4039-b239-72ad81c4f813 +Biospecimen,HTA7_1_187,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562112,05c16a31-259b-4f5a-8631-29add349efef +Biospecimen,HTA7_1_188,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562113,555e9e7b-3e1d-4dbf-bece-a43b62deddb7 +Biospecimen,HTA7_1_189,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562114,2e593fcb-538f-420c-a9e8-2dcc5911effd +Biospecimen,HTA7_1_190,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562115,da22573e-2de4-48ab-a7f2-564b0f31ed26 +Biospecimen,HTA7_1_191,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562116,0f95cf27-f636-480c-90b0-8c4240c75580 +Biospecimen,HTA7_1_192,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562117,3d25013c-e1ea-4887-8e67-09bf45283e36 +Biospecimen,HTA7_1_193,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562118,20c19605-cf75-4729-9fbc-64461f47eabf +Biospecimen,HTA7_1_194,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562119,ebacaf76-4343-4d71-8f10-08a26f543a68 +Biospecimen,HTA7_1_195,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562120,e3c2f530-5b9e-4f29-b268-2a7c1266f514 +Biospecimen,HTA7_1_196,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562121,ba39f770-e7c1-407d-a94c-e6b040b4c7cb +Biospecimen,HTA7_1_197,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562122,3435f8c4-d2c2-4341-be03-4dbb009279ae +Biospecimen,HTA7_1_198,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562123,c5947971-bb04-4bd7-99b6-9053a99cb326 +Biospecimen,HTA7_1_199,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562124,b1b9c3ac-6254-45e7-a4dd-2f2bb79ca98f +Biospecimen,HTA7_1_200,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562125,28212acc-4eff-4066-a3c8-d609a02d07df +Biospecimen,HTA7_1_201,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562126,99b50e27-bce6-4313-98dc-6b6ed10036e8 +Biospecimen,HTA7_1_202,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562127,70261e5b-0f95-40cf-b149-b18a9378a22e +Biospecimen,HTA7_1_203,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562128,974247fa-22af-4f7d-8547-b02525855a61 +Biospecimen,HTA7_1_204,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562129,e9f5b50f-20d4-4cd3-81dc-c2dd33080747 +Biospecimen,HTA7_1_205,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562130,22bc0fa5-3476-41ad-a24f-b409dc9ce219 +Biospecimen,HTA7_1_206,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562131,2fc34235-d418-4618-b153-2e9d0d4445ed +Biospecimen,HTA7_1_207,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562132,d3d12002-6683-4cce-9135-0d590769c7ce +Biospecimen,HTA7_1_208,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562133,81566816-ee4c-431b-9528-d588f240565f +Biospecimen,HTA7_1_209,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562134,de0586af-e2f4-4290-bf49-761364da851e +Biospecimen,HTA7_1_210,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562135,8358674a-efad-4e6c-88e9-edf0e1001d8f +Biospecimen,HTA7_1_211,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562136,7d725682-312b-4756-82d7-3497e3a3310e +Biospecimen,HTA7_1_212,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562137,091b2990-6d2d-49f9-b48a-fa13147d3e49 +Biospecimen,HTA7_1_213,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562138,36d22f40-fd2d-4dc8-8b59-1499d17bf323 +Biospecimen,HTA7_1_214,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562139,2438595a-dd05-414e-a3d1-6d0767253187 +Biospecimen,HTA7_1_215,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562140,793a8446-88b3-4b3a-9990-ed53a628e2a5 +Biospecimen,HTA7_1_216,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Inflammatory regression,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562141,a4896b58-1f10-4fad-8a0d-52d3003baf6b +Biospecimen,HTA7_1_217,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Inflammatory regression,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562142,9c0f2210-8690-4215-8cad-2c89d200ab6a +Biospecimen,HTA7_1_218,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Inflammatory regression,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562143,c2c271ca-f083-45bc-aacd-3fdd8b5d23d2 +Biospecimen,HTA7_1_219,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Inflammatory regression,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562144,c44f7c2b-e7fb-4891-9a95-85bdc7b47f98 +Biospecimen,HTA7_1_220,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Inflammatory regression,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562145,efa60be6-707e-4aa8-bd0f-d18797b41915 +Biospecimen,HTA7_1_221,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Inflammatory regression,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562146,ec1a07e6-f2b3-4ac7-989c-f5ea74215008 +Biospecimen,HTA7_1_222,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Inflammatory regression,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562147,037c2124-bbd8-4dee-a5fc-ce2e611f614c +Biospecimen,HTA7_1_223,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Inflammatory regression,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562148,d864e2c7-c4f8-4c13-9eb2-527cef8e5f83 +Biospecimen,HTA7_1_224,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Inflammatory regression,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562149,9d35853d-e7ba-45ff-8a0a-96d32f5eeaa2 +Biospecimen,HTA7_1_225,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Inflammatory regression,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562150,3b8628dd-d6e1-41af-a6c3-09b99e8d344d +Biospecimen,HTA7_1_226,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Exophytic melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562151,176a31a7-c04d-4cf3-92fc-49e33bf5d341 +Biospecimen,HTA7_1_227,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Exophytic melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562152,2e3eba90-54b5-4e5f-9e60-586e4154345d +Biospecimen,HTA7_1_228,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Exophytic melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562153,0e9327a9-9c05-4899-b85a-1abb7f41dd9a +Biospecimen,HTA7_1_229,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Exophytic melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562154,f7e62dc8-195e-40db-a481-cf96e962f4ce +Biospecimen,HTA7_1_230,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Exophytic melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562155,4a32c618-e99f-4207-9951-8cf3925bbd3f +Biospecimen,HTA7_1_231,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Exophytic melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562156,1a48b4a0-ba78-4ba4-ab9f-de3c6c43fc73 +Biospecimen,HTA7_1_232,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Exophytic melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562157,de7a3ed7-c8ff-45e9-b66a-39d41ab646e7 +Biospecimen,HTA7_1_233,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Exophytic melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562158,e1b105b8-a918-4c46-bb52-6ea13e76ce14 +Biospecimen,HTA7_1_234,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Exophytic melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562159,f3fa8650-82a5-4ffd-8ad8-0d75e7a47cf0 +Biospecimen,HTA7_1_235,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Exophytic melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562160,416a3ecf-428b-4df1-b701-bb2f98baee38 +Biospecimen,HTA7_1_236,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Exophytic melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562161,7294d024-7f59-42cc-92b4-221d7a57debc +Biospecimen,HTA7_1_237,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Exophytic melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562162,7126ae79-7048-4ed3-8f9b-9d2e1958a2ab +Biospecimen,HTA7_1_238,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Exophytic melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562163,7566e3ad-9762-4cca-9807-8c56d2f86156 +Biospecimen,HTA7_1_239,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Exophytic melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562164,ab6febfd-68cb-461d-a60a-53869c548faf +Biospecimen,HTA7_1_240,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Exophytic melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562165,da65a8f0-dc3f-48b3-8778-beb50752bf57 +Biospecimen,HTA7_1_241,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Exophytic melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562166,186457c9-25ea-44e3-af99-8ea9d6089560 +Biospecimen,HTA7_1_242,,HTA7_1_20,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Frozen at -80C,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Exophytic melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26562167,94aece1e-80ac-493c-a3fb-e2497ceeefd0 +Biospecimen,HTA7_1_19,,HTA7_1_6,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Refrigerated at 4 degrees,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Superficial spreading melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26561944,747c8daf-3736-4e47-ab39-ca9349ed12b6 +Biospecimen,HTA7_1_8,,HTA7_1_6,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Refrigerated at 4 degrees,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Superficial spreading melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26486640,46c47738-d180-4ced-bb0e-7b8163700696 +Biospecimen,HTA7_1_9,,HTA7_1_6,Baseline,22559,,Tissue Biospecimen Type,Excision,Formalin,Refrigerated at 4 degrees,25560,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Superficial spreading melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26486641,564e8afa-4b3e-4496-808a-34b7806f96e2 +Biospecimen,HTA7_10_1,,HTA7_10,Baseline,20704,,Tissue Biospecimen Type,Excision,Formalin,Ambient temperature,20699,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,Superficial spreading melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of trunk,,Not Reported,,,Not Otherwise Specified,syn26486648,77bbd557-ade3-4434-8312-01898e8ff8f0 +Biospecimen,HTA7_10_2,,HTA7_10_1,Baseline,20704,,Tissue Biospecimen Type,Excision,Formalin,Refrigerated at 4 degrees,20699,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Superficial spreading melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of trunk,,Not Reported,,,Not Otherwise Specified,syn26486649,64af0ce3-cdfd-47ca-8d44-56a45627630f +Biospecimen,HTA7_13_1,,HTA7_13,Locoregional,21794,,Tissue Biospecimen Type,Excision,Formalin,Ambient temperature,21781,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Malignant melanoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of trunk,,Not Reported,,,Not Otherwise Specified,syn26486650,af866322-6dc9-48c0-8a21-487005ea0313 +Biospecimen,HTA7_13_2,,HTA7_13_1,Locoregional,21794,,Tissue Biospecimen Type,Excision,Formalin,Refrigerated at 4 degrees,21781,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,"Malignant melanoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of trunk,,Not Reported,,,Not Otherwise Specified,syn26486651,6099d94f-e287-46d3-a872-6ba74c32e9e8 +Biospecimen,HTA7_14_1,,HTA7_14,Metastasis,13522,,Tissue Biospecimen Type,Excision,Formalin,Ambient temperature,13523,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Malignant melanoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of trunk,,Not Reported,,,Not Otherwise Specified,syn26486652,78513c55-93d2-4d68-89fa-7849720dd219 +Biospecimen,HTA7_14_2,,HTA7_14_1,Metastasis,13522,,Tissue Biospecimen Type,Excision,Formalin,Refrigerated at 4 degrees,13523,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,"Malignant melanoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of trunk,,Not Reported,,,Not Otherwise Specified,syn26486653,6cea695f-4930-4348-8699-f1827997a311 +Biospecimen,HTA7_15_1,,HTA7_15,Baseline,28242,,Tissue Biospecimen Type,Excision,Formalin,Ambient temperature,28242,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26486654,097fb411-19bf-4989-bdc3-27d923f27321 +Biospecimen,HTA7_15_2,,HTA7_15_1,Baseline,28242,,Tissue Biospecimen Type,Excision,Formalin,Refrigerated at 4 degrees,28242,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26486655,8e830f59-f77d-4f90-a613-c8879691624a +Biospecimen,HTA7_16_1,,HTA7_16,Baseline,15524,,Tissue Biospecimen Type,Shave Biopsy,Formalin,Ambient temperature,15524,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,Superficial spreading melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of trunk,,Not Reported,,,Not Otherwise Specified,syn26486656,8829473a-fc18-4253-83fa-90035ed81c1b +Biospecimen,HTA7_16_2,,HTA7_16_1,Baseline,15524,,Tissue Biospecimen Type,Shave Biopsy,Formalin,Refrigerated at 4 degrees,15524,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Superficial spreading melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of trunk,,Not Reported,,,Not Otherwise Specified,syn26486657,dc01f17e-8dd4-4041-83d8-5b796d16e165 +Biospecimen,HTA7_22_1,,HTA7_22,Baseline,20336,,Tissue Biospecimen Type,Shave Biopsy,Formalin,Ambient temperature,20701,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,Superficial spreading melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of trunk,,Not Reported,,,Not Otherwise Specified,syn26486658,b6265a7f-b3c2-4222-b701-f2c9ce24e5b4 +Biospecimen,HTA7_22_2,,HTA7_22_1,Baseline,20336,,Tissue Biospecimen Type,Shave Biopsy,Formalin,Refrigerated at 4 degrees,20701,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Superficial spreading melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of trunk,,Not Reported,,,Not Otherwise Specified,syn26486659,a8ca2938-bd22-4d9b-9c70-759c2d479ec6 +Biospecimen,HTA7_32_1,,HTA7_32,Baseline,9002,,Tissue Biospecimen Type,Shave Biopsy,Formalin,Ambient temperature,9002,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,Superficial spreading melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26486660,610005a9-4432-42df-9ad4-62adeba24138 +Biospecimen,HTA7_32_2,,HTA7_32_1,Baseline,9002,,Tissue Biospecimen Type,Shave Biopsy,Formalin,Refrigerated at 4 degrees,9002,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Superficial spreading melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of upper limb and shoulder,,Not Reported,,,Not Otherwise Specified,syn26486661,5f854250-b338-4abb-b7e3-969a634550b8 +Biospecimen,HTA7_47_1,,HTA7_47,Baseline,8972,,Tissue Biospecimen Type,Punch Biopsy,Formalin,Ambient temperature,8972,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,Dysplastic nevus,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of trunk,,Not Reported,,,Not Otherwise Specified,syn26486662,50f4f986-c056-4d15-bdc6-b219a4d5d2f2 +Biospecimen,HTA7_47_2,,HTA7_47_1,Baseline,8972,,Tissue Biospecimen Type,Punch Biopsy,Formalin,Refrigerated at 4 degrees,8972,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Dysplastic nevus,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of trunk,,Not Reported,,,Not Otherwise Specified,syn26486663,9494e7cf-0d0f-4f3f-b826-884e331f02ef +Biospecimen,HTA7_49_1,,HTA7_49,Baseline,22811,,Tissue Biospecimen Type,Excision,Formalin,Ambient temperature,22811,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of trunk,,Not Reported,,,Not Otherwise Specified,syn26486664,04887645-4bad-4ff2-9fa3-66418a92d08a +Biospecimen,HTA7_49_2,,HTA7_49_1,Baseline,22811,,Tissue Biospecimen Type,Excision,Formalin,Refrigerated at 4 degrees,22811,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Melanoma in situ,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of trunk,,Not Reported,,,Not Otherwise Specified,syn26486665,1f4f05c9-2dea-4a87-b483-e9bd2902dc8c +Biospecimen,HTA7_52_1,,HTA7_52,Baseline,25533,,Tissue Biospecimen Type,Excision,Formalin,Ambient temperature,25533,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,Superficial spreading melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of lower limb and hip,,Not Reported,,,Not Otherwise Specified,syn26486666,94ce0b69-ae9e-41fd-9b82-0209ff4324e8 +Biospecimen,HTA7_52_2,,HTA7_52_1,Baseline,25533,,Tissue Biospecimen Type,Excision,Formalin,Refrigerated at 4 degrees,25533,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Superficial spreading melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of lower limb and hip,,Not Reported,,,Not Otherwise Specified,syn26486667,716c846f-8ff8-4ca2-8c63-beac11a97107 +Biospecimen,HTA7_52_3,,HTA7_52_1,Baseline,25533,,Tissue Biospecimen Type,Excision,Formalin,Refrigerated at 4 degrees,25533,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Superficial spreading melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of lower limb and hip,,Not Reported,,,Not Otherwise Specified,syn26486668,640e74de-10ef-4630-95e6-8d18f27dab7e +Biospecimen,HTA7_6_1,,HTA7_6,Baseline,16334,,Tissue Biospecimen Type,Excision,Formalin,Ambient temperature,16320,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Malignant melanoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of scalp and neck,,Not Reported,,,Not Otherwise Specified,syn26486644,2ba5bfe4-eb3b-456a-91c2-f771bd65d586 +Biospecimen,HTA7_6_2,,HTA7_6_1,Baseline,16334,,Tissue Biospecimen Type,Excision,Formalin,Refrigerated at 4 degrees,16320,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,"Malignant melanoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of scalp and neck,,Not Reported,,,Not Otherwise Specified,syn26486645,a73d30c4-0901-4656-a659-75c16bafe676 +Biospecimen,HTA7_8_1,,HTA7_8,Baseline,19629,,Tissue Biospecimen Type,Excision,Formalin,Ambient temperature,19630,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,Nodular melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of lower limb and hip,,Not Reported,,,Not Otherwise Specified,syn26486646,c4be05e5-64a7-49b1-a372-8f1417557336 +Biospecimen,HTA7_8_2,,HTA7_8_1,Baseline,19629,,Tissue Biospecimen Type,Excision,Formalin,Refrigerated at 4 degrees,19630,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Nodular melanoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Skin of lower limb and hip,,Not Reported,,,Not Otherwise Specified,syn26486647,47e50f18-c580-4b4b-9957-0c1f90858b40 +Biospecimen,HTA7_904_1,,HTA7_904,Initial Diagnosis,20951,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,20951,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26708819,986b782c-a5a5-4cea-937d-53627f096055 +Biospecimen,HTA7_904_2,,HTA7_904_1,Initial Diagnosis,20951,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,20951,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26708820,93843bb9-3a0f-4db8-b8b3-3c705a69945f +Biospecimen,HTA7_904_3,,HTA7_904_1,Initial Diagnosis,20951,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,20951,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26708821,c46e0e2f-aa57-4bc7-b7ac-d82f5410c1ed +Biospecimen,HTA7_904_4,,HTA7_904_1,Initial Diagnosis,20951,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,20951,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26708822,60f2db66-6a76-47f6-9fef-d8ae1732e3fd +Biospecimen,HTA7_904_5,,HTA7_904_1,Initial Diagnosis,20951,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,20951,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26708823,2b14d44f-8e88-4fd0-8d42-247c93b25bbd +Biospecimen,HTA7_905_1,,HTA7_905,Initial Diagnosis,17734,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,17734,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26708824,94c510aa-19fa-4f23-8bbd-8df6c6df2494 +Biospecimen,HTA7_905_2,,HTA7_905_1,Initial Diagnosis,17734,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,17734,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26708825,9aa990e5-60f7-436e-8dff-39b4dddb2909 +Biospecimen,HTA7_905_3,,HTA7_905_1,Initial Diagnosis,17734,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,17734,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26708826,ae5afb2a-6453-48aa-9987-80093de2846f +Biospecimen,HTA7_905_4,,HTA7_905_1,Initial Diagnosis,17734,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,17734,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26708827,7a51ce16-4ded-40ad-abcc-8efb206dd725 +Biospecimen,HTA7_905_5,,HTA7_905_1,Initial Diagnosis,17734,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,17734,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26708828,6d1a96d6-b943-4396-8fe7-b0a8eda12910 +Biospecimen,HTA7_906_1,,HTA7_906,Initial Diagnosis,26014,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,26014,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Ascending colon,,Not Reported,,,primary,syn26708829,dc9c2e04-cc1a-47dc-b871-9bd74429ad4b +Biospecimen,HTA7_906_2,,HTA7_906_1,Initial Diagnosis,26014,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,26014,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Ascending colon,,Not Reported,,,primary,syn26708830,197f6b4b-a6f5-48f0-bb1e-1b674bb16ed0 +Biospecimen,HTA7_906_3,,HTA7_906_1,Initial Diagnosis,26014,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,26014,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Ascending colon,,Not Reported,,,primary,syn26708831,237909fc-56bc-4c29-9e55-384df29d9e8b +Biospecimen,HTA7_906_4,,HTA7_906_1,Initial Diagnosis,26014,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,26014,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Ascending colon,,Not Reported,,,primary,syn26708832,aa69b096-7a9b-4ffc-bbf9-596c7b30f3bd +Biospecimen,HTA7_906_5,,HTA7_906_1,Initial Diagnosis,26014,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,26014,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Ascending colon,,Not Reported,,,primary,syn26708833,ae2e55aa-8568-4a4a-8090-d12e6d8f5bd8 +Biospecimen,HTA7_907_1,,HTA7_907,Initial Diagnosis,24384,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,24384,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Ascending colon,,Not Reported,,,primary,syn26708834,76abd282-46ea-443c-8b32-e04a018b1b83 +Biospecimen,HTA7_907_2,,HTA7_907_1,Initial Diagnosis,24384,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,24384,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Ascending colon,,Not Reported,,,primary,syn26708835,b146eeea-61d8-478d-9bad-bcfafd6fd471 +Biospecimen,HTA7_907_3,,HTA7_907_1,Initial Diagnosis,24384,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,24384,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Ascending colon,,Not Reported,,,primary,syn26708836,cbefd412-6dd2-4fc1-bea0-fcdc20a19dd9 +Biospecimen,HTA7_907_4,,HTA7_907_1,Initial Diagnosis,24384,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,24384,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Ascending colon,,Not Reported,,,primary,syn26708837,60b044ea-5e20-4e85-a056-911268396cd7 +Biospecimen,HTA7_907_5,,HTA7_907_1,Initial Diagnosis,24384,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,24384,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Ascending colon,,Not Reported,,,primary,syn26708838,5ea46532-2593-47cd-9282-3dfde5c2ca7b +Biospecimen,HTA7_908_1,,HTA7_908,Initial Diagnosis,21072,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,21072,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Ascending colon,,Not Reported,,,primary,syn26708839,5661e7cf-8850-49da-8684-1cc657ff545a +Biospecimen,HTA7_908_2,,HTA7_908_1,Initial Diagnosis,21072,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,21072,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Ascending colon,,Not Reported,,,primary,syn26708840,e3bda0bb-39d6-43a7-a2d1-9865ce0b98b8 +Biospecimen,HTA7_908_3,,HTA7_908_1,Initial Diagnosis,21072,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,21072,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Ascending colon,,Not Reported,,,primary,syn26708841,ed8fae75-4df2-44b0-9a11-b5f0b353408b +Biospecimen,HTA7_908_4,,HTA7_908_1,Initial Diagnosis,21072,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,21072,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Ascending colon,,Not Reported,,,primary,syn26708842,87edd125-a22f-4e52-81cb-fd9b8297579b +Biospecimen,HTA7_908_5,,HTA7_908_1,Initial Diagnosis,21072,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,21072,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Ascending colon,,Not Reported,,,primary,syn26708843,515a9338-e08f-4601-8b71-22eb47a0f1ba +Biospecimen,HTA7_909_1,,HTA7_909,Initial Diagnosis,11977,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,11977,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26708844,4bbe7494-8f6f-4729-90e4-778aa543a74b +Biospecimen,HTA7_909_3,,HTA7_909_1,Initial Diagnosis,11977,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,11977,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26708845,ff79f0b4-30a0-436a-9633-928620b33b15 +Biospecimen,HTA7_909_4,,HTA7_909_1,Initial Diagnosis,11977,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,11977,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26708846,6214e081-957a-4e58-ab0c-948270ed1e1f +Biospecimen,HTA7_909_5,,HTA7_909_1,Initial Diagnosis,11977,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,11977,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26708847,8d199f65-a021-489f-80bd-87bbfe8bcbc6 +Biospecimen,HTA7_910_1,,HTA7_910,Initial Diagnosis,25200,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,25200,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectosigmoid junction,,Not Reported,,,primary,syn26708848,a55d358a-2ef1-4844-bdbc-34c4e4243189 +Biospecimen,HTA7_910_2,,HTA7_910_1,Initial Diagnosis,25200,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,25200,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectosigmoid junction,,Not Reported,,,primary,syn26708849,d8638632-97b9-46e3-b0c6-31afb453ffe9 +Biospecimen,HTA7_910_3,,HTA7_910_1,Initial Diagnosis,25200,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,25200,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectosigmoid junction,,Not Reported,,,primary,syn26708850,7f749336-e7ac-4af6-94e4-1621f1010766 +Biospecimen,HTA7_910_4,,HTA7_910_1,Initial Diagnosis,25200,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,25200,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectosigmoid junction,,Not Reported,,,primary,syn26708851,9e336ead-a2f1-426d-9170-bea5c814467f +Biospecimen,HTA7_911_1,,HTA7_911,Initial Diagnosis,9911,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,9911,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26708852,9e27d07d-701e-453c-8908-8cd9043a8505 +Biospecimen,HTA7_911_2,,HTA7_911_1,Initial Diagnosis,9911,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,9911,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26708853,f72ab927-81e5-4bea-b1f5-afae1e61295f +Biospecimen,HTA7_911_3,,HTA7_911_1,Initial Diagnosis,9911,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,9911,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26708854,6821648a-8c47-45fe-8be3-f11f82f5489a +Biospecimen,HTA7_911_4,,HTA7_911_1,Initial Diagnosis,9911,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,9911,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26708855,97e26e63-87dd-4c2b-80a7-6ef0b931f9c2 +Biospecimen,HTA7_911_5,,HTA7_911_1,Initial Diagnosis,9911,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,9911,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26708856,4ddb0a8d-b731-412a-8379-8659f189b98e +Biospecimen,HTA7_912_1,,HTA7_912,Initial Diagnosis,19555,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,19555,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Transverse colon,,Not Reported,,,primary,syn26708857,8c39b39c-7907-407e-a827-7c469c18d91f +Biospecimen,HTA7_912_2,,HTA7_912_1,Initial Diagnosis,19555,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,19555,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Transverse colon,,Not Reported,,,primary,syn26708858,32311bbf-6cd9-4b0d-8df0-43a8ea96bd30 +Biospecimen,HTA7_912_3,,HTA7_912_1,Initial Diagnosis,19555,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,19555,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Transverse colon,,Not Reported,,,primary,syn26708859,8d3ed369-4019-42cd-9306-b4b5a404bedc +Biospecimen,HTA7_912_4,,HTA7_912_1,Initial Diagnosis,19555,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,19555,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Transverse colon,,Not Reported,,,primary,syn26708860,7ecbb2b6-e3e9-45ab-8eda-d403a37a9ffc +Biospecimen,HTA7_912_5,,HTA7_912_1,Initial Diagnosis,19555,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,19555,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Transverse colon,,Not Reported,,,primary,syn26708861,3bf4f1a8-73b5-443d-9d54-f96085026c35 +Biospecimen,HTA7_913_1,,HTA7_913,Initial Diagnosis,17134,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,17134,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26708862,601a8c54-1d61-45bb-a921-ac4ad4a271f0 +Biospecimen,HTA7_913_2,,HTA7_913_1,Initial Diagnosis,17134,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,17134,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26708863,2bef0dfd-28a5-4cc4-8cdc-520c6fdf092b +Biospecimen,HTA7_913_3,,HTA7_913_1,Initial Diagnosis,17134,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,17134,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26708864,d1c9c35e-b3d5-4d8b-9f5b-52778adbc672 +Biospecimen,HTA7_913_4,,HTA7_913_1,Initial Diagnosis,17134,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,17134,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26708865,faf8c0c1-e175-48de-98ea-802b193f0e55 +Biospecimen,HTA7_913_5,,HTA7_913_1,Initial Diagnosis,17134,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,17134,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26708866,998ff65d-2c41-48dc-b393-12057b90f5ba +Biospecimen,HTA7_914_1,,HTA7_914,Initial Diagnosis,27248,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,27248,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26708867,af28b232-0d89-4eb4-bb6e-594163c64233 +Biospecimen,HTA7_914_4,,HTA7_914_1,Initial Diagnosis,27248,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,27248,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26708868,888a335c-5114-42b0-b0f2-7f51b84bc447 +Biospecimen,HTA7_914_5,,HTA7_914_1,Initial Diagnosis,27248,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,27248,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26708869,a021f7d7-5b60-4d89-9209-f81f8be8795e +Biospecimen,HTA7_915_1,,HTA7_915,Initial Diagnosis,13613,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,13613,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26708870,d224d148-bdc8-4960-b57c-e93e154ece96 +Biospecimen,HTA7_915_2,,HTA7_915_1,Initial Diagnosis,13613,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,13613,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26708871,c4ba7cf6-fef1-4df2-9c3b-96d892090f0d +Biospecimen,HTA7_915_3,,HTA7_915_1,Initial Diagnosis,13613,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,13613,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26708872,cf9ab0cb-e042-406b-9346-eef477d0e079 +Biospecimen,HTA7_915_4,,HTA7_915_1,Initial Diagnosis,13613,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,13613,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26708873,b957165a-10ed-4f4d-820c-34af0ec20e93 +Biospecimen,HTA7_915_5,,HTA7_915_1,Initial Diagnosis,13613,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,13613,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26708874,1209a043-faaf-4d13-986c-6c2ac13657a7 +Biospecimen,HTA7_916_1,,HTA7_916,Initial Diagnosis,23683,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,23683,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26708876,c8c45d6a-d8eb-41d1-bc07-67ac6a40ce5c +Biospecimen,HTA7_916_3,,HTA7_916_1,Initial Diagnosis,23683,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,23683,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26708878,83bef440-9208-4d1d-a2f6-e728e920e3a0 +Biospecimen,HTA7_916_4,,HTA7_916_1,Initial Diagnosis,23683,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,23683,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26708880,478a36fc-27ea-4c30-8b70-9991b489241d +Biospecimen,HTA7_916_5,,HTA7_916_1,Initial Diagnosis,23683,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,23683,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26708882,5e085747-dbec-4f72-a754-362dbb85d12d +Biospecimen,HTA7_917_1,,HTA7_917,Initial Diagnosis,24781,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,24781,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Ascending colon,,Not Reported,,,primary,syn26708884,3a56b897-5769-4e53-9b5d-6f9cacf3bd38 +Biospecimen,HTA7_917_2,,HTA7_917_1,Initial Diagnosis,24781,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,24781,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Ascending colon,,Not Reported,,,primary,syn26708886,5631c4eb-e1f3-4d91-8c1d-03dc538422b0 +Biospecimen,HTA7_917_3,,HTA7_917_1,Initial Diagnosis,24781,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,24781,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Ascending colon,,Not Reported,,,primary,syn26708887,7e152e9c-f998-46f4-b6c4-8462eda7c30d +Biospecimen,HTA7_917_5,,HTA7_917_1,Initial Diagnosis,24781,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,24781,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Ascending colon,,Not Reported,,,primary,syn26708888,f2a71654-28c5-491d-aef7-d45c3a1152a5 +Biospecimen,HTA7_918_1,,HTA7_918,Initial Diagnosis,22627,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,22627,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,Mucinous adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Transverse colon,,Not Reported,,,primary,syn26708889,bc0e14c2-2259-487a-abcb-d7c379f50262 +Biospecimen,HTA7_918_2,,HTA7_918_1,Initial Diagnosis,22627,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,22627,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Mucinous adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Transverse colon,,Not Reported,,,primary,syn26708890,b145f396-cc5d-4e53-a17f-27fc5286fb5f +Biospecimen,HTA7_918_3,,HTA7_918_1,Initial Diagnosis,22627,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,22627,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Mucinous adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Transverse colon,,Not Reported,,,primary,syn26708891,6c477717-58b3-48aa-81fe-14585e00cf6d +Biospecimen,HTA7_918_4,,HTA7_918_1,Initial Diagnosis,22627,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,22627,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Mucinous adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Transverse colon,,Not Reported,,,primary,syn26708892,b8eb7789-74e3-47f1-8a20-7ddcfb6ebb80 +Biospecimen,HTA7_918_5,,HTA7_918_1,Initial Diagnosis,22627,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,22627,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Mucinous adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Transverse colon,,Not Reported,,,primary,syn26708893,d1ae0dbc-f761-4c93-98b8-eed6a2c58065 +Biospecimen,HTA7_919_1,,HTA7_919,Initial Diagnosis,23284,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,23284,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Descending colon,,Not Reported,,,primary,syn26708894,5123630e-b13a-4c6d-88bb-37e91a3dc4b5 +Biospecimen,HTA7_919_2,,HTA7_919_1,Initial Diagnosis,23284,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,23284,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Descending colon,,Not Reported,,,primary,syn26708895,1a86168a-23cb-4157-9f52-d7e063c9dc6a +Biospecimen,HTA7_919_3,,HTA7_919_1,Initial Diagnosis,23284,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,23284,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Descending colon,,Not Reported,,,primary,syn26708896,9453678a-091d-4117-83cf-b2be243381a8 +Biospecimen,HTA7_919_4,,HTA7_919_1,Initial Diagnosis,23284,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,23284,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Descending colon,,Not Reported,,,primary,syn26708897,8b04bfd6-bc11-4e14-b811-3dfcce79930b +Biospecimen,HTA7_919_5,,HTA7_919_1,Initial Diagnosis,23284,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,23284,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Descending colon,,Not Reported,,,primary,syn26708898,fd78c896-577c-4dde-bb45-b0c0d3db4475 +Biospecimen,HTA7_920_1,,HTA7_920,Initial Diagnosis,21534,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,21534,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, with Mucinous and Signet Ring Features",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26546875,d259114c-2196-4ec4-ae13-e129047d856a +Biospecimen,HTA7_920_2,,HTA7_920_1,Initial Diagnosis,21534,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,21534,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,"Adenocarcinoma, with Mucinous and Signet Ring Features",,,,Formalin fixed paraffin embedded - FFPE,,,23538,,Rectum NOS,,Not Reported,,,primary,syn26546876,84d7729c-abe0-46a5-8ec8-c486d4912edc +Biospecimen,HTA7_920_3,,HTA7_920_1,Initial Diagnosis,21534,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,21534,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,"Adenocarcinoma, with Mucinous and Signet Ring Features",,,,Formalin fixed paraffin embedded - FFPE,,,23538,,Rectum NOS,,Not Reported,,,primary,syn26561916,fedaa734-4d57-44d0-902f-4c83aca71c9e +Biospecimen,HTA7_920_4,,HTA7_920_1,Initial Diagnosis,21534,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,21534,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,"Adenocarcinoma, with Mucinous and Signet Ring Features",,,,Formalin fixed paraffin embedded - FFPE,,,23538,,Rectum NOS,,Not Reported,,,primary,syn26561932,8bb19ad6-d1a9-45ae-9150-a2ac2fac3f94 +Biospecimen,HTA7_920_5,,HTA7_920_1,Initial Diagnosis,21534,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,21534,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, with Mucinous and Signet Ring Features",,,,Formalin fixed paraffin embedded - FFPE,,,23538,,Rectum NOS,,Not Reported,,,primary,syn26708899,37c7d478-24df-4b54-b9a7-14ab8cb6b9b7 +Biospecimen,HTA7_920_6,,HTA7_920_1,Initial Diagnosis,21534,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,21534,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, with Mucinous and Signet Ring Features",,,,Formalin fixed paraffin embedded - FFPE,,,23538,,Rectum NOS,,Not Reported,,,primary,syn26708900,af07cee6-4608-446b-8f1c-93ce75156e0a +Biospecimen,HTA7_920_7,,HTA7_920_1,Initial Diagnosis,21534,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,21534,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, with Mucinous and Signet Ring Features",,,,Formalin fixed paraffin embedded - FFPE,,,23538,,Rectum NOS,,Not Reported,,,primary,syn26708901,8fd23831-5f98-4a93-b587-e14b0433f4b0 +Biospecimen,HTA7_920_8,,HTA7_920_1,Initial Diagnosis,21534,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,21534,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, with Mucinous and Signet Ring Features",,,,Formalin fixed paraffin embedded - FFPE,,,23538,,Rectum NOS,,Not Reported,,,primary,syn26708902,681b5395-b479-43ae-ac72-4deb83d3a284 +Biospecimen,HTA7_921_1,,HTA7_921,Initial Diagnosis,24908,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,24908,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26708903,b7c4beae-358f-4e1d-a5a0-fa6b4e207047 +Biospecimen,HTA7_921_2,,HTA7_921_1,Initial Diagnosis,24908,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,24908,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26708904,86497006-816e-4d62-8687-6659bb3d5306 +Biospecimen,HTA7_921_3,,HTA7_921_1,Initial Diagnosis,24908,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,24908,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26708905,0064d02a-9842-4e9e-9257-8395b96b2e2a +Biospecimen,HTA7_921_5,,HTA7_921_1,Initial Diagnosis,24908,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,24908,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26708906,b2f83de8-40f4-4002-bfd6-6927bebf9ed8 +Biospecimen,HTA7_922_1,,HTA7_922,Initial Diagnosis,22739,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,22740,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Transverse colon,,Not Reported,,,primary,syn26546877,a69bd02e-2894-4b52-90ef-99c9c77b5077 +Biospecimen,HTA7_922_2,,HTA7_922_1,Initial Diagnosis,22739,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,22740,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,24713,,Transverse colon,,Not Reported,,,primary,syn26546878,98c90052-f757-4b70-af8d-23b00cf68c89 +Biospecimen,HTA7_922_3,,HTA7_922_1,Initial Diagnosis,22739,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,22740,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,24713,,Transverse colon,,Not Reported,,,primary,syn26561917,7e659883-5e9e-4195-b0fa-f49a93034c89 +Biospecimen,HTA7_922_4,,HTA7_922_1,Initial Diagnosis,22739,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,22740,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,24713,,Transverse colon,,Not Reported,,,primary,syn26561933,75c3d7b9-dd58-4fef-873a-0440dcf8af0e +Biospecimen,HTA7_922_5,,HTA7_922_1,Initial Diagnosis,22739,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,22740,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,24713,,Transverse colon,,Not Reported,,,primary,syn26708907,1393317d-1f91-4780-a6c3-ca381c676d02 +Biospecimen,HTA7_922_6,,HTA7_922_1,Initial Diagnosis,22739,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,22740,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,24713,,Transverse colon,,Not Reported,,,primary,syn26708908,995176dd-2581-424b-8571-5048ef89d29f +Biospecimen,HTA7_922_7,,HTA7_922_1,Initial Diagnosis,22739,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,22740,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,24713,,Transverse colon,,Not Reported,,,primary,syn26708909,1dd0a4e3-fc44-4215-8cda-41dceee21ee8 +Biospecimen,HTA7_922_8,,HTA7_922_1,Initial Diagnosis,22739,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,22740,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,24713,,Transverse colon,,Not Reported,,,primary,syn26708910,3c648a8b-124f-45c3-b61c-b1f2bb9c2a28 +Biospecimen,HTA7_923_1,,HTA7_923,Initial Diagnosis,20236,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,20236,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Reported,,,primary,syn26708911,0528f0d1-867f-47e9-ad54-3f2f7f2f25fb +Biospecimen,HTA7_923_4,,HTA7_923_1,Initial Diagnosis,20236,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,20236,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Reported,,,primary,syn26708912,4c2faa37-38bb-4f4f-be1e-cb6cab4367f1 +Biospecimen,HTA7_923_5,,HTA7_923_1,Initial Diagnosis,20236,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,20236,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Reported,,,primary,syn26708913,8bc83bea-3961-4e94-9a3c-02e2c272ce3e +Biospecimen,HTA7_924_1,,HTA7_924,Initial Diagnosis,36114,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,36114,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Reported,,,primary,syn26708914,ca95ac44-8903-4f38-8648-1fffe693bc53 +Biospecimen,HTA7_924_2,,HTA7_924_1,Initial Diagnosis,36114,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,36114,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Reported,,,primary,syn26708915,a4bb9939-2572-459f-b176-974010b94055 +Biospecimen,HTA7_924_3,,HTA7_924_1,Initial Diagnosis,36114,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,36114,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Reported,,,primary,syn26708916,5cf9f892-793b-4327-a943-d29583ca6f34 +Biospecimen,HTA7_924_5,,HTA7_924_1,Initial Diagnosis,36114,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,36114,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Reported,,,primary,syn26708917,9628c5ef-02c9-424c-bc37-66a3e71e0cc4 +Biospecimen,HTA7_925_1,,HTA7_925,Initial Diagnosis,22073,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,22073,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, with Mucinous Features",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26546887,6e1b3987-b88a-4777-b41d-a6c08da63f81 +Biospecimen,HTA7_925_2,,HTA7_925_1,Initial Diagnosis,22073,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,22073,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,"Adenocarcinoma, with Mucinous Features",,,,Formalin fixed paraffin embedded - FFPE,,,24003,,Sigmoid colon,,Not Reported,,,primary,syn26546888,397a68a7-9eeb-44ce-8154-c8fc1c378b9c +Biospecimen,HTA7_925_3,,HTA7_925_1,Initial Diagnosis,22073,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,22073,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,"Adenocarcinoma, with Mucinous Features",,,,Formalin fixed paraffin embedded - FFPE,,,24003,,Sigmoid colon,,Not Reported,,,primary,syn26561922,4195c13b-f1e0-4e49-831f-4f750c612c7f +Biospecimen,HTA7_925_4,,HTA7_925_1,Initial Diagnosis,22073,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,22073,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,"Adenocarcinoma, with Mucinous Features",,,,Formalin fixed paraffin embedded - FFPE,,,24003,,Sigmoid colon,,Not Reported,,,primary,syn26561938,fa134a9c-4738-4dd7-a2c0-00ae2e9a59d6 +Biospecimen,HTA7_925_5,,HTA7_925_1,Initial Diagnosis,22073,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,22073,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, with Mucinous Features",,,,Formalin fixed paraffin embedded - FFPE,,,24003,,Sigmoid colon,,Not Reported,,,primary,syn26708918,74fb9293-c95a-41b1-a3d5-fab57d0f53fe +Biospecimen,HTA7_925_6,,HTA7_925_1,Initial Diagnosis,22073,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,22073,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, with Mucinous Features",,,,Formalin fixed paraffin embedded - FFPE,,,24003,,Sigmoid colon,,Not Reported,,,primary,syn26708919,f7c59c90-76e3-47e2-a0ce-65397293c529 +Biospecimen,HTA7_925_7,,HTA7_925_1,Initial Diagnosis,22073,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,22073,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, with Mucinous Features",,,,Formalin fixed paraffin embedded - FFPE,,,24003,,Sigmoid colon,,Not Reported,,,primary,syn26708920,4af67edd-77d8-4771-8db8-6c24fdc34196 +Biospecimen,HTA7_925_8,,HTA7_925_1,Initial Diagnosis,22073,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,22073,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, with Mucinous Features",,,,Formalin fixed paraffin embedded - FFPE,,,24003,,Sigmoid colon,,Not Reported,,,primary,syn26708921,5ba94518-b334-49b0-a9f5-c8cea4f71719 +Biospecimen,HTA7_926_1,,HTA7_926,Initial Diagnosis,25222,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,25223,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, with Mucinous Features",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26546861,78881d18-bf68-4b16-883c-e316d94aed2c +Biospecimen,HTA7_926_2,,HTA7_926_1,Initial Diagnosis,25222,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,25223,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,"Adenocarcinoma, with Mucinous Features",,,,Formalin fixed paraffin embedded - FFPE,,,27139,,Rectum NOS,,Not Reported,,,primary,syn26546862,dc893ee0-cdf4-4972-9e6b-fb79f0ed022c +Biospecimen,HTA7_926_3,,HTA7_926_1,Initial Diagnosis,25222,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,25223,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,"Adenocarcinoma, with Mucinous Features",,,,Formalin fixed paraffin embedded - FFPE,,,27139,,Rectum NOS,,Not Reported,,,primary,syn26561909,f9337e98-89e0-4018-b5b6-6aa1834cbb19 +Biospecimen,HTA7_926_4,,HTA7_926_1,Initial Diagnosis,25222,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,25223,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,"Adenocarcinoma, with Mucinous Features",,,,Formalin fixed paraffin embedded - FFPE,,,27139,,Rectum NOS,,Not Reported,,,primary,syn26561925,d954db36-a66c-4579-acbc-83b2c60b4277 +Biospecimen,HTA7_926_5,,HTA7_926_1,Initial Diagnosis,25222,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,25223,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, with Mucinous Features",,,,Formalin fixed paraffin embedded - FFPE,,,27139,,Rectum NOS,,Not Reported,,,primary,syn26708922,c991b2d8-79b4-460f-930b-63f44542c2ba +Biospecimen,HTA7_926_6,,HTA7_926_1,Initial Diagnosis,25222,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,25223,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, with Mucinous Features",,,,Formalin fixed paraffin embedded - FFPE,,,27139,,Rectum NOS,,Not Reported,,,primary,syn26708923,826ff776-c98c-45be-b363-1df35578c9e1 +Biospecimen,HTA7_926_7,,HTA7_926_1,Initial Diagnosis,25222,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,25223,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, with Mucinous Features",,,,Formalin fixed paraffin embedded - FFPE,,,27139,,Rectum NOS,,Not Reported,,,primary,syn26708924,975bd0bd-21b9-461d-b2f6-4173d02d06f0 +Biospecimen,HTA7_927_1,,HTA7_927,Initial Diagnosis,14776,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,14776,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26546863,154eea49-5f7f-47e8-8ceb-57365470cf47 +Biospecimen,HTA7_927_2,,HTA7_927_1,Initial Diagnosis,14776,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,14776,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,16660,,Sigmoid colon,,Not Reported,,,primary,syn26546864,18ee4355-ff06-4d8a-9914-deca9a818e1f +Biospecimen,HTA7_927_3,,HTA7_927_1,Initial Diagnosis,14776,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,14776,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,16660,,Sigmoid colon,,Not Reported,,,primary,syn26561910,39b400e4-fdfd-4b57-85d2-171ac2b6c981 +Biospecimen,HTA7_927_4,,HTA7_927_1,Initial Diagnosis,14776,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,14776,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,16660,,Sigmoid colon,,Not Reported,,,primary,syn26561926,93c55dd7-a582-44d5-b7c7-3751111a03d9 +Biospecimen,HTA7_927_5,,HTA7_927_1,Initial Diagnosis,14776,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,14776,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,16660,,Sigmoid colon,,Not Reported,,,primary,syn26708925,043af9b3-9718-4184-80ea-c2a0fdd45897 +Biospecimen,HTA7_927_6,,HTA7_927_1,Initial Diagnosis,14776,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,14776,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,16660,,Sigmoid colon,,Not Reported,,,primary,syn26708926,3c587985-188e-423e-928b-293ba1d0eb52 +Biospecimen,HTA7_927_7,,HTA7_927_1,Initial Diagnosis,14776,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,14776,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,16660,,Sigmoid colon,,Not Reported,,,primary,syn26708927,2a727260-4d57-4301-a72c-963e1d0fdfdd +Biospecimen,HTA7_927_8,,HTA7_927_1,Initial Diagnosis,14776,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,14776,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,16660,,Sigmoid colon,,Not Reported,,,primary,syn26708928,700d9791-0638-43dd-a7ce-1c01c36c92c3 +Biospecimen,HTA7_928_1,,HTA7_928,Initial Diagnosis,25737,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,25737,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,Mucinous adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Reported,,,primary,syn26708929,e51596b8-d5be-48ca-a376-33317a825545 +Biospecimen,HTA7_928_2,,HTA7_928_1,Initial Diagnosis,25737,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,25737,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Mucinous adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Reported,,,primary,syn26708930,e339825f-016e-4574-8abe-ac395f9384c4 +Biospecimen,HTA7_928_3,,HTA7_928_1,Initial Diagnosis,25737,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,25737,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Mucinous adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Reported,,,primary,syn26708931,5ee9a661-cabe-4035-b7a6-e933f5b1d86e +Biospecimen,HTA7_928_4,,HTA7_928_1,Initial Diagnosis,25737,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,25737,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Mucinous adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Reported,,,primary,syn26708932,4dccfec3-5e67-4bef-8208-d77c2c933abb +Biospecimen,HTA7_928_5,,HTA7_928_1,Initial Diagnosis,25737,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,25737,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Mucinous adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Reported,,,primary,syn26708933,e79e0a68-4617-4f9e-854e-739f905a31e1 +Biospecimen,HTA7_929_1,,HTA7_929,Initial Diagnosis,17179,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,17179,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26708934,e09a1997-c7ba-472e-bbb2-37a27eeb5c09 +Biospecimen,HTA7_929_2,,HTA7_929_1,Initial Diagnosis,17179,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,17179,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26708935,fe3d036a-6733-4eae-90f3-1db91536777c +Biospecimen,HTA7_929_3,,HTA7_929_1,Initial Diagnosis,17179,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,17179,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26708936,b51a5fd9-8a3e-4e7d-9970-eb8d5996ffb8 +Biospecimen,HTA7_929_4,,HTA7_929_1,Initial Diagnosis,17179,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,17179,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26708937,d4392d26-0562-49be-8b85-12848f5e743b +Biospecimen,HTA7_929_5,,HTA7_929_1,Initial Diagnosis,17179,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,17179,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26708938,979cdb38-4f17-4b57-8a9f-c8a0eac12f16 +Biospecimen,HTA7_930_1,,HTA7_930,Initial Diagnosis,17983,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,17983,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectosigmoid junction,,Not Reported,,,primary,syn26708939,12eaf330-e10c-4891-9307-144f81acf7d2 +Biospecimen,HTA7_930_2,,HTA7_930_1,Initial Diagnosis,17983,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,17983,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectosigmoid junction,,Not Reported,,,primary,syn26708940,8e8438cf-6d44-4600-a9cf-9ae8a6449e76 +Biospecimen,HTA7_930_3,,HTA7_930_1,Initial Diagnosis,17983,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,17983,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectosigmoid junction,,Not Reported,,,primary,syn26708941,27eed4da-d6a5-463e-80a3-c66692f29c26 +Biospecimen,HTA7_930_4,,HTA7_930_1,Initial Diagnosis,17983,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,17983,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectosigmoid junction,,Not Reported,,,primary,syn26708942,bc410739-dc85-4a26-be39-83c785504adf +Biospecimen,HTA7_930_5,,HTA7_930_1,Initial Diagnosis,17983,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,17983,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectosigmoid junction,,Not Reported,,,primary,syn26708943,7b131e87-4f01-4f82-88a0-9782127dcaec +Biospecimen,HTA7_931_1,,HTA7_931,Initial Diagnosis,9432,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,9432,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Transverse colon,,Not Reported,,,primary,syn26546879,d79c0e89-c2a1-427c-bc0b-a2773f22f60c +Biospecimen,HTA7_931_2,,HTA7_931_1,Initial Diagnosis,9432,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,9432,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,11286,,Transverse colon,,Not Reported,,,primary,syn26546880,6abc9400-2803-41e0-81c8-5a4a343a4116 +Biospecimen,HTA7_931_3,,HTA7_931_1,Initial Diagnosis,9432,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,9432,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,11286,,Transverse colon,,Not Reported,,,primary,syn26561918,2c2a7cb6-1ed7-4c22-9845-e87c691b0f9d +Biospecimen,HTA7_931_4,,HTA7_931_1,Initial Diagnosis,9432,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,9432,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,11286,,Transverse colon,,Not Reported,,,primary,syn26561934,6d6ab17d-4580-412a-bec8-ed1849e0fe87 +Biospecimen,HTA7_931_5,,HTA7_931_1,Initial Diagnosis,9432,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,9432,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,11286,,Transverse colon,,Not Reported,,,primary,syn26708944,3294c1f5-84b5-4445-98e5-1b0721d8bba9 +Biospecimen,HTA7_931_6,,HTA7_931_1,Initial Diagnosis,9432,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,9432,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,11286,,Transverse colon,,Not Reported,,,primary,syn26708945,381de9a6-9ab4-4e09-8b4d-b9d338a7936d +Biospecimen,HTA7_931_7,,HTA7_931_1,Initial Diagnosis,9432,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,9432,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,11286,,Transverse colon,,Not Reported,,,primary,syn26708946,b6617bcd-1ef5-4106-8337-a5aac775bcaa +Biospecimen,HTA7_931_8,,HTA7_931_1,Initial Diagnosis,9432,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,9432,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,11286,,Transverse colon,,Not Reported,,,primary,syn26708947,37e213b2-754a-4d0e-b984-8aa744252425 +Biospecimen,HTA7_932_1,,HTA7_932,Initial Diagnosis,21405,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,21405,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26546865,2c0c255e-a8a2-4a5d-82c7-e062799836da +Biospecimen,HTA7_932_2,,HTA7_932_1,Initial Diagnosis,21405,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,21405,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,23251,,Sigmoid colon,,Not Reported,,,primary,syn26546866,154baa6f-4422-49d4-a053-f0636b08cd96 +Biospecimen,HTA7_932_3,,HTA7_932_1,Initial Diagnosis,21405,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,21405,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,23251,,Sigmoid colon,,Not Reported,,,primary,syn26561911,022e7198-c224-4d25-acf6-43c91233911f +Biospecimen,HTA7_932_4,,HTA7_932_1,Initial Diagnosis,21405,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,21405,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,23251,,Sigmoid colon,,Not Reported,,,primary,syn26561927,77cd5509-0724-4806-aaac-807eea8afdc6 +Biospecimen,HTA7_932_5,,HTA7_932_1,Initial Diagnosis,21405,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,21405,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,23251,,Sigmoid colon,,Not Reported,,,primary,syn26708948,7b384c52-753e-4d45-987c-20e8704009b1 +Biospecimen,HTA7_932_6,,HTA7_932_1,Initial Diagnosis,21405,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,21405,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,23251,,Sigmoid colon,,Not Reported,,,primary,syn26708949,44387abb-cb4b-436b-8a49-689e7dc0299b +Biospecimen,HTA7_932_7,,HTA7_932_1,Initial Diagnosis,21405,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,21405,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,23251,,Sigmoid colon,,Not Reported,,,primary,syn26708950,3607d101-d732-4c48-9d69-d3a52ffbf42f +Biospecimen,HTA7_932_8,,HTA7_932_1,Initial Diagnosis,21405,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,21405,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,23251,,Sigmoid colon,,Not Reported,,,primary,syn26708951,5bdd652a-13e5-46e9-9df6-7f436ec19a94 +Biospecimen,HTA7_933_1,,HTA7_933,Initial Diagnosis,17563,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,17563,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,Mucinous adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26708952,1268bbaa-2d3f-4db7-be17-186fe8cc468d +Biospecimen,HTA7_933_2,,HTA7_933_1,Initial Diagnosis,17563,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,17563,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Mucinous adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26708953,51546049-415d-4d26-8249-817ec320fe39 +Biospecimen,HTA7_933_3,,HTA7_933_1,Initial Diagnosis,17563,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,17563,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Mucinous adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26708954,e9d5cb37-4ea9-41d7-9c81-f6265bec2642 +Biospecimen,HTA7_933_4,,HTA7_933_1,Initial Diagnosis,17563,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,17563,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Mucinous adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26708955,0c06ee81-1d8a-46fa-aa9f-603ac1172d15 +Biospecimen,HTA7_933_5,,HTA7_933_1,Initial Diagnosis,17563,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,17563,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Mucinous adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26708956,cfa13431-cf5e-4c03-84ee-84e0980c1223 +Biospecimen,HTA7_934_1,,HTA7_934,Initial Diagnosis,20492,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,20492,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectosigmoid junction,,Not Reported,,,primary,syn26546867,12b06d0a-c476-4b10-aabb-0364feb1b4eb +Biospecimen,HTA7_934_2,,HTA7_934_1,Initial Diagnosis,20492,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,20492,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,22324,,Rectosigmoid junction,,Not Reported,,,primary,syn26546868,1e414bad-96a8-426a-b6e4-16aee0ae8ed6 +Biospecimen,HTA7_934_3,,HTA7_934_1,Initial Diagnosis,20492,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,20492,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,22324,,Rectosigmoid junction,,Not Reported,,,primary,syn26561912,71c2da3b-7349-497e-b96b-c27e9b92cc70 +Biospecimen,HTA7_934_4,,HTA7_934_1,Initial Diagnosis,20492,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,20492,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,22324,,Rectosigmoid junction,,Not Reported,,,primary,syn26561928,0a511b70-3830-4bbd-88b8-f846d1c4bdbb +Biospecimen,HTA7_934_5,,HTA7_934_1,Initial Diagnosis,20492,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,20492,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,22324,,Rectosigmoid junction,,Not Reported,,,primary,syn26708957,73676141-a8fa-4831-a0b9-14c9f2b3b4a9 +Biospecimen,HTA7_934_6,,HTA7_934_1,Initial Diagnosis,20492,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,20492,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,22324,,Rectosigmoid junction,,Not Reported,,,primary,syn26708958,b68c1d57-eb05-4c7f-b662-6de109919f5d +Biospecimen,HTA7_934_7,,HTA7_934_1,Initial Diagnosis,20492,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,20492,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,22324,,Rectosigmoid junction,,Not Reported,,,primary,syn26708959,c84a0eff-84bb-4845-a13c-362485ae60a3 +Biospecimen,HTA7_934_8,,HTA7_934_1,Initial Diagnosis,20492,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,20492,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,22324,,Rectosigmoid junction,,Not Reported,,,primary,syn26708960,a7d6a9aa-bd7e-4341-9043-1cd62a416c60 +Biospecimen,HTA7_935_1,,HTA7_935,Initial Diagnosis,18726,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,18726,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26708961,600fe752-5fcf-43f7-8829-369ee767fd7d +Biospecimen,HTA7_935_2,,HTA7_935_1,Initial Diagnosis,18726,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,18726,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26708962,1f9af5d0-1d32-421a-a5bd-18ce1e447b0c +Biospecimen,HTA7_935_3,,HTA7_935_1,Initial Diagnosis,18726,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,18726,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26708963,2b4d42c5-ea15-4519-97d3-d0eeba74901d +Biospecimen,HTA7_935_4,,HTA7_935_1,Initial Diagnosis,18726,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,18726,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26708964,c39c16d2-b89a-44fa-9ca7-3a0a8b6f04d2 +Biospecimen,HTA7_936_1,,HTA7_936,Initial Diagnosis,17772,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,17772,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26708965,dbb0d850-363b-4e51-9f25-bc55a774487e +Biospecimen,HTA7_936_3,,HTA7_936_1,Initial Diagnosis,17772,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,17772,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26708966,88e5f902-c830-478e-a2b7-dc8ff05035a8 +Biospecimen,HTA7_936_4,,HTA7_936_1,Initial Diagnosis,17772,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,17772,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26708967,8a40d435-5da1-429a-84f1-74706a1331f8 +Biospecimen,HTA7_936_5,,HTA7_936_1,Initial Diagnosis,17772,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,17772,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26708968,86bd1732-9e25-4ea6-bfc6-9f90347cf6f6 +Biospecimen,HTA7_937_1,,HTA7_937,Metastasis,24359,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,24359,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,Metastatic/Recurrent Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,Metastatic,syn26708969,d8cc1b32-2c12-4433-b750-070df3047833 +Biospecimen,HTA7_937_2,,HTA7_937_1,Metastasis,24359,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,24359,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Metastatic/Recurrent Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,Metastatic,syn26708970,e6fc8e35-3d25-4168-875b-190ca161b115 +Biospecimen,HTA7_937_3,,HTA7_937_1,Metastasis,24359,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,24359,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Metastatic/Recurrent Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,Metastatic,syn26708971,bfce909e-2195-4fa9-b575-bfd8ec652695 +Biospecimen,HTA7_937_5,,HTA7_937_1,Metastasis,24359,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,24359,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Metastatic/Recurrent Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,Metastatic,syn26708972,832d4d35-5e91-4e86-b151-c3f9d65c75ca +Biospecimen,HTA7_938_1,,HTA7_938,Metastasis,24359,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,24359,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,Metastatic/Recurrent Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,Metastatic,syn26708973,d4cb058d-f038-41dc-af44-ae33bbedec3c +Biospecimen,HTA7_938_3,,HTA7_938_1,Metastasis,24359,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,24359,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Metastatic/Recurrent Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,Metastatic,syn26708974,d3029951-7741-4b69-a01a-e50d4b37b692 +Biospecimen,HTA7_938_4,,HTA7_938_1,Metastasis,24359,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,24359,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Metastatic/Recurrent Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,Metastatic,syn26708975,0e079a99-c93a-4008-bea3-6511c5d3f5a1 +Biospecimen,HTA7_938_5,,HTA7_938_1,Metastasis,24359,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,24359,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Metastatic/Recurrent Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,Metastatic,syn26708976,2f640ec6-9597-41da-bcca-e5cf41a20bc4 +Biospecimen,HTA7_939_1,,HTA7_939,Initial Diagnosis,20785,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,20785,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,Mucinous adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Reported,,,primary,syn26708977,bdea31c1-d433-480a-8138-572aa4a8e7df +Biospecimen,HTA7_939_2,,HTA7_939_1,Initial Diagnosis,20785,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,20785,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Mucinous adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Reported,,,primary,syn26708978,50d29751-7fc6-45c7-94ce-9f6c3151db29 +Biospecimen,HTA7_939_3,,HTA7_939_1,Initial Diagnosis,20785,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,20785,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Mucinous adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Reported,,,primary,syn26708979,522f566b-4748-4016-9566-2db9e6b60e2b +Biospecimen,HTA7_939_5,,HTA7_939_1,Initial Diagnosis,20785,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,20785,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Mucinous adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Reported,,,primary,syn26708980,90353ab5-26ef-4c2b-a71f-7e2ca5fd66e5 +Biospecimen,HTA7_940_1,,HTA7_940,Initial Diagnosis,25778,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,25778,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, Ex-Goblet Cell Carcinoid, with Solid, Signet Ring, and Mucinous Features",,,,Formalin fixed paraffin embedded - FFPE,,,,,Appendix,,Not Reported,,,primary,syn26546881,712ea2eb-8bf0-41e4-baa5-92fa33a10650 +Biospecimen,HTA7_940_2,,HTA7_940_1,Initial Diagnosis,25778,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,25778,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,"Adenocarcinoma, Ex-Goblet Cell Carcinoid, with Solid, Signet Ring, and Mucinous Features",,,,Formalin fixed paraffin embedded - FFPE,,,27569,,Appendix,,Not Reported,,,primary,syn26546882,c96da71e-c400-4b73-b811-bb1c90a8735f +Biospecimen,HTA7_940_3,,HTA7_940_1,Initial Diagnosis,25778,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,25778,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,"Adenocarcinoma, Ex-Goblet Cell Carcinoid, with Solid, Signet Ring, and Mucinous Features",,,,Formalin fixed paraffin embedded - FFPE,,,27569,,Appendix,,Not Reported,,,primary,syn26561919,7c3af515-3164-4081-a497-0814eb918aa6 +Biospecimen,HTA7_940_4,,HTA7_940_1,Initial Diagnosis,25778,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,25778,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,"Adenocarcinoma, Ex-Goblet Cell Carcinoid, with Solid, Signet Ring, and Mucinous Features",,,,Formalin fixed paraffin embedded - FFPE,,,27569,,Appendix,,Not Reported,,,primary,syn26561935,8fcc7641-1ab7-43e4-94ee-34fa4ce01b47 +Biospecimen,HTA7_940_5,,HTA7_940_1,Initial Diagnosis,25778,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,25778,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, Ex-Goblet Cell Carcinoid, with Solid, Signet Ring, and Mucinous Features",,,,Formalin fixed paraffin embedded - FFPE,,,27569,,Appendix,,Not Reported,,,primary,syn26708981,393911bf-85ec-457f-9409-2f43570d20f6 +Biospecimen,HTA7_940_6,,HTA7_940_1,Initial Diagnosis,25778,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,25778,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, Ex-Goblet Cell Carcinoid, with Solid, Signet Ring, and Mucinous Features",,,,Formalin fixed paraffin embedded - FFPE,,,27569,,Appendix,,Not Reported,,,primary,syn26708982,d9bdf2e2-7fa5-4412-a9ff-e7c2ea2442e7 +Biospecimen,HTA7_940_7,,HTA7_940_1,Initial Diagnosis,25778,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,25778,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, Ex-Goblet Cell Carcinoid, with Solid, Signet Ring, and Mucinous Features",,,,Formalin fixed paraffin embedded - FFPE,,,27569,,Appendix,,Not Reported,,,primary,syn26708983,5617b8a6-1ab6-4fde-8126-74b12c9dbd0a +Biospecimen,HTA7_940_8,,HTA7_940_1,Initial Diagnosis,25778,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,25778,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, Ex-Goblet Cell Carcinoid, with Solid, Signet Ring, and Mucinous Features",,,,Formalin fixed paraffin embedded - FFPE,,,27569,,Appendix,,Not Reported,,,primary,syn26708984,7e6dc64e-983a-4662-8bd3-38c4408d1863 +Biospecimen,HTA7_941_1,,HTA7_941,Initial Diagnosis,25976,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,25976,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Reported,,,primary,syn26708985,88b32f5e-b1cf-46ea-a31d-39b9a46f30e7 +Biospecimen,HTA7_941_2,,HTA7_941_1,Initial Diagnosis,25976,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,25976,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Reported,,,primary,syn26708986,c0cd13f3-a9da-40ae-9aba-51565dc0bed4 +Biospecimen,HTA7_941_3,,HTA7_941_1,Initial Diagnosis,25976,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,25976,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Reported,,,primary,syn26708987,0d983c63-d257-4272-9788-506cd341695d +Biospecimen,HTA7_941_4,,HTA7_941_1,Initial Diagnosis,25976,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,25976,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Reported,,,primary,syn26708988,f3d848c5-0f4f-457d-a382-89e41c641aa7 +Biospecimen,HTA7_941_5,,HTA7_941_1,Initial Diagnosis,25976,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,25976,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Reported,,,primary,syn26708989,9d2d4bdc-5769-4fda-b46e-f29be6996b25 +Biospecimen,HTA7_942_1,,HTA7_942,Initial Diagnosis,24734,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,24734,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Descending colon,,Not Reported,,,primary,syn26708990,60ea8cf7-aa78-4160-84f3-3e103e949b22 +Biospecimen,HTA7_942_2,,HTA7_942_1,Initial Diagnosis,24734,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,24734,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Descending colon,,Not Reported,,,primary,syn26708991,733a621b-87ec-476a-bc30-f21a7ac1930d +Biospecimen,HTA7_942_3,,HTA7_942_1,Initial Diagnosis,24734,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,24734,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Descending colon,,Not Reported,,,primary,syn26708992,9ae5e389-d220-4718-a579-69763664a816 +Biospecimen,HTA7_942_4,,HTA7_942_1,Initial Diagnosis,24734,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,24734,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Descending colon,,Not Reported,,,primary,syn26708993,ea5e207d-39be-4ac2-8567-3fd4fa9bd42a +Biospecimen,HTA7_942_5,,HTA7_942_1,Initial Diagnosis,24734,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,24734,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Descending colon,,Not Reported,,,primary,syn26708994,cb9e5e57-6ed0-43c3-b481-7be5c2f0df60 +Biospecimen,HTA7_943_1,,HTA7_943,Initial Diagnosis,31261,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,31261,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Ascending colon,,Not Reported,,,primary,syn26708995,5adb7854-0301-4d55-90ad-a721c103b735 +Biospecimen,HTA7_943_2,,HTA7_943_1,Initial Diagnosis,31261,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,31261,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Ascending colon,,Not Reported,,,primary,syn26708996,a680aa16-425c-4e6b-92e1-b2f3b5df4245 +Biospecimen,HTA7_943_3,,HTA7_943_1,Initial Diagnosis,31261,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,31261,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Ascending colon,,Not Reported,,,primary,syn26708997,92913aed-fd35-4b31-9be9-e3ea174fa484 +Biospecimen,HTA7_943_4,,HTA7_943_1,Initial Diagnosis,31261,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,31261,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Ascending colon,,Not Reported,,,primary,syn26708998,c1a45091-1de7-43c7-8d69-2436df8afd1b +Biospecimen,HTA7_943_5,,HTA7_943_1,Initial Diagnosis,31261,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,31261,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Ascending colon,,Not Reported,,,primary,syn26708999,e3d54598-c9f1-46be-afd1-c0b84c70ccdb +Biospecimen,HTA7_944_1,,HTA7_944,Initial Diagnosis,18312,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,18312,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709000,0197f285-586f-4479-9333-e6d47a2e852b +Biospecimen,HTA7_944_2,,HTA7_944_1,Initial Diagnosis,18312,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,18312,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709001,2c366420-c08b-4924-bf69-998edffb9d22 +Biospecimen,HTA7_944_3,,HTA7_944_1,Initial Diagnosis,18312,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,18312,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709002,2b1ef7f1-b5ed-490a-8ad3-160bccd11a10 +Biospecimen,HTA7_944_4,,HTA7_944_1,Initial Diagnosis,18312,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,18312,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709003,ccbb48be-78dc-4911-8596-327074cb7818 +Biospecimen,HTA7_944_5,,HTA7_944_1,Initial Diagnosis,18312,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,18312,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709004,1af35685-92c0-4ce3-afa2-dad72d68cb59 +Biospecimen,HTA7_945_1,,HTA7_945,Initial Diagnosis,24553,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,24553,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Reported,,,primary,syn26709005,d2594b2d-72ac-4af6-8770-3efe52ce4c4b +Biospecimen,HTA7_945_2,,HTA7_945_1,Initial Diagnosis,24553,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,24553,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Reported,,,primary,syn26709006,df6127c3-4c65-4b70-b1a6-ba5d67dbfcdc +Biospecimen,HTA7_945_3,,HTA7_945_1,Initial Diagnosis,24553,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,24553,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Reported,,,primary,syn26709007,42884e10-eec3-464e-8fc6-ea2d9d1b52a3 +Biospecimen,HTA7_945_4,,HTA7_945_1,Initial Diagnosis,24553,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,24553,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Reported,,,primary,syn26709008,d8b7d0d4-dc40-492f-a2a4-fcbcd60b4061 +Biospecimen,HTA7_945_5,,HTA7_945_1,Initial Diagnosis,24553,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,24553,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Reported,,,primary,syn26709009,c78d36d7-05eb-4365-944f-028e7d405b64 +Biospecimen,HTA7_946_1,,HTA7_946,Initial Diagnosis,23345,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,23345,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,Mucinous adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Reported,,,primary,syn26709010,d061672c-9ed0-4f8d-a92b-5fffe4eb0e12 +Biospecimen,HTA7_946_2,,HTA7_946_1,Initial Diagnosis,23345,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,23345,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Mucinous adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Reported,,,primary,syn26709011,58f7b61a-d804-4c72-879f-bfb5aa5513e2 +Biospecimen,HTA7_946_3,,HTA7_946_1,Initial Diagnosis,23345,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,23345,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Mucinous adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Reported,,,primary,syn26709012,57522524-afe3-4b2e-b7b5-33151bf4b2fd +Biospecimen,HTA7_946_4,,HTA7_946_1,Initial Diagnosis,23345,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,23345,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Mucinous adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Reported,,,primary,syn26709013,503668b0-4552-4a5e-8683-3b0162701cad +Biospecimen,HTA7_946_5,,HTA7_946_1,Initial Diagnosis,23345,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,23345,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Mucinous adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Reported,,,primary,syn26709014,dd65af04-0a02-4c6d-aa09-2551afde5a72 +Biospecimen,HTA7_947_1,,HTA7_947,Initial Diagnosis,21281,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,21282,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectosigmoid junction,,Not Reported,,,primary,syn26546871,0f5e3c8a-553a-4374-a2f9-cf8f734173b1 +Biospecimen,HTA7_947_2,,HTA7_947_1,Initial Diagnosis,21281,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,21282,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,23004,,Rectosigmoid junction,,Not Reported,,,primary,syn26546872,ea6177bd-c91e-43c0-ab4a-f28b84c1d7b4 +Biospecimen,HTA7_947_3,,HTA7_947_1,Initial Diagnosis,21281,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,21282,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,23004,,Rectosigmoid junction,,Not Reported,,,primary,syn26561914,df3d252b-4bcb-492d-a817-06ed257fa3d8 +Biospecimen,HTA7_947_4,,HTA7_947_1,Initial Diagnosis,21281,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,21282,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,23004,,Rectosigmoid junction,,Not Reported,,,primary,syn26561930,66c9ca33-9d31-4b1b-8fee-240df9cd76cc +Biospecimen,HTA7_947_5,,HTA7_947_1,Initial Diagnosis,21281,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,21282,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,23004,,Rectosigmoid junction,,Not Reported,,,primary,syn26709015,74b98384-0116-455e-930c-11d00625a91f +Biospecimen,HTA7_947_6,,HTA7_947_1,Initial Diagnosis,21281,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,21282,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,23004,,Rectosigmoid junction,,Not Reported,,,primary,syn26709016,8931b471-75e8-4dc9-97de-7ef8ed8c1886 +Biospecimen,HTA7_947_7,,HTA7_947_1,Initial Diagnosis,21281,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,21282,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,23004,,Rectosigmoid junction,,Not Reported,,,primary,syn26709017,6a22042a-7d96-4835-b24a-9e17b39cb13b +Biospecimen,HTA7_947_8,,HTA7_947_1,Initial Diagnosis,21281,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,21282,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,23004,,Rectosigmoid junction,,Not Reported,,,primary,syn26709018,00fddb64-10f0-47d8-a7bb-0efe30e9ea83 +Biospecimen,HTA7_948_1,,HTA7_948,Initial Diagnosis,16044,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,16044,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709019,230c2f57-6dab-460e-8a8b-fbf1f88c9570 +Biospecimen,HTA7_948_3,,HTA7_948_1,Initial Diagnosis,16044,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,16044,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709020,24e89eb1-c2d3-49bb-baaa-37aab24799b2 +Biospecimen,HTA7_948_4,,HTA7_948_1,Initial Diagnosis,16044,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,16044,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709021,513e955c-9864-4c21-98d6-f9ad70c22381 +Biospecimen,HTA7_948_5,,HTA7_948_1,Initial Diagnosis,16044,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,16044,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709022,94c601ea-72ce-4ae7-8549-7687e4970e78 +Biospecimen,HTA7_949_1,,HTA7_949,Initial Diagnosis,27856,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,27856,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Ascending colon,,Not Reported,,,primary,syn26709023,b9bbee21-5cf0-4dc6-b959-e893c6f8371e +Biospecimen,HTA7_949_2,,HTA7_949_1,Initial Diagnosis,27856,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,27856,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Ascending colon,,Not Reported,,,primary,syn26709024,993797cf-adeb-4fc0-bd82-1d5bb2252009 +Biospecimen,HTA7_949_3,,HTA7_949_1,Initial Diagnosis,27856,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,27856,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Ascending colon,,Not Reported,,,primary,syn26709025,317646bc-1806-45db-a94f-46ffc0d88062 +Biospecimen,HTA7_949_5,,HTA7_949_1,Initial Diagnosis,27856,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,27856,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Ascending colon,,Not Reported,,,primary,syn26709026,a9f3b53e-fa3a-4238-b349-2202175f4c6e +Biospecimen,HTA7_950_1,,HTA7_950,Initial Diagnosis,20822,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,20822,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Ascending colon,,Not Reported,,,primary,syn26709027,933dc356-9b69-42b8-afe3-5ae482bb76eb +Biospecimen,HTA7_950_2,,HTA7_950_1,Initial Diagnosis,20822,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,20822,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Ascending colon,,Not Reported,,,primary,syn26709028,6047f84d-dbbd-474c-9c06-76ec73073350 +Biospecimen,HTA7_950_3,,HTA7_950_1,Initial Diagnosis,20822,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,20822,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Ascending colon,,Not Reported,,,primary,syn26709029,f657e86a-94d2-4969-9335-73575001c268 +Biospecimen,HTA7_950_4,,HTA7_950_1,Initial Diagnosis,20822,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,20822,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Ascending colon,,Not Reported,,,primary,syn26709030,4e604b1c-64c2-4794-8b7e-d27e04b7596c +Biospecimen,HTA7_950_5,,HTA7_950_1,Initial Diagnosis,20822,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,20822,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Ascending colon,,Not Reported,,,primary,syn26709031,9c6754e2-a7cb-43f8-8a96-6e5eb6ad4a6a +Biospecimen,HTA7_951_1,,HTA7_951,Initial Diagnosis,25239,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,25239,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709032,e762b3ef-e038-4f64-824c-fd7b68487719 +Biospecimen,HTA7_951_2,,HTA7_951_1,Initial Diagnosis,25239,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,25239,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709033,9864acaf-488a-4a79-a6fd-91239308c795 +Biospecimen,HTA7_951_4,,HTA7_951_1,Initial Diagnosis,25239,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,25239,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709034,f5f61332-fa18-4107-984c-7d79cf5f31da +Biospecimen,HTA7_951_5,,HTA7_951_1,Initial Diagnosis,25239,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,25239,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709035,050b8eff-85ce-4c79-b936-a627fb2e7a0a +Biospecimen,HTA7_952_1,,HTA7_952,Initial Diagnosis,20453,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,20453,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709036,965db930-547c-4dc5-b0b5-37cdec2d348e +Biospecimen,HTA7_952_2,,HTA7_952_1,Initial Diagnosis,20453,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,20453,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709037,43119982-04a2-4454-aaac-d27dc02306ff +Biospecimen,HTA7_952_3,,HTA7_952_1,Initial Diagnosis,20453,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,20453,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709038,e66780c2-180f-4be4-bb54-3359e438b69d +Biospecimen,HTA7_952_4,,HTA7_952_1,Initial Diagnosis,20453,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,20453,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709039,3d7021d9-4976-4461-a6f5-0034a5f61bcb +Biospecimen,HTA7_952_5,,HTA7_952_1,Initial Diagnosis,20453,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,20453,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709040,93996676-9a45-4ef1-b44a-33df6c707c9a +Biospecimen,HTA7_953_1,,HTA7_953,Initial Diagnosis,20453,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,20453,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709041,b0667a48-f4f6-422f-b5ba-43ca97ace2d7 +Biospecimen,HTA7_953_2,,HTA7_953_1,Initial Diagnosis,20453,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,20453,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709042,bb842af8-59fb-4902-a871-88071f04a1e4 +Biospecimen,HTA7_953_3,,HTA7_953_1,Initial Diagnosis,20453,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,20453,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709043,629d909b-793d-4ce8-a3d7-a183f6cc5298 +Biospecimen,HTA7_953_4,,HTA7_953_1,Initial Diagnosis,20453,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,20453,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709044,841015a8-455d-4bcf-a6b2-0e62c894467c +Biospecimen,HTA7_953_5,,HTA7_953_1,Initial Diagnosis,20453,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,20453,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709045,3bfdb2c1-9eba-4af1-a926-4623d87109ee +Biospecimen,HTA7_954_1,,HTA7_954,Initial Diagnosis,23587,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,23587,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709046,4ae47b0e-0a4b-4506-af88-c6bb0490f6ce +Biospecimen,HTA7_954_2,,HTA7_954_1,Initial Diagnosis,23587,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,23587,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709047,5a017614-905f-4cc4-8e16-a09ec1593593 +Biospecimen,HTA7_954_3,,HTA7_954_1,Initial Diagnosis,23587,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,23587,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709048,4b721ba6-80ae-4eac-a068-0af1785ec8f3 +Biospecimen,HTA7_954_4,,HTA7_954_1,Initial Diagnosis,23587,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,23587,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709049,372bf2d4-beef-4d54-9a2d-5fbc4e9197b2 +Biospecimen,HTA7_954_5,,HTA7_954_1,Initial Diagnosis,23587,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,23587,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709050,5c91de11-162b-42df-a8d3-8b67afcfde26 +Biospecimen,HTA7_955_1,,HTA7_955,Initial Diagnosis,23787,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,23787,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709051,8dabd496-f454-4a2c-8378-87a9ddf3160f +Biospecimen,HTA7_955_2,,HTA7_955_1,Initial Diagnosis,23787,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,23787,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709052,b3cd2c44-90f7-4ffa-abf0-d3b62354f17a +Biospecimen,HTA7_955_3,,HTA7_955_1,Initial Diagnosis,23787,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,23787,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709053,1eee6f7d-f2f6-427e-946d-fe2acfc18892 +Biospecimen,HTA7_955_4,,HTA7_955_1,Initial Diagnosis,23787,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,23787,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709054,318dff5f-7045-4aa7-b2c3-5dee19ea69b3 +Biospecimen,HTA7_955_5,,HTA7_955_1,Initial Diagnosis,23787,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,23787,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709055,ab1674b5-9d0b-4e41-be0d-ea2ee2e0caef +Biospecimen,HTA7_956_1,,HTA7_956,Initial Diagnosis,26615,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,26615,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Transverse colon,,Not Reported,,,primary,syn26709056,2b4112f2-06e9-4142-a15a-9bc5a963d605 +Biospecimen,HTA7_956_2,,HTA7_956_1,Initial Diagnosis,26615,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,26615,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Transverse colon,,Not Reported,,,primary,syn26709057,760972de-6ab6-45c0-ac35-a63152c1d0d9 +Biospecimen,HTA7_957_1,,HTA7_957,Initial Diagnosis,28264,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,28264,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectosigmoid junction,,Not Reported,,,primary,syn26709058,c11e34e3-84ed-48ab-85f9-00be3b6d0f4e +Biospecimen,HTA7_957_2,,HTA7_957_1,Initial Diagnosis,28264,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,28264,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectosigmoid junction,,Not Reported,,,primary,syn26709059,d5811db9-d6de-4723-8db7-5568bf691c0a +Biospecimen,HTA7_957_3,,HTA7_957_1,Initial Diagnosis,28264,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,28264,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectosigmoid junction,,Not Reported,,,primary,syn26709060,859e2f7d-5273-40be-b5fc-b85a1f946489 +Biospecimen,HTA7_957_4,,HTA7_957_1,Initial Diagnosis,28264,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,28264,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectosigmoid junction,,Not Reported,,,primary,syn26709061,a4a3f65b-ea57-4feb-ba3f-09a85d4dc3ca +Biospecimen,HTA7_957_5,,HTA7_957_1,Initial Diagnosis,28264,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,28264,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectosigmoid junction,,Not Reported,,,primary,syn26709062,97da918a-a9bb-4b21-ae72-35b6a24c928a +Biospecimen,HTA7_958_1,,HTA7_958,Initial Diagnosis,22335,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,22335,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Reported,,,primary,syn26709063,7d9178f8-131d-4583-af78-b0c380bb4205 +Biospecimen,HTA7_958_2,,HTA7_958_1,Initial Diagnosis,22335,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,22335,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Reported,,,primary,syn26709064,f0414eee-f694-4be5-b12a-3a592b4a73b9 +Biospecimen,HTA7_958_3,,HTA7_958_1,Initial Diagnosis,22335,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,22335,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Reported,,,primary,syn26709065,b0478d93-2e86-4866-9926-3fdaafad627b +Biospecimen,HTA7_958_4,,HTA7_958_1,Initial Diagnosis,22335,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,22335,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Reported,,,primary,syn26709066,25ce7f9b-574c-4c9d-aaed-2abeb79765f5 +Biospecimen,HTA7_958_5,,HTA7_958_1,Initial Diagnosis,22335,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,22335,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Reported,,,primary,syn26709067,28a0ec97-9a3a-4eed-83e2-9e2b7864d54e +Biospecimen,HTA7_959_1,,HTA7_959,Initial Diagnosis,29295,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,29295,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectosigmoid junction,,Not Reported,,,primary,syn26709068,e562495d-6533-4be1-ad08-73d4a39addd1 +Biospecimen,HTA7_959_2,,HTA7_959_1,Initial Diagnosis,29295,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,29295,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectosigmoid junction,,Not Reported,,,primary,syn26709069,19434072-5d43-478a-ad04-3c0e73285a48 +Biospecimen,HTA7_959_3,,HTA7_959_1,Initial Diagnosis,29295,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,29295,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectosigmoid junction,,Not Reported,,,primary,syn26709070,c1bb1f59-c80f-4249-8c04-03a5dfa569d0 +Biospecimen,HTA7_959_4,,HTA7_959_1,Initial Diagnosis,29295,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,29295,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectosigmoid junction,,Not Reported,,,primary,syn26709071,086b0448-1c20-4e9f-8055-b21e06b20c01 +Biospecimen,HTA7_959_5,,HTA7_959_1,Initial Diagnosis,29295,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,29295,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectosigmoid junction,,Not Reported,,,primary,syn26709072,354a5142-d19b-4a71-ba28-d21e8279e409 +Biospecimen,HTA7_960_1,,HTA7_960,Initial Diagnosis,21781,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,21781,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709073,5de24094-d52c-4605-bd6a-8279d94734d0 +Biospecimen,HTA7_960_2,,HTA7_960_1,Initial Diagnosis,21781,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,21781,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709074,c4222905-9dfa-4876-bfc6-689bc72572de +Biospecimen,HTA7_960_3,,HTA7_960_1,Initial Diagnosis,21781,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,21781,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709075,fddf8097-efb5-46c9-bb65-cac16a6938db +Biospecimen,HTA7_960_4,,HTA7_960_1,Initial Diagnosis,21781,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,21781,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709076,c1b85384-84cb-4c4c-87b8-3c386f127652 +Biospecimen,HTA7_960_5,,HTA7_960_1,Initial Diagnosis,21781,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,21781,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709077,2a050ae3-a81e-4484-84df-d6fd501a37d8 +Biospecimen,HTA7_961_1,,HTA7_961,Initial Diagnosis,24226,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,24226,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Ascending colon,,Not Reported,,,primary,syn26709078,ed57f129-c244-4859-a984-7f6745b32338 +Biospecimen,HTA7_961_2,,HTA7_961_1,Initial Diagnosis,24226,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,24226,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Ascending colon,,Not Reported,,,primary,syn26709079,f48ecce9-f313-4886-8f6b-fbadada89e8d +Biospecimen,HTA7_961_3,,HTA7_961_1,Initial Diagnosis,24226,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,24226,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Ascending colon,,Not Reported,,,primary,syn26709080,67e9f888-de7a-451d-b780-65f89a6ceb7b +Biospecimen,HTA7_961_4,,HTA7_961_1,Initial Diagnosis,24226,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,24226,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Ascending colon,,Not Reported,,,primary,syn26709081,39c5a768-5d4a-4bce-bdc5-f9e95abdcb11 +Biospecimen,HTA7_961_5,,HTA7_961_1,Initial Diagnosis,24226,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,24226,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Ascending colon,,Not Reported,,,primary,syn26709082,14652291-d90d-47cf-8dce-60eb9dd8036b +Biospecimen,HTA7_962_1,,HTA7_962,Initial Diagnosis,17744,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,17744,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709083,00a01bb1-325f-452d-b503-9e25baa230b6 +Biospecimen,HTA7_962_2,,HTA7_962_1,Initial Diagnosis,17744,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,17744,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709084,fdd9fec7-861a-4677-a48c-eabcb5800612 +Biospecimen,HTA7_962_3,,HTA7_962_1,Initial Diagnosis,17744,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,17744,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709085,9afcfe0c-8af5-4bcd-805e-6923309e5745 +Biospecimen,HTA7_962_4,,HTA7_962_1,Initial Diagnosis,17744,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,17744,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709086,8a6080b1-16bd-49b8-874a-a46289fe60c6 +Biospecimen,HTA7_962_5,,HTA7_962_1,Initial Diagnosis,17744,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,17744,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709087,cf0ff283-a7cc-4819-8fb6-7252be97f506 +Biospecimen,HTA7_963_1,,HTA7_963,Initial Diagnosis,23515,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,23516,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, with Mucinous Features",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26546883,99c55a30-786d-4845-a53b-4b3af3fee5fd +Biospecimen,HTA7_963_2,,HTA7_963_1,Initial Diagnosis,23515,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,23516,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,"Adenocarcinoma, with Mucinous Features",,,,Formalin fixed paraffin embedded - FFPE,,,25118,,Rectum NOS,,Not Reported,,,primary,syn26546884,2f419ec8-47da-4ca5-9586-3c81e44f2a58 +Biospecimen,HTA7_963_3,,HTA7_963_1,Initial Diagnosis,23515,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,23516,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,"Adenocarcinoma, with Mucinous Features",,,,Formalin fixed paraffin embedded - FFPE,,,25118,,Rectum NOS,,Not Reported,,,primary,syn26561920,93a033d3-dc4c-4252-928c-19b3a03ce5fa +Biospecimen,HTA7_963_4,,HTA7_963_1,Initial Diagnosis,23515,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,23516,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,"Adenocarcinoma, with Mucinous Features",,,,Formalin fixed paraffin embedded - FFPE,,,25118,,Rectum NOS,,Not Reported,,,primary,syn26561936,882111f1-6a5a-4ae4-9eb0-66bef6537db9 +Biospecimen,HTA7_963_5,,HTA7_963_1,Initial Diagnosis,23515,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,23516,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, with Mucinous Features",,,,Formalin fixed paraffin embedded - FFPE,,,25118,,Rectum NOS,,Not Reported,,,primary,syn26709088,12d7b7c0-6e48-4789-9043-0573fcc936d2 +Biospecimen,HTA7_963_6,,HTA7_963_1,Initial Diagnosis,23515,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,23516,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, with Mucinous Features",,,,Formalin fixed paraffin embedded - FFPE,,,25118,,Rectum NOS,,Not Reported,,,primary,syn26709089,215ea6d4-a218-4afe-b3d1-e32d2ed964eb +Biospecimen,HTA7_963_7,,HTA7_963_1,Initial Diagnosis,23515,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,23516,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, with Mucinous Features",,,,Formalin fixed paraffin embedded - FFPE,,,25118,,Rectum NOS,,Not Reported,,,primary,syn26709090,a5f63872-efab-4123-9eac-4389a3e99fd4 +Biospecimen,HTA7_964_1,,HTA7_964,Initial Diagnosis,18469,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,18469,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Transverse colon,,Not Reported,,,primary,syn26709091,28b32898-d5e7-46ac-b919-2c72ee4cfa80 +Biospecimen,HTA7_964_2,,HTA7_964_1,Initial Diagnosis,18469,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,18469,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Transverse colon,,Not Reported,,,primary,syn26709092,64913bd5-bcf9-48be-a4f4-44cacb025568 +Biospecimen,HTA7_964_4,,HTA7_964_1,Initial Diagnosis,18469,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,18469,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Transverse colon,,Not Reported,,,primary,syn26709093,692476c9-7de9-4c57-a7a2-548d3811cc14 +Biospecimen,HTA7_964_5,,HTA7_964_1,Initial Diagnosis,18469,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,18469,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Transverse colon,,Not Reported,,,primary,syn26709094,3922520a-606e-4a8a-88cb-993fe76b5dad +Biospecimen,HTA7_965_1,,HTA7_965,Initial Diagnosis,29512,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,29512,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Reported,,,primary,syn26546891,3f26cd58-d3b4-459b-9e72-5af19e1f502d +Biospecimen,HTA7_965_2,,HTA7_965_1,Initial Diagnosis,29512,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,29512,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,31106,,Cecum,,Not Reported,,,primary,syn26546892,c2a0ca0f-5cd8-4339-9907-2d01b7784aec +Biospecimen,HTA7_965_3,,HTA7_965_1,Initial Diagnosis,29512,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,29512,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,31106,,Cecum,,Not Reported,,,primary,syn26561924,002f615e-4f7c-4897-834c-df793f17a0e8 +Biospecimen,HTA7_965_4,,HTA7_965_1,Initial Diagnosis,29512,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,29512,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,31106,,Cecum,,Not Reported,,,primary,syn26561940,447dce6f-4108-4c88-85e1-d7960a92fae8 +Biospecimen,HTA7_965_5,,HTA7_965_1,Initial Diagnosis,29512,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,29512,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,31106,,Cecum,,Not Reported,,,primary,syn26709095,de2aa265-6ab3-40ae-b9e4-98dea3f4323e +Biospecimen,HTA7_965_7,,HTA7_965_1,Initial Diagnosis,29512,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,29512,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,31106,,Cecum,,Not Reported,,,primary,syn26709096,60d23371-d8ae-4558-90fc-9b5a0057c1e0 +Biospecimen,HTA7_965_8,,HTA7_965_1,Initial Diagnosis,29512,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,29512,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,31106,,Cecum,,Not Reported,,,primary,syn26709097,77f870ae-6a98-4345-912b-dc5e2ce8c507 +Biospecimen,HTA7_966_1,,HTA7_966,Initial Diagnosis,26767,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,26767,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26546869,da4760a4-e0e7-49a7-8ccb-d2c962d66260 +Biospecimen,HTA7_966_2,,HTA7_966_1,Initial Diagnosis,26767,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,26767,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,28347,,Sigmoid colon,,Not Reported,,,primary,syn26546870,e8de6271-9ae4-4268-ba62-3ff0675d8f0e +Biospecimen,HTA7_966_3,,HTA7_966_1,Initial Diagnosis,26767,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,26767,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,28347,,Sigmoid colon,,Not Reported,,,primary,syn26561913,4f778d3a-bc19-461d-be47-3e76c4b7b2c5 +Biospecimen,HTA7_966_4,,HTA7_966_1,Initial Diagnosis,26767,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,26767,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,28347,,Sigmoid colon,,Not Reported,,,primary,syn26561929,ffc411eb-b88a-411c-b9bf-bfa0722ba7b9 +Biospecimen,HTA7_966_6,,HTA7_966_1,Initial Diagnosis,18469,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,18469,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Transverse colon,,Not Reported,,,primary,syn26709098,82b5bc8d-e2a4-4c51-846a-ddba9c7c06ae +Biospecimen,HTA7_967_1,,HTA7_967,Recurrence,22766,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,22766,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,Recurrent/Residual Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Not Reported,,Not Reported,,,Recurrent,syn26709099,7deded62-47da-4263-a7af-9dbb93fdfca8 +Biospecimen,HTA7_967_3,,HTA7_967_1,Recurrence,22766,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,22766,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Recurrent/Residual Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Not Reported,,Not Reported,,,Recurrent,syn26709100,00be86c3-ba97-4358-a5fa-2553fff69184 +Biospecimen,HTA7_967_4,,HTA7_967_1,Recurrence,22766,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,22766,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Recurrent/Residual Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Not Reported,,Not Reported,,,Recurrent,syn26709101,8a83e299-ff66-4000-91f1-c7ddd8184e32 +Biospecimen,HTA7_967_5,,HTA7_967_1,Recurrence,22766,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,22766,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Recurrent/Residual Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Not Reported,,Not Reported,,,Recurrent,syn26709102,54e6a2ff-90ce-4344-9ccc-6a34585f51a8 +Biospecimen,HTA7_968_1,,HTA7_968,Initial Diagnosis,17723,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,17723,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Reported,,,primary,syn26709103,fd9965ec-a797-4bd3-8b15-289cfca9e1f2 +Biospecimen,HTA7_968_2,,HTA7_968_1,Initial Diagnosis,17723,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,17723,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Reported,,,primary,syn26709104,d363d272-1d6f-4ef7-86cd-ac58be3d1052 +Biospecimen,HTA7_968_3,,HTA7_968_1,Initial Diagnosis,17723,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,17723,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Reported,,,primary,syn26709105,453319ca-18fc-4070-a0ff-9cfd8533bb56 +Biospecimen,HTA7_968_4,,HTA7_968_1,Initial Diagnosis,17723,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,17723,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Reported,,,primary,syn26709106,e5df2eaa-12a2-4659-9222-f35b16040e3a +Biospecimen,HTA7_968_5,,HTA7_968_1,Initial Diagnosis,17723,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,17723,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Reported,,,primary,syn26709107,e658679b-f1a4-47e4-901f-beae09161fb2 +Biospecimen,HTA7_969_1,,HTA7_969,Initial Diagnosis,11211,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,11211,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709108,85043ad6-55a8-492e-b7f0-7483a81c9cf8 +Biospecimen,HTA7_969_2,,HTA7_969_1,Initial Diagnosis,11211,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,11211,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709109,8dcd8547-79a4-4e44-932c-c216b415f412 +Biospecimen,HTA7_969_3,,HTA7_969_1,Initial Diagnosis,11211,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,11211,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709110,56e257e9-785b-499b-a640-f95130bfbb5c +Biospecimen,HTA7_969_4,,HTA7_969_1,Initial Diagnosis,11211,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,11211,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709111,910c0b94-0924-41c2-ac90-ab3d31a8a4be +Biospecimen,HTA7_969_5,,HTA7_969_1,Initial Diagnosis,11211,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,11211,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709112,993db200-e4fe-4b80-af00-0920914f05f5 +Biospecimen,HTA7_970_1,,HTA7_970,Initial Diagnosis,14687,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,14687,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709113,ba9cdd39-0f63-4e5d-ad50-677156b48dd6 +Biospecimen,HTA7_970_2,,HTA7_970_1,Initial Diagnosis,14687,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,14687,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709114,6859763f-15be-4681-996a-c10907ae93de +Biospecimen,HTA7_970_3,,HTA7_970_1,Initial Diagnosis,14687,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,14687,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709115,d88956cc-8606-4abf-a8ce-b71cbfa331d9 +Biospecimen,HTA7_970_4,,HTA7_970_1,Initial Diagnosis,14687,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,14687,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709116,1239bd5b-aa22-44db-978d-bb56655321f8 +Biospecimen,HTA7_970_5,,HTA7_970_1,Initial Diagnosis,14687,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,14687,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709117,324976df-8797-42e0-8863-854102db53c0 +Biospecimen,HTA7_971_1,,HTA7_971,Initial Diagnosis,21881,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,21881,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectosigmoid junction,,Not Reported,,,primary,syn26709118,951bd886-4622-4c61-8a5d-f637d0d1a473 +Biospecimen,HTA7_971_2,,HTA7_971_1,Initial Diagnosis,21881,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,21881,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectosigmoid junction,,Not Reported,,,primary,syn26709119,03d6a5d7-64a8-46c6-ab8f-bb3bb5c8eb03 +Biospecimen,HTA7_971_3,,HTA7_971_1,Initial Diagnosis,21881,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,21881,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectosigmoid junction,,Not Reported,,,primary,syn26709120,2684d765-0394-4687-a0d7-58385fedfd57 +Biospecimen,HTA7_971_4,,HTA7_971_1,Initial Diagnosis,21881,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,21881,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectosigmoid junction,,Not Reported,,,primary,syn26709121,8a90a9a9-14e9-41a9-be09-adeae315ce3b +Biospecimen,HTA7_971_5,,HTA7_971_1,Initial Diagnosis,21881,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,21881,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectosigmoid junction,,Not Reported,,,primary,syn26709122,99e7f73c-c35e-41fa-a0c2-25e3601ca66d +Biospecimen,HTA7_972_1,,HTA7_972,Initial Diagnosis,14585,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,14588,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26546885,91045527-444b-48fc-8d72-b9c13077f247 +Biospecimen,HTA7_972_2,,HTA7_972_1,Initial Diagnosis,14585,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,14588,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,16147,,Sigmoid colon,,Not Reported,,,primary,syn26546886,9867c81b-bd95-4d83-9144-caefbd46ceb1 +Biospecimen,HTA7_972_3,,HTA7_972_1,Initial Diagnosis,14585,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,14588,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,16147,,Sigmoid colon,,Not Reported,,,primary,syn26561921,53e88f94-8d65-4331-9d5c-99e703ce5c43 +Biospecimen,HTA7_972_4,,HTA7_972_1,Initial Diagnosis,14585,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,14588,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,16147,,Sigmoid colon,,Not Reported,,,primary,syn26561937,4133f3e6-5072-427c-8b0e-57150731cc2b +Biospecimen,HTA7_972_5,,HTA7_972_1,Initial Diagnosis,14585,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,14588,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,16147,,Sigmoid colon,,Not Reported,,,primary,syn26709123,8262722b-8e54-41c2-bbed-033baa3e9525 +Biospecimen,HTA7_972_6,,HTA7_972_1,Initial Diagnosis,14585,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,14588,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,16147,,Sigmoid colon,,Not Reported,,,primary,syn26709124,490bd949-da93-4bf9-a686-a1191aca2732 +Biospecimen,HTA7_972_7,,HTA7_972_1,Initial Diagnosis,14585,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,14588,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,16147,,Sigmoid colon,,Not Reported,,,primary,syn26709125,02d0e03a-93fd-4916-9c1f-2a2774ce4396 +Biospecimen,HTA7_972_8,,HTA7_972_1,Initial Diagnosis,14585,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,14588,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,16147,,Sigmoid colon,,Not Reported,,,primary,syn26709126,a87aa4cb-4d7b-40a7-81e8-b47652509f74 +Biospecimen,HTA7_973_1,,HTA7_973,Initial Diagnosis,25652,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,25652,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Ascending colon,,Not Reported,,,primary,syn26709127,2f191a88-9348-4c54-bcd3-7ac4c16f2ee7 +Biospecimen,HTA7_973_2,,HTA7_973_1,Initial Diagnosis,25652,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,25652,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Ascending colon,,Not Reported,,,primary,syn26709128,95742cdb-451a-45e7-a421-81ced33d0106 +Biospecimen,HTA7_973_3,,HTA7_973_1,Initial Diagnosis,25652,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,25652,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Ascending colon,,Not Reported,,,primary,syn26709129,799fe22e-1bcd-42bd-9164-de4333978ff2 +Biospecimen,HTA7_973_4,,HTA7_973_1,Initial Diagnosis,25652,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,25652,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Ascending colon,,Not Reported,,,primary,syn26709130,5d24ccd9-b88a-4aee-a2bf-696ac3fb9040 +Biospecimen,HTA7_973_5,,HTA7_973_1,Initial Diagnosis,25652,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,25652,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Ascending colon,,Not Reported,,,primary,syn26709131,e360a205-c66c-4cfa-ae5d-07d05a6eb477 +Biospecimen,HTA7_974_1,,HTA7_974,Initial Diagnosis,24688,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,24688,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709132,87b33ded-ff3f-401c-ab06-c969157265e4 +Biospecimen,HTA7_974_2,,HTA7_974_1,Initial Diagnosis,24688,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,24688,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709133,de5f2982-7306-4b1d-8cc5-ec35dae5f2d1 +Biospecimen,HTA7_974_3,,HTA7_974_1,Initial Diagnosis,24688,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,24688,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709134,f8bc326f-bf5e-45ea-bdf7-9a7ce87bfbfd +Biospecimen,HTA7_974_4,,HTA7_974_1,Initial Diagnosis,24688,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,24688,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709135,4516cde1-31d1-4d58-bed3-c86685d7e3cf +Biospecimen,HTA7_974_5,,HTA7_974_1,Initial Diagnosis,24688,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,24688,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709136,e8fea611-a18b-455d-8651-9d065791428c +Biospecimen,HTA7_975_1,,HTA7_975,Initial Diagnosis,24262,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,24262,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709137,eb84fbc4-d4a9-4361-af4e-ebf06fe6a233 +Biospecimen,HTA7_975_2,,HTA7_975_1,Initial Diagnosis,24262,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,24262,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709138,ea2d2c20-9086-4f7a-b8bd-b5ab9efdb673 +Biospecimen,HTA7_975_3,,HTA7_975_1,Initial Diagnosis,24262,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,24262,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709139,998cb8d5-d730-4879-9f6e-f8bcb9ef47bf +Biospecimen,HTA7_975_4,,HTA7_975_1,Initial Diagnosis,24262,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,24262,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709140,a621bad6-7084-4530-9d34-490022c2b91a +Biospecimen,HTA7_975_5,,HTA7_975_1,Initial Diagnosis,24262,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,24262,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709141,ec2c0354-795f-46a9-84a5-57bd740b4d50 +Biospecimen,HTA7_976_1,,HTA7_976,Initial Diagnosis,22868,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,22868,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709142,718e5c9c-7d6e-4b81-883d-1f631d2e0edb +Biospecimen,HTA7_976_2,,HTA7_976_1,Initial Diagnosis,22868,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,22868,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709143,11fb6ec4-f711-491e-b566-92cd92421692 +Biospecimen,HTA7_976_3,,HTA7_976_1,Initial Diagnosis,22868,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,22868,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709144,1d31e7fe-eb21-427a-868b-c2da0c27721f +Biospecimen,HTA7_976_4,,HTA7_976_1,Initial Diagnosis,22868,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,22868,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709145,4283a1b3-ebea-43e1-aa52-187aa452ae2f +Biospecimen,HTA7_976_5,,HTA7_976_1,Initial Diagnosis,22868,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,22868,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709146,ca395502-26c4-4089-b4a6-985ba823677a +Biospecimen,HTA7_977_1,,HTA7_977,Initial Diagnosis,12836,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,12836,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Descending colon,,Not Reported,,,primary,syn26709147,a78a25ef-7c82-4cfd-8a4f-893c25a0b903 +Biospecimen,HTA7_977_2,,HTA7_977_1,Initial Diagnosis,12836,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,12836,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Descending colon,,Not Reported,,,primary,syn26709148,4692da2a-71ce-4fc7-887d-abe551bfb3ad +Biospecimen,HTA7_977_4,,HTA7_977_1,Initial Diagnosis,12836,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,12836,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Descending colon,,Not Reported,,,primary,syn26709149,b0d66357-0f33-4165-8028-f0f52b5bb1d3 +Biospecimen,HTA7_977_5,,HTA7_977_1,Initial Diagnosis,12836,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,12836,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Descending colon,,Not Reported,,,primary,syn26709150,ca10d8ea-8f1f-4f98-a5ba-4df03ef0148a +Biospecimen,HTA7_978_1,,HTA7_978,Initial Diagnosis,22195,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,22195,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709151,ea7f6298-6c70-4193-9070-9a11420efaba +Biospecimen,HTA7_978_2,,HTA7_978_1,Initial Diagnosis,22195,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,22195,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709152,14c047b6-f145-4d4d-89a5-9b036ec42ffc +Biospecimen,HTA7_978_3,,HTA7_978_1,Initial Diagnosis,22195,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,22195,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709153,d7f295f0-f177-48e9-987a-2e39e606feed +Biospecimen,HTA7_978_4,,HTA7_978_1,Initial Diagnosis,22195,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,22195,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709154,03bb77a0-67e7-4879-a686-2c26ebdcdefc +Biospecimen,HTA7_978_5,,HTA7_978_1,Initial Diagnosis,22195,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,22195,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709155,3ca1f8db-fc6f-4cf3-8bd9-51bba1dda848 +Biospecimen,HTA7_979_1,,HTA7_979,Initial Diagnosis,19637,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,19637,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709156,f3f434fb-1e09-442e-9d53-fb8c0d6694eb +Biospecimen,HTA7_979_3,,HTA7_979_1,Initial Diagnosis,19637,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,19637,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709157,ded01b8f-94ba-4a56-b5d0-2a55c1b4b9d2 +Biospecimen,HTA7_979_4,,HTA7_979_1,Initial Diagnosis,19637,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,19637,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709158,1b9f308b-fbbb-494a-9e40-e63437172265 +Biospecimen,HTA7_979_5,,HTA7_979_1,Initial Diagnosis,19637,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,19637,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709159,9a4a52ca-94bd-41b9-83f0-38806815185d +Biospecimen,HTA7_980_1,,HTA7_980,Initial Diagnosis,19637,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,19637,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709160,45b61f72-ba30-40b3-aa34-25ad2c16febe +Biospecimen,HTA7_980_2,,HTA7_980_1,Initial Diagnosis,19637,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,19637,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709161,6b99cb06-a150-45f6-b0cc-c15159b9ede9 +Biospecimen,HTA7_980_3,,HTA7_980_1,Initial Diagnosis,19637,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,19637,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709162,a684ba2b-6992-4719-b24c-6327fe019a0a +Biospecimen,HTA7_980_4,,HTA7_980_1,Initial Diagnosis,19637,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,19637,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709163,9de96944-0dda-496a-a42b-80b7cd5d8286 +Biospecimen,HTA7_980_5,,HTA7_980_1,Initial Diagnosis,19637,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,19637,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709164,e76111ec-4026-4ff7-9d90-22ca5adb293b +Biospecimen,HTA7_981_1,,HTA7_981,Initial Diagnosis,30807,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,30807,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709165,30ec5959-2c2a-4605-b1c7-eb6c201235d2 +Biospecimen,HTA7_981_2,,HTA7_981_1,Initial Diagnosis,30807,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,30807,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709166,13fcc051-5f69-4ed3-9c29-0a1d93d75c60 +Biospecimen,HTA7_981_4,,HTA7_981_1,Initial Diagnosis,30807,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,30807,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709167,76973857-962b-4679-8397-f575856ac171 +Biospecimen,HTA7_981_5,,HTA7_981_1,Initial Diagnosis,30807,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,30807,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709168,01ce956a-5a78-4e08-8b72-1e6581110126 +Biospecimen,HTA7_982_1,,HTA7_982,Recurrence,14460,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,14460,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, with Mucinous Features",,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Reported,,,Recurrent,syn26546889,aaa7f6b5-76ec-4473-a408-b5b9c9ccfc8d +Biospecimen,HTA7_982_2,,HTA7_982_1,Recurrence,14460,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,14460,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,"Adenocarcinoma, with Mucinous Features",,,,Formalin fixed paraffin embedded - FFPE,,,15955,,Cecum,,Not Reported,,,Recurrent,syn26546890,9d81cd09-9696-49c4-b6f7-171224588305 +Biospecimen,HTA7_982_3,,HTA7_982_1,Recurrence,14460,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,14460,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,"Adenocarcinoma, with Mucinous Features",,,,Formalin fixed paraffin embedded - FFPE,,,15955,,Cecum,,Not Reported,,,Recurrent,syn26561923,1a06a940-67e1-4d03-987d-68e542b457d5 +Biospecimen,HTA7_982_4,,HTA7_982_1,Recurrence,14460,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,14460,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,"Adenocarcinoma, with Mucinous Features",,,,Formalin fixed paraffin embedded - FFPE,,,15955,,Cecum,,Not Reported,,,Recurrent,syn26561939,ba89b123-b06a-4a23-88f0-79ed0138517d +Biospecimen,HTA7_982_5,,HTA7_982_1,Recurrence,14460,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,14460,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, with Mucinous Features",,,,Formalin fixed paraffin embedded - FFPE,,,15955,,Cecum,,Not Reported,,,Recurrent,syn26709169,95764170-882e-4aae-bddf-36a4a67968a5 +Biospecimen,HTA7_982_6,,HTA7_982_1,Recurrence,14460,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,14460,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, with Mucinous Features",,,,Formalin fixed paraffin embedded - FFPE,,,15955,,Cecum,,Not Reported,,,Recurrent,syn26709170,b7c13e6b-8eb1-4bf2-ab5a-2e5c41939ffa +Biospecimen,HTA7_982_7,,HTA7_982_1,Recurrence,14460,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,14460,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, with Mucinous Features",,,,Formalin fixed paraffin embedded - FFPE,,,15955,,Cecum,,Not Reported,,,Recurrent,syn26709171,e0291f2f-da22-41e9-a576-929a7d142308 +Biospecimen,HTA7_982_8,,HTA7_982_1,Recurrence,14460,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,14460,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, with Mucinous Features",,,,Formalin fixed paraffin embedded - FFPE,,,15955,,Cecum,,Not Reported,,,Recurrent,syn26709172,c42e25b5-ce58-4efb-b58f-eef3a2325955 +Biospecimen,HTA7_983_1,,HTA7_983,Initial Diagnosis,17403,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,17403,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709173,14771875-4a6b-41d6-b0af-26f41ce0f7a9 +Biospecimen,HTA7_983_2,,HTA7_983_1,Initial Diagnosis,17403,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,17403,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709174,064c795c-8489-4a1d-be74-dd93c7bf3a72 +Biospecimen,HTA7_983_4,,HTA7_983_1,Initial Diagnosis,17403,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,17403,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709175,8141cc87-0283-4246-b9e9-acf6b3f8d173 +Biospecimen,HTA7_983_5,,HTA7_983_1,Initial Diagnosis,17403,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,17403,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709176,7777b2c3-dc00-45e3-9489-58797098f390 +Biospecimen,HTA7_984_1,,HTA7_984,Initial Diagnosis,17761,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,17761,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709177,94069249-432e-4217-b2f5-5d9d04cd5835 +Biospecimen,HTA7_984_2,,HTA7_984_1,Initial Diagnosis,17761,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,17761,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709178,1e4e0548-1fb5-46b6-b313-432e5a911a81 +Biospecimen,HTA7_984_4,,HTA7_984_1,Initial Diagnosis,17761,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,17761,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709179,33c38518-9b77-4e13-9e5d-2f3b1af211dd +Biospecimen,HTA7_984_5,,HTA7_984_1,Initial Diagnosis,17761,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,17761,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709180,140a9369-2cd7-4185-865d-7e64e59be654 +Biospecimen,HTA7_985_1,,HTA7_985,Initial Diagnosis,21074,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,21074,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709181,54ffcc6f-1f7c-4afd-a935-644dbcdd04ca +Biospecimen,HTA7_985_4,,HTA7_985_1,Initial Diagnosis,21074,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,21074,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709182,9f1ae91d-d282-40e1-b556-d9804f87215c +Biospecimen,HTA7_985_5,,HTA7_985_1,Initial Diagnosis,21074,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,21074,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709183,814c260a-a901-4a28-bfc1-9feda3dc7743 +Biospecimen,HTA7_986_1,,HTA7_986,Initial Diagnosis,17308,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,17308,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,Mucinous adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709184,aee8f7c3-f86c-4c0a-9ec7-528439fea5dd +Biospecimen,HTA7_986_2,,HTA7_986_1,Initial Diagnosis,17308,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,17308,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Mucinous adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709185,6628875f-4cc2-43df-b9c4-d7e5179e9df0 +Biospecimen,HTA7_986_3,,HTA7_986_1,Initial Diagnosis,17308,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,17308,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Mucinous adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709186,e2bebf64-bb18-4074-ab92-3d0ee5014447 +Biospecimen,HTA7_986_4,,HTA7_986_1,Initial Diagnosis,17308,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,17308,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Mucinous adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709187,04d9e288-3e08-472a-b8a6-3fce945e7de8 +Biospecimen,HTA7_986_5,,HTA7_986_1,Initial Diagnosis,17308,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,17308,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Mucinous adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709188,8ca40e58-2fcd-4967-8f30-fb28dd8fd94c +Biospecimen,HTA7_987_1,,HTA7_987,Metastasis,27589,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,27589,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Metastatic Adenocarcinoma, with Neuroendocrine Features",,,,Formalin fixed paraffin embedded - FFPE,,,,,Not Reported,,Not Reported,,,Metastatic,syn26709189,3befc91f-7284-4492-b3e2-aa25a0a0f8d2 +Biospecimen,HTA7_987_2,,HTA7_987_1,Metastasis,27589,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,27589,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Metastatic Adenocarcinoma, with Neuroendocrine Features",,,,Formalin fixed paraffin embedded - FFPE,,,,,Not Reported,,Not Reported,,,Metastatic,syn26709190,ecce6f2f-be51-45bb-a7d9-8ad16a8c8fc7 +Biospecimen,HTA7_987_4,,HTA7_987_1,Metastasis,27589,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,27589,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Metastatic Adenocarcinoma, with Neuroendocrine Features",,,,Formalin fixed paraffin embedded - FFPE,,,,,Not Reported,,Not Reported,,,Metastatic,syn26709191,cc153da2-8e92-46a7-ac27-cbf4ce0b823f +Biospecimen,HTA7_987_5,,HTA7_987_1,Metastasis,27589,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,27589,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Metastatic Adenocarcinoma, with Neuroendocrine Features",,,,Formalin fixed paraffin embedded - FFPE,,,,,Not Reported,,Not Reported,,,Metastatic,syn26709192,e49df2eb-42d4-4c3a-b75c-9e1c3ac4c0ef +Biospecimen,HTA7_988_1,,HTA7_988,Initial Diagnosis,13964,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,13964,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709193,0fe113a5-c95b-45b3-9dbe-e025405d5b29 +Biospecimen,HTA7_988_4,,HTA7_988_1,Initial Diagnosis,13964,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,13964,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709194,d51a26ac-5df1-43ba-9ab6-845e1ab78478 +Biospecimen,HTA7_988_5,,HTA7_988_1,Initial Diagnosis,13964,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,13964,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709195,fa1b2afb-97a8-4da9-aca9-4c73b6f8fcec +Biospecimen,HTA7_989_1,,HTA7_989,Initial Diagnosis,24559,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,24559,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Transverse colon,,Not Reported,,,primary,syn26546873,a90c27b3-bf5d-4945-9a86-be338dbfdeef +Biospecimen,HTA7_989_2,,HTA7_989_1,Initial Diagnosis,24559,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,24559,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,26013,,Transverse colon,,Not Reported,,,primary,syn26546874,28ffb66e-a458-47e5-8916-2d12984d5f8c +Biospecimen,HTA7_989_3,,HTA7_989_1,Initial Diagnosis,24559,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,24559,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,26013,,Transverse colon,,Not Reported,,,primary,syn26561915,448dba09-2121-4c41-b6b9-dc6349610053 +Biospecimen,HTA7_989_4,,HTA7_989_1,Initial Diagnosis,24559,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,24559,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Section Analyte,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,26013,,Transverse colon,,Not Reported,,,primary,syn26561931,c8d3e9e1-af09-4690-a4b9-4ed65106320d +Biospecimen,HTA7_989_5,,HTA7_989_1,Initial Diagnosis,24559,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,24559,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,26013,,Transverse colon,,Not Reported,,,primary,syn26709196,18a5f350-aa5e-4a37-89dc-eeb725f9a9f8 +Biospecimen,HTA7_989_6,,HTA7_989_1,Initial Diagnosis,24559,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,24559,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,26013,,Transverse colon,,Not Reported,,,primary,syn26709197,97adb793-86de-443f-8be3-b6c0d8ce430a +Biospecimen,HTA7_989_7,,HTA7_989_1,Initial Diagnosis,24559,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,24559,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,26013,,Transverse colon,,Not Reported,,,primary,syn26709198,52623cda-cc8b-4add-b878-3d2f0a3e100f +Biospecimen,HTA7_989_8,,HTA7_989_1,Initial Diagnosis,24559,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,24559,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,26013,,Transverse colon,,Not Reported,,,primary,syn26709199,22f7147a-53ec-471e-86bf-08a58aebd164 +Biospecimen,HTA7_990_1,,HTA7_990,Initial Diagnosis,24360,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,24360,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Transverse colon,,Not Reported,,,primary,syn26709200,a20cfdd4-b2e4-493c-9681-2713772b1a9f +Biospecimen,HTA7_990_2,,HTA7_990_1,Initial Diagnosis,24360,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,24360,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Transverse colon,,Not Reported,,,primary,syn26709201,ea97e1f1-91b4-4ac6-b5d8-e88e137c166e +Biospecimen,HTA7_990_3,,HTA7_990_1,Initial Diagnosis,24360,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,24360,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Transverse colon,,Not Reported,,,primary,syn26709202,0973d19d-70f0-4307-8d66-ea84e328ec45 +Biospecimen,HTA7_990_4,,HTA7_990_1,Initial Diagnosis,24360,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,24360,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Transverse colon,,Not Reported,,,primary,syn26709203,d4af6e3a-57e2-4d99-bcba-ce9047f20031 +Biospecimen,HTA7_990_5,,HTA7_990_1,Initial Diagnosis,24360,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,24360,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Transverse colon,,Not Reported,,,primary,syn26709204,82b380b9-6968-4743-bffa-4f376aef1dba +Biospecimen,HTA7_991_1,,HTA7_991,Initial Diagnosis,25549,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,25549,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709205,015386a7-4e8e-4d2e-905a-35e3742d5ffb +Biospecimen,HTA7_991_2,,HTA7_991_1,Initial Diagnosis,25549,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,25549,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709206,4b2751cf-e32c-4874-9e47-deeabc210106 +Biospecimen,HTA7_991_3,,HTA7_991_1,Initial Diagnosis,25549,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,25549,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709207,7d44be11-37d1-4bc2-9d70-ff421050fac1 +Biospecimen,HTA7_991_4,,HTA7_991_1,Initial Diagnosis,25549,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,25549,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709208,48834ee1-58d1-450a-a5b9-2f5ea0ab5683 +Biospecimen,HTA7_991_5,,HTA7_991_1,Initial Diagnosis,25549,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,25549,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709209,821f71d0-7378-4d08-bcdd-b1c5d87b8bfa +Biospecimen,HTA7_992_1,,HTA7_992,Initial Diagnosis,18550,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,18550,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709210,019b316a-1fbc-4971-aaa7-08372877bc8d +Biospecimen,HTA7_992_2,,HTA7_992_1,Initial Diagnosis,18550,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,18550,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709211,de37f0eb-46d8-4e60-8283-cfb00f123da9 +Biospecimen,HTA7_992_3,,HTA7_992_1,Initial Diagnosis,18550,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,18550,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709212,d07cf87e-7fa6-4a27-8d8b-c046f802d90b +Biospecimen,HTA7_992_4,,HTA7_992_1,Initial Diagnosis,18550,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,18550,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709213,68630b55-4663-4873-9489-6c5bac55e5a2 +Biospecimen,HTA7_992_5,,HTA7_992_1,Initial Diagnosis,18550,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,18550,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Reported,,,primary,syn26709214,03129ab8-b277-42fc-8da2-b97c00bac5ad +Biospecimen,HTA7_993_1,,HTA7_993,Initial Diagnosis,16774,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,16774,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,Mucinous adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Reported,,,primary,syn26709215,fbd303a8-ad13-43ff-9d03-89a3fbac1f88 +Biospecimen,HTA7_993_2,,HTA7_993_1,Initial Diagnosis,16774,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,16774,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Mucinous adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Reported,,,primary,syn26709216,b60f9de5-e1ac-45f9-86ca-b5cdf7cec95d +Biospecimen,HTA7_993_3,,HTA7_993_1,Initial Diagnosis,16774,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,16774,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Mucinous adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Reported,,,primary,syn26709217,619348f5-5175-40cb-a2d7-41ddbed2eb4d +Biospecimen,HTA7_993_4,,HTA7_993_1,Initial Diagnosis,16774,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,16774,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Mucinous adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Reported,,,primary,syn26709218,9fbe0011-ca20-4e26-a031-61c085445d22 +Biospecimen,HTA7_993_5,,HTA7_993_1,Initial Diagnosis,16774,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,16774,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Mucinous adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Reported,,,primary,syn26709219,72e96c31-d0aa-47c6-bd18-dfd091b33e51 +Biospecimen,HTA7_994_1,,HTA7_994,Initial Diagnosis,30791,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,30791,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709220,b7270951-a618-4a60-be6c-10e34c9803f2 +Biospecimen,HTA7_994_2,,HTA7_994_1,Initial Diagnosis,30791,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,30791,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709221,9ee00ecb-c79d-4fbd-88b8-48a598e665b0 +Biospecimen,HTA7_994_3,,HTA7_994_1,Initial Diagnosis,30791,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,30791,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709222,4c1bc6cb-eea2-46ea-bf59-33183f4e7b1e +Biospecimen,HTA7_994_4,,HTA7_994_1,Initial Diagnosis,30791,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,30791,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709223,db22a806-682a-44bf-88a4-14694d225532 +Biospecimen,HTA7_994_5,,HTA7_994_1,Initial Diagnosis,30791,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,30791,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709224,7f96d0dd-394c-42b2-8329-6800e0298d20 +Biospecimen,HTA7_995_1,,HTA7_995,Initial Diagnosis,9634,,Tissue Biospecimen Type,Surgical Resection,Formalin,Ambient temperature,9634,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,Tissue Block Analyte,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709225,bf0e4b26-37ea-441e-954d-174ee70508f3 +Biospecimen,HTA7_995_2,,HTA7_995_1,Initial Diagnosis,9634,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,9634,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709226,2b80e287-1d3e-4020-97b2-94408c721d1c +Biospecimen,HTA7_995_4,,HTA7_995_1,Initial Diagnosis,9634,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,9634,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709227,2032ec29-d4be-4aa2-a8e3-df914d977124 +Biospecimen,HTA7_995_5,,HTA7_995_1,Initial Diagnosis,9634,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,9634,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Reported,,,primary,syn26709228,ee911770-8b96-423c-a87a-e04077dcd2cb +Biospecimen,HTA7_904_6,,HTA7_904_1,Initial Diagnosis,20951,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,23791,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Applicable,,,Not Otherwise Specified,syn34644923,9fb77142-9073-48f3-9d39-514f672a5869 +Biospecimen,HTA7_906_6,,HTA7_906_1,Initial Diagnosis,26014,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,28772,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Ascending colon,,Not Applicable,,,Not Otherwise Specified,syn34644926,a4df61a3-2e9c-4a50-93a3-e0b138b11ce6 +Biospecimen,HTA7_908_6,,HTA7_908_1,Initial Diagnosis,21072,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,23788,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Ascending colon,,Not Applicable,,,Not Otherwise Specified,syn34644927,30acd259-0f23-4dd7-a0f9-200db52337cb +Biospecimen,HTA7_909_6,,HTA7_909_1,Initial Diagnosis,11977,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,14682,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Applicable,,,Not Otherwise Specified,syn34644928,41a686ee-eb2c-4ed3-957c-6978d9da69e7 +Biospecimen,HTA7_911_6,,HTA7_911_1,Initial Diagnosis,9911,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,12562,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Applicable,,,Not Otherwise Specified,syn34644930,7f7743e6-36a3-4bf5-81e9-dbac2914f669 +Biospecimen,HTA7_914_6,,HTA7_914_1,Initial Diagnosis,27248,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,29870,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Applicable,,,Not Otherwise Specified,syn34644932,50514374-80d9-4122-884c-1c8188d0c7a1 +Biospecimen,HTA7_917_6,,HTA7_917_1,Initial Diagnosis,24781,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,27369,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Ascending colon,,Not Applicable,,,Not Otherwise Specified,syn34644933,ca6515bb-f38c-4025-a27a-bb9a76bb5e77 +Biospecimen,HTA7_919_6,,HTA7_919_1,Initial Diagnosis,23314,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,25882,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Descending colon,,Not Applicable,,,Not Otherwise Specified,syn34644934,2b384b4d-6ce2-4fcf-9df7-113c7266cd33 +Biospecimen,HTA7_920_9,,HTA7_920_1,Initial Diagnosis,21534,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,24026,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Mucinous adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Applicable,,,Not Otherwise Specified,syn34644936,5d485b34-60bc-48f3-b29b-eca2e3832985 +Biospecimen,HTA7_922_9,,HTA7_922_1,Initial Diagnosis,22739,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,25201,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Transverse colon,,Not Applicable,,,Not Otherwise Specified,syn34644937,4a161315-f4b7-49ed-bdb3-8e47cfb2c670 +Biospecimen,HTA7_923_6,,HTA7_923_1,Initial Diagnosis,20236,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,22671,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Applicable,,,Not Otherwise Specified,syn34644938,a05b9a18-4a16-4aee-a6e5-63c6826c34e2 +Biospecimen,HTA7_924_6,,HTA7_924_1,Initial Diagnosis,36114,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,38522,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Applicable,,,Not Otherwise Specified,syn34644940,f7401190-3105-428b-b10f-512002662f4a +Biospecimen,HTA7_925_9,,HTA7_925_1,Initial Diagnosis,22073,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,24491,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Mucinous adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Applicable,,,Not Otherwise Specified,syn34644941,3285585f-2ce6-4457-955e-c0ce6c4ff928 +Biospecimen,HTA7_926_8,,HTA7_926_1,Initial Diagnosis,25222,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,27645,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Mucinous adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Applicable,,,Not Otherwise Specified,syn34644942,20dc534b-bb02-4d13-9e9f-a9ad8bd303c8 +Biospecimen,HTA7_927_9,,HTA7_927_1,Initial Diagnosis,14776,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,17166,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Applicable,,,Not Otherwise Specified,syn34644944,5fd74061-a70c-47a3-b559-ccc8122e8776 +Biospecimen,HTA7_928_6,,HTA7_928_1,Initial Diagnosis,25737,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,28107,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Mucinous adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Applicable,,,Not Otherwise Specified,syn34644946,69f62f75-1b89-4917-b118-2905854a685d +Biospecimen,HTA7_931_9,,HTA7_931_1,Initial Diagnosis,9432,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,11792,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Transverse colon,,Not Applicable,,,Not Otherwise Specified,syn34644948,d7cfd0be-dcc8-4630-aadd-da965aff04d9 +Biospecimen,HTA7_932_9,,HTA7_932_1,Initial Diagnosis,21405,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,23757,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Applicable,,,Not Otherwise Specified,syn34644949,a0491cda-8e1c-4659-9af5-18a88c279755 +Biospecimen,HTA7_933_6,,HTA7_933_1,Initial Diagnosis,17563,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,19905,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Mucinous adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Applicable,,,Not Otherwise Specified,syn34644950,d745a03d-dd35-42e4-922d-b5b235909605 +Biospecimen,HTA7_934_9,,HTA7_934_1,Initial Diagnosis,20492,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,22830,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectosigmoid junction,,Not Applicable,,,Not Otherwise Specified,syn34644952,79815a00-6f5c-4228-b48c-b02cfec57939 +Biospecimen,HTA7_936_6,,HTA7_936_1,Initial Diagnosis,17772,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,20107,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Applicable,,,Not Otherwise Specified,syn34644953,51d73be5-1634-4c15-ad89-e3f266cf8d2f +Biospecimen,HTA7_938_6,,HTA7_938_1,Initial Diagnosis,23749,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,26055,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Applicable,,,Not Otherwise Specified,syn34644955,0919989b-e80b-4dca-b0c8-599cb94db304 +Biospecimen,HTA7_940_9,,HTA7_940_1,Initial Diagnosis,25777,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,28031,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Appendix,,Not Applicable,,,Not Otherwise Specified,syn34644957,b856c9b6-901d-496b-b333-9add3698ab07 +Biospecimen,HTA7_941_6,,HTA7_941_1,Initial Diagnosis,25976,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,28265,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Applicable,,,Not Otherwise Specified,syn34644960,b189fe09-fe5b-4e7f-b400-25e0b5cddc77 +Biospecimen,HTA7_943_6,,HTA7_943_1,Initial Diagnosis,31261,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,33543,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Ascending colon,,Not Applicable,,,Not Otherwise Specified,syn34644961,e9b99ed1-9f85-4a4a-b275-8032db5450a0 +Biospecimen,HTA7_945_6,,HTA7_945_1,Initial Diagnosis,24552,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,26822,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Applicable,,,Not Otherwise Specified,syn34644964,f3a3baa3-dfef-4db4-a93f-9942fc8723d1 +Biospecimen,HTA7_947_9,,HTA7_947_1,Initial Diagnosis,21281,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,23524,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectosigmoid junction,,Not Applicable,,,Not Otherwise Specified,syn34644965,f9d5beb4-a672-4329-a8ff-7337b7b538dd +Biospecimen,HTA7_954_6,,HTA7_954_1,Initial Diagnosis,23587,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,25772,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Applicable,,,Not Otherwise Specified,syn34644966,0817a273-ee3c-4c0f-9feb-c02682e9b270 +Biospecimen,HTA7_957_6,,HTA7_957_1,Initial Diagnosis,28264,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,30436,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectosigmoid junction,,Not Applicable,,,Not Otherwise Specified,syn34644967,ebe118d4-992e-4641-8b8f-cdf3de5c97eb +Biospecimen,HTA7_960_6,,HTA7_960_1,Initial Diagnosis,21781,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,23934,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Applicable,,,Not Otherwise Specified,syn34644969,eecd0b70-235e-4b49-bab0-f914637ec69b +Biospecimen,HTA7_963_8,,HTA7_963_1,Initial Diagnosis,23515,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,25638,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Mucinous adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Applicable,,,Not Otherwise Specified,syn34644970,a500daa9-faf4-4300-a115-f8acf58f7824 +Biospecimen,HTA7_965_9,,HTA7_965_1,Initial Diagnosis,29512,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,31626,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Applicable,,,Not Otherwise Specified,syn34644971,b2705744-2ce8-4582-9386-d7bd3ea4c0b2 +Biospecimen,HTA7_966_7,,HTA7_966_1,Initial Diagnosis,26767,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,28867,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Applicable,,,Not Otherwise Specified,syn34644973,40c9962b-61e7-4eba-80ab-8bd00561181a +Biospecimen,HTA7_968_6,,HTA7_968_1,Initial Diagnosis,17722,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,19759,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Applicable,,,Not Otherwise Specified,syn34644974,6eea63fc-7f07-4258-afd2-f448fd53fca9 +Biospecimen,HTA7_972_9,,HTA7_972_1,Initial Diagnosis,14588,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,16667,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Applicable,,,Not Otherwise Specified,syn34644975,aa518e24-8505-457f-8107-fdfe0190d574 +Biospecimen,HTA7_982_9,,HTA7_982_1,Initial Diagnosis,14459,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,16417,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Mucinous adenocarcinoma,,,,Formalin fixed paraffin embedded - FFPE,,,,,Cecum,,Not Applicable,,,Not Otherwise Specified,syn34644977,181eee6c-ba46-4a6e-bb6b-bd38e976e56c +Biospecimen,HTA7_983_6,,HTA7_983_1,Initial Diagnosis,17402,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,19356,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Applicable,,,Not Otherwise Specified,syn34644980,387c4a1e-efa7-44ae-85bc-3da124fe7bc8 +Biospecimen,HTA7_985_6,,HTA7_985_1,Initial Diagnosis,21073,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,23025,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Sigmoid colon,,Not Applicable,,,Not Otherwise Specified,syn34644981,4f10e158-71ee-4e20-93a5-b5dc96f31528 +Biospecimen,HTA7_989_9,,HTA7_989_1,Initial Diagnosis,24558,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,26154,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Transverse colon,,Not Applicable,,,Not Otherwise Specified,syn34644982,a1701c47-3032-492b-a106-1506d7c34cdb +Biospecimen,HTA7_994_6,,HTA7_994_1,Initial Diagnosis,30791,,Tissue Biospecimen Type,Surgical Resection,Formalin,Refrigerated at 4 degrees,32668,dx.doi.org/10.17504/protocols.io.67uhhnw,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"Adenocarcinoma, NOS",,,,Formalin fixed paraffin embedded - FFPE,,,,,Rectum NOS,,Not Applicable,,,Not Otherwise Specified,syn34644984,44bded98-50c6-4e4c-bf02-00d78c91127e diff --git a/test-manifests/synapse_storage_manifest_dataflow.csv b/test-manifests/synapse_storage_manifest_dataflow.csv new file mode 100644 index 0000000..d793702 --- /dev/null +++ b/test-manifests/synapse_storage_manifest_dataflow.csv @@ -0,0 +1,536 @@ +"Component","Uuid","contributor","data_portal","dataset","dataset_name","embargo","entityId","num_items","release_scheduled","released","standard_compliance" +"DataFlow","7202834a-6cf4-4a4b-84ae-308433f1bdf4","HTAN HTAPP",FALSE,"ImagingLevel2","merfish_level_1","2022-12-01","syn23585912","Not Applicable","2022-12-25",TRUE,TRUE +"DataFlow","385dac37-e0d3-43d6-b50a-ba336de827c9","HTAN HTAPP",FALSE,"ImagingLevel2","merfish_level_2","2022-12-01","syn23585913","Not Applicable","2022-12-25",TRUE,TRUE +"DataFlow","f6d5ee40-1a37-4c83-ba2a-5b92048a48e9","HTAN HTAPP",FALSE,"OtherAssay","merfish_level_3","2022-12-01","syn23585914","Not Applicable","2022-12-25",TRUE,TRUE +"DataFlow","6b036edd-11f0-48e4-9f5d-343ee8371c11","HTAN HTAPP",FALSE,"OtherAssay","merfish_level_4","2022-12-01","syn23585915","Not Applicable","2022-12-25",TRUE,TRUE +"DataFlow","4e002aba-0b43-47b5-8960-7919aede67c8","HTAN HTAPP",FALSE,"OtherAssay","merfish_level_5","Not Applicable","syn23585916","Not Applicable","2022-12-25",TRUE,TRUE +"DataFlow","4ef55de4-72f1-401a-83c4-8859a3220792","HTAN HTAPP",FALSE,"OtherAssay","codex_level_1","2022-12-01","syn23591171","Not Applicable","2022-12-25",TRUE,TRUE +"DataFlow","bc1d26f9-3fed-44b1-ae8a-d599f37745fe","HTAN HTAPP",FALSE,"ImagingLevel2","codex_level_2","2022-12-01","syn23591172","Not Applicable","2022-12-25",FALSE,TRUE +"DataFlow","2dbfccb5-840d-4170-9a23-f59340946ac0","HTAN HTAPP",FALSE,"OtherAssay","codex_level_3","2022-12-01","syn23591173","Not Applicable","2022-12-25",FALSE,TRUE +"DataFlow","8193852f-d2a8-4bb5-9f15-4c22f94194bc","HTAN HTAPP",FALSE,"OtherAssay","codex_level_4","Not Applicable","syn23591174","Not Applicable","2022-12-25",FALSE,TRUE +"DataFlow","7bf829e9-5ec3-47fa-ac04-5ad916929071","HTAN HTAPP",FALSE,"OtherAssay","codex_level_5","Not Applicable","syn23591175","Not Applicable","2022-12-25",FALSE,TRUE +"DataFlow","1aa8daf5-46f4-4d49-bfd2-8c28b9186169","HTAN HTAPP",FALSE,"ImagingLevel2","mibi_level_1","Not Applicable","syn23638814","Not Applicable","2022-12-25",FALSE,TRUE +"DataFlow","5973b2f9-0a76-459f-9dd2-1a9f6b7bebef","HTAN HTAPP",FALSE,"ImagingLevel2","mibi_level_2","Not Applicable","syn23638815","Not Applicable","2022-12-25",FALSE,FALSE +"DataFlow","8b217944-3ad8-4f4e-8bd6-0d2ac2bdb8da","HTAN HTAPP",FALSE,"OtherAssay","mibi_level_3","Not Applicable","syn23638816","Not Applicable","2022-12-25",FALSE,FALSE +"DataFlow","681b8f8c-cbeb-47e2-9019-6ea95c141f37","HTAN HTAPP",FALSE,"OtherAssay","mibi_level_4","Not Applicable","syn23638817","Not Applicable","2022-12-25",FALSE,FALSE +"DataFlow","27c1ba48-be8f-47d8-93bc-db01dce48591","HTAN HTAPP",FALSE,"OtherAssay","mibi_level_5","Not Applicable","syn23638818","Not Applicable","2022-12-25",FALSE,FALSE +"DataFlow","abce1f23-2791-4676-bb48-91a65c904c06","HTAN HTAPP",FALSE,"OtherAssay","h_and_e_level_1","Not Applicable","syn24175688","Not Applicable","2022-12-25",FALSE,FALSE +"DataFlow","6f932339-01b7-4f16-9599-54f3072f8d5b","HTAN HTAPP",FALSE,"OtherAssay","exseq_level_2","Not Applicable","syn24176067","Not Applicable","2022-12-25",FALSE,FALSE +"DataFlow","0c089bbf-4f53-4131-9145-71da9a152abd","HTAN HTAPP",FALSE,"OtherAssay","exseq_level_3","Not Applicable","syn24176068","Not Applicable","2022-12-25",FALSE,FALSE +"DataFlow","7692fafb-1b41-493d-b374-26f8e87058a0","HTAN HTAPP",FALSE,"ScRNA-seqLevel1","single_cell_RNAseq_level_1_colon","Not Applicable","syn24181385","Not Applicable","2021-11-20",TRUE,TRUE +"DataFlow","644e8ba7-133d-4b0d-b9fa-9a993c5f65cb","HTAN HTAPP",FALSE,"ScRNA-seqLevel2","single_cell_RNAseq_level_2_colon","Not Applicable","syn24181437","Not Applicable","2021-11-20",TRUE,TRUE +"DataFlow","a13e5fac-7ea3-41fe-8593-babf784be85b","HTAN HTAPP",FALSE,"ScRNA-seqLevel3","single_cell_RNAseq_level_3_colon","Not Applicable","syn24181445","Not Applicable","2021-11-20",TRUE,TRUE +"DataFlow","5c0e750d-2fe4-48dd-8d78-21f0a3b0431a","HTAN HTAPP",FALSE,"BulkWESLevel2","bulk_DNAseq_level_2_colon","Not Applicable","syn24181527","Not Applicable","2021-11-20",TRUE,TRUE +"DataFlow","5a93fc40-7652-44b9-b1e5-caed5bb07eac","HTAN HTAPP",FALSE,"BulkRNA-seqLevel2","bulk_RNAseq_level_2_colon","Not Applicable","syn24181573","Not Applicable","2021-11-20",TRUE,TRUE +"DataFlow","a4bd82e5-a3b3-46ab-933e-00fcd584d55e","HTAN HTAPP",FALSE,"ScRNA-seqLevel1","single_cell_RNAseq_level_1_breast","Not Applicable","syn24181593","Not Applicable","2021-11-20",TRUE,TRUE +"DataFlow","a20cd74d-ae5f-4ab2-af3f-aa7bee84d9a1","HTAN HTAPP",FALSE,"ScRNA-seqLevel1","single_cell_RNAseq_level_1_glioma","Not Applicable","syn24181594","Not Applicable","2021-11-20",TRUE,TRUE +"DataFlow","0976924f-3232-4cb6-b0c3-2bece927c382","HTAN HTAPP",FALSE,"ScRNA-seqLevel1","single_cell_RNAseq_level_1_lung","Not Applicable","syn24181595","Not Applicable","2021-11-20",TRUE,TRUE +"DataFlow","a60834a7-be2a-474b-81cb-79501bf627cf","HTAN HTAPP",FALSE,"ScRNA-seqLevel3","single_cell_RNAseq_level_3_glioma","Not Applicable","syn24181596","Not Applicable","2021-11-20",TRUE,TRUE +"DataFlow","063fff44-aba8-4117-8094-6375a895518c","HTAN HTAPP",FALSE,"ScRNA-seqLevel1","single_cell_RNAseq_level_1_neuroblastoma","Not Applicable","syn24181597","Not Applicable","2021-11-20",TRUE,TRUE +"DataFlow","7d1498f9-a78e-42b0-bcb2-57ddeafa9fbd","HTAN HTAPP",FALSE,"ScRNA-seqLevel1","single_cell_RNAseq_level_1_ovarian","Not Applicable","syn24181598","Not Applicable","2021-11-20",TRUE,TRUE +"DataFlow","ba9eb6c1-65f6-4267-a6fe-f7f20c250b26","HTAN HTAPP",FALSE,"ScRNA-seqLevel4","single_cell_RNAseq_level_4_glioma","Not Applicable","syn24181599","Not Applicable","2021-11-20",TRUE,TRUE +"DataFlow","4f42490b-d28e-4686-9c75-1511bfb1fd0d","HTAN HTAPP",FALSE,"ScRNA-seqLevel4","single_cell_RNAseq_level_4_lung","Not Applicable","syn24181600","Not Applicable","2021-11-20",TRUE,TRUE +"DataFlow","aba4c68e-1aa2-4b5d-a965-73d973c910af","HTAN HTAPP",FALSE,"ScRNA-seqLevel4","single_cell_RNAseq_level_4_breast","Not Applicable","syn24181601","Not Applicable","2021-11-20",TRUE,TRUE +"DataFlow","6bed41ee-2f57-4885-8995-a4f6d714162c","HTAN HTAPP",FALSE,"ScRNA-seqLevel1","single_cell_RNAseq_level_1_sarcoma","Not Applicable","syn24181602","Not Applicable","2021-11-20",TRUE,TRUE +"DataFlow","cb9aa65b-c320-4cc2-9b6a-1ef8354e98d0","HTAN HTAPP",FALSE,"ScRNA-seqLevel2","single_cell_RNAseq_level_2_breast","Not Applicable","syn24181603","Not Applicable","2021-11-20",TRUE,TRUE +"DataFlow","f5eb086d-3c8d-4bdc-baac-894c9bf1e629","HTAN HTAPP",FALSE,"ScRNA-seqLevel2","single_cell_RNAseq_level_2_lung","Not Applicable","syn24181604","Not Applicable","2021-11-20",TRUE,TRUE +"DataFlow","34968903-bb33-4583-85a1-585c2b520938","HTAN HTAPP",FALSE,"ScRNA-seqLevel2","single_cell_RNAseq_level_2_ovarian","Not Applicable","syn24181605","Not Applicable","2021-11-20",TRUE,TRUE +"DataFlow","4ab61c7d-d4f0-49e9-8350-a4d30dca972b","HTAN HTAPP",FALSE,"ScRNA-seqLevel2","single_cell_RNAseq_level_2_neuroblastoma","Not Applicable","syn24181606","Not Applicable","2021-11-20",TRUE,TRUE +"DataFlow","c75ad834-4d89-4fcc-bd53-5157719fc87b","HTAN HTAPP",FALSE,"ScRNA-seqLevel4","single_cell_RNAseq_level_4_ovarian","Not Applicable","syn24181607","Not Applicable","2021-11-20",TRUE,TRUE +"DataFlow","ddd0f80d-a80e-487b-8337-a7f938e7ad85","HTAN HTAPP",FALSE,"ScRNA-seqLevel4","single_cell_RNAseq_level_4_neuroblastoma","Not Applicable","syn24181608","Not Applicable","2021-11-20",TRUE,TRUE +"DataFlow","eff158c5-d9f3-44cb-aa85-3bbbe373576b","HTAN HTAPP",FALSE,"BulkRNA-seqLevel2","bulk_RNAseq_level_2_lung","Not Applicable","syn24181609","Not Applicable","2021-11-20",TRUE,TRUE +"DataFlow","b8c09835-7217-44f6-b0d3-034aef22be20","HTAN HTAPP",FALSE,"ScRNA-seqLevel2","single_cell_RNAseq_level_2_sarcoma","Not Applicable","syn24181610","Not Applicable","2021-11-20",TRUE,TRUE +"DataFlow","67568177-f8d6-42cf-a8c3-1eee67023b39","HTAN HTAPP",FALSE,"BulkWESLevel2","bulk_DNAseq_level_2_lung","Not Applicable","syn24181611","Not Applicable","2021-11-20",TRUE,TRUE +"DataFlow","72ad3ce4-7696-40f9-b46b-a3b4e2e3c274","HTAN HTAPP",FALSE,"BulkRNA-seqLevel2","bulk_RNAseq_level_2_neuroblastoma","Not Applicable","syn24181612","Not Applicable","2021-11-20",TRUE,TRUE +"DataFlow","0adb11ce-8aec-4a70-8cbe-fde64aafa04c","HTAN HTAPP",FALSE,"BulkRNA-seqLevel2","bulk_RNAseq_level_2_breast","Not Applicable","syn24181613","Not Applicable","2021-11-20",TRUE,TRUE +"DataFlow","9f48dc53-7e08-4fed-9ee4-8c056f763e01","HTAN HTAPP",FALSE,"BulkRNA-seqLevel2","bulk_RNAseq_level_2_ovarian","Not Applicable","syn24181614","Not Applicable","2021-11-20",TRUE,TRUE +"DataFlow","49a267cb-6790-4f46-ad0d-424cc1f91881","HTAN HTAPP",FALSE,"BulkWESLevel2","bulk_DNAseq_level_2_neuroblastoma","Not Applicable","syn24181615","Not Applicable","2021-11-20",TRUE,TRUE +"DataFlow","535c9aee-e535-4f73-aa06-3bab22ac3109","HTAN HTAPP",FALSE,"BulkWESLevel2","bulk_DNAseq_level_2_breast","Not Applicable","syn24181616","Not Applicable","2021-11-20",TRUE,TRUE +"DataFlow","00db6569-5213-4511-bd30-e94244074dbf","HTAN HTAPP",FALSE,"BulkRNA-seqLevel2","bulk_RNAseq_level_2_sarcoma","Not Applicable","syn24181617","Not Applicable","2021-11-20",TRUE,TRUE +"DataFlow","ac2ac68f-76a5-40d5-9241-c0e2d7818529","HTAN HTAPP",FALSE,"BulkWESLevel2","bulk_DNAseq_level_2_sarcoma","Not Applicable","syn24181618","Not Applicable","2021-11-20",TRUE,TRUE +"DataFlow","5f949fb7-ef45-4b74-bcbc-2351dd159bc4","HTAN HTAPP",FALSE,"ScRNA-seqLevel3","single_cell_RNAseq_level_3_breast","Not Applicable","syn24181619","Not Applicable","2021-11-20",TRUE,TRUE +"DataFlow","1087c4d6-1530-4e4a-8617-483f6b3b431f","HTAN HTAPP",FALSE,"ScRNA-seqLevel3","single_cell_RNAseq_level_3_lung","Not Applicable","syn24181620","Not Applicable","2021-11-20",TRUE,TRUE +"DataFlow","86a8052f-63ba-464b-b782-f00836e03377","HTAN HTAPP",FALSE,"ScRNA-seqLevel3","single_cell_RNAseq_level_3_neuroblastoma","Not Applicable","syn24181621","Not Applicable","2021-11-20",TRUE,TRUE +"DataFlow","ad0330c2-e8f3-40bc-afdd-36e370c9aae9","HTAN HTAPP",FALSE,"ScRNA-seqLevel3","single_cell_RNAseq_level_3_sarcoma","Not Applicable","syn24181622","Not Applicable","2021-11-20",TRUE,TRUE +"DataFlow","8a6627e5-ccf7-4b90-abc6-bc79a05315c7","HTAN HTAPP",FALSE,"ScRNA-seqLevel4","single_cell_RNAseq_level_4_sarcoma","Not Applicable","syn24181623","Not Applicable","2021-11-20",TRUE,TRUE +"DataFlow","74beaba9-e77e-4000-a95f-ad72ed788afe","HTAN HTAPP",FALSE,"BulkWESLevel2","bulk_DNAseq_level_2_ovarian","Not Applicable","syn24181624","Not Applicable","2021-11-20",TRUE,TRUE +"DataFlow","bafe62ea-e8ca-44db-9ef4-9d34e09324ee","HTAN HTAPP",FALSE,"ScRNA-seqLevel2","single_cell_RNAseq_level_2_glioma","Not Applicable","syn24181625","Not Applicable","2021-11-20",TRUE,TRUE +"DataFlow","30c26d28-6095-4503-8b19-75e7cf4440f1","HTAN HTAPP",FALSE,"BulkWESLevel2","bulk_DNAseq_level_2_glioma","Not Applicable","syn24181626","Not Applicable","2021-11-20",TRUE,TRUE +"DataFlow","0b6f09de-f79b-4379-b0da-ed6ff1693a9c","HTAN HTAPP",FALSE,"BulkRNA-seqLevel2","bulk_RNAseq_level_2_glioma","Not Applicable","syn24181627","Not Applicable","2021-11-20",TRUE,TRUE +"DataFlow","4ab6a290-b6ac-433a-97cb-d2bd13dc9f82","HTAN HTAPP",FALSE,"ScRNA-seqLevel3","single_cell_RNAseq_level_3_ovarian","Not Applicable","syn24181628","Not Applicable","2021-11-20",TRUE,TRUE +"DataFlow","f170064a-f063-4861-bf1b-ec5b3fdf420f","HTAN HTAPP",FALSE,"ScRNA-seqLevel4","single_cell_RNAseq_level_4_colon","Not Applicable","syn24181630","Not Applicable","2021-11-20",TRUE,TRUE +"DataFlow","67b14f13-9291-4d73-83a1-56a7831bc749","HTAN HTAPP",FALSE,"ScRNA-seqLevel4","slide_seq_level_1_breast","Not Applicable","syn24205844","Not Applicable","2021-11-20",TRUE,TRUE +"DataFlow","247b1b72-bb20-4a40-a875-bb09b6d6d44d","HTAN HTAPP",FALSE,"ScRNA-seqLevel4","slide_seq_level_3_neuroblastoma","Not Applicable","syn24205846","Not Applicable","2021-11-20",TRUE,TRUE +"DataFlow","c8e0be5c-eb03-461e-901d-00d2f2cc8364","HTAN HTAPP",FALSE,"ScRNA-seqLevel4","slide_seq_level_2_breast","Not Applicable","syn24205848","Not Applicable","2021-11-20",TRUE,TRUE +"DataFlow","12e6ce96-0c8e-4cb2-9011-6bc92398b205","HTAN HTAPP",FALSE,"ScRNA-seqLevel4","slide_seq_level_1_neuroblastoma","Not Applicable","syn24205849","Not Applicable","2021-11-20",TRUE,TRUE +"DataFlow","a8e220bd-ad2e-4742-b99f-ac9422571bdb","HTAN HTAPP",FALSE,"ScRNA-seqLevel4","slide_seq_level_3_breast","Not Applicable","syn24205852","Not Applicable","2021-11-20",TRUE,TRUE +"DataFlow","38cf66e4-ad05-4727-995f-ef070b2315ce","HTAN HTAPP",FALSE,"ScRNA-seqLevel4","slide_seq_level_2_neuroblastoma","Not Applicable","syn24205853","Not Applicable","2021-11-20",TRUE,TRUE +"DataFlow","9bd46650-1df3-48aa-a9a0-f68267d988ed","HTAN HTAPP",FALSE,"Demographics","clinical_demographics_colon","Not Applicable","syn24615241","Not Applicable","2021-11-20",TRUE,TRUE +"DataFlow","664a9b70-590f-43f1-88a0-7e280ab995a9","HTAN HTAPP",FALSE,"Exposure","clinical_exposure_colon","Not Applicable","syn24615243","Not Applicable","2021-11-20",TRUE,TRUE +"DataFlow","a9e7f18a-c523-4745-a796-430426fe8c18","HTAN HTAPP",FALSE,"Diagnosis","clinical_diagnosis_colon","Not Applicable","syn24615244","Not Applicable","2021-11-20",TRUE,TRUE +"DataFlow","f86be5b4-8cdc-40a7-8a6b-115e4c4f6ca9","HTAN HTAPP",FALSE,"Diagnosis","clinical_family_history_colon","Not Applicable","syn24615245","Not Applicable","2021-11-20",TRUE,TRUE +"DataFlow","77232926-cda2-4be7-b61b-77d05c089c26","HTAN HTAPP",FALSE,"FollowUp","clinical_follow_up_colon","Not Applicable","syn24615246","Not Applicable","2021-11-20",TRUE,TRUE +"DataFlow","62d31f88-d524-41ed-b3ca-d4afc9746575","HTAN HTAPP",FALSE,"Therapy","clinical_therapy_colon","Not Applicable","syn24615247","Not Applicable","2021-11-20",TRUE,TRUE +"DataFlow","48e01ceb-e030-47cd-868c-1d51906dcb49","HTAN HTAPP",FALSE,"Therapy","archive","Not Applicable","syn24827250","Not Applicable","2021-11-20",TRUE,TRUE +"DataFlow","287f5351-6f7a-4e54-9fcc-d89b421a22bb","HTAN HTAPP",FALSE,"MolecularTest","clinical_molecular_test_colon","Not Applicable","syn24860582","Not Applicable","2021-11-20",TRUE,TRUE +"DataFlow","84ad24be-2eb3-43fd-af2d-370778905410","HTAN HTAPP",FALSE,"ImagingLevel2","h_and_e_visium_lung","Not Applicable","syn24862457","Not Applicable","2021-11-20",TRUE,TRUE +"DataFlow","71d42b38-de94-4206-8526-66c22c3b66ad","HTAN HTAPP",FALSE,"ImagingLevel2","h_and_e_mibi_neuroblastoma","Not Applicable","syn24862458","Not Applicable","2021-11-20",TRUE,TRUE +"DataFlow","d943fa83-23c2-43f8-914c-68d5394d59e8","HTAN HTAPP",FALSE,"ImagingLevel2","h_and_e_visium_ovarian","Not Applicable","syn24862462","Not Applicable","2021-11-20",TRUE,TRUE +"DataFlow","2fa6154d-de79-435e-affc-0406f11c6fde","HTAN HTAPP",FALSE,"ImagingLevel2","clinical_tier_2_colon","Not Applicable","syn24873770","Not Applicable","2021-11-20",TRUE,TRUE +"DataFlow","ffd12685-6b10-40d7-8aec-fe78b3f93c58","HTAN HTAPP",FALSE,"ImagingLevel2","clinical_tier_3_breast","Not Applicable","syn24873771","Not Applicable","2021-11-20",TRUE,TRUE +"DataFlow","b8ea5857-8497-4118-81c7-898b269fcc15","HTAN HTAPP",FALSE,"BrainCancerTier3","clinical_tier_3_glioma","Not Applicable","syn24873772","Not Applicable","2021-11-20",TRUE,TRUE +"DataFlow","47d8d63e-eedc-4d00-8485-42e6e376dd64","HTAN HTAPP",FALSE,"BrainCancerTier3","clinical_tier_3_colon","Not Applicable","syn24873773","Not Applicable","2021-11-20",TRUE,TRUE +"DataFlow","0e285ec0-bf35-48bc-b58a-be502b83534f","HTAN HTAPP",FALSE,"LungCancerTier3","clinical_tier_3_lung","Not Applicable","syn24873774","Not Applicable","2021-11-20",TRUE,TRUE +"DataFlow","dd4ac233-f1e5-40dc-91b7-8124b7a2961d","HTAN HTAPP",FALSE,"LungCancerTier3","clinical_tier_3_sarcoma","Not Applicable","syn24873775","Not Applicable","2020-04-01",TRUE,TRUE +"DataFlow","a54ef96b-1235-4bd7-820d-4f57b9a9bdb2","HTAN HTAPP",FALSE,"LungCancerTier3","clinical_tier_3_ovarian","Not Applicable","syn24873776","Not Applicable","2020-04-01",TRUE,TRUE +"DataFlow","6028c903-4df1-4798-9b88-25598ad6bd40","HTAN HTAPP",FALSE,"LungCancerTier3","clinical_tier_3_neuroblastoma","Not Applicable","syn24873777","Not Applicable","2020-04-01",TRUE,TRUE +"DataFlow","c3e2cf3a-ffa0-42c3-b294-5a9bcc240c08","HTAN HTAPP",FALSE,"Biospecimen","biospecimen_colon","Not Applicable","syn25117237","Not Applicable","2020-04-01",TRUE,TRUE +"DataFlow","baf5920c-a903-41f2-a31c-a7fcac671d2d","HTAN HTAPP",FALSE,"Biospecimen","additional_metadata","Not Applicable","syn25122683","Not Applicable","2020-04-01",TRUE,TRUE +"DataFlow","0d8ce990-28af-4ab1-8883-092ae85cb730","HTAN HTAPP",FALSE,"OtherAssay","merfish_auxiliary_files","Not Applicable","syn25485809","Not Applicable","2020-04-01",TRUE,TRUE +"DataFlow","db9aa52f-6a29-4357-9cc3-5f2ec437379d","HTAN HTAPP",FALSE,"OtherAssay","mibi_auxiliary_files","Not Applicable","syn25544054","Not Applicable","2020-04-01",TRUE,TRUE +"DataFlow","5ff1a1a3-629f-47ce-8ef7-cfd63c7c6096","HTAN HTAPP",FALSE,"OtherAssay","codex_auxiliary_files","Not Applicable","syn25556417","Not Applicable","2020-04-01",TRUE,TRUE +"DataFlow","c9a93131-b1ee-4c8d-81b3-72215e56a0e5","HTAN HTAPP",FALSE,"OtherAssay","codex_level_2_neuroblastoma","Not Applicable","syn25571195","Not Applicable","2020-04-01",TRUE,TRUE +"DataFlow","7190d4ba-6ac8-484f-b42b-b749bb197be2","HTAN HTAPP",FALSE,"Biospecimen","biospecimen_breast","Not Applicable","syn25585682","Not Applicable","2020-04-01",TRUE,TRUE +"DataFlow","efebc4fa-4f60-4693-bbd0-11c94684f098","HTAN HTAPP",FALSE,"Biospecimen","biospecimen_glioma","Not Applicable","syn25585683","Not Applicable","2020-04-01",TRUE,TRUE +"DataFlow","0ab0cffb-dea6-44aa-8896-5982f35454de","HTAN HTAPP",FALSE,"Biospecimen","biospecimen_lung","Not Applicable","syn25585684","Not Applicable","2020-04-01",TRUE,TRUE +"DataFlow","8f840fa0-eb0a-4936-b995-d615580f3500","HTAN HTAPP",FALSE,"Biospecimen","biospecimen_neuroblastoma","Not Applicable","syn25585685","Not Applicable","2020-04-01",TRUE,TRUE +"DataFlow","fc29d36a-6db5-4e4f-b1a5-efe0d38ccbb0","HTAN HTAPP",FALSE,"Biospecimen","biospecimen_sarcoma","Not Applicable","syn25585687","Not Applicable","2020-04-01",TRUE,TRUE +"DataFlow","5737663d-c18e-4a0d-9af0-fa541f84897c","HTAN HTAPP",FALSE,"Demographics","clinical_demographics_breast","Not Applicable","syn25585688","Not Applicable","2020-04-01",TRUE,TRUE +"DataFlow","743efd3e-de3a-48e6-9412-9a1e6dcb13ee","HTAN HTAPP",FALSE,"Demographics","clinical_demographics_glioma","Not Applicable","syn25585689","Not Applicable","2020-04-01",TRUE,TRUE +"DataFlow","925dae94-fc60-4d48-aaba-7c2446bf9a73","HTAN HTAPP",FALSE,"Demographics","clinical_demographics_lung","Not Applicable","syn25585690","Not Applicable","2020-04-01",TRUE,TRUE +"DataFlow","5f0bc860-0185-475e-8bb6-747f6b7c488b","HTAN HTAPP",FALSE,"Demographics","clinical_demographics_neuroblastoma","Not Applicable","syn25585691","Not Applicable","2020-04-01",TRUE,TRUE +"DataFlow","ad7d32b4-4116-4c8b-b465-ba6900cd9de3","HTAN HTAPP",FALSE,"Demographics","clinical_demographics_sarcoma","Not Applicable","syn25585693","Not Applicable","2020-04-01",TRUE,TRUE +"DataFlow","eae1cfad-3962-4d7e-82f5-547ad7478a2f","HTAN HTAPP",FALSE,"Diagnosis","clinical_diagnosis_breast","Not Applicable","syn25585694","Not Applicable","2020-04-01",TRUE,TRUE +"DataFlow","10baf718-c9ae-4da5-8ea9-7bc30e085fd5","HTAN HTAPP",FALSE,"Diagnosis","clinical_diagnosis_glioma","Not Applicable","syn25585695","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","b15c8d77-dfa2-4435-a0cc-f80a5c893ff1","HTAN HTAPP",FALSE,"Diagnosis","clinical_diagnosis_lung","Not Applicable","syn25585696","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","06efe030-65c7-4682-96f5-bb3bbe2e5760","HTAN HTAPP",FALSE,"Diagnosis","clinical_diagnosis_neuroblastoma","Not Applicable","syn25585697","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","fc2a67ec-bada-4149-a8fb-04325af18a2a","HTAN HTAPP",FALSE,"Diagnosis","clinical_diagnosis_sarcoma","Not Applicable","syn25585699","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","ce535531-834b-46c7-a201-7fee50777c50","HTAN HTAPP",FALSE,"Exposure","clinical_exposure_breast","Not Applicable","syn25585700","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","e2d27380-f787-4456-85c0-df79002d32ee","HTAN HTAPP",FALSE,"Exposure","clinical_exposure_glioma","Not Applicable","syn25585701","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","242c1621-4631-409b-a28b-f9a30292eea0","HTAN HTAPP",FALSE,"Exposure","clinical_exposure_lung","Not Applicable","syn25585702","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","6a515de5-aa72-47d8-8e1c-a8eac5314209","HTAN HTAPP",FALSE,"Exposure","clinical_exposure_neuroblastoma","Not Applicable","syn25585703","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","2609836d-0871-4b2a-916b-cda1d125854a","HTAN HTAPP",FALSE,"Exposure","clinical_exposure_sarcoma","Not Applicable","syn25585705","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","eaf2cc0a-ab40-4c0d-b0f9-b4e1c49acf41","HTAN HTAPP",FALSE,"FamilyHistory","clinical_family_history_breast","Not Applicable","syn25585706","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","d313f38d-60ba-42dd-a0e8-a084181ab451","HTAN HTAPP",FALSE,"FamilyHistory","clinical_family_history_glioma","Not Applicable","syn25585707","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","9200d57f-786d-4164-9fe4-4b68f2d61fc7","HTAN HTAPP",FALSE,"FamilyHistory","clinical_family_history_lung","Not Applicable","syn25585709","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","0bd7b49c-4b81-4787-8eb3-c80fdab8dfcc","HTAN HTAPP",FALSE,"FamilyHistory","clinical_family_history_neuroblastoma","Not Applicable","syn25585710","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","3869b51d-c26f-4d08-8ffb-0e184b22718a","HTAN HTAPP",FALSE,"FamilyHistory","clinical_family_history_sarcoma","Not Applicable","syn25585712","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","4cdec8db-c10a-42a3-a6d4-8c14778c4c34","HTAN HTAPP",FALSE,"FollowUp","clinical_follow_up_breast","Not Applicable","syn25585713","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","3011df0c-5e67-4977-af55-17980aef60b4","HTAN HTAPP",FALSE,"FollowUp","clinical_follow_up_glioma","Not Applicable","syn25585714","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","68924ab8-0cce-4607-9f30-dd908e6aa279","HTAN HTAPP",FALSE,"FollowUp","clinical_follow_up_lung","Not Applicable","syn25585715","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","308962fa-9356-4920-afc4-9b723cdaf258","HTAN HTAPP",FALSE,"FollowUp","clinical_follow_up_neuroblastoma","Not Applicable","syn25585716","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","bb628d36-f71c-4a5c-a24c-6a13626d4887","HTAN HTAPP",FALSE,"FollowUp","clinical_follow_up_sarcoma","Not Applicable","syn25585718","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","a0debfb4-2282-42df-9ae4-b8e5214f9395","HTAN HTAPP",FALSE,"Therapy","clinical_therapy_breast","Not Applicable","syn25585719","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","af2efd5f-c4d9-4503-8300-25d53c738ebd","HTAN HTAPP",FALSE,"Therapy","clinical_therapy_glioma","Not Applicable","syn25585720","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","fd2f5b91-718f-4e8e-8338-b4c4096aa2dd","HTAN HTAPP",FALSE,"Therapy","clinical_therapy_lung","Not Applicable","syn25585721","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","81a757a2-a88b-4c53-9aec-1c599d120f39","HTAN HTAPP",FALSE,"Therapy","clinical_therapy_neuroblastoma","Not Applicable","syn25585722","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","84528477-441b-45da-835e-a7d0493fac99","HTAN HTAPP",FALSE,"Therapy","clinical_therapy_sarcoma","Not Applicable","syn25585724","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","c815ef03-07c8-435e-b0b6-c1442e9a5155","HTAN HTAPP",FALSE,"Therapy","clinical_molecular_test_breast","Not Applicable","syn25585725","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","38c83278-59c6-4cd6-8a65-93868c54954c","HTAN HTAPP",FALSE,"MolecularTest","clinical_molecular_test_glioma","Not Applicable","syn25585726","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","578e3fb1-ca08-4c26-a105-d579ee46472d","HTAN HTAPP",FALSE,"MolecularTest","clinical_molecular_test_lung","Not Applicable","syn25585727","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","87d05629-70db-4878-8cc5-12c24a82120f","HTAN HTAPP",FALSE,"MolecularTest","clinical_molecular_test_neuroblastoma","Not Applicable","syn25585728","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","6945aa9d-34c1-4396-9747-c37016b9db88","HTAN HTAPP",FALSE,"MolecularTest","clinical_molecular_test_sarcoma","Not Applicable","syn25585730","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","627f079d-cb2a-4811-bf74-56d115bd411f","HTAN HTAPP",FALSE,"MolecularTest","clinical_tier_2_breast","Not Applicable","syn25585731","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","7cff402f-b0c3-455d-a339-1e7881132923","HTAN HTAPP",FALSE,"MolecularTest","clinical_tier_2_glioma","Not Applicable","syn25585732","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","c1c2362e-da11-487a-b95b-a33f9d2a0269","HTAN HTAPP",FALSE,"ClinicalDataTier2","clinical_tier_2_lung","Not Applicable","syn25585733","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","0db1ad12-de1f-4b7a-a216-06840df01aac","HTAN HTAPP",FALSE,"ClinicalDataTier2","clinical_tier_2_neuroblastoma","Not Applicable","syn25585734","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","1d3cb8d3-c8ce-4837-8fac-3ea11660fc4c","HTAN HTAPP",FALSE,"ClinicalDataTier2","clinical_tier_2_sarcoma","Not Applicable","syn25585736","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","538dd0d3-84b9-43ac-ac5a-51f9d8438743","HTAN HTAPP",FALSE,"Biospecimen","biospecimen_ovarian","Not Applicable","syn25585757","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","4280934f-71fc-49b1-90ca-f27b067d8b55","HTAN HTAPP",FALSE,"Demographics","clinical_demographics_ovarian","Not Applicable","syn25585758","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","f9b371c5-03e2-414d-a140-f3bc33e2df8b","HTAN HTAPP",FALSE,"Diagnosis","clinical_diagnosis_ovarian","Not Applicable","syn25585760","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","764e8a41-cd6c-441e-b45e-723c09463e91","HTAN HTAPP",FALSE,"Exposure","clinical_exposure_ovarian","Not Applicable","syn25585761","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","371b86d3-fa2e-440e-bc4f-b3766d0d0358","HTAN HTAPP",FALSE,"FamilyHistory","clinical_family_history_ovarian","Not Applicable","syn25585762","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","3a41baea-a86d-490c-b040-1046c3985deb","HTAN HTAPP",FALSE,"FollowUp","clinical_follow_up_ovarian","Not Applicable","syn25585764","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","4597fa4a-dc60-4bf6-aab1-6c984c83a884","HTAN HTAPP",FALSE,"Therapy","clinical_therapy_ovarian","Not Applicable","syn25585766","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","650f9b9a-47d1-445d-8c53-b3eeb2286e1c","HTAN HTAPP",FALSE,"Therapy","clinical_molecular_test_ovarian","Not Applicable","syn25585767","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","b85de60c-782c-4c08-a9df-298cb44b3530","HTAN HTAPP",FALSE,"Therapy","clinical_tier_2_ovarian","Not Applicable","syn25585768","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","cd7739f4-04e9-48ca-b791-04b01ed3080d","HTAN HTAPP",FALSE,"Therapy","minerva","Not Applicable","syn25586754","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","bf52ce0a-af05-4d68-9aee-3bf286a9f781","HTAN HTAPP",FALSE,"Therapy","exseq_auxiliary_files","Not Applicable","syn25678408","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","db084714-98b7-457f-b26b-9bfbfcb3ab32","HTAN HTAPP",FALSE,"OtherAssay","exseq_level_4","Not Applicable","syn25757446","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","56e7ced5-4b00-4726-9c6c-6a4a07f69693","HTAN HTAPP",FALSE,"OtherAssay","exseq_level_5","Not Applicable","syn25757449","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","b9a673f0-2e37-4bc3-8c39-163aeffd6493","HTAN HTAPP",FALSE,"OtherAssay","codex_level_3_neuroblastoma","Not Applicable","syn25843119","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","cccf4695-96cb-415e-b2fa-4a994197272c","HTAN HTAPP",FALSE,"OtherAssay","codex_auxiliary_files_neuroblastoma","Not Applicable","syn25843156","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","5616e033-d278-4db9-9eb5-8a93d7e81cc6","HTAN HTAPP",FALSE,"ImagingLevel2","exseq_level_1","Not Applicable","syn25843550","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","be7429c5-40bc-42c2-9ed2-2f8173b9000e","HTAN HTAPP",FALSE,"ImagingLevel2","h_and_e_multi_assay_breast","Not Applicable","syn25882266","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","5703a91c-35db-4bff-8868-b7cc1d079997","HTAN HTAPP",FALSE,"ImagingLevel2","h_and_e_multiassay_neuroblastoma","Not Applicable","syn25882295","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","d20d450e-0cd9-41db-ad54-aa853d276133","HTAN HTAPP",FALSE,"ImagingLevel2","h_and_e_mibi_breast","Not Applicable","syn25882316","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","c720e231-99b3-4c74-8223-4461758017ad","HTAN HTAPP",FALSE,"ImagingLevel2","visium_level_1_ovarian","Not Applicable","syn25997522","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","27b43623-f856-4ea8-88a6-13bb4b08204b","HTAN HTAPP",FALSE,"ImagingLevel2","visium_level_2_ovarian","Not Applicable","syn25997523","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","592c36cb-3ae8-49cc-929a-0093d8fb1a1b","HTAN HTAPP",FALSE,"ImagingLevel2","visium_level_3_ovarian","Not Applicable","syn25997524","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","7a527031-094f-4b53-9f39-b4a895be7269","HTAN HTAPP",FALSE,"ImagingLevel2","visium_level_1_lung","Not Applicable","syn25997525","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","64f6e8db-ccdc-4350-9d0c-e62bdc978f1e","HTAN HTAPP",FALSE,"ImagingLevel2","visium_level_2_lung","Not Applicable","syn25997526","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","fd38a583-ab38-4bae-ab99-b8554c07aa2e","HTAN HTAPP",FALSE,"ImagingLevel2","visium_level_3_lung","Not Applicable","syn25997527","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","1a429bdf-7946-4eeb-b699-6b52583da46c","HTAN HTAPP",FALSE,"ScRNA-seqLevel1","single_cell_RNAseq_level_1_PML","Not Applicable","syn26002150","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","3799d3d6-b3b8-48b3-af9e-15daa4380502","HTAN HTAPP",FALSE,"ScRNA-seqLevel2","single_cell_RNAseq_level_2_PML","Not Applicable","syn26002153","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","c9e93002-2d20-45b8-822b-31b55465bf6d","HTAN HTAPP",FALSE,"ScRNA-seqLevel3","single_cell_RNAseq_level_3_PML","Not Applicable","syn26002156","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","d6afdf7d-c23a-4abd-b69a-b7099d7215e3","HTAN HTAPP",FALSE,"OtherAssay","mibi_level_3_segmented_cell_coordinates","Not Applicable","syn26014990","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","04682278-4b5c-42e1-9453-fe30f0e24f3a","HTAN HTAPP",FALSE,"OtherAssay","data_integration_MBC","Not Applicable","syn26033679","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","a50e4c3a-d164-4951-ae0c-cfa2af987cd6","HTAN HTAPP",FALSE,"Biospecimen","biospecimen_PML","Not Applicable","syn26125064","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","7c6bee01-8267-43cf-979a-3135398647b9","HTAN HTAPP",FALSE,"Demographics","clinical_demographics_PML","Not Applicable","syn26125065","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","a4f2c83b-4f44-4a4a-a917-2856886264d4","HTAN HTAPP",FALSE,"Diagnosis","clinical_diagnosis_PML","Not Applicable","syn26125066","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","b74d61d8-c3a5-4dba-abfd-bcae63a64a84","HTAN HTAPP",FALSE,"Exposure","clinical_exposure_PML","Not Applicable","syn26125067","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","e9de83fc-683d-4675-8d50-c9444e3d7376","HTAN HTAPP",FALSE,"FamilyHistory","clinical_family_history_PML","Not Applicable","syn26125068","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","6ffd7511-c25c-4852-933e-3a220ac8b0ba","HTAN HTAPP",FALSE,"FollowUp","clinical_follow_up_PML","Not Applicable","syn26125069","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","ee48feb5-a39e-4757-8286-184ee43b22dd","HTAN HTAPP",FALSE,"Therapy","clinical_therapy_PML","Not Applicable","syn26125070","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","1ddd080f-7435-4cbb-a830-7673db9d2ba2","HTAN HTAPP",FALSE,"MolecularTest","clinical_molecular_test_PML","Not Applicable","syn26125071","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","e00f2ab3-2114-41b0-94d3-059730e545d1","HTAN HTAPP",FALSE,"ClinicalDataTier2","clinical_tier_2_PML","Not Applicable","syn26125072","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","cec35b36-8d25-4610-8dc5-28285e38f257","HTAN HTAPP",FALSE,"OtherAssay","data_integration_neuroblastoma","Not Applicable","syn26126863","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","563b53f0-37f1-4039-80e9-cef8d887103a","HTAN HTAPP",FALSE,"OtherAssay","bulk_DNAseq_level_1_metadata","Not Applicable","syn26376477","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","7ad8722b-ad00-48ec-8c0f-484e1a8ede2a","HTAN HTAPP",FALSE,"OtherAssay","bulk_RNAseq_level_1_metadata","Not Applicable","syn26376488","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","b7704ac3-7e97-4b18-acca-2f6d9a418ae1","HTAN HTAPP",FALSE,"OtherAssay","HTAPP Documents","Not Applicable","syn26560266","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","1dda2c10-dd2f-4905-912f-8985e3b29c3c","HTAN HTAPP",FALSE,"OtherAssay","clinical_tier_3_breast_precancer_and_cancer","Not Applicable","syn27764067","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","220c56dc-b7b1-4f68-bb0b-017719df56cc","HTAN Vanderbilt",FALSE,"ScRNA-seqLevel3","single_cell_RNAseq_level_3","Not Applicable","syn23520239","Not Applicable","2022-10-01",TRUE,TRUE +"DataFlow","fbb4e618-9e6a-4e85-882a-b2068527df2d","HTAN Vanderbilt",FALSE,"ScRNA-seqLevel2","single_cell_RNAseq_level_2","Not Applicable","syn23520240","Not Applicable","2022-10-01",TRUE,TRUE +"DataFlow","2c4d486d-2563-4e1c-87fc-04d924e0ad33","HTAN Vanderbilt",FALSE,"ScRNA-seqLevel1","single_cell_RNAseq_level_1","Not Applicable","syn23520241","Not Applicable","2022-10-01",TRUE,TRUE +"DataFlow","9f7f36f6-3dce-4962-a5bd-28a5bc759b8c","HTAN Vanderbilt",FALSE,"Demographics","clinical_demographics","Not Applicable","syn23520242","Not Applicable","2022-10-01",TRUE,TRUE +"DataFlow","f46154c3-b74a-4f79-ac76-3d5a715454f3","HTAN Vanderbilt",FALSE,"Diagnosis","clinical_diagnosis","Not Applicable","syn23520243","Not Applicable","2022-10-01",TRUE,TRUE +"DataFlow","4f982836-1677-4990-9eba-10c2e5502811","HTAN Vanderbilt",FALSE,"Exposure","clinical_exposure","Not Applicable","syn23520244","Not Applicable","2022-10-01",TRUE,TRUE +"DataFlow","3063a74c-0f9b-4794-8353-3e47accf3e58","HTAN Vanderbilt",FALSE,"FamilyHistory","clinical_family_history","Not Applicable","syn23520245","Not Applicable","2022-10-01",TRUE,TRUE +"DataFlow","c383cd5e-337c-4897-a340-098758ef2b3c","HTAN Vanderbilt",FALSE,"FollowUp","clinical_follow_up","Not Applicable","syn23520246","Not Applicable","2022-10-01",TRUE,TRUE +"DataFlow","47576871-dc0a-400d-9d36-cdbd8c725922","HTAN Vanderbilt",FALSE,"Therapy","clinical_therapy","Not Applicable","syn23520247","Not Applicable","2022-10-01",TRUE,TRUE +"DataFlow","9a6bfce6-9c6f-4eaf-a576-ccf8cef06c8a","HTAN Vanderbilt",FALSE,"MolecularTest","clinical_molecular_test","Not Applicable","syn24860587","Not Applicable","2021-10-01",TRUE,TRUE +"DataFlow","0eb9d0f7-5caf-47e7-8347-006f0ebd5bc9","HTAN Vanderbilt",FALSE,"MolecularTest","clinical_tier_2","Not Applicable","syn24873794","Not Applicable","2021-10-01",TRUE,TRUE +"DataFlow","030bed7b-5052-43ee-aa6e-88aceb51d490","HTAN Vanderbilt",FALSE,"MolecularTest","clinical_tier_3_colon","Not Applicable","syn24873795","Not Applicable","2021-10-01",TRUE,TRUE +"DataFlow","6dbd3cf4-0f2e-4402-a792-590239d8397a","HTAN Vanderbilt",FALSE,"MolecularTest","archive","Not Applicable","syn24986117","Not Applicable","2021-10-01",TRUE,TRUE +"DataFlow","8fb5c3eb-4821-4703-9ff0-6053e82dee3e","HTAN Vanderbilt",FALSE,"ImagingLevel2","mxif_level_2","Not Applicable","syn24989514","Not Applicable","2021-10-01",TRUE,TRUE +"DataFlow","9c33b268-feff-4494-b2ae-b0eb2f4df7b7","HTAN Vanderbilt",FALSE,"Biospecimen","biospecimen","Not Applicable","syn25010793","Not Applicable","2021-10-01",TRUE,TRUE +"DataFlow","01ce2586-c97a-4d78-92a2-a6b537087bd6","HTAN Vanderbilt",FALSE,"ImagingLevel2","h_and_e_level_1","Not Applicable","syn25054230","Not Applicable","2021-10-01",TRUE,TRUE +"DataFlow","690cff03-f6a9-498b-b957-4c7a667bf436","HTAN Vanderbilt",FALSE,"ScRNA-seqLevel4","single_cell_RNAseq_level_4","Not Applicable","syn25459679","Not Applicable","2021-10-01",TRUE,TRUE +"DataFlow","1e0aa880-f2d1-4d74-a572-8b749084bdbd","HTAN Vanderbilt",FALSE,"BulkWESLevel1","whole_exome_seq_level_1","Not Applicable","syn26950967","Not Applicable","2021-10-01",TRUE,TRUE +"DataFlow","d1c94911-9675-44a4-8675-f0bc61409db2","HTAN Vanderbilt",FALSE,"BulkWESLevel2","whole_exome_seq_level_2","Not Applicable","syn26950968","Not Applicable","2021-10-01",TRUE,TRUE +"DataFlow","8b83c2a2-b6c4-4fca-b2ac-7c1b7eed2c6a","HTAN Vanderbilt",FALSE,"BulkWESLevel3","whole_exome_seq_level_3","Not Applicable","syn26950969","Not Applicable","2021-10-01",FALSE,TRUE +"DataFlow","f82c9c15-d9b8-4596-89b6-6f73c50b5414","HTAN TNP - TMA",FALSE,"Not Applicable","phase-1","Not Applicable","syn23554989","Not Applicable","2022-12-01",FALSE,TRUE +"DataFlow","165ea3a4-9c06-4f9b-aa7d-2c6ed0497476","HTAN TNP - TMA",FALSE,"Biospecimen","biospecimen","Not Applicable","syn24995166","Not Applicable","2022-12-01",FALSE,TRUE +"DataFlow","becd72bd-767d-492e-8750-6e87cbd1e2a1","HTAN TNP - TMA",FALSE,"Demographics","clinical_demographics","Not Applicable","syn24995167","Not Applicable","2022-12-01",FALSE,TRUE +"DataFlow","8d789c38-1903-4754-9186-eccaba210391","HTAN TNP - TMA",FALSE,"Diagnosis","clinical_diagnosis","Not Applicable","syn24995168","Not Applicable","2022-12-01",FALSE,TRUE +"DataFlow","43e9a528-a0b5-4b9b-bd5e-a384148f4442","HTAN TNP - TMA",FALSE,"Exposure","clinical_exposure","Not Applicable","syn24995170","Not Applicable","2022-12-01",FALSE,TRUE +"DataFlow","dfed4bfa-8118-4b0f-aaa2-f0ffa9896289","HTAN TNP - TMA",FALSE,"FamilyHistory","clinical_family_history","Not Applicable","syn24995171","Not Applicable","2022-12-01",FALSE,TRUE +"DataFlow","96d1d0b8-a295-4864-b19e-4633427e3e59","HTAN TNP - TMA",FALSE,"FollowUp","clinical_follow_up","Not Applicable","syn24995173","Not Applicable","2022-12-01",FALSE,TRUE +"DataFlow","23d0fbc4-ffe3-4486-9f5e-ad64bcb7abfb","HTAN TNP - TMA",FALSE,"Therapy","clinical_therapy","Not Applicable","syn24995174","Not Applicable","2022-12-01",FALSE,TRUE +"DataFlow","1c3dd699-6c54-43b4-b3de-62ed5e078258","HTAN TNP - TMA",FALSE,"MolecularTest","clinical_molecular_test","Not Applicable","syn24995175","Not Applicable","2022-12-01",FALSE,TRUE +"DataFlow","764a885b-85b0-48e4-b9b7-0538c2bfa361","HTAN TNP - TMA",FALSE,"ClinicalDataTier2","clinical_tier_2","Not Applicable","syn24995176","Not Applicable","2022-12-01",FALSE,TRUE +"DataFlow","0b863525-b547-4270-8b23-b0e8dd57351c","HTAN TNP - TMA",FALSE,"BreastCancerTier3","clinical_tier_3_breast","Not Applicable","syn24995177","Not Applicable","2022-12-01",FALSE,TRUE +"DataFlow","022b9480-33cf-4e1b-a38e-90764a8ba612","HTAN TNP - TMA",FALSE,"BreastCancerTier3","clinical_tier_3_glioma","Not Applicable","syn24995179","Not Applicable","2022-12-01",FALSE,TRUE +"DataFlow","f564afeb-6566-4cb8-a9f3-fd19fcfd215f","HTAN TNP - TMA",FALSE,"BreastCancerTier3","clinical_tier_3_colon","Not Applicable","syn24995180","Not Applicable","2022-12-01",FALSE,TRUE +"DataFlow","57abd7e8-e4b4-4a5a-bf55-5fdd8918b8a3","HTAN TNP - TMA",FALSE,"BreastCancerTier3","clinical_tier_3_lung","Not Applicable","syn24995181","Not Applicable","2021-11-01",TRUE,TRUE +"DataFlow","b700e429-037a-4479-ae39-347fdfdff07a","HTAN TNP - TMA",FALSE,"BreastCancerTier3","clinical_tier_3_sarcoma","Not Applicable","syn24995182","Not Applicable","2021-11-01",TRUE,TRUE +"DataFlow","cca8ce35-ab32-489e-8d6a-a4240e647831","HTAN TNP - TMA",FALSE,"BreastCancerTier3","clinical_tier_3_ovarian","Not Applicable","syn24995184","Not Applicable","2021-11-01",TRUE,TRUE +"DataFlow","400a08b9-4fb1-4923-a17d-cc869701d070","HTAN TNP - TMA",FALSE,"BreastCancerTier3","clinical_tier_3_neuroblastoma","Not Applicable","syn24995185","Not Applicable","2021-11-01",TRUE,TRUE +"DataFlow","d44df7d7-d68b-4f02-b127-c6e4bd92a822","HTAN TNP - TMA",FALSE,"BreastCancerTier3","clinical_tier_3_pancreatic","Not Applicable","syn24995187","Not Applicable","2021-11-01",TRUE,TRUE +"DataFlow","c15a4fb7-b48e-480d-aabd-367412236731","HTAN TNP - TMA",FALSE,"BreastCancerTier3","clinical_tier_3_melanoma","Not Applicable","syn24995188","Not Applicable","2021-11-01",TRUE,TRUE +"DataFlow","a29fe9cf-8782-464f-8001-5860ef29f72a","HTAN TNP - TMA",FALSE,"BreastCancerTier3","clinical_tier_3_acute_lymphoblastic_leukemia","Not Applicable","syn24995190","Not Applicable","2021-11-01",TRUE,TRUE +"DataFlow","0166da13-229f-4fad-a866-c60c1837686a","HTAN TNP - TMA",FALSE,"BreastCancerTier3","minerva","Not Applicable","syn25472274","Not Applicable","2021-11-01",TRUE,TRUE +"DataFlow","41ecfd5b-02f0-4b4c-8061-247aec8fe10a","HTAN TNP - TMA",FALSE,"BreastCancerTier3","imaging_level_2","Not Applicable","syn26341500","Not Applicable","2021-11-01",TRUE,TRUE +"DataFlow","55a6391e-f2da-4ed4-b303-560c836d2a17","HTAN TNP - TMA",FALSE,"BreastCancerTier3","galaxy-mti","Not Applicable","syn32606398","Not Applicable","2021-11-01",TRUE,TRUE +"DataFlow","88ba94ba-f023-40c2-8cff-1d13639a4248","HTAN OHSU",FALSE,"Not Applicable","Example_Assay_Dataset","Not Applicable","syn22093323","Not Applicable","2022-08-01",TRUE,TRUE +"DataFlow","a428e17d-8e77-4375-8f4f-ad33cc829d16","HTAN OHSU",FALSE,"Not Applicable","Example_Clinical_Data","Not Applicable","syn22097676","Not Applicable","2022-08-01",TRUE,TRUE +"DataFlow","9e266ce9-623f-48d5-941d-8e4f1f6891b3","HTAN OHSU",FALSE,"Not Applicable","rppa_level_2","Not Applicable","syn23639564","Not Applicable","2022-08-01",TRUE,TRUE +"DataFlow","af426186-d0bc-426f-9c79-44999ed91bf0","HTAN OHSU",FALSE,"Not Applicable","rppa_level_3","Not Applicable","syn23639578","Not Applicable","2022-08-01",TRUE,TRUE +"DataFlow","b5043e4d-adfc-4cb0-aae2-eabeeb129a21","HTAN OHSU",FALSE,"Not Applicable","rppa_level_4","Not Applicable","syn23639603","Not Applicable","2022-08-01",TRUE,TRUE +"DataFlow","c56b8a9e-9976-4b43-9bc3-8673c763daf9","HTAN OHSU",FALSE,"Not Applicable","nanostring_level_1","Not Applicable","syn23639753","Not Applicable","2022-08-01",TRUE,TRUE +"DataFlow","0a3da13c-adfc-4171-97ac-a05d409a3f79","HTAN OHSU",FALSE,"Not Applicable","nanostring_level_2","Not Applicable","syn23639801","Not Applicable","2022-08-01",TRUE,TRUE +"DataFlow","c30a6c97-b87d-48b6-bf9c-4ee1583d9406","HTAN OHSU",FALSE,"Not Applicable","nanostring_level_3","Not Applicable","syn23639807","Not Applicable","2022-08-01",TRUE,TRUE +"DataFlow","3a073b19-d3cc-4f78-b987-dc18c63e89f3","HTAN OHSU",FALSE,"BulkRNA-seqLevel1","bulk_rnaseq_level_1","Not Applicable","syn23639829","Not Applicable","2022-08-01",TRUE,TRUE +"DataFlow","1b43135b-7814-4156-bfa0-f27907bf0740","HTAN OHSU",FALSE,"BulkWESLevel1","bulk_dnaseq_level_1","Not Applicable","syn23639864","Not Applicable","2022-08-01",TRUE,TRUE +"DataFlow","25dd2b75-3cc6-46b9-9f96-a4ab18c876a7","HTAN OHSU",FALSE,"Biospecimen","biospecimen","Not Applicable","syn24615273","Not Applicable","2022-08-01",TRUE,TRUE +"DataFlow","373881bc-e1e8-4c64-b660-9fb7f541abd3","HTAN OHSU",FALSE,"Diagnosis","clinical_diagnosis","Not Applicable","syn24615275","Not Applicable","2022-08-01",TRUE,TRUE +"DataFlow","a55d042b-fb8a-40bc-8664-211879d1e73a","HTAN OHSU",FALSE,"Exposure","clinical_exposure","Not Applicable","syn24615276","Not Applicable","2022-08-01",TRUE,TRUE +"DataFlow","c0891539-f09e-4f52-9ef3-fd618fa83433","HTAN OHSU",FALSE,"FamilyHistory","clinical_family_history","Not Applicable","syn24615277","Not Applicable","2020-11-01",TRUE,TRUE +"DataFlow","10c4eabe-8ce8-46d5-98e8-6747fc8e4baa","HTAN OHSU",FALSE,"FollowUp","clinical_follow_up","Not Applicable","syn24615278","Not Applicable","2020-11-01",TRUE,TRUE +"DataFlow","a4582ac2-c547-44e0-853c-5da0e20dceec","HTAN OHSU",FALSE,"Therapy","clinical_therapy","Not Applicable","syn24615279","Not Applicable","2020-11-01",TRUE,TRUE +"DataFlow","765e6594-07ca-48ba-838f-676ba41b6a87","HTAN OHSU",FALSE,"Therapy","imaging_level_1","Not Applicable","syn24829230","Not Applicable","2020-11-01",TRUE,TRUE +"DataFlow","98130da7-c70a-4900-816f-a8e281686809","HTAN OHSU",FALSE,"ImagingLevel2","imaging_level_2","Not Applicable","syn24829424","Not Applicable","2020-11-01",TRUE,TRUE +"DataFlow","a89a2e7c-ffcb-4c29-8be7-df0ba36ac45e","HTAN OHSU",FALSE,"ImagingLevel2","em_level_4","Not Applicable","syn24829496","Not Applicable","2020-11-01",TRUE,TRUE +"DataFlow","b8d6df6b-7a22-4149-9085-23c1cab3bb7f","HTAN OHSU",FALSE,"ImagingLevel2","em_level_3","Not Applicable","syn24829499","Not Applicable","2020-11-01",TRUE,TRUE +"DataFlow","3fdf4ed1-3ff7-44da-bb20-1637633faa08","HTAN OHSU",FALSE,"MolecularTest","clinical_molecular_test","Not Applicable","syn24860589","Not Applicable","2020-11-01",TRUE,TRUE +"DataFlow","c781de71-6c0f-46de-ba56-a8ec371cb685","HTAN OHSU",FALSE,"Demographics","clinical_demographics","Not Applicable","syn24862563","Not Applicable","2020-11-01",TRUE,TRUE +"DataFlow","bc39ed38-f716-4972-be74-17020863f67c","HTAN OHSU",FALSE,"ClinicalDataTier2","clinical_tier_2","Not Applicable","syn24873803","Not Applicable","2020-11-01",TRUE,TRUE +"DataFlow","d62d33eb-7e48-4699-baea-5dc2a045cfa2","HTAN OHSU",FALSE,"BreastCancerTier3","clinical_tier_3_breast","Not Applicable","syn24873804","Not Applicable","2020-11-01",TRUE,TRUE +"DataFlow","3158f43b-4fe3-42b4-bbdd-02a2d4156255","HTAN OHSU",FALSE,"BreastCancerTier3","imaging_channel_data","Not Applicable","syn24988790","Not Applicable","2020-11-01",TRUE,TRUE +"DataFlow","0b33cc0a-0f1f-4a31-a0c0-c8e2f0e020c4","HTAN OHSU",FALSE,"BreastCancerTier3","minerva_stories","Not Applicable","syn24992265","Not Applicable","2020-11-01",TRUE,TRUE +"DataFlow","9778e188-3edd-4f2e-8cd0-d3d3a8d3fcfd","HTAN OHSU",FALSE,"BreastCancerTier3","other_assay","Not Applicable","syn25114220","Not Applicable","2020-11-01",TRUE,TRUE +"DataFlow","f3a1357f-481a-4a1c-bcef-ac057bfff69c","HTAN OHSU",FALSE,"BreastCancerTier3","minerva","Not Applicable","syn25472273","Not Applicable","2020-11-01",TRUE,TRUE +"DataFlow","d7e912bb-ec22-4420-b1fa-ba616092eb79","HTAN OHSU",FALSE,"BreastCancerTier3","bulk_dnaseq_level_3","Not Applicable","syn26535370","Not Applicable","2020-11-01",TRUE,TRUE +"DataFlow","a73e6964-0d0d-4424-971d-b0b39064b91c","HTAN OHSU",FALSE,"BulkRNA-seqLevel3","bulk_rnaseq_level_3","Not Applicable","syn26535390","Not Applicable","2020-11-01",TRUE,TRUE +"DataFlow","1fed8187-236b-4e1e-82b1-7e7aebbd2a75","HTAN OHSU",FALSE,"BulkRNA-seqLevel3","imaging_level_4","Not Applicable","syn26535421","Not Applicable","2020-11-01",TRUE,TRUE +"DataFlow","53bd1cbb-407c-46c4-b059-5f6566f6c43a","HTAN OHSU",FALSE,"BulkRNA-seqLevel3","sc_dnaseq_level_3","Not Applicable","syn26535461","Not Applicable","2020-11-01",TRUE,TRUE +"DataFlow","5de8abf8-d30f-4ea0-9a2e-14a45d5c0726","HTAN OHSU",FALSE,"BulkRNA-seqLevel3","imaging_level_3","Not Applicable","syn26535576","Not Applicable","2020-11-01",TRUE,TRUE +"DataFlow","bdf9de0b-1ac2-418e-90f6-b56c23b1ae12","HTAN OHSU",FALSE,"ScATAC-seqLevel1","sc_atacseq_level_1","Not Applicable","syn26535587","Not Applicable","2020-11-01",TRUE,TRUE +"DataFlow","fd51cadb-5e2c-4d2c-8354-e942f8fdc735","HTAN OHSU",FALSE,"ScATAC-seqLevel1","sc_atacseq_level_2","Not Applicable","syn26535592","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","48b721fc-5a76-4735-97d8-b4c0251b0846","HTAN OHSU",FALSE,"BulkRNA-seqLevel2","bulk_rnaseq_level_2","Not Applicable","syn26535599","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","26020142-a4ef-4d43-b024-270a3ead97a0","HTAN OHSU",FALSE,"BulkRNA-seqLevel2","sc_dnaseq_level_2","Not Applicable","syn26535617","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","73b34999-660d-463f-93d1-42a08e3f26dc","HTAN OHSU",FALSE,"BulkRNA-seqLevel2","sc_dnaseq_level_1","Not Applicable","syn26535725","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","10198af7-5d06-4706-ac4b-4441ec989b9b","HTAN OHSU",FALSE,"BulkWESLevel2","bulk_dnaseq_level_2","Not Applicable","syn26536411","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","cf7b2a13-f641-4d1e-9f98-4e9f6d201afd","HTAN OHSU",FALSE,"BulkWESLevel2","archive","Not Applicable","syn26987435","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","8667e2ef-9602-4ee5-8224-fdb618563497","HTAN OHSU",FALSE,"BulkWESLevel2","sc_atacseq_level_3","Not Applicable","syn31547223","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","92bac585-2286-4760-9b2b-889f9f03795c","HTAN OHSU",FALSE,"BulkWESLevel2","em_level_1","Not Applicable","syn31566909","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","a171c3e7-1e6e-478e-9bc0-cd1d5608e572","HTAN OHSU",FALSE,"BulkWESLevel2","em_level_2","Not Applicable","syn31773950","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","b19f05d3-6e94-480e-9930-f4cb2579a0c5","HTAN HMS",FALSE,"Not Applicable","Example Clinical Data - Demographics","Not Applicable","syn22126051","Not Applicable","2021-05-15",TRUE,TRUE +"DataFlow","549e0605-139a-4373-8553-692480de6145","HTAN HMS",FALSE,"Biospecimen","biospecimen","Not Applicable","syn24616231","Not Applicable","2021-05-15",TRUE,TRUE +"DataFlow","a529a873-381d-4a6f-86af-a0e4ee9079f9","HTAN HMS",FALSE,"Demographics","clinical_demographics","Not Applicable","syn24616233","Not Applicable","2021-05-15",TRUE,TRUE +"DataFlow","6e201350-a199-4608-aa0d-b3c7d4267f54","HTAN HMS",FALSE,"Diagnosis","clinical_diagnosis","Not Applicable","syn24616235","Not Applicable","2021-05-15",TRUE,TRUE +"DataFlow","a34725d0-00bb-44c4-ae9f-4e9f8fa93bbf","HTAN HMS",FALSE,"Exposure","clinical_exposure","Not Applicable","syn24616237","Not Applicable","2021-05-15",TRUE,TRUE +"DataFlow","12e1e012-86bf-4ff9-a59e-3587838c47b6","HTAN HMS",FALSE,"FamilyHistory","clinical_family_history","Not Applicable","syn24616239","Not Applicable","2021-05-15",TRUE,TRUE +"DataFlow","e6e21dcb-aee7-46de-9e86-d0ad0d5e9934","HTAN HMS",FALSE,"FollowUp","clinical_follow_up","Not Applicable","syn24616241","Not Applicable","2021-05-15",TRUE,TRUE +"DataFlow","aa09ae1c-d735-44f5-aae3-8c053d9749b4","HTAN HMS",FALSE,"Therapy","clinical_therapy","Not Applicable","syn24616243","Not Applicable","2021-05-15",TRUE,TRUE +"DataFlow","de8256e3-7864-49c4-8012-ddb119c73db0","HTAN HMS",FALSE,"MolecularTest","clinical_molecular_test","Not Applicable","syn24860583","Not Applicable","2021-05-15",TRUE,TRUE +"DataFlow","639ffe4b-3c5d-433a-a379-2fc6668f8e40","HTAN HMS",FALSE,"MolecularTest","clinical_tier_2","Not Applicable","syn24873780","Not Applicable","2021-05-15",TRUE,TRUE +"DataFlow","e4cbd5f1-255d-475c-b877-48dc59544f0e","HTAN HMS",FALSE,"MolecularTest","clinical_tier_3_melanoma","Not Applicable","syn24873781","Not Applicable","2021-05-15",TRUE,TRUE +"DataFlow","28a02148-ae11-462c-b4cf-07b8d6ec12ab","HTAN HMS",FALSE,"BulkRNA-seqLevel1","PickSeq_Level_1","Not Applicable","syn24991756","Not Applicable","2021-05-15",TRUE,TRUE +"DataFlow","887962b0-8253-41bd-bcd8-8b4224d34d13","HTAN HMS",FALSE,"ImagingLevel2","imaging_level_2","Not Applicable","syn25580853","Not Applicable","2021-05-15",TRUE,TRUE +"DataFlow","9d3d4322-595f-4086-87bd-9a6f688e7c38","HTAN HMS",FALSE,"ImagingLevel2","minerva","Not Applicable","syn25653114","Not Applicable","2021-05-15",TRUE,TRUE +"DataFlow","409f3aa2-0a4c-4953-94f0-d60d80bb528c","HTAN HMS",FALSE,"ImagingLevel2","archive","Not Applicable","syn25750256","Not Applicable","2021-05-15",TRUE,TRUE +"DataFlow","1dbd0946-e1fa-4b49-b0fe-e13fe047d56d","HTAN HMS",FALSE,"BulkRNA-seqLevel2","PickSeq_Level_2","Not Applicable","syn26530450","Not Applicable","2021-05-15",TRUE,TRUE +"DataFlow","d163ee03-7f37-4d5d-9a33-49378b5efd54","HTAN HMS",FALSE,"BulkRNA-seqLevel3","PickSeq_Level_3","Not Applicable","syn26530452","Not Applicable","2021-05-15",TRUE,TRUE +"DataFlow","ae7db4fc-b882-463a-afc4-14b8b37b919f","HTAN HMS",FALSE,"BulkRNA-seqLevel3","imaging_level_4","Not Applicable","syn34625996","Not Applicable","2021-05-15",TRUE,TRUE +"DataFlow","666386dc-89d9-44b9-8620-06bc5a8a179c","HTAN HMS",FALSE,"BulkRNA-seqLevel3","imaging_level_3_segmentation","Not Applicable","syn36848897","Not Applicable","2021-05-15",TRUE,TRUE +"DataFlow","ffdb6f2a-371e-49bf-b4a8-53e5140949ac","HTAN BU",FALSE,"Not Applicable","h_and_e","Not Applicable","syn22432744","Not Applicable","2021-02-01",TRUE,TRUE +"DataFlow","2fa4b32c-fe8d-456c-83e5-6dbac6de49fa","HTAN BU",FALSE,"Demographics","clinical_demographics","Not Applicable","syn22677299","Not Applicable","2021-02-01",TRUE,TRUE +"DataFlow","3b3b351a-7841-4ac9-b008-97ab265a2037","HTAN BU",FALSE,"ScRNA-seqLevel1","sc_rna_seq_level_1","Not Applicable","syn22722838","Not Applicable","2021-02-01",TRUE,TRUE +"DataFlow","bb80036d-d72d-404e-8d8d-97221fb29bb5","HTAN BU",FALSE,"Biospecimen","biospecimens","Not Applicable","syn23632145","Not Applicable","2021-02-01",TRUE,TRUE +"DataFlow","b3dd4762-b2dc-4d15-a773-d67599938928","HTAN BU",FALSE,"ScRNA-seqLevel2","sc_rna_seq_level_2","Not Applicable","syn23662467","Not Applicable","2021-02-01",TRUE,TRUE +"DataFlow","fe4b216f-bf77-4392-97c1-50fb8250abfe","HTAN BU",FALSE,"ScRNA-seqLevel3","sc_rna_seq_level_3","Not Applicable","syn23662468","Not Applicable","2021-02-01",TRUE,TRUE +"DataFlow","f2ef7437-eb49-4e51-afa6-15ec17d794c1","HTAN BU",FALSE,"ScRNA-seqLevel4","sc_rna_seq_level_4","Not Applicable","syn23662469","Not Applicable","2021-02-01",TRUE,TRUE +"DataFlow","a57a260e-1d2b-4f0e-b65f-160304d21a74","HTAN BU",FALSE,"ScRNA-seqLevel4","archive","Not Applicable","syn24610388","Not Applicable","2021-02-01",TRUE,TRUE +"DataFlow","520d4af6-c43e-4db2-bc31-72a0f728be58","HTAN BU",FALSE,"Exposure","clinical_exposure","Not Applicable","syn24615248","Not Applicable","2021-02-01",TRUE,TRUE +"DataFlow","d986a368-db53-4c34-8149-32212ab913cc","HTAN BU",FALSE,"Diagnosis","clinical_diagnosis","Not Applicable","syn24615249","Not Applicable","2021-02-01",TRUE,TRUE +"DataFlow","1afbddcb-5cf1-4da2-878d-32ad7f470b2b","HTAN BU",FALSE,"FamilyHistory","clinical_family_history","Not Applicable","syn24615250","Not Applicable","2021-02-01",TRUE,TRUE +"DataFlow","a9d54fe9-3c8f-4d9f-91aa-78a3e474c746","HTAN BU",FALSE,"FollowUp","clinical_follow_up","Not Applicable","syn24615251","Not Applicable","2023-02-01",FALSE,FALSE +"DataFlow","87828ce6-f210-4796-a976-2a3e269022a2","HTAN BU",FALSE,"Therapy","clinical_therapy","Not Applicable","syn24615252","Not Applicable","2023-02-01",FALSE,FALSE +"DataFlow","a94ed6f2-b550-4938-aa7d-6eecffb130a9","HTAN BU",FALSE,"Therapy","clinical_molecular_test","Not Applicable","syn24860585","Not Applicable","2023-02-01",FALSE,FALSE +"DataFlow","11c49d80-dadf-425d-b869-1ea20d29454b","HTAN BU",FALSE,"ClinicalDataTier2","clinical_tier_2","Not Applicable","syn24873786","Not Applicable","2023-02-01",FALSE,FALSE +"DataFlow","bf61135c-d5ec-464f-9515-7596e5aa2485","HTAN BU",FALSE,"LungCancerTier3","clinical_tier_3_lung","Not Applicable","syn24873787","Not Applicable","2023-02-01",FALSE,FALSE +"DataFlow","ebefc653-3855-4ccb-8ad9-00cbabce7359","HTAN BU",FALSE,"LungCancerTier3","minerva","Not Applicable","syn25586693","Not Applicable","2023-02-01",FALSE,FALSE +"DataFlow","df409990-6927-4713-ab3a-956c7c90c0c6","HTAN BU",FALSE,"LungCancerTier3","image_level2","Not Applicable","syn26031632","Not Applicable","2023-02-01",FALSE,FALSE +"DataFlow","a1067768-7797-4ba9-a1a1-215d8e5ca579","HTAN BU",FALSE,"LungCancerTier3","Bulk_WES_level_3","Not Applicable","syn26944441","Not Applicable","2023-02-01",FALSE,FALSE +"DataFlow","9c9a8cbe-c752-4679-b348-0c89f1b6b078","HTAN BU",FALSE,"LungCancerTier3","Bulk_RNA_Level3","Not Applicable","syn26944456","Not Applicable","2023-02-01",FALSE,FALSE +"DataFlow","57d13eb0-bfbc-4626-95fc-08614f8a735c","HTAN WUSTL",FALSE,"ScRNA-seqLevel1","sc_RNAseq_level_1","Not Applicable","syn23643211","Not Applicable","2023-02-01",FALSE,FALSE +"DataFlow","ff1acc02-d122-4725-9de6-6db2c6903a02","HTAN WUSTL",FALSE,"ScRNA-seqLevel1","sc_RNAseq_level_2","Not Applicable","syn23643212","Not Applicable","2023-02-01",FALSE,FALSE +"DataFlow","e05f585b-caf1-4be7-b554-c0592fbbff7b","HTAN WUSTL",FALSE,"ScRNA-seqLevel1","sc_RNAseq_level_3","Not Applicable","syn23643213","Not Applicable","2023-02-01",FALSE,FALSE +"DataFlow","82d42536-d2f1-46c9-9dba-85e9798d9df8","HTAN WUSTL",FALSE,"ScRNA-seqLevel1","sc_RNAseq_level_4","Not Applicable","syn23643214","Not Applicable","2023-02-01",FALSE,FALSE +"DataFlow","2e939a2a-a1c4-480b-b40f-0e7467236092","HTAN WUSTL",FALSE,"ScRNA-seqLevel1","sn_ATACseq_level_1","Not Applicable","syn23643215","Not Applicable","2023-02-01",FALSE,FALSE +"DataFlow","8bdb577c-07ac-45dd-989a-f5969f55a61c","HTAN WUSTL",FALSE,"ScRNA-seqLevel1","bulk_RNAseq_level_2","Not Applicable","syn23643217","Not Applicable","2023-02-01",FALSE,FALSE +"DataFlow","da2c5cde-d712-4d1c-b9ac-0954036538e3","HTAN WUSTL",FALSE,"ScRNA-seqLevel1","bulk_RNAseq_level_3","Not Applicable","syn23643218","Not Applicable","2023-02-01",FALSE,FALSE +"DataFlow","a8feaa51-f4cd-4e4a-a0a6-bb6b3980a5a5","HTAN WUSTL",FALSE,"BulkWESLevel1","whole_exome_seq_level_1","Not Applicable","syn23643219","Not Applicable","2023-02-01",FALSE,FALSE +"DataFlow","ad829015-8bfa-4f35-b45f-f10a98d9034a","HTAN WUSTL",FALSE,"BulkWESLevel1","whole_exome_seq_level_2","Not Applicable","syn23643220","Not Applicable","2022-09-20",TRUE,TRUE +"DataFlow","a1166ea4-d732-4a56-a4d9-f5ebddbff268","HTAN WUSTL",FALSE,"BulkWESLevel1","whole_exome_seq_level_3","Not Applicable","syn23643221","Not Applicable","2022-09-20",TRUE,TRUE +"DataFlow","1922912e-6328-4918-9a19-10c6e7cf2d26","HTAN WUSTL",FALSE,"Therapy","clinical_therapy","Not Applicable","syn24615254","Not Applicable","2022-09-20",TRUE,TRUE +"DataFlow","09171fd8-6b8d-4dcb-a69c-a292e079b66b","HTAN WUSTL",FALSE,"Demographics","clinical_demographics","Not Applicable","syn24615255","Not Applicable","2022-09-20",TRUE,TRUE +"DataFlow","637ff077-bef5-4647-82ac-b32883e25a25","HTAN WUSTL",FALSE,"FamilyHistory","clinical_family_history","Not Applicable","syn24615256","Not Applicable","2022-09-20",TRUE,TRUE +"DataFlow","9e0d92b7-73fb-4245-a0d7-c94a26b93b11","HTAN WUSTL",FALSE,"Exposure","clinical_exposure","Not Applicable","syn24615257","Not Applicable","2022-09-20",TRUE,TRUE +"DataFlow","7c38e45b-5ef8-421a-b01b-ca9e4566384f","HTAN WUSTL",FALSE,"Biospecimen","biospecimen","Not Applicable","syn24615258","Not Applicable","2022-09-20",TRUE,TRUE +"DataFlow","3d171394-320d-463b-b17c-e5015ee6c62c","HTAN WUSTL",FALSE,"FollowUp","clinical_follow_up","Not Applicable","syn24615259","Not Applicable","2022-09-20",TRUE,TRUE +"DataFlow","67cc9095-8757-4a05-9f57-2e7acedc4d79","HTAN WUSTL",FALSE,"ImagingLevel2","h_and_e_level_1","Not Applicable","syn24628490","Not Applicable","2022-09-20",TRUE,TRUE +"DataFlow","cc599b1f-b403-40be-90b5-4b05742105c2","HTAN WUSTL",FALSE,"ImagingLevel2","clinical_molecular_test","Not Applicable","syn24860588","Not Applicable","2022-09-20",TRUE,TRUE +"DataFlow","8a3f4722-6981-4a3c-939f-26b41f7c69a6","HTAN WUSTL",FALSE,"ImagingLevel2","clinical_tier_2","Not Applicable","syn24873799","Not Applicable","2022-09-20",TRUE,TRUE +"DataFlow","a96acc87-5fb6-4f12-943b-80cd6f822c50","HTAN WUSTL",FALSE,"ImagingLevel2","clinical_tier_3_breast","Not Applicable","syn24873800","Not Applicable","2022-09-20",TRUE,TRUE +"DataFlow","5976475b-2993-440a-a1f7-0dd80edf38da","HTAN WUSTL",FALSE,"ImagingLevel2","clinical_tier_3_pancreatic","Not Applicable","syn24873801","Not Applicable","2022-09-20",TRUE,TRUE +"DataFlow","6e7a8de2-f6c8-4a7c-a902-0cf0f38b2ffd","HTAN WUSTL",FALSE,"ImagingLevel2","imc_level_2","Not Applicable","syn24989505","Not Applicable","2022-09-20",TRUE,TRUE +"DataFlow","ec758420-9fd6-4906-80f0-28c8eaec5e9a","HTAN WUSTL",FALSE,"BulkRNA-seqLevel1","bulk_RNAseq_level_1","Not Applicable","syn24994805","Not Applicable","2022-09-20",TRUE,TRUE +"DataFlow","7976a380-dc50-49b4-b3cf-3b50f10f8345","HTAN WUSTL",FALSE,"Diagnosis","clinical_diagnosis","Not Applicable","syn25126996","Not Applicable","2022-09-20",TRUE,TRUE +"DataFlow","ddf1b49c-46eb-4c8b-865a-40426563174b","HTAN WUSTL",FALSE,"Diagnosis","archive","Not Applicable","syn25174770","Not Applicable","2022-09-20",TRUE,TRUE +"DataFlow","1e7372e2-444c-4174-8ef7-8b472b51ea24","HTAN WUSTL",FALSE,"Diagnosis","minerva","Not Applicable","syn25586708","Not Applicable","2022-09-20",TRUE,TRUE +"DataFlow","e079bf95-8529-49d5-9790-9322325971fd","HTAN WUSTL",FALSE,"Diagnosis","scRNAseq_level_1_brca22","Not Applicable","syn27782156","Not Applicable","2022-09-20",TRUE,TRUE +"DataFlow","a66e58be-c67a-4ceb-83ed-686b4054479b","HTAN WUSTL",FALSE,"Diagnosis","clinical_follow_up_brca22","Not Applicable","syn27782165","Not Applicable","2022-09-20",TRUE,TRUE +"DataFlow","553b14e6-6c60-4718-b4ff-0030ffc60f81","HTAN WUSTL",FALSE,"Diagnosis","biospecimen_brca22","Not Applicable","syn27782166","Not Applicable","2022-09-20",TRUE,TRUE +"DataFlow","4353db2c-3287-45cd-93ea-1456c30109b8","HTAN WUSTL",FALSE,"Diagnosis","clinical_demographics_brca22","Not Applicable","syn27782167","Not Applicable","2022-09-20",TRUE,TRUE +"DataFlow","174fa918-968a-4a42-915b-bd6d6e17bdee","HTAN WUSTL",FALSE,"Diagnosis","clinical_diagnosis_brca22","Not Applicable","syn27782168","Not Applicable","2022-09-20",TRUE,TRUE +"DataFlow","6d21d187-459d-4f98-8d30-1b676be89157","HTAN WUSTL",FALSE,"Diagnosis","clinical_exposure_brca22","Not Applicable","syn27782169","Not Applicable","2022-09-20",TRUE,TRUE +"DataFlow","bc03c742-b4fb-4928-be5e-c2812f1030e4","HTAN WUSTL",FALSE,"Diagnosis","clinical_therapy_brca22","Not Applicable","syn27782170","Not Applicable","2022-09-20",TRUE,TRUE +"DataFlow","cbbd08a6-dfa8-42b3-9e86-b551810231b4","HTAN WUSTL",FALSE,"Diagnosis","clinical_molecular_test_brca22","Not Applicable","syn27782171","Not Applicable","2022-09-20",TRUE,TRUE +"DataFlow","123c4f64-948e-41ed-9f7d-df4c641962e1","HTAN WUSTL",FALSE,"Diagnosis","clinical_family_history_brca22","Not Applicable","syn27782172","Not Applicable","2022-09-20",TRUE,TRUE +"DataFlow","1ef36156-af0f-42b4-9cf0-8e2ab4301230","HTAN WUSTL",FALSE,"Diagnosis","clinical_exposure_coad22","Not Applicable","syn27782182","Not Applicable","2022-09-20",TRUE,TRUE +"DataFlow","d26b34e4-9315-46a8-8bee-f7e9d655917c","HTAN WUSTL",FALSE,"Diagnosis","clinical_demographics_coad22","Not Applicable","syn27782183","Not Applicable","2022-09-20",TRUE,TRUE +"DataFlow","0634ddc0-508b-4589-bfb3-efa4282dff08","HTAN WUSTL",FALSE,"Diagnosis","scRNAseq_level_1_coad22","Not Applicable","syn27782184","Not Applicable","2022-09-20",TRUE,TRUE +"DataFlow","cd114df3-13f0-4ae2-a72e-4d021899e971","HTAN WUSTL",FALSE,"Diagnosis","biospecimen_coad22","Not Applicable","syn27782185","Not Applicable","2022-09-20",TRUE,TRUE +"DataFlow","4ad47228-0699-4474-9a72-08804a1f33f6","HTAN WUSTL",FALSE,"Diagnosis","clinical_family_history_coad22","Not Applicable","syn27782186","Not Applicable","2022-09-20",TRUE,TRUE +"DataFlow","2446cc66-8818-405f-88d4-087e242ff35e","HTAN WUSTL",FALSE,"Diagnosis","clinical_therapy_coad22","Not Applicable","syn27782187","Not Applicable","2022-09-20",TRUE,TRUE +"DataFlow","05305da4-279b-48b9-95db-cf01c784a5cf","HTAN WUSTL",FALSE,"Diagnosis","clinical_diagnosis_coad22","Not Applicable","syn27782188","Not Applicable","2022-09-20",TRUE,TRUE +"DataFlow","3864e8a7-409a-4164-a09f-571a34455d27","HTAN WUSTL",FALSE,"Diagnosis","clinical_molecular_test_coad22","Not Applicable","syn27782189","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","efbf140c-6431-4b2e-b10e-688972a5b2f6","HTAN WUSTL",FALSE,"Diagnosis","clinical_follow_up_coad22","Not Applicable","syn27782190","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","acea13db-4968-4d6d-8483-053de0142cfa","HTAN WUSTL",FALSE,"Diagnosis","scRNAseq_level_2_coad22","Not Applicable","syn27782206","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","659065e9-b508-418b-96c8-3560c134e2d6","HTAN WUSTL",FALSE,"Diagnosis","scRNAseq_level_3_brca22","Not Applicable","syn27782207","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","db6bb750-1b53-4cbb-85ef-b7af0d70a6c5","HTAN WUSTL",FALSE,"Diagnosis","scRNAseq_level_4_coad22","Not Applicable","syn27782208","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","c908f467-9c4f-431d-bf9e-bcef71e84e10","HTAN WUSTL",FALSE,"Diagnosis","scRNAseq_level_2_brca22","Not Applicable","syn27782209","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","f2428077-ce1b-46ed-b08a-4ab51ef15bf5","HTAN WUSTL",FALSE,"Diagnosis","scRNAseq_level_3_coad22","Not Applicable","syn27782210","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","96d8415d-83a5-4851-bc51-60f8d0883f4b","HTAN WUSTL",FALSE,"Diagnosis","scRNAseq_level_4_brca22","Not Applicable","syn27782211","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","c39dee15-da0d-4e1b-9b99-27d93a8ccbfd","HTAN WUSTL",FALSE,"OtherAssay","visium_level_1","Not Applicable","syn29265269","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","bca5364a-7839-463c-a0ef-89774ddc9854","HTAN WUSTL",FALSE,"ScRNA-seqLevel1","sn_RNAseq_level_1","Not Applicable","syn29282243","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","e1b9942b-fbef-4db8-9105-c2800ce513d1","HTAN CHOP",FALSE,"ScRNA-seqLevel1","single_cell_RNAseq_level_1","Not Applicable","syn23452919","Not Applicable","2020-01-15",TRUE,TRUE +"DataFlow","9b911bf2-5b08-4b77-a224-88860e19d7f2","HTAN CHOP",FALSE,"ScATAC-seqLevel1","single_cell_ATACseq_level_1","Not Applicable","syn23662863","Not Applicable","2020-01-15",TRUE,TRUE +"DataFlow","252107fe-ce7a-4a1c-b4bb-1dc41250ad1b","HTAN CHOP",FALSE,"Diagnosis","clinical_diagnosis","Not Applicable","syn24615215","Not Applicable","2020-01-15",TRUE,TRUE +"DataFlow","21aa47d9-bfb5-464c-90d4-7a829a901c24","HTAN CHOP",FALSE,"Exposure","clinical_exposure","Not Applicable","syn24615216","Not Applicable","2020-01-15",TRUE,TRUE +"DataFlow","03da1933-1f60-4835-9d74-e3bbb7c67191","HTAN CHOP",FALSE,"FamilyHistory","clinical_family_history","Not Applicable","syn24615217","Not Applicable","2020-01-15",TRUE,TRUE +"DataFlow","08099632-1a13-4fed-bc49-f2beecf9dc53","HTAN CHOP",FALSE,"FollowUp","clinical_follow_up","Not Applicable","syn24615218","Not Applicable","2020-01-15",TRUE,TRUE +"DataFlow","604c1ea5-1a54-4e5a-8c24-29234a213996","HTAN CHOP",FALSE,"Therapy","clinical_therapy","Not Applicable","syn24615219","Not Applicable","2021-03-16",TRUE,TRUE +"DataFlow","308d530b-db27-4bec-b11c-5ccf7c1b0f71","HTAN CHOP",FALSE,"MolecularTest","clinical_molecular_test","Not Applicable","syn24860584","Not Applicable","2021-03-16",TRUE,TRUE +"DataFlow","10f51d0e-edcd-426b-8522-f13095afe932","HTAN CHOP",FALSE,"ScRNA-seqLevel2","single_cell_RNAseq_level_2","Not Applicable","syn24860906","Not Applicable","2021-03-16",TRUE,TRUE +"DataFlow","7f72ee93-77a5-41c5-9c0b-adc3608f3b01","HTAN CHOP",FALSE,"ScRNA-seqLevel2","single_cell_ATACseq_level_2","Not Applicable","syn24860908","Not Applicable","2021-03-16",TRUE,TRUE +"DataFlow","e73f9a8f-ef99-4242-a149-464f6dd8d95c","HTAN CHOP",FALSE,"ScRNA-seqLevel2","clinical_tier_2","Not Applicable","syn24873782","Not Applicable","2021-03-16",TRUE,TRUE +"DataFlow","08feb57e-0698-468e-8aa3-cd69fdcd9446","HTAN CHOP",FALSE,"ScRNA-seqLevel2","clinical_tier_3_glioma","Not Applicable","syn24873783","Not Applicable","2021-03-16",TRUE,TRUE +"DataFlow","9d8a4a3e-fe39-43a5-b967-3bd322e85426","HTAN CHOP",FALSE,"ScRNA-seqLevel2","clinical_tier_3_neuroblastoma","Not Applicable","syn24873784","Not Applicable","2021-03-16",TRUE,TRUE +"DataFlow","d2c1459d-78d7-4a6e-afa1-94b82b11b117","HTAN CHOP",FALSE,"ScRNA-seqLevel2","clinical_tier_3_acute_lymphoblastic_leukemia","Not Applicable","syn24873785","Not Applicable","2021-03-16",TRUE,TRUE +"DataFlow","65faf583-e1c3-4ade-ab7f-830d0345ccb0","HTAN CHOP",FALSE,"ScRNA-seqLevel3","single_cell_RNAseq_level_3","Not Applicable","syn24984342","Not Applicable","2021-03-16",TRUE,TRUE +"DataFlow","7dd26885-abfd-4981-875e-d7c5d24fe1b9","HTAN CHOP",FALSE,"ScRNA-seqLevel4","single_cell_RNAseq_level_4","Not Applicable","syn24984343","Not Applicable","2021-03-16",TRUE,TRUE +"DataFlow","f3db9be6-05f0-4cfa-8670-56d8704a0827","HTAN CHOP",FALSE,"ScRNA-seqLevel4","snmC-Seq2_level1","Not Applicable","syn24984555","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","44a32736-294a-4c69-8569-e93e0e1346bd","HTAN CHOP",FALSE,"ScRNA-seqLevel4","snmC-Seq2_level2","Not Applicable","syn24984685","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","0b18a34c-a6bc-46b3-ac51-018b035f7c8e","HTAN CHOP",FALSE,"Demographics","clinical_demographics","Not Applicable","syn25127390","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","327a9e95-35df-405b-a7d8-0fbc9bd00e3e","HTAN CHOP",FALSE,"Biospecimen","Biospecimen","Not Applicable","syn25127447","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","11ea94c8-b14d-4d60-b767-54dab89666c2","HTAN CHOP",FALSE,"Biospecimen","snmC-Seq2_level1_new","Not Applicable","syn25955941","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","ecc842b6-1e51-4123-b1f2-d03e73a6612f","HTAN CHOP",FALSE,"ScATAC-seqLevel4","single_cell_ATACseq_level_4","Not Applicable","syn26401297","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","197c5050-9385-43fa-80eb-310c7476a27d","HTAN MSK",FALSE,"ScRNA-seqLevel2","single_cell_RNAseq_level_2","Not Applicable","syn23591071","Not Applicable","2022-11-01",TRUE,TRUE +"DataFlow","80160109-c4ee-4994-835f-5d47549fc04f","HTAN MSK",FALSE,"ScRNA-seqLevel3","single_cell_RNAseq_level_3","Not Applicable","syn23591072","Not Applicable","2022-11-01",FALSE,TRUE +"DataFlow","3405fbdb-8b2e-4b8b-a015-0b3f53927478","HTAN MSK",FALSE,"ScRNA-seqLevel4","single_cell_RNAseq_level_4","Not Applicable","syn23591073","Not Applicable","2022-11-01",FALSE,TRUE +"DataFlow","59c2dc1d-39f6-4e3a-b64b-a9a33cde8398","HTAN MSK",FALSE,"ScRNA-seqLevel4","mIHC_level_1","Not Applicable","syn23591178","Not Applicable","2022-11-01",FALSE,FALSE +"DataFlow","3b5799d6-5ef7-446e-9f9e-99aa02effe16","HTAN MSK",FALSE,"ScRNA-seqLevel4","mIHC_level_2","Not Applicable","syn23591179","Not Applicable","2022-11-01",FALSE,FALSE +"DataFlow","e4fd7c1b-a388-41d9-813a-f00f6be11087","HTAN MSK",FALSE,"ScRNA-seqLevel4","mIHC_level_4","Not Applicable","syn23591180","Not Applicable","2022-11-01",FALSE,FALSE +"DataFlow","bab24db5-3c1b-4776-aea5-82c72d9b1d40","HTAN MSK",FALSE,"ScRNA-seqLevel4","mIHC_level_3","Not Applicable","syn23591181","Not Applicable","2022-11-01",FALSE,FALSE +"DataFlow","ddd6e3da-0f01-4226-bac4-4037ea817db6","HTAN MSK",FALSE,"ScRNA-seqLevel4","mIHC_level_5","Not Applicable","syn23591182","Not Applicable","2022-11-01",FALSE,FALSE +"DataFlow","28d45234-2453-4068-ba95-b1389075eb76","HTAN MSK",FALSE,"ScRNA-seqLevel1","single_cell_RNAseq_level_1","Not Applicable","syn23593727","Not Applicable","2021-01-01",TRUE,TRUE +"DataFlow","2ee37456-d446-4968-b902-96c925e0c858","HTAN MSK",FALSE,"Demographics","clinical_demographics","Not Applicable","syn23633926","Not Applicable","2021-01-01",TRUE,TRUE +"DataFlow","5334e066-4bd2-4be4-912a-789955859483","HTAN MSK",FALSE,"Diagnosis","clinical_diagnosis","Not Applicable","syn23633927","Not Applicable","2021-01-01",TRUE,TRUE +"DataFlow","be568755-1b72-4afd-9457-8390e1b0f3a1","HTAN MSK",FALSE,"Exposure","clinical_exposure","Not Applicable","syn23633928","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","0bc7fb33-3d3f-4ae3-8ed1-2796a15a5f3e","HTAN MSK",FALSE,"FamilyHistory","clinical_family_history","Not Applicable","syn23633929","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","481a42c9-bc0a-440b-bca6-eb25add70775","HTAN MSK",FALSE,"FollowUp","clinical_follow_up","Not Applicable","syn23633930","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","2941f489-9052-4ae4-a7c4-b686ab7c0470","HTAN MSK",FALSE,"Therapy","clinical_therapy","Not Applicable","syn23633931","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","c6bdcb8d-70ff-429d-a401-1916003c67a8","HTAN MSK",FALSE,"MolecularTest","clinical_molecular_test","Not Applicable","syn23633932","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","7cd02dde-50e0-4b06-8910-95c14e7f6229","HTAN MSK",FALSE,"Biospecimen","biospecimen","Not Applicable","syn24615234","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","396ab55c-4bcc-4565-a80d-88cad918d386","HTAN MSK",FALSE,"Biospecimen","clinical_tier_2","Not Applicable","syn24873796","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","3406fb1c-0424-4e3e-9176-b60f3706f251","HTAN MSK",FALSE,"Biospecimen","clinical_tier_3_lung","Not Applicable","syn24873797","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","4cd7df69-22e6-46c1-ad29-7d4fc11de811","HTAN MSK",FALSE,"Biospecimen","clinical_tier_3_pancreatic","Not Applicable","syn24873798","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","59e83d51-3457-42f2-9f20-b740d1b301fe","HTAN MSK",FALSE,"Biospecimen","minerva","Not Applicable","syn25472272","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","87002bb7-731e-45e5-bf58-57bff3c8fa88","HTAN MSK",FALSE,"Biospecimen","mibi_level_1","Not Applicable","syn26321090","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","cf8c1879-262a-4e9a-a8ad-ba63fe1d25b5","HTAN MSK",FALSE,"ImagingLevel2","mibi_level_2","Not Applicable","syn26321091","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","76a2a375-92ea-4aaf-8f14-47007574dae4","HTAN MSK",FALSE,"OtherAssay","mibi_level_3","Not Applicable","syn26321092","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","f8867492-5b30-47bc-87fc-2e532d127071","HTAN MSK",FALSE,"OtherAssay","mibi_level_4","Not Applicable","syn26321093","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","70e75d19-bb24-461d-b7bb-63044a56eff2","HTAN MSK",FALSE,"OtherAssay","mibi_level_5","Not Applicable","syn26321094","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","56112038-e2ae-40e0-a8a1-107350ee0708","HTAN MSK",FALSE,"OtherAssay","vectra_level_2","Not Applicable","syn27025191","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","b6b125c8-adfd-4e9e-8944-d0e15401581b","HTAN MSK",FALSE,"OtherAssay","vectra_level_3","Not Applicable","syn27025192","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","d315b0a2-d5d9-4dc9-9f71-429a3dacfbb5","HTAN MSK",FALSE,"OtherAssay","vectra_level_4","Not Applicable","syn27025193","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","c93a6342-81e5-43c3-86d0-0a1986ec714c","HTAN DFCI",FALSE,"Not Applicable","single_cell_RNAseq_level_1","Not Applicable","syn24180872","Not Applicable","2021-01-01",TRUE,TRUE +"DataFlow","eb3c26a2-8b40-436c-9005-a244657fcf3b","HTAN DFCI",FALSE,"Not Applicable","single_cell_RNAseq_level_3","Not Applicable","syn24180873","Not Applicable","2021-01-01",TRUE,TRUE +"DataFlow","5f30b38b-ec95-474c-af5e-8e0952d3b5ee","HTAN DFCI",FALSE,"Not Applicable","single_cell_RNAseq_level_2","Not Applicable","syn24180874","Not Applicable","2021-01-01",TRUE,TRUE +"DataFlow","01f41886-fa30-4eaf-8e3b-e153a5a43018","HTAN DFCI",FALSE,"Not Applicable","single_cell_RNAseq_level_4","Not Applicable","syn24180875","Not Applicable","2021-01-01",TRUE,TRUE +"DataFlow","0017f283-c072-4edd-a11e-548e1889bd3d","HTAN DFCI",FALSE,"Not Applicable","clinical_diagnosis","Not Applicable","syn24615260","Not Applicable","2021-01-01",TRUE,TRUE +"DataFlow","ffd3059b-f059-4fda-9fd5-77b06a196f86","HTAN DFCI",FALSE,"FamilyHistory","clinical_family_history","Not Applicable","syn24615261","Not Applicable","2021-01-01",TRUE,TRUE +"DataFlow","72fd53ab-50ce-42f1-b024-4976017dc557","HTAN DFCI",FALSE,"FamilyHistory","biospecimen","Not Applicable","syn24615262","Not Applicable","2021-01-01",TRUE,TRUE +"DataFlow","a305bb97-ee89-42e2-85b7-b1903f49a3af","HTAN DFCI",FALSE,"Exposure","clinical_exposure","Not Applicable","syn24615263","Not Applicable","2021-01-01",TRUE,TRUE +"DataFlow","8ffacb96-ef37-4a55-96ce-32515e97a3fa","HTAN DFCI",FALSE,"Exposure","clinical_therapy","Not Applicable","syn24615264","Not Applicable","2021-01-01",TRUE,TRUE +"DataFlow","7969f7ce-2521-4afb-a0cb-49e2728595f7","HTAN DFCI",FALSE,"FollowUp","clinical_follow_up","Not Applicable","syn24615265","Not Applicable","2022-10-10",TRUE,TRUE +"DataFlow","6d992a36-246a-4870-8328-87f7817d7f8b","HTAN DFCI",FALSE,"Demographics","clinical_demographics","Not Applicable","syn24615266","Not Applicable","2022-10-10",TRUE,TRUE +"DataFlow","abd2df0b-493a-44fc-bd06-10b92d6cc7aa","HTAN DFCI",FALSE,"Demographics","clinical_molecular_test","Not Applicable","syn24860586","Not Applicable","2022-10-10",TRUE,TRUE +"DataFlow","aae842c6-6133-47a3-bd6c-d4daaca37c5d","HTAN DFCI",FALSE,"ClinicalDataTier2","clinical_tier_2","Not Applicable","syn24873790","Not Applicable","2022-10-10",TRUE,TRUE +"DataFlow","b2b72706-2d6e-4ffa-b5c4-6ac220a5e7d9","HTAN DFCI",FALSE,"ClinicalDataTier2","clinical_tier_3_breast","Not Applicable","syn24873791","Not Applicable","2022-10-10",TRUE,TRUE +"DataFlow","05db08a5-b2a9-4dc8-89f5-184981b2d9ba","HTAN DFCI",FALSE,"ClinicalDataTier2","clinical_tier_3_melanoma","Not Applicable","syn24873792","Not Applicable","2022-10-10",TRUE,TRUE +"DataFlow","937347e8-be3b-467d-92c7-8b2323df5372","HTAN DFCI",FALSE,"ClinicalDataTier2","clinical_tier_3_colon","Not Applicable","syn24873793","Not Applicable","2022-10-10",TRUE,TRUE +"DataFlow","2f9243dc-cc0e-47fd-aa82-77f1a4c3ca2b","HTAN DFCI",FALSE,"ClinicalDataTier2","minerva","Not Applicable","syn25577443","Not Applicable","2022-10-10",TRUE,TRUE +"DataFlow","55286310-a1c4-4521-841d-54659a8925fb","HTAN DFCI",FALSE,"ClinicalDataTier2","sardana_phase_1_ff_level_2","Not Applicable","syn25998510","Not Applicable","2022-10-10",TRUE,TRUE +"DataFlow","3550a61e-fb0c-4a7d-9464-a09e743edf58","HTAN DFCI",FALSE,"ClinicalDataTier2","sardana_phase_1_ffpe_level_2","Not Applicable","syn25998511","Not Applicable","2022-10-10",TRUE,TRUE +"DataFlow","b135e4a1-c22b-4f58-8e67-31450159de80","HTAN DFCI",FALSE,"ClinicalDataTier2","sardana_pilot_ff_level_2","Not Applicable","syn25998512","Not Applicable","2022-10-10",TRUE,TRUE +"DataFlow","f77aa7b6-ca59-4d7b-9127-405500036749","HTAN DFCI",FALSE,"ClinicalDataTier2","sardana_pilot_ffpe_level_2","Not Applicable","syn25998513","Not Applicable","2022-10-10",TRUE,TRUE +"DataFlow","7a9f466a-83b1-4e24-999b-ed4f6ed1deab","HTAN DFCI",FALSE,"LungCancerTier3","clinical_tier_3_lung","Not Applicable","syn29399968","Not Applicable","2022-10-10",TRUE,TRUE +"DataFlow","856ff83d-d443-4811-a678-a0793c709edb","HTAN Duke",FALSE,"BulkWESLevel1","bulk_DNAseq_level_1","Not Applicable","syn24180956","Not Applicable","2023-06-01",FALSE,FALSE +"DataFlow","311de7c9-2bfc-451f-bd9d-57c081e049aa","HTAN Duke",FALSE,"Demographics","clinical_demographics","Not Applicable","syn24615228","Not Applicable","2023-06-01",FALSE,FALSE +"DataFlow","ab3ebbd4-b0ec-44cf-94e7-5b90021a9786","HTAN Duke",FALSE,"Diagnosis","clinical_diagnosis","Not Applicable","syn24615229","Not Applicable","2023-06-01",FALSE,FALSE +"DataFlow","6ace5d3a-9f1e-43c1-8801-9b4a6fda5374","HTAN Duke",FALSE,"Exposure","clinical_exposure","Not Applicable","syn24615230","Not Applicable","2023-06-01",FALSE,FALSE +"DataFlow","3b4eb0e3-1a5b-4bd9-b78d-8e6355742f2b","HTAN Duke",FALSE,"FamilyHistory","clinical_family_history","Not Applicable","syn24615231","Not Applicable","2023-06-01",FALSE,FALSE +"DataFlow","f5b69611-7d36-4ee2-a759-e5dff7a54c72","HTAN Duke",FALSE,"Therapy","clinical_therapy","Not Applicable","syn24615232","Not Applicable","2023-06-01",FALSE,FALSE +"DataFlow","3c92f977-35a8-4043-974c-0b4acdd47912","HTAN Duke",FALSE,"FollowUp","clinical_follow_up","Not Applicable","syn24615233","Not Applicable","2023-06-01",FALSE,FALSE +"DataFlow","79e6d815-d853-4f97-a1fe-5bd66a1b3cc2","HTAN Duke",FALSE,"MolecularTest","clinical_molecular_test","Not Applicable","syn24860551","Not Applicable","2023-06-01",FALSE,FALSE +"DataFlow","e219a7bb-20db-41db-9a55-1286aa501082","HTAN Duke",FALSE,"MolecularTest","clinical_tier_2","Not Applicable","syn24873778","Not Applicable","2023-06-01",FALSE,FALSE +"DataFlow","a0a479af-f47f-4e12-bd6e-7749a46401f5","HTAN Duke",FALSE,"MolecularTest","clinical_tier_3_breast","Not Applicable","syn24873779","Not Applicable","2023-06-01",FALSE,FALSE +"DataFlow","e5c7f164-f720-4280-9a6c-a9c1c9c6597c","HTAN Duke",FALSE,"OtherAssay","mibi_imaging_level_1","Not Applicable","syn24995125","Not Applicable","2023-06-01",FALSE,FALSE +"DataFlow","5f869900-a7cf-4860-9d1d-16c905b15817","HTAN Duke",FALSE,"Biospecimen","biospecimen","Not Applicable","syn25148276","Not Applicable","2023-06-01",FALSE,FALSE +"DataFlow","8fa58262-1680-44fb-a8b8-6fc4f4680a30","HTAN Duke",FALSE,"Biospecimen","minerva","Not Applicable","syn25472271","Not Applicable","2023-06-01",FALSE,FALSE +"DataFlow","2ee55341-0c97-4069-9b86-7d72b660e731","HTAN Duke",FALSE,"ImagingLevel2","imaging_level_2","Not Applicable","syn25892944","Not Applicable","2023-06-01",FALSE,FALSE +"DataFlow","6b5ffde2-3df8-44cb-a54b-882dbad8dfbe","HTAN Duke",FALSE,"ImagingLevel2","mibi_imaging_level_2","Not Applicable","syn26551262","Not Applicable","2023-06-01",FALSE,FALSE +"DataFlow","27371f2d-3d31-4c8b-b45e-5be04ae08d1c","HTAN Duke",FALSE,"ImagingLevel2","mibi_imaging_level_3","Not Applicable","syn26551280","Not Applicable","2023-06-01",FALSE,FALSE +"DataFlow","479195d5-50f1-43da-a923-d330376a80c6","HTAN Duke",FALSE,"ImagingLevel2","bulk_RNAseq_level_1","Not Applicable","syn30911850","Not Applicable","2023-06-01",FALSE,FALSE +"DataFlow","2285349c-6df1-4756-b503-c8b0b08efc38","HTAN Stanford",FALSE,"BulkWESLevel1","wgs","Not Applicable","syn23445842","Not Applicable","2023-06-01",FALSE,FALSE +"DataFlow","850c3d2b-0392-413d-a73b-173ca0fec0d1","HTAN Stanford",FALSE,"ImagingLevel2","codex","Not Applicable","syn23627808","Not Applicable","2023-06-01",FALSE,FALSE +"DataFlow","a8b95606-8c5f-4fbe-920f-b0e00ae5ce38","HTAN Stanford",FALSE,"BulkRNA-seqLevel1","bulkRNAseq","Not Applicable","syn23627814","Not Applicable","2023-06-01",FALSE,FALSE +"DataFlow","09bf8ebb-8e54-44a5-be48-a860bd354d75","HTAN Stanford",FALSE,"BulkRNA-seqLevel1","bulkATACseq","Not Applicable","syn23627815","Not Applicable","2023-06-01",FALSE,FALSE +"DataFlow","dc8cef67-bd27-4d12-960a-cff0a34557ae","HTAN Stanford",FALSE,"OtherAssay","proteomics","Not Applicable","syn23627817","Not Applicable","2023-06-01",FALSE,FALSE +"DataFlow","8622c9e1-828d-4780-9a56-d1dd7cf962bf","HTAN Stanford",FALSE,"OtherAssay","metabolomics","Not Applicable","syn23627818","Not Applicable","2023-06-01",FALSE,FALSE +"DataFlow","01d9727c-6445-4a11-b8e3-50303a100bf8","HTAN Stanford",FALSE,"OtherAssay","lipidomics","Not Applicable","syn23764189","Not Applicable","2023-06-01",FALSE,FALSE +"DataFlow","c625e67c-1bec-4fde-a91b-4332c9af1ae4","HTAN Stanford",FALSE,"ScATAC-seqLevel1","scatacseq_level_1","Not Applicable","syn24191308","Not Applicable","2023-06-01",FALSE,FALSE +"DataFlow","64757254-b209-4598-8623-9420acb590c6","HTAN Stanford",FALSE,"ScRNA-seqLevel1","scrnaseq_level_1","Not Applicable","syn24191309","Not Applicable","2023-06-01",FALSE,FALSE +"DataFlow","7e5c4ad7-c670-4910-8031-8605cbe64140","HTAN Stanford",FALSE,"Biospecimen","biospecimen","Not Applicable","syn24615280","Not Applicable","2023-06-01",FALSE,FALSE +"DataFlow","e2dbc029-fa80-4732-92e8-00fd8024bd3f","HTAN Stanford",FALSE,"Demographics","clinical_demographics","Not Applicable","syn24615281","Not Applicable","2023-06-01",FALSE,FALSE +"DataFlow","5632d51b-696d-41b9-b705-da54101dd4ea","HTAN Stanford",FALSE,"Diagnosis","clinical_diagnosis","Not Applicable","syn24615282","Not Applicable","2023-06-01",FALSE,FALSE +"DataFlow","8d2ddf41-86f1-4408-81eb-26ca726c4b0a","HTAN Stanford",FALSE,"Exposure","clinical_exposure","Not Applicable","syn24615283","Not Applicable","2023-06-01",FALSE,FALSE +"DataFlow","ff3654ba-07c7-4452-b9ec-2ed82e6dc470","HTAN Stanford",FALSE,"FamilyHistory","clinical_family_history","Not Applicable","syn24615284","Not Applicable","2023-06-01",FALSE,FALSE +"DataFlow","354f9f18-c748-41d6-be0a-8fd51b3fbb58","HTAN Stanford",FALSE,"FollowUp","clinical_follow_up","Not Applicable","syn24615285","Not Applicable","2023-06-01",FALSE,FALSE +"DataFlow","17094c62-bad6-4299-8788-bf99d66cca79","HTAN Stanford",FALSE,"Therapy","clinical_therapy","Not Applicable","syn24615286","Not Applicable","2023-06-01",FALSE,FALSE +"DataFlow","66793d42-442d-484c-bee7-685d3e1319e6","HTAN Stanford",FALSE,"Therapy","clinical_molecular_test","Not Applicable","syn24860552","Not Applicable","2023-06-01",FALSE,FALSE +"DataFlow","1b68b1a2-9388-4325-b5f0-b4c919d551fc","HTAN Stanford",FALSE,"Therapy","clinical_tier_2","Not Applicable","syn24873788","Not Applicable","2023-06-01",FALSE,FALSE +"DataFlow","eeb3d045-302a-4f9a-b5ec-ecac39e33eac","HTAN Stanford",FALSE,"Therapy","clinical_tier_3_colon","Not Applicable","syn24873789","Not Applicable","2022-06-01",TRUE,TRUE +"DataFlow","c19ceac8-3668-4ab3-8898-1dbf4f7fa86f","HTAN Stanford",FALSE,"OtherAssay","scatacseq_level_2","Not Applicable","syn26530163","Not Applicable","2022-06-01",TRUE,TRUE +"DataFlow","97b8acf3-78d1-4ebc-9e9b-922b82f8b2d7","HTAN Stanford",FALSE,"OtherAssay","scatacseq_level_3","Not Applicable","syn26530164","Not Applicable","2022-06-01",TRUE,TRUE +"DataFlow","9cfeae4c-8a51-4972-b7d2-c166aa3b6a46","HTAN Stanford",FALSE,"ScRNA-seqLevel2","scrnaseq_level_2","Not Applicable","syn26530912","Not Applicable","2022-06-01",TRUE,TRUE +"DataFlow","eb49fda7-a854-471c-8ce6-63456b36edbe","HTAN Stanford",FALSE,"ScRNA-seqLevel3","scrnaseq_level_3","Not Applicable","syn26531002","Not Applicable","2021-06-10",TRUE,TRUE +"DataFlow","e4285e39-da0e-44b9-9a5d-c31f29443805","HTAN Stanford",FALSE,"ScRNA-seqLevel3","codex_level_1","Not Applicable","syn27782965","Not Applicable","2021-06-10",TRUE,TRUE +"DataFlow","dfe592dc-0e66-4cab-bdaf-a218ffa44412","HTAN Stanford",FALSE,"ScRNA-seqLevel3","codex_level_2","Not Applicable","syn27782972","Not Applicable","2021-06-10",TRUE,TRUE +"DataFlow","1247b81c-95f5-4f7f-9a8e-49daf8653925","HTAN Stanford",FALSE,"ScRNA-seqLevel3","codex_level_3","Not Applicable","syn27782980","Not Applicable","2021-06-10",TRUE,TRUE +"DataFlow","31d61439-12c3-4555-80b7-9e7b4ecfa237","HTAN Stanford",FALSE,"ScRNA-seqLevel3","codex_level_4","Not Applicable","syn27782993","Not Applicable","2021-06-10",TRUE,TRUE +"DataFlow","0f0fee9c-e2e6-4eec-9818-8a42acb3b5d5","HTAN Stanford",FALSE,"ScRNA-seqLevel3","hic_level_1","Not Applicable","syn39253511","Not Applicable","2021-06-10",TRUE,TRUE +"DataFlow","f50a9f93-944e-4377-b5a9-5478356c2429","HTAN Stanford",FALSE,"ScRNA-seqLevel3","hic_level_2","Not Applicable","syn39253516","Not Applicable","2021-06-10",TRUE,TRUE +"DataFlow","d6bbe7d3-1816-4909-91c2-1509c4125fc0","HTAN TNP SARDANA",FALSE,"Biospecimen","biospecimen","Not Applicable","syn24984556","Not Applicable","2022-04-04",TRUE,TRUE +"DataFlow","8c58406e-6670-44de-97ec-f494bd689bf7","HTAN TNP SARDANA",FALSE,"Demographics","clinical_demographics","Not Applicable","syn24984557","Not Applicable","2022-04-04",TRUE,TRUE +"DataFlow","da8b1bfa-d08a-46fe-bfb5-a76f250f9b3a","HTAN TNP SARDANA",FALSE,"Diagnosis","clinical_diagnosis","Not Applicable","syn24984558","Not Applicable","2022-04-04",TRUE,TRUE +"DataFlow","7701a944-36de-42bb-a027-9aa45d2279b1","HTAN TNP SARDANA",FALSE,"Exposure","clinical_exposure","Not Applicable","syn24984559","Not Applicable","2022-04-04",TRUE,TRUE +"DataFlow","8e8de671-4f0e-40f6-aff1-5b4e460e480f","HTAN TNP SARDANA",FALSE,"FamilyHistory","clinical_family_history","Not Applicable","syn24984560","Not Applicable","2022-04-04",TRUE,TRUE +"DataFlow","cf031c37-a869-4e40-a5c2-c1d4246510ad","HTAN TNP SARDANA",FALSE,"FollowUp","clinical_follow_up","Not Applicable","syn24984561","Not Applicable","2022-04-04",TRUE,TRUE +"DataFlow","842d5808-99a5-419a-9a2b-5dc4120d43d1","HTAN TNP SARDANA",FALSE,"Therapy","clinical_therapy","Not Applicable","syn24984562","Not Applicable","2022-04-04",TRUE,TRUE +"DataFlow","bd52f217-7808-4065-9607-b018e7351c89","HTAN TNP SARDANA",FALSE,"MolecularTest","clinical_molecular_test","Not Applicable","syn24984563","Not Applicable","2022-04-04",TRUE,TRUE +"DataFlow","35ddb9b1-feea-4d0b-8c40-8a10353d1348","HTAN TNP SARDANA",FALSE,"MolecularTest","clinical_tier_2","Not Applicable","syn24984564","Not Applicable","2022-04-04",TRUE,TRUE +"DataFlow","e49b7adc-55ed-49b4-8d2d-910224b8443c","HTAN TNP SARDANA",FALSE,"MolecularTest","clinical_tier_3_breast","Not Applicable","syn24984565","Not Applicable","2022-04-04",TRUE,TRUE +"DataFlow","9d8b4249-328e-480a-a0e3-b7b680cbb2b3","HTAN TNP SARDANA",FALSE,"MolecularTest","clinical_tier_3_glioma","Not Applicable","syn24984566","Not Applicable","2022-04-04",TRUE,TRUE +"DataFlow","bb92a28b-f98e-4c23-b56f-cb7499defccc","HTAN TNP SARDANA",FALSE,"MolecularTest","clinical_tier_3_colon","Not Applicable","syn24984567","Not Applicable","2022-04-04",TRUE,TRUE +"DataFlow","dc826200-f994-4f91-90a3-c7409a51a9ca","HTAN TNP SARDANA",FALSE,"MolecularTest","clinical_tier_3_lung","Not Applicable","syn24984568","Not Applicable","2022-04-04",TRUE,TRUE +"DataFlow","14dcd423-c058-45ac-968b-f0e15b6f0306","HTAN TNP SARDANA",FALSE,"MolecularTest","clinical_tier_3_sarcoma","Not Applicable","syn24984569","Not Applicable","2022-04-04",TRUE,TRUE +"DataFlow","cc751682-cb9b-4648-846b-6f2027920205","HTAN TNP SARDANA",FALSE,"MolecularTest","clinical_tier_3_ovarian","Not Applicable","syn24984570","Not Applicable","2022-04-04",TRUE,TRUE +"DataFlow","fa474d29-da0d-4416-a06c-e0dad155a4d6","HTAN TNP SARDANA",FALSE,"MolecularTest","clinical_tier_3_neuroblastoma","Not Applicable","syn24984571","Not Applicable","2022-04-04",TRUE,TRUE +"DataFlow","9a5572d4-b4c1-4fd7-a68f-a178eef39680","HTAN TNP SARDANA",FALSE,"MolecularTest","clinical_tier_3_pancreatic","Not Applicable","syn24984572","Not Applicable","2022-04-04",TRUE,TRUE +"DataFlow","64966c05-6036-480b-b290-a441d20b9754","HTAN TNP SARDANA",FALSE,"MolecularTest","clinical_tier_3_melanoma","Not Applicable","syn24984573","Not Applicable","2022-04-04",TRUE,TRUE +"DataFlow","8639d1cf-5018-47fa-a5a0-4e48463f7f32","HTAN TNP SARDANA",FALSE,"MolecularTest","clinical_tier_3_acute_lymphoblastic_leukemia","Not Applicable","syn24984574","Not Applicable","2022-04-04",TRUE,TRUE +"DataFlow","be621df4-90ff-4573-8044-a76b4de47984","HTAN TNP SARDANA",FALSE,"ImagingLevel2","imaging_level_2","Not Applicable","syn24989038","Not Applicable","2022-04-04",TRUE,TRUE +"DataFlow","b4b4db06-1fd3-41a5-ae45-dfe16f07d92f","HTAN TNP SARDANA",FALSE,"ImagingLevel2","minerva","Not Applicable","syn25472275","Not Applicable","2022-04-04",TRUE,TRUE +"DataFlow","f5befc10-ce37-4111-983b-10fb0df65430","HTAN TNP SARDANA",FALSE,"ImagingLevel2","sardana_phase_1_ff_level_2","Not Applicable","syn26486693","Not Applicable","2022-04-04",TRUE,TRUE +"DataFlow","d7b3888f-a28a-419d-8925-1515f450fbb7","HTAN TNP SARDANA",FALSE,"ImagingLevel2","sardana_phase_1_ffpe_level_2","Not Applicable","syn26486694","Not Applicable","2022-04-04",TRUE,TRUE +"DataFlow","a6f8f27a-0728-4fe2-b8b7-75a4375f69de","HTAN TNP SARDANA",FALSE,"ImagingLevel2","codex_level_1","Not Applicable","syn27790444","Not Applicable","2022-04-04",TRUE,TRUE +"DataFlow","1c122560-75df-4362-8447-694d40abddf6","HTAN TNP SARDANA",FALSE,"ImagingLevel2","imaging_level_4","Not Applicable","syn35469108","Not Applicable","2022-04-04",TRUE,TRUE +"DataFlow","d0afd888-8220-47f7-98aa-5e831747e75c","HTAN SRRS",FALSE,"SRRSBiospecimen","biospecimen","Not Applicable","syn26127200","Not Applicable","2022-04-04",TRUE,TRUE +"DataFlow","a4150af9-00fd-4d43-932d-924f6422f1a1","HTAN SRRS",FALSE,"SRRSBiospecimen","clinical_demographics","Not Applicable","syn26128478","Not Applicable","2022-04-04",TRUE,TRUE +"DataFlow","40e51afc-6992-402c-b0d4-98becd4d3aca","HTAN SRRS",FALSE,"SRRSBiospecimen","clinical_diagnosis","Not Applicable","syn26128479","Not Applicable","2022-04-04",TRUE,TRUE +"DataFlow","747a9ba1-196f-487b-966e-726926ea4ec2","HTAN SRRS",FALSE,"SRRSBiospecimen","clinical_exposure","Not Applicable","syn26128480","Not Applicable","2022-04-04",TRUE,TRUE +"DataFlow","21c3c393-9459-4e7f-bd1d-3608f998ad5e","HTAN SRRS",FALSE,"SRRSBiospecimen","clinical_family_history","Not Applicable","syn26128481","Not Applicable","2022-04-04",TRUE,TRUE +"DataFlow","0a46eebd-809b-4e69-b67e-9243664d5b71","HTAN SRRS",FALSE,"SRRSBiospecimen","clinical_follow_up","Not Applicable","syn26128482","Not Applicable","2022-04-04",TRUE,TRUE +"DataFlow","a0e96db4-af70-47a8-830b-40a164527d00","HTAN SRRS",FALSE,"SRRSBiospecimen","clinical_therapy","Not Applicable","syn26128483","Not Applicable","2022-04-04",TRUE,TRUE +"DataFlow","114598b5-4599-4f75-a478-652f23de47cc","HTAN SRRS",FALSE,"SRRSBiospecimen","clinical_molecular_test","Not Applicable","syn26128484","Not Applicable","2022-04-04",TRUE,TRUE +"DataFlow","9502abd9-3059-4623-8e69-3ac7797801a6","HTAN SRRS",FALSE,"SRRSClinicalDataTier2","clinical_tier_2","Not Applicable","syn26128485","Not Applicable","2022-04-04",TRUE,TRUE +"DataFlow","36c444b9-6f49-4ca3-b3b1-95ab01e1c2db","HTAN SRRS",FALSE,"SRRSClinicalDataTier2","clinical_tier_3_melanoma","Not Applicable","syn26128486","Not Applicable","2022-04-04",TRUE,TRUE +"DataFlow","bb42742b-ba43-45b5-8fcf-789b342a8738","HTAN SRRS",FALSE,"SRRSClinicalDataTier2","clinical_tier_3_breast","Not Applicable","syn26128488","Not Applicable","2022-04-04",TRUE,TRUE +"DataFlow","54d89f27-e3f7-47d5-865d-44c25c50ff76","HTAN SRRS",FALSE,"SRRSClinicalDataTier2","clinical_tier_3_glioma","Not Applicable","syn26128489","Not Applicable","2022-04-04",TRUE,TRUE +"DataFlow","f79167f3-3fca-4a0d-b927-5286c9761623","HTAN SRRS",FALSE,"SRRSClinicalDataTier2","clinical_tier_3_acute_lymphoblastic_leukemia","Not Applicable","syn26128490","Not Applicable","2022-04-04",TRUE,TRUE +"DataFlow","038287cd-f3de-481e-afa3-a5aba2c026a8","HTAN SRRS",FALSE,"SRRSClinicalDataTier2","clinical_tier_3_colon","Not Applicable","syn26128491","Not Applicable","2022-04-04",TRUE,TRUE +"DataFlow","dc5dea82-9ac6-4563-b7be-2dff290b6cb8","HTAN SRRS",FALSE,"SRRSClinicalDataTier2","clinical_tier_3_lung","Not Applicable","syn26128492","Not Applicable","2022-04-04",TRUE,TRUE +"DataFlow","75ea5ffc-ce17-4815-bac8-25f7fb6ae394","HTAN SRRS",FALSE,"SRRSClinicalDataTier2","clinical_tier_3_sarcoma","Not Applicable","syn26128493","Not Applicable","2022-04-04",TRUE,TRUE +"DataFlow","105af51a-dab8-4fa4-a0aa-710c2efe9a8f","HTAN SRRS",FALSE,"SRRSClinicalDataTier2","clinical_tier_3_ovarian","Not Applicable","syn26128494","Not Applicable","2022-04-04",TRUE,TRUE +"DataFlow","fa9fb057-db3a-40b7-97af-58a7f5098a1a","HTAN SRRS",FALSE,"SRRSClinicalDataTier2","clinical_tier_3_neuroblastoma","Not Applicable","syn26128495","Not Applicable","2022-04-04",TRUE,TRUE +"DataFlow","3ec896a5-3e11-42c6-bcc9-4d606fb4d272","HTAN SRRS",FALSE,"SRRSClinicalDataTier2","clinical_tier_3_pancreatic","Not Applicable","syn26128496","Not Applicable","2022-04-04",TRUE,TRUE +"DataFlow","b091ed43-ed94-49f1-bc3f-c722aafb4525","HTAN SRRS",FALSE,"SRRSClinicalDataTier2","imaging_level_1","Not Applicable","syn26275040","Not Applicable","2022-04-04",TRUE,TRUE +"DataFlow","821d4add-ab6f-488b-8027-1eb4fb2186e1","HTAN SRRS",FALSE,"SRRSImagingLevel2","imaging_level_2","Not Applicable","syn26275041","Not Applicable","2021-01-01",TRUE,TRUE +"DataFlow","835699cd-e864-46a2-a193-81caeee572bd","HTAN SRRS",FALSE,"SRRSImagingLevel2","imaging_level_3","Not Applicable","syn26275042","Not Applicable","2021-01-01",TRUE,TRUE +"DataFlow","fb11b3fe-46ed-4962-9484-18a1a9a5252d","HTAN SRRS",FALSE,"SRRSImagingLevel2","imaging_level_4","Not Applicable","syn26275043","Not Applicable","2021-01-01",TRUE,TRUE +"DataFlow","d9312e52-91e1-4124-a383-073b1974d6e5","HTAN SRRS",FALSE,"SRRSImagingLevel2","staging","Not Applicable","syn42467311","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","d7d3e375-80af-4232-9fd3-56afaf5badda","HTAN SRRS",FALSE,"SRRSImagingLevel2","BU","Not Applicable","syn42559081","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","433ee941-17bb-4799-a653-ce2d107a2813","HTAN Center C",FALSE,"ImagingLevel2","imaging_level_2","Not Applicable","syn32596094","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","f37d6126-abea-4c37-849c-41e41f023570","HTAN Center C",FALSE,"ImagingLevel2","demographics","Not Applicable","syn32596098","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","233407a7-876e-482f-a860-e9ba2563ca4b","HTAN Center C",FALSE,"ImagingLevel2","imaging_level_3_channels","Not Applicable","syn33005137","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","d51b3531-89ae-4ab2-ba47-af6133faee46","HTAN Center C",FALSE,"ImagingLevel2","test-no-files","Not Applicable","syn33051814","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","547703d0-4a20-454d-8eb6-31099df54945","HTAN Center C",FALSE,"ImagingLevel2","Publications _Test","Not Applicable","syn33282461","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","795c1800-b2be-4fbf-b347-51c5e557e3d8","HTAN Center C",FALSE,"ScRNA-seqLevel1","test-cross-manifest","Not Applicable","syn33519723","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","774180c4-53f0-46c9-9b34-171cd969c86f","HTAN Center C",FALSE,"Biospecimen","test-submit","Not Applicable","syn35565383","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","a0e650d9-27d5-4649-b73a-d77d6c26a2e0","HTAN Center C",FALSE,"OtherAssay","test-deleted-files","Not Applicable","syn35903908","Not Applicable","Not Applicable",FALSE,FALSE +"DataFlow","02b03b07-b090-44c3-9a3f-cf1a86bece3b","HTAN Center C",FALSE,"OtherAssay","test_srrs","Not Applicable","syn40900734","Not Applicable","Not Applicable",FALSE,FALSE diff --git a/test-manifests/synapse_storage_manifest_dataflow.json b/test-manifests/synapse_storage_manifest_dataflow.json new file mode 100644 index 0000000..e71966a --- /dev/null +++ b/test-manifests/synapse_storage_manifest_dataflow.json @@ -0,0 +1,80 @@ +[ + { + "Component": "DataFlow", + "contributor": "FAIR demo data", + "data_portal": "FALSE", + "dataset": "Biospecimen", + "dataset_name": "biospecimen", + "embargo": "Not Applicable", + "entity_id": "syn35294937", + "num_items": "1", + "release_scheduled": "Not Applicable", + "released": "FALSE", + "standard_compliance": "FALSE" + }, + { + "Component": "DataFlow", + "contributor": "FAIR demo data", + "data_portal": "FALSE", + "dataset": "Patient", + "dataset_name": "patient", + "embargo": "Not Applicable", + "entity_id": "syn36003517", + "num_items": "3", + "release_scheduled": "Not Applicable", + "released": "FALSE", + "standard_compliance": "FALSE" + }, + { + "Component": "DataFlow", + "contributor": "FAIR demo data", + "data_portal": "FALSE", + "dataset": "BulkRNA-seqAssay", + "dataset_name": "bulk RNA seq", + "embargo": "Not Applicable", + "entity_id": "syn36003526", + "num_items": "2", + "release_scheduled": "Not Applicable", + "released": "FALSE", + "standard_compliance": "FALSE" + }, + { + "Component": "DataFlow", + "contributor": "FAIR demo data", + "data_portal": "FALSE", + "dataset": "Patient", + "dataset_name": "MockComponent", + "embargo": "Not Applicable", + "entity_id": "syn44539618", + "num_items": "4", + "release_scheduled": "Not Applicable", + "released": "FALSE", + "standard_compliance": "FALSE" + }, + { + "Component": "DataFlow", + "contributor": "FAIR demo data", + "data_portal": "FALSE", + "dataset": "Patient", + "dataset_name": "test", + "embargo": "Not Applicable", + "entity_id": "syn45266807", + "num_items": "4", + "release_scheduled": "Not Applicable", + "released": "FALSE", + "standard_compliance": "FALSE" + }, + { + "Component": "DataFlow", + "contributor": "FAIR demo data", + "data_portal": "FALSE", + "dataset": "Not Applicable", + "dataset_name": "DataFlowStatus", + "embargo": "Not Applicable", + "entity_id": "syn50865023", + "num_items": "Not Applicable", + "release_scheduled": "Not Applicable", + "released": "FALSE", + "standard_compliance": "FALSE" + } +] \ No newline at end of file diff --git a/test-manifests/synapse_storage_manifest_patient_two.csv b/test-manifests/synapse_storage_manifest_patient_two.csv new file mode 100644 index 0000000..37b93e7 --- /dev/null +++ b/test-manifests/synapse_storage_manifest_patient_two.csv @@ -0,0 +1,601 @@ +Patient ID,Sex,Year of Birth,Diagnosis,Component,Cancer Type,Family History,entityId +1,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +2,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +3,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +4,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +5,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +6,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +7,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +8,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +9,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +10,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +11,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +12,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +13,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +14,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +15,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +16,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +17,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +18,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +19,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +20,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +21,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +22,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +23,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +24,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +25,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +26,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +27,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +28,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +29,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +30,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +31,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +32,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +33,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +34,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +35,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +36,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +37,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +38,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +39,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +40,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +41,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +42,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +43,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +44,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +45,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +46,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +47,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +48,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +49,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +50,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +51,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +52,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +53,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +54,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +55,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +56,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +57,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +58,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +59,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +60,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +61,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +62,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +63,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +64,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +65,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +66,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +67,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +68,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +69,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +70,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +71,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +72,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +73,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +74,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +75,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +76,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +77,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +78,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +79,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +80,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +81,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +82,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +83,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +84,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +85,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +86,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +87,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +88,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +89,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +90,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +91,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +92,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +93,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +94,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +95,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +96,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +97,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +98,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +99,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +100,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +101,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +102,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +103,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +104,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +105,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +106,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +107,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +108,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +109,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +110,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +111,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +112,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +113,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +114,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +115,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +116,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +117,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +118,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +119,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +120,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +121,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +122,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +123,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +124,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +125,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +126,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +127,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +128,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +129,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +130,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +131,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +132,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +133,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +134,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +135,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +136,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +137,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +138,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +139,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +140,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +141,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +142,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +143,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +144,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +145,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +146,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +147,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +148,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +149,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +150,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +151,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +152,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +153,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +154,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +155,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +156,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +157,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +158,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +159,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +160,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +161,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +162,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +163,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +164,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +165,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +166,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +167,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +168,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +169,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +170,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +171,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +172,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +173,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +174,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +175,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +176,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +177,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +178,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +179,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +180,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +181,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +182,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +183,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +184,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +185,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +186,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +187,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +188,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +189,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +190,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +191,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +192,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +193,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +194,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +195,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +196,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +197,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +198,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +199,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +200,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +201,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +202,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +203,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +204,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +205,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +206,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +207,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +208,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +209,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +210,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +211,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +212,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +213,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +214,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +215,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +216,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +217,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +218,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +219,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +220,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +221,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +222,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +223,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +224,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +225,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +226,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +227,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +228,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +229,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +230,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +231,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +232,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +233,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +234,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +235,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +236,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +237,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +238,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +239,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +240,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +241,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +242,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +243,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +244,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +245,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +246,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +247,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +248,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +249,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +250,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +251,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +252,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +253,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +254,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +255,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +256,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +257,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +258,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +259,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +260,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +261,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +262,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +263,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +264,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +265,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +266,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +267,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +268,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +269,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +270,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +271,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +272,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +273,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +274,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +275,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +276,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +277,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +278,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +279,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +280,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +281,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +282,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +283,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +284,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +285,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +286,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +287,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +288,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +289,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +290,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +291,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +292,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +293,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +294,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +295,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +296,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +297,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +298,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +299,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +300,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +301,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +302,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +303,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +304,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +305,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +306,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +307,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +308,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +309,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +310,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +311,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +312,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +313,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +314,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +315,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +316,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +317,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +318,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +319,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +320,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +321,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +322,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +323,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +324,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +325,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +326,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +327,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +328,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +329,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +330,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +331,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +332,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +333,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +334,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +335,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +336,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +337,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +338,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +339,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +340,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +341,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +342,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +343,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +344,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +345,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +346,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +347,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +348,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +349,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +350,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +351,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +352,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +353,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +354,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +355,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +356,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +357,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +358,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +359,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +360,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +361,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +362,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +363,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +364,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +365,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +366,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +367,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +368,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +369,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +370,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +371,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +372,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +373,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +374,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +375,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +376,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +377,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +378,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +379,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +380,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +381,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +382,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +383,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +384,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +385,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +386,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +387,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +388,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +389,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +390,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +391,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +392,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +393,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +394,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +395,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +396,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +397,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +398,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +399,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +400,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +401,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +402,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +403,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +404,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +405,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +406,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +407,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +408,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +409,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +410,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +411,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +412,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +413,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +414,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +415,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +416,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +417,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +418,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +419,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +420,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +421,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +422,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +423,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +424,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +425,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +426,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +427,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +428,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +429,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +430,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +431,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +432,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +433,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +434,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +435,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +436,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +437,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +438,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +439,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +440,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +441,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +442,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +443,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +444,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +445,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +446,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +447,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +448,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +449,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +450,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +451,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +452,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +453,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +454,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +455,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +456,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +457,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +458,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +459,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +460,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +461,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +462,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +463,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +464,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +465,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +466,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +467,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +468,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +469,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +470,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +471,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +472,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +473,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +474,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +475,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +476,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +477,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +478,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +479,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +480,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +481,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +482,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +483,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +484,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +485,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +486,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +487,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +488,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +489,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +490,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +491,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +492,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +493,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +494,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +495,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +496,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +497,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +498,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +499,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +500,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +501,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +502,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +503,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +504,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +505,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +506,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +507,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +508,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +509,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +510,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +511,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +512,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +513,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +514,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +515,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +516,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +517,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +518,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +519,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +520,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +521,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +522,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +523,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +524,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +525,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +526,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +527,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +528,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +529,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +530,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +531,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +532,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +533,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +534,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +535,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +536,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +537,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +538,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +539,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +540,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +541,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +542,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +543,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +544,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +545,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +546,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +547,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +548,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +549,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +550,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +551,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +552,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +553,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +554,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +555,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +556,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +557,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +558,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +559,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +560,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +561,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +562,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +563,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +564,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +565,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +566,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +567,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +568,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +569,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +570,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +571,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +572,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +573,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +574,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +575,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +576,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +577,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +578,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +579,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +580,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +581,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +582,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +583,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +584,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +585,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +586,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +587,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +588,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +589,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +590,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +591,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +592,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +593,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +594,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +595,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +596,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +597,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +598,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +599,Female,,Healthy,Patient,Breast,"Colorectal,Breast", +600,Female,,Healthy,Patient,Breast,"Colorectal,Breast", diff --git a/tests/__init__.py b/tests/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/tests/conftest.py b/tests/conftest.py new file mode 100644 index 0000000..5aff3c2 --- /dev/null +++ b/tests/conftest.py @@ -0,0 +1,37 @@ +import logging +import pytest +import time +import requests +import concurrent.futures +from concurrent.futures import ThreadPoolExecutor + +logging.basicConfig(level=logging.DEBUG) +logger = logging.getLogger(__name__) +import os + +@pytest.fixture(scope="session") +def get_token(): + # try using synapse access token + if "SYNAPSE_ACCESS_TOKEN" in os.environ: + token=os.environ["SYNAPSE_ACCESS_TOKEN"] + elif "TOKEN" in os.environ: + token = os.environ["TOKEN"] + else: + logger.debug('TOKEN is missing. Please add synapse access token') + yield token + +@pytest.fixture(scope="session") +def example_data_model(): + yield "https://raw.githubusercontent.com/Sage-Bionetworks/schematic/develop/tests/data/example.model.jsonld" + +@pytest.fixture(scope="session") +def HTAN_data_model(): + yield "https://raw.githubusercontent.com/ncihtan/data-models/main/HTAN.model.jsonld" + + +def fetch(url: str, params: dict): + return requests.get(url, params=params) + +@pytest.fixture(scope="session") +def fetch_request(): + return fetch diff --git a/tests/latency.csv b/tests/latency.csv new file mode 100644 index 0000000..e040450 --- /dev/null +++ b/tests/latency.csv @@ -0,0 +1,2 @@ +Description,Date Time,Number of Concurrent Request,Number of errors,Number of 504 errors,Latency +Generating a new google sheet using the example data model,03/17/2023 16:35:19,3,0,0,8.37 diff --git a/tests/test_manifest_generate.py b/tests/test_manifest_generate.py new file mode 100644 index 0000000..29e1a1d --- /dev/null +++ b/tests/test_manifest_generate.py @@ -0,0 +1,75 @@ + +import logging +import pytest +import requests +import datetime +from datetime import datetime +import time +import concurrent.futures +from concurrent.futures import ThreadPoolExecutor +import csv +import pandas as pd +# from .general import apiTester + +logging.basicConfig(level=logging.DEBUG) +logger = logging.getLogger(__name__) + +CONCURRENT_REQUEST = 3 +TIME_OUT_LIMIT = 30 + +class TestManifestOperation: + @pytest.mark.parametrize("output_format", ["google_sheet"]) + def test_generate_manifest(self, get_token, example_data_model, fetch_request, output_format): + base_url = "https://schematic-dev.api.sagebionetworks.org/v1/manifest/generate" + input_token = get_token + + params = { + "schema_url": example_data_model, + "title": "Example", + "data_type": ["Patient"], + "use_annotations": False, + "input_token": input_token, + "output_format": output_format + } + + with ThreadPoolExecutor() as executor: + total_error_num = 0 + total_504_num = 0 + start_time = time.time() + # get current date time object + now = datetime.now() + dt_string = now.strftime("%m/%d/%Y %H:%M:%S") + # set an empty dictionary to store date time object + + futures = [ + executor.submit(fetch_request, base_url, params) for x in range(CONCURRENT_REQUEST) + ] + for f in concurrent.futures.as_completed(futures): + try: + status_code = f.result().status_code + assert status_code == 200 + if status_code != 200: + total_error_num = total_error_num + 1 + logger.debug("Error code: ", status_code) + if status_code == 504: + total_504_num = total_504_num + 1 + except Exception as exc: + logger.debug(f"generated an exception:{exc}") + time_diff = round(time.time() - start_time, 2) + + # all requests should finish within 30 seconds + assert time_diff < TIME_OUT_LIMIT + + if output_format == "google_sheet": + description = "Generating a new google sheet using the example data model" + else: + description = "Generating a new excel sheet using the example data model" + + fields={"Description": description, "Date time": dt_string, "Number of Concurrent Requests": CONCURRENT_REQUEST, "Number of error": total_error_num, "total 504 error":total_504_num, "Latency": time_diff} + df = pd.DataFrame(fields, index=[0]) + df.to_csv("latency.csv", mode='a', index=False, header=False) + + + + + diff --git a/wrk/get-node-dependencies.py b/wrk/get-node-dependencies.py deleted file mode 100644 index 73de7c6..0000000 --- a/wrk/get-node-dependencies.py +++ /dev/null @@ -1,91 +0,0 @@ -import subprocess -import sys - -# -c, --connections Connections to keep open -# -d, --duration Duration of test -# -t, --threads Number of threads to use - -# -s, --script Load Lua script file -# -H, --header Add header to request -# --latency Print latency statistics -# --timeout Socket/request timeout -# -v, --version Print version details - - -# subprocess - -result_one = subprocess.run( - [ - "wrk", - "-c1", - "-d30", - "-t1", - "--latency", - "https://schematic.dnt-dev.sagebase.org/v1/explorer/get_node_dependencies?schema_url=https%3A%2F%2Fraw.githubusercontent.com%2FSage-Bionetworks%2Fschematic%2Fdevelop%2Ftests%2Fdata%2Fexample.model.jsonld&source_node=Patient&return_display_names=true&return_schema_ordered=true", - ], - stdout=subprocess.PIPE, -) - - -result_two = subprocess.run( - [ - "wrk", - "-c5", - "-d30", - "-t1", - "--latency", - "https://schematic.dnt-dev.sagebase.org/v1/explorer/get_node_dependencies?schema_url=https%3A%2F%2Fraw.githubusercontent.com%2FSage-Bionetworks%2Fschematic%2Fdevelop%2Ftests%2Fdata%2Fexample.model.jsonld&source_node=Patient&return_display_names=true&return_schema_ordered=true", - ], - stdout=subprocess.PIPE, -) - - -result_three = subprocess.run( - [ - "wrk", - "-c10", - "-d30", - "-t1", - "--latency", - "https://schematic.dnt-dev.sagebase.org/v1/explorer/get_node_dependencies?schema_url=https%3A%2F%2Fraw.githubusercontent.com%2FSage-Bionetworks%2Fschematic%2Fdevelop%2Ftests%2Fdata%2Fexample.model.jsonld&source_node=Patient&return_display_names=true&return_schema_ordered=true", - ], - stdout=subprocess.PIPE, -) - -result_four = subprocess.run( - [ - "wrk", - "-c20", - "-d30", - "-t1", - "--latency", - "https://schematic.dnt-dev.sagebase.org/v1/explorer/get_node_dependencies?schema_url=https%3A%2F%2Fraw.githubusercontent.com%2FSage-Bionetworks%2Fschematic%2Fdevelop%2Ftests%2Fdata%2Fexample.model.jsonld&source_node=Patient&return_display_names=true&return_schema_ordered=true", - ], - stdout=subprocess.PIPE, -) - - -result_five = subprocess.run( - [ - "wrk", - "-c40", - "-d30", - "--timeout", - "100s", - "-t1", - "--latency", - "https://schematic.dnt-dev.sagebase.org/v1/explorer/get_node_dependencies?schema_url=https%3A%2F%2Fraw.githubusercontent.com%2FSage-Bionetworks%2Fschematic%2Fdevelop%2Ftests%2Fdata%2Fexample.model.jsonld&source_node=Patient&return_display_names=true&return_schema_ordered=true", - ], - stdout=subprocess.PIPE, -) - -with open("get-node-dependencies.txt", "w") as writer: - writer.write(result_one.stdout.decode("utf-8")) - writer.write("\n") - writer.write(result_two.stdout.decode("utf-8")) - writer.write("\n") - writer.write(result_three.stdout.decode("utf-8")) - writer.write("\n") - writer.write(result_four.stdout.decode("utf-8")) - writer.write("\n") - writer.write(result_five.stdout.decode("utf-8")) diff --git a/wrk/get-node-dependencies.txt b/wrk/get-node-dependencies.txt deleted file mode 100644 index 4d94f4a..0000000 --- a/wrk/get-node-dependencies.txt +++ /dev/null @@ -1,69 +0,0 @@ -Running 30s test @ https://schematic.dnt-dev.sagebase.org/v1/explorer/get_node_dependencies?schema_url=https%3A%2F%2Fraw.githubusercontent.com%2FSage-Bionetworks%2Fschematic%2Fdevelop%2Ftests%2Fdata%2Fexample.model.jsonld&source_node=Patient&return_display_names=true&return_schema_ordered=true - 1 threads and 1 connections - Thread Stats Avg Stdev Max +/- Stdev - Latency 80.14ms 51.14ms 495.63ms 95.91% - Req/Sec 13.52 5.21 20.00 55.36% - Latency Distribution - 50% 67.95ms - 75% 75.60ms - 90% 101.64ms - 99% 374.02ms - 402 requests in 30.06s, 109.53KB read -Requests/sec: 13.37 -Transfer/sec: 3.64KB - -Running 30s test @ https://schematic.dnt-dev.sagebase.org/v1/explorer/get_node_dependencies?schema_url=https%3A%2F%2Fraw.githubusercontent.com%2FSage-Bionetworks%2Fschematic%2Fdevelop%2Ftests%2Fdata%2Fexample.model.jsonld&source_node=Patient&return_display_names=true&return_schema_ordered=true - 1 threads and 5 connections - Thread Stats Avg Stdev Max +/- Stdev - Latency 142.34ms 120.10ms 695.72ms 88.94% - Req/Sec 43.42 18.38 80.00 71.01% - Latency Distribution - 50% 94.02ms - 75% 163.50ms - 90% 287.92ms - 99% 600.84ms - 1237 requests in 30.10s, 337.03KB read -Requests/sec: 41.10 -Transfer/sec: 11.20KB - -Running 30s test @ https://schematic.dnt-dev.sagebase.org/v1/explorer/get_node_dependencies?schema_url=https%3A%2F%2Fraw.githubusercontent.com%2FSage-Bionetworks%2Fschematic%2Fdevelop%2Ftests%2Fdata%2Fexample.model.jsonld&source_node=Patient&return_display_names=true&return_schema_ordered=true - 1 threads and 10 connections - Thread Stats Avg Stdev Max +/- Stdev - Latency 251.56ms 190.63ms 1.17s 81.93% - Req/Sec 44.71 18.61 101.00 71.33% - Latency Distribution - 50% 207.97ms - 75% 328.95ms - 90% 522.65ms - 99% 842.02ms - 1310 requests in 30.04s, 356.92KB read -Requests/sec: 43.60 -Transfer/sec: 11.88KB - -Running 30s test @ https://schematic.dnt-dev.sagebase.org/v1/explorer/get_node_dependencies?schema_url=https%3A%2F%2Fraw.githubusercontent.com%2FSage-Bionetworks%2Fschematic%2Fdevelop%2Ftests%2Fdata%2Fexample.model.jsonld&source_node=Patient&return_display_names=true&return_schema_ordered=true - 1 threads and 20 connections - Thread Stats Avg Stdev Max +/- Stdev - Latency 423.18ms 237.05ms 1.34s 67.53% - Req/Sec 47.75 20.38 110.00 65.87% - Latency Distribution - 50% 399.77ms - 75% 573.70ms - 90% 747.17ms - 99% 1.04s - 1425 requests in 30.06s, 388.26KB read -Requests/sec: 47.41 -Transfer/sec: 12.92KB - -Running 30s test @ https://schematic.dnt-dev.sagebase.org/v1/explorer/get_node_dependencies?schema_url=https%3A%2F%2Fraw.githubusercontent.com%2FSage-Bionetworks%2Fschematic%2Fdevelop%2Ftests%2Fdata%2Fexample.model.jsonld&source_node=Patient&return_display_names=true&return_schema_ordered=true - 1 threads and 40 connections - Thread Stats Avg Stdev Max +/- Stdev - Latency 824.42ms 244.70ms 1.70s 67.09% - Req/Sec 47.83 21.67 130.00 65.98% - Latency Distribution - 50% 808.38ms - 75% 999.73ms - 90% 1.15s - 99% 1.40s - 1419 requests in 30.00s, 386.62KB read -Requests/sec: 47.29 -Transfer/sec: 12.89KB diff --git a/wrk/post.lua b/wrk/post.lua deleted file mode 100644 index 2fecfff..0000000 --- a/wrk/post.lua +++ /dev/null @@ -1,40 +0,0 @@ --- example HTTP POST script which demonstrates setting the --- HTTP method, body, and adding a header - --- wrk.method = "POST" --- local f = io.open("/Users/lpeng/Documents/schematic-infra/schematic-infra/test-manifests/synapse_storage_manifest_patient.csv", "rb") --- wrk.body = f:read("*all") --- wrk.headers["Content-Type"] = "multipart/form-data" - - --- function read_file(path) --- local file, errorMessage = io.open(path, "rb") --- if not file then --- error("Could not read the file:" .. errorMessage .. "\n") --- end - --- local content = file:read "*all" --- file:close() --- return content --- end - - --- local FileBody = read_file("/Users/lpeng/Downloads/synapse-storage-manifest-big.csv") --- local Filename = "synapse-storage-manifest-big.csv" --- local ContentDisposition = 'Content-Disposition: form-data; filename="' .. Filename .. '";type=text/csv' --- local ContentType = 'Content-Type: multipart/form-data' - - --- wrk.method = "POST" --- wrk.headers["Content-Type"] = "multipart/form-data" --- wrk.body = ContentDisposition .. ContentType .. FileBody - -wrk.method = "POST" -wrk.headers["Content-Type"] = "text/csv" - -counter = 0 -request = function() - counter = counter + 1 - os.execute("/Users/lpeng/Documents/schematic-infra/schematic-infra/wrk/send-csv.sh") - return wrk.format("POST", "/", wrk.headers, nil) -end \ No newline at end of file From 872cdde603964972fd5ff2f30612ecd69877dd83 Mon Sep 17 00:00:00 2001 From: linglp Date: Fri, 17 Mar 2023 17:21:56 -0400 Subject: [PATCH 23/36] update version number --- cdk.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cdk.json b/cdk.json index 46030c0..58840d0 100644 --- a/cdk.json +++ b/cdk.json @@ -31,7 +31,7 @@ "aws-cn" ], "dev": { - "IMAGE_PATH_AND_TAG": "ghcr.io/sage-bionetworks/schematic:0.1.34-beta", + "IMAGE_PATH_AND_TAG": "ghcr.io/sage-bionetworks/schematic:0.1.35-beta", "AWS_DEFAULT_REGION": "us-east-1", "PORT": "7080", "COST_CENTER": "NO PROGRAM / 000000", From ffecfb38c5bd35b4482baa850067f60eecbcfc3f Mon Sep 17 00:00:00 2001 From: linglp Date: Fri, 17 Mar 2023 17:52:58 -0400 Subject: [PATCH 24/36] add function to export to csv --- tests/conftest.py | 17 +++++++++++----- tests/latency.csv | 7 +++++++ tests/test_manifest_generate.py | 36 +++++++++++++++++++++------------ 3 files changed, 42 insertions(+), 18 deletions(-) diff --git a/tests/conftest.py b/tests/conftest.py index 5aff3c2..d806904 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -1,13 +1,11 @@ +import os import logging import pytest -import time import requests -import concurrent.futures -from concurrent.futures import ThreadPoolExecutor +import pandas as pd logging.basicConfig(level=logging.DEBUG) logger = logging.getLogger(__name__) -import os @pytest.fixture(scope="session") def get_token(): @@ -28,10 +26,19 @@ def example_data_model(): def HTAN_data_model(): yield "https://raw.githubusercontent.com/ncihtan/data-models/main/HTAN.model.jsonld" - def fetch(url: str, params: dict): return requests.get(url, params=params) +def csv_export(description, dt_string, CONCURRENT_REQUEST, total_error_num, total_504_num, time_diff): + fields={"Description": description, "Date time": dt_string, "Number of Concurrent Requests": CONCURRENT_REQUEST, "Number of error": total_error_num, "total 504 error":total_504_num, "Latency": time_diff} + df = pd.DataFrame(fields, index=[0]) + df.to_csv("latency.csv", mode='a', index=False, header=False) + @pytest.fixture(scope="session") def fetch_request(): return fetch + +@pytest.fixture(scope="session") +def output_to_csv(): + return csv_export + diff --git a/tests/latency.csv b/tests/latency.csv index 40f872b..c102f04 100644 --- a/tests/latency.csv +++ b/tests/latency.csv @@ -2,3 +2,10 @@ Description,Date Time,Number of Concurrent Request,Number of errors,Number of 50 Generating a new google sheet using the example data model,03/17/2023 16:35:19,3,0,0,8.37 Generating a new google sheet using the example data model,03/17/2023 17:18:32,3,0,0,9.81 Generating a new google sheet using the example data model,03/17/2023 17:19:36,3,0,0,17.42 +Generating a new google sheet using the example data model,03/17/2023 17:39:24,5,0,0,16.72 +Generating a new google sheet using the example data model,03/17/2023 17:47:09,5,0,0,15.32 +Generating an existing google sheet using the example data model,03/17/2023 17:47:25,5,0,0,44.28 +Generating a new google sheet using the example data model,03/17/2023 17:49:39,5,0,0,17.43 +Generating an existing google sheet using the example data model,03/17/2023 17:49:56,5,0,0,40.95 +Generating a new google sheet using the example data model,03/17/2023 17:51:11,5,0,0,14.7 +Generating an existing google sheet using the example data model,03/17/2023 17:51:26,5,0,0,57.19 diff --git a/tests/test_manifest_generate.py b/tests/test_manifest_generate.py index 29e1a1d..3ae62cb 100644 --- a/tests/test_manifest_generate.py +++ b/tests/test_manifest_generate.py @@ -14,12 +14,14 @@ logging.basicConfig(level=logging.DEBUG) logger = logging.getLogger(__name__) -CONCURRENT_REQUEST = 3 -TIME_OUT_LIMIT = 30 +CONCURRENT_REQUEST = 5 +TIME_OUT_LIMIT_GENERATE_NEW_MANIFEST = 30 +TIME_OUT_LIMIT_GENERATE_EXISTING_MANIFEST = 60 class TestManifestOperation: @pytest.mark.parametrize("output_format", ["google_sheet"]) - def test_generate_manifest(self, get_token, example_data_model, fetch_request, output_format): + @pytest.mark.parametrize("dataset_id", [None, "syn51078367"]) + def test_generate_manifest(self, get_token, example_data_model, fetch_request, output_to_csv, output_format, dataset_id): base_url = "https://schematic-dev.api.sagebionetworks.org/v1/manifest/generate" input_token = get_token @@ -29,7 +31,8 @@ def test_generate_manifest(self, get_token, example_data_model, fetch_request, o "data_type": ["Patient"], "use_annotations": False, "input_token": input_token, - "output_format": output_format + "output_format": output_format, + "dataset_id": dataset_id } with ThreadPoolExecutor() as executor: @@ -57,17 +60,24 @@ def test_generate_manifest(self, get_token, example_data_model, fetch_request, o logger.debug(f"generated an exception:{exc}") time_diff = round(time.time() - start_time, 2) - # all requests should finish within 30 seconds - assert time_diff < TIME_OUT_LIMIT - - if output_format == "google_sheet": - description = "Generating a new google sheet using the example data model" + # record latency and errors + if not params["dataset_id"]: + if output_format == "google_sheet": + description = "Generating a new google sheet using the example data model" + else: + description = "Generating a new excel sheet using the example data model" else: - description = "Generating a new excel sheet using the example data model" + if output_format == "google_sheet": + description = "Generating an existing google sheet using the example data model" + else: + description = "Generating an existing excel sheet using the example data model" + + output_to_csv(description, dt_string, CONCURRENT_REQUEST, total_error_num, total_504_num, time_diff) - fields={"Description": description, "Date time": dt_string, "Number of Concurrent Requests": CONCURRENT_REQUEST, "Number of error": total_error_num, "total 504 error":total_504_num, "Latency": time_diff} - df = pd.DataFrame(fields, index=[0]) - df.to_csv("latency.csv", mode='a', index=False, header=False) + if dataset_id: + assert time_diff < TIME_OUT_LIMIT_GENERATE_EXISTING_MANIFEST + else: + assert time_diff < TIME_OUT_LIMIT_GENERATE_NEW_MANIFEST From ed47512def4be7514407c2d3099edba00379ea5e Mon Sep 17 00:00:00 2001 From: linglp Date: Fri, 17 Mar 2023 17:55:39 -0400 Subject: [PATCH 25/36] run pre-commit hook --- api-test.py | 8 +++---- .../synapse_storage_manifest_dataflow.json | 2 +- tests/conftest.py | 3 +-- tests/test_manifest_generate.py | 21 +++++++------------ 4 files changed, 14 insertions(+), 20 deletions(-) diff --git a/api-test.py b/api-test.py index 41b79c1..ae1c758 100644 --- a/api-test.py +++ b/api-test.py @@ -90,11 +90,11 @@ def calculate_avg_run_time_per_endpoint( df=df.append({"#number": x+1, "latency": run_time}, ignore_index=True) sum_time = sum_time + run_time avg_time = sum_time / RUN_TOTAL_TIMES_PER_ENDPOINT - + draw_boxplot(df) write_to_txt_file(name_of_endpoint, avg_time) -def draw_boxplot(df): +def draw_boxplot(df): myFig = plt.figure() df["latency"].plot(kind="box") myFig.savefig(f"latency-box-plot.svg", format="svg") @@ -148,7 +148,7 @@ def get_manifest_generate_req(): "data_type": ["Patient"], #"data_type": ["Biospecimen"], #"dataset_id": "syn28268700", - #"asset_view": "syn23643253", + #"asset_view": "syn23643253", "use_annotations": False, "input_token": input_token, "output_format": "excel" @@ -331,7 +331,7 @@ def execute_all_endpoints(): ) f.write("\n") f.close() - + #calculate_avg_run_time_per_endpoint(send_concurrent_req, "swagger-ui") # calculate_avg_run_time_per_endpoint(find_class_specific_property_req, "explorer/find_class_specific_property") # calculate_avg_run_time_per_endpoint( diff --git a/test-manifests/synapse_storage_manifest_dataflow.json b/test-manifests/synapse_storage_manifest_dataflow.json index e71966a..311f00b 100644 --- a/test-manifests/synapse_storage_manifest_dataflow.json +++ b/test-manifests/synapse_storage_manifest_dataflow.json @@ -77,4 +77,4 @@ "released": "FALSE", "standard_compliance": "FALSE" } -] \ No newline at end of file +] diff --git a/tests/conftest.py b/tests/conftest.py index d806904..bc84539 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -14,7 +14,7 @@ def get_token(): token=os.environ["SYNAPSE_ACCESS_TOKEN"] elif "TOKEN" in os.environ: token = os.environ["TOKEN"] - else: + else: logger.debug('TOKEN is missing. Please add synapse access token') yield token @@ -41,4 +41,3 @@ def fetch_request(): @pytest.fixture(scope="session") def output_to_csv(): return csv_export - diff --git a/tests/test_manifest_generate.py b/tests/test_manifest_generate.py index 3ae62cb..99b5fbd 100644 --- a/tests/test_manifest_generate.py +++ b/tests/test_manifest_generate.py @@ -50,7 +50,7 @@ def test_generate_manifest(self, get_token, example_data_model, fetch_request, o for f in concurrent.futures.as_completed(futures): try: status_code = f.result().status_code - assert status_code == 200 + assert status_code == 200 if status_code != 200: total_error_num = total_error_num + 1 logger.debug("Error code: ", status_code) @@ -61,16 +61,16 @@ def test_generate_manifest(self, get_token, example_data_model, fetch_request, o time_diff = round(time.time() - start_time, 2) # record latency and errors - if not params["dataset_id"]: - if output_format == "google_sheet": + if not params["dataset_id"]: + if output_format == "google_sheet": description = "Generating a new google sheet using the example data model" - else: + else: description = "Generating a new excel sheet using the example data model" - else: - if output_format == "google_sheet": + else: + if output_format == "google_sheet": description = "Generating an existing google sheet using the example data model" - else: - description = "Generating an existing excel sheet using the example data model" + else: + description = "Generating an existing excel sheet using the example data model" output_to_csv(description, dt_string, CONCURRENT_REQUEST, total_error_num, total_504_num, time_diff) @@ -78,8 +78,3 @@ def test_generate_manifest(self, get_token, example_data_model, fetch_request, o assert time_diff < TIME_OUT_LIMIT_GENERATE_EXISTING_MANIFEST else: assert time_diff < TIME_OUT_LIMIT_GENERATE_NEW_MANIFEST - - - - - From 20c967725afed24ead63b4cd8443101428211a55 Mon Sep 17 00:00:00 2001 From: linglp Date: Fri, 17 Mar 2023 18:01:15 -0400 Subject: [PATCH 26/36] update requirements --- requirements-dev.txt | 46 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) diff --git a/requirements-dev.txt b/requirements-dev.txt index 9270945..f24391c 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -1 +1,47 @@ pytest==6.2.5 +attrs==22.2.0 +aws-cdk-lib==2.60.0 +aws-cdk.asset-awscli-v1==2.2.74 +aws-cdk.asset-kubectl-v20==2.1.1 +aws-cdk.asset-node-proxy-agent-v5==2.0.63 +cattrs==22.2.0 +certifi==2022.12.7 +cfgv==3.3.1 +charset-normalizer==2.1.1 +constructs==10.1.256 +contourpy==1.0.7 +cycler==0.11.0 +distlib==0.3.6 +exceptiongroup==1.1.0 +filelock==3.9.0 +fonttools==4.39.0 +futures==3.0.5 +identify==2.5.18 +idna==3.4 +importlib-resources==5.12.0 +iniconfig==2.0.0 +jsii==1.75.0 +kiwisolver==1.4.4 +matplotlib==3.7.1 +nodeenv==1.7.0 +numpy==1.24.2 +packaging==23.0 +pandas==1.5.3 +Pillow==9.4.0 +platformdirs==3.0.0 +pluggy==1.0.0 +pre-commit==3.0.4 +publication==0.0.3 +pyparsing==3.0.9 +pytest==7.2.2 +python-dateutil==2.8.2 +pytz==2022.7.1 +PyYAML==6.0 +requests==2.28.1 +six==1.16.0 +tomli==2.0.1 +typeguard==2.13.3 +typing_extensions==4.5.0 +urllib3==1.26.13 +virtualenv==20.19.0 +zipp==3.15.0 From 455d7a10b614c944941cd03dc109a11a8989b49e Mon Sep 17 00:00:00 2001 From: linglp Date: Fri, 17 Mar 2023 18:28:54 -0400 Subject: [PATCH 27/36] use pip3 --- .github/workflows/aws-deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/aws-deploy.yml b/.github/workflows/aws-deploy.yml index baf8650..adc0f29 100644 --- a/.github/workflows/aws-deploy.yml +++ b/.github/workflows/aws-deploy.yml @@ -29,7 +29,7 @@ jobs: cdk_args: '--context env=dev --debug' - name: Install dependencies - run: pip install -r requirements.txt -r requirements-dev.txt + run: pip3 install -r requirements.txt -r requirements-dev.txt - name: Run unit tests run: python -m pytest tests/ -s -v From c6cfaba210f52dcec1a5b17e4b4f36096023cdf0 Mon Sep 17 00:00:00 2001 From: linglp Date: Fri, 17 Mar 2023 18:57:26 -0400 Subject: [PATCH 28/36] set up python --- .github/workflows/aws-deploy.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/aws-deploy.yml b/.github/workflows/aws-deploy.yml index adc0f29..6244ca5 100644 --- a/.github/workflows/aws-deploy.yml +++ b/.github/workflows/aws-deploy.yml @@ -28,7 +28,10 @@ jobs: actions_comment: false cdk_args: '--context env=dev --debug' - - name: Install dependencies + - name: Set up Python and install dependencies + uses: actions/setup-python@v4 + with: + python-version: 3.10 run: pip3 install -r requirements.txt -r requirements-dev.txt - name: Run unit tests From 17a866c85ecf491396b19083c228a8e2415cc8c0 Mon Sep 17 00:00:00 2001 From: linglp Date: Fri, 17 Mar 2023 19:00:18 -0400 Subject: [PATCH 29/36] update python version --- .github/workflows/aws-deploy.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/aws-deploy.yml b/.github/workflows/aws-deploy.yml index 6244ca5..c172f4d 100644 --- a/.github/workflows/aws-deploy.yml +++ b/.github/workflows/aws-deploy.yml @@ -28,10 +28,12 @@ jobs: actions_comment: false cdk_args: '--context env=dev --debug' - - name: Set up Python and install dependencies + - name: Set up Python uses: actions/setup-python@v4 with: python-version: 3.10 + + - name: Install dependencies run: pip3 install -r requirements.txt -r requirements-dev.txt - name: Run unit tests From d816aa46528a89c18aeb1927ece1d8ede5b48626 Mon Sep 17 00:00:00 2001 From: linglp Date: Fri, 17 Mar 2023 19:03:57 -0400 Subject: [PATCH 30/36] update to use 3.10.0 --- .github/workflows/aws-deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/aws-deploy.yml b/.github/workflows/aws-deploy.yml index c172f4d..586fdce 100644 --- a/.github/workflows/aws-deploy.yml +++ b/.github/workflows/aws-deploy.yml @@ -31,7 +31,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v4 with: - python-version: 3.10 + python-version: 3.10.0 - name: Install dependencies run: pip3 install -r requirements.txt -r requirements-dev.txt From a9c6f11ec572738fb947f8a76a6550c9b3da7710 Mon Sep 17 00:00:00 2001 From: linglp Date: Fri, 17 Mar 2023 19:16:07 -0400 Subject: [PATCH 31/36] fix syntax --- .github/workflows/aws-deploy.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/aws-deploy.yml b/.github/workflows/aws-deploy.yml index 586fdce..3a6cbe0 100644 --- a/.github/workflows/aws-deploy.yml +++ b/.github/workflows/aws-deploy.yml @@ -29,9 +29,9 @@ jobs: cdk_args: '--context env=dev --debug' - name: Set up Python - uses: actions/setup-python@v4 + uses: actions/setup-python@v2 with: - python-version: 3.10.0 + python-version: "3.10" - name: Install dependencies run: pip3 install -r requirements.txt -r requirements-dev.txt From f4fe60aa12fff92bccd4018d5ab1bfdb258259c4 Mon Sep 17 00:00:00 2001 From: linglp Date: Fri, 17 Mar 2023 19:17:02 -0400 Subject: [PATCH 32/36] fix syntax --- .github/workflows/aws-deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/aws-deploy.yml b/.github/workflows/aws-deploy.yml index 3a6cbe0..7aa7598 100644 --- a/.github/workflows/aws-deploy.yml +++ b/.github/workflows/aws-deploy.yml @@ -29,7 +29,7 @@ jobs: cdk_args: '--context env=dev --debug' - name: Set up Python - uses: actions/setup-python@v2 + uses: actions/setup-python@v4 with: python-version: "3.10" From 49fc7d3d1d8bb4ff2f431f6ca1aad1f76bb912b9 Mon Sep 17 00:00:00 2001 From: linglp Date: Fri, 17 Mar 2023 19:22:31 -0400 Subject: [PATCH 33/36] update pytest --- requirements-dev.txt | 1 - 1 file changed, 1 deletion(-) diff --git a/requirements-dev.txt b/requirements-dev.txt index f24391c..9db12e0 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -1,4 +1,3 @@ -pytest==6.2.5 attrs==22.2.0 aws-cdk-lib==2.60.0 aws-cdk.asset-awscli-v1==2.2.74 From e4776b70a888c3ff1cc969232a2ccf289fb0e940 Mon Sep 17 00:00:00 2001 From: linglp Date: Wed, 29 Mar 2023 13:57:26 -0400 Subject: [PATCH 34/36] save changes in param --- api-test.py | 23 +++++++++++++---------- 1 file changed, 13 insertions(+), 10 deletions(-) diff --git a/api-test.py b/api-test.py index ae1c758..244b110 100644 --- a/api-test.py +++ b/api-test.py @@ -28,10 +28,10 @@ def send_post_request_with_file(url: str, params: dict): params=params, files={ "file_name": open( - "test-manifests/synapse_storage_manifest_patient.csv", "rb" + #"test-manifests/synapse_storage_manifest_patient.csv", "rb" #"test-manifests/synapse_storage_manifest_patient_two.csv", "rb" #"test-manifests/synapse_storage_manifest_HTAN.csv", "rb" - #"test-manifests/synapse_storage_manifest_HTAN_HMS.csv", "rb" + "test-manifests/synapse_storage_manifest_HTAN_HMS.csv", "rb" ) }, ) @@ -145,13 +145,15 @@ def get_manifest_generate_req(): "schema_url": EXAMPLE_SCHEMA_URL, #"schema_url": HTAN_SCHEMA_URL, "title": "Example", - "data_type": ["Patient"], + "data_type": ["Biospecimen"], #"data_type": ["Biospecimen"], + #"data_type": ["Patient"], + #"data_type": ["BulkRNA-seqAssay"], #"dataset_id": "syn28268700", #"asset_view": "syn23643253", "use_annotations": False, "input_token": input_token, - "output_format": "excel" + #"output_format": "excel" } time_diff = cal_time_api_call(base_url, params) return time_diff @@ -206,7 +208,7 @@ def model_submit_req(): "schema_url": HTAN_SCHEMA_URL, "data_type": None, "dataset_id": "syn27221721", - "manifest_record_type": "table", + "manifest_record_type": "table_and_file", "restrict_rules": False, "input_token": token, "asset_view": "syn28559058", @@ -245,8 +247,9 @@ def model_validate_req(): base_url = "https://schematic-dev.api.sagebionetworks.org/v1/model/validate" #base_url = "http://localhost:7080/v1/model/validate" params = { - "schema_url": EXAMPLE_SCHEMA_URL, - "data_type": "Patient", + #"schema_url": EXAMPLE_SCHEMA_URL, + "schema_url": HTAN_SCHEMA_URL, + "data_type": "Biospecimen", "restrict_rules": False #"restrict_rules": True #"schema_url": HTAN_SCHEMA_URL, @@ -340,14 +343,14 @@ def execute_all_endpoints(): # calculate_avg_run_time_per_endpoint( # get_datatype_manifest_req, "get/datatype/manifest" # ) - # calculate_avg_run_time_per_endpoint(get_manifest_generate_req, "manifest/generate") - calculate_avg_run_time_per_endpoint(download_manifest_req, "manifest/download") + calculate_avg_run_time_per_endpoint(get_manifest_generate_req, "manifest/generate") + #calculate_avg_run_time_per_endpoint(download_manifest_req, "manifest/download") # calculate_avg_run_time_per_endpoint(populate_manifest_req, "manifest/populate") # calculate_avg_run_time_per_endpoint( # model_component_requirements, "model/component-requirements" # ) #calculate_avg_run_time_per_endpoint(model_submit_req, "manifest/submit") - # calculate_avg_run_time_per_endpoint(model_validate_req, "model/validate") + #calculate_avg_run_time_per_endpoint(model_validate_req, "model/validate") # calculate_avg_run_time_per_endpoint(storage_assets_table_req, "storage/asset/table") # calculate_avg_run_time_per_endpoint( # storage_dataset_files_req, "storage/dataset/files" From b799eaa2757d99f6838fc62c9d4774cf07481eee Mon Sep 17 00:00:00 2001 From: linglp Date: Wed, 29 Mar 2023 13:57:56 -0400 Subject: [PATCH 35/36] update to use dataflow manifest --- .../synapse_storage_manifest_dataflow.csv | 1120 +++++++++-------- 1 file changed, 584 insertions(+), 536 deletions(-) diff --git a/test-manifests/synapse_storage_manifest_dataflow.csv b/test-manifests/synapse_storage_manifest_dataflow.csv index d793702..a5d79b2 100644 --- a/test-manifests/synapse_storage_manifest_dataflow.csv +++ b/test-manifests/synapse_storage_manifest_dataflow.csv @@ -1,536 +1,584 @@ -"Component","Uuid","contributor","data_portal","dataset","dataset_name","embargo","entityId","num_items","release_scheduled","released","standard_compliance" -"DataFlow","7202834a-6cf4-4a4b-84ae-308433f1bdf4","HTAN HTAPP",FALSE,"ImagingLevel2","merfish_level_1","2022-12-01","syn23585912","Not Applicable","2022-12-25",TRUE,TRUE -"DataFlow","385dac37-e0d3-43d6-b50a-ba336de827c9","HTAN HTAPP",FALSE,"ImagingLevel2","merfish_level_2","2022-12-01","syn23585913","Not Applicable","2022-12-25",TRUE,TRUE -"DataFlow","f6d5ee40-1a37-4c83-ba2a-5b92048a48e9","HTAN HTAPP",FALSE,"OtherAssay","merfish_level_3","2022-12-01","syn23585914","Not Applicable","2022-12-25",TRUE,TRUE -"DataFlow","6b036edd-11f0-48e4-9f5d-343ee8371c11","HTAN HTAPP",FALSE,"OtherAssay","merfish_level_4","2022-12-01","syn23585915","Not Applicable","2022-12-25",TRUE,TRUE -"DataFlow","4e002aba-0b43-47b5-8960-7919aede67c8","HTAN HTAPP",FALSE,"OtherAssay","merfish_level_5","Not Applicable","syn23585916","Not Applicable","2022-12-25",TRUE,TRUE -"DataFlow","4ef55de4-72f1-401a-83c4-8859a3220792","HTAN HTAPP",FALSE,"OtherAssay","codex_level_1","2022-12-01","syn23591171","Not Applicable","2022-12-25",TRUE,TRUE -"DataFlow","bc1d26f9-3fed-44b1-ae8a-d599f37745fe","HTAN HTAPP",FALSE,"ImagingLevel2","codex_level_2","2022-12-01","syn23591172","Not Applicable","2022-12-25",FALSE,TRUE -"DataFlow","2dbfccb5-840d-4170-9a23-f59340946ac0","HTAN HTAPP",FALSE,"OtherAssay","codex_level_3","2022-12-01","syn23591173","Not Applicable","2022-12-25",FALSE,TRUE -"DataFlow","8193852f-d2a8-4bb5-9f15-4c22f94194bc","HTAN HTAPP",FALSE,"OtherAssay","codex_level_4","Not Applicable","syn23591174","Not Applicable","2022-12-25",FALSE,TRUE -"DataFlow","7bf829e9-5ec3-47fa-ac04-5ad916929071","HTAN HTAPP",FALSE,"OtherAssay","codex_level_5","Not Applicable","syn23591175","Not Applicable","2022-12-25",FALSE,TRUE -"DataFlow","1aa8daf5-46f4-4d49-bfd2-8c28b9186169","HTAN HTAPP",FALSE,"ImagingLevel2","mibi_level_1","Not Applicable","syn23638814","Not Applicable","2022-12-25",FALSE,TRUE -"DataFlow","5973b2f9-0a76-459f-9dd2-1a9f6b7bebef","HTAN HTAPP",FALSE,"ImagingLevel2","mibi_level_2","Not Applicable","syn23638815","Not Applicable","2022-12-25",FALSE,FALSE -"DataFlow","8b217944-3ad8-4f4e-8bd6-0d2ac2bdb8da","HTAN HTAPP",FALSE,"OtherAssay","mibi_level_3","Not Applicable","syn23638816","Not Applicable","2022-12-25",FALSE,FALSE -"DataFlow","681b8f8c-cbeb-47e2-9019-6ea95c141f37","HTAN HTAPP",FALSE,"OtherAssay","mibi_level_4","Not Applicable","syn23638817","Not Applicable","2022-12-25",FALSE,FALSE -"DataFlow","27c1ba48-be8f-47d8-93bc-db01dce48591","HTAN HTAPP",FALSE,"OtherAssay","mibi_level_5","Not Applicable","syn23638818","Not Applicable","2022-12-25",FALSE,FALSE -"DataFlow","abce1f23-2791-4676-bb48-91a65c904c06","HTAN HTAPP",FALSE,"OtherAssay","h_and_e_level_1","Not Applicable","syn24175688","Not Applicable","2022-12-25",FALSE,FALSE -"DataFlow","6f932339-01b7-4f16-9599-54f3072f8d5b","HTAN HTAPP",FALSE,"OtherAssay","exseq_level_2","Not Applicable","syn24176067","Not Applicable","2022-12-25",FALSE,FALSE -"DataFlow","0c089bbf-4f53-4131-9145-71da9a152abd","HTAN HTAPP",FALSE,"OtherAssay","exseq_level_3","Not Applicable","syn24176068","Not Applicable","2022-12-25",FALSE,FALSE -"DataFlow","7692fafb-1b41-493d-b374-26f8e87058a0","HTAN HTAPP",FALSE,"ScRNA-seqLevel1","single_cell_RNAseq_level_1_colon","Not Applicable","syn24181385","Not Applicable","2021-11-20",TRUE,TRUE -"DataFlow","644e8ba7-133d-4b0d-b9fa-9a993c5f65cb","HTAN HTAPP",FALSE,"ScRNA-seqLevel2","single_cell_RNAseq_level_2_colon","Not Applicable","syn24181437","Not Applicable","2021-11-20",TRUE,TRUE -"DataFlow","a13e5fac-7ea3-41fe-8593-babf784be85b","HTAN HTAPP",FALSE,"ScRNA-seqLevel3","single_cell_RNAseq_level_3_colon","Not Applicable","syn24181445","Not Applicable","2021-11-20",TRUE,TRUE -"DataFlow","5c0e750d-2fe4-48dd-8d78-21f0a3b0431a","HTAN HTAPP",FALSE,"BulkWESLevel2","bulk_DNAseq_level_2_colon","Not Applicable","syn24181527","Not Applicable","2021-11-20",TRUE,TRUE -"DataFlow","5a93fc40-7652-44b9-b1e5-caed5bb07eac","HTAN HTAPP",FALSE,"BulkRNA-seqLevel2","bulk_RNAseq_level_2_colon","Not Applicable","syn24181573","Not Applicable","2021-11-20",TRUE,TRUE -"DataFlow","a4bd82e5-a3b3-46ab-933e-00fcd584d55e","HTAN HTAPP",FALSE,"ScRNA-seqLevel1","single_cell_RNAseq_level_1_breast","Not Applicable","syn24181593","Not Applicable","2021-11-20",TRUE,TRUE -"DataFlow","a20cd74d-ae5f-4ab2-af3f-aa7bee84d9a1","HTAN HTAPP",FALSE,"ScRNA-seqLevel1","single_cell_RNAseq_level_1_glioma","Not Applicable","syn24181594","Not Applicable","2021-11-20",TRUE,TRUE -"DataFlow","0976924f-3232-4cb6-b0c3-2bece927c382","HTAN HTAPP",FALSE,"ScRNA-seqLevel1","single_cell_RNAseq_level_1_lung","Not Applicable","syn24181595","Not Applicable","2021-11-20",TRUE,TRUE -"DataFlow","a60834a7-be2a-474b-81cb-79501bf627cf","HTAN HTAPP",FALSE,"ScRNA-seqLevel3","single_cell_RNAseq_level_3_glioma","Not Applicable","syn24181596","Not Applicable","2021-11-20",TRUE,TRUE -"DataFlow","063fff44-aba8-4117-8094-6375a895518c","HTAN HTAPP",FALSE,"ScRNA-seqLevel1","single_cell_RNAseq_level_1_neuroblastoma","Not Applicable","syn24181597","Not Applicable","2021-11-20",TRUE,TRUE -"DataFlow","7d1498f9-a78e-42b0-bcb2-57ddeafa9fbd","HTAN HTAPP",FALSE,"ScRNA-seqLevel1","single_cell_RNAseq_level_1_ovarian","Not Applicable","syn24181598","Not Applicable","2021-11-20",TRUE,TRUE -"DataFlow","ba9eb6c1-65f6-4267-a6fe-f7f20c250b26","HTAN HTAPP",FALSE,"ScRNA-seqLevel4","single_cell_RNAseq_level_4_glioma","Not Applicable","syn24181599","Not Applicable","2021-11-20",TRUE,TRUE -"DataFlow","4f42490b-d28e-4686-9c75-1511bfb1fd0d","HTAN HTAPP",FALSE,"ScRNA-seqLevel4","single_cell_RNAseq_level_4_lung","Not Applicable","syn24181600","Not Applicable","2021-11-20",TRUE,TRUE -"DataFlow","aba4c68e-1aa2-4b5d-a965-73d973c910af","HTAN HTAPP",FALSE,"ScRNA-seqLevel4","single_cell_RNAseq_level_4_breast","Not Applicable","syn24181601","Not Applicable","2021-11-20",TRUE,TRUE -"DataFlow","6bed41ee-2f57-4885-8995-a4f6d714162c","HTAN HTAPP",FALSE,"ScRNA-seqLevel1","single_cell_RNAseq_level_1_sarcoma","Not Applicable","syn24181602","Not Applicable","2021-11-20",TRUE,TRUE -"DataFlow","cb9aa65b-c320-4cc2-9b6a-1ef8354e98d0","HTAN HTAPP",FALSE,"ScRNA-seqLevel2","single_cell_RNAseq_level_2_breast","Not Applicable","syn24181603","Not Applicable","2021-11-20",TRUE,TRUE -"DataFlow","f5eb086d-3c8d-4bdc-baac-894c9bf1e629","HTAN HTAPP",FALSE,"ScRNA-seqLevel2","single_cell_RNAseq_level_2_lung","Not Applicable","syn24181604","Not Applicable","2021-11-20",TRUE,TRUE -"DataFlow","34968903-bb33-4583-85a1-585c2b520938","HTAN HTAPP",FALSE,"ScRNA-seqLevel2","single_cell_RNAseq_level_2_ovarian","Not Applicable","syn24181605","Not Applicable","2021-11-20",TRUE,TRUE -"DataFlow","4ab61c7d-d4f0-49e9-8350-a4d30dca972b","HTAN HTAPP",FALSE,"ScRNA-seqLevel2","single_cell_RNAseq_level_2_neuroblastoma","Not Applicable","syn24181606","Not Applicable","2021-11-20",TRUE,TRUE -"DataFlow","c75ad834-4d89-4fcc-bd53-5157719fc87b","HTAN HTAPP",FALSE,"ScRNA-seqLevel4","single_cell_RNAseq_level_4_ovarian","Not Applicable","syn24181607","Not Applicable","2021-11-20",TRUE,TRUE -"DataFlow","ddd0f80d-a80e-487b-8337-a7f938e7ad85","HTAN HTAPP",FALSE,"ScRNA-seqLevel4","single_cell_RNAseq_level_4_neuroblastoma","Not Applicable","syn24181608","Not Applicable","2021-11-20",TRUE,TRUE -"DataFlow","eff158c5-d9f3-44cb-aa85-3bbbe373576b","HTAN HTAPP",FALSE,"BulkRNA-seqLevel2","bulk_RNAseq_level_2_lung","Not Applicable","syn24181609","Not Applicable","2021-11-20",TRUE,TRUE -"DataFlow","b8c09835-7217-44f6-b0d3-034aef22be20","HTAN HTAPP",FALSE,"ScRNA-seqLevel2","single_cell_RNAseq_level_2_sarcoma","Not Applicable","syn24181610","Not Applicable","2021-11-20",TRUE,TRUE -"DataFlow","67568177-f8d6-42cf-a8c3-1eee67023b39","HTAN HTAPP",FALSE,"BulkWESLevel2","bulk_DNAseq_level_2_lung","Not Applicable","syn24181611","Not Applicable","2021-11-20",TRUE,TRUE -"DataFlow","72ad3ce4-7696-40f9-b46b-a3b4e2e3c274","HTAN HTAPP",FALSE,"BulkRNA-seqLevel2","bulk_RNAseq_level_2_neuroblastoma","Not Applicable","syn24181612","Not Applicable","2021-11-20",TRUE,TRUE -"DataFlow","0adb11ce-8aec-4a70-8cbe-fde64aafa04c","HTAN HTAPP",FALSE,"BulkRNA-seqLevel2","bulk_RNAseq_level_2_breast","Not Applicable","syn24181613","Not Applicable","2021-11-20",TRUE,TRUE -"DataFlow","9f48dc53-7e08-4fed-9ee4-8c056f763e01","HTAN HTAPP",FALSE,"BulkRNA-seqLevel2","bulk_RNAseq_level_2_ovarian","Not Applicable","syn24181614","Not Applicable","2021-11-20",TRUE,TRUE -"DataFlow","49a267cb-6790-4f46-ad0d-424cc1f91881","HTAN HTAPP",FALSE,"BulkWESLevel2","bulk_DNAseq_level_2_neuroblastoma","Not Applicable","syn24181615","Not Applicable","2021-11-20",TRUE,TRUE -"DataFlow","535c9aee-e535-4f73-aa06-3bab22ac3109","HTAN HTAPP",FALSE,"BulkWESLevel2","bulk_DNAseq_level_2_breast","Not Applicable","syn24181616","Not Applicable","2021-11-20",TRUE,TRUE -"DataFlow","00db6569-5213-4511-bd30-e94244074dbf","HTAN HTAPP",FALSE,"BulkRNA-seqLevel2","bulk_RNAseq_level_2_sarcoma","Not Applicable","syn24181617","Not Applicable","2021-11-20",TRUE,TRUE -"DataFlow","ac2ac68f-76a5-40d5-9241-c0e2d7818529","HTAN HTAPP",FALSE,"BulkWESLevel2","bulk_DNAseq_level_2_sarcoma","Not Applicable","syn24181618","Not Applicable","2021-11-20",TRUE,TRUE -"DataFlow","5f949fb7-ef45-4b74-bcbc-2351dd159bc4","HTAN HTAPP",FALSE,"ScRNA-seqLevel3","single_cell_RNAseq_level_3_breast","Not Applicable","syn24181619","Not Applicable","2021-11-20",TRUE,TRUE -"DataFlow","1087c4d6-1530-4e4a-8617-483f6b3b431f","HTAN HTAPP",FALSE,"ScRNA-seqLevel3","single_cell_RNAseq_level_3_lung","Not Applicable","syn24181620","Not Applicable","2021-11-20",TRUE,TRUE -"DataFlow","86a8052f-63ba-464b-b782-f00836e03377","HTAN HTAPP",FALSE,"ScRNA-seqLevel3","single_cell_RNAseq_level_3_neuroblastoma","Not Applicable","syn24181621","Not Applicable","2021-11-20",TRUE,TRUE -"DataFlow","ad0330c2-e8f3-40bc-afdd-36e370c9aae9","HTAN HTAPP",FALSE,"ScRNA-seqLevel3","single_cell_RNAseq_level_3_sarcoma","Not Applicable","syn24181622","Not Applicable","2021-11-20",TRUE,TRUE -"DataFlow","8a6627e5-ccf7-4b90-abc6-bc79a05315c7","HTAN HTAPP",FALSE,"ScRNA-seqLevel4","single_cell_RNAseq_level_4_sarcoma","Not Applicable","syn24181623","Not Applicable","2021-11-20",TRUE,TRUE -"DataFlow","74beaba9-e77e-4000-a95f-ad72ed788afe","HTAN HTAPP",FALSE,"BulkWESLevel2","bulk_DNAseq_level_2_ovarian","Not Applicable","syn24181624","Not Applicable","2021-11-20",TRUE,TRUE -"DataFlow","bafe62ea-e8ca-44db-9ef4-9d34e09324ee","HTAN HTAPP",FALSE,"ScRNA-seqLevel2","single_cell_RNAseq_level_2_glioma","Not Applicable","syn24181625","Not Applicable","2021-11-20",TRUE,TRUE -"DataFlow","30c26d28-6095-4503-8b19-75e7cf4440f1","HTAN HTAPP",FALSE,"BulkWESLevel2","bulk_DNAseq_level_2_glioma","Not Applicable","syn24181626","Not Applicable","2021-11-20",TRUE,TRUE -"DataFlow","0b6f09de-f79b-4379-b0da-ed6ff1693a9c","HTAN HTAPP",FALSE,"BulkRNA-seqLevel2","bulk_RNAseq_level_2_glioma","Not Applicable","syn24181627","Not Applicable","2021-11-20",TRUE,TRUE -"DataFlow","4ab6a290-b6ac-433a-97cb-d2bd13dc9f82","HTAN HTAPP",FALSE,"ScRNA-seqLevel3","single_cell_RNAseq_level_3_ovarian","Not Applicable","syn24181628","Not Applicable","2021-11-20",TRUE,TRUE -"DataFlow","f170064a-f063-4861-bf1b-ec5b3fdf420f","HTAN HTAPP",FALSE,"ScRNA-seqLevel4","single_cell_RNAseq_level_4_colon","Not Applicable","syn24181630","Not Applicable","2021-11-20",TRUE,TRUE -"DataFlow","67b14f13-9291-4d73-83a1-56a7831bc749","HTAN HTAPP",FALSE,"ScRNA-seqLevel4","slide_seq_level_1_breast","Not Applicable","syn24205844","Not Applicable","2021-11-20",TRUE,TRUE -"DataFlow","247b1b72-bb20-4a40-a875-bb09b6d6d44d","HTAN HTAPP",FALSE,"ScRNA-seqLevel4","slide_seq_level_3_neuroblastoma","Not Applicable","syn24205846","Not Applicable","2021-11-20",TRUE,TRUE -"DataFlow","c8e0be5c-eb03-461e-901d-00d2f2cc8364","HTAN HTAPP",FALSE,"ScRNA-seqLevel4","slide_seq_level_2_breast","Not Applicable","syn24205848","Not Applicable","2021-11-20",TRUE,TRUE -"DataFlow","12e6ce96-0c8e-4cb2-9011-6bc92398b205","HTAN HTAPP",FALSE,"ScRNA-seqLevel4","slide_seq_level_1_neuroblastoma","Not Applicable","syn24205849","Not Applicable","2021-11-20",TRUE,TRUE -"DataFlow","a8e220bd-ad2e-4742-b99f-ac9422571bdb","HTAN HTAPP",FALSE,"ScRNA-seqLevel4","slide_seq_level_3_breast","Not Applicable","syn24205852","Not Applicable","2021-11-20",TRUE,TRUE -"DataFlow","38cf66e4-ad05-4727-995f-ef070b2315ce","HTAN HTAPP",FALSE,"ScRNA-seqLevel4","slide_seq_level_2_neuroblastoma","Not Applicable","syn24205853","Not Applicable","2021-11-20",TRUE,TRUE -"DataFlow","9bd46650-1df3-48aa-a9a0-f68267d988ed","HTAN HTAPP",FALSE,"Demographics","clinical_demographics_colon","Not Applicable","syn24615241","Not Applicable","2021-11-20",TRUE,TRUE -"DataFlow","664a9b70-590f-43f1-88a0-7e280ab995a9","HTAN HTAPP",FALSE,"Exposure","clinical_exposure_colon","Not Applicable","syn24615243","Not Applicable","2021-11-20",TRUE,TRUE -"DataFlow","a9e7f18a-c523-4745-a796-430426fe8c18","HTAN HTAPP",FALSE,"Diagnosis","clinical_diagnosis_colon","Not Applicable","syn24615244","Not Applicable","2021-11-20",TRUE,TRUE -"DataFlow","f86be5b4-8cdc-40a7-8a6b-115e4c4f6ca9","HTAN HTAPP",FALSE,"Diagnosis","clinical_family_history_colon","Not Applicable","syn24615245","Not Applicable","2021-11-20",TRUE,TRUE -"DataFlow","77232926-cda2-4be7-b61b-77d05c089c26","HTAN HTAPP",FALSE,"FollowUp","clinical_follow_up_colon","Not Applicable","syn24615246","Not Applicable","2021-11-20",TRUE,TRUE -"DataFlow","62d31f88-d524-41ed-b3ca-d4afc9746575","HTAN HTAPP",FALSE,"Therapy","clinical_therapy_colon","Not Applicable","syn24615247","Not Applicable","2021-11-20",TRUE,TRUE -"DataFlow","48e01ceb-e030-47cd-868c-1d51906dcb49","HTAN HTAPP",FALSE,"Therapy","archive","Not Applicable","syn24827250","Not Applicable","2021-11-20",TRUE,TRUE -"DataFlow","287f5351-6f7a-4e54-9fcc-d89b421a22bb","HTAN HTAPP",FALSE,"MolecularTest","clinical_molecular_test_colon","Not Applicable","syn24860582","Not Applicable","2021-11-20",TRUE,TRUE -"DataFlow","84ad24be-2eb3-43fd-af2d-370778905410","HTAN HTAPP",FALSE,"ImagingLevel2","h_and_e_visium_lung","Not Applicable","syn24862457","Not Applicable","2021-11-20",TRUE,TRUE -"DataFlow","71d42b38-de94-4206-8526-66c22c3b66ad","HTAN HTAPP",FALSE,"ImagingLevel2","h_and_e_mibi_neuroblastoma","Not Applicable","syn24862458","Not Applicable","2021-11-20",TRUE,TRUE -"DataFlow","d943fa83-23c2-43f8-914c-68d5394d59e8","HTAN HTAPP",FALSE,"ImagingLevel2","h_and_e_visium_ovarian","Not Applicable","syn24862462","Not Applicable","2021-11-20",TRUE,TRUE -"DataFlow","2fa6154d-de79-435e-affc-0406f11c6fde","HTAN HTAPP",FALSE,"ImagingLevel2","clinical_tier_2_colon","Not Applicable","syn24873770","Not Applicable","2021-11-20",TRUE,TRUE -"DataFlow","ffd12685-6b10-40d7-8aec-fe78b3f93c58","HTAN HTAPP",FALSE,"ImagingLevel2","clinical_tier_3_breast","Not Applicable","syn24873771","Not Applicable","2021-11-20",TRUE,TRUE -"DataFlow","b8ea5857-8497-4118-81c7-898b269fcc15","HTAN HTAPP",FALSE,"BrainCancerTier3","clinical_tier_3_glioma","Not Applicable","syn24873772","Not Applicable","2021-11-20",TRUE,TRUE -"DataFlow","47d8d63e-eedc-4d00-8485-42e6e376dd64","HTAN HTAPP",FALSE,"BrainCancerTier3","clinical_tier_3_colon","Not Applicable","syn24873773","Not Applicable","2021-11-20",TRUE,TRUE -"DataFlow","0e285ec0-bf35-48bc-b58a-be502b83534f","HTAN HTAPP",FALSE,"LungCancerTier3","clinical_tier_3_lung","Not Applicable","syn24873774","Not Applicable","2021-11-20",TRUE,TRUE -"DataFlow","dd4ac233-f1e5-40dc-91b7-8124b7a2961d","HTAN HTAPP",FALSE,"LungCancerTier3","clinical_tier_3_sarcoma","Not Applicable","syn24873775","Not Applicable","2020-04-01",TRUE,TRUE -"DataFlow","a54ef96b-1235-4bd7-820d-4f57b9a9bdb2","HTAN HTAPP",FALSE,"LungCancerTier3","clinical_tier_3_ovarian","Not Applicable","syn24873776","Not Applicable","2020-04-01",TRUE,TRUE -"DataFlow","6028c903-4df1-4798-9b88-25598ad6bd40","HTAN HTAPP",FALSE,"LungCancerTier3","clinical_tier_3_neuroblastoma","Not Applicable","syn24873777","Not Applicable","2020-04-01",TRUE,TRUE -"DataFlow","c3e2cf3a-ffa0-42c3-b294-5a9bcc240c08","HTAN HTAPP",FALSE,"Biospecimen","biospecimen_colon","Not Applicable","syn25117237","Not Applicable","2020-04-01",TRUE,TRUE -"DataFlow","baf5920c-a903-41f2-a31c-a7fcac671d2d","HTAN HTAPP",FALSE,"Biospecimen","additional_metadata","Not Applicable","syn25122683","Not Applicable","2020-04-01",TRUE,TRUE -"DataFlow","0d8ce990-28af-4ab1-8883-092ae85cb730","HTAN HTAPP",FALSE,"OtherAssay","merfish_auxiliary_files","Not Applicable","syn25485809","Not Applicable","2020-04-01",TRUE,TRUE -"DataFlow","db9aa52f-6a29-4357-9cc3-5f2ec437379d","HTAN HTAPP",FALSE,"OtherAssay","mibi_auxiliary_files","Not Applicable","syn25544054","Not Applicable","2020-04-01",TRUE,TRUE -"DataFlow","5ff1a1a3-629f-47ce-8ef7-cfd63c7c6096","HTAN HTAPP",FALSE,"OtherAssay","codex_auxiliary_files","Not Applicable","syn25556417","Not Applicable","2020-04-01",TRUE,TRUE -"DataFlow","c9a93131-b1ee-4c8d-81b3-72215e56a0e5","HTAN HTAPP",FALSE,"OtherAssay","codex_level_2_neuroblastoma","Not Applicable","syn25571195","Not Applicable","2020-04-01",TRUE,TRUE -"DataFlow","7190d4ba-6ac8-484f-b42b-b749bb197be2","HTAN HTAPP",FALSE,"Biospecimen","biospecimen_breast","Not Applicable","syn25585682","Not Applicable","2020-04-01",TRUE,TRUE -"DataFlow","efebc4fa-4f60-4693-bbd0-11c94684f098","HTAN HTAPP",FALSE,"Biospecimen","biospecimen_glioma","Not Applicable","syn25585683","Not Applicable","2020-04-01",TRUE,TRUE -"DataFlow","0ab0cffb-dea6-44aa-8896-5982f35454de","HTAN HTAPP",FALSE,"Biospecimen","biospecimen_lung","Not Applicable","syn25585684","Not Applicable","2020-04-01",TRUE,TRUE -"DataFlow","8f840fa0-eb0a-4936-b995-d615580f3500","HTAN HTAPP",FALSE,"Biospecimen","biospecimen_neuroblastoma","Not Applicable","syn25585685","Not Applicable","2020-04-01",TRUE,TRUE -"DataFlow","fc29d36a-6db5-4e4f-b1a5-efe0d38ccbb0","HTAN HTAPP",FALSE,"Biospecimen","biospecimen_sarcoma","Not Applicable","syn25585687","Not Applicable","2020-04-01",TRUE,TRUE -"DataFlow","5737663d-c18e-4a0d-9af0-fa541f84897c","HTAN HTAPP",FALSE,"Demographics","clinical_demographics_breast","Not Applicable","syn25585688","Not Applicable","2020-04-01",TRUE,TRUE -"DataFlow","743efd3e-de3a-48e6-9412-9a1e6dcb13ee","HTAN HTAPP",FALSE,"Demographics","clinical_demographics_glioma","Not Applicable","syn25585689","Not Applicable","2020-04-01",TRUE,TRUE -"DataFlow","925dae94-fc60-4d48-aaba-7c2446bf9a73","HTAN HTAPP",FALSE,"Demographics","clinical_demographics_lung","Not Applicable","syn25585690","Not Applicable","2020-04-01",TRUE,TRUE -"DataFlow","5f0bc860-0185-475e-8bb6-747f6b7c488b","HTAN HTAPP",FALSE,"Demographics","clinical_demographics_neuroblastoma","Not Applicable","syn25585691","Not Applicable","2020-04-01",TRUE,TRUE -"DataFlow","ad7d32b4-4116-4c8b-b465-ba6900cd9de3","HTAN HTAPP",FALSE,"Demographics","clinical_demographics_sarcoma","Not Applicable","syn25585693","Not Applicable","2020-04-01",TRUE,TRUE -"DataFlow","eae1cfad-3962-4d7e-82f5-547ad7478a2f","HTAN HTAPP",FALSE,"Diagnosis","clinical_diagnosis_breast","Not Applicable","syn25585694","Not Applicable","2020-04-01",TRUE,TRUE -"DataFlow","10baf718-c9ae-4da5-8ea9-7bc30e085fd5","HTAN HTAPP",FALSE,"Diagnosis","clinical_diagnosis_glioma","Not Applicable","syn25585695","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","b15c8d77-dfa2-4435-a0cc-f80a5c893ff1","HTAN HTAPP",FALSE,"Diagnosis","clinical_diagnosis_lung","Not Applicable","syn25585696","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","06efe030-65c7-4682-96f5-bb3bbe2e5760","HTAN HTAPP",FALSE,"Diagnosis","clinical_diagnosis_neuroblastoma","Not Applicable","syn25585697","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","fc2a67ec-bada-4149-a8fb-04325af18a2a","HTAN HTAPP",FALSE,"Diagnosis","clinical_diagnosis_sarcoma","Not Applicable","syn25585699","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","ce535531-834b-46c7-a201-7fee50777c50","HTAN HTAPP",FALSE,"Exposure","clinical_exposure_breast","Not Applicable","syn25585700","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","e2d27380-f787-4456-85c0-df79002d32ee","HTAN HTAPP",FALSE,"Exposure","clinical_exposure_glioma","Not Applicable","syn25585701","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","242c1621-4631-409b-a28b-f9a30292eea0","HTAN HTAPP",FALSE,"Exposure","clinical_exposure_lung","Not Applicable","syn25585702","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","6a515de5-aa72-47d8-8e1c-a8eac5314209","HTAN HTAPP",FALSE,"Exposure","clinical_exposure_neuroblastoma","Not Applicable","syn25585703","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","2609836d-0871-4b2a-916b-cda1d125854a","HTAN HTAPP",FALSE,"Exposure","clinical_exposure_sarcoma","Not Applicable","syn25585705","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","eaf2cc0a-ab40-4c0d-b0f9-b4e1c49acf41","HTAN HTAPP",FALSE,"FamilyHistory","clinical_family_history_breast","Not Applicable","syn25585706","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","d313f38d-60ba-42dd-a0e8-a084181ab451","HTAN HTAPP",FALSE,"FamilyHistory","clinical_family_history_glioma","Not Applicable","syn25585707","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","9200d57f-786d-4164-9fe4-4b68f2d61fc7","HTAN HTAPP",FALSE,"FamilyHistory","clinical_family_history_lung","Not Applicable","syn25585709","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","0bd7b49c-4b81-4787-8eb3-c80fdab8dfcc","HTAN HTAPP",FALSE,"FamilyHistory","clinical_family_history_neuroblastoma","Not Applicable","syn25585710","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","3869b51d-c26f-4d08-8ffb-0e184b22718a","HTAN HTAPP",FALSE,"FamilyHistory","clinical_family_history_sarcoma","Not Applicable","syn25585712","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","4cdec8db-c10a-42a3-a6d4-8c14778c4c34","HTAN HTAPP",FALSE,"FollowUp","clinical_follow_up_breast","Not Applicable","syn25585713","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","3011df0c-5e67-4977-af55-17980aef60b4","HTAN HTAPP",FALSE,"FollowUp","clinical_follow_up_glioma","Not Applicable","syn25585714","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","68924ab8-0cce-4607-9f30-dd908e6aa279","HTAN HTAPP",FALSE,"FollowUp","clinical_follow_up_lung","Not Applicable","syn25585715","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","308962fa-9356-4920-afc4-9b723cdaf258","HTAN HTAPP",FALSE,"FollowUp","clinical_follow_up_neuroblastoma","Not Applicable","syn25585716","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","bb628d36-f71c-4a5c-a24c-6a13626d4887","HTAN HTAPP",FALSE,"FollowUp","clinical_follow_up_sarcoma","Not Applicable","syn25585718","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","a0debfb4-2282-42df-9ae4-b8e5214f9395","HTAN HTAPP",FALSE,"Therapy","clinical_therapy_breast","Not Applicable","syn25585719","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","af2efd5f-c4d9-4503-8300-25d53c738ebd","HTAN HTAPP",FALSE,"Therapy","clinical_therapy_glioma","Not Applicable","syn25585720","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","fd2f5b91-718f-4e8e-8338-b4c4096aa2dd","HTAN HTAPP",FALSE,"Therapy","clinical_therapy_lung","Not Applicable","syn25585721","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","81a757a2-a88b-4c53-9aec-1c599d120f39","HTAN HTAPP",FALSE,"Therapy","clinical_therapy_neuroblastoma","Not Applicable","syn25585722","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","84528477-441b-45da-835e-a7d0493fac99","HTAN HTAPP",FALSE,"Therapy","clinical_therapy_sarcoma","Not Applicable","syn25585724","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","c815ef03-07c8-435e-b0b6-c1442e9a5155","HTAN HTAPP",FALSE,"Therapy","clinical_molecular_test_breast","Not Applicable","syn25585725","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","38c83278-59c6-4cd6-8a65-93868c54954c","HTAN HTAPP",FALSE,"MolecularTest","clinical_molecular_test_glioma","Not Applicable","syn25585726","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","578e3fb1-ca08-4c26-a105-d579ee46472d","HTAN HTAPP",FALSE,"MolecularTest","clinical_molecular_test_lung","Not Applicable","syn25585727","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","87d05629-70db-4878-8cc5-12c24a82120f","HTAN HTAPP",FALSE,"MolecularTest","clinical_molecular_test_neuroblastoma","Not Applicable","syn25585728","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","6945aa9d-34c1-4396-9747-c37016b9db88","HTAN HTAPP",FALSE,"MolecularTest","clinical_molecular_test_sarcoma","Not Applicable","syn25585730","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","627f079d-cb2a-4811-bf74-56d115bd411f","HTAN HTAPP",FALSE,"MolecularTest","clinical_tier_2_breast","Not Applicable","syn25585731","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","7cff402f-b0c3-455d-a339-1e7881132923","HTAN HTAPP",FALSE,"MolecularTest","clinical_tier_2_glioma","Not Applicable","syn25585732","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","c1c2362e-da11-487a-b95b-a33f9d2a0269","HTAN HTAPP",FALSE,"ClinicalDataTier2","clinical_tier_2_lung","Not Applicable","syn25585733","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","0db1ad12-de1f-4b7a-a216-06840df01aac","HTAN HTAPP",FALSE,"ClinicalDataTier2","clinical_tier_2_neuroblastoma","Not Applicable","syn25585734","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","1d3cb8d3-c8ce-4837-8fac-3ea11660fc4c","HTAN HTAPP",FALSE,"ClinicalDataTier2","clinical_tier_2_sarcoma","Not Applicable","syn25585736","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","538dd0d3-84b9-43ac-ac5a-51f9d8438743","HTAN HTAPP",FALSE,"Biospecimen","biospecimen_ovarian","Not Applicable","syn25585757","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","4280934f-71fc-49b1-90ca-f27b067d8b55","HTAN HTAPP",FALSE,"Demographics","clinical_demographics_ovarian","Not Applicable","syn25585758","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","f9b371c5-03e2-414d-a140-f3bc33e2df8b","HTAN HTAPP",FALSE,"Diagnosis","clinical_diagnosis_ovarian","Not Applicable","syn25585760","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","764e8a41-cd6c-441e-b45e-723c09463e91","HTAN HTAPP",FALSE,"Exposure","clinical_exposure_ovarian","Not Applicable","syn25585761","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","371b86d3-fa2e-440e-bc4f-b3766d0d0358","HTAN HTAPP",FALSE,"FamilyHistory","clinical_family_history_ovarian","Not Applicable","syn25585762","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","3a41baea-a86d-490c-b040-1046c3985deb","HTAN HTAPP",FALSE,"FollowUp","clinical_follow_up_ovarian","Not Applicable","syn25585764","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","4597fa4a-dc60-4bf6-aab1-6c984c83a884","HTAN HTAPP",FALSE,"Therapy","clinical_therapy_ovarian","Not Applicable","syn25585766","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","650f9b9a-47d1-445d-8c53-b3eeb2286e1c","HTAN HTAPP",FALSE,"Therapy","clinical_molecular_test_ovarian","Not Applicable","syn25585767","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","b85de60c-782c-4c08-a9df-298cb44b3530","HTAN HTAPP",FALSE,"Therapy","clinical_tier_2_ovarian","Not Applicable","syn25585768","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","cd7739f4-04e9-48ca-b791-04b01ed3080d","HTAN HTAPP",FALSE,"Therapy","minerva","Not Applicable","syn25586754","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","bf52ce0a-af05-4d68-9aee-3bf286a9f781","HTAN HTAPP",FALSE,"Therapy","exseq_auxiliary_files","Not Applicable","syn25678408","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","db084714-98b7-457f-b26b-9bfbfcb3ab32","HTAN HTAPP",FALSE,"OtherAssay","exseq_level_4","Not Applicable","syn25757446","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","56e7ced5-4b00-4726-9c6c-6a4a07f69693","HTAN HTAPP",FALSE,"OtherAssay","exseq_level_5","Not Applicable","syn25757449","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","b9a673f0-2e37-4bc3-8c39-163aeffd6493","HTAN HTAPP",FALSE,"OtherAssay","codex_level_3_neuroblastoma","Not Applicable","syn25843119","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","cccf4695-96cb-415e-b2fa-4a994197272c","HTAN HTAPP",FALSE,"OtherAssay","codex_auxiliary_files_neuroblastoma","Not Applicable","syn25843156","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","5616e033-d278-4db9-9eb5-8a93d7e81cc6","HTAN HTAPP",FALSE,"ImagingLevel2","exseq_level_1","Not Applicable","syn25843550","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","be7429c5-40bc-42c2-9ed2-2f8173b9000e","HTAN HTAPP",FALSE,"ImagingLevel2","h_and_e_multi_assay_breast","Not Applicable","syn25882266","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","5703a91c-35db-4bff-8868-b7cc1d079997","HTAN HTAPP",FALSE,"ImagingLevel2","h_and_e_multiassay_neuroblastoma","Not Applicable","syn25882295","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","d20d450e-0cd9-41db-ad54-aa853d276133","HTAN HTAPP",FALSE,"ImagingLevel2","h_and_e_mibi_breast","Not Applicable","syn25882316","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","c720e231-99b3-4c74-8223-4461758017ad","HTAN HTAPP",FALSE,"ImagingLevel2","visium_level_1_ovarian","Not Applicable","syn25997522","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","27b43623-f856-4ea8-88a6-13bb4b08204b","HTAN HTAPP",FALSE,"ImagingLevel2","visium_level_2_ovarian","Not Applicable","syn25997523","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","592c36cb-3ae8-49cc-929a-0093d8fb1a1b","HTAN HTAPP",FALSE,"ImagingLevel2","visium_level_3_ovarian","Not Applicable","syn25997524","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","7a527031-094f-4b53-9f39-b4a895be7269","HTAN HTAPP",FALSE,"ImagingLevel2","visium_level_1_lung","Not Applicable","syn25997525","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","64f6e8db-ccdc-4350-9d0c-e62bdc978f1e","HTAN HTAPP",FALSE,"ImagingLevel2","visium_level_2_lung","Not Applicable","syn25997526","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","fd38a583-ab38-4bae-ab99-b8554c07aa2e","HTAN HTAPP",FALSE,"ImagingLevel2","visium_level_3_lung","Not Applicable","syn25997527","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","1a429bdf-7946-4eeb-b699-6b52583da46c","HTAN HTAPP",FALSE,"ScRNA-seqLevel1","single_cell_RNAseq_level_1_PML","Not Applicable","syn26002150","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","3799d3d6-b3b8-48b3-af9e-15daa4380502","HTAN HTAPP",FALSE,"ScRNA-seqLevel2","single_cell_RNAseq_level_2_PML","Not Applicable","syn26002153","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","c9e93002-2d20-45b8-822b-31b55465bf6d","HTAN HTAPP",FALSE,"ScRNA-seqLevel3","single_cell_RNAseq_level_3_PML","Not Applicable","syn26002156","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","d6afdf7d-c23a-4abd-b69a-b7099d7215e3","HTAN HTAPP",FALSE,"OtherAssay","mibi_level_3_segmented_cell_coordinates","Not Applicable","syn26014990","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","04682278-4b5c-42e1-9453-fe30f0e24f3a","HTAN HTAPP",FALSE,"OtherAssay","data_integration_MBC","Not Applicable","syn26033679","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","a50e4c3a-d164-4951-ae0c-cfa2af987cd6","HTAN HTAPP",FALSE,"Biospecimen","biospecimen_PML","Not Applicable","syn26125064","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","7c6bee01-8267-43cf-979a-3135398647b9","HTAN HTAPP",FALSE,"Demographics","clinical_demographics_PML","Not Applicable","syn26125065","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","a4f2c83b-4f44-4a4a-a917-2856886264d4","HTAN HTAPP",FALSE,"Diagnosis","clinical_diagnosis_PML","Not Applicable","syn26125066","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","b74d61d8-c3a5-4dba-abfd-bcae63a64a84","HTAN HTAPP",FALSE,"Exposure","clinical_exposure_PML","Not Applicable","syn26125067","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","e9de83fc-683d-4675-8d50-c9444e3d7376","HTAN HTAPP",FALSE,"FamilyHistory","clinical_family_history_PML","Not Applicable","syn26125068","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","6ffd7511-c25c-4852-933e-3a220ac8b0ba","HTAN HTAPP",FALSE,"FollowUp","clinical_follow_up_PML","Not Applicable","syn26125069","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","ee48feb5-a39e-4757-8286-184ee43b22dd","HTAN HTAPP",FALSE,"Therapy","clinical_therapy_PML","Not Applicable","syn26125070","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","1ddd080f-7435-4cbb-a830-7673db9d2ba2","HTAN HTAPP",FALSE,"MolecularTest","clinical_molecular_test_PML","Not Applicable","syn26125071","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","e00f2ab3-2114-41b0-94d3-059730e545d1","HTAN HTAPP",FALSE,"ClinicalDataTier2","clinical_tier_2_PML","Not Applicable","syn26125072","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","cec35b36-8d25-4610-8dc5-28285e38f257","HTAN HTAPP",FALSE,"OtherAssay","data_integration_neuroblastoma","Not Applicable","syn26126863","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","563b53f0-37f1-4039-80e9-cef8d887103a","HTAN HTAPP",FALSE,"OtherAssay","bulk_DNAseq_level_1_metadata","Not Applicable","syn26376477","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","7ad8722b-ad00-48ec-8c0f-484e1a8ede2a","HTAN HTAPP",FALSE,"OtherAssay","bulk_RNAseq_level_1_metadata","Not Applicable","syn26376488","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","b7704ac3-7e97-4b18-acca-2f6d9a418ae1","HTAN HTAPP",FALSE,"OtherAssay","HTAPP Documents","Not Applicable","syn26560266","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","1dda2c10-dd2f-4905-912f-8985e3b29c3c","HTAN HTAPP",FALSE,"OtherAssay","clinical_tier_3_breast_precancer_and_cancer","Not Applicable","syn27764067","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","220c56dc-b7b1-4f68-bb0b-017719df56cc","HTAN Vanderbilt",FALSE,"ScRNA-seqLevel3","single_cell_RNAseq_level_3","Not Applicable","syn23520239","Not Applicable","2022-10-01",TRUE,TRUE -"DataFlow","fbb4e618-9e6a-4e85-882a-b2068527df2d","HTAN Vanderbilt",FALSE,"ScRNA-seqLevel2","single_cell_RNAseq_level_2","Not Applicable","syn23520240","Not Applicable","2022-10-01",TRUE,TRUE -"DataFlow","2c4d486d-2563-4e1c-87fc-04d924e0ad33","HTAN Vanderbilt",FALSE,"ScRNA-seqLevel1","single_cell_RNAseq_level_1","Not Applicable","syn23520241","Not Applicable","2022-10-01",TRUE,TRUE -"DataFlow","9f7f36f6-3dce-4962-a5bd-28a5bc759b8c","HTAN Vanderbilt",FALSE,"Demographics","clinical_demographics","Not Applicable","syn23520242","Not Applicable","2022-10-01",TRUE,TRUE -"DataFlow","f46154c3-b74a-4f79-ac76-3d5a715454f3","HTAN Vanderbilt",FALSE,"Diagnosis","clinical_diagnosis","Not Applicable","syn23520243","Not Applicable","2022-10-01",TRUE,TRUE -"DataFlow","4f982836-1677-4990-9eba-10c2e5502811","HTAN Vanderbilt",FALSE,"Exposure","clinical_exposure","Not Applicable","syn23520244","Not Applicable","2022-10-01",TRUE,TRUE -"DataFlow","3063a74c-0f9b-4794-8353-3e47accf3e58","HTAN Vanderbilt",FALSE,"FamilyHistory","clinical_family_history","Not Applicable","syn23520245","Not Applicable","2022-10-01",TRUE,TRUE -"DataFlow","c383cd5e-337c-4897-a340-098758ef2b3c","HTAN Vanderbilt",FALSE,"FollowUp","clinical_follow_up","Not Applicable","syn23520246","Not Applicable","2022-10-01",TRUE,TRUE -"DataFlow","47576871-dc0a-400d-9d36-cdbd8c725922","HTAN Vanderbilt",FALSE,"Therapy","clinical_therapy","Not Applicable","syn23520247","Not Applicable","2022-10-01",TRUE,TRUE -"DataFlow","9a6bfce6-9c6f-4eaf-a576-ccf8cef06c8a","HTAN Vanderbilt",FALSE,"MolecularTest","clinical_molecular_test","Not Applicable","syn24860587","Not Applicable","2021-10-01",TRUE,TRUE -"DataFlow","0eb9d0f7-5caf-47e7-8347-006f0ebd5bc9","HTAN Vanderbilt",FALSE,"MolecularTest","clinical_tier_2","Not Applicable","syn24873794","Not Applicable","2021-10-01",TRUE,TRUE -"DataFlow","030bed7b-5052-43ee-aa6e-88aceb51d490","HTAN Vanderbilt",FALSE,"MolecularTest","clinical_tier_3_colon","Not Applicable","syn24873795","Not Applicable","2021-10-01",TRUE,TRUE -"DataFlow","6dbd3cf4-0f2e-4402-a792-590239d8397a","HTAN Vanderbilt",FALSE,"MolecularTest","archive","Not Applicable","syn24986117","Not Applicable","2021-10-01",TRUE,TRUE -"DataFlow","8fb5c3eb-4821-4703-9ff0-6053e82dee3e","HTAN Vanderbilt",FALSE,"ImagingLevel2","mxif_level_2","Not Applicable","syn24989514","Not Applicable","2021-10-01",TRUE,TRUE -"DataFlow","9c33b268-feff-4494-b2ae-b0eb2f4df7b7","HTAN Vanderbilt",FALSE,"Biospecimen","biospecimen","Not Applicable","syn25010793","Not Applicable","2021-10-01",TRUE,TRUE -"DataFlow","01ce2586-c97a-4d78-92a2-a6b537087bd6","HTAN Vanderbilt",FALSE,"ImagingLevel2","h_and_e_level_1","Not Applicable","syn25054230","Not Applicable","2021-10-01",TRUE,TRUE -"DataFlow","690cff03-f6a9-498b-b957-4c7a667bf436","HTAN Vanderbilt",FALSE,"ScRNA-seqLevel4","single_cell_RNAseq_level_4","Not Applicable","syn25459679","Not Applicable","2021-10-01",TRUE,TRUE -"DataFlow","1e0aa880-f2d1-4d74-a572-8b749084bdbd","HTAN Vanderbilt",FALSE,"BulkWESLevel1","whole_exome_seq_level_1","Not Applicable","syn26950967","Not Applicable","2021-10-01",TRUE,TRUE -"DataFlow","d1c94911-9675-44a4-8675-f0bc61409db2","HTAN Vanderbilt",FALSE,"BulkWESLevel2","whole_exome_seq_level_2","Not Applicable","syn26950968","Not Applicable","2021-10-01",TRUE,TRUE -"DataFlow","8b83c2a2-b6c4-4fca-b2ac-7c1b7eed2c6a","HTAN Vanderbilt",FALSE,"BulkWESLevel3","whole_exome_seq_level_3","Not Applicable","syn26950969","Not Applicable","2021-10-01",FALSE,TRUE -"DataFlow","f82c9c15-d9b8-4596-89b6-6f73c50b5414","HTAN TNP - TMA",FALSE,"Not Applicable","phase-1","Not Applicable","syn23554989","Not Applicable","2022-12-01",FALSE,TRUE -"DataFlow","165ea3a4-9c06-4f9b-aa7d-2c6ed0497476","HTAN TNP - TMA",FALSE,"Biospecimen","biospecimen","Not Applicable","syn24995166","Not Applicable","2022-12-01",FALSE,TRUE -"DataFlow","becd72bd-767d-492e-8750-6e87cbd1e2a1","HTAN TNP - TMA",FALSE,"Demographics","clinical_demographics","Not Applicable","syn24995167","Not Applicable","2022-12-01",FALSE,TRUE -"DataFlow","8d789c38-1903-4754-9186-eccaba210391","HTAN TNP - TMA",FALSE,"Diagnosis","clinical_diagnosis","Not Applicable","syn24995168","Not Applicable","2022-12-01",FALSE,TRUE -"DataFlow","43e9a528-a0b5-4b9b-bd5e-a384148f4442","HTAN TNP - TMA",FALSE,"Exposure","clinical_exposure","Not Applicable","syn24995170","Not Applicable","2022-12-01",FALSE,TRUE -"DataFlow","dfed4bfa-8118-4b0f-aaa2-f0ffa9896289","HTAN TNP - TMA",FALSE,"FamilyHistory","clinical_family_history","Not Applicable","syn24995171","Not Applicable","2022-12-01",FALSE,TRUE -"DataFlow","96d1d0b8-a295-4864-b19e-4633427e3e59","HTAN TNP - TMA",FALSE,"FollowUp","clinical_follow_up","Not Applicable","syn24995173","Not Applicable","2022-12-01",FALSE,TRUE -"DataFlow","23d0fbc4-ffe3-4486-9f5e-ad64bcb7abfb","HTAN TNP - TMA",FALSE,"Therapy","clinical_therapy","Not Applicable","syn24995174","Not Applicable","2022-12-01",FALSE,TRUE -"DataFlow","1c3dd699-6c54-43b4-b3de-62ed5e078258","HTAN TNP - TMA",FALSE,"MolecularTest","clinical_molecular_test","Not Applicable","syn24995175","Not Applicable","2022-12-01",FALSE,TRUE -"DataFlow","764a885b-85b0-48e4-b9b7-0538c2bfa361","HTAN TNP - TMA",FALSE,"ClinicalDataTier2","clinical_tier_2","Not Applicable","syn24995176","Not Applicable","2022-12-01",FALSE,TRUE -"DataFlow","0b863525-b547-4270-8b23-b0e8dd57351c","HTAN TNP - TMA",FALSE,"BreastCancerTier3","clinical_tier_3_breast","Not Applicable","syn24995177","Not Applicable","2022-12-01",FALSE,TRUE -"DataFlow","022b9480-33cf-4e1b-a38e-90764a8ba612","HTAN TNP - TMA",FALSE,"BreastCancerTier3","clinical_tier_3_glioma","Not Applicable","syn24995179","Not Applicable","2022-12-01",FALSE,TRUE -"DataFlow","f564afeb-6566-4cb8-a9f3-fd19fcfd215f","HTAN TNP - TMA",FALSE,"BreastCancerTier3","clinical_tier_3_colon","Not Applicable","syn24995180","Not Applicable","2022-12-01",FALSE,TRUE -"DataFlow","57abd7e8-e4b4-4a5a-bf55-5fdd8918b8a3","HTAN TNP - TMA",FALSE,"BreastCancerTier3","clinical_tier_3_lung","Not Applicable","syn24995181","Not Applicable","2021-11-01",TRUE,TRUE -"DataFlow","b700e429-037a-4479-ae39-347fdfdff07a","HTAN TNP - TMA",FALSE,"BreastCancerTier3","clinical_tier_3_sarcoma","Not Applicable","syn24995182","Not Applicable","2021-11-01",TRUE,TRUE -"DataFlow","cca8ce35-ab32-489e-8d6a-a4240e647831","HTAN TNP - TMA",FALSE,"BreastCancerTier3","clinical_tier_3_ovarian","Not Applicable","syn24995184","Not Applicable","2021-11-01",TRUE,TRUE -"DataFlow","400a08b9-4fb1-4923-a17d-cc869701d070","HTAN TNP - TMA",FALSE,"BreastCancerTier3","clinical_tier_3_neuroblastoma","Not Applicable","syn24995185","Not Applicable","2021-11-01",TRUE,TRUE -"DataFlow","d44df7d7-d68b-4f02-b127-c6e4bd92a822","HTAN TNP - TMA",FALSE,"BreastCancerTier3","clinical_tier_3_pancreatic","Not Applicable","syn24995187","Not Applicable","2021-11-01",TRUE,TRUE -"DataFlow","c15a4fb7-b48e-480d-aabd-367412236731","HTAN TNP - TMA",FALSE,"BreastCancerTier3","clinical_tier_3_melanoma","Not Applicable","syn24995188","Not Applicable","2021-11-01",TRUE,TRUE -"DataFlow","a29fe9cf-8782-464f-8001-5860ef29f72a","HTAN TNP - TMA",FALSE,"BreastCancerTier3","clinical_tier_3_acute_lymphoblastic_leukemia","Not Applicable","syn24995190","Not Applicable","2021-11-01",TRUE,TRUE -"DataFlow","0166da13-229f-4fad-a866-c60c1837686a","HTAN TNP - TMA",FALSE,"BreastCancerTier3","minerva","Not Applicable","syn25472274","Not Applicable","2021-11-01",TRUE,TRUE -"DataFlow","41ecfd5b-02f0-4b4c-8061-247aec8fe10a","HTAN TNP - TMA",FALSE,"BreastCancerTier3","imaging_level_2","Not Applicable","syn26341500","Not Applicable","2021-11-01",TRUE,TRUE -"DataFlow","55a6391e-f2da-4ed4-b303-560c836d2a17","HTAN TNP - TMA",FALSE,"BreastCancerTier3","galaxy-mti","Not Applicable","syn32606398","Not Applicable","2021-11-01",TRUE,TRUE -"DataFlow","88ba94ba-f023-40c2-8cff-1d13639a4248","HTAN OHSU",FALSE,"Not Applicable","Example_Assay_Dataset","Not Applicable","syn22093323","Not Applicable","2022-08-01",TRUE,TRUE -"DataFlow","a428e17d-8e77-4375-8f4f-ad33cc829d16","HTAN OHSU",FALSE,"Not Applicable","Example_Clinical_Data","Not Applicable","syn22097676","Not Applicable","2022-08-01",TRUE,TRUE -"DataFlow","9e266ce9-623f-48d5-941d-8e4f1f6891b3","HTAN OHSU",FALSE,"Not Applicable","rppa_level_2","Not Applicable","syn23639564","Not Applicable","2022-08-01",TRUE,TRUE -"DataFlow","af426186-d0bc-426f-9c79-44999ed91bf0","HTAN OHSU",FALSE,"Not Applicable","rppa_level_3","Not Applicable","syn23639578","Not Applicable","2022-08-01",TRUE,TRUE -"DataFlow","b5043e4d-adfc-4cb0-aae2-eabeeb129a21","HTAN OHSU",FALSE,"Not Applicable","rppa_level_4","Not Applicable","syn23639603","Not Applicable","2022-08-01",TRUE,TRUE -"DataFlow","c56b8a9e-9976-4b43-9bc3-8673c763daf9","HTAN OHSU",FALSE,"Not Applicable","nanostring_level_1","Not Applicable","syn23639753","Not Applicable","2022-08-01",TRUE,TRUE -"DataFlow","0a3da13c-adfc-4171-97ac-a05d409a3f79","HTAN OHSU",FALSE,"Not Applicable","nanostring_level_2","Not Applicable","syn23639801","Not Applicable","2022-08-01",TRUE,TRUE -"DataFlow","c30a6c97-b87d-48b6-bf9c-4ee1583d9406","HTAN OHSU",FALSE,"Not Applicable","nanostring_level_3","Not Applicable","syn23639807","Not Applicable","2022-08-01",TRUE,TRUE -"DataFlow","3a073b19-d3cc-4f78-b987-dc18c63e89f3","HTAN OHSU",FALSE,"BulkRNA-seqLevel1","bulk_rnaseq_level_1","Not Applicable","syn23639829","Not Applicable","2022-08-01",TRUE,TRUE -"DataFlow","1b43135b-7814-4156-bfa0-f27907bf0740","HTAN OHSU",FALSE,"BulkWESLevel1","bulk_dnaseq_level_1","Not Applicable","syn23639864","Not Applicable","2022-08-01",TRUE,TRUE -"DataFlow","25dd2b75-3cc6-46b9-9f96-a4ab18c876a7","HTAN OHSU",FALSE,"Biospecimen","biospecimen","Not Applicable","syn24615273","Not Applicable","2022-08-01",TRUE,TRUE -"DataFlow","373881bc-e1e8-4c64-b660-9fb7f541abd3","HTAN OHSU",FALSE,"Diagnosis","clinical_diagnosis","Not Applicable","syn24615275","Not Applicable","2022-08-01",TRUE,TRUE -"DataFlow","a55d042b-fb8a-40bc-8664-211879d1e73a","HTAN OHSU",FALSE,"Exposure","clinical_exposure","Not Applicable","syn24615276","Not Applicable","2022-08-01",TRUE,TRUE -"DataFlow","c0891539-f09e-4f52-9ef3-fd618fa83433","HTAN OHSU",FALSE,"FamilyHistory","clinical_family_history","Not Applicable","syn24615277","Not Applicable","2020-11-01",TRUE,TRUE -"DataFlow","10c4eabe-8ce8-46d5-98e8-6747fc8e4baa","HTAN OHSU",FALSE,"FollowUp","clinical_follow_up","Not Applicable","syn24615278","Not Applicable","2020-11-01",TRUE,TRUE -"DataFlow","a4582ac2-c547-44e0-853c-5da0e20dceec","HTAN OHSU",FALSE,"Therapy","clinical_therapy","Not Applicable","syn24615279","Not Applicable","2020-11-01",TRUE,TRUE -"DataFlow","765e6594-07ca-48ba-838f-676ba41b6a87","HTAN OHSU",FALSE,"Therapy","imaging_level_1","Not Applicable","syn24829230","Not Applicable","2020-11-01",TRUE,TRUE -"DataFlow","98130da7-c70a-4900-816f-a8e281686809","HTAN OHSU",FALSE,"ImagingLevel2","imaging_level_2","Not Applicable","syn24829424","Not Applicable","2020-11-01",TRUE,TRUE -"DataFlow","a89a2e7c-ffcb-4c29-8be7-df0ba36ac45e","HTAN OHSU",FALSE,"ImagingLevel2","em_level_4","Not Applicable","syn24829496","Not Applicable","2020-11-01",TRUE,TRUE -"DataFlow","b8d6df6b-7a22-4149-9085-23c1cab3bb7f","HTAN OHSU",FALSE,"ImagingLevel2","em_level_3","Not Applicable","syn24829499","Not Applicable","2020-11-01",TRUE,TRUE -"DataFlow","3fdf4ed1-3ff7-44da-bb20-1637633faa08","HTAN OHSU",FALSE,"MolecularTest","clinical_molecular_test","Not Applicable","syn24860589","Not Applicable","2020-11-01",TRUE,TRUE -"DataFlow","c781de71-6c0f-46de-ba56-a8ec371cb685","HTAN OHSU",FALSE,"Demographics","clinical_demographics","Not Applicable","syn24862563","Not Applicable","2020-11-01",TRUE,TRUE -"DataFlow","bc39ed38-f716-4972-be74-17020863f67c","HTAN OHSU",FALSE,"ClinicalDataTier2","clinical_tier_2","Not Applicable","syn24873803","Not Applicable","2020-11-01",TRUE,TRUE -"DataFlow","d62d33eb-7e48-4699-baea-5dc2a045cfa2","HTAN OHSU",FALSE,"BreastCancerTier3","clinical_tier_3_breast","Not Applicable","syn24873804","Not Applicable","2020-11-01",TRUE,TRUE -"DataFlow","3158f43b-4fe3-42b4-bbdd-02a2d4156255","HTAN OHSU",FALSE,"BreastCancerTier3","imaging_channel_data","Not Applicable","syn24988790","Not Applicable","2020-11-01",TRUE,TRUE -"DataFlow","0b33cc0a-0f1f-4a31-a0c0-c8e2f0e020c4","HTAN OHSU",FALSE,"BreastCancerTier3","minerva_stories","Not Applicable","syn24992265","Not Applicable","2020-11-01",TRUE,TRUE -"DataFlow","9778e188-3edd-4f2e-8cd0-d3d3a8d3fcfd","HTAN OHSU",FALSE,"BreastCancerTier3","other_assay","Not Applicable","syn25114220","Not Applicable","2020-11-01",TRUE,TRUE -"DataFlow","f3a1357f-481a-4a1c-bcef-ac057bfff69c","HTAN OHSU",FALSE,"BreastCancerTier3","minerva","Not Applicable","syn25472273","Not Applicable","2020-11-01",TRUE,TRUE -"DataFlow","d7e912bb-ec22-4420-b1fa-ba616092eb79","HTAN OHSU",FALSE,"BreastCancerTier3","bulk_dnaseq_level_3","Not Applicable","syn26535370","Not Applicable","2020-11-01",TRUE,TRUE -"DataFlow","a73e6964-0d0d-4424-971d-b0b39064b91c","HTAN OHSU",FALSE,"BulkRNA-seqLevel3","bulk_rnaseq_level_3","Not Applicable","syn26535390","Not Applicable","2020-11-01",TRUE,TRUE -"DataFlow","1fed8187-236b-4e1e-82b1-7e7aebbd2a75","HTAN OHSU",FALSE,"BulkRNA-seqLevel3","imaging_level_4","Not Applicable","syn26535421","Not Applicable","2020-11-01",TRUE,TRUE -"DataFlow","53bd1cbb-407c-46c4-b059-5f6566f6c43a","HTAN OHSU",FALSE,"BulkRNA-seqLevel3","sc_dnaseq_level_3","Not Applicable","syn26535461","Not Applicable","2020-11-01",TRUE,TRUE -"DataFlow","5de8abf8-d30f-4ea0-9a2e-14a45d5c0726","HTAN OHSU",FALSE,"BulkRNA-seqLevel3","imaging_level_3","Not Applicable","syn26535576","Not Applicable","2020-11-01",TRUE,TRUE -"DataFlow","bdf9de0b-1ac2-418e-90f6-b56c23b1ae12","HTAN OHSU",FALSE,"ScATAC-seqLevel1","sc_atacseq_level_1","Not Applicable","syn26535587","Not Applicable","2020-11-01",TRUE,TRUE -"DataFlow","fd51cadb-5e2c-4d2c-8354-e942f8fdc735","HTAN OHSU",FALSE,"ScATAC-seqLevel1","sc_atacseq_level_2","Not Applicable","syn26535592","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","48b721fc-5a76-4735-97d8-b4c0251b0846","HTAN OHSU",FALSE,"BulkRNA-seqLevel2","bulk_rnaseq_level_2","Not Applicable","syn26535599","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","26020142-a4ef-4d43-b024-270a3ead97a0","HTAN OHSU",FALSE,"BulkRNA-seqLevel2","sc_dnaseq_level_2","Not Applicable","syn26535617","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","73b34999-660d-463f-93d1-42a08e3f26dc","HTAN OHSU",FALSE,"BulkRNA-seqLevel2","sc_dnaseq_level_1","Not Applicable","syn26535725","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","10198af7-5d06-4706-ac4b-4441ec989b9b","HTAN OHSU",FALSE,"BulkWESLevel2","bulk_dnaseq_level_2","Not Applicable","syn26536411","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","cf7b2a13-f641-4d1e-9f98-4e9f6d201afd","HTAN OHSU",FALSE,"BulkWESLevel2","archive","Not Applicable","syn26987435","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","8667e2ef-9602-4ee5-8224-fdb618563497","HTAN OHSU",FALSE,"BulkWESLevel2","sc_atacseq_level_3","Not Applicable","syn31547223","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","92bac585-2286-4760-9b2b-889f9f03795c","HTAN OHSU",FALSE,"BulkWESLevel2","em_level_1","Not Applicable","syn31566909","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","a171c3e7-1e6e-478e-9bc0-cd1d5608e572","HTAN OHSU",FALSE,"BulkWESLevel2","em_level_2","Not Applicable","syn31773950","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","b19f05d3-6e94-480e-9930-f4cb2579a0c5","HTAN HMS",FALSE,"Not Applicable","Example Clinical Data - Demographics","Not Applicable","syn22126051","Not Applicable","2021-05-15",TRUE,TRUE -"DataFlow","549e0605-139a-4373-8553-692480de6145","HTAN HMS",FALSE,"Biospecimen","biospecimen","Not Applicable","syn24616231","Not Applicable","2021-05-15",TRUE,TRUE -"DataFlow","a529a873-381d-4a6f-86af-a0e4ee9079f9","HTAN HMS",FALSE,"Demographics","clinical_demographics","Not Applicable","syn24616233","Not Applicable","2021-05-15",TRUE,TRUE -"DataFlow","6e201350-a199-4608-aa0d-b3c7d4267f54","HTAN HMS",FALSE,"Diagnosis","clinical_diagnosis","Not Applicable","syn24616235","Not Applicable","2021-05-15",TRUE,TRUE -"DataFlow","a34725d0-00bb-44c4-ae9f-4e9f8fa93bbf","HTAN HMS",FALSE,"Exposure","clinical_exposure","Not Applicable","syn24616237","Not Applicable","2021-05-15",TRUE,TRUE -"DataFlow","12e1e012-86bf-4ff9-a59e-3587838c47b6","HTAN HMS",FALSE,"FamilyHistory","clinical_family_history","Not Applicable","syn24616239","Not Applicable","2021-05-15",TRUE,TRUE -"DataFlow","e6e21dcb-aee7-46de-9e86-d0ad0d5e9934","HTAN HMS",FALSE,"FollowUp","clinical_follow_up","Not Applicable","syn24616241","Not Applicable","2021-05-15",TRUE,TRUE -"DataFlow","aa09ae1c-d735-44f5-aae3-8c053d9749b4","HTAN HMS",FALSE,"Therapy","clinical_therapy","Not Applicable","syn24616243","Not Applicable","2021-05-15",TRUE,TRUE -"DataFlow","de8256e3-7864-49c4-8012-ddb119c73db0","HTAN HMS",FALSE,"MolecularTest","clinical_molecular_test","Not Applicable","syn24860583","Not Applicable","2021-05-15",TRUE,TRUE -"DataFlow","639ffe4b-3c5d-433a-a379-2fc6668f8e40","HTAN HMS",FALSE,"MolecularTest","clinical_tier_2","Not Applicable","syn24873780","Not Applicable","2021-05-15",TRUE,TRUE -"DataFlow","e4cbd5f1-255d-475c-b877-48dc59544f0e","HTAN HMS",FALSE,"MolecularTest","clinical_tier_3_melanoma","Not Applicable","syn24873781","Not Applicable","2021-05-15",TRUE,TRUE -"DataFlow","28a02148-ae11-462c-b4cf-07b8d6ec12ab","HTAN HMS",FALSE,"BulkRNA-seqLevel1","PickSeq_Level_1","Not Applicable","syn24991756","Not Applicable","2021-05-15",TRUE,TRUE -"DataFlow","887962b0-8253-41bd-bcd8-8b4224d34d13","HTAN HMS",FALSE,"ImagingLevel2","imaging_level_2","Not Applicable","syn25580853","Not Applicable","2021-05-15",TRUE,TRUE -"DataFlow","9d3d4322-595f-4086-87bd-9a6f688e7c38","HTAN HMS",FALSE,"ImagingLevel2","minerva","Not Applicable","syn25653114","Not Applicable","2021-05-15",TRUE,TRUE -"DataFlow","409f3aa2-0a4c-4953-94f0-d60d80bb528c","HTAN HMS",FALSE,"ImagingLevel2","archive","Not Applicable","syn25750256","Not Applicable","2021-05-15",TRUE,TRUE -"DataFlow","1dbd0946-e1fa-4b49-b0fe-e13fe047d56d","HTAN HMS",FALSE,"BulkRNA-seqLevel2","PickSeq_Level_2","Not Applicable","syn26530450","Not Applicable","2021-05-15",TRUE,TRUE -"DataFlow","d163ee03-7f37-4d5d-9a33-49378b5efd54","HTAN HMS",FALSE,"BulkRNA-seqLevel3","PickSeq_Level_3","Not Applicable","syn26530452","Not Applicable","2021-05-15",TRUE,TRUE -"DataFlow","ae7db4fc-b882-463a-afc4-14b8b37b919f","HTAN HMS",FALSE,"BulkRNA-seqLevel3","imaging_level_4","Not Applicable","syn34625996","Not Applicable","2021-05-15",TRUE,TRUE -"DataFlow","666386dc-89d9-44b9-8620-06bc5a8a179c","HTAN HMS",FALSE,"BulkRNA-seqLevel3","imaging_level_3_segmentation","Not Applicable","syn36848897","Not Applicable","2021-05-15",TRUE,TRUE -"DataFlow","ffdb6f2a-371e-49bf-b4a8-53e5140949ac","HTAN BU",FALSE,"Not Applicable","h_and_e","Not Applicable","syn22432744","Not Applicable","2021-02-01",TRUE,TRUE -"DataFlow","2fa4b32c-fe8d-456c-83e5-6dbac6de49fa","HTAN BU",FALSE,"Demographics","clinical_demographics","Not Applicable","syn22677299","Not Applicable","2021-02-01",TRUE,TRUE -"DataFlow","3b3b351a-7841-4ac9-b008-97ab265a2037","HTAN BU",FALSE,"ScRNA-seqLevel1","sc_rna_seq_level_1","Not Applicable","syn22722838","Not Applicable","2021-02-01",TRUE,TRUE -"DataFlow","bb80036d-d72d-404e-8d8d-97221fb29bb5","HTAN BU",FALSE,"Biospecimen","biospecimens","Not Applicable","syn23632145","Not Applicable","2021-02-01",TRUE,TRUE -"DataFlow","b3dd4762-b2dc-4d15-a773-d67599938928","HTAN BU",FALSE,"ScRNA-seqLevel2","sc_rna_seq_level_2","Not Applicable","syn23662467","Not Applicable","2021-02-01",TRUE,TRUE -"DataFlow","fe4b216f-bf77-4392-97c1-50fb8250abfe","HTAN BU",FALSE,"ScRNA-seqLevel3","sc_rna_seq_level_3","Not Applicable","syn23662468","Not Applicable","2021-02-01",TRUE,TRUE -"DataFlow","f2ef7437-eb49-4e51-afa6-15ec17d794c1","HTAN BU",FALSE,"ScRNA-seqLevel4","sc_rna_seq_level_4","Not Applicable","syn23662469","Not Applicable","2021-02-01",TRUE,TRUE -"DataFlow","a57a260e-1d2b-4f0e-b65f-160304d21a74","HTAN BU",FALSE,"ScRNA-seqLevel4","archive","Not Applicable","syn24610388","Not Applicable","2021-02-01",TRUE,TRUE -"DataFlow","520d4af6-c43e-4db2-bc31-72a0f728be58","HTAN BU",FALSE,"Exposure","clinical_exposure","Not Applicable","syn24615248","Not Applicable","2021-02-01",TRUE,TRUE -"DataFlow","d986a368-db53-4c34-8149-32212ab913cc","HTAN BU",FALSE,"Diagnosis","clinical_diagnosis","Not Applicable","syn24615249","Not Applicable","2021-02-01",TRUE,TRUE -"DataFlow","1afbddcb-5cf1-4da2-878d-32ad7f470b2b","HTAN BU",FALSE,"FamilyHistory","clinical_family_history","Not Applicable","syn24615250","Not Applicable","2021-02-01",TRUE,TRUE -"DataFlow","a9d54fe9-3c8f-4d9f-91aa-78a3e474c746","HTAN BU",FALSE,"FollowUp","clinical_follow_up","Not Applicable","syn24615251","Not Applicable","2023-02-01",FALSE,FALSE -"DataFlow","87828ce6-f210-4796-a976-2a3e269022a2","HTAN BU",FALSE,"Therapy","clinical_therapy","Not Applicable","syn24615252","Not Applicable","2023-02-01",FALSE,FALSE -"DataFlow","a94ed6f2-b550-4938-aa7d-6eecffb130a9","HTAN BU",FALSE,"Therapy","clinical_molecular_test","Not Applicable","syn24860585","Not Applicable","2023-02-01",FALSE,FALSE -"DataFlow","11c49d80-dadf-425d-b869-1ea20d29454b","HTAN BU",FALSE,"ClinicalDataTier2","clinical_tier_2","Not Applicable","syn24873786","Not Applicable","2023-02-01",FALSE,FALSE -"DataFlow","bf61135c-d5ec-464f-9515-7596e5aa2485","HTAN BU",FALSE,"LungCancerTier3","clinical_tier_3_lung","Not Applicable","syn24873787","Not Applicable","2023-02-01",FALSE,FALSE -"DataFlow","ebefc653-3855-4ccb-8ad9-00cbabce7359","HTAN BU",FALSE,"LungCancerTier3","minerva","Not Applicable","syn25586693","Not Applicable","2023-02-01",FALSE,FALSE -"DataFlow","df409990-6927-4713-ab3a-956c7c90c0c6","HTAN BU",FALSE,"LungCancerTier3","image_level2","Not Applicable","syn26031632","Not Applicable","2023-02-01",FALSE,FALSE -"DataFlow","a1067768-7797-4ba9-a1a1-215d8e5ca579","HTAN BU",FALSE,"LungCancerTier3","Bulk_WES_level_3","Not Applicable","syn26944441","Not Applicable","2023-02-01",FALSE,FALSE -"DataFlow","9c9a8cbe-c752-4679-b348-0c89f1b6b078","HTAN BU",FALSE,"LungCancerTier3","Bulk_RNA_Level3","Not Applicable","syn26944456","Not Applicable","2023-02-01",FALSE,FALSE -"DataFlow","57d13eb0-bfbc-4626-95fc-08614f8a735c","HTAN WUSTL",FALSE,"ScRNA-seqLevel1","sc_RNAseq_level_1","Not Applicable","syn23643211","Not Applicable","2023-02-01",FALSE,FALSE -"DataFlow","ff1acc02-d122-4725-9de6-6db2c6903a02","HTAN WUSTL",FALSE,"ScRNA-seqLevel1","sc_RNAseq_level_2","Not Applicable","syn23643212","Not Applicable","2023-02-01",FALSE,FALSE -"DataFlow","e05f585b-caf1-4be7-b554-c0592fbbff7b","HTAN WUSTL",FALSE,"ScRNA-seqLevel1","sc_RNAseq_level_3","Not Applicable","syn23643213","Not Applicable","2023-02-01",FALSE,FALSE -"DataFlow","82d42536-d2f1-46c9-9dba-85e9798d9df8","HTAN WUSTL",FALSE,"ScRNA-seqLevel1","sc_RNAseq_level_4","Not Applicable","syn23643214","Not Applicable","2023-02-01",FALSE,FALSE -"DataFlow","2e939a2a-a1c4-480b-b40f-0e7467236092","HTAN WUSTL",FALSE,"ScRNA-seqLevel1","sn_ATACseq_level_1","Not Applicable","syn23643215","Not Applicable","2023-02-01",FALSE,FALSE -"DataFlow","8bdb577c-07ac-45dd-989a-f5969f55a61c","HTAN WUSTL",FALSE,"ScRNA-seqLevel1","bulk_RNAseq_level_2","Not Applicable","syn23643217","Not Applicable","2023-02-01",FALSE,FALSE -"DataFlow","da2c5cde-d712-4d1c-b9ac-0954036538e3","HTAN WUSTL",FALSE,"ScRNA-seqLevel1","bulk_RNAseq_level_3","Not Applicable","syn23643218","Not Applicable","2023-02-01",FALSE,FALSE -"DataFlow","a8feaa51-f4cd-4e4a-a0a6-bb6b3980a5a5","HTAN WUSTL",FALSE,"BulkWESLevel1","whole_exome_seq_level_1","Not Applicable","syn23643219","Not Applicable","2023-02-01",FALSE,FALSE -"DataFlow","ad829015-8bfa-4f35-b45f-f10a98d9034a","HTAN WUSTL",FALSE,"BulkWESLevel1","whole_exome_seq_level_2","Not Applicable","syn23643220","Not Applicable","2022-09-20",TRUE,TRUE -"DataFlow","a1166ea4-d732-4a56-a4d9-f5ebddbff268","HTAN WUSTL",FALSE,"BulkWESLevel1","whole_exome_seq_level_3","Not Applicable","syn23643221","Not Applicable","2022-09-20",TRUE,TRUE -"DataFlow","1922912e-6328-4918-9a19-10c6e7cf2d26","HTAN WUSTL",FALSE,"Therapy","clinical_therapy","Not Applicable","syn24615254","Not Applicable","2022-09-20",TRUE,TRUE -"DataFlow","09171fd8-6b8d-4dcb-a69c-a292e079b66b","HTAN WUSTL",FALSE,"Demographics","clinical_demographics","Not Applicable","syn24615255","Not Applicable","2022-09-20",TRUE,TRUE -"DataFlow","637ff077-bef5-4647-82ac-b32883e25a25","HTAN WUSTL",FALSE,"FamilyHistory","clinical_family_history","Not Applicable","syn24615256","Not Applicable","2022-09-20",TRUE,TRUE -"DataFlow","9e0d92b7-73fb-4245-a0d7-c94a26b93b11","HTAN WUSTL",FALSE,"Exposure","clinical_exposure","Not Applicable","syn24615257","Not Applicable","2022-09-20",TRUE,TRUE -"DataFlow","7c38e45b-5ef8-421a-b01b-ca9e4566384f","HTAN WUSTL",FALSE,"Biospecimen","biospecimen","Not Applicable","syn24615258","Not Applicable","2022-09-20",TRUE,TRUE -"DataFlow","3d171394-320d-463b-b17c-e5015ee6c62c","HTAN WUSTL",FALSE,"FollowUp","clinical_follow_up","Not Applicable","syn24615259","Not Applicable","2022-09-20",TRUE,TRUE -"DataFlow","67cc9095-8757-4a05-9f57-2e7acedc4d79","HTAN WUSTL",FALSE,"ImagingLevel2","h_and_e_level_1","Not Applicable","syn24628490","Not Applicable","2022-09-20",TRUE,TRUE -"DataFlow","cc599b1f-b403-40be-90b5-4b05742105c2","HTAN WUSTL",FALSE,"ImagingLevel2","clinical_molecular_test","Not Applicable","syn24860588","Not Applicable","2022-09-20",TRUE,TRUE -"DataFlow","8a3f4722-6981-4a3c-939f-26b41f7c69a6","HTAN WUSTL",FALSE,"ImagingLevel2","clinical_tier_2","Not Applicable","syn24873799","Not Applicable","2022-09-20",TRUE,TRUE -"DataFlow","a96acc87-5fb6-4f12-943b-80cd6f822c50","HTAN WUSTL",FALSE,"ImagingLevel2","clinical_tier_3_breast","Not Applicable","syn24873800","Not Applicable","2022-09-20",TRUE,TRUE -"DataFlow","5976475b-2993-440a-a1f7-0dd80edf38da","HTAN WUSTL",FALSE,"ImagingLevel2","clinical_tier_3_pancreatic","Not Applicable","syn24873801","Not Applicable","2022-09-20",TRUE,TRUE -"DataFlow","6e7a8de2-f6c8-4a7c-a902-0cf0f38b2ffd","HTAN WUSTL",FALSE,"ImagingLevel2","imc_level_2","Not Applicable","syn24989505","Not Applicable","2022-09-20",TRUE,TRUE -"DataFlow","ec758420-9fd6-4906-80f0-28c8eaec5e9a","HTAN WUSTL",FALSE,"BulkRNA-seqLevel1","bulk_RNAseq_level_1","Not Applicable","syn24994805","Not Applicable","2022-09-20",TRUE,TRUE -"DataFlow","7976a380-dc50-49b4-b3cf-3b50f10f8345","HTAN WUSTL",FALSE,"Diagnosis","clinical_diagnosis","Not Applicable","syn25126996","Not Applicable","2022-09-20",TRUE,TRUE -"DataFlow","ddf1b49c-46eb-4c8b-865a-40426563174b","HTAN WUSTL",FALSE,"Diagnosis","archive","Not Applicable","syn25174770","Not Applicable","2022-09-20",TRUE,TRUE -"DataFlow","1e7372e2-444c-4174-8ef7-8b472b51ea24","HTAN WUSTL",FALSE,"Diagnosis","minerva","Not Applicable","syn25586708","Not Applicable","2022-09-20",TRUE,TRUE -"DataFlow","e079bf95-8529-49d5-9790-9322325971fd","HTAN WUSTL",FALSE,"Diagnosis","scRNAseq_level_1_brca22","Not Applicable","syn27782156","Not Applicable","2022-09-20",TRUE,TRUE -"DataFlow","a66e58be-c67a-4ceb-83ed-686b4054479b","HTAN WUSTL",FALSE,"Diagnosis","clinical_follow_up_brca22","Not Applicable","syn27782165","Not Applicable","2022-09-20",TRUE,TRUE -"DataFlow","553b14e6-6c60-4718-b4ff-0030ffc60f81","HTAN WUSTL",FALSE,"Diagnosis","biospecimen_brca22","Not Applicable","syn27782166","Not Applicable","2022-09-20",TRUE,TRUE -"DataFlow","4353db2c-3287-45cd-93ea-1456c30109b8","HTAN WUSTL",FALSE,"Diagnosis","clinical_demographics_brca22","Not Applicable","syn27782167","Not Applicable","2022-09-20",TRUE,TRUE -"DataFlow","174fa918-968a-4a42-915b-bd6d6e17bdee","HTAN WUSTL",FALSE,"Diagnosis","clinical_diagnosis_brca22","Not Applicable","syn27782168","Not Applicable","2022-09-20",TRUE,TRUE -"DataFlow","6d21d187-459d-4f98-8d30-1b676be89157","HTAN WUSTL",FALSE,"Diagnosis","clinical_exposure_brca22","Not Applicable","syn27782169","Not Applicable","2022-09-20",TRUE,TRUE -"DataFlow","bc03c742-b4fb-4928-be5e-c2812f1030e4","HTAN WUSTL",FALSE,"Diagnosis","clinical_therapy_brca22","Not Applicable","syn27782170","Not Applicable","2022-09-20",TRUE,TRUE -"DataFlow","cbbd08a6-dfa8-42b3-9e86-b551810231b4","HTAN WUSTL",FALSE,"Diagnosis","clinical_molecular_test_brca22","Not Applicable","syn27782171","Not Applicable","2022-09-20",TRUE,TRUE -"DataFlow","123c4f64-948e-41ed-9f7d-df4c641962e1","HTAN WUSTL",FALSE,"Diagnosis","clinical_family_history_brca22","Not Applicable","syn27782172","Not Applicable","2022-09-20",TRUE,TRUE -"DataFlow","1ef36156-af0f-42b4-9cf0-8e2ab4301230","HTAN WUSTL",FALSE,"Diagnosis","clinical_exposure_coad22","Not Applicable","syn27782182","Not Applicable","2022-09-20",TRUE,TRUE -"DataFlow","d26b34e4-9315-46a8-8bee-f7e9d655917c","HTAN WUSTL",FALSE,"Diagnosis","clinical_demographics_coad22","Not Applicable","syn27782183","Not Applicable","2022-09-20",TRUE,TRUE -"DataFlow","0634ddc0-508b-4589-bfb3-efa4282dff08","HTAN WUSTL",FALSE,"Diagnosis","scRNAseq_level_1_coad22","Not Applicable","syn27782184","Not Applicable","2022-09-20",TRUE,TRUE -"DataFlow","cd114df3-13f0-4ae2-a72e-4d021899e971","HTAN WUSTL",FALSE,"Diagnosis","biospecimen_coad22","Not Applicable","syn27782185","Not Applicable","2022-09-20",TRUE,TRUE -"DataFlow","4ad47228-0699-4474-9a72-08804a1f33f6","HTAN WUSTL",FALSE,"Diagnosis","clinical_family_history_coad22","Not Applicable","syn27782186","Not Applicable","2022-09-20",TRUE,TRUE -"DataFlow","2446cc66-8818-405f-88d4-087e242ff35e","HTAN WUSTL",FALSE,"Diagnosis","clinical_therapy_coad22","Not Applicable","syn27782187","Not Applicable","2022-09-20",TRUE,TRUE -"DataFlow","05305da4-279b-48b9-95db-cf01c784a5cf","HTAN WUSTL",FALSE,"Diagnosis","clinical_diagnosis_coad22","Not Applicable","syn27782188","Not Applicable","2022-09-20",TRUE,TRUE -"DataFlow","3864e8a7-409a-4164-a09f-571a34455d27","HTAN WUSTL",FALSE,"Diagnosis","clinical_molecular_test_coad22","Not Applicable","syn27782189","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","efbf140c-6431-4b2e-b10e-688972a5b2f6","HTAN WUSTL",FALSE,"Diagnosis","clinical_follow_up_coad22","Not Applicable","syn27782190","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","acea13db-4968-4d6d-8483-053de0142cfa","HTAN WUSTL",FALSE,"Diagnosis","scRNAseq_level_2_coad22","Not Applicable","syn27782206","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","659065e9-b508-418b-96c8-3560c134e2d6","HTAN WUSTL",FALSE,"Diagnosis","scRNAseq_level_3_brca22","Not Applicable","syn27782207","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","db6bb750-1b53-4cbb-85ef-b7af0d70a6c5","HTAN WUSTL",FALSE,"Diagnosis","scRNAseq_level_4_coad22","Not Applicable","syn27782208","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","c908f467-9c4f-431d-bf9e-bcef71e84e10","HTAN WUSTL",FALSE,"Diagnosis","scRNAseq_level_2_brca22","Not Applicable","syn27782209","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","f2428077-ce1b-46ed-b08a-4ab51ef15bf5","HTAN WUSTL",FALSE,"Diagnosis","scRNAseq_level_3_coad22","Not Applicable","syn27782210","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","96d8415d-83a5-4851-bc51-60f8d0883f4b","HTAN WUSTL",FALSE,"Diagnosis","scRNAseq_level_4_brca22","Not Applicable","syn27782211","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","c39dee15-da0d-4e1b-9b99-27d93a8ccbfd","HTAN WUSTL",FALSE,"OtherAssay","visium_level_1","Not Applicable","syn29265269","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","bca5364a-7839-463c-a0ef-89774ddc9854","HTAN WUSTL",FALSE,"ScRNA-seqLevel1","sn_RNAseq_level_1","Not Applicable","syn29282243","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","e1b9942b-fbef-4db8-9105-c2800ce513d1","HTAN CHOP",FALSE,"ScRNA-seqLevel1","single_cell_RNAseq_level_1","Not Applicable","syn23452919","Not Applicable","2020-01-15",TRUE,TRUE -"DataFlow","9b911bf2-5b08-4b77-a224-88860e19d7f2","HTAN CHOP",FALSE,"ScATAC-seqLevel1","single_cell_ATACseq_level_1","Not Applicable","syn23662863","Not Applicable","2020-01-15",TRUE,TRUE -"DataFlow","252107fe-ce7a-4a1c-b4bb-1dc41250ad1b","HTAN CHOP",FALSE,"Diagnosis","clinical_diagnosis","Not Applicable","syn24615215","Not Applicable","2020-01-15",TRUE,TRUE -"DataFlow","21aa47d9-bfb5-464c-90d4-7a829a901c24","HTAN CHOP",FALSE,"Exposure","clinical_exposure","Not Applicable","syn24615216","Not Applicable","2020-01-15",TRUE,TRUE -"DataFlow","03da1933-1f60-4835-9d74-e3bbb7c67191","HTAN CHOP",FALSE,"FamilyHistory","clinical_family_history","Not Applicable","syn24615217","Not Applicable","2020-01-15",TRUE,TRUE -"DataFlow","08099632-1a13-4fed-bc49-f2beecf9dc53","HTAN CHOP",FALSE,"FollowUp","clinical_follow_up","Not Applicable","syn24615218","Not Applicable","2020-01-15",TRUE,TRUE -"DataFlow","604c1ea5-1a54-4e5a-8c24-29234a213996","HTAN CHOP",FALSE,"Therapy","clinical_therapy","Not Applicable","syn24615219","Not Applicable","2021-03-16",TRUE,TRUE -"DataFlow","308d530b-db27-4bec-b11c-5ccf7c1b0f71","HTAN CHOP",FALSE,"MolecularTest","clinical_molecular_test","Not Applicable","syn24860584","Not Applicable","2021-03-16",TRUE,TRUE -"DataFlow","10f51d0e-edcd-426b-8522-f13095afe932","HTAN CHOP",FALSE,"ScRNA-seqLevel2","single_cell_RNAseq_level_2","Not Applicable","syn24860906","Not Applicable","2021-03-16",TRUE,TRUE -"DataFlow","7f72ee93-77a5-41c5-9c0b-adc3608f3b01","HTAN CHOP",FALSE,"ScRNA-seqLevel2","single_cell_ATACseq_level_2","Not Applicable","syn24860908","Not Applicable","2021-03-16",TRUE,TRUE -"DataFlow","e73f9a8f-ef99-4242-a149-464f6dd8d95c","HTAN CHOP",FALSE,"ScRNA-seqLevel2","clinical_tier_2","Not Applicable","syn24873782","Not Applicable","2021-03-16",TRUE,TRUE -"DataFlow","08feb57e-0698-468e-8aa3-cd69fdcd9446","HTAN CHOP",FALSE,"ScRNA-seqLevel2","clinical_tier_3_glioma","Not Applicable","syn24873783","Not Applicable","2021-03-16",TRUE,TRUE -"DataFlow","9d8a4a3e-fe39-43a5-b967-3bd322e85426","HTAN CHOP",FALSE,"ScRNA-seqLevel2","clinical_tier_3_neuroblastoma","Not Applicable","syn24873784","Not Applicable","2021-03-16",TRUE,TRUE -"DataFlow","d2c1459d-78d7-4a6e-afa1-94b82b11b117","HTAN CHOP",FALSE,"ScRNA-seqLevel2","clinical_tier_3_acute_lymphoblastic_leukemia","Not Applicable","syn24873785","Not Applicable","2021-03-16",TRUE,TRUE -"DataFlow","65faf583-e1c3-4ade-ab7f-830d0345ccb0","HTAN CHOP",FALSE,"ScRNA-seqLevel3","single_cell_RNAseq_level_3","Not Applicable","syn24984342","Not Applicable","2021-03-16",TRUE,TRUE -"DataFlow","7dd26885-abfd-4981-875e-d7c5d24fe1b9","HTAN CHOP",FALSE,"ScRNA-seqLevel4","single_cell_RNAseq_level_4","Not Applicable","syn24984343","Not Applicable","2021-03-16",TRUE,TRUE -"DataFlow","f3db9be6-05f0-4cfa-8670-56d8704a0827","HTAN CHOP",FALSE,"ScRNA-seqLevel4","snmC-Seq2_level1","Not Applicable","syn24984555","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","44a32736-294a-4c69-8569-e93e0e1346bd","HTAN CHOP",FALSE,"ScRNA-seqLevel4","snmC-Seq2_level2","Not Applicable","syn24984685","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","0b18a34c-a6bc-46b3-ac51-018b035f7c8e","HTAN CHOP",FALSE,"Demographics","clinical_demographics","Not Applicable","syn25127390","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","327a9e95-35df-405b-a7d8-0fbc9bd00e3e","HTAN CHOP",FALSE,"Biospecimen","Biospecimen","Not Applicable","syn25127447","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","11ea94c8-b14d-4d60-b767-54dab89666c2","HTAN CHOP",FALSE,"Biospecimen","snmC-Seq2_level1_new","Not Applicable","syn25955941","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","ecc842b6-1e51-4123-b1f2-d03e73a6612f","HTAN CHOP",FALSE,"ScATAC-seqLevel4","single_cell_ATACseq_level_4","Not Applicable","syn26401297","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","197c5050-9385-43fa-80eb-310c7476a27d","HTAN MSK",FALSE,"ScRNA-seqLevel2","single_cell_RNAseq_level_2","Not Applicable","syn23591071","Not Applicable","2022-11-01",TRUE,TRUE -"DataFlow","80160109-c4ee-4994-835f-5d47549fc04f","HTAN MSK",FALSE,"ScRNA-seqLevel3","single_cell_RNAseq_level_3","Not Applicable","syn23591072","Not Applicable","2022-11-01",FALSE,TRUE -"DataFlow","3405fbdb-8b2e-4b8b-a015-0b3f53927478","HTAN MSK",FALSE,"ScRNA-seqLevel4","single_cell_RNAseq_level_4","Not Applicable","syn23591073","Not Applicable","2022-11-01",FALSE,TRUE -"DataFlow","59c2dc1d-39f6-4e3a-b64b-a9a33cde8398","HTAN MSK",FALSE,"ScRNA-seqLevel4","mIHC_level_1","Not Applicable","syn23591178","Not Applicable","2022-11-01",FALSE,FALSE -"DataFlow","3b5799d6-5ef7-446e-9f9e-99aa02effe16","HTAN MSK",FALSE,"ScRNA-seqLevel4","mIHC_level_2","Not Applicable","syn23591179","Not Applicable","2022-11-01",FALSE,FALSE -"DataFlow","e4fd7c1b-a388-41d9-813a-f00f6be11087","HTAN MSK",FALSE,"ScRNA-seqLevel4","mIHC_level_4","Not Applicable","syn23591180","Not Applicable","2022-11-01",FALSE,FALSE -"DataFlow","bab24db5-3c1b-4776-aea5-82c72d9b1d40","HTAN MSK",FALSE,"ScRNA-seqLevel4","mIHC_level_3","Not Applicable","syn23591181","Not Applicable","2022-11-01",FALSE,FALSE -"DataFlow","ddd6e3da-0f01-4226-bac4-4037ea817db6","HTAN MSK",FALSE,"ScRNA-seqLevel4","mIHC_level_5","Not Applicable","syn23591182","Not Applicable","2022-11-01",FALSE,FALSE -"DataFlow","28d45234-2453-4068-ba95-b1389075eb76","HTAN MSK",FALSE,"ScRNA-seqLevel1","single_cell_RNAseq_level_1","Not Applicable","syn23593727","Not Applicable","2021-01-01",TRUE,TRUE -"DataFlow","2ee37456-d446-4968-b902-96c925e0c858","HTAN MSK",FALSE,"Demographics","clinical_demographics","Not Applicable","syn23633926","Not Applicable","2021-01-01",TRUE,TRUE -"DataFlow","5334e066-4bd2-4be4-912a-789955859483","HTAN MSK",FALSE,"Diagnosis","clinical_diagnosis","Not Applicable","syn23633927","Not Applicable","2021-01-01",TRUE,TRUE -"DataFlow","be568755-1b72-4afd-9457-8390e1b0f3a1","HTAN MSK",FALSE,"Exposure","clinical_exposure","Not Applicable","syn23633928","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","0bc7fb33-3d3f-4ae3-8ed1-2796a15a5f3e","HTAN MSK",FALSE,"FamilyHistory","clinical_family_history","Not Applicable","syn23633929","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","481a42c9-bc0a-440b-bca6-eb25add70775","HTAN MSK",FALSE,"FollowUp","clinical_follow_up","Not Applicable","syn23633930","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","2941f489-9052-4ae4-a7c4-b686ab7c0470","HTAN MSK",FALSE,"Therapy","clinical_therapy","Not Applicable","syn23633931","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","c6bdcb8d-70ff-429d-a401-1916003c67a8","HTAN MSK",FALSE,"MolecularTest","clinical_molecular_test","Not Applicable","syn23633932","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","7cd02dde-50e0-4b06-8910-95c14e7f6229","HTAN MSK",FALSE,"Biospecimen","biospecimen","Not Applicable","syn24615234","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","396ab55c-4bcc-4565-a80d-88cad918d386","HTAN MSK",FALSE,"Biospecimen","clinical_tier_2","Not Applicable","syn24873796","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","3406fb1c-0424-4e3e-9176-b60f3706f251","HTAN MSK",FALSE,"Biospecimen","clinical_tier_3_lung","Not Applicable","syn24873797","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","4cd7df69-22e6-46c1-ad29-7d4fc11de811","HTAN MSK",FALSE,"Biospecimen","clinical_tier_3_pancreatic","Not Applicable","syn24873798","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","59e83d51-3457-42f2-9f20-b740d1b301fe","HTAN MSK",FALSE,"Biospecimen","minerva","Not Applicable","syn25472272","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","87002bb7-731e-45e5-bf58-57bff3c8fa88","HTAN MSK",FALSE,"Biospecimen","mibi_level_1","Not Applicable","syn26321090","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","cf8c1879-262a-4e9a-a8ad-ba63fe1d25b5","HTAN MSK",FALSE,"ImagingLevel2","mibi_level_2","Not Applicable","syn26321091","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","76a2a375-92ea-4aaf-8f14-47007574dae4","HTAN MSK",FALSE,"OtherAssay","mibi_level_3","Not Applicable","syn26321092","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","f8867492-5b30-47bc-87fc-2e532d127071","HTAN MSK",FALSE,"OtherAssay","mibi_level_4","Not Applicable","syn26321093","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","70e75d19-bb24-461d-b7bb-63044a56eff2","HTAN MSK",FALSE,"OtherAssay","mibi_level_5","Not Applicable","syn26321094","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","56112038-e2ae-40e0-a8a1-107350ee0708","HTAN MSK",FALSE,"OtherAssay","vectra_level_2","Not Applicable","syn27025191","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","b6b125c8-adfd-4e9e-8944-d0e15401581b","HTAN MSK",FALSE,"OtherAssay","vectra_level_3","Not Applicable","syn27025192","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","d315b0a2-d5d9-4dc9-9f71-429a3dacfbb5","HTAN MSK",FALSE,"OtherAssay","vectra_level_4","Not Applicable","syn27025193","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","c93a6342-81e5-43c3-86d0-0a1986ec714c","HTAN DFCI",FALSE,"Not Applicable","single_cell_RNAseq_level_1","Not Applicable","syn24180872","Not Applicable","2021-01-01",TRUE,TRUE -"DataFlow","eb3c26a2-8b40-436c-9005-a244657fcf3b","HTAN DFCI",FALSE,"Not Applicable","single_cell_RNAseq_level_3","Not Applicable","syn24180873","Not Applicable","2021-01-01",TRUE,TRUE -"DataFlow","5f30b38b-ec95-474c-af5e-8e0952d3b5ee","HTAN DFCI",FALSE,"Not Applicable","single_cell_RNAseq_level_2","Not Applicable","syn24180874","Not Applicable","2021-01-01",TRUE,TRUE -"DataFlow","01f41886-fa30-4eaf-8e3b-e153a5a43018","HTAN DFCI",FALSE,"Not Applicable","single_cell_RNAseq_level_4","Not Applicable","syn24180875","Not Applicable","2021-01-01",TRUE,TRUE -"DataFlow","0017f283-c072-4edd-a11e-548e1889bd3d","HTAN DFCI",FALSE,"Not Applicable","clinical_diagnosis","Not Applicable","syn24615260","Not Applicable","2021-01-01",TRUE,TRUE -"DataFlow","ffd3059b-f059-4fda-9fd5-77b06a196f86","HTAN DFCI",FALSE,"FamilyHistory","clinical_family_history","Not Applicable","syn24615261","Not Applicable","2021-01-01",TRUE,TRUE -"DataFlow","72fd53ab-50ce-42f1-b024-4976017dc557","HTAN DFCI",FALSE,"FamilyHistory","biospecimen","Not Applicable","syn24615262","Not Applicable","2021-01-01",TRUE,TRUE -"DataFlow","a305bb97-ee89-42e2-85b7-b1903f49a3af","HTAN DFCI",FALSE,"Exposure","clinical_exposure","Not Applicable","syn24615263","Not Applicable","2021-01-01",TRUE,TRUE -"DataFlow","8ffacb96-ef37-4a55-96ce-32515e97a3fa","HTAN DFCI",FALSE,"Exposure","clinical_therapy","Not Applicable","syn24615264","Not Applicable","2021-01-01",TRUE,TRUE -"DataFlow","7969f7ce-2521-4afb-a0cb-49e2728595f7","HTAN DFCI",FALSE,"FollowUp","clinical_follow_up","Not Applicable","syn24615265","Not Applicable","2022-10-10",TRUE,TRUE -"DataFlow","6d992a36-246a-4870-8328-87f7817d7f8b","HTAN DFCI",FALSE,"Demographics","clinical_demographics","Not Applicable","syn24615266","Not Applicable","2022-10-10",TRUE,TRUE -"DataFlow","abd2df0b-493a-44fc-bd06-10b92d6cc7aa","HTAN DFCI",FALSE,"Demographics","clinical_molecular_test","Not Applicable","syn24860586","Not Applicable","2022-10-10",TRUE,TRUE -"DataFlow","aae842c6-6133-47a3-bd6c-d4daaca37c5d","HTAN DFCI",FALSE,"ClinicalDataTier2","clinical_tier_2","Not Applicable","syn24873790","Not Applicable","2022-10-10",TRUE,TRUE -"DataFlow","b2b72706-2d6e-4ffa-b5c4-6ac220a5e7d9","HTAN DFCI",FALSE,"ClinicalDataTier2","clinical_tier_3_breast","Not Applicable","syn24873791","Not Applicable","2022-10-10",TRUE,TRUE -"DataFlow","05db08a5-b2a9-4dc8-89f5-184981b2d9ba","HTAN DFCI",FALSE,"ClinicalDataTier2","clinical_tier_3_melanoma","Not Applicable","syn24873792","Not Applicable","2022-10-10",TRUE,TRUE -"DataFlow","937347e8-be3b-467d-92c7-8b2323df5372","HTAN DFCI",FALSE,"ClinicalDataTier2","clinical_tier_3_colon","Not Applicable","syn24873793","Not Applicable","2022-10-10",TRUE,TRUE -"DataFlow","2f9243dc-cc0e-47fd-aa82-77f1a4c3ca2b","HTAN DFCI",FALSE,"ClinicalDataTier2","minerva","Not Applicable","syn25577443","Not Applicable","2022-10-10",TRUE,TRUE -"DataFlow","55286310-a1c4-4521-841d-54659a8925fb","HTAN DFCI",FALSE,"ClinicalDataTier2","sardana_phase_1_ff_level_2","Not Applicable","syn25998510","Not Applicable","2022-10-10",TRUE,TRUE -"DataFlow","3550a61e-fb0c-4a7d-9464-a09e743edf58","HTAN DFCI",FALSE,"ClinicalDataTier2","sardana_phase_1_ffpe_level_2","Not Applicable","syn25998511","Not Applicable","2022-10-10",TRUE,TRUE -"DataFlow","b135e4a1-c22b-4f58-8e67-31450159de80","HTAN DFCI",FALSE,"ClinicalDataTier2","sardana_pilot_ff_level_2","Not Applicable","syn25998512","Not Applicable","2022-10-10",TRUE,TRUE -"DataFlow","f77aa7b6-ca59-4d7b-9127-405500036749","HTAN DFCI",FALSE,"ClinicalDataTier2","sardana_pilot_ffpe_level_2","Not Applicable","syn25998513","Not Applicable","2022-10-10",TRUE,TRUE -"DataFlow","7a9f466a-83b1-4e24-999b-ed4f6ed1deab","HTAN DFCI",FALSE,"LungCancerTier3","clinical_tier_3_lung","Not Applicable","syn29399968","Not Applicable","2022-10-10",TRUE,TRUE -"DataFlow","856ff83d-d443-4811-a678-a0793c709edb","HTAN Duke",FALSE,"BulkWESLevel1","bulk_DNAseq_level_1","Not Applicable","syn24180956","Not Applicable","2023-06-01",FALSE,FALSE -"DataFlow","311de7c9-2bfc-451f-bd9d-57c081e049aa","HTAN Duke",FALSE,"Demographics","clinical_demographics","Not Applicable","syn24615228","Not Applicable","2023-06-01",FALSE,FALSE -"DataFlow","ab3ebbd4-b0ec-44cf-94e7-5b90021a9786","HTAN Duke",FALSE,"Diagnosis","clinical_diagnosis","Not Applicable","syn24615229","Not Applicable","2023-06-01",FALSE,FALSE -"DataFlow","6ace5d3a-9f1e-43c1-8801-9b4a6fda5374","HTAN Duke",FALSE,"Exposure","clinical_exposure","Not Applicable","syn24615230","Not Applicable","2023-06-01",FALSE,FALSE -"DataFlow","3b4eb0e3-1a5b-4bd9-b78d-8e6355742f2b","HTAN Duke",FALSE,"FamilyHistory","clinical_family_history","Not Applicable","syn24615231","Not Applicable","2023-06-01",FALSE,FALSE -"DataFlow","f5b69611-7d36-4ee2-a759-e5dff7a54c72","HTAN Duke",FALSE,"Therapy","clinical_therapy","Not Applicable","syn24615232","Not Applicable","2023-06-01",FALSE,FALSE -"DataFlow","3c92f977-35a8-4043-974c-0b4acdd47912","HTAN Duke",FALSE,"FollowUp","clinical_follow_up","Not Applicable","syn24615233","Not Applicable","2023-06-01",FALSE,FALSE -"DataFlow","79e6d815-d853-4f97-a1fe-5bd66a1b3cc2","HTAN Duke",FALSE,"MolecularTest","clinical_molecular_test","Not Applicable","syn24860551","Not Applicable","2023-06-01",FALSE,FALSE -"DataFlow","e219a7bb-20db-41db-9a55-1286aa501082","HTAN Duke",FALSE,"MolecularTest","clinical_tier_2","Not Applicable","syn24873778","Not Applicable","2023-06-01",FALSE,FALSE -"DataFlow","a0a479af-f47f-4e12-bd6e-7749a46401f5","HTAN Duke",FALSE,"MolecularTest","clinical_tier_3_breast","Not Applicable","syn24873779","Not Applicable","2023-06-01",FALSE,FALSE -"DataFlow","e5c7f164-f720-4280-9a6c-a9c1c9c6597c","HTAN Duke",FALSE,"OtherAssay","mibi_imaging_level_1","Not Applicable","syn24995125","Not Applicable","2023-06-01",FALSE,FALSE -"DataFlow","5f869900-a7cf-4860-9d1d-16c905b15817","HTAN Duke",FALSE,"Biospecimen","biospecimen","Not Applicable","syn25148276","Not Applicable","2023-06-01",FALSE,FALSE -"DataFlow","8fa58262-1680-44fb-a8b8-6fc4f4680a30","HTAN Duke",FALSE,"Biospecimen","minerva","Not Applicable","syn25472271","Not Applicable","2023-06-01",FALSE,FALSE -"DataFlow","2ee55341-0c97-4069-9b86-7d72b660e731","HTAN Duke",FALSE,"ImagingLevel2","imaging_level_2","Not Applicable","syn25892944","Not Applicable","2023-06-01",FALSE,FALSE -"DataFlow","6b5ffde2-3df8-44cb-a54b-882dbad8dfbe","HTAN Duke",FALSE,"ImagingLevel2","mibi_imaging_level_2","Not Applicable","syn26551262","Not Applicable","2023-06-01",FALSE,FALSE -"DataFlow","27371f2d-3d31-4c8b-b45e-5be04ae08d1c","HTAN Duke",FALSE,"ImagingLevel2","mibi_imaging_level_3","Not Applicable","syn26551280","Not Applicable","2023-06-01",FALSE,FALSE -"DataFlow","479195d5-50f1-43da-a923-d330376a80c6","HTAN Duke",FALSE,"ImagingLevel2","bulk_RNAseq_level_1","Not Applicable","syn30911850","Not Applicable","2023-06-01",FALSE,FALSE -"DataFlow","2285349c-6df1-4756-b503-c8b0b08efc38","HTAN Stanford",FALSE,"BulkWESLevel1","wgs","Not Applicable","syn23445842","Not Applicable","2023-06-01",FALSE,FALSE -"DataFlow","850c3d2b-0392-413d-a73b-173ca0fec0d1","HTAN Stanford",FALSE,"ImagingLevel2","codex","Not Applicable","syn23627808","Not Applicable","2023-06-01",FALSE,FALSE -"DataFlow","a8b95606-8c5f-4fbe-920f-b0e00ae5ce38","HTAN Stanford",FALSE,"BulkRNA-seqLevel1","bulkRNAseq","Not Applicable","syn23627814","Not Applicable","2023-06-01",FALSE,FALSE -"DataFlow","09bf8ebb-8e54-44a5-be48-a860bd354d75","HTAN Stanford",FALSE,"BulkRNA-seqLevel1","bulkATACseq","Not Applicable","syn23627815","Not Applicable","2023-06-01",FALSE,FALSE -"DataFlow","dc8cef67-bd27-4d12-960a-cff0a34557ae","HTAN Stanford",FALSE,"OtherAssay","proteomics","Not Applicable","syn23627817","Not Applicable","2023-06-01",FALSE,FALSE -"DataFlow","8622c9e1-828d-4780-9a56-d1dd7cf962bf","HTAN Stanford",FALSE,"OtherAssay","metabolomics","Not Applicable","syn23627818","Not Applicable","2023-06-01",FALSE,FALSE -"DataFlow","01d9727c-6445-4a11-b8e3-50303a100bf8","HTAN Stanford",FALSE,"OtherAssay","lipidomics","Not Applicable","syn23764189","Not Applicable","2023-06-01",FALSE,FALSE -"DataFlow","c625e67c-1bec-4fde-a91b-4332c9af1ae4","HTAN Stanford",FALSE,"ScATAC-seqLevel1","scatacseq_level_1","Not Applicable","syn24191308","Not Applicable","2023-06-01",FALSE,FALSE -"DataFlow","64757254-b209-4598-8623-9420acb590c6","HTAN Stanford",FALSE,"ScRNA-seqLevel1","scrnaseq_level_1","Not Applicable","syn24191309","Not Applicable","2023-06-01",FALSE,FALSE -"DataFlow","7e5c4ad7-c670-4910-8031-8605cbe64140","HTAN Stanford",FALSE,"Biospecimen","biospecimen","Not Applicable","syn24615280","Not Applicable","2023-06-01",FALSE,FALSE -"DataFlow","e2dbc029-fa80-4732-92e8-00fd8024bd3f","HTAN Stanford",FALSE,"Demographics","clinical_demographics","Not Applicable","syn24615281","Not Applicable","2023-06-01",FALSE,FALSE -"DataFlow","5632d51b-696d-41b9-b705-da54101dd4ea","HTAN Stanford",FALSE,"Diagnosis","clinical_diagnosis","Not Applicable","syn24615282","Not Applicable","2023-06-01",FALSE,FALSE -"DataFlow","8d2ddf41-86f1-4408-81eb-26ca726c4b0a","HTAN Stanford",FALSE,"Exposure","clinical_exposure","Not Applicable","syn24615283","Not Applicable","2023-06-01",FALSE,FALSE -"DataFlow","ff3654ba-07c7-4452-b9ec-2ed82e6dc470","HTAN Stanford",FALSE,"FamilyHistory","clinical_family_history","Not Applicable","syn24615284","Not Applicable","2023-06-01",FALSE,FALSE -"DataFlow","354f9f18-c748-41d6-be0a-8fd51b3fbb58","HTAN Stanford",FALSE,"FollowUp","clinical_follow_up","Not Applicable","syn24615285","Not Applicable","2023-06-01",FALSE,FALSE -"DataFlow","17094c62-bad6-4299-8788-bf99d66cca79","HTAN Stanford",FALSE,"Therapy","clinical_therapy","Not Applicable","syn24615286","Not Applicable","2023-06-01",FALSE,FALSE -"DataFlow","66793d42-442d-484c-bee7-685d3e1319e6","HTAN Stanford",FALSE,"Therapy","clinical_molecular_test","Not Applicable","syn24860552","Not Applicable","2023-06-01",FALSE,FALSE -"DataFlow","1b68b1a2-9388-4325-b5f0-b4c919d551fc","HTAN Stanford",FALSE,"Therapy","clinical_tier_2","Not Applicable","syn24873788","Not Applicable","2023-06-01",FALSE,FALSE -"DataFlow","eeb3d045-302a-4f9a-b5ec-ecac39e33eac","HTAN Stanford",FALSE,"Therapy","clinical_tier_3_colon","Not Applicable","syn24873789","Not Applicable","2022-06-01",TRUE,TRUE -"DataFlow","c19ceac8-3668-4ab3-8898-1dbf4f7fa86f","HTAN Stanford",FALSE,"OtherAssay","scatacseq_level_2","Not Applicable","syn26530163","Not Applicable","2022-06-01",TRUE,TRUE -"DataFlow","97b8acf3-78d1-4ebc-9e9b-922b82f8b2d7","HTAN Stanford",FALSE,"OtherAssay","scatacseq_level_3","Not Applicable","syn26530164","Not Applicable","2022-06-01",TRUE,TRUE -"DataFlow","9cfeae4c-8a51-4972-b7d2-c166aa3b6a46","HTAN Stanford",FALSE,"ScRNA-seqLevel2","scrnaseq_level_2","Not Applicable","syn26530912","Not Applicable","2022-06-01",TRUE,TRUE -"DataFlow","eb49fda7-a854-471c-8ce6-63456b36edbe","HTAN Stanford",FALSE,"ScRNA-seqLevel3","scrnaseq_level_3","Not Applicable","syn26531002","Not Applicable","2021-06-10",TRUE,TRUE -"DataFlow","e4285e39-da0e-44b9-9a5d-c31f29443805","HTAN Stanford",FALSE,"ScRNA-seqLevel3","codex_level_1","Not Applicable","syn27782965","Not Applicable","2021-06-10",TRUE,TRUE -"DataFlow","dfe592dc-0e66-4cab-bdaf-a218ffa44412","HTAN Stanford",FALSE,"ScRNA-seqLevel3","codex_level_2","Not Applicable","syn27782972","Not Applicable","2021-06-10",TRUE,TRUE -"DataFlow","1247b81c-95f5-4f7f-9a8e-49daf8653925","HTAN Stanford",FALSE,"ScRNA-seqLevel3","codex_level_3","Not Applicable","syn27782980","Not Applicable","2021-06-10",TRUE,TRUE -"DataFlow","31d61439-12c3-4555-80b7-9e7b4ecfa237","HTAN Stanford",FALSE,"ScRNA-seqLevel3","codex_level_4","Not Applicable","syn27782993","Not Applicable","2021-06-10",TRUE,TRUE -"DataFlow","0f0fee9c-e2e6-4eec-9818-8a42acb3b5d5","HTAN Stanford",FALSE,"ScRNA-seqLevel3","hic_level_1","Not Applicable","syn39253511","Not Applicable","2021-06-10",TRUE,TRUE -"DataFlow","f50a9f93-944e-4377-b5a9-5478356c2429","HTAN Stanford",FALSE,"ScRNA-seqLevel3","hic_level_2","Not Applicable","syn39253516","Not Applicable","2021-06-10",TRUE,TRUE -"DataFlow","d6bbe7d3-1816-4909-91c2-1509c4125fc0","HTAN TNP SARDANA",FALSE,"Biospecimen","biospecimen","Not Applicable","syn24984556","Not Applicable","2022-04-04",TRUE,TRUE -"DataFlow","8c58406e-6670-44de-97ec-f494bd689bf7","HTAN TNP SARDANA",FALSE,"Demographics","clinical_demographics","Not Applicable","syn24984557","Not Applicable","2022-04-04",TRUE,TRUE -"DataFlow","da8b1bfa-d08a-46fe-bfb5-a76f250f9b3a","HTAN TNP SARDANA",FALSE,"Diagnosis","clinical_diagnosis","Not Applicable","syn24984558","Not Applicable","2022-04-04",TRUE,TRUE -"DataFlow","7701a944-36de-42bb-a027-9aa45d2279b1","HTAN TNP SARDANA",FALSE,"Exposure","clinical_exposure","Not Applicable","syn24984559","Not Applicable","2022-04-04",TRUE,TRUE -"DataFlow","8e8de671-4f0e-40f6-aff1-5b4e460e480f","HTAN TNP SARDANA",FALSE,"FamilyHistory","clinical_family_history","Not Applicable","syn24984560","Not Applicable","2022-04-04",TRUE,TRUE -"DataFlow","cf031c37-a869-4e40-a5c2-c1d4246510ad","HTAN TNP SARDANA",FALSE,"FollowUp","clinical_follow_up","Not Applicable","syn24984561","Not Applicable","2022-04-04",TRUE,TRUE -"DataFlow","842d5808-99a5-419a-9a2b-5dc4120d43d1","HTAN TNP SARDANA",FALSE,"Therapy","clinical_therapy","Not Applicable","syn24984562","Not Applicable","2022-04-04",TRUE,TRUE -"DataFlow","bd52f217-7808-4065-9607-b018e7351c89","HTAN TNP SARDANA",FALSE,"MolecularTest","clinical_molecular_test","Not Applicable","syn24984563","Not Applicable","2022-04-04",TRUE,TRUE -"DataFlow","35ddb9b1-feea-4d0b-8c40-8a10353d1348","HTAN TNP SARDANA",FALSE,"MolecularTest","clinical_tier_2","Not Applicable","syn24984564","Not Applicable","2022-04-04",TRUE,TRUE -"DataFlow","e49b7adc-55ed-49b4-8d2d-910224b8443c","HTAN TNP SARDANA",FALSE,"MolecularTest","clinical_tier_3_breast","Not Applicable","syn24984565","Not Applicable","2022-04-04",TRUE,TRUE -"DataFlow","9d8b4249-328e-480a-a0e3-b7b680cbb2b3","HTAN TNP SARDANA",FALSE,"MolecularTest","clinical_tier_3_glioma","Not Applicable","syn24984566","Not Applicable","2022-04-04",TRUE,TRUE -"DataFlow","bb92a28b-f98e-4c23-b56f-cb7499defccc","HTAN TNP SARDANA",FALSE,"MolecularTest","clinical_tier_3_colon","Not Applicable","syn24984567","Not Applicable","2022-04-04",TRUE,TRUE -"DataFlow","dc826200-f994-4f91-90a3-c7409a51a9ca","HTAN TNP SARDANA",FALSE,"MolecularTest","clinical_tier_3_lung","Not Applicable","syn24984568","Not Applicable","2022-04-04",TRUE,TRUE -"DataFlow","14dcd423-c058-45ac-968b-f0e15b6f0306","HTAN TNP SARDANA",FALSE,"MolecularTest","clinical_tier_3_sarcoma","Not Applicable","syn24984569","Not Applicable","2022-04-04",TRUE,TRUE -"DataFlow","cc751682-cb9b-4648-846b-6f2027920205","HTAN TNP SARDANA",FALSE,"MolecularTest","clinical_tier_3_ovarian","Not Applicable","syn24984570","Not Applicable","2022-04-04",TRUE,TRUE -"DataFlow","fa474d29-da0d-4416-a06c-e0dad155a4d6","HTAN TNP SARDANA",FALSE,"MolecularTest","clinical_tier_3_neuroblastoma","Not Applicable","syn24984571","Not Applicable","2022-04-04",TRUE,TRUE -"DataFlow","9a5572d4-b4c1-4fd7-a68f-a178eef39680","HTAN TNP SARDANA",FALSE,"MolecularTest","clinical_tier_3_pancreatic","Not Applicable","syn24984572","Not Applicable","2022-04-04",TRUE,TRUE -"DataFlow","64966c05-6036-480b-b290-a441d20b9754","HTAN TNP SARDANA",FALSE,"MolecularTest","clinical_tier_3_melanoma","Not Applicable","syn24984573","Not Applicable","2022-04-04",TRUE,TRUE -"DataFlow","8639d1cf-5018-47fa-a5a0-4e48463f7f32","HTAN TNP SARDANA",FALSE,"MolecularTest","clinical_tier_3_acute_lymphoblastic_leukemia","Not Applicable","syn24984574","Not Applicable","2022-04-04",TRUE,TRUE -"DataFlow","be621df4-90ff-4573-8044-a76b4de47984","HTAN TNP SARDANA",FALSE,"ImagingLevel2","imaging_level_2","Not Applicable","syn24989038","Not Applicable","2022-04-04",TRUE,TRUE -"DataFlow","b4b4db06-1fd3-41a5-ae45-dfe16f07d92f","HTAN TNP SARDANA",FALSE,"ImagingLevel2","minerva","Not Applicable","syn25472275","Not Applicable","2022-04-04",TRUE,TRUE -"DataFlow","f5befc10-ce37-4111-983b-10fb0df65430","HTAN TNP SARDANA",FALSE,"ImagingLevel2","sardana_phase_1_ff_level_2","Not Applicable","syn26486693","Not Applicable","2022-04-04",TRUE,TRUE -"DataFlow","d7b3888f-a28a-419d-8925-1515f450fbb7","HTAN TNP SARDANA",FALSE,"ImagingLevel2","sardana_phase_1_ffpe_level_2","Not Applicable","syn26486694","Not Applicable","2022-04-04",TRUE,TRUE -"DataFlow","a6f8f27a-0728-4fe2-b8b7-75a4375f69de","HTAN TNP SARDANA",FALSE,"ImagingLevel2","codex_level_1","Not Applicable","syn27790444","Not Applicable","2022-04-04",TRUE,TRUE -"DataFlow","1c122560-75df-4362-8447-694d40abddf6","HTAN TNP SARDANA",FALSE,"ImagingLevel2","imaging_level_4","Not Applicable","syn35469108","Not Applicable","2022-04-04",TRUE,TRUE -"DataFlow","d0afd888-8220-47f7-98aa-5e831747e75c","HTAN SRRS",FALSE,"SRRSBiospecimen","biospecimen","Not Applicable","syn26127200","Not Applicable","2022-04-04",TRUE,TRUE -"DataFlow","a4150af9-00fd-4d43-932d-924f6422f1a1","HTAN SRRS",FALSE,"SRRSBiospecimen","clinical_demographics","Not Applicable","syn26128478","Not Applicable","2022-04-04",TRUE,TRUE -"DataFlow","40e51afc-6992-402c-b0d4-98becd4d3aca","HTAN SRRS",FALSE,"SRRSBiospecimen","clinical_diagnosis","Not Applicable","syn26128479","Not Applicable","2022-04-04",TRUE,TRUE -"DataFlow","747a9ba1-196f-487b-966e-726926ea4ec2","HTAN SRRS",FALSE,"SRRSBiospecimen","clinical_exposure","Not Applicable","syn26128480","Not Applicable","2022-04-04",TRUE,TRUE -"DataFlow","21c3c393-9459-4e7f-bd1d-3608f998ad5e","HTAN SRRS",FALSE,"SRRSBiospecimen","clinical_family_history","Not Applicable","syn26128481","Not Applicable","2022-04-04",TRUE,TRUE -"DataFlow","0a46eebd-809b-4e69-b67e-9243664d5b71","HTAN SRRS",FALSE,"SRRSBiospecimen","clinical_follow_up","Not Applicable","syn26128482","Not Applicable","2022-04-04",TRUE,TRUE -"DataFlow","a0e96db4-af70-47a8-830b-40a164527d00","HTAN SRRS",FALSE,"SRRSBiospecimen","clinical_therapy","Not Applicable","syn26128483","Not Applicable","2022-04-04",TRUE,TRUE -"DataFlow","114598b5-4599-4f75-a478-652f23de47cc","HTAN SRRS",FALSE,"SRRSBiospecimen","clinical_molecular_test","Not Applicable","syn26128484","Not Applicable","2022-04-04",TRUE,TRUE -"DataFlow","9502abd9-3059-4623-8e69-3ac7797801a6","HTAN SRRS",FALSE,"SRRSClinicalDataTier2","clinical_tier_2","Not Applicable","syn26128485","Not Applicable","2022-04-04",TRUE,TRUE -"DataFlow","36c444b9-6f49-4ca3-b3b1-95ab01e1c2db","HTAN SRRS",FALSE,"SRRSClinicalDataTier2","clinical_tier_3_melanoma","Not Applicable","syn26128486","Not Applicable","2022-04-04",TRUE,TRUE -"DataFlow","bb42742b-ba43-45b5-8fcf-789b342a8738","HTAN SRRS",FALSE,"SRRSClinicalDataTier2","clinical_tier_3_breast","Not Applicable","syn26128488","Not Applicable","2022-04-04",TRUE,TRUE -"DataFlow","54d89f27-e3f7-47d5-865d-44c25c50ff76","HTAN SRRS",FALSE,"SRRSClinicalDataTier2","clinical_tier_3_glioma","Not Applicable","syn26128489","Not Applicable","2022-04-04",TRUE,TRUE -"DataFlow","f79167f3-3fca-4a0d-b927-5286c9761623","HTAN SRRS",FALSE,"SRRSClinicalDataTier2","clinical_tier_3_acute_lymphoblastic_leukemia","Not Applicable","syn26128490","Not Applicable","2022-04-04",TRUE,TRUE -"DataFlow","038287cd-f3de-481e-afa3-a5aba2c026a8","HTAN SRRS",FALSE,"SRRSClinicalDataTier2","clinical_tier_3_colon","Not Applicable","syn26128491","Not Applicable","2022-04-04",TRUE,TRUE -"DataFlow","dc5dea82-9ac6-4563-b7be-2dff290b6cb8","HTAN SRRS",FALSE,"SRRSClinicalDataTier2","clinical_tier_3_lung","Not Applicable","syn26128492","Not Applicable","2022-04-04",TRUE,TRUE -"DataFlow","75ea5ffc-ce17-4815-bac8-25f7fb6ae394","HTAN SRRS",FALSE,"SRRSClinicalDataTier2","clinical_tier_3_sarcoma","Not Applicable","syn26128493","Not Applicable","2022-04-04",TRUE,TRUE -"DataFlow","105af51a-dab8-4fa4-a0aa-710c2efe9a8f","HTAN SRRS",FALSE,"SRRSClinicalDataTier2","clinical_tier_3_ovarian","Not Applicable","syn26128494","Not Applicable","2022-04-04",TRUE,TRUE -"DataFlow","fa9fb057-db3a-40b7-97af-58a7f5098a1a","HTAN SRRS",FALSE,"SRRSClinicalDataTier2","clinical_tier_3_neuroblastoma","Not Applicable","syn26128495","Not Applicable","2022-04-04",TRUE,TRUE -"DataFlow","3ec896a5-3e11-42c6-bcc9-4d606fb4d272","HTAN SRRS",FALSE,"SRRSClinicalDataTier2","clinical_tier_3_pancreatic","Not Applicable","syn26128496","Not Applicable","2022-04-04",TRUE,TRUE -"DataFlow","b091ed43-ed94-49f1-bc3f-c722aafb4525","HTAN SRRS",FALSE,"SRRSClinicalDataTier2","imaging_level_1","Not Applicable","syn26275040","Not Applicable","2022-04-04",TRUE,TRUE -"DataFlow","821d4add-ab6f-488b-8027-1eb4fb2186e1","HTAN SRRS",FALSE,"SRRSImagingLevel2","imaging_level_2","Not Applicable","syn26275041","Not Applicable","2021-01-01",TRUE,TRUE -"DataFlow","835699cd-e864-46a2-a193-81caeee572bd","HTAN SRRS",FALSE,"SRRSImagingLevel2","imaging_level_3","Not Applicable","syn26275042","Not Applicable","2021-01-01",TRUE,TRUE -"DataFlow","fb11b3fe-46ed-4962-9484-18a1a9a5252d","HTAN SRRS",FALSE,"SRRSImagingLevel2","imaging_level_4","Not Applicable","syn26275043","Not Applicable","2021-01-01",TRUE,TRUE -"DataFlow","d9312e52-91e1-4124-a383-073b1974d6e5","HTAN SRRS",FALSE,"SRRSImagingLevel2","staging","Not Applicable","syn42467311","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","d7d3e375-80af-4232-9fd3-56afaf5badda","HTAN SRRS",FALSE,"SRRSImagingLevel2","BU","Not Applicable","syn42559081","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","433ee941-17bb-4799-a653-ce2d107a2813","HTAN Center C",FALSE,"ImagingLevel2","imaging_level_2","Not Applicable","syn32596094","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","f37d6126-abea-4c37-849c-41e41f023570","HTAN Center C",FALSE,"ImagingLevel2","demographics","Not Applicable","syn32596098","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","233407a7-876e-482f-a860-e9ba2563ca4b","HTAN Center C",FALSE,"ImagingLevel2","imaging_level_3_channels","Not Applicable","syn33005137","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","d51b3531-89ae-4ab2-ba47-af6133faee46","HTAN Center C",FALSE,"ImagingLevel2","test-no-files","Not Applicable","syn33051814","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","547703d0-4a20-454d-8eb6-31099df54945","HTAN Center C",FALSE,"ImagingLevel2","Publications _Test","Not Applicable","syn33282461","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","795c1800-b2be-4fbf-b347-51c5e557e3d8","HTAN Center C",FALSE,"ScRNA-seqLevel1","test-cross-manifest","Not Applicable","syn33519723","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","774180c4-53f0-46c9-9b34-171cd969c86f","HTAN Center C",FALSE,"Biospecimen","test-submit","Not Applicable","syn35565383","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","a0e650d9-27d5-4649-b73a-d77d6c26a2e0","HTAN Center C",FALSE,"OtherAssay","test-deleted-files","Not Applicable","syn35903908","Not Applicable","Not Applicable",FALSE,FALSE -"DataFlow","02b03b07-b090-44c3-9a3f-cf1a86bece3b","HTAN Center C",FALSE,"OtherAssay","test_srrs","Not Applicable","syn40900734","Not Applicable","Not Applicable",FALSE,FALSE +Component,contributor,data_portal,dataset,dataset_name,embargo,entityId,num_items,release_scheduled,released,standard_compliance,Uuid +DataFlow,HTAN BU,FALSE,Not Applicable,h_and_e,Not Applicable,syn22432744,Not Applicable,Not Applicable,FALSE,FALSE,6127e7cb-43cb-4d8b-ab03-96b3174d5109 +DataFlow,HTAN BU,FALSE,Demographics,clinical_demographics,Not Applicable,syn22677299,Not Applicable,Not Applicable,FALSE,FALSE,64a1643f-4da2-4f8c-8a98-24235e711138 +DataFlow,HTAN BU,FALSE,ScRNA-seqLevel1,sc_rna_seq_level_1,Not Applicable,syn22722838,Not Applicable,Not Applicable,FALSE,FALSE,ffba5017-3626-45c1-bdec-78d7936cb3da +DataFlow,HTAN BU,FALSE,Biospecimen,biospecimens,Not Applicable,syn23632145,Not Applicable,Not Applicable,FALSE,FALSE,1030d40a-3c84-45a5-84b2-c15f181d1983 +DataFlow,HTAN BU,FALSE,ScRNA-seqLevel2,sc_rna_seq_level_2,Not Applicable,syn23662467,Not Applicable,Not Applicable,FALSE,FALSE,2aa9c64f-bcdc-4845-83fc-79ed5cb34f2b +DataFlow,HTAN BU,FALSE,ScRNA-seqLevel3,sc_rna_seq_level_3,Not Applicable,syn23662468,Not Applicable,Not Applicable,FALSE,FALSE,f44c76ba-7a09-4262-b8f1-08f00b1e898f +DataFlow,HTAN BU,FALSE,ScRNA-seqLevel4,sc_rna_seq_level_4,Not Applicable,syn23662469,Not Applicable,Not Applicable,FALSE,FALSE,4f91808b-b9e1-4dd7-a2ae-6ad9520590c3 +DataFlow,HTAN BU,FALSE,Not Applicable,archive,Not Applicable,syn24610388,Not Applicable,Not Applicable,FALSE,FALSE,3b37f13b-7484-4244-a82b-b146e7f63a9a +DataFlow,HTAN BU,FALSE,Exposure,clinical_exposure,Not Applicable,syn24615248,Not Applicable,Not Applicable,FALSE,FALSE,42a4c301-eab9-4e95-bc0b-03d11867f9c0 +DataFlow,HTAN BU,FALSE,Diagnosis,clinical_diagnosis,Not Applicable,syn24615249,Not Applicable,Not Applicable,FALSE,FALSE,6a5a0ba8-b3a3-409e-a93b-04c7c6dd8359 +DataFlow,HTAN BU,FALSE,FamilyHistory,clinical_family_history,Not Applicable,syn24615250,Not Applicable,Not Applicable,FALSE,FALSE,eabfee63-4400-4af3-b693-f658fdac5e4d +DataFlow,HTAN BU,FALSE,FollowUp,clinical_follow_up,Not Applicable,syn24615251,Not Applicable,Not Applicable,FALSE,FALSE,7ddd905d-9a2f-4046-8545-173315a0442c +DataFlow,HTAN BU,FALSE,Therapy,clinical_therapy,Not Applicable,syn24615252,Not Applicable,Not Applicable,FALSE,FALSE,18633f0c-fa5a-4871-bca7-839e5832f9e1 +DataFlow,HTAN BU,FALSE,Not Applicable,clinical_molecular_test,Not Applicable,syn24860585,Not Applicable,Not Applicable,FALSE,FALSE,000176ba-500e-458e-8998-241ea1f0f995 +DataFlow,HTAN BU,FALSE,ClinicalDataTier2,clinical_tier_2,Not Applicable,syn24873786,Not Applicable,Not Applicable,FALSE,FALSE,5bcd7763-be6b-4b83-8d23-61033fbafc16 +DataFlow,HTAN BU,FALSE,LungCancerTier3,clinical_tier_3_lung,Not Applicable,syn24873787,Not Applicable,Not Applicable,FALSE,FALSE,751f3b21-c214-46b2-be0b-63d68abb68bf +DataFlow,HTAN BU,FALSE,Not Applicable,minerva,Not Applicable,syn25586693,Not Applicable,Not Applicable,FALSE,FALSE,03d258db-2421-4497-b363-9eba5d36ee4d +DataFlow,HTAN BU,FALSE,Not Applicable,image_level2,Not Applicable,syn26031632,Not Applicable,Not Applicable,FALSE,FALSE,6678c3f0-ba77-427d-ba0f-2dcc4ac9ecff +DataFlow,HTAN BU,FALSE,Not Applicable,Bulk_WES_level_3,Not Applicable,syn26944441,Not Applicable,Not Applicable,FALSE,FALSE,8bb50616-af8c-4edf-bd81-ed2dc5161c38 +DataFlow,HTAN BU,FALSE,Not Applicable,Bulk_RNA_Level3,Not Applicable,syn26944456,Not Applicable,Not Applicable,FALSE,FALSE,12ddeaaf-1e78-42d8-b30a-04409c356f2b +DataFlow,HTAN CHOP,FALSE,ScRNA-seqLevel1,single_cell_RNAseq_level_1,Not Applicable,syn23452919,Not Applicable,Not Applicable,FALSE,FALSE,f7ccac34-2f3e-4d2d-a1ad-f87448e571d7 +DataFlow,HTAN CHOP,FALSE,ScATAC-seqLevel1,single_cell_ATACseq_level_1,Not Applicable,syn23662863,Not Applicable,Not Applicable,FALSE,FALSE,e1e2df80-6dff-4bfe-bea8-7a18fd7486e1 +DataFlow,HTAN CHOP,FALSE,Diagnosis,clinical_diagnosis,Not Applicable,syn24615215,Not Applicable,Not Applicable,FALSE,FALSE,0fb71acc-3418-4de0-9a83-5f7b752ffb2f +DataFlow,HTAN CHOP,FALSE,Exposure,clinical_exposure,Not Applicable,syn24615216,Not Applicable,Not Applicable,FALSE,FALSE,595c840f-e20e-407c-aa6f-088026867b00 +DataFlow,HTAN CHOP,FALSE,FamilyHistory,clinical_family_history,Not Applicable,syn24615217,Not Applicable,Not Applicable,FALSE,FALSE,222019bd-234c-4441-924f-6049c2ee95bd +DataFlow,HTAN CHOP,FALSE,FollowUp,clinical_follow_up,Not Applicable,syn24615218,Not Applicable,Not Applicable,FALSE,FALSE,86a5a31e-aa03-40b7-83bd-d7ee3afbf735 +DataFlow,HTAN CHOP,FALSE,Therapy,clinical_therapy,Not Applicable,syn24615219,Not Applicable,Not Applicable,FALSE,FALSE,cfb37400-7ae0-47de-a341-99deece63474 +DataFlow,HTAN CHOP,FALSE,MolecularTest,clinical_molecular_test,Not Applicable,syn24860584,Not Applicable,Not Applicable,FALSE,FALSE,50f198b8-f1c1-4823-9a7e-b5b71b64502b +DataFlow,HTAN CHOP,FALSE,ScRNA-seqLevel2,single_cell_RNAseq_level_2,Not Applicable,syn24860906,Not Applicable,Not Applicable,FALSE,FALSE,50274824-2e23-44be-915a-ab0dda67262c +DataFlow,HTAN CHOP,FALSE,Not Applicable,single_cell_ATACseq_level_2,Not Applicable,syn24860908,Not Applicable,Not Applicable,FALSE,FALSE,59205cdf-128f-42da-8aed-3d73e024a57d +DataFlow,HTAN CHOP,FALSE,Not Applicable,clinical_tier_2,Not Applicable,syn24873782,Not Applicable,Not Applicable,FALSE,FALSE,a6e06d58-fbce-4656-91dd-69fd0763fc8c +DataFlow,HTAN CHOP,FALSE,Not Applicable,clinical_tier_3_glioma,Not Applicable,syn24873783,Not Applicable,Not Applicable,FALSE,FALSE,fd14483d-1fbf-42c4-8795-5fc2cf247731 +DataFlow,HTAN CHOP,FALSE,Not Applicable,clinical_tier_3_neuroblastoma,Not Applicable,syn24873784,Not Applicable,Not Applicable,FALSE,FALSE,7b09ffde-e95b-4b33-a032-31eb7e93f118 +DataFlow,HTAN CHOP,FALSE,Not Applicable,clinical_tier_3_acute_lymphoblastic_leukemia,Not Applicable,syn24873785,Not Applicable,Not Applicable,FALSE,FALSE,c83a533e-f1a0-4b2f-88bd-60c6de583811 +DataFlow,HTAN CHOP,FALSE,ScRNA-seqLevel3,single_cell_RNAseq_level_3,Not Applicable,syn24984342,Not Applicable,Not Applicable,FALSE,FALSE,8536930b-a215-437d-b53a-97b85842520b +DataFlow,HTAN CHOP,FALSE,ScRNA-seqLevel4,single_cell_RNAseq_level_4,Not Applicable,syn24984343,Not Applicable,Not Applicable,FALSE,FALSE,f35592b6-473a-4d89-921a-8059ac4d6b4c +DataFlow,HTAN CHOP,FALSE,Not Applicable,snmC-Seq2_level1,Not Applicable,syn24984555,Not Applicable,Not Applicable,FALSE,FALSE,6919b7f5-5066-445b-816d-9fb77516eef5 +DataFlow,HTAN CHOP,FALSE,Not Applicable,snmC-Seq2_level2,Not Applicable,syn24984685,Not Applicable,Not Applicable,FALSE,FALSE,8801c7ee-a902-4ec8-bec4-3bfa05ddc901 +DataFlow,HTAN CHOP,FALSE,Demographics,clinical_demographics,Not Applicable,syn25127390,Not Applicable,Not Applicable,FALSE,FALSE,71ee566f-ca16-4896-86ca-0b8f224a42d6 +DataFlow,HTAN CHOP,FALSE,Biospecimen,Biospecimen,Not Applicable,syn25127447,Not Applicable,Not Applicable,FALSE,FALSE,f0a61c1e-17f4-4862-b6a9-5372ab05dffb +DataFlow,HTAN CHOP,FALSE,Not Applicable,snmC-Seq2_level1_new,Not Applicable,syn25955941,Not Applicable,Not Applicable,FALSE,FALSE,ec3c501f-4481-4d91-aaa4-997380ae0b5e +DataFlow,HTAN CHOP,FALSE,ScATAC-seqLevel4,single_cell_ATACseq_level_4,Not Applicable,syn26401297,Not Applicable,Not Applicable,FALSE,FALSE,b80359eb-c747-4c0e-9dd9-c796c6845aac +DataFlow,HTAN CHOP,FALSE,ScATAC-seqLevel1,single_cell_ATACseq_level_1_CLEAN,Not Applicable,syn51179721,Not Applicable,Not Applicable,FALSE,FALSE,fe6b0774-2aef-480c-99e5-0b940537d81f +DataFlow,HTAN CHOP,FALSE,,single_cell_RNAseq_level_4_clean,Not Applicable,syn51229044,Not Applicable,Not Applicable,FALSE,FALSE,1469454d-9079-4bed-8c2f-80b35a11d10d +DataFlow,HTAN CHOP,FALSE,,single_cell_ATACseq_level_4_clean,Not Applicable,syn51229045,Not Applicable,Not Applicable,FALSE,FALSE,56eb8565-86b4-4ae6-9eb7-7be8bda9f3c9 +DataFlow,HTAN Center C,FALSE,ImagingLevel2,imaging_level_2,Not Applicable,syn32596094,Not Applicable,Not Applicable,FALSE,FALSE,4b62fa1f-5700-4c2e-bfe7-37ea6491f1d0 +DataFlow,HTAN Center C,FALSE,Demographics,demographics,Not Applicable,syn32596098,Not Applicable,Not Applicable,FALSE,FALSE,8c5609db-c188-40bf-9965-64358cabe304 +DataFlow,HTAN Center C,FALSE,Not Applicable,imaging_level_3_channels,Not Applicable,syn33005137,Not Applicable,Not Applicable,FALSE,FALSE,b2dbf98f-e3c5-43cf-bae7-24b2f281b130 +DataFlow,HTAN Center C,FALSE,Not Applicable,test-no-files,Not Applicable,syn33051814,Not Applicable,Not Applicable,FALSE,FALSE,a364a3bc-627b-462f-9463-9f0ab1240776 +DataFlow,HTAN Center C,FALSE,Not Applicable,Publications _Test,Not Applicable,syn33282461,Not Applicable,Not Applicable,FALSE,FALSE,0d36e15e-a594-470a-8117-f9c1538b694c +DataFlow,HTAN Center C,FALSE,Not Applicable,test-cross-manifest,Not Applicable,syn33519723,Not Applicable,Not Applicable,FALSE,FALSE,b521d7eb-ee58-428d-a241-eb7bdcfca487 +DataFlow,HTAN Center C,FALSE,Biospecimen,test-submit,Not Applicable,syn35565383,Not Applicable,Not Applicable,FALSE,FALSE,b0f58f52-516c-46bc-a525-0f7454df5a3c +DataFlow,HTAN Center C,FALSE,OtherAssay,test-deleted-files,Not Applicable,syn35903908,Not Applicable,Not Applicable,FALSE,FALSE,881e8337-c130-4042-adee-81ee9af975f3 +DataFlow,HTAN Center C,FALSE,Not Applicable,test_srrs,Not Applicable,syn40900734,Not Applicable,Not Applicable,FALSE,FALSE,a5510aa7-bb94-4b40-8103-cb9cc8eca859 +DataFlow,HTAN Center C,FALSE,Biospecimen,biospecimen,Not Applicable,syn51121882,Not Applicable,Not Applicable,FALSE,FALSE,7f843ef9-f5ad-44a9-ac02-a02de2e6c60c +DataFlow,HTAN DFCI,FALSE,Not Applicable,single_cell_RNAseq_level_1,Not Applicable,syn24180872,Not Applicable,Not Applicable,FALSE,FALSE,c744363a-52c3-48c4-b562-cffdf43a925b +DataFlow,HTAN DFCI,FALSE,Not Applicable,single_cell_RNAseq_level_3,Not Applicable,syn24180873,Not Applicable,Not Applicable,FALSE,FALSE,104c9836-1b1b-47d9-8926-f4472858185a +DataFlow,HTAN DFCI,FALSE,Not Applicable,single_cell_RNAseq_level_2,Not Applicable,syn24180874,Not Applicable,Not Applicable,FALSE,FALSE,cd6aefdb-74fe-45a4-860f-4d0875aa89a7 +DataFlow,HTAN DFCI,FALSE,Not Applicable,single_cell_RNAseq_level_4,Not Applicable,syn24180875,Not Applicable,Not Applicable,FALSE,FALSE,73ad43d7-2dfc-4e15-ac3e-acf168087fbe +DataFlow,HTAN DFCI,FALSE,Not Applicable,clinical_diagnosis,Not Applicable,syn24615260,Not Applicable,Not Applicable,FALSE,FALSE,5683fc1c-aea0-4a38-8f00-6cc8183ec1a9 +DataFlow,HTAN DFCI,FALSE,FamilyHistory,clinical_family_history,Not Applicable,syn24615261,Not Applicable,Not Applicable,FALSE,FALSE,1ce9c222-7d22-4f97-9ae4-0a0b0e8f28b8 +DataFlow,HTAN DFCI,FALSE,Biospecimen,biospecimen_breast,Not Applicable,syn24615262,Not Applicable,Not Applicable,FALSE,FALSE,0ceae3fd-0baa-4eab-92f5-3fd1a6084373 +DataFlow,HTAN DFCI,FALSE,Exposure,clinical_exposure_lung,Not Applicable,syn24615263,Not Applicable,Not Applicable,FALSE,FALSE,9232d0b7-8bae-48b7-82ba-c6899117b63c +DataFlow,HTAN DFCI,FALSE,Therapy,clinical_therapy,Not Applicable,syn24615264,Not Applicable,Not Applicable,FALSE,FALSE,6ec158c4-89de-460a-b2fe-16d790c3a1b6 +DataFlow,HTAN DFCI,FALSE,FollowUp,clinical_follow_up,Not Applicable,syn24615265,Not Applicable,Not Applicable,FALSE,FALSE,01fcf798-9b5b-4feb-9066-5771d6dd4bad +DataFlow,HTAN DFCI,FALSE,Demographics,clinical_demographics,Not Applicable,syn24615266,Not Applicable,Not Applicable,FALSE,FALSE,b5c48d4f-6570-4413-9b51-41ea8e9b8242 +DataFlow,HTAN DFCI,FALSE,Not Applicable,clinical_molecular_test,Not Applicable,syn24860586,Not Applicable,Not Applicable,FALSE,FALSE,0d1886b0-e2b8-44c7-a5da-dcce67b7b41e +DataFlow,HTAN DFCI,FALSE,ClinicalDataTier2,clinical_tier_2,Not Applicable,syn24873790,Not Applicable,Not Applicable,FALSE,FALSE,842177fd-a5fe-4bd4-880d-aea4a7bfb5b3 +DataFlow,HTAN DFCI,FALSE,Not Applicable,clinical_tier_3_breast,Not Applicable,syn24873791,Not Applicable,Not Applicable,FALSE,FALSE,60073b01-786c-4792-93f9-124c31b51aa2 +DataFlow,HTAN DFCI,FALSE,Not Applicable,clinical_tier_3_melanoma,Not Applicable,syn24873792,Not Applicable,Not Applicable,FALSE,FALSE,f2bb401e-9f66-401e-89f7-0c6f03393ab4 +DataFlow,HTAN DFCI,FALSE,Not Applicable,clinical_tier_3_colon,Not Applicable,syn24873793,Not Applicable,Not Applicable,FALSE,FALSE,6c995990-16bb-4dd6-95cd-20f56181aa1b +DataFlow,HTAN DFCI,FALSE,Not Applicable,minerva,Not Applicable,syn25577443,Not Applicable,Not Applicable,FALSE,FALSE,d9452785-dd3b-4c5e-bf5f-ece76dcfbec2 +DataFlow,HTAN DFCI,FALSE,Not Applicable,sardana_phase_1_ff_level_2,Not Applicable,syn25998510,Not Applicable,Not Applicable,FALSE,FALSE,8a97afc0-f674-46b2-9dff-63f7ec9227b3 +DataFlow,HTAN DFCI,FALSE,Not Applicable,sardana_phase_1_ffpe_level_2,Not Applicable,syn25998511,Not Applicable,Not Applicable,FALSE,FALSE,7a61c236-b122-454c-97b0-5fdc8357bb93 +DataFlow,HTAN DFCI,FALSE,Not Applicable,sardana_pilot_ff_level_2,Not Applicable,syn25998512,Not Applicable,Not Applicable,FALSE,FALSE,fe4c653e-8daf-4f7f-87c8-7dd9ebfbdab5 +DataFlow,HTAN DFCI,FALSE,Not Applicable,sardana_pilot_ffpe_level_2,Not Applicable,syn25998513,Not Applicable,Not Applicable,FALSE,FALSE,31ab6c3a-92c3-48c1-b0f6-aadb0a42b3b1 +DataFlow,HTAN DFCI,FALSE,LungCancerTier3,clinical_tier_3_lung,Not Applicable,syn29399968,Not Applicable,Not Applicable,FALSE,FALSE,20e82a63-89d1-4145-8680-04a5c89aed76 +DataFlow,HTAN DFCI,FALSE,Not Applicable,wes_level_1,Not Applicable,syn51108825,Not Applicable,Not Applicable,FALSE,FALSE,bbcc40b0-5fbc-446e-985a-1b7d441bec7f +DataFlow,HTAN DFCI,FALSE,Not Applicable,wes_level2,Not Applicable,syn51108826,Not Applicable,Not Applicable,FALSE,FALSE,71933c99-2013-40de-a848-d868c4d67b2b +DataFlow,HTAN DFCI,FALSE,Not Applicable,wes_level3,Not Applicable,syn51108827,Not Applicable,Not Applicable,FALSE,FALSE,7aa65b79-97f2-484f-9caa-5a586f5cbe9a +DataFlow,HTAN DFCI,FALSE,BulkWESLevel2,wes_level_2,Not Applicable,syn51108828,Not Applicable,Not Applicable,FALSE,FALSE,6c74bed8-48a7-41b9-a62a-166f89896e81 +DataFlow,HTAN DFCI,FALSE,Not Applicable,wes_level_3,Not Applicable,syn51108829,Not Applicable,Not Applicable,FALSE,FALSE,0b4cbe9d-7d5a-47db-9774-1b4d4439399a +DataFlow,HTAN DFCI,FALSE,Not Applicable,wes_level_4,Not Applicable,syn51108830,Not Applicable,Not Applicable,FALSE,FALSE,51f1643d-c035-4d87-9bfb-a6a5b50c6f03 +DataFlow,HTAN DFCI,FALSE,Not Applicable,biospecimen_melanoma,Not Applicable,syn51200595,Not Applicable,Not Applicable,FALSE,FALSE,9ea7929c-10ac-48b8-9016-5fbf7224765f +DataFlow,HTAN DFCI,FALSE,Not Applicable,biospecimen_lung,Not Applicable,syn51200596,Not Applicable,Not Applicable,FALSE,FALSE,caa43327-7e1b-4b4b-a6fb-b700a3faa3b8 +DataFlow,HTAN DFCI,FALSE,Not Applicable,clinical_demographics_breast,Not Applicable,syn51200615,Not Applicable,Not Applicable,FALSE,FALSE,52267c7c-c28f-4a8b-a106-933437c75feb +DataFlow,HTAN DFCI,FALSE,Not Applicable,clinical_demographics_melanoma,Not Applicable,syn51200616,Not Applicable,Not Applicable,FALSE,FALSE,7878ad55-4b0f-4642-970a-72b719ec0f69 +DataFlow,HTAN DFCI,FALSE,Diagnosis,clinical_demographics_lung,Not Applicable,syn51200617,Not Applicable,Not Applicable,FALSE,FALSE,8b695e49-2ca5-42b3-a529-6eff1dd27543 +DataFlow,HTAN DFCI,FALSE,Not Applicable,clinical_diagnosis_breast,Not Applicable,syn51200618,Not Applicable,Not Applicable,FALSE,FALSE,e8b91684-0f47-4f5f-a31b-c192745bc816 +DataFlow,HTAN DFCI,FALSE,Not Applicable,clinical_diagnosis_melanoma,Not Applicable,syn51200619,Not Applicable,Not Applicable,FALSE,FALSE,b6ef900e-3cf0-4ee9-a42f-9ef883073c4c +DataFlow,HTAN DFCI,FALSE,Not Applicable,clinical_diagnosis_lung,Not Applicable,syn51200620,Not Applicable,Not Applicable,FALSE,FALSE,9b77311c-a13a-4703-8137-ba10d2ea6750 +DataFlow,HTAN DFCI,FALSE,Not Applicable,wes_level_2_melanoma,Not Applicable,syn51203710,Not Applicable,Not Applicable,FALSE,FALSE,d3a1ffef-5d40-4acf-989d-701711742df4 +DataFlow,HTAN DFCI,FALSE,Not Applicable,clinical_exposure_breast,Not Applicable,syn51208611,Not Applicable,Not Applicable,FALSE,FALSE,478d9e1b-97e3-436e-86c2-b7601654411f +DataFlow,HTAN DFCI,FALSE,Not Applicable,clinical_exposure_melanoma,Not Applicable,syn51208612,Not Applicable,Not Applicable,FALSE,FALSE,d84ada19-d4a6-4ddd-b062-3dd3df40ed55 +DataFlow,HTAN Duke,FALSE,BulkWESLevel1,bulk_DNAseq_level_1,Not Applicable,syn24180956,Not Applicable,Not Applicable,FALSE,FALSE,ef131e39-bf88-4300-b6c2-6bba3fd79052 +DataFlow,HTAN Duke,FALSE,Demographics,clinical_demographics,Not Applicable,syn24615228,Not Applicable,Not Applicable,FALSE,FALSE,fb38ca28-14f2-4ecc-93d1-9c6b568ae7fc +DataFlow,HTAN Duke,FALSE,Diagnosis,clinical_diagnosis,Not Applicable,syn24615229,Not Applicable,Not Applicable,FALSE,FALSE,efec731c-9378-4781-a974-e3af9e9dee57 +DataFlow,HTAN Duke,FALSE,Exposure,clinical_exposure,Not Applicable,syn24615230,Not Applicable,Not Applicable,FALSE,FALSE,aa34d245-92b3-45e9-b39e-9f9ea9c0d131 +DataFlow,HTAN Duke,FALSE,FamilyHistory,clinical_family_history,Not Applicable,syn24615231,Not Applicable,Not Applicable,FALSE,FALSE,d9ee1f09-2046-429d-9d1a-fa1f2a250c59 +DataFlow,HTAN Duke,FALSE,Therapy,clinical_therapy,Not Applicable,syn24615232,Not Applicable,Not Applicable,FALSE,FALSE,3d343601-6016-47b2-97d1-3b39bf62900e +DataFlow,HTAN Duke,FALSE,FollowUp,clinical_follow_up,Not Applicable,syn24615233,Not Applicable,Not Applicable,FALSE,FALSE,3fe9d2d4-2210-43bd-9dfd-0a264f886417 +DataFlow,HTAN Duke,FALSE,MolecularTest,clinical_molecular_test,Not Applicable,syn24860551,Not Applicable,Not Applicable,FALSE,FALSE,c9185703-aaa1-4e2e-a774-3257b4f812e2 +DataFlow,HTAN Duke,FALSE,Not Applicable,clinical_tier_2,Not Applicable,syn24873778,Not Applicable,Not Applicable,FALSE,FALSE,f429f6e3-3ac7-4528-a75b-1e69448a02a5 +DataFlow,HTAN Duke,FALSE,Not Applicable,clinical_tier_3_breast,Not Applicable,syn24873779,Not Applicable,Not Applicable,FALSE,FALSE,d912bac4-e6d7-4e00-bb16-7ca202780fd0 +DataFlow,HTAN Duke,FALSE,OtherAssay,mibi_imaging_level_1,Not Applicable,syn24995125,Not Applicable,Not Applicable,FALSE,FALSE,ee3cfd8d-0d67-47b8-9142-e57c821240f8 +DataFlow,HTAN Duke,FALSE,Biospecimen,biospecimen,Not Applicable,syn25148276,Not Applicable,Not Applicable,FALSE,FALSE,0b99f516-43a8-43ed-9bb6-154872a8b134 +DataFlow,HTAN Duke,FALSE,Not Applicable,minerva,Not Applicable,syn25472271,Not Applicable,Not Applicable,FALSE,FALSE,001588b7-4a40-4dbf-a679-88f1b81cd5cf +DataFlow,HTAN Duke,FALSE,ImagingLevel2,imaging_level_2,Not Applicable,syn25892944,Not Applicable,Not Applicable,FALSE,FALSE,f81ab445-1e85-44a2-bbaf-f9c2208caa0a +DataFlow,HTAN Duke,FALSE,ImagingLevel2,mibi_imaging_level_2,Not Applicable,syn26551262,Not Applicable,Not Applicable,FALSE,FALSE,9db2e282-553e-4423-b340-360f0feb3278 +DataFlow,HTAN Duke,FALSE,Not Applicable,mibi_imaging_level_3,Not Applicable,syn26551280,Not Applicable,Not Applicable,FALSE,FALSE,00fd4323-d8a8-4134-8485-9d62d6d58301 +DataFlow,HTAN Duke,FALSE,Not Applicable,bulk_RNAseq_level_1,Not Applicable,syn30911850,Not Applicable,Not Applicable,FALSE,FALSE,f93bf3e9-2e5e-4172-a766-3bb91a9074df +DataFlow,HTAN HMS,FALSE,Not Applicable,Example Clinical Data - Demographics,Not Applicable,syn22126051,Not Applicable,Not Applicable,FALSE,FALSE,4505e315-603e-43af-bad0-50cf35aec858 +DataFlow,HTAN HMS,FALSE,Biospecimen,biospecimen,Not Applicable,syn24616231,Not Applicable,Not Applicable,FALSE,FALSE,d2701cb9-b4d3-4a45-8eef-48d12cd21700 +DataFlow,HTAN HMS,FALSE,Demographics,clinical_demographics,Not Applicable,syn24616233,Not Applicable,Not Applicable,FALSE,FALSE,89f3d148-9fa0-4abe-9500-a8263d3d0dd0 +DataFlow,HTAN HMS,FALSE,Diagnosis,clinical_diagnosis,Not Applicable,syn24616235,Not Applicable,Not Applicable,FALSE,FALSE,0033876c-4610-4b89-9ee8-98f20582dc39 +DataFlow,HTAN HMS,FALSE,Exposure,clinical_exposure,Not Applicable,syn24616237,Not Applicable,Not Applicable,FALSE,FALSE,b3c575dd-6526-4345-8662-bce2cc493a41 +DataFlow,HTAN HMS,FALSE,FamilyHistory,clinical_family_history,Not Applicable,syn24616239,Not Applicable,Not Applicable,FALSE,FALSE,e09af0e3-f114-4f37-b523-4de370540499 +DataFlow,HTAN HMS,FALSE,FollowUp,clinical_follow_up,Not Applicable,syn24616241,Not Applicable,Not Applicable,FALSE,FALSE,01513787-02b0-4516-8c3a-098a7f1eadac +DataFlow,HTAN HMS,FALSE,Therapy,clinical_therapy,Not Applicable,syn24616243,Not Applicable,Not Applicable,FALSE,FALSE,61233878-3991-4a3b-b182-2cf146590441 +DataFlow,HTAN HMS,FALSE,MolecularTest,clinical_molecular_test,Not Applicable,syn24860583,Not Applicable,Not Applicable,FALSE,FALSE,4410da1e-9b3d-45d1-824e-bbb77936c8b7 +DataFlow,HTAN HMS,FALSE,Not Applicable,clinical_tier_2,Not Applicable,syn24873780,Not Applicable,Not Applicable,FALSE,FALSE,0a6fcf09-22b4-4a63-82a5-92d33be5256e +DataFlow,HTAN HMS,FALSE,Not Applicable,clinical_tier_3_melanoma,Not Applicable,syn24873781,Not Applicable,Not Applicable,FALSE,FALSE,f15cbad7-0ef8-4ecc-bc62-9fc51b1c61d9 +DataFlow,HTAN HMS,FALSE,BulkRNA-seqLevel1,PickSeq_Level_1,Not Applicable,syn24991756,Not Applicable,Not Applicable,FALSE,FALSE,70064f66-eae7-4255-8f4c-c3a0325cf61c +DataFlow,HTAN HMS,FALSE,ImagingLevel2,imaging_level_2,Not Applicable,syn25580853,Not Applicable,Not Applicable,FALSE,FALSE,5bdbaa17-5c70-45a1-b04d-75ef816da56d +DataFlow,HTAN HMS,FALSE,Not Applicable,minerva,Not Applicable,syn25653114,Not Applicable,Not Applicable,FALSE,FALSE,658f3137-8b13-4cd7-b4fd-35d5543f1341 +DataFlow,HTAN HMS,FALSE,Not Applicable,archive,Not Applicable,syn25750256,Not Applicable,Not Applicable,FALSE,FALSE,32d7e954-1a6f-4598-868e-c8dfe10c6dfa +DataFlow,HTAN HMS,FALSE,BulkRNA-seqLevel2,PickSeq_Level_2,Not Applicable,syn26530450,Not Applicable,Not Applicable,FALSE,FALSE,953c1ed5-7448-4b0d-8125-e895d8bb7a0b +DataFlow,HTAN HMS,FALSE,BulkRNA-seqLevel3,PickSeq_Level_3,Not Applicable,syn26530452,Not Applicable,Not Applicable,FALSE,FALSE,ddcd800f-75f2-4c5b-870f-f2c59c76b112 +DataFlow,HTAN HMS,FALSE,ImagingLevel4,imaging_level_4,Not Applicable,syn34625996,Not Applicable,Not Applicable,FALSE,FALSE,d9a8a4a1-7f00-4eef-ad24-b025151250a6 +DataFlow,HTAN HMS,FALSE,ImagingLevel3Segmentation,imaging_level_3_segmentation,Not Applicable,syn36848897,Not Applicable,Not Applicable,FALSE,FALSE,eb7c35f8-a7a8-4923-9eae-93f1df8c845f +DataFlow,HTAN HTAPP,FALSE,ImagingLevel2,merfish_level_1,Not Applicable,syn23585912,Not Applicable,Not Applicable,FALSE,FALSE,7985ef7b-16ea-45e1-abf9-99c35fbec288 +DataFlow,HTAN HTAPP,FALSE,ImagingLevel2,merfish_level_2,Not Applicable,syn23585913,Not Applicable,Not Applicable,FALSE,FALSE,852adb13-f130-4c38-ac01-6fe2dcdf5796 +DataFlow,HTAN HTAPP,FALSE,OtherAssay,merfish_level_3,Not Applicable,syn23585914,Not Applicable,Not Applicable,FALSE,FALSE,e828b10e-e30b-40ab-ac27-6dbe7646013a +DataFlow,HTAN HTAPP,FALSE,OtherAssay,merfish_level_4,Not Applicable,syn23585915,Not Applicable,Not Applicable,FALSE,FALSE,f634f935-db79-449f-875d-2e9788053a81 +DataFlow,HTAN HTAPP,FALSE,Not Applicable,merfish_level_5,Not Applicable,syn23585916,Not Applicable,Not Applicable,FALSE,FALSE,fd66f2d3-cbc4-4cba-aa59-a8c5284b02b7 +DataFlow,HTAN HTAPP,FALSE,Not Applicable,codex_level_1,Not Applicable,syn23591171,Not Applicable,Not Applicable,FALSE,FALSE,1ff9e374-e8f3-4c56-8f96-29cb59611a43 +DataFlow,HTAN HTAPP,FALSE,ImagingLevel2,codex_level_2,Not Applicable,syn23591172,Not Applicable,Not Applicable,FALSE,FALSE,34d9587c-1477-4203-8b53-ddf20504d66f +DataFlow,HTAN HTAPP,FALSE,OtherAssay,codex_level_3,Not Applicable,syn23591173,Not Applicable,Not Applicable,FALSE,FALSE,c3fb666f-4cc4-4bd8-ae3c-368047b853e1 +DataFlow,HTAN HTAPP,FALSE,Not Applicable,codex_level_4,Not Applicable,syn23591174,Not Applicable,Not Applicable,FALSE,FALSE,ea0f28c8-fe2b-4916-9297-bc4f52b8e343 +DataFlow,HTAN HTAPP,FALSE,Not Applicable,codex_level_5,Not Applicable,syn23591175,Not Applicable,Not Applicable,FALSE,FALSE,0877e935-4333-4d31-b51e-457c92726b9c +DataFlow,HTAN HTAPP,FALSE,ImagingLevel2,mibi_level_1,Not Applicable,syn23638814,Not Applicable,Not Applicable,FALSE,FALSE,7343bc97-7790-45ca-9838-d5563a449388 +DataFlow,HTAN HTAPP,FALSE,ImagingLevel2,mibi_level_2,Not Applicable,syn23638815,Not Applicable,Not Applicable,FALSE,FALSE,0901e267-65aa-4a30-a100-975d786c9599 +DataFlow,HTAN HTAPP,FALSE,OtherAssay,mibi_level_3,Not Applicable,syn23638816,Not Applicable,Not Applicable,FALSE,FALSE,de9879c3-10f6-4c53-8bc2-9787b309d544 +DataFlow,HTAN HTAPP,FALSE,OtherAssay,mibi_level_4,Not Applicable,syn23638817,Not Applicable,Not Applicable,FALSE,FALSE,00f35059-1a11-44aa-bc82-81d815f1c746 +DataFlow,HTAN HTAPP,FALSE,OtherAssay,mibi_level_5,Not Applicable,syn23638818,Not Applicable,Not Applicable,FALSE,FALSE,79f28761-4211-4ec5-92ed-8f18c324b024 +DataFlow,HTAN HTAPP,FALSE,Not Applicable,h_and_e_level_1,Not Applicable,syn24175688,Not Applicable,Not Applicable,FALSE,FALSE,6be4cb5c-d719-4562-82da-8cc704446f14 +DataFlow,HTAN HTAPP,FALSE,OtherAssay,exseq_level_2,Not Applicable,syn24176067,Not Applicable,Not Applicable,FALSE,FALSE,666a6bbf-0e2a-4e96-a70b-f71bdae2e1e1 +DataFlow,HTAN HTAPP,FALSE,OtherAssay,exseq_level_3,Not Applicable,syn24176068,Not Applicable,Not Applicable,FALSE,FALSE,968d6834-2856-4431-a54a-364e20671294 +DataFlow,HTAN HTAPP,FALSE,ScRNA-seqLevel1,single_cell_RNAseq_level_1_colon,Not Applicable,syn24181385,Not Applicable,Not Applicable,FALSE,FALSE,95814547-b33a-430d-bea3-38e69c88684a +DataFlow,HTAN HTAPP,FALSE,ScRNA-seqLevel2,single_cell_RNAseq_level_2_colon,Not Applicable,syn24181437,Not Applicable,Not Applicable,FALSE,FALSE,c7ecc4ac-5253-42fb-a0e7-285b9ad8b4ce +DataFlow,HTAN HTAPP,FALSE,ScRNA-seqLevel3,single_cell_RNAseq_level_3_colon,Not Applicable,syn24181445,Not Applicable,Not Applicable,FALSE,FALSE,d7656d1e-bacc-4540-9847-e4799f9a8379 +DataFlow,HTAN HTAPP,FALSE,BulkWESLevel2,bulk_DNAseq_level_2_colon,Not Applicable,syn24181527,Not Applicable,Not Applicable,FALSE,FALSE,6e571e69-dcf1-46b1-b579-cb6c34d57c0d +DataFlow,HTAN HTAPP,FALSE,BulkRNA-seqLevel2,bulk_RNAseq_level_2_colon,Not Applicable,syn24181573,Not Applicable,Not Applicable,FALSE,FALSE,547c6b67-6270-41bd-aa07-3a2a8ab32b01 +DataFlow,HTAN HTAPP,FALSE,ScRNA-seqLevel1,single_cell_RNAseq_level_1_breast,Not Applicable,syn24181593,Not Applicable,Not Applicable,FALSE,FALSE,3e8798b6-317a-403b-9f77-83579ada07e1 +DataFlow,HTAN HTAPP,FALSE,ScRNA-seqLevel1,single_cell_RNAseq_level_1_glioma,Not Applicable,syn24181594,Not Applicable,Not Applicable,FALSE,FALSE,6a37a32a-4980-40f3-bd46-469ae8693cd5 +DataFlow,HTAN HTAPP,FALSE,ScRNA-seqLevel1,single_cell_RNAseq_level_1_lung,Not Applicable,syn24181595,Not Applicable,Not Applicable,FALSE,FALSE,56747dfe-f4d3-4448-b2fa-8c8496b2ba99 +DataFlow,HTAN HTAPP,FALSE,ScRNA-seqLevel3,single_cell_RNAseq_level_3_glioma,Not Applicable,syn24181596,Not Applicable,Not Applicable,FALSE,FALSE,606992aa-b4a3-4cfe-a5d7-cb1a2c530afe +DataFlow,HTAN HTAPP,FALSE,ScRNA-seqLevel1,single_cell_RNAseq_level_1_neuroblastoma,Not Applicable,syn24181597,Not Applicable,Not Applicable,FALSE,FALSE,ac6811a6-bf9b-42ea-b8a7-c5c537b67dd3 +DataFlow,HTAN HTAPP,FALSE,ScRNA-seqLevel1,single_cell_RNAseq_level_1_ovarian,Not Applicable,syn24181598,Not Applicable,Not Applicable,FALSE,FALSE,3d45a00d-0de2-4aa2-b3c8-621715548825 +DataFlow,HTAN HTAPP,FALSE,ScRNA-seqLevel4,single_cell_RNAseq_level_4_glioma,Not Applicable,syn24181599,Not Applicable,Not Applicable,FALSE,FALSE,ed310f97-0860-4c31-807a-b64c52d01d01 +DataFlow,HTAN HTAPP,FALSE,ScRNA-seqLevel4,single_cell_RNAseq_level_4_lung,Not Applicable,syn24181600,Not Applicable,Not Applicable,FALSE,FALSE,08a92aa9-d7ad-4d0f-aed9-db66290e5d76 +DataFlow,HTAN HTAPP,FALSE,ScRNA-seqLevel4,single_cell_RNAseq_level_4_breast,Not Applicable,syn24181601,Not Applicable,Not Applicable,FALSE,FALSE,077fe2ec-3d3c-40d0-b758-5e3347b201e0 +DataFlow,HTAN HTAPP,FALSE,ScRNA-seqLevel1,single_cell_RNAseq_level_1_sarcoma,Not Applicable,syn24181602,Not Applicable,Not Applicable,FALSE,FALSE,4de8d47b-7309-465d-83c4-015f07deda22 +DataFlow,HTAN HTAPP,FALSE,ScRNA-seqLevel2,single_cell_RNAseq_level_2_breast,Not Applicable,syn24181603,Not Applicable,Not Applicable,FALSE,FALSE,59c6e329-c2fb-4bc1-b0c2-5ad822f0d546 +DataFlow,HTAN HTAPP,FALSE,ScRNA-seqLevel2,single_cell_RNAseq_level_2_lung,Not Applicable,syn24181604,Not Applicable,Not Applicable,FALSE,FALSE,e21d48b6-556e-409b-ac5e-c7ed5415eb03 +DataFlow,HTAN HTAPP,FALSE,ScRNA-seqLevel2,single_cell_RNAseq_level_2_ovarian,Not Applicable,syn24181605,Not Applicable,Not Applicable,FALSE,FALSE,2caae8ea-b61d-4473-9a27-843e853035a3 +DataFlow,HTAN HTAPP,FALSE,ScRNA-seqLevel2,single_cell_RNAseq_level_2_neuroblastoma,Not Applicable,syn24181606,Not Applicable,Not Applicable,FALSE,FALSE,bb154738-84f7-4495-876c-8494ff71f83f +DataFlow,HTAN HTAPP,FALSE,ScRNA-seqLevel4,single_cell_RNAseq_level_4_ovarian,Not Applicable,syn24181607,Not Applicable,Not Applicable,FALSE,FALSE,54860292-93fa-4269-9b8e-90f586b12de9 +DataFlow,HTAN HTAPP,FALSE,ScRNA-seqLevel4,single_cell_RNAseq_level_4_neuroblastoma,Not Applicable,syn24181608,Not Applicable,Not Applicable,FALSE,FALSE,78dd672c-9404-4574-8917-2ce7210b209c +DataFlow,HTAN HTAPP,FALSE,BulkRNA-seqLevel2,bulk_RNAseq_level_2_lung,Not Applicable,syn24181609,Not Applicable,Not Applicable,FALSE,FALSE,fb90fdfe-f9d0-48ef-a92f-66c1586b1c81 +DataFlow,HTAN HTAPP,FALSE,ScRNA-seqLevel2,single_cell_RNAseq_level_2_sarcoma,Not Applicable,syn24181610,Not Applicable,Not Applicable,FALSE,FALSE,1a446bab-898e-469e-b774-8f49f542744c +DataFlow,HTAN HTAPP,FALSE,BulkWESLevel2,bulk_DNAseq_level_2_lung,Not Applicable,syn24181611,Not Applicable,Not Applicable,FALSE,FALSE,ec7ba721-73f1-438b-92e4-e3e673d8d6ee +DataFlow,HTAN HTAPP,FALSE,BulkRNA-seqLevel2,bulk_RNAseq_level_2_neuroblastoma,Not Applicable,syn24181612,Not Applicable,Not Applicable,FALSE,FALSE,63e69bf9-bb5b-41e3-8cb9-48bdceeb693a +DataFlow,HTAN HTAPP,FALSE,BulkRNA-seqLevel2,bulk_RNAseq_level_2_breast,Not Applicable,syn24181613,Not Applicable,Not Applicable,FALSE,FALSE,5fb6e603-244b-4a80-8be4-0e921ad1f790 +DataFlow,HTAN HTAPP,FALSE,BulkRNA-seqLevel2,bulk_RNAseq_level_2_ovarian,Not Applicable,syn24181614,Not Applicable,Not Applicable,FALSE,FALSE,6d8eb0d7-3e63-4d36-b09e-3f1ef0830f09 +DataFlow,HTAN HTAPP,FALSE,BulkWESLevel2,bulk_DNAseq_level_2_neuroblastoma,Not Applicable,syn24181615,Not Applicable,Not Applicable,FALSE,FALSE,cff4e831-853c-451d-aab6-fd1751aec983 +DataFlow,HTAN HTAPP,FALSE,BulkWESLevel2,bulk_DNAseq_level_2_breast,Not Applicable,syn24181616,Not Applicable,Not Applicable,FALSE,FALSE,49b96cb4-ac17-43d8-98b5-609f09fc8116 +DataFlow,HTAN HTAPP,FALSE,BulkRNA-seqLevel2,bulk_RNAseq_level_2_sarcoma,Not Applicable,syn24181617,Not Applicable,Not Applicable,FALSE,FALSE,886e967b-1a11-4d1c-a858-9be534475bff +DataFlow,HTAN HTAPP,FALSE,BulkWESLevel2,bulk_DNAseq_level_2_sarcoma,Not Applicable,syn24181618,Not Applicable,Not Applicable,FALSE,FALSE,d9bfe972-eabe-4147-9aaf-68908d1f355e +DataFlow,HTAN HTAPP,FALSE,ScRNA-seqLevel3,single_cell_RNAseq_level_3_breast,Not Applicable,syn24181619,Not Applicable,Not Applicable,FALSE,FALSE,32f0cf2d-620d-410b-9902-ce722356ea6f +DataFlow,HTAN HTAPP,FALSE,ScRNA-seqLevel3,single_cell_RNAseq_level_3_lung,Not Applicable,syn24181620,Not Applicable,Not Applicable,FALSE,FALSE,25aa6516-6d1e-4951-ab0c-6d25771e198a +DataFlow,HTAN HTAPP,FALSE,ScRNA-seqLevel3,single_cell_RNAseq_level_3_neuroblastoma,Not Applicable,syn24181621,Not Applicable,Not Applicable,FALSE,FALSE,74790465-0dfb-4f45-98a5-f104b96ad73d +DataFlow,HTAN HTAPP,FALSE,ScRNA-seqLevel3,single_cell_RNAseq_level_3_sarcoma,Not Applicable,syn24181622,Not Applicable,Not Applicable,FALSE,FALSE,0b5b2d2f-2dfb-4366-8d5e-01073211b845 +DataFlow,HTAN HTAPP,FALSE,ScRNA-seqLevel4,single_cell_RNAseq_level_4_sarcoma,Not Applicable,syn24181623,Not Applicable,Not Applicable,FALSE,FALSE,3e420134-54fa-4afd-a886-21eef9bfd903 +DataFlow,HTAN HTAPP,FALSE,BulkWESLevel2,bulk_DNAseq_level_2_ovarian,Not Applicable,syn24181624,Not Applicable,Not Applicable,FALSE,FALSE,86ee00f5-a07d-4a05-9e93-5086875b1a43 +DataFlow,HTAN HTAPP,FALSE,ScRNA-seqLevel2,single_cell_RNAseq_level_2_glioma,Not Applicable,syn24181625,Not Applicable,Not Applicable,FALSE,FALSE,671beacd-9582-4644-ac0c-ec2b07f10708 +DataFlow,HTAN HTAPP,FALSE,BulkWESLevel2,bulk_DNAseq_level_2_glioma,Not Applicable,syn24181626,Not Applicable,Not Applicable,FALSE,FALSE,d5bf7a10-d8ea-4605-94a9-0dd6da0c9896 +DataFlow,HTAN HTAPP,FALSE,BulkRNA-seqLevel2,bulk_RNAseq_level_2_glioma,Not Applicable,syn24181627,Not Applicable,Not Applicable,FALSE,FALSE,c8673232-d332-4ab3-b244-48e674b78f43 +DataFlow,HTAN HTAPP,FALSE,ScRNA-seqLevel3,single_cell_RNAseq_level_3_ovarian,Not Applicable,syn24181628,Not Applicable,Not Applicable,FALSE,FALSE,5741ce0f-19f5-4bb6-ac72-9778d87da054 +DataFlow,HTAN HTAPP,FALSE,ScRNA-seqLevel4,single_cell_RNAseq_level_4_colon,Not Applicable,syn24181630,Not Applicable,Not Applicable,FALSE,FALSE,6bbbe4ef-9309-4247-925e-16c84449bf8c +DataFlow,HTAN HTAPP,FALSE,Not Applicable,slide_seq_level_1_breast,Not Applicable,syn24205844,Not Applicable,Not Applicable,FALSE,FALSE,a8799fcb-a509-4517-803d-8a65e0c72eb7 +DataFlow,HTAN HTAPP,FALSE,Not Applicable,slide_seq_level_3_neuroblastoma,Not Applicable,syn24205846,Not Applicable,Not Applicable,FALSE,FALSE,1da7ff09-dc88-4c31-b3b0-ce5d68719b20 +DataFlow,HTAN HTAPP,FALSE,Not Applicable,slide_seq_level_2_breast,Not Applicable,syn24205848,Not Applicable,Not Applicable,FALSE,FALSE,111d06f6-4ce6-429c-8f77-84acb4d5fbf5 +DataFlow,HTAN HTAPP,FALSE,Not Applicable,slide_seq_level_1_neuroblastoma,Not Applicable,syn24205849,Not Applicable,Not Applicable,FALSE,FALSE,bd64dc38-e325-4582-847b-9757fe558670 +DataFlow,HTAN HTAPP,FALSE,Not Applicable,slide_seq_level_3_breast,Not Applicable,syn24205852,Not Applicable,Not Applicable,FALSE,FALSE,9f47eb6c-d4a9-4f26-a54e-7a34cc9e1fde +DataFlow,HTAN HTAPP,FALSE,Not Applicable,slide_seq_level_2_neuroblastoma,Not Applicable,syn24205853,Not Applicable,Not Applicable,FALSE,FALSE,e7ea6a5f-c42c-4f2f-822a-42f8c650bd46 +DataFlow,HTAN HTAPP,FALSE,Demographics,clinical_demographics_colon,Not Applicable,syn24615241,Not Applicable,Not Applicable,FALSE,FALSE,7239ac06-3962-4551-b40f-bc709f59dca9 +DataFlow,HTAN HTAPP,FALSE,Exposure,clinical_exposure_colon,Not Applicable,syn24615243,Not Applicable,Not Applicable,FALSE,FALSE,0750d0b3-ffe4-4d38-9204-9272cb3934f8 +DataFlow,HTAN HTAPP,FALSE,Diagnosis,clinical_diagnosis_colon,Not Applicable,syn24615244,Not Applicable,Not Applicable,FALSE,FALSE,2becf705-c056-4e39-86ce-f6ad6c03a46a +DataFlow,HTAN HTAPP,FALSE,Not Applicable,clinical_family_history_colon,Not Applicable,syn24615245,Not Applicable,Not Applicable,FALSE,FALSE,2acb8635-4454-4104-aaab-49bac846d503 +DataFlow,HTAN HTAPP,FALSE,FollowUp,clinical_follow_up_colon,Not Applicable,syn24615246,Not Applicable,Not Applicable,FALSE,FALSE,9f1381c6-eb22-4723-9403-009a70de768c +DataFlow,HTAN HTAPP,FALSE,Therapy,clinical_therapy_colon,Not Applicable,syn24615247,Not Applicable,Not Applicable,FALSE,FALSE,4b54ffd8-2a07-463e-b058-60c85d8c280c +DataFlow,HTAN HTAPP,FALSE,Not Applicable,archive,Not Applicable,syn24827250,Not Applicable,Not Applicable,FALSE,FALSE,4c803aca-f819-4e12-a374-838f47cd0798 +DataFlow,HTAN HTAPP,FALSE,MolecularTest,clinical_molecular_test_colon,Not Applicable,syn24860582,Not Applicable,Not Applicable,FALSE,FALSE,04183f2c-230a-44ff-a61a-398313eef634 +DataFlow,HTAN HTAPP,FALSE,ImagingLevel2,h_and_e_visium_lung,Not Applicable,syn24862457,Not Applicable,Not Applicable,FALSE,FALSE,eb785574-0394-43c3-a05c-402b21c87169 +DataFlow,HTAN HTAPP,FALSE,ImagingLevel2,h_and_e_mibi_neuroblastoma,Not Applicable,syn24862458,Not Applicable,Not Applicable,FALSE,FALSE,e592b619-3d1c-48e5-8d1e-51c42a9c803e +DataFlow,HTAN HTAPP,FALSE,ImagingLevel2,h_and_e_visium_ovarian,Not Applicable,syn24862462,Not Applicable,Not Applicable,FALSE,FALSE,16767a9c-b28d-445e-a6f4-f802c35c70f8 +DataFlow,HTAN HTAPP,FALSE,Not Applicable,clinical_tier_2_colon,Not Applicable,syn24873770,Not Applicable,Not Applicable,FALSE,FALSE,c9c23631-026a-4ed7-a8d0-387d6108b8d3 +DataFlow,HTAN HTAPP,FALSE,Not Applicable,clinical_tier_3_breast,Not Applicable,syn24873771,Not Applicable,Not Applicable,FALSE,FALSE,2490c640-6ad0-44d0-8da5-7e8999bc43a8 +DataFlow,HTAN HTAPP,FALSE,BrainCancerTier3,clinical_tier_3_glioma,Not Applicable,syn24873772,Not Applicable,Not Applicable,FALSE,FALSE,eaee9546-1e12-4ac6-bdaf-ab994db22cc1 +DataFlow,HTAN HTAPP,FALSE,Not Applicable,clinical_tier_3_colon,Not Applicable,syn24873773,Not Applicable,Not Applicable,FALSE,FALSE,35a6cbad-58b6-4a6b-a886-19b17914571f +DataFlow,HTAN HTAPP,FALSE,LungCancerTier3,clinical_tier_3_lung,Not Applicable,syn24873774,Not Applicable,Not Applicable,FALSE,FALSE,3e5f1e77-3e3d-4c57-b3bb-084defcb1244 +DataFlow,HTAN HTAPP,FALSE,Not Applicable,clinical_tier_3_sarcoma,Not Applicable,syn24873775,Not Applicable,Not Applicable,FALSE,FALSE,f39e507e-0c2f-4147-8ed3-c62324142fa6 +DataFlow,HTAN HTAPP,FALSE,Not Applicable,clinical_tier_3_ovarian,Not Applicable,syn24873776,Not Applicable,Not Applicable,FALSE,FALSE,629b44ef-b6e4-45f6-8418-d1a24c3ca65c +DataFlow,HTAN HTAPP,FALSE,Not Applicable,clinical_tier_3_neuroblastoma,Not Applicable,syn24873777,Not Applicable,Not Applicable,FALSE,FALSE,7d6107f8-13ba-4d3d-b8bd-f5b969425231 +DataFlow,HTAN HTAPP,FALSE,Biospecimen,biospecimen_colon,Not Applicable,syn25117237,Not Applicable,Not Applicable,FALSE,FALSE,e5d22f41-1db8-42c4-bdb9-26d9ce2080d9 +DataFlow,HTAN HTAPP,FALSE,Not Applicable,additional_metadata,Not Applicable,syn25122683,Not Applicable,Not Applicable,FALSE,FALSE,72bcace3-b95c-48a1-8e1b-d39b05fb34c7 +DataFlow,HTAN HTAPP,FALSE,OtherAssay,merfish_auxiliary_files,Not Applicable,syn25485809,Not Applicable,Not Applicable,FALSE,FALSE,8d47880b-f6ad-430e-8489-deaa84a6c8ad +DataFlow,HTAN HTAPP,FALSE,OtherAssay,mibi_auxiliary_files,Not Applicable,syn25544054,Not Applicable,Not Applicable,FALSE,FALSE,cc178eb7-47ba-465f-8ed4-47bba2486b62 +DataFlow,HTAN HTAPP,FALSE,OtherAssay,codex_auxiliary_files,Not Applicable,syn25556417,Not Applicable,Not Applicable,FALSE,FALSE,817022f4-f4a7-434b-a751-5c89336be935 +DataFlow,HTAN HTAPP,FALSE,Not Applicable,codex_level_2_neuroblastoma,Not Applicable,syn25571195,Not Applicable,Not Applicable,FALSE,FALSE,add155d8-4761-42f7-92e7-8cd9befd8071 +DataFlow,HTAN HTAPP,FALSE,Biospecimen,biospecimen_breast,Not Applicable,syn25585682,Not Applicable,Not Applicable,FALSE,FALSE,d4ba4eb6-4440-4ac3-9202-4cad3c2da393 +DataFlow,HTAN HTAPP,FALSE,Biospecimen,biospecimen_glioma,Not Applicable,syn25585683,Not Applicable,Not Applicable,FALSE,FALSE,1d29f478-1b2c-40f1-9e25-63e50e43d653 +DataFlow,HTAN HTAPP,FALSE,Biospecimen,biospecimen_lung,Not Applicable,syn25585684,Not Applicable,Not Applicable,FALSE,FALSE,5443fc6b-3faf-42f2-941c-694a43d2d4ef +DataFlow,HTAN HTAPP,FALSE,Biospecimen,biospecimen_neuroblastoma,Not Applicable,syn25585685,Not Applicable,Not Applicable,FALSE,FALSE,c8b5b8b0-c7ed-4197-a500-a6a571f9e9b2 +DataFlow,HTAN HTAPP,FALSE,Biospecimen,biospecimen_sarcoma,Not Applicable,syn25585687,Not Applicable,Not Applicable,FALSE,FALSE,952ff9b6-d8d5-4e6d-903e-27a00ab7e91e +DataFlow,HTAN HTAPP,FALSE,Demographics,clinical_demographics_breast,Not Applicable,syn25585688,Not Applicable,Not Applicable,FALSE,FALSE,8597946f-6b6d-40a5-a868-dd795442becb +DataFlow,HTAN HTAPP,FALSE,Demographics,clinical_demographics_glioma,Not Applicable,syn25585689,Not Applicable,Not Applicable,FALSE,FALSE,ccee59ff-8f56-4bd4-b539-e5f01dce497c +DataFlow,HTAN HTAPP,FALSE,Demographics,clinical_demographics_lung,Not Applicable,syn25585690,Not Applicable,Not Applicable,FALSE,FALSE,46efb485-7d47-4aad-bad4-93780a3347ca +DataFlow,HTAN HTAPP,FALSE,Demographics,clinical_demographics_neuroblastoma,Not Applicable,syn25585691,Not Applicable,Not Applicable,FALSE,FALSE,cf87946a-d34d-411b-b166-9bc3bc353840 +DataFlow,HTAN HTAPP,FALSE,Demographics,clinical_demographics_sarcoma,Not Applicable,syn25585693,Not Applicable,Not Applicable,FALSE,FALSE,8b710483-9afa-4de0-acfe-02333c9e81d6 +DataFlow,HTAN HTAPP,FALSE,Diagnosis,clinical_diagnosis_breast,Not Applicable,syn25585694,Not Applicable,Not Applicable,FALSE,FALSE,b22d2e54-cb37-47e4-8da7-4d78d36c40e0 +DataFlow,HTAN HTAPP,FALSE,Diagnosis,clinical_diagnosis_glioma,Not Applicable,syn25585695,Not Applicable,Not Applicable,FALSE,FALSE,f98f21fe-87bc-4a26-8e56-6c4b5bdc86ae +DataFlow,HTAN HTAPP,FALSE,Diagnosis,clinical_diagnosis_lung,Not Applicable,syn25585696,Not Applicable,Not Applicable,FALSE,FALSE,6c68f9f6-5d0d-4b0e-8c89-c07977c14f75 +DataFlow,HTAN HTAPP,FALSE,Diagnosis,clinical_diagnosis_neuroblastoma,Not Applicable,syn25585697,Not Applicable,Not Applicable,FALSE,FALSE,509fc2f8-d105-4e20-a40c-ef401a2b8706 +DataFlow,HTAN HTAPP,FALSE,Diagnosis,clinical_diagnosis_sarcoma,Not Applicable,syn25585699,Not Applicable,Not Applicable,FALSE,FALSE,31ea30a0-c835-4ae2-a14e-a070ee06d123 +DataFlow,HTAN HTAPP,FALSE,Exposure,clinical_exposure_breast,Not Applicable,syn25585700,Not Applicable,Not Applicable,FALSE,FALSE,043f6325-ae5f-4fa5-ae1b-427f57e7fe20 +DataFlow,HTAN HTAPP,FALSE,Exposure,clinical_exposure_glioma,Not Applicable,syn25585701,Not Applicable,Not Applicable,FALSE,FALSE,15f2776e-2509-4020-af02-7048d2c2e518 +DataFlow,HTAN HTAPP,FALSE,Exposure,clinical_exposure_lung,Not Applicable,syn25585702,Not Applicable,Not Applicable,FALSE,FALSE,780eeb54-1a14-4bf7-886d-f652a208cb64 +DataFlow,HTAN HTAPP,FALSE,Exposure,clinical_exposure_neuroblastoma,Not Applicable,syn25585703,Not Applicable,Not Applicable,FALSE,FALSE,fa79c192-aead-4ffc-a290-f50beaf6ec21 +DataFlow,HTAN HTAPP,FALSE,Exposure,clinical_exposure_sarcoma,Not Applicable,syn25585705,Not Applicable,Not Applicable,FALSE,FALSE,3c580e03-e247-4bb7-a265-6d400950997d +DataFlow,HTAN HTAPP,FALSE,FamilyHistory,clinical_family_history_breast,Not Applicable,syn25585706,Not Applicable,Not Applicable,FALSE,FALSE,2c1d877c-03a1-4b10-be32-d6a8509069ac +DataFlow,HTAN HTAPP,FALSE,FamilyHistory,clinical_family_history_glioma,Not Applicable,syn25585707,Not Applicable,Not Applicable,FALSE,FALSE,0b8191f8-9c73-4080-8836-47ca937765a5 +DataFlow,HTAN HTAPP,FALSE,FamilyHistory,clinical_family_history_lung,Not Applicable,syn25585709,Not Applicable,Not Applicable,FALSE,FALSE,0b39318a-e9a4-41b1-91bf-962a3267c150 +DataFlow,HTAN HTAPP,FALSE,FamilyHistory,clinical_family_history_neuroblastoma,Not Applicable,syn25585710,Not Applicable,Not Applicable,FALSE,FALSE,5ede29ce-f5e7-4238-85c3-7368ab822ece +DataFlow,HTAN HTAPP,FALSE,FamilyHistory,clinical_family_history_sarcoma,Not Applicable,syn25585712,Not Applicable,Not Applicable,FALSE,FALSE,df39061d-b5af-4e75-99c2-43c630776e9b +DataFlow,HTAN HTAPP,FALSE,FollowUp,clinical_follow_up_breast,Not Applicable,syn25585713,Not Applicable,Not Applicable,FALSE,FALSE,1676c523-3e6c-47ff-9371-5d64011d588d +DataFlow,HTAN HTAPP,FALSE,FollowUp,clinical_follow_up_glioma,Not Applicable,syn25585714,Not Applicable,Not Applicable,FALSE,FALSE,b7b772a4-4bb0-45bd-97ca-fb700d191284 +DataFlow,HTAN HTAPP,FALSE,FollowUp,clinical_follow_up_lung,Not Applicable,syn25585715,Not Applicable,Not Applicable,FALSE,FALSE,2ddc0d5d-6b68-4461-bab3-ccbb26560064 +DataFlow,HTAN HTAPP,FALSE,FollowUp,clinical_follow_up_neuroblastoma,Not Applicable,syn25585716,Not Applicable,Not Applicable,FALSE,FALSE,e9ff27da-88a2-465c-a069-fb1143c8a54d +DataFlow,HTAN HTAPP,FALSE,FollowUp,clinical_follow_up_sarcoma,Not Applicable,syn25585718,Not Applicable,Not Applicable,FALSE,FALSE,ef80afa7-5ee1-4593-9c12-5e87fcf923f1 +DataFlow,HTAN HTAPP,FALSE,Therapy,clinical_therapy_breast,Not Applicable,syn25585719,Not Applicable,Not Applicable,FALSE,FALSE,01bf9acf-2cb8-4630-a3bd-e5c4fb50db6a +DataFlow,HTAN HTAPP,FALSE,Not Applicable,clinical_therapy_glioma,Not Applicable,syn25585720,Not Applicable,Not Applicable,FALSE,FALSE,fa8f9163-01dd-4d6e-8178-92241948a93e +DataFlow,HTAN HTAPP,FALSE,Therapy,clinical_therapy_lung,Not Applicable,syn25585721,Not Applicable,Not Applicable,FALSE,FALSE,ba937254-50ef-4ff8-ad8f-fe0ba3924077 +DataFlow,HTAN HTAPP,FALSE,Therapy,clinical_therapy_neuroblastoma,Not Applicable,syn25585722,Not Applicable,Not Applicable,FALSE,FALSE,6cd52d14-cab4-4e36-973c-719998ad5e72 +DataFlow,HTAN HTAPP,FALSE,Therapy,clinical_therapy_sarcoma,Not Applicable,syn25585724,Not Applicable,Not Applicable,FALSE,FALSE,b6ac5a7f-a356-481f-bccc-25fc8e573c2e +DataFlow,HTAN HTAPP,FALSE,Not Applicable,clinical_molecular_test_breast,Not Applicable,syn25585725,Not Applicable,Not Applicable,FALSE,FALSE,44f7b6d5-664d-4abf-a107-793f3e38a19b +DataFlow,HTAN HTAPP,FALSE,MolecularTest,clinical_molecular_test_glioma,Not Applicable,syn25585726,Not Applicable,Not Applicable,FALSE,FALSE,3367b74d-da79-4405-855d-49b46fe8f6c1 +DataFlow,HTAN HTAPP,FALSE,Not Applicable,clinical_molecular_test_lung,Not Applicable,syn25585727,Not Applicable,Not Applicable,FALSE,FALSE,c86f3bab-6404-4e44-8652-f600def62335 +DataFlow,HTAN HTAPP,FALSE,MolecularTest,clinical_molecular_test_neuroblastoma,Not Applicable,syn25585728,Not Applicable,Not Applicable,FALSE,FALSE,3aa8e7eb-7bcc-4209-8c65-530aed3b500f +DataFlow,HTAN HTAPP,FALSE,Not Applicable,clinical_molecular_test_sarcoma,Not Applicable,syn25585730,Not Applicable,Not Applicable,FALSE,FALSE,139c08d8-f358-4297-b87e-effe9fff846a +DataFlow,HTAN HTAPP,FALSE,Not Applicable,clinical_tier_2_breast,Not Applicable,syn25585731,Not Applicable,Not Applicable,FALSE,FALSE,feebbad1-ccfc-4b93-9a51-90c44da21d49 +DataFlow,HTAN HTAPP,FALSE,Not Applicable,clinical_tier_2_glioma,Not Applicable,syn25585732,Not Applicable,Not Applicable,FALSE,FALSE,06f5d4d9-124f-40c6-93e6-e49c3b304dc1 +DataFlow,HTAN HTAPP,FALSE,ClinicalDataTier2,clinical_tier_2_lung,Not Applicable,syn25585733,Not Applicable,Not Applicable,FALSE,FALSE,8a89a247-e130-4e95-9d19-afebb46bde30 +DataFlow,HTAN HTAPP,FALSE,Not Applicable,clinical_tier_2_neuroblastoma,Not Applicable,syn25585734,Not Applicable,Not Applicable,FALSE,FALSE,e3082b8c-6547-4cf9-8cb9-18cbacbd8ff1 +DataFlow,HTAN HTAPP,FALSE,Not Applicable,clinical_tier_2_sarcoma,Not Applicable,syn25585736,Not Applicable,Not Applicable,FALSE,FALSE,df15f98d-4775-427a-a331-474cc3ddac21 +DataFlow,HTAN HTAPP,FALSE,Biospecimen,biospecimen_ovarian,Not Applicable,syn25585757,Not Applicable,Not Applicable,FALSE,FALSE,2f675421-6142-48e9-885d-3c0d7316847c +DataFlow,HTAN HTAPP,FALSE,Demographics,clinical_demographics_ovarian,Not Applicable,syn25585758,Not Applicable,Not Applicable,FALSE,FALSE,ec84ba26-a452-4722-b69e-735ba0071cf2 +DataFlow,HTAN HTAPP,FALSE,Diagnosis,clinical_diagnosis_ovarian,Not Applicable,syn25585760,Not Applicable,Not Applicable,FALSE,FALSE,43410d3a-026b-4934-9dc9-ead6d2976ee6 +DataFlow,HTAN HTAPP,FALSE,Exposure,clinical_exposure_ovarian,Not Applicable,syn25585761,Not Applicable,Not Applicable,FALSE,FALSE,59bf9be7-a9ab-4491-a66a-86456b916a37 +DataFlow,HTAN HTAPP,FALSE,FamilyHistory,clinical_family_history_ovarian,Not Applicable,syn25585762,Not Applicable,Not Applicable,FALSE,FALSE,c735e717-2d03-42d2-b2fc-d8a77e7e4ee0 +DataFlow,HTAN HTAPP,FALSE,FollowUp,clinical_follow_up_ovarian,Not Applicable,syn25585764,Not Applicable,Not Applicable,FALSE,FALSE,6b8f708a-e5ce-4c00-a28a-48fa733ebbcb +DataFlow,HTAN HTAPP,FALSE,Therapy,clinical_therapy_ovarian,Not Applicable,syn25585766,Not Applicable,Not Applicable,FALSE,FALSE,9159b83a-74f9-4bf7-becd-0477463c82e2 +DataFlow,HTAN HTAPP,FALSE,Not Applicable,clinical_molecular_test_ovarian,Not Applicable,syn25585767,Not Applicable,Not Applicable,FALSE,FALSE,2228ef46-6557-465a-9380-5ddf1659c386 +DataFlow,HTAN HTAPP,FALSE,Not Applicable,clinical_tier_2_ovarian,Not Applicable,syn25585768,Not Applicable,Not Applicable,FALSE,FALSE,f1f7c5b5-2dea-4dac-b4f4-9b6515275425 +DataFlow,HTAN HTAPP,FALSE,Not Applicable,minerva,Not Applicable,syn25586754,Not Applicable,Not Applicable,FALSE,FALSE,ba5819b2-2d93-4068-9563-1001474f6eb5 +DataFlow,HTAN HTAPP,FALSE,Not Applicable,exseq_auxiliary_files,Not Applicable,syn25678408,Not Applicable,Not Applicable,FALSE,FALSE,95c1bc55-8ea6-4863-9be3-9344b2a83002 +DataFlow,HTAN HTAPP,FALSE,OtherAssay,exseq_level_4,Not Applicable,syn25757446,Not Applicable,Not Applicable,FALSE,FALSE,03b6d130-faf4-4b79-b2b7-2cf662b44aad +DataFlow,HTAN HTAPP,FALSE,OtherAssay,exseq_level_5,Not Applicable,syn25757449,Not Applicable,Not Applicable,FALSE,FALSE,702d5c31-6598-47d0-a61e-1c8953d08674 +DataFlow,HTAN HTAPP,FALSE,Not Applicable,codex_level_3_neuroblastoma,Not Applicable,syn25843119,Not Applicable,Not Applicable,FALSE,FALSE,0f942b01-ffbb-4c26-90f3-e7ff83665445 +DataFlow,HTAN HTAPP,FALSE,OtherAssay,codex_auxiliary_files_neuroblastoma,Not Applicable,syn25843156,Not Applicable,Not Applicable,FALSE,FALSE,957c7ef9-b692-4fc4-958f-76c1632d571f +DataFlow,HTAN HTAPP,FALSE,ImagingLevel2,exseq_level_1,Not Applicable,syn25843550,Not Applicable,Not Applicable,FALSE,FALSE,0a9208d8-fe3c-4f82-85ea-86a43de3c57a +DataFlow,HTAN HTAPP,FALSE,ImagingLevel2,h_and_e_multi_assay_breast,Not Applicable,syn25882266,Not Applicable,Not Applicable,FALSE,FALSE,338a53c3-2e04-4905-b073-0bcba66a5dc1 +DataFlow,HTAN HTAPP,FALSE,ImagingLevel2,h_and_e_multiassay_neuroblastoma,Not Applicable,syn25882295,Not Applicable,Not Applicable,FALSE,FALSE,36525fbf-8a01-42fa-89bb-7733db04318d +DataFlow,HTAN HTAPP,FALSE,ImagingLevel2,h_and_e_mibi_breast,Not Applicable,syn25882316,Not Applicable,Not Applicable,FALSE,FALSE,4623e8d6-8fd2-454a-bc44-1c0a31abf45a +DataFlow,HTAN HTAPP,FALSE,Not Applicable,visium_level_1_ovarian,Not Applicable,syn25997522,Not Applicable,Not Applicable,FALSE,FALSE,32bed66f-a8d9-470e-86af-d9da9aa4108d +DataFlow,HTAN HTAPP,FALSE,Not Applicable,visium_level_2_ovarian,Not Applicable,syn25997523,Not Applicable,Not Applicable,FALSE,FALSE,6b44b8bb-4e3b-49c8-b813-f043e41cfba2 +DataFlow,HTAN HTAPP,FALSE,Not Applicable,visium_level_3_ovarian,Not Applicable,syn25997524,Not Applicable,Not Applicable,FALSE,FALSE,a2b223aa-7548-43e6-9bc3-ceea6fca7d48 +DataFlow,HTAN HTAPP,FALSE,Not Applicable,visium_level_1_lung,Not Applicable,syn25997525,Not Applicable,Not Applicable,FALSE,FALSE,2f3550d6-e937-42d4-b720-90718ede38c0 +DataFlow,HTAN HTAPP,FALSE,Not Applicable,visium_level_2_lung,Not Applicable,syn25997526,Not Applicable,Not Applicable,FALSE,FALSE,997414b9-f588-49c8-8537-90599feaa1e3 +DataFlow,HTAN HTAPP,FALSE,Not Applicable,visium_level_3_lung,Not Applicable,syn25997527,Not Applicable,Not Applicable,FALSE,FALSE,ce6da5b0-9879-454d-b9d0-7c31c4e588e9 +DataFlow,HTAN HTAPP,FALSE,ScRNA-seqLevel1,single_cell_RNAseq_level_1_PML,Not Applicable,syn26002150,Not Applicable,Not Applicable,FALSE,FALSE,3d7bac54-0e7b-488c-89ee-986ae112090f +DataFlow,HTAN HTAPP,FALSE,ScRNA-seqLevel2,single_cell_RNAseq_level_2_PML,Not Applicable,syn26002153,Not Applicable,Not Applicable,FALSE,FALSE,e548c11b-291c-4c2c-81bf-10f8aff5c8d2 +DataFlow,HTAN HTAPP,FALSE,ScRNA-seqLevel3,single_cell_RNAseq_level_3_PML,Not Applicable,syn26002156,Not Applicable,Not Applicable,FALSE,FALSE,5d5dbd85-9086-4adb-a8b1-00014844faee +DataFlow,HTAN HTAPP,FALSE,OtherAssay,mibi_level_3_segmented_cell_coordinates,Not Applicable,syn26014990,Not Applicable,Not Applicable,FALSE,FALSE,137e45ab-0b18-4e0e-90bf-72b78e95094f +DataFlow,HTAN HTAPP,FALSE,OtherAssay,data_integration_MBC,Not Applicable,syn26033679,Not Applicable,Not Applicable,FALSE,FALSE,b14d1313-3e2e-45cc-9b7f-b17fb55192e0 +DataFlow,HTAN HTAPP,FALSE,Biospecimen,biospecimen_PML,Not Applicable,syn26125064,Not Applicable,Not Applicable,FALSE,FALSE,020d7dea-00de-4c51-a9bf-c16e8c1d4f15 +DataFlow,HTAN HTAPP,FALSE,Demographics,clinical_demographics_PML,Not Applicable,syn26125065,Not Applicable,Not Applicable,FALSE,FALSE,6077ef04-c761-4988-af3b-847911139c61 +DataFlow,HTAN HTAPP,FALSE,Diagnosis,clinical_diagnosis_PML,Not Applicable,syn26125066,Not Applicable,Not Applicable,FALSE,FALSE,fce7a436-e43d-4d73-a02b-8e4573938982 +DataFlow,HTAN HTAPP,FALSE,Exposure,clinical_exposure_PML,Not Applicable,syn26125067,Not Applicable,Not Applicable,FALSE,FALSE,2d95d1d4-4cab-4764-af51-eb9f02cf23f2 +DataFlow,HTAN HTAPP,FALSE,FamilyHistory,clinical_family_history_PML,Not Applicable,syn26125068,Not Applicable,Not Applicable,FALSE,FALSE,4f25e2fa-750c-40ef-b668-b0c91eebb7d5 +DataFlow,HTAN HTAPP,FALSE,FollowUp,clinical_follow_up_PML,Not Applicable,syn26125069,Not Applicable,Not Applicable,FALSE,FALSE,007a6cf7-66b0-44a5-a4a2-0669c67cff29 +DataFlow,HTAN HTAPP,FALSE,Therapy,clinical_therapy_PML,Not Applicable,syn26125070,Not Applicable,Not Applicable,FALSE,FALSE,dff737d3-8c90-4417-9dbc-3e516ddaac7a +DataFlow,HTAN HTAPP,FALSE,MolecularTest,clinical_molecular_test_PML,Not Applicable,syn26125071,Not Applicable,Not Applicable,FALSE,FALSE,424812a0-5311-4bbc-9d46-78ce86be486a +DataFlow,HTAN HTAPP,FALSE,ClinicalDataTier2,clinical_tier_2_PML,Not Applicable,syn26125072,Not Applicable,Not Applicable,FALSE,FALSE,9e3a31db-2bf3-4657-af21-104867d24d46 +DataFlow,HTAN HTAPP,FALSE,OtherAssay,data_integration_neuroblastoma,Not Applicable,syn26126863,Not Applicable,Not Applicable,FALSE,FALSE,315ae038-e6f8-46cd-a2bc-17b1a495d745 +DataFlow,HTAN HTAPP,FALSE,Not Applicable,bulk_DNAseq_level_1_metadata,Not Applicable,syn26376477,Not Applicable,Not Applicable,FALSE,FALSE,7f7cea66-449c-4933-8ded-12b6eeb2cfb0 +DataFlow,HTAN HTAPP,FALSE,Not Applicable,bulk_RNAseq_level_1_metadata,Not Applicable,syn26376488,Not Applicable,Not Applicable,FALSE,FALSE,f3081a61-1612-4a8e-80f0-028c99d4a060 +DataFlow,HTAN HTAPP,FALSE,Not Applicable,HTAPP Documents,Not Applicable,syn26560266,Not Applicable,Not Applicable,FALSE,FALSE,4817fa77-0a8b-4558-86a6-973cdd8c70ad +DataFlow,HTAN HTAPP,FALSE,Not Applicable,clinical_tier_3_breast_precancer_and_cancer,Not Applicable,syn27764067,Not Applicable,Not Applicable,FALSE,FALSE,e43fd671-eef0-4655-b925-66c093d7165b +DataFlow,HTAN HTAPP,FALSE,Not Applicable,h5ad_cellxgene,Not Applicable,syn50919108,Not Applicable,Not Applicable,FALSE,FALSE,1950bcd3-8952-4d42-b7b2-00a9c18676a6 +DataFlow,HTAN MSK,FALSE,ScRNA-seqLevel2,single_cell_RNAseq_level_2,Not Applicable,syn23591071,Not Applicable,Not Applicable,FALSE,FALSE,e2b5de09-1485-4490-b9af-aa0c6d750983 +DataFlow,HTAN MSK,FALSE,ScRNA-seqLevel3,single_cell_RNAseq_level_3,Not Applicable,syn23591072,Not Applicable,Not Applicable,FALSE,FALSE,c673687a-4eb0-4b7b-80a6-761d285e1626 +DataFlow,HTAN MSK,FALSE,ScRNA-seqLevel4,single_cell_RNAseq_level_4,Not Applicable,syn23591073,Not Applicable,Not Applicable,FALSE,FALSE,49ea051e-657e-4775-8fe1-9856bfe3c16e +DataFlow,HTAN MSK,FALSE,Not Applicable,mIHC_level_1,Not Applicable,syn23591178,Not Applicable,Not Applicable,FALSE,FALSE,f4c10158-6557-4735-900f-7812003e1b74 +DataFlow,HTAN MSK,FALSE,Not Applicable,mIHC_level_2,Not Applicable,syn23591179,Not Applicable,Not Applicable,FALSE,FALSE,d175d8e1-630f-47f3-a9f5-ca1a398c402c +DataFlow,HTAN MSK,FALSE,Not Applicable,mIHC_level_4,Not Applicable,syn23591180,Not Applicable,Not Applicable,FALSE,FALSE,74670f71-d1df-4169-83fa-0c366916ca04 +DataFlow,HTAN MSK,FALSE,Not Applicable,mIHC_level_3,Not Applicable,syn23591181,Not Applicable,Not Applicable,FALSE,FALSE,95fed1a1-644d-4a84-9b70-a98dbb650f8c +DataFlow,HTAN MSK,FALSE,Not Applicable,mIHC_level_5,Not Applicable,syn23591182,Not Applicable,Not Applicable,FALSE,FALSE,65abebb0-dbf0-4686-9aad-b4eb26494d6e +DataFlow,HTAN MSK,FALSE,ScRNA-seqLevel1,single_cell_RNAseq_level_1,Not Applicable,syn23593727,Not Applicable,Not Applicable,FALSE,FALSE,ee921e7a-6c83-4aa4-9e52-69f8b223388f +DataFlow,HTAN MSK,FALSE,Demographics,clinical_demographics,Not Applicable,syn23633926,Not Applicable,Not Applicable,FALSE,FALSE,769a2491-4449-4ed5-b696-80dda0db3ec5 +DataFlow,HTAN MSK,FALSE,Diagnosis,clinical_diagnosis,Not Applicable,syn23633927,Not Applicable,Not Applicable,FALSE,FALSE,96542174-8b9f-452e-9d7f-1938d8ee50a5 +DataFlow,HTAN MSK,FALSE,Exposure,clinical_exposure,Not Applicable,syn23633928,Not Applicable,Not Applicable,FALSE,FALSE,69b4e8aa-261c-49ea-a472-1ec79b95f980 +DataFlow,HTAN MSK,FALSE,FamilyHistory,clinical_family_history,Not Applicable,syn23633929,Not Applicable,Not Applicable,FALSE,FALSE,baa2b528-bba3-41fd-8711-9bca1b19be1b +DataFlow,HTAN MSK,FALSE,FollowUp,clinical_follow_up,Not Applicable,syn23633930,Not Applicable,Not Applicable,FALSE,FALSE,3ca09d26-5dae-4f73-8452-4d59e1fdee72 +DataFlow,HTAN MSK,FALSE,Therapy,clinical_therapy,Not Applicable,syn23633931,Not Applicable,Not Applicable,FALSE,FALSE,d170f953-4474-4f89-b81f-555647796292 +DataFlow,HTAN MSK,FALSE,MolecularTest,clinical_molecular_test,Not Applicable,syn23633932,Not Applicable,Not Applicable,FALSE,FALSE,ee54f5b6-0f21-43d1-8dce-c3cb1a92acc6 +DataFlow,HTAN MSK,FALSE,Biospecimen,biospecimen,Not Applicable,syn24615234,Not Applicable,Not Applicable,FALSE,FALSE,0d3e1362-2dab-41f4-8d47-dc0ded1ffe2e +DataFlow,HTAN MSK,FALSE,Not Applicable,clinical_tier_2,Not Applicable,syn24873796,Not Applicable,Not Applicable,FALSE,FALSE,81903076-d9f5-45e5-8c66-9c950bd7430c +DataFlow,HTAN MSK,FALSE,Not Applicable,clinical_tier_3_lung,Not Applicable,syn24873797,Not Applicable,Not Applicable,FALSE,FALSE,133b5fef-e49b-4322-b5e2-e583ad9b9458 +DataFlow,HTAN MSK,FALSE,Not Applicable,clinical_tier_3_pancreatic,Not Applicable,syn24873798,Not Applicable,Not Applicable,FALSE,FALSE,2d1c63c6-0758-4c2a-8392-6e8ae19ae9b2 +DataFlow,HTAN MSK,FALSE,Not Applicable,minerva,Not Applicable,syn25472272,Not Applicable,Not Applicable,FALSE,FALSE,c8db9cdc-c0cc-4df7-99a7-952d68b9f100 +DataFlow,HTAN MSK,FALSE,Not Applicable,mibi_level_1,Not Applicable,syn26321090,Not Applicable,Not Applicable,FALSE,FALSE,e8725cef-9851-4d9f-b306-d68cb8ca64f3 +DataFlow,HTAN MSK,FALSE,ImagingLevel2,mibi_level_2,Not Applicable,syn26321091,Not Applicable,Not Applicable,FALSE,FALSE,50bbf2c3-5c1f-45bb-bac9-5a09b90b60ea +DataFlow,HTAN MSK,FALSE,OtherAssay,mibi_level_3,Not Applicable,syn26321092,Not Applicable,Not Applicable,FALSE,FALSE,4dc311f2-1394-4141-ba82-5357c3e9d3cb +DataFlow,HTAN MSK,FALSE,OtherAssay,mibi_level_4,Not Applicable,syn26321093,Not Applicable,Not Applicable,FALSE,FALSE,79778db3-06ec-439f-abec-822ee4039526 +DataFlow,HTAN MSK,FALSE,Not Applicable,mibi_level_5,Not Applicable,syn26321094,Not Applicable,Not Applicable,FALSE,FALSE,88f93103-1448-4403-bcbd-d702754bbbfa +DataFlow,HTAN MSK,FALSE,Not Applicable,vectra_level_2,Not Applicable,syn27025191,Not Applicable,Not Applicable,FALSE,FALSE,98cfbc6d-dc91-4f63-82c9-4a5d3db505d4 +DataFlow,HTAN MSK,FALSE,Not Applicable,vectra_level_3,Not Applicable,syn27025192,Not Applicable,Not Applicable,FALSE,FALSE,4cd40f5a-c8a0-4361-a339-f90261c969d5 +DataFlow,HTAN MSK,FALSE,Not Applicable,vectra_level_4,Not Applicable,syn27025193,Not Applicable,Not Applicable,FALSE,FALSE,110dc20d-3f48-47a8-9135-22a3b2ba60e7 +DataFlow,HTAN MSK,FALSE,ScRNA-seqLevel1,glasner_etal_single_cell_RNAseq_level_1,Not Applicable,syn49686312,Not Applicable,Not Applicable,FALSE,FALSE,da8dce5b-0723-4307-8142-f474d6cbbead +DataFlow,HTAN MSK,FALSE,ScRNA-seqLevel2,glasner_etal_single_cell_RNAseq_level_2,Not Applicable,syn49690852,Not Applicable,Not Applicable,FALSE,FALSE,27a900ae-943f-4629-b846-4c4a6542c91b +DataFlow,HTAN MSK,FALSE,ScRNA-seqLevel3,glasner_etal_single_cell_RNAseq_level_3,Not Applicable,syn49693500,Not Applicable,Not Applicable,FALSE,FALSE,d642f4b5-d89b-40e6-b641-54ea545dcdaa +DataFlow,HTAN MSK,FALSE,ScRNA-seqLevel4,glasner_etal_single_cell_RNAseq_level_4,Not Applicable,syn49693584,Not Applicable,Not Applicable,FALSE,FALSE,938ab44f-4166-4501-8512-c9fce2f06d6c +DataFlow,HTAN MSK,FALSE,Not Applicable,h5ad_cellxgene,Not Applicable,syn50261371,Not Applicable,Not Applicable,FALSE,FALSE,d25bf32c-06b1-4c27-93fa-a7c0fae99ee9 +DataFlow,HTAN OHSU,FALSE,Not Applicable,Example_Assay_Dataset,Not Applicable,syn22093323,Not Applicable,Not Applicable,FALSE,FALSE,16af5239-bf2c-4c06-b6b3-e9efe7b338d4 +DataFlow,HTAN OHSU,FALSE,Not Applicable,Example_Clinical_Data,Not Applicable,syn22097676,Not Applicable,Not Applicable,FALSE,FALSE,26402ec1-baa6-417a-bd0b-ccee20bf1d19 +DataFlow,HTAN OHSU,FALSE,Not Applicable,rppa_level_2,Not Applicable,syn23639564,Not Applicable,Not Applicable,FALSE,FALSE,df376b92-abe4-45cb-bc9a-25caf085e18d +DataFlow,HTAN OHSU,FALSE,Not Applicable,rppa_level_3,Not Applicable,syn23639578,Not Applicable,Not Applicable,FALSE,FALSE,acef1d22-03d7-4324-bce9-1a21553bf8ac +DataFlow,HTAN OHSU,FALSE,Not Applicable,rppa_level_4,Not Applicable,syn23639603,Not Applicable,Not Applicable,FALSE,FALSE,51cc4825-9288-4b7d-b20e-21925a592435 +DataFlow,HTAN OHSU,FALSE,Not Applicable,nanostring_level_1,Not Applicable,syn23639753,Not Applicable,Not Applicable,FALSE,FALSE,f0aa0dd1-b6d2-4b10-9d65-7fc373d317a1 +DataFlow,HTAN OHSU,FALSE,Not Applicable,nanostring_level_2,Not Applicable,syn23639801,Not Applicable,Not Applicable,FALSE,FALSE,0c8d51b1-523f-4d92-bfe9-afc3739955b1 +DataFlow,HTAN OHSU,FALSE,Not Applicable,nanostring_level_3,Not Applicable,syn23639807,Not Applicable,Not Applicable,FALSE,FALSE,03402c7d-28b3-42fe-bc7c-428bb2e7cf4f +DataFlow,HTAN OHSU,FALSE,BulkRNA-seqLevel1,bulk_rnaseq_level_1,Not Applicable,syn23639829,Not Applicable,Not Applicable,FALSE,FALSE,b45ab296-068f-48cc-9f7b-ebf2d4c8c698 +DataFlow,HTAN OHSU,FALSE,BulkWESLevel1,bulk_dnaseq_level_1,Not Applicable,syn23639864,Not Applicable,Not Applicable,FALSE,FALSE,d05fbc0e-323a-4d5f-b95e-b2001b92a55a +DataFlow,HTAN OHSU,FALSE,Biospecimen,biospecimen,Not Applicable,syn24615273,Not Applicable,Not Applicable,FALSE,FALSE,91a36000-38ff-49a2-9622-9d40a4e10516 +DataFlow,HTAN OHSU,FALSE,Diagnosis,clinical_diagnosis,Not Applicable,syn24615275,Not Applicable,Not Applicable,FALSE,FALSE,d7cadb2f-618e-44ca-aa30-500f7d4624f3 +DataFlow,HTAN OHSU,FALSE,Exposure,clinical_exposure,Not Applicable,syn24615276,Not Applicable,Not Applicable,FALSE,FALSE,f071a117-8fa2-4d03-9549-c833b7c11617 +DataFlow,HTAN OHSU,FALSE,FamilyHistory,clinical_family_history,Not Applicable,syn24615277,Not Applicable,Not Applicable,FALSE,FALSE,3877901c-483f-49ef-9cf9-6144c328ae8b +DataFlow,HTAN OHSU,FALSE,FollowUp,clinical_follow_up,Not Applicable,syn24615278,Not Applicable,Not Applicable,FALSE,FALSE,71bade69-b47d-45db-9f53-ee14887b812b +DataFlow,HTAN OHSU,FALSE,Therapy,clinical_therapy,Not Applicable,syn24615279,Not Applicable,Not Applicable,FALSE,FALSE,ba02330b-4408-4fa8-9270-5c42bc54cb8c +DataFlow,HTAN OHSU,FALSE,Not Applicable,imaging_level_1,Not Applicable,syn24829230,Not Applicable,Not Applicable,FALSE,FALSE,d4a8dac3-fcca-4642-a254-7de09237d27e +DataFlow,HTAN OHSU,FALSE,ImagingLevel2,imaging_level_2,Not Applicable,syn24829424,Not Applicable,Not Applicable,FALSE,FALSE,39286b6b-1524-4690-80bf-2a91cde42ae8 +DataFlow,HTAN OHSU,FALSE,Not Applicable,em_level_4,Not Applicable,syn24829496,Not Applicable,Not Applicable,FALSE,FALSE,9798786b-f50c-42eb-a9d2-917ac9db5e88 +DataFlow,HTAN OHSU,FALSE,Not Applicable,em_level_3,Not Applicable,syn24829499,Not Applicable,Not Applicable,FALSE,FALSE,64c05721-4253-4add-b47e-461624727584 +DataFlow,HTAN OHSU,FALSE,MolecularTest,clinical_molecular_test,Not Applicable,syn24860589,Not Applicable,Not Applicable,FALSE,FALSE,573ec7ef-9328-482b-b200-7b62774568fd +DataFlow,HTAN OHSU,FALSE,Demographics,clinical_demographics,Not Applicable,syn24862563,Not Applicable,Not Applicable,FALSE,FALSE,10c05e7a-30ec-43d1-b4a3-e0f0862489b7 +DataFlow,HTAN OHSU,FALSE,ClinicalDataTier2,clinical_tier_2,Not Applicable,syn24873803,Not Applicable,Not Applicable,FALSE,FALSE,1231d08a-b3a8-4041-8bcd-59d0965c1deb +DataFlow,HTAN OHSU,FALSE,BreastCancerTier3,clinical_tier_3_breast,Not Applicable,syn24873804,Not Applicable,Not Applicable,FALSE,FALSE,d31aa5d3-a1d6-4c0a-8d09-72d0dc9e4577 +DataFlow,HTAN OHSU,FALSE,Not Applicable,imaging_channel_data,Not Applicable,syn24988790,Not Applicable,Not Applicable,FALSE,FALSE,3ffbbc77-34c7-4cb0-8a85-f5d13c91de42 +DataFlow,HTAN OHSU,FALSE,Not Applicable,minerva_stories,Not Applicable,syn24992265,Not Applicable,Not Applicable,FALSE,FALSE,956ee797-d8be-40f7-8284-456b4494331e +DataFlow,HTAN OHSU,FALSE,Not Applicable,other_assay,Not Applicable,syn25114220,Not Applicable,Not Applicable,FALSE,FALSE,a6267412-573e-464b-80e0-0ef20865cef5 +DataFlow,HTAN OHSU,FALSE,Not Applicable,minerva,Not Applicable,syn25472273,Not Applicable,Not Applicable,FALSE,FALSE,bb47207d-8cf0-4a40-bee0-25ea63169ac3 +DataFlow,HTAN OHSU,FALSE,Not Applicable,bulk_dnaseq_level_3,Not Applicable,syn26535370,Not Applicable,Not Applicable,FALSE,FALSE,111c125a-c08b-4689-88e5-0f0f3c8558a1 +DataFlow,HTAN OHSU,FALSE,BulkRNA-seqLevel3,bulk_rnaseq_level_3,Not Applicable,syn26535390,Not Applicable,Not Applicable,FALSE,FALSE,8f3cf51d-33db-4d62-baee-71dce03aacf5 +DataFlow,HTAN OHSU,FALSE,Not Applicable,imaging_level_4,Not Applicable,syn26535421,Not Applicable,Not Applicable,FALSE,FALSE,e4b189d6-2426-4895-b004-e7a66fe779db +DataFlow,HTAN OHSU,FALSE,Not Applicable,sc_dnaseq_level_3,Not Applicable,syn26535461,Not Applicable,Not Applicable,FALSE,FALSE,1c3b8db3-3330-4980-8646-4ebf621f91f3 +DataFlow,HTAN OHSU,FALSE,ImagingLevel3Segmentation,imaging_level_3,Not Applicable,syn26535576,Not Applicable,Not Applicable,FALSE,FALSE,56a22347-1a6d-4c6b-94a8-fb64d6e0fa5c +DataFlow,HTAN OHSU,FALSE,ScATAC-seqLevel1,sc_atacseq_level_1,Not Applicable,syn26535587,Not Applicable,Not Applicable,FALSE,FALSE,ddf2156f-59b2-4761-8d3b-d20617e32ee0 +DataFlow,HTAN OHSU,FALSE,Not Applicable,sc_atacseq_level_2,Not Applicable,syn26535592,Not Applicable,Not Applicable,FALSE,FALSE,35b26c09-f69e-4026-a116-be06d4837a5b +DataFlow,HTAN OHSU,FALSE,BulkRNA-seqLevel2,bulk_rnaseq_level_2,Not Applicable,syn26535599,Not Applicable,Not Applicable,FALSE,FALSE,960cf8ce-880a-473d-acce-16fa7651d370 +DataFlow,HTAN OHSU,FALSE,Not Applicable,sc_dnaseq_level_2,Not Applicable,syn26535617,Not Applicable,Not Applicable,FALSE,FALSE,367520d4-caf8-45c0-8fbb-3afc37eb9902 +DataFlow,HTAN OHSU,FALSE,Not Applicable,sc_dnaseq_level_1,Not Applicable,syn26535725,Not Applicable,Not Applicable,FALSE,FALSE,128d61df-26b7-4a15-8eea-4c0fe40a3fc4 +DataFlow,HTAN OHSU,FALSE,BulkWESLevel2,bulk_dnaseq_level_2,Not Applicable,syn26536411,Not Applicable,Not Applicable,FALSE,FALSE,df993fbe-e242-45bd-a63e-bcbfae5e4dbf +DataFlow,HTAN OHSU,FALSE,Not Applicable,archive,Not Applicable,syn26987435,Not Applicable,Not Applicable,FALSE,FALSE,2aeb19bc-fb9f-4015-b0a2-1a7f0ed6b1e9 +DataFlow,HTAN OHSU,FALSE,Not Applicable,sc_atacseq_level_3,Not Applicable,syn31547223,Not Applicable,Not Applicable,FALSE,FALSE,7a6b4513-da40-409e-b239-c19ca925e8f5 +DataFlow,HTAN OHSU,FALSE,Not Applicable,em_level_1,Not Applicable,syn31566909,Not Applicable,Not Applicable,FALSE,FALSE,7d340e47-9f5a-47c2-a352-2773f9a39001 +DataFlow,HTAN OHSU,FALSE,Not Applicable,em_level_2,Not Applicable,syn31773950,Not Applicable,Not Applicable,FALSE,FALSE,dd29bb52-14b0-411a-81a6-80b4f878533a +DataFlow,HTAN SRRS,FALSE,SRRSBiospecimen,biospecimen,Not Applicable,syn26127200,Not Applicable,Not Applicable,FALSE,FALSE,6e854b62-42c7-4675-9490-3489b6d2d1ea +DataFlow,HTAN SRRS,FALSE,SRRSImagingLevel2,clinical_tier_2,Not Applicable,syn26128485,Not Applicable,Not Applicable,FALSE,FALSE,2d440300-4d49-4004-be8c-1c1c64af34a4 +DataFlow,HTAN SRRS,FALSE,SRRSImagingLevel2,imaging_level_2,Not Applicable,syn26275041,Not Applicable,Not Applicable,FALSE,FALSE,478628c0-bb9c-427b-8519-892ef3782830 +DataFlow,HTAN SRRS,FALSE,Not Applicable,staging,Not Applicable,syn42467311,Not Applicable,Not Applicable,FALSE,FALSE,ef66e1d3-840c-4fde-a804-b58c46a47796 +DataFlow,HTAN SRRS,FALSE,Not Applicable,BU_biospecimen,Not Applicable,syn44583443,Not Applicable,Not Applicable,FALSE,FALSE,3b074d75-e1c0-4963-9700-4c545a0bd6c2 +DataFlow,HTAN SRRS,FALSE,Not Applicable,DFCI_biospecimen,Not Applicable,syn44583458,Not Applicable,Not Applicable,FALSE,FALSE,a3cf7ffc-b423-4faa-8dea-46b35edba018 +DataFlow,HTAN SRRS,FALSE,Not Applicable,Stanford_biospecimen,Not Applicable,syn44583467,Not Applicable,Not Applicable,FALSE,FALSE,5672970f-668f-4919-af2c-d610235970dc +DataFlow,HTAN SRRS,FALSE,Not Applicable,WashUniv_biospecimen,Not Applicable,syn44583480,Not Applicable,Not Applicable,FALSE,FALSE,85bc97cf-7f29-47b3-b04f-6f3882fccd84 +DataFlow,HTAN SRRS,FALSE,Not Applicable,BU_clinical_tier_2,Not Applicable,syn44583495,Not Applicable,Not Applicable,FALSE,FALSE,1ca310e6-c566-4672-9557-5f2e17d843d8 +DataFlow,HTAN SRRS,FALSE,Not Applicable,DFCI_clinical_tier_2,Not Applicable,syn44583505,Not Applicable,Not Applicable,FALSE,FALSE,b3f21ea6-6997-465b-bea7-f191540623c1 +DataFlow,HTAN SRRS,FALSE,Not Applicable,Stanford_clinical_tier_2,Not Applicable,syn44583520,Not Applicable,Not Applicable,FALSE,FALSE,bb1ea20f-fab4-4914-939d-0a1e5c9d66f2 +DataFlow,HTAN SRRS,FALSE,Not Applicable,WashUniv_clinical_tier_2,Not Applicable,syn44583530,Not Applicable,Not Applicable,FALSE,FALSE,ba0ca3bd-c542-45b5-bdd2-dc0ebb67d980 +DataFlow,HTAN SRRS,FALSE,Not Applicable,BU_imaging_level_2,Not Applicable,syn44583551,Not Applicable,Not Applicable,FALSE,FALSE,73f93305-659a-4b84-868f-c35036ecf417 +DataFlow,HTAN SRRS,FALSE,Not Applicable,DFCI_imaging_level_2,Not Applicable,syn44583560,Not Applicable,Not Applicable,FALSE,FALSE,a2570141-03c6-4a53-8229-9510b598c4c9 +DataFlow,HTAN SRRS,FALSE,SRRSImagingLevel2,Stanford_imaging_level_2,Not Applicable,syn44583571,Not Applicable,Not Applicable,FALSE,FALSE,5a0006d4-5720-44a2-b114-c552e09db9dd +DataFlow,HTAN SRRS,FALSE,Not Applicable,WashUniv_imaging_level_2,Not Applicable,syn44583579,Not Applicable,Not Applicable,FALSE,FALSE,a0642550-c66c-404e-8d63-443c5ac49bf0 +DataFlow,HTAN Stanford,FALSE,BulkWESLevel1,wgs,Not Applicable,syn23445842,Not Applicable,Not Applicable,FALSE,FALSE,1d4c10ad-da19-41eb-a009-519cf0349c82 +DataFlow,HTAN Stanford,FALSE,ImagingLevel2,codex,Not Applicable,syn23627808,Not Applicable,Not Applicable,FALSE,FALSE,214c31f1-2afd-48a0-807a-f54bd5b07584 +DataFlow,HTAN Stanford,FALSE,BulkRNA-seqLevel1,bulkRNAseq,Not Applicable,syn23627814,Not Applicable,Not Applicable,FALSE,FALSE,2ec46634-6c58-422c-af24-b36454149fe4 +DataFlow,HTAN Stanford,FALSE,Not Applicable,bulkATACseq,Not Applicable,syn23627815,Not Applicable,Not Applicable,FALSE,FALSE,b3bbfc9e-3acb-4972-92b1-b6e80fe84595 +DataFlow,HTAN Stanford,FALSE,OtherAssay,proteomics,Not Applicable,syn23627817,Not Applicable,Not Applicable,FALSE,FALSE,d8d0e5d1-b104-4c50-b059-a0f61347f43b +DataFlow,HTAN Stanford,FALSE,OtherAssay,metabolomics,Not Applicable,syn23627818,Not Applicable,Not Applicable,FALSE,FALSE,d1508557-1f84-4a43-94bd-0e1185a4a5f8 +DataFlow,HTAN Stanford,FALSE,OtherAssay,lipidomics,Not Applicable,syn23764189,Not Applicable,Not Applicable,FALSE,FALSE,8700d1eb-43ae-4b75-9024-e1133553279f +DataFlow,HTAN Stanford,FALSE,ScATAC-seqLevel1,scatacseq_level_1,Not Applicable,syn24191308,Not Applicable,Not Applicable,FALSE,FALSE,83e2315e-e04c-4550-a4ee-d8b6bb94557d +DataFlow,HTAN Stanford,FALSE,ScRNA-seqLevel1,scrnaseq_level_1,Not Applicable,syn24191309,Not Applicable,Not Applicable,FALSE,FALSE,df2e59ef-844b-41a2-ac0c-5648623d40b2 +DataFlow,HTAN Stanford,FALSE,Biospecimen,biospecimen,Not Applicable,syn24615280,Not Applicable,Not Applicable,FALSE,FALSE,d65e598d-2caa-4e7d-b2ea-953238b4b24f +DataFlow,HTAN Stanford,FALSE,Demographics,clinical_demographics,Not Applicable,syn24615281,Not Applicable,Not Applicable,FALSE,FALSE,61387a90-79e0-41f4-b3cd-4474d052f403 +DataFlow,HTAN Stanford,FALSE,Diagnosis,clinical_diagnosis,Not Applicable,syn24615282,Not Applicable,Not Applicable,FALSE,FALSE,ec88f470-739d-4ebf-94fc-49716a72d8d8 +DataFlow,HTAN Stanford,FALSE,Exposure,clinical_exposure,Not Applicable,syn24615283,Not Applicable,Not Applicable,FALSE,FALSE,83a3f9c7-d0ee-4598-b6bc-7ee14902c0e8 +DataFlow,HTAN Stanford,FALSE,FamilyHistory,clinical_family_history,Not Applicable,syn24615284,Not Applicable,Not Applicable,FALSE,FALSE,8997ef67-fb2e-4378-8450-d046626e4aef +DataFlow,HTAN Stanford,FALSE,FollowUp,clinical_follow_up,Not Applicable,syn24615285,Not Applicable,Not Applicable,FALSE,FALSE,9890fc4b-d065-43b6-9266-cd4eac4534e7 +DataFlow,HTAN Stanford,FALSE,Therapy,clinical_therapy,Not Applicable,syn24615286,Not Applicable,Not Applicable,FALSE,FALSE,87d0f2ae-94b2-4290-8206-d414356f08f1 +DataFlow,HTAN Stanford,FALSE,Not Applicable,clinical_molecular_test,Not Applicable,syn24860552,Not Applicable,Not Applicable,FALSE,FALSE,c7acdbd4-679b-4497-bbfc-72446ce502c7 +DataFlow,HTAN Stanford,FALSE,Not Applicable,clinical_tier_2,Not Applicable,syn24873788,Not Applicable,Not Applicable,FALSE,FALSE,c473de2f-828b-48fe-8df2-27a54e0fb73c +DataFlow,HTAN Stanford,FALSE,Not Applicable,clinical_tier_3_colon,Not Applicable,syn24873789,Not Applicable,Not Applicable,FALSE,FALSE,d35e62a7-b042-4dcd-9925-3b66618b087b +DataFlow,HTAN Stanford,FALSE,OtherAssay,scatacseq_level_2,Not Applicable,syn26530163,Not Applicable,Not Applicable,FALSE,FALSE,b681e9dc-7c52-457e-a1de-2c6e4b04ce50 +DataFlow,HTAN Stanford,FALSE,OtherAssay,scatacseq_level_3,Not Applicable,syn26530164,Not Applicable,Not Applicable,FALSE,FALSE,71f7692e-3000-4124-8d79-cd375a6417f4 +DataFlow,HTAN Stanford,FALSE,ScRNA-seqLevel2,scrnaseq_level_2,Not Applicable,syn26530912,Not Applicable,Not Applicable,FALSE,FALSE,753faddc-b65a-4f45-b491-3f07be6028ef +DataFlow,HTAN Stanford,FALSE,ScRNA-seqLevel3,scrnaseq_level_3,Not Applicable,syn26531002,Not Applicable,Not Applicable,FALSE,FALSE,d9b50dea-43f1-49fe-b479-54d009c12fbc +DataFlow,HTAN Stanford,FALSE,Not Applicable,codex_level_1,Not Applicable,syn27782965,Not Applicable,Not Applicable,FALSE,FALSE,ccd592d1-1e6f-4f59-8e23-1351a3e6cd45 +DataFlow,HTAN Stanford,FALSE,Not Applicable,codex_level_2,Not Applicable,syn27782972,Not Applicable,Not Applicable,FALSE,FALSE,4ed88d57-e9c8-4fde-84ac-e9cc969ac3bd +DataFlow,HTAN Stanford,FALSE,Not Applicable,codex_level_3,Not Applicable,syn27782980,Not Applicable,Not Applicable,FALSE,FALSE,03e3d106-db18-437f-9ba8-18fc651b6ed5 +DataFlow,HTAN Stanford,FALSE,Not Applicable,codex_level_4,Not Applicable,syn27782993,Not Applicable,Not Applicable,FALSE,FALSE,39ba5246-0fe4-47f8-a4b9-ff807d168d36 +DataFlow,HTAN Stanford,FALSE,Not Applicable,hic_level_1,Not Applicable,syn39253511,Not Applicable,Not Applicable,FALSE,FALSE,257e66c9-a87d-4802-b92b-9556ea35d854 +DataFlow,HTAN Stanford,FALSE,Not Applicable,hic_level_2,Not Applicable,syn39253516,Not Applicable,Not Applicable,FALSE,FALSE,4659af0b-67d6-4738-97e8-3d1b012dbc6b +DataFlow,HTAN Stanford,FALSE,Not Applicable,bulk_methyl_seq_level_1,Not Applicable,syn45071628,Not Applicable,Not Applicable,FALSE,FALSE,f4774169-0f8b-4d4b-9bcc-5da96f229064 +DataFlow,HTAN Stanford,FALSE,Not Applicable,bulk_methyl_seq_level_2,Not Applicable,syn45071740,Not Applicable,Not Applicable,FALSE,FALSE,aaa0aa3b-6f6b-4641-86f8-b3649d1398ae +DataFlow,HTAN Stanford,FALSE,Not Applicable,wes,Not Applicable,syn51082327,Not Applicable,Not Applicable,FALSE,FALSE,4914d5bb-cb56-4049-bcfa-5d26ac828c36 +DataFlow,HTAN TNP - TMA,FALSE,Not Applicable,phase-1,Not Applicable,syn23554989,Not Applicable,Not Applicable,FALSE,FALSE,4490618e-0266-4146-9a69-59a2f5decec7 +DataFlow,HTAN TNP - TMA,FALSE,Biospecimen,biospecimen,Not Applicable,syn24995166,Not Applicable,Not Applicable,FALSE,FALSE,5b0aaca2-3823-4e0f-9410-8d30d473ff46 +DataFlow,HTAN TNP - TMA,FALSE,Demographics,clinical_demographics,Not Applicable,syn24995167,Not Applicable,Not Applicable,FALSE,FALSE,3c85f71e-41a8-47c6-99bb-db8fa2fb14af +DataFlow,HTAN TNP - TMA,FALSE,Diagnosis,clinical_diagnosis,Not Applicable,syn24995168,Not Applicable,Not Applicable,FALSE,FALSE,ac1d5c76-0c23-40ed-b7e4-40c7bac36228 +DataFlow,HTAN TNP - TMA,FALSE,Exposure,clinical_exposure,Not Applicable,syn24995170,Not Applicable,Not Applicable,FALSE,FALSE,5a4dc068-9abb-452a-8ae5-2d07a42c5cff +DataFlow,HTAN TNP - TMA,FALSE,FamilyHistory,clinical_family_history,Not Applicable,syn24995171,Not Applicable,Not Applicable,FALSE,FALSE,c061e89a-351b-446c-8e4e-81ba7a2d7d0f +DataFlow,HTAN TNP - TMA,FALSE,FollowUp,clinical_follow_up,Not Applicable,syn24995173,Not Applicable,Not Applicable,FALSE,FALSE,ca7d64a1-fef1-44eb-a359-abb7022a2bdc +DataFlow,HTAN TNP - TMA,FALSE,Therapy,clinical_therapy,Not Applicable,syn24995174,Not Applicable,Not Applicable,FALSE,FALSE,bd162617-94fe-4322-a229-ec978fdb5739 +DataFlow,HTAN TNP - TMA,FALSE,MolecularTest,clinical_molecular_test,Not Applicable,syn24995175,Not Applicable,Not Applicable,FALSE,FALSE,1759e5fc-ea74-4bc7-b18c-f17384424982 +DataFlow,HTAN TNP - TMA,FALSE,ClinicalDataTier2,clinical_tier_2,Not Applicable,syn24995176,Not Applicable,Not Applicable,FALSE,FALSE,10f01b11-0e8a-4c0a-8316-090a20449a07 +DataFlow,HTAN TNP - TMA,FALSE,BreastCancerTier3,clinical_tier_3_breast,Not Applicable,syn24995177,Not Applicable,Not Applicable,FALSE,FALSE,68079908-bc82-4dd1-87e9-34c8f43daf30 +DataFlow,HTAN TNP - TMA,FALSE,Not Applicable,clinical_tier_3_glioma,Not Applicable,syn24995179,Not Applicable,Not Applicable,FALSE,FALSE,0896e35b-4c7c-4655-8fec-59d5a1386f95 +DataFlow,HTAN TNP - TMA,FALSE,Not Applicable,clinical_tier_3_colon,Not Applicable,syn24995180,Not Applicable,Not Applicable,FALSE,FALSE,2634094d-1fb3-42a5-beaf-7a53a64e5adb +DataFlow,HTAN TNP - TMA,FALSE,Not Applicable,clinical_tier_3_lung,Not Applicable,syn24995181,Not Applicable,Not Applicable,FALSE,FALSE,5252aea2-2384-497b-a45c-2c627a016717 +DataFlow,HTAN TNP - TMA,FALSE,Not Applicable,clinical_tier_3_sarcoma,Not Applicable,syn24995182,Not Applicable,Not Applicable,FALSE,FALSE,58c0dde3-a021-4447-be5e-b323c4a2d1b5 +DataFlow,HTAN TNP - TMA,FALSE,Not Applicable,clinical_tier_3_ovarian,Not Applicable,syn24995184,Not Applicable,Not Applicable,FALSE,FALSE,4096b2cb-1ae4-4e19-855c-33964b5b0b24 +DataFlow,HTAN TNP - TMA,FALSE,Not Applicable,clinical_tier_3_neuroblastoma,Not Applicable,syn24995185,Not Applicable,Not Applicable,FALSE,FALSE,fbf6c6bc-79ec-4b8e-9945-09da220f3fcf +DataFlow,HTAN TNP - TMA,FALSE,Not Applicable,clinical_tier_3_pancreatic,Not Applicable,syn24995187,Not Applicable,Not Applicable,FALSE,FALSE,ef8a8167-5956-46b1-a37a-a5320d1ab75f +DataFlow,HTAN TNP - TMA,FALSE,Not Applicable,clinical_tier_3_melanoma,Not Applicable,syn24995188,Not Applicable,Not Applicable,FALSE,FALSE,f62c9467-4a7e-4b01-a17a-b74eb50f858d +DataFlow,HTAN TNP - TMA,FALSE,Not Applicable,clinical_tier_3_acute_lymphoblastic_leukemia,Not Applicable,syn24995190,Not Applicable,Not Applicable,FALSE,FALSE,1d0923ea-24fc-4327-8430-66e73a9681c8 +DataFlow,HTAN TNP - TMA,FALSE,Not Applicable,minerva,Not Applicable,syn25472274,Not Applicable,Not Applicable,FALSE,FALSE,64b4a014-d8d3-4d4f-a4c4-868d31053161 +DataFlow,HTAN TNP - TMA,FALSE,ImagingLevel2,imaging_level_2,Not Applicable,syn26341500,Not Applicable,Not Applicable,FALSE,FALSE,f3708c38-7b66-46e9-b7bc-267d2f5a4136 +DataFlow,HTAN TNP - TMA,FALSE,Not Applicable,galaxy-mti,Not Applicable,syn32606398,Not Applicable,Not Applicable,FALSE,FALSE,3367e1f0-de87-4071-81d1-2b9e6380e7fe +DataFlow,HTAN TNP - TMA,FALSE,Not Applicable,imaging_level_3,Not Applicable,syn48191257,Not Applicable,Not Applicable,FALSE,FALSE,c5eba451-5ba3-4625-9fef-b241646db513 +DataFlow,HTAN TNP - TMA,FALSE,,phase3_imaging_level_2,Not Applicable,syn51217298,Not Applicable,Not Applicable,FALSE,FALSE,28dcd1a6-ef57-4767-ba10-e7c8907ea048 +DataFlow,HTAN TNP SARDANA,FALSE,Biospecimen,biospecimen,Not Applicable,syn24984556,Not Applicable,Not Applicable,FALSE,FALSE,5211e6bc-174c-444c-97b5-4a8f2b01356e +DataFlow,HTAN TNP SARDANA,FALSE,Demographics,clinical_demographics,Not Applicable,syn24984557,Not Applicable,Not Applicable,FALSE,FALSE,41b0141a-968d-40a7-9631-fe6fd8e1b87c +DataFlow,HTAN TNP SARDANA,FALSE,Diagnosis,clinical_diagnosis,Not Applicable,syn24984558,Not Applicable,Not Applicable,FALSE,FALSE,b8886774-66b5-4475-b9bb-fb97f7036fbd +DataFlow,HTAN TNP SARDANA,FALSE,Exposure,clinical_exposure,Not Applicable,syn24984559,Not Applicable,Not Applicable,FALSE,FALSE,52f43fde-5267-4775-a9bf-a347dc6e7b7b +DataFlow,HTAN TNP SARDANA,FALSE,FamilyHistory,clinical_family_history,Not Applicable,syn24984560,Not Applicable,Not Applicable,FALSE,FALSE,195afab4-ce1d-437b-b8cf-f186668dda56 +DataFlow,HTAN TNP SARDANA,FALSE,FollowUp,clinical_follow_up,Not Applicable,syn24984561,Not Applicable,Not Applicable,FALSE,FALSE,7d28e77d-40d1-4bcf-b710-d35e87534217 +DataFlow,HTAN TNP SARDANA,FALSE,Therapy,clinical_therapy,Not Applicable,syn24984562,Not Applicable,Not Applicable,FALSE,FALSE,1d275b35-b305-440f-98a2-e8756f994602 +DataFlow,HTAN TNP SARDANA,FALSE,MolecularTest,clinical_molecular_test,Not Applicable,syn24984563,Not Applicable,Not Applicable,FALSE,FALSE,31372c45-39e8-49c1-82c1-0256e9a55f89 +DataFlow,HTAN TNP SARDANA,FALSE,Not Applicable,clinical_tier_2,Not Applicable,syn24984564,Not Applicable,Not Applicable,FALSE,FALSE,aee15d50-90ee-42ea-88ca-ef70727d4300 +DataFlow,HTAN TNP SARDANA,FALSE,Not Applicable,clinical_tier_3_breast,Not Applicable,syn24984565,Not Applicable,Not Applicable,FALSE,FALSE,0d4dabdb-d9ad-4e91-a3e2-1c9597574c8a +DataFlow,HTAN TNP SARDANA,FALSE,Not Applicable,clinical_tier_3_glioma,Not Applicable,syn24984566,Not Applicable,Not Applicable,FALSE,FALSE,9e43cb5d-6c69-45fd-9679-73b749287f24 +DataFlow,HTAN TNP SARDANA,FALSE,Not Applicable,clinical_tier_3_colon,Not Applicable,syn24984567,Not Applicable,Not Applicable,FALSE,FALSE,dd731f02-19d2-49b3-bbc1-1dd3ad6a8cf5 +DataFlow,HTAN TNP SARDANA,FALSE,Not Applicable,clinical_tier_3_lung,Not Applicable,syn24984568,Not Applicable,Not Applicable,FALSE,FALSE,5c1cb3ce-3731-41b7-8d33-41f1ab485104 +DataFlow,HTAN TNP SARDANA,FALSE,Not Applicable,clinical_tier_3_sarcoma,Not Applicable,syn24984569,Not Applicable,Not Applicable,FALSE,FALSE,0d5c5116-29a6-4ea7-a91d-e8d1daf9cff1 +DataFlow,HTAN TNP SARDANA,FALSE,Not Applicable,clinical_tier_3_ovarian,Not Applicable,syn24984570,Not Applicable,Not Applicable,FALSE,FALSE,f996e3b1-9c7c-487f-af02-0271a4505000 +DataFlow,HTAN TNP SARDANA,FALSE,Not Applicable,clinical_tier_3_neuroblastoma,Not Applicable,syn24984571,Not Applicable,Not Applicable,FALSE,FALSE,5cfe70b6-589f-4139-beca-afc4fef938b9 +DataFlow,HTAN TNP SARDANA,FALSE,Not Applicable,clinical_tier_3_pancreatic,Not Applicable,syn24984572,Not Applicable,Not Applicable,FALSE,FALSE,45a836a9-1742-4eaa-8183-41a4721a6c6a +DataFlow,HTAN TNP SARDANA,FALSE,Not Applicable,clinical_tier_3_melanoma,Not Applicable,syn24984573,Not Applicable,Not Applicable,FALSE,FALSE,223e820d-b7cc-40d3-bbe7-49c32283773b +DataFlow,HTAN TNP SARDANA,FALSE,Not Applicable,clinical_tier_3_acute_lymphoblastic_leukemia,Not Applicable,syn24984574,Not Applicable,Not Applicable,FALSE,FALSE,aab2701e-9e0a-49ba-82b7-950fbae13626 +DataFlow,HTAN TNP SARDANA,FALSE,ImagingLevel2,imaging_level_2,Not Applicable,syn24989038,Not Applicable,Not Applicable,FALSE,FALSE,cd11533f-c0ce-44fd-aafd-e21b81bb4c33 +DataFlow,HTAN TNP SARDANA,FALSE,Not Applicable,minerva,Not Applicable,syn25472275,Not Applicable,Not Applicable,FALSE,FALSE,19feacfa-18b0-4e96-8959-ffdd113fba2c +DataFlow,HTAN TNP SARDANA,FALSE,ImagingLevel2,sardana_phase_1_ff_level_2,Not Applicable,syn26486693,Not Applicable,Not Applicable,FALSE,FALSE,7deac6f2-478e-4ac4-bc07-3ac62ec40ff2 +DataFlow,HTAN TNP SARDANA,FALSE,ImagingLevel2,sardana_phase_1_ffpe_level_2,Not Applicable,syn26486694,Not Applicable,Not Applicable,FALSE,FALSE,073f156b-2d1e-4659-acee-6825ec2b2a3e +DataFlow,HTAN TNP SARDANA,FALSE,Not Applicable,codex_level_1,Not Applicable,syn27790444,Not Applicable,Not Applicable,FALSE,FALSE,19e4dcf4-2c03-4a1b-952c-179ba2c5b0ee +DataFlow,HTAN TNP SARDANA,FALSE,ImagingLevel4,imaging_level_4,Not Applicable,syn35469108,Not Applicable,Not Applicable,FALSE,FALSE,65f5ae4d-6f8a-49fc-8859-9050a1e2bf5c +DataFlow,HTAN TNP SARDANA,FALSE,ImagingLevel3Segmentation,imaging_level_3_segmentation,Not Applicable,syn45579293,Not Applicable,Not Applicable,FALSE,FALSE,f4f6c555-90e1-49a8-8794-0893e52f9033 +DataFlow,HTAN Vanderbilt,FALSE,ScRNA-seqLevel3,single_cell_RNAseq_level_3,Not Applicable,syn23520239,Not Applicable,Not Applicable,FALSE,FALSE,ce5ba186-98f4-4654-b6a3-5112081bb306 +DataFlow,HTAN Vanderbilt,FALSE,ScRNA-seqLevel2,single_cell_RNAseq_level_2,Not Applicable,syn23520240,Not Applicable,Not Applicable,FALSE,FALSE,d22c309c-d95d-47a9-8a08-2899d306e942 +DataFlow,HTAN Vanderbilt,FALSE,ScRNA-seqLevel1,single_cell_RNAseq_level_1,Not Applicable,syn23520241,Not Applicable,Not Applicable,FALSE,FALSE,db921cf0-41cf-4322-894a-68df1031f480 +DataFlow,HTAN Vanderbilt,FALSE,Demographics,clinical_demographics,Not Applicable,syn23520242,Not Applicable,Not Applicable,FALSE,FALSE,82545346-47e5-4a19-b601-5ebcb6da454c +DataFlow,HTAN Vanderbilt,FALSE,Diagnosis,clinical_diagnosis,Not Applicable,syn23520243,Not Applicable,Not Applicable,FALSE,FALSE,0f7f5e15-ac32-465c-a159-a41cb0477e7c +DataFlow,HTAN Vanderbilt,FALSE,Exposure,clinical_exposure,Not Applicable,syn23520244,Not Applicable,Not Applicable,FALSE,FALSE,bd0bd6a0-fc74-4854-9e8f-a3d0f9f6788a +DataFlow,HTAN Vanderbilt,FALSE,FamilyHistory,clinical_family_history,Not Applicable,syn23520245,Not Applicable,Not Applicable,FALSE,FALSE,f8027df4-b2a0-401c-bc27-f94a99a4d76f +DataFlow,HTAN Vanderbilt,FALSE,FollowUp,clinical_follow_up,Not Applicable,syn23520246,Not Applicable,Not Applicable,FALSE,FALSE,076d6f76-8785-4ab1-a239-8b6d268d2f74 +DataFlow,HTAN Vanderbilt,FALSE,Therapy,clinical_therapy,Not Applicable,syn23520247,Not Applicable,Not Applicable,FALSE,FALSE,94a95399-2555-46be-bf8a-b9be9ec3adee +DataFlow,HTAN Vanderbilt,FALSE,MolecularTest,clinical_molecular_test,Not Applicable,syn24860587,Not Applicable,Not Applicable,FALSE,FALSE,cb9d3bad-1fad-4443-9991-9daaea086431 +DataFlow,HTAN Vanderbilt,FALSE,Not Applicable,clinical_tier_2,Not Applicable,syn24873794,Not Applicable,Not Applicable,FALSE,FALSE,e3b63da7-1f9f-4470-a5a2-748bc42fa9a4 +DataFlow,HTAN Vanderbilt,FALSE,Not Applicable,clinical_tier_3_colon,Not Applicable,syn24873795,Not Applicable,Not Applicable,FALSE,FALSE,7079fabd-3515-4f8d-93ec-4bb9e61e8596 +DataFlow,HTAN Vanderbilt,FALSE,Not Applicable,archive,Not Applicable,syn24986117,Not Applicable,Not Applicable,FALSE,FALSE,20765fa8-8263-4da3-88a6-5f791294836b +DataFlow,HTAN Vanderbilt,FALSE,ImagingLevel2,mxif_level_2,Not Applicable,syn24989514,Not Applicable,Not Applicable,FALSE,FALSE,90906ec5-97c4-40f9-8c7d-ad2bef628524 +DataFlow,HTAN Vanderbilt,FALSE,Biospecimen,biospecimen,Not Applicable,syn25010793,Not Applicable,Not Applicable,FALSE,FALSE,f1ffbd1a-8c88-4c31-a941-dd9d622e4b4e +DataFlow,HTAN Vanderbilt,FALSE,ImagingLevel2,h_and_e_level_1,Not Applicable,syn25054230,Not Applicable,Not Applicable,FALSE,FALSE,0edc0ff3-25f4-4c1b-8625-36898dc9ef14 +DataFlow,HTAN Vanderbilt,FALSE,ScRNA-seqLevel4,single_cell_RNAseq_level_4,Not Applicable,syn25459679,Not Applicable,Not Applicable,FALSE,FALSE,bdf9a3a4-3b22-434c-82bf-bc94a0cd3fc7 +DataFlow,HTAN Vanderbilt,FALSE,BulkWESLevel1,whole_exome_seq_level_1,Not Applicable,syn26950967,Not Applicable,Not Applicable,FALSE,FALSE,caa17e1e-4759-4d8e-b5a5-0db39f188a54 +DataFlow,HTAN Vanderbilt,FALSE,BulkWESLevel2,whole_exome_seq_level_2,Not Applicable,syn26950968,Not Applicable,Not Applicable,FALSE,FALSE,327d62c0-6489-45c6-ad2f-30e17ca51ca9 +DataFlow,HTAN Vanderbilt,FALSE,BulkWESLevel3,whole_exome_seq_level_3,Not Applicable,syn26950969,Not Applicable,Not Applicable,FALSE,FALSE,cfc47938-25a5-43d6-9e81-ca97dd3d530e +DataFlow,HTAN Vanderbilt,FALSE,Not Applicable,visium_level_1,Not Applicable,syn51120506,Not Applicable,Not Applicable,FALSE,FALSE,f47ba544-657b-468a-9354-c55ffdc59940 +DataFlow,HTAN Vanderbilt,FALSE,Not Applicable,visium_level_2,Not Applicable,syn51120507,Not Applicable,Not Applicable,FALSE,FALSE,206f371f-025c-4c6b-b3d2-5c2ddb79cc05 +DataFlow,HTAN Vanderbilt,FALSE,Not Applicable,visium_level_2_auxiliary,Not Applicable,syn51120508,Not Applicable,Not Applicable,FALSE,FALSE,280f662b-7581-4caa-8ab7-93a50292a08d +DataFlow,HTAN Vanderbilt,FALSE,Not Applicable,visium_level_3,Not Applicable,syn51120509,Not Applicable,Not Applicable,FALSE,FALSE,13edb34d-26d4-4548-a43a-e73d68e6671b +DataFlow,HTAN Vanderbilt,FALSE,,whole_genome_seq_level_1,Not Applicable,syn51218392,Not Applicable,Not Applicable,FALSE,FALSE,59a58731-71a4-4c0a-b8e2-e22b0ba127a7 +DataFlow,HTAN Vanderbilt,FALSE,,whole_genome_seq_level_2,Not Applicable,syn51218393,Not Applicable,Not Applicable,FALSE,FALSE,95c984c1-4539-48c9-9ea4-aec8a1434b44 +DataFlow,HTAN WUSTL,FALSE,ScRNA-seqLevel1,sc_RNAseq_level_1,Not Applicable,syn23643211,Not Applicable,Not Applicable,FALSE,FALSE,e0620d3d-8197-4923-bea2-0e9272c006d9 +DataFlow,HTAN WUSTL,FALSE,ScRNA-seqLevel2,sc_RNAseq_level_2,Not Applicable,syn23643212,Not Applicable,Not Applicable,FALSE,FALSE,f5ce180f-61da-4303-a302-326a34146071 +DataFlow,HTAN WUSTL,FALSE,ScRNA-seqLevel3,sc_RNAseq_level_3,Not Applicable,syn23643213,Not Applicable,Not Applicable,FALSE,FALSE,84d64367-6b15-4400-bff5-72d7f85f0dc4 +DataFlow,HTAN WUSTL,FALSE,Not Applicable,sc_RNAseq_level_4,Not Applicable,syn23643214,Not Applicable,Not Applicable,FALSE,FALSE,0bfcde32-dc5b-4340-b25b-1a208733369d +DataFlow,HTAN WUSTL,FALSE,Not Applicable,sn_ATACseq_level_1,Not Applicable,syn23643215,Not Applicable,Not Applicable,FALSE,FALSE,6a49581d-4357-4e58-9713-019347b564e5 +DataFlow,HTAN WUSTL,FALSE,Not Applicable,bulk_RNAseq_level_2,Not Applicable,syn23643217,Not Applicable,Not Applicable,FALSE,FALSE,56deb612-b979-4646-8214-e9ae8a045ea0 +DataFlow,HTAN WUSTL,FALSE,Not Applicable,bulk_RNAseq_level_3,Not Applicable,syn23643218,Not Applicable,Not Applicable,FALSE,FALSE,9bb96a1e-0ca1-422b-aa75-df2964a51b85 +DataFlow,HTAN WUSTL,FALSE,BulkWESLevel1,whole_exome_seq_level_1,Not Applicable,syn23643219,Not Applicable,Not Applicable,FALSE,FALSE,bf3038c7-9dcb-469b-b055-897b31c8072d +DataFlow,HTAN WUSTL,FALSE,Not Applicable,whole_exome_seq_level_2,Not Applicable,syn23643220,Not Applicable,Not Applicable,FALSE,FALSE,80a29fd3-9248-4ac7-85d8-921ce3455a15 +DataFlow,HTAN WUSTL,FALSE,Not Applicable,whole_exome_seq_level_3,Not Applicable,syn23643221,Not Applicable,Not Applicable,FALSE,FALSE,3a8f6292-08da-4d63-bd12-a538ec95f29f +DataFlow,HTAN WUSTL,FALSE,Therapy,clinical_therapy,Not Applicable,syn24615254,Not Applicable,Not Applicable,FALSE,FALSE,a94453aa-e70c-4c8c-a95f-d740ff0af166 +DataFlow,HTAN WUSTL,FALSE,Demographics,clinical_demographics,Not Applicable,syn24615255,Not Applicable,Not Applicable,FALSE,FALSE,4868270a-efbc-4cfd-bb0c-e84597fa7815 +DataFlow,HTAN WUSTL,FALSE,FamilyHistory,clinical_family_history,Not Applicable,syn24615256,Not Applicable,Not Applicable,FALSE,FALSE,0e1370ca-45e5-42d2-8f2a-423dcad91a7c +DataFlow,HTAN WUSTL,FALSE,Exposure,clinical_exposure,Not Applicable,syn24615257,Not Applicable,Not Applicable,FALSE,FALSE,07f6ae22-4fbc-4835-aad1-bec934f8dec5 +DataFlow,HTAN WUSTL,FALSE,Biospecimen,biospecimen,Not Applicable,syn24615258,Not Applicable,Not Applicable,FALSE,FALSE,f440b3ec-c44e-4f95-bbb5-e086bc38f2e9 +DataFlow,HTAN WUSTL,FALSE,FollowUp,clinical_follow_up,Not Applicable,syn24615259,Not Applicable,Not Applicable,FALSE,FALSE,e3d3dcc3-fa3f-424e-980d-67f67be95d66 +DataFlow,HTAN WUSTL,FALSE,ImagingLevel2,h_and_e_level_1,Not Applicable,syn24628490,Not Applicable,Not Applicable,FALSE,FALSE,bae75e9e-d280-427c-ab2a-b3b8a399454c +DataFlow,HTAN WUSTL,FALSE,Not Applicable,clinical_molecular_test,Not Applicable,syn24860588,Not Applicable,Not Applicable,FALSE,FALSE,343e9cdf-7788-4847-bd73-b84da68966a7 +DataFlow,HTAN WUSTL,FALSE,Not Applicable,clinical_tier_2,Not Applicable,syn24873799,Not Applicable,Not Applicable,FALSE,FALSE,a372099e-f8cc-4f1b-83cc-6f50a0a2f7cf +DataFlow,HTAN WUSTL,FALSE,Not Applicable,clinical_tier_3_breast,Not Applicable,syn24873800,Not Applicable,Not Applicable,FALSE,FALSE,03e05e2c-46a8-4fd5-9ef0-42a66554fad6 +DataFlow,HTAN WUSTL,FALSE,Not Applicable,clinical_tier_3_pancreatic,Not Applicable,syn24873801,Not Applicable,Not Applicable,FALSE,FALSE,81feef8a-e57a-421f-847b-625052a29eed +DataFlow,HTAN WUSTL,FALSE,ImagingLevel2,imc_level_2,Not Applicable,syn24989505,Not Applicable,Not Applicable,FALSE,FALSE,d64c5e4b-e8ea-4a88-a7af-7b7abf8e5507 +DataFlow,HTAN WUSTL,FALSE,BulkRNA-seqLevel1,bulk_RNAseq_level_1,Not Applicable,syn24994805,Not Applicable,Not Applicable,FALSE,FALSE,92666ca3-a100-4cc0-aae5-12857526f8ec +DataFlow,HTAN WUSTL,FALSE,Diagnosis,clinical_diagnosis,Not Applicable,syn25126996,Not Applicable,Not Applicable,FALSE,FALSE,e6af7284-ba7b-448b-a7c1-3cbf36e7558a +DataFlow,HTAN WUSTL,FALSE,OtherAssay,archive,Not Applicable,syn25174770,Not Applicable,Not Applicable,FALSE,FALSE,20c0b14f-f596-4ec5-bd66-a23f5ec17a64 +DataFlow,HTAN WUSTL,FALSE,Not Applicable,minerva,Not Applicable,syn25586708,Not Applicable,Not Applicable,FALSE,FALSE,3b9a88e1-7b8e-4b33-96a1-14854370321d +DataFlow,HTAN WUSTL,FALSE,Not Applicable,scRNAseq_level_1_brca22,Not Applicable,syn27782156,Not Applicable,Not Applicable,FALSE,FALSE,a92e6ea8-efd5-48e8-8ea7-5bee03721c56 +DataFlow,HTAN WUSTL,FALSE,Not Applicable,clinical_follow_up_brca22,Not Applicable,syn27782165,Not Applicable,Not Applicable,FALSE,FALSE,aed52162-a065-4c17-9ff8-68c65f19f4fc +DataFlow,HTAN WUSTL,FALSE,Not Applicable,biospecimen_brca22,Not Applicable,syn27782166,Not Applicable,Not Applicable,FALSE,FALSE,ba05e0d6-e02f-4fa5-b76a-e9c7c272c335 +DataFlow,HTAN WUSTL,FALSE,Not Applicable,clinical_demographics_brca22,Not Applicable,syn27782167,Not Applicable,Not Applicable,FALSE,FALSE,d3b534b6-7b4f-4111-8ab4-9502dac6aa1d +DataFlow,HTAN WUSTL,FALSE,Not Applicable,clinical_diagnosis_brca22,Not Applicable,syn27782168,Not Applicable,Not Applicable,FALSE,FALSE,3b805a32-235a-46de-8ce3-d0239e1df197 +DataFlow,HTAN WUSTL,FALSE,Not Applicable,clinical_exposure_brca22,Not Applicable,syn27782169,Not Applicable,Not Applicable,FALSE,FALSE,9b1ee19f-335a-4f6d-9f05-bdd758ee3500 +DataFlow,HTAN WUSTL,FALSE,Not Applicable,clinical_therapy_brca22,Not Applicable,syn27782170,Not Applicable,Not Applicable,FALSE,FALSE,dadd9719-c4e8-455f-81df-c33a3d17dfb4 +DataFlow,HTAN WUSTL,FALSE,Not Applicable,clinical_molecular_test_brca22,Not Applicable,syn27782171,Not Applicable,Not Applicable,FALSE,FALSE,db438d3e-03d2-4654-a863-350f0f0c36c1 +DataFlow,HTAN WUSTL,FALSE,Not Applicable,clinical_family_history_brca22,Not Applicable,syn27782172,Not Applicable,Not Applicable,FALSE,FALSE,95dedaaa-2f85-43f7-8301-22c61220dd49 +DataFlow,HTAN WUSTL,FALSE,Not Applicable,clinical_exposure_coad22,Not Applicable,syn27782182,Not Applicable,Not Applicable,FALSE,FALSE,c475158f-580a-4f27-9a26-80b96cfc87ad +DataFlow,HTAN WUSTL,FALSE,Not Applicable,clinical_demographics_coad22,Not Applicable,syn27782183,Not Applicable,Not Applicable,FALSE,FALSE,5790a255-7d4c-47b2-919c-92afd7f48735 +DataFlow,HTAN WUSTL,FALSE,Not Applicable,scRNAseq_level_1_coad22,Not Applicable,syn27782184,Not Applicable,Not Applicable,FALSE,FALSE,e01ba084-a982-46ab-98d2-1e272aece9e1 +DataFlow,HTAN WUSTL,FALSE,Not Applicable,biospecimen_coad22,Not Applicable,syn27782185,Not Applicable,Not Applicable,FALSE,FALSE,15fc64f9-5aa1-4495-accf-e9cbefe793fc +DataFlow,HTAN WUSTL,FALSE,Not Applicable,clinical_family_history_coad22,Not Applicable,syn27782186,Not Applicable,Not Applicable,FALSE,FALSE,fa41327e-bfea-4917-b13e-77b6fe78f6e9 +DataFlow,HTAN WUSTL,FALSE,Not Applicable,clinical_therapy_coad22,Not Applicable,syn27782187,Not Applicable,Not Applicable,FALSE,FALSE,f13912b4-3a93-4fe2-bee7-d4b945949406 +DataFlow,HTAN WUSTL,FALSE,Not Applicable,clinical_diagnosis_coad22,Not Applicable,syn27782188,Not Applicable,Not Applicable,FALSE,FALSE,29d6281d-3739-43f5-b5e2-4ef003ed111b +DataFlow,HTAN WUSTL,FALSE,Not Applicable,clinical_molecular_test_coad22,Not Applicable,syn27782189,Not Applicable,Not Applicable,FALSE,FALSE,b619fd9f-7088-4789-9011-8cadef584a1b +DataFlow,HTAN WUSTL,FALSE,Not Applicable,clinical_follow_up_coad22,Not Applicable,syn27782190,Not Applicable,Not Applicable,FALSE,FALSE,67b391ae-0321-4b07-ba16-86ee9fb1089d +DataFlow,HTAN WUSTL,FALSE,Not Applicable,scRNAseq_level_2_coad22,Not Applicable,syn27782206,Not Applicable,Not Applicable,FALSE,FALSE,8b9b71c1-0fbc-4dfd-b9c8-5ef26eec99f4 +DataFlow,HTAN WUSTL,FALSE,Not Applicable,scRNAseq_level_3_brca22,Not Applicable,syn27782207,Not Applicable,Not Applicable,FALSE,FALSE,9602139a-1c8d-4829-8268-dc52b45efe5a +DataFlow,HTAN WUSTL,FALSE,Not Applicable,scRNAseq_level_4_coad22,Not Applicable,syn27782208,Not Applicable,Not Applicable,FALSE,FALSE,61238f43-a493-4362-948f-5e2dacd16e5f +DataFlow,HTAN WUSTL,FALSE,Not Applicable,scRNAseq_level_2_brca22,Not Applicable,syn27782209,Not Applicable,Not Applicable,FALSE,FALSE,09d11578-7928-4ef9-aa04-32be7f4d9c97 +DataFlow,HTAN WUSTL,FALSE,Not Applicable,scRNAseq_level_3_coad22,Not Applicable,syn27782210,Not Applicable,Not Applicable,FALSE,FALSE,c5b63d18-fd9d-43b1-82d9-3ecbc6153ae2 +DataFlow,HTAN WUSTL,FALSE,Not Applicable,scRNAseq_level_4_brca22,Not Applicable,syn27782211,Not Applicable,Not Applicable,FALSE,FALSE,a891b468-d949-4440-9688-4cea5e0a491b +DataFlow,HTAN WUSTL,FALSE,10xVisiumSpatialTranscriptomics-RNA-seqLevel1,visium_level_1,Not Applicable,syn29265269,Not Applicable,Not Applicable,FALSE,FALSE,e3ebb99c-f32d-4cd0-a14c-e5f50cc9d9a7 +DataFlow,HTAN WUSTL,FALSE,ScRNA-seqLevel1,sn_RNAseq_level_1,Not Applicable,syn29282243,Not Applicable,Not Applicable,FALSE,FALSE,bd4382dc-31db-41a4-9dc4-7e000ff82b77 +DataFlow,HTAN WUSTL,FALSE,10xVisiumSpatialTranscriptomics-AuxiliaryFilesLevel2,visium_level_2_auxiliary-ccrcc23,Not Applicable,syn50917840,Not Applicable,Not Applicable,FALSE,FALSE,1075bafe-78ec-4651-9541-a033051246b1 +DataFlow,HTAN WUSTL,FALSE,10xVisiumSpatialTranscriptomics-RNA-seqLevel1,visium_level_1-ccrcc23,Not Applicable,syn50917843,Not Applicable,Not Applicable,FALSE,FALSE,df4ea0cf-5c23-4963-a3df-cc9172fdb5ef +DataFlow,HTAN WUSTL,FALSE,Biospecimen,biospecimen_ccrcc23,Not Applicable,syn50918974,Not Applicable,Not Applicable,FALSE,FALSE,db140c99-c26a-4847-94a9-03dc4ef7f0b4 +DataFlow,HTAN WUSTL,FALSE,Demographics,clinical_demographics_ccrcc23,Not Applicable,syn50918975,Not Applicable,Not Applicable,FALSE,FALSE,c81dc11a-0f01-4063-af87-63a5854e4ca1 +DataFlow,HTAN WUSTL,FALSE,Diagnosis,clinical_diagnosis_ccrcc23,Not Applicable,syn50918976,Not Applicable,Not Applicable,FALSE,FALSE,14900cb2-b1b5-497e-b1b3-30c68ecc791e +DataFlow,HTAN WUSTL,FALSE,Not Applicable,clinical_exposure_ccrcc23,Not Applicable,syn50918977,Not Applicable,Not Applicable,FALSE,FALSE,6d8013b8-1cb5-4907-9eaf-cdde6898357f +DataFlow,HTAN WUSTL,FALSE,FamilyHistory,clinical_family_history_ccrcc23,Not Applicable,syn50918978,Not Applicable,Not Applicable,FALSE,FALSE,3a3591ea-fc90-4d80-96d8-eae873f87e86 +DataFlow,HTAN WUSTL,FALSE,FollowUp,clinical_follow_up_ccrcc23,Not Applicable,syn50918979,Not Applicable,Not Applicable,FALSE,FALSE,ae6043ec-0a22-415f-8389-1d7bdbf229fa +DataFlow,HTAN WUSTL,FALSE,Therapy,clinical_therapy_ccrcc23,Not Applicable,syn50918980,Not Applicable,Not Applicable,FALSE,FALSE,935f3b9f-cb04-45ac-bec3-75bc2445286d +DataFlow,HTAN WUSTL,FALSE,Not Applicable,clinical_molecular_test_ccrcc23,Not Applicable,syn50918981,Not Applicable,Not Applicable,FALSE,FALSE,b66ed58e-763e-4d1c-8f69-5e398a00a406 +DataFlow,HTAN WUSTL,FALSE,Not Applicable,clinical_tier_2_ccrcc23,Not Applicable,syn50918982,Not Applicable,Not Applicable,FALSE,FALSE,7369e351-6be7-42c7-a02c-64c22eeedcf5 +DataFlow,HTAN WUSTL,FALSE,10xVisiumSpatialTranscriptomics-AuxiliaryFilesLevel2,visium_level_2,Not Applicable,syn51111430,Not Applicable,Not Applicable,FALSE,FALSE,1e0b8b6a-7d6d-43c2-82ad-6225e8e2f987 +DataFlow,HTAN WUSTL,FALSE,ScRNA-seqLevel3,sn_RNAseq_level_3,Not Applicable,syn51116841,Not Applicable,Not Applicable,FALSE,FALSE,4858b75f-a024-4286-a570-86921935e014 +DataFlow,HTAN WUSTL,FALSE,ScRNA-seqLevel2,sn_RNAseq_level_2,Not Applicable,syn51119477,Not Applicable,Not Applicable,FALSE,FALSE,d6251c02-0703-4458-a117-0090287d39bb +DataFlow,HTAN WUSTL,FALSE,10xVisiumSpatialTranscriptomics-RNA-seqLevel2,visium_level_2_pdac_bam,Not Applicable,syn51201361,Not Applicable,Not Applicable,FALSE,FALSE,f9948fe3-f6ac-4c22-86f1-300db835516d +DataFlow,HTAN WUSTL,FALSE,10xVisiumSpatialTranscriptomics-RNA-seqLevel3,visium_level_3_pdac,Not Applicable,syn51201474,Not Applicable,Not Applicable,FALSE,FALSE,3b514dcb-f11b-4f13-b1f7-d699f4f1217d +DataFlow,HTAN WUSTL,FALSE,10xVisiumSpatialTranscriptomics-RNA-seqLevel3,visium_level_3_ccrcc23,Not Applicable,syn51202899,Not Applicable,Not Applicable,FALSE,FALSE,9190c131-0149-4710-a495-e8d7dc8c3957 +DataFlow,HTAN WUSTL,FALSE,10xVisiumSpatialTranscriptomics-RNA-seqLevel2,visium_level_2_ccrcc23_bam,Not Applicable,syn51202922,Not Applicable,Not Applicable,FALSE,FALSE,b4e5a395-ef23-4bc7-a3f4-3e80dc6ce7f5 From dba9409a6e0dd1243c4213d132e1baf923fb483f Mon Sep 17 00:00:00 2001 From: linglp Date: Sun, 2 Apr 2023 10:27:00 -0400 Subject: [PATCH 36/36] add another base url --- api-test.py | 1 + 1 file changed, 1 insertion(+) diff --git a/api-test.py b/api-test.py index 244b110..5bb9059 100644 --- a/api-test.py +++ b/api-test.py @@ -138,6 +138,7 @@ def get_datatype_manifest_req(): def get_manifest_generate_req(): #base_url = "https://schematic.dnt-dev.sagebase.org/v1/manifest/generate" + #base_url = "http://a4d669b43078349ec9932b47cd3baa49-1571063749.us-east-1.elb.amazonaws.com:7080/v1/manifest/generate" base_url = "https://schematic-dev.api.sagebionetworks.org/v1/manifest/generate" #base_url = "http://localhost:80/v1/manifest/generate" input_token = get_token()