From 6c818d09268656cd58b66eb1ff54e2f13f5f4ca6 Mon Sep 17 00:00:00 2001 From: lucas-morin Date: Thu, 5 Dec 2024 13:18:22 +0100 Subject: [PATCH] Create a XML backend for PubMed documents based on the pubmed_parser library --- docling/backend/xml_backend.py | 298 + docling/datamodel/base_models.py | 3 + docling/datamodel/document.py | 2 + docling/document_converter.py | 10 +- poetry.lock | 45 +- pyproject.toml | 1 + .../docling_v2/10-1055-a-2308-2290.nxml.itxt | 85 + .../docling_v2/10-1055-a-2308-2290.nxml.json | 50254 ++++++++++++++++ .../docling_v2/10-1055-a-2308-2290.nxml.md | 286 + .../docling_v2/10-1055-a-2313-0311.nxml.itxt | 76 + .../docling_v2/10-1055-a-2313-0311.nxml.json | 2313 + .../docling_v2/10-1055-a-2313-0311.nxml.md | 118 + .../10-1055-s-0043-1775965.nxml.itxt | 124 + .../10-1055-s-0043-1775965.nxml.json | 1955 + .../docling_v2/10-1055-s-0043-1775965.nxml.md | 167 + .../10-1055-s-0044-1786808.nxml.itxt | 72 + .../10-1055-s-0044-1786808.nxml.json | 5643 ++ .../docling_v2/10-1055-s-0044-1786808.nxml.md | 172 + .../10-1055-s-0044-1786809.nxml.itxt | 77 + .../10-1055-s-0044-1786809.nxml.json | 1219 + .../docling_v2/10-1055-s-0044-1786809.nxml.md | 116 + .../docling_v2/1349-7235-63-2593.nxml.itxt | 13 + .../docling_v2/1349-7235-63-2593.nxml.json | 215 + .../docling_v2/1349-7235-63-2593.nxml.md | 14 + .../docling_v2/1349-7235-63-2595.nxml.itxt | 73 + .../docling_v2/1349-7235-63-2595.nxml.json | 24200 ++++++++ .../docling_v2/1349-7235-63-2595.nxml.md | 204 + .../docling_v2/1349-7235-63-2621.nxml.itxt | 39 + .../docling_v2/1349-7235-63-2621.nxml.json | 10880 ++++ .../docling_v2/1349-7235-63-2621.nxml.md | 111 + .../docling_v2/1349-7235-63-2651.nxml.itxt | 48 + .../docling_v2/1349-7235-63-2651.nxml.json | 6357 ++ .../docling_v2/1349-7235-63-2651.nxml.md | 89 + .../docling_v2/2305.03393v1-pg9.json | 2 +- .../docling_v2/2305.03393v1-pg9.pages.json | 2 +- .../PMC4031984-elife-02866.nxml.itxt | 164 + .../PMC4031984-elife-02866.nxml.json | 2601 + .../docling_v2/PMC4031984-elife-02866.nxml.md | 280 + .../docling_v2/pubmed-PMC13900.nxml.itxt | 52 + .../docling_v2/pubmed-PMC13900.nxml.json | 811 + .../docling_v2/pubmed-PMC13900.nxml.md | 70 + .../docling_v2/research.0509.nxml.itxt | 133 + .../docling_v2/research.0509.nxml.json | 2083 + .../docling_v2/research.0509.nxml.md | 205 + tests/data/xml/10-1055-a-2308-2290.nxml | 512 + tests/data/xml/10-1055-a-2313-0311.nxml | 297 + tests/data/xml/10-1055-s-0043-1775965.nxml | 586 + tests/data/xml/10-1055-s-0044-1786808.nxml | 221 + tests/data/xml/10-1055-s-0044-1786809.nxml | 296 + tests/data/xml/1349-7235-63-2593.nxml | 24 + tests/data/xml/1349-7235-63-2595.nxml | 219 + tests/data/xml/1349-7235-63-2621.nxml | 26 + tests/data/xml/1349-7235-63-2651.nxml | 98 + tests/data/xml/PMC4031984-elife-02866.nxml | 39 + tests/data/xml/pubmed-PMC13900.nxml | 2 + tests/data/xml/research.0509.nxml | 634 + tests/test_backend_xml.py | 66 + 57 files changed, 114695 insertions(+), 7 deletions(-) create mode 100755 docling/backend/xml_backend.py create mode 100644 tests/data/groundtruth/docling_v2/10-1055-a-2308-2290.nxml.itxt create mode 100644 tests/data/groundtruth/docling_v2/10-1055-a-2308-2290.nxml.json create mode 100644 tests/data/groundtruth/docling_v2/10-1055-a-2308-2290.nxml.md create mode 100644 tests/data/groundtruth/docling_v2/10-1055-a-2313-0311.nxml.itxt create mode 100644 tests/data/groundtruth/docling_v2/10-1055-a-2313-0311.nxml.json create mode 100644 tests/data/groundtruth/docling_v2/10-1055-a-2313-0311.nxml.md create mode 100644 tests/data/groundtruth/docling_v2/10-1055-s-0043-1775965.nxml.itxt create mode 100644 tests/data/groundtruth/docling_v2/10-1055-s-0043-1775965.nxml.json create mode 100644 tests/data/groundtruth/docling_v2/10-1055-s-0043-1775965.nxml.md create mode 100644 tests/data/groundtruth/docling_v2/10-1055-s-0044-1786808.nxml.itxt create mode 100644 tests/data/groundtruth/docling_v2/10-1055-s-0044-1786808.nxml.json create mode 100644 tests/data/groundtruth/docling_v2/10-1055-s-0044-1786808.nxml.md create mode 100644 tests/data/groundtruth/docling_v2/10-1055-s-0044-1786809.nxml.itxt create mode 100644 tests/data/groundtruth/docling_v2/10-1055-s-0044-1786809.nxml.json create mode 100644 tests/data/groundtruth/docling_v2/10-1055-s-0044-1786809.nxml.md create mode 100644 tests/data/groundtruth/docling_v2/1349-7235-63-2593.nxml.itxt create mode 100644 tests/data/groundtruth/docling_v2/1349-7235-63-2593.nxml.json create mode 100644 tests/data/groundtruth/docling_v2/1349-7235-63-2593.nxml.md create mode 100644 tests/data/groundtruth/docling_v2/1349-7235-63-2595.nxml.itxt create mode 100644 tests/data/groundtruth/docling_v2/1349-7235-63-2595.nxml.json create mode 100644 tests/data/groundtruth/docling_v2/1349-7235-63-2595.nxml.md create mode 100644 tests/data/groundtruth/docling_v2/1349-7235-63-2621.nxml.itxt create mode 100644 tests/data/groundtruth/docling_v2/1349-7235-63-2621.nxml.json create mode 100644 tests/data/groundtruth/docling_v2/1349-7235-63-2621.nxml.md create mode 100644 tests/data/groundtruth/docling_v2/1349-7235-63-2651.nxml.itxt create mode 100644 tests/data/groundtruth/docling_v2/1349-7235-63-2651.nxml.json create mode 100644 tests/data/groundtruth/docling_v2/1349-7235-63-2651.nxml.md create mode 100644 tests/data/groundtruth/docling_v2/PMC4031984-elife-02866.nxml.itxt create mode 100644 tests/data/groundtruth/docling_v2/PMC4031984-elife-02866.nxml.json create mode 100644 tests/data/groundtruth/docling_v2/PMC4031984-elife-02866.nxml.md create mode 100644 tests/data/groundtruth/docling_v2/pubmed-PMC13900.nxml.itxt create mode 100644 tests/data/groundtruth/docling_v2/pubmed-PMC13900.nxml.json create mode 100644 tests/data/groundtruth/docling_v2/pubmed-PMC13900.nxml.md create mode 100644 tests/data/groundtruth/docling_v2/research.0509.nxml.itxt create mode 100644 tests/data/groundtruth/docling_v2/research.0509.nxml.json create mode 100644 tests/data/groundtruth/docling_v2/research.0509.nxml.md create mode 100644 tests/data/xml/10-1055-a-2308-2290.nxml create mode 100644 tests/data/xml/10-1055-a-2313-0311.nxml create mode 100644 tests/data/xml/10-1055-s-0043-1775965.nxml create mode 100644 tests/data/xml/10-1055-s-0044-1786808.nxml create mode 100644 tests/data/xml/10-1055-s-0044-1786809.nxml create mode 100644 tests/data/xml/1349-7235-63-2593.nxml create mode 100644 tests/data/xml/1349-7235-63-2595.nxml create mode 100644 tests/data/xml/1349-7235-63-2621.nxml create mode 100644 tests/data/xml/1349-7235-63-2651.nxml create mode 100644 tests/data/xml/PMC4031984-elife-02866.nxml create mode 100644 tests/data/xml/pubmed-PMC13900.nxml create mode 100644 tests/data/xml/research.0509.nxml create mode 100644 tests/test_backend_xml.py diff --git a/docling/backend/xml_backend.py b/docling/backend/xml_backend.py new file mode 100755 index 00000000..ff01eed3 --- /dev/null +++ b/docling/backend/xml_backend.py @@ -0,0 +1,298 @@ +import hashlib +import logging +from io import BytesIO +from pathlib import Path +from pprint import pprint +from typing import Final, Set, Union + +import pubmed_parser # type: ignore +from bs4 import BeautifulSoup +from docling_core.types.doc import ( + DocItemLabel, + DoclingDocument, + DocumentOrigin, + GroupLabel, + TableCell, + TableData, +) + +from docling.backend.abstract_backend import DeclarativeDocumentBackend +from docling.datamodel.base_models import InputFormat +from docling.datamodel.document import InputDocument + +_log = logging.getLogger(__name__) + + +class XMLDocumentBackend(DeclarativeDocumentBackend): + def __init__(self, in_doc: "InputDocument", path_or_stream: Union[BytesIO, Path]): + super().__init__(in_doc, path_or_stream) + self.path_or_stream = path_or_stream + + # Initialize parents for the document hierarchy + self.parents: dict = {} + + def is_valid(self) -> bool: + return True + + @classmethod + def supports_pagination(cls) -> bool: + return False + + def unload(self): + if isinstance(self.path_or_stream, BytesIO): + self.path_or_stream.close() + self.path_or_stream = None + + @classmethod + def supported_formats(cls) -> Set[InputFormat]: + return {InputFormat.XML} + + def convert(self) -> DoclingDocument: + # Create empty document + origin = DocumentOrigin( + filename=self.file.name or "file", + mimetype="text/xml", + binary_hash=self.document_hash, + ) + doc = DoclingDocument(name=self.file.stem or "file", origin=origin) + + _log.debug("Trying to convert XML...") + + # Get parsed XML components + xml_components: dict = self.parse(str(self.file)) + + # Add XML components to the document + doc = self.populate_document(doc, xml_components) + return doc + + def parse(self, filename: str) -> dict: + """Parsing PubMed document.""" + try: + info = pubmed_parser.parse_pubmed_xml(filename, include_path=True) + except Exception as e: + print(f"Skipping title, authors and abstract for: {filename}") + info = None + references: list = pubmed_parser.parse_pubmed_references(filename) + figure_captions: list = pubmed_parser.parse_pubmed_caption(filename) + paragraphs: list = pubmed_parser.parse_pubmed_paragraph(filename) + tables: list = pubmed_parser.parse_pubmed_table(filename, return_xml=True) + + return { + "info": info, + "references": references, + "figure_captions": figure_captions, + "paragraphs": paragraphs, + "tables": tables, + } + + def populate_document( + self, doc: DoclingDocument, xml_components: dict + ) -> DoclingDocument: + if xml_components["info"] != None: + self.add_title(doc, xml_components) + self.add_authors(doc, xml_components) + self.add_abstract(doc, xml_components) + + self.add_main_text(doc, xml_components) + + if xml_components["tables"] != None: + self.add_tables(doc, xml_components) + + if xml_components["figure_captions"] != None: + self.add_figure_captions(doc, xml_components) + + self.add_references(doc, xml_components) + + return doc + + def add_figure_captions(self, doc: DoclingDocument, xml_components: dict) -> None: + doc.add_heading(parent=None, text="Figures") + for figure_caption_xml_component in xml_components["figure_captions"]: + figure_caption_text = ( + figure_caption_xml_component["fig_label"] + + " " + + figure_caption_xml_component["fig_caption"].replace("\n", "") + ) + fig_caption = doc.add_text( + label=DocItemLabel.CAPTION, text=figure_caption_text + ) + doc.add_picture( + parent=None, + caption=fig_caption, + ) + return + + def add_title(self, doc: DoclingDocument, xml_components: dict) -> None: + doc.add_text( + parent=None, + text=xml_components["info"]["full_title"], + label=DocItemLabel.TITLE, + ) + return + + def add_authors(self, doc: DoclingDocument, xml_components: dict) -> None: + affiliations_map: dict = {} + for affiliation in xml_components["info"]["affiliation_list"]: + affiliations_map[affiliation[0]] = affiliation[1] + + authors: dict = {} + for authorlist in xml_components["info"]["author_list"]: + authorlist_ = reversed([name for name in authorlist[:-1] if name]) + author = " ".join(authorlist_) + if not author.strip(): + continue + if author not in authors.keys(): + authors[author] = [] + aff_index = authorlist[-1] + affiliation = affiliations_map[aff_index] + authors[author].append({"name": affiliation}) + + authors_affiliations: list = [] + for author, affiliations_ in authors.items(): + authors_affiliations.append(author) + for affiliation in affiliations_: + authors_affiliations.append(affiliation["name"]) + + doc.add_text( + parent=None, + text="; ".join(authors_affiliations), + label=DocItemLabel.PARAGRAPH, + ) + return + + def add_abstract(self, doc: DoclingDocument, xml_components: dict) -> None: + abstract_text: str = ( + xml_components["info"]["abstract"].replace("\n", " ").strip() + ) + if abstract_text.strip(): + doc.add_text(text=abstract_text, label=DocItemLabel.TEXT) + return + + def add_main_text(self, doc: DoclingDocument, xml_components: dict) -> None: + sections: list = [] + parent = None + for paragraph in xml_components["paragraphs"]: + if ("section" in paragraph) and (paragraph["section"] == ""): + continue + + if "section" in paragraph and paragraph["section"] not in sections: + section: str = paragraph["section"].replace("\n", " ").strip() + sections.append(section) + if section in self.parents: + parent = self.parents[section] + else: + parent = None + + self.parents[section] = doc.add_heading(parent=parent, text=section) + + if "text" in paragraph: + text: str = paragraph["text"].replace("\n", " ").strip() + + if paragraph["section"] in self.parents: + parent = self.parents[paragraph["section"]] + else: + parent = None + + doc.add_text(parent=parent, label=DocItemLabel.TEXT, text=text) + return + + def add_references(self, doc: DoclingDocument, xml_components: dict) -> None: + doc.add_heading(parent=None, text="References") + current_list = doc.add_group(label=GroupLabel.LIST, name="list") + for reference in xml_components["references"]: + reference_text: str = ( + reference["name"] + + ". " + + reference["article_title"] + + ". " + + reference["journal"] + + " (" + + reference["year"] + + ")" + ) + doc.add_list_item( + text=reference_text, enumerated=False, parent=current_list + ) + return + + def add_tables(self, doc: DoclingDocument, xml_components: dict) -> None: + doc.add_heading(parent=None, text="Tables") + for table_xml_component in xml_components["tables"]: + try: + self.add_table(doc, table_xml_component) + except Exception as e: + print(f"Skipping unsupported table for: {str(self.file)}") + pass + return + + def add_table(self, doc: DoclingDocument, table_xml_component: dict) -> None: + table_xml = table_xml_component["table_xml"].decode("utf-8") + soup = BeautifulSoup(table_xml, "html.parser") + table_tag = soup.find("table") + + nested_tables = table_tag.find("table") + if nested_tables is not None: + print(f"Skipping nested table for: {str(self.file)}") + return + + # Count the number of rows (number of elements) + num_rows = len(table_tag.find_all("tr")) + + # Find the number of columns (taking into account colspan) + num_cols = 0 + for row in table_tag.find_all("tr"): + col_count = 0 + for cell in row.find_all(["td", "th"]): + colspan = int(cell.get("colspan", 1)) + col_count += colspan + num_cols = max(num_cols, col_count) + + grid = [[None for _ in range(num_cols)] for _ in range(num_rows)] + + data = TableData(num_rows=num_rows, num_cols=num_cols, table_cells=[]) + + # Iterate over the rows in the table + for row_idx, row in enumerate(table_tag.find_all("tr")): + + # For each row, find all the column cells (both and ) + cells = row.find_all(["td", "th"]) + + # Check if each cell in the row is a header -> means it is a column header + col_header = True + for j, html_cell in enumerate(cells): + if html_cell.name == "td": + col_header = False + + col_idx = 0 + # Extract and print the text content of each cell + for _, html_cell in enumerate(cells): + text = html_cell.text + + col_span = int(html_cell.get("colspan", 1)) + row_span = int(html_cell.get("rowspan", 1)) + + while grid[row_idx][col_idx] is not None: + col_idx += 1 + for r in range(row_span): + for c in range(col_span): + grid[row_idx + r][col_idx + c] = text + + cell = TableCell( + text=text, + row_span=row_span, + col_span=col_span, + start_row_offset_idx=row_idx, + end_row_offset_idx=row_idx + row_span, + start_col_offset_idx=col_idx, + end_col_offset_idx=col_idx + col_span, + col_header=col_header, + row_header=((not col_header) and html_cell.name == "th"), + ) + data.table_cells.append(cell) + + table_caption = doc.add_text( + label=DocItemLabel.CAPTION, + text=table_xml_component["label"] + " " + table_xml_component["caption"], + ) + doc.add_table(data=data, parent=None, caption=table_caption) + return diff --git a/docling/datamodel/base_models.py b/docling/datamodel/base_models.py index 311d6d01..3b259a5d 100644 --- a/docling/datamodel/base_models.py +++ b/docling/datamodel/base_models.py @@ -28,6 +28,7 @@ class InputFormat(str, Enum): DOCX = "docx" PPTX = "pptx" HTML = "html" + XML = "xml" IMAGE = "image" PDF = "pdf" ASCIIDOC = "asciidoc" @@ -48,6 +49,7 @@ FormatToExtensions: Dict[InputFormat, List[str]] = { InputFormat.PDF: ["pdf"], InputFormat.MD: ["md"], InputFormat.HTML: ["html", "htm", "xhtml"], + InputFormat.XML: ["xml", "nxml"], InputFormat.IMAGE: ["jpg", "jpeg", "png", "tif", "tiff", "bmp"], InputFormat.ASCIIDOC: ["adoc", "asciidoc", "asc"], InputFormat.XLSX: ["xlsx"], @@ -64,6 +66,7 @@ FormatToMimeType: Dict[InputFormat, List[str]] = { "application/vnd.openxmlformats-officedocument.presentationml.presentation", ], InputFormat.HTML: ["text/html", "application/xhtml+xml"], + InputFormat.XML: ["text/xml", "text/nxml"], InputFormat.IMAGE: [ "image/png", "image/jpeg", diff --git a/docling/datamodel/document.py b/docling/datamodel/document.py index be4e9a12..57602c3f 100644 --- a/docling/datamodel/document.py +++ b/docling/datamodel/document.py @@ -525,6 +525,8 @@ class _DocumentConversionInput(BaseModel): mime = FormatToMimeType[InputFormat.ASCIIDOC][0] elif ext in FormatToExtensions[InputFormat.HTML]: mime = FormatToMimeType[InputFormat.HTML][0] + elif ext in FormatToExtensions[InputFormat.XML]: + mime = FormatToMimeType[InputFormat.XML][0] elif ext in FormatToExtensions[InputFormat.MD]: mime = FormatToMimeType[InputFormat.MD][0] diff --git a/docling/document_converter.py b/docling/document_converter.py index 74e6f84a..ca809ccc 100644 --- a/docling/document_converter.py +++ b/docling/document_converter.py @@ -15,6 +15,7 @@ from docling.backend.md_backend import MarkdownDocumentBackend from docling.backend.msexcel_backend import MsExcelDocumentBackend from docling.backend.mspowerpoint_backend import MsPowerpointDocumentBackend from docling.backend.msword_backend import MsWordDocumentBackend +from docling.backend.xml_backend import XMLDocumentBackend from docling.datamodel.base_models import ConversionStatus, DocumentStream, InputFormat from docling.datamodel.document import ( ConversionResult, @@ -75,6 +76,11 @@ class HTMLFormatOption(FormatOption): backend: Type[AbstractDocumentBackend] = HTMLDocumentBackend +class XMLFormatOption(FormatOption): + pipeline_cls: Type = SimplePipeline + backend: Type[AbstractDocumentBackend] = XMLDocumentBackend + + class PdfFormatOption(FormatOption): pipeline_cls: Type = StandardPdfPipeline backend: Type[AbstractDocumentBackend] = DoclingParseDocumentBackend @@ -104,6 +110,9 @@ _format_to_default_options = { InputFormat.HTML: FormatOption( pipeline_cls=SimplePipeline, backend=HTMLDocumentBackend ), + InputFormat.XML: FormatOption( + pipeline_cls=SimplePipeline, backend=XMLDocumentBackend + ), InputFormat.IMAGE: FormatOption( pipeline_cls=StandardPdfPipeline, backend=DoclingParseDocumentBackend ), @@ -160,7 +169,6 @@ class DocumentConverter: max_num_pages: int = sys.maxsize, max_file_size: int = sys.maxsize, ) -> ConversionResult: - all_res = self.convert_all( source=[source], raises_on_error=raises_on_error, diff --git a/poetry.lock b/poetry.lock index 7ee6070a..c9368bef 100644 --- a/poetry.lock +++ b/poetry.lock @@ -3510,7 +3510,6 @@ description = "Nvidia JIT LTO Library" optional = false python-versions = ">=3" files = [ - {file = "nvidia_nvjitlink_cu12-12.4.127-py3-none-manylinux2014_aarch64.whl", hash = "sha256:4abe7fef64914ccfa909bc2ba39739670ecc9e820c83ccc7a6ed414122599b83"}, {file = "nvidia_nvjitlink_cu12-12.4.127-py3-none-manylinux2014_x86_64.whl", hash = "sha256:06b3b9b25bf3f8af351d664978ca26a16d2c5127dbd53c0497e28d1fb9611d57"}, {file = "nvidia_nvjitlink_cu12-12.4.127-py3-none-win_amd64.whl", hash = "sha256:fd9020c501d27d135f983c6d3e244b197a7ccad769e34df53a42e276b0e25fa1"}, ] @@ -3667,9 +3666,9 @@ numpy = [ {version = ">=1.21.0", markers = "python_version == \"3.9\" and platform_system == \"Darwin\" and platform_machine == \"arm64\""}, {version = ">=1.19.3", markers = "platform_system == \"Linux\" and platform_machine == \"aarch64\" and python_version >= \"3.8\" and python_version < \"3.10\" or python_version > \"3.9\" and python_version < \"3.10\" or python_version >= \"3.9\" and platform_system != \"Darwin\" and python_version < \"3.10\" or python_version >= \"3.9\" and platform_machine != \"arm64\" and python_version < \"3.10\""}, {version = ">=1.26.0", markers = "python_version >= \"3.12\""}, - {version = ">=1.23.5", markers = "python_version >= \"3.11\" and python_version < \"3.12\""}, {version = ">=1.21.4", markers = "python_version >= \"3.10\" and platform_system == \"Darwin\" and python_version < \"3.11\""}, {version = ">=1.21.2", markers = "platform_system != \"Darwin\" and python_version >= \"3.10\" and python_version < \"3.11\""}, + {version = ">=1.23.5", markers = "python_version >= \"3.11\" and python_version < \"3.12\""}, ] [[package]] @@ -3693,9 +3692,9 @@ numpy = [ {version = ">=1.21.0", markers = "python_version == \"3.9\" and platform_system == \"Darwin\" and platform_machine == \"arm64\""}, {version = ">=1.19.3", markers = "platform_system == \"Linux\" and platform_machine == \"aarch64\" and python_version >= \"3.8\" and python_version < \"3.10\" or python_version > \"3.9\" and python_version < \"3.10\" or python_version >= \"3.9\" and platform_system != \"Darwin\" and python_version < \"3.10\" or python_version >= \"3.9\" and platform_machine != \"arm64\" and python_version < \"3.10\""}, {version = ">=1.26.0", markers = "python_version >= \"3.12\""}, - {version = ">=1.23.5", markers = "python_version >= \"3.11\" and python_version < \"3.12\""}, {version = ">=1.21.4", markers = "python_version >= \"3.10\" and platform_system == \"Darwin\" and python_version < \"3.11\""}, {version = ">=1.21.2", markers = "platform_system != \"Darwin\" and python_version >= \"3.10\" and python_version < \"3.11\""}, + {version = ">=1.23.5", markers = "python_version >= \"3.11\" and python_version < \"3.12\""}, ] [[package]] @@ -4316,6 +4315,28 @@ files = [ {file = "ptyprocess-0.7.0.tar.gz", hash = "sha256:5c5d0a3b48ceee0b48485e0c26037c0acd7d29765ca3fbb5cb3831d347423220"}, ] +[[package]] +name = "pubmed-parser" +version = "0.5.1" +description = "A python parser for Pubmed Open-Access Subset and MEDLINE XML repository" +optional = false +python-versions = "*" +files = [ + {file = "pubmed_parser-0.5.1-py3-none-any.whl", hash = "sha256:b2273d9c2f2291941354ee1d74c45f0079141779eac3b09c36efb85b4453e75d"}, + {file = "pubmed_parser-0.5.1.tar.gz", hash = "sha256:62db11ea0397db2c0aa7981972db03dc83ad79a76d3ee72704876240f69b67b5"}, +] + +[package.dependencies] +lxml = "*" +numpy = "*" +requests = "*" +six = "*" +unidecode = "*" + +[package.extras] +docs = ["sphinx", "sphinx-gallery", "sphinx-rtd-theme"] +tests = ["pytest", "pytest-cov"] + [[package]] name = "pure-eval" version = "0.2.3" @@ -5924,6 +5945,11 @@ files = [ {file = "scikit_learn-1.5.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f60021ec1574e56632be2a36b946f8143bf4e5e6af4a06d85281adc22938e0dd"}, {file = "scikit_learn-1.5.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:394397841449853c2290a32050382edaec3da89e35b3e03d6cc966aebc6a8ae6"}, {file = "scikit_learn-1.5.2-cp312-cp312-win_amd64.whl", hash = "sha256:57cc1786cfd6bd118220a92ede80270132aa353647684efa385a74244a41e3b1"}, + {file = "scikit_learn-1.5.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:e9a702e2de732bbb20d3bad29ebd77fc05a6b427dc49964300340e4c9328b3f5"}, + {file = "scikit_learn-1.5.2-cp313-cp313-macosx_12_0_arm64.whl", hash = "sha256:b0768ad641981f5d3a198430a1d31c3e044ed2e8a6f22166b4d546a5116d7908"}, + {file = "scikit_learn-1.5.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:178ddd0a5cb0044464fc1bfc4cca5b1833bfc7bb022d70b05db8530da4bb3dd3"}, + {file = "scikit_learn-1.5.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f7284ade780084d94505632241bf78c44ab3b6f1e8ccab3d2af58e0e950f9c12"}, + {file = "scikit_learn-1.5.2-cp313-cp313-win_amd64.whl", hash = "sha256:b7b0f9a0b1040830d38c39b91b3a44e1b643f4b36e36567b80b7c6bd2202a27f"}, {file = "scikit_learn-1.5.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:757c7d514ddb00ae249832fe87100d9c73c6ea91423802872d9e74970a0e40b9"}, {file = "scikit_learn-1.5.2-cp39-cp39-macosx_12_0_arm64.whl", hash = "sha256:52788f48b5d8bca5c0736c175fa6bdaab2ef00a8f536cda698db61bd89c551c1"}, {file = "scikit_learn-1.5.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:643964678f4b5fbdc95cbf8aec638acc7aa70f5f79ee2cdad1eec3df4ba6ead8"}, @@ -6949,6 +6975,17 @@ files = [ {file = "ujson-5.10.0.tar.gz", hash = "sha256:b3cd8f3c5d8c7738257f1018880444f7b7d9b66232c64649f562d7ba86ad4bc1"}, ] +[[package]] +name = "unidecode" +version = "1.3.8" +description = "ASCII transliterations of Unicode text" +optional = false +python-versions = ">=3.5" +files = [ + {file = "Unidecode-1.3.8-py3-none-any.whl", hash = "sha256:d130a61ce6696f8148a3bd8fe779c99adeb4b870584eeb9526584e9aa091fd39"}, + {file = "Unidecode-1.3.8.tar.gz", hash = "sha256:cfdb349d46ed3873ece4586b96aa75258726e2fa8ec21d6f00a591d98806c2f4"}, +] + [[package]] name = "urllib3" version = "2.2.3" @@ -7415,4 +7452,4 @@ tesserocr = ["tesserocr"] [metadata] lock-version = "2.0" python-versions = "^3.9" -content-hash = "c08324f73fb809466ad3494605a6745ec6c9f38b60e7b1f516f3f93a29534ca4" +content-hash = "285c497f2010752795a6664177071f9f4fc3a4cee6b49d076b3309dd6cd322c8" diff --git a/pyproject.toml b/pyproject.toml index 6ae41b8f..f8c12cd5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -57,6 +57,7 @@ onnxruntime = [ { version = ">=1.7.0,<1.20.0", optional = true, markers = "python_version < '3.10'" }, { version = "^1.7.0", optional = true, markers = "python_version >= '3.10'" } ] +pubmed-parser = "^0.5.1" [tool.poetry.group.dev.dependencies] black = {extras = ["jupyter"], version = "^24.4.2"} diff --git a/tests/data/groundtruth/docling_v2/10-1055-a-2308-2290.nxml.itxt b/tests/data/groundtruth/docling_v2/10-1055-a-2308-2290.nxml.itxt new file mode 100644 index 00000000..944e9650 --- /dev/null +++ b/tests/data/groundtruth/docling_v2/10-1055-a-2308-2290.nxml.itxt @@ -0,0 +1,85 @@ +item-0 at level 0: unspecified: group _root_ + item-1 at level 1: title: The Association between Obstruct ... o-Sample Mendelian Randomization Study + item-2 at level 1: paragraph: Zhihai Huang; Emergency Medicine ... niversity, Zhanjiang, Guangdong, China + item-3 at level 1: text: Background Despite previous obse ... tween OSA and VTE in either direction. + item-4 at level 1: section_header: Introduction + item-5 at level 2: text: Obstructive sleep apnea (OSA) is ... ed with the prevalence of obesity. 3 4 + item-6 at level 2: text: There is mounting evidence indic ... potential bidirectional relationship. + item-7 at level 2: text: Although previous observational ... in classical epidemiologic studies. 17 + item-8 at level 1: section_header: Data Source and Selection of Instrumental Variables + item-9 at level 2: text: Summary-level data for OSA were ... data sources is provided in Table 1 . + item-10 at level 2: text: The selection criteria for IVs w ... t of IV selection is shown in Fig. 1 . + item-11 at level 1: section_header: Statistical Analysis + item-12 at level 2: text: This study employed the multipli ... indicating significant heterogeneity. + item-13 at level 1: section_header: Instrumental Variable Selection + item-14 at level 2: text: As previously outlined, a total ... lysis are provided in Tables 2 and 3 . + item-15 at level 1: section_header: Effects of OSA on VTE + item-16 at level 2: text: Fig. 2 shows the estimates of th ... to detect any evidence of pleiotropy. + item-17 at level 2: text: The validation analysis using ge ... netic association between OSA and VTE. + item-18 at level 1: section_header: Effects of VTE on OSA + item-19 at level 2: text: We conducted reverse MR analysis ... med the reliability of the MR results. + item-20 at level 1: section_header: Discussion + item-21 at level 2: text: Our findings contradict some pre ... an increased risk of VTE. 29 30 31 32 + item-22 at level 2: text: However, these studies were hind ... adjusting for obesity confounding. 36 + item-23 at level 2: text: While our MR study did not find ... A and VTE, delving into greater depth. + item-24 at level 1: section_header: Tables + item-26 at level 1: table with [6x7] + item-26 at level 2: caption: Table 1 Information on data sources + item-28 at level 1: table with [47x17] + item-28 at level 2: caption: Table 2 Genetic variants used in the MR analysis + item-30 at level 1: table with [112x11] + item-30 at level 2: caption: Table 3 Genetic variants used in the reverse MR analysis + item-31 at level 1: section_header: Figures + item-33 at level 1: picture + item-33 at level 2: caption: Fig. 1 The flowchart of instrumental variables selection. LD, linkage disequilibrium; SNPs, single-nucleotide polymorphisms; BMI, body mass index; VTE, venous thromboembolism; PE, pulmonary embolism; DVT, deep vein thrombosis; OSA, obstructive sleep apnea; ①, represents OSA (Jiang et al) as the outcome; ②, represents OSA (Campos et al) as the outcome. + item-35 at level 1: picture + item-35 at level 2: caption: Fig. 2 The genetic association of OSA with VTE/PE/DVT. OSA, obstructive sleep apnea; VTE, venous thromboembolism; PE, pulmonary embolism; DVT, deep vein thrombosis; MR, mendelian randomization; IVW, inverse variance weighted; PRESSO, pleiotropy residual sum and outlier; P*, represents P for heterogeneity test; P**, represents P for MR-Egger intercept; P***, represents P for MR-PRESSO global test. + item-37 at level 1: picture + item-37 at level 2: caption: Fig. 3 The genetic association of VTE/PE/DVT with OSA. OSA, obstructive sleep apnea; VTE, venous thromboembolism; PE, pulmonary embolism; DVT, deep vein thrombosis; MR, mendelian randomization; IVW, inverse variance weighted; PRESSO, pleiotropy residual sum and outlier; P*, represents P for heterogeneity test; P**, represents P for MR-Egger intercept; P***, represents P for MR-PRESSO global test. + item-38 at level 1: section_header: References + item-39 at level 1: list: group list + item-40 at level 2: list_item: S H Wang; W S Chen; S E Tang. Be ... ve sleep apnea. Front Pharmacol (2019) + item-41 at level 2: list_item: C R Innes; P T Kelly; M Hlavac; ... pnoea during wakefulness. Sleep (2015) + item-42 at level 2: list_item: C V Senaratna; J L Perret; C J L ... ystematic review. Sleep Med Rev (2017) + item-43 at level 2: list_item: J Bai; H Wen; J Tai. Altered spo ... apnea syndrome. Front Neurosci (2021) + item-44 at level 2: list_item: J M Marin; A Agusti; I Villar. A ... and risk of hypertension. JAMA (2012) + item-45 at level 2: list_item: S Redline; G Yenokyan; D J Gottl ... tudy. Am J Respir Crit Care Med (2010) + item-46 at level 2: list_item: O Mesarwi; A Malhotra. Obstructi ... relationship. J Clin Sleep Med (2020) + item-47 at level 2: list_item: F Piccirillo; S P Crispino; L Bu ... and heart failure. Am J Cardiol (2023) + item-48 at level 2: list_item: K Glise Sandblad; A Rosengren; J ... eople. Res Pract Thromb Haemost (2022) + item-49 at level 2: list_item: R Raj; A Paturi; M A Ahmed; S E ... sm: a systematic review. Cureus (2022) + item-50 at level 2: list_item: C C Lin; J J Keller; J H Kang; T ... Vasc Surg Venous Lymphat Disord (2013) + item-51 at level 2: list_item: Y H Peng; W C Liao; W S Chung. A ... ective cohort study. Thromb Res (2014) + item-52 at level 2: list_item: O Nepveu; C Orione; C Tromeur. A ... from a French cohort. Thromb J (2022) + item-53 at level 2: list_item: O Dabbagh; M Sabharwal; O Hassan ... among females not males. Chest (2010) + item-54 at level 2: list_item: J P Bosanquet; B C Bade; M F Zia ... lation. Clin Appl Thromb Hemost (2011) + item-55 at level 2: list_item: A Xue; L Jiang; Z Zhu. Genome-wi ... ongitudinal changes. Nat Commun (2021) + item-56 at level 2: list_item: B Pu; P Gu; C Zheng; L Ma; X Zhe ... domization analysis. Front Nutr (2022) + item-57 at level 2: list_item: L Jiang; Z Zheng; H Fang; J Yang ... r biobank-scale data. Nat Genet (2021) + item-58 at level 2: list_item: A I Campos; N Ingold; Y Huang. D ... AS analysis with snoring. Sleep (2023) + item-59 at level 2: list_item: R Feng; M Lu; J Xu. Pulmonary em ... omization study. BMC Genom Data (2022) + item-60 at level 2: list_item: R Molenberg; C HL Thio; M W Aalb ... ian randomization study. Stroke (2022) + item-61 at level 2: list_item: S H Wang; B T Keenan; A Wiemken. ... fat. Am J Respir Crit Care Med (2020) + item-62 at level 2: list_item: C Hotoleanu. Association between ... thromboembolism. Med Pharm Rep (2020) + item-63 at level 2: list_item: H Zhao; X Jin. Causal associatio ... randomization study. Front Nutr (2022) + item-64 at level 2: list_item: B Tang; Y Wang; X Jiang. Genetic ... randomization study. Neurology (2022) + item-65 at level 2: list_item: S S Dong; K Zhang; Y Guo. Phenom ... randomization study. Genome Med (2021) + item-66 at level 2: list_item: W Huang; J Xiao; J Ji; L Chen. A ... lian randomization study. eLife (2021) + item-67 at level 2: list_item: X Chen; J Kong; J Pan. Kidney da ... ndomization study. EBioMedicine (2021) + item-68 at level 2: list_item: I Arnulf; M Merino-Andreu; A Per ... nd venous thromboembolism. JAMA (2002) + item-69 at level 2: list_item: K T Chou; C C Huang; Y M Chen. S ... -matched cohort study. Am J Med (2012) + item-70 at level 2: list_item: A Alonso-Fernández; M de la Peña ... monary embolism. Mayo Clin Proc (2013) + item-71 at level 2: list_item: M Ambrosetti; A Lucioni; W Ageno ... nea syndrome?. J Thromb Haemost (2004) + item-72 at level 2: list_item: S Reutrakul; B Mokhlesi. Obstruc ... state of the art review. Chest (2017) + item-73 at level 2: list_item: S Lindström; M Germain; M Crous- ... Randomization study. Hum Genet (2017) + item-74 at level 2: list_item: M V Genuardi; A Rathore; R P Ogi ... with OSA: a cohort study. Chest (2022) + item-75 at level 2: list_item: R Aman; V G Michael; P O Rachel. ... lism. American Thoracic Society (2019) + item-76 at level 2: list_item: C T Esmon. Basic mechanisms and ... of venous thrombosis. Blood Rev (2009) + item-77 at level 2: list_item: A García-Ortega; E Mañas; R Lópe ... ical implications. Eur Respir J (2019) + item-78 at level 2: list_item: H Xiong; M Lao; L Wang. The inci ... ctive cohort study. Front Oncol (2022) + item-79 at level 2: list_item: A Holt; J Bjerre; B Zareini. Sle ... CPAP) therapy. J Am Heart Assoc (2018) + item-80 at level 2: list_item: A Alonso-Fernández; N Toledo-Pon ... ing relationship. Sleep Med Rev (2020) + item-81 at level 2: list_item: S N Hong; H C Yun; J H Yoo; S H ... JAMA Otolaryngol Head Neck Surg (2017) + item-82 at level 2: list_item: G V Robinson; J C Pepperell; H C ... mised controlled trials. Thorax (2004) + item-83 at level 2: list_item: R von Känel; J S Loredo; F L Pow ... apnea. Clin Hemorheol Microcirc (2005) + item-84 at level 2: list_item: C Zolotoff; L Bertoletti; D Goza ... blood-brain barrier. J Clin Med (2021) \ No newline at end of file diff --git a/tests/data/groundtruth/docling_v2/10-1055-a-2308-2290.nxml.json b/tests/data/groundtruth/docling_v2/10-1055-a-2308-2290.nxml.json new file mode 100644 index 00000000..342751f9 --- /dev/null +++ b/tests/data/groundtruth/docling_v2/10-1055-a-2308-2290.nxml.json @@ -0,0 +1,50254 @@ +{ + "schema_name": "DoclingDocument", + "version": "1.0.0", + "name": "10-1055-a-2308-2290", + "origin": { + "mimetype": "text/xml", + "binary_hash": 1913351418329417302, + "filename": "10-1055-a-2308-2290.nxml" + }, + "furniture": { + "self_ref": "#/furniture", + "children": [], + "name": "_root_", + "label": "unspecified" + }, + "body": { + "self_ref": "#/body", + "children": [ + { + "$ref": "#/texts/0" + }, + { + "$ref": "#/texts/1" + }, + { + "$ref": "#/texts/2" + }, + { + "$ref": "#/texts/3" + }, + { + "$ref": "#/texts/7" + }, + { + "$ref": "#/texts/10" + }, + { + "$ref": "#/texts/12" + }, + { + "$ref": "#/texts/14" + }, + { + "$ref": "#/texts/17" + }, + { + "$ref": "#/texts/19" + }, + { + "$ref": "#/texts/23" + }, + { + "$ref": "#/texts/24" + }, + { + "$ref": "#/tables/0" + }, + { + "$ref": "#/texts/25" + }, + { + "$ref": "#/tables/1" + }, + { + "$ref": "#/texts/26" + }, + { + "$ref": "#/tables/2" + }, + { + "$ref": "#/texts/27" + }, + { + "$ref": "#/texts/28" + }, + { + "$ref": "#/pictures/0" + }, + { + "$ref": "#/texts/29" + }, + { + "$ref": "#/pictures/1" + }, + { + "$ref": "#/texts/30" + }, + { + "$ref": "#/pictures/2" + }, + { + "$ref": "#/texts/31" + }, + { + "$ref": "#/groups/0" + } + ], + "name": "_root_", + "label": "unspecified" + }, + "groups": [ + { + "self_ref": "#/groups/0", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/32" + }, + { + "$ref": "#/texts/33" + }, + { + "$ref": "#/texts/34" + }, + { + "$ref": "#/texts/35" + }, + { + "$ref": "#/texts/36" + }, + { + "$ref": "#/texts/37" + }, + { + "$ref": "#/texts/38" + }, + { + "$ref": "#/texts/39" + }, + { + "$ref": "#/texts/40" + }, + { + "$ref": "#/texts/41" + }, + { + "$ref": "#/texts/42" + }, + { + "$ref": "#/texts/43" + }, + { + "$ref": "#/texts/44" + }, + { + "$ref": "#/texts/45" + }, + { + "$ref": "#/texts/46" + }, + { + "$ref": "#/texts/47" + }, + { + "$ref": "#/texts/48" + }, + { + "$ref": "#/texts/49" + }, + { + "$ref": "#/texts/50" + }, + { + "$ref": "#/texts/51" + }, + { + "$ref": "#/texts/52" + }, + { + "$ref": "#/texts/53" + }, + { + "$ref": "#/texts/54" + }, + { + "$ref": "#/texts/55" + }, + { + "$ref": "#/texts/56" + }, + { + "$ref": "#/texts/57" + }, + { + "$ref": "#/texts/58" + }, + { + "$ref": "#/texts/59" + }, + { + "$ref": "#/texts/60" + }, + { + "$ref": "#/texts/61" + }, + { + "$ref": "#/texts/62" + }, + { + "$ref": "#/texts/63" + }, + { + "$ref": "#/texts/64" + }, + { + "$ref": "#/texts/65" + }, + { + "$ref": "#/texts/66" + }, + { + "$ref": "#/texts/67" + }, + { + "$ref": "#/texts/68" + }, + { + "$ref": "#/texts/69" + }, + { + "$ref": "#/texts/70" + }, + { + "$ref": "#/texts/71" + }, + { + "$ref": "#/texts/72" + }, + { + "$ref": "#/texts/73" + }, + { + "$ref": "#/texts/74" + }, + { + "$ref": "#/texts/75" + }, + { + "$ref": "#/texts/76" + } + ], + "name": "list", + "label": "list" + } + ], + "texts": [ + { + "self_ref": "#/texts/0", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "title", + "prov": [], + "orig": "The Association between Obstructive Sleep Apnea and Venous Thromboembolism: A Bidirectional Two-Sample Mendelian Randomization Study", + "text": "The Association between Obstructive Sleep Apnea and Venous Thromboembolism: A Bidirectional Two-Sample Mendelian Randomization Study" + }, + { + "self_ref": "#/texts/1", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "paragraph", + "prov": [], + "orig": "Zhihai Huang; Emergency Medicine Center, Affiliated Hospital of Guangdong Medical University, Zhanjiang, Guangdong, China; Zhenzhen Zheng; Respiratory and Critical Care Medicine, The Second Affiliated Hospital of Guangdong Medical University, Zhanjiang, Guangdong, China; Lingpin Pang; Emergency Medicine Center, Affiliated Hospital of Guangdong Medical University, Zhanjiang, Guangdong, China; Kaili Fu; Respiratory and Critical Care Medicine, The Second Affiliated Hospital of Guangdong Medical University, Zhanjiang, Guangdong, China; Junfen Cheng; Respiratory and Critical Care Medicine, The Second Affiliated Hospital of Guangdong Medical University, Zhanjiang, Guangdong, China; Ming Zhong; Emergency Medicine Center, Affiliated Hospital of Guangdong Medical University, Zhanjiang, Guangdong, China; Lingyue Song; Emergency Medicine Center, Affiliated Hospital of Guangdong Medical University, Zhanjiang, Guangdong, China; Dingyu Guo; Emergency Medicine Center, Affiliated Hospital of Guangdong Medical University, Zhanjiang, Guangdong, China; Qiaoyun Chen; Emergency Medicine Center, Affiliated Hospital of Guangdong Medical University, Zhanjiang, Guangdong, China; Yanxi Li; Emergency Medicine Center, Affiliated Hospital of Guangdong Medical University, Zhanjiang, Guangdong, China; Yongting Lv; Emergency Medicine Center, Affiliated Hospital of Guangdong Medical University, Zhanjiang, Guangdong, China; Riken Chen; Respiratory and Critical Care Medicine, The Second Affiliated Hospital of Guangdong Medical University, Zhanjiang, Guangdong, China; Xishi Sun; Emergency Medicine Center, Affiliated Hospital of Guangdong Medical University, Zhanjiang, Guangdong, China", + "text": "Zhihai Huang; Emergency Medicine Center, Affiliated Hospital of Guangdong Medical University, Zhanjiang, Guangdong, China; Zhenzhen Zheng; Respiratory and Critical Care Medicine, The Second Affiliated Hospital of Guangdong Medical University, Zhanjiang, Guangdong, China; Lingpin Pang; Emergency Medicine Center, Affiliated Hospital of Guangdong Medical University, Zhanjiang, Guangdong, China; Kaili Fu; Respiratory and Critical Care Medicine, The Second Affiliated Hospital of Guangdong Medical University, Zhanjiang, Guangdong, China; Junfen Cheng; Respiratory and Critical Care Medicine, The Second Affiliated Hospital of Guangdong Medical University, Zhanjiang, Guangdong, China; Ming Zhong; Emergency Medicine Center, Affiliated Hospital of Guangdong Medical University, Zhanjiang, Guangdong, China; Lingyue Song; Emergency Medicine Center, Affiliated Hospital of Guangdong Medical University, Zhanjiang, Guangdong, China; Dingyu Guo; Emergency Medicine Center, Affiliated Hospital of Guangdong Medical University, Zhanjiang, Guangdong, China; Qiaoyun Chen; Emergency Medicine Center, Affiliated Hospital of Guangdong Medical University, Zhanjiang, Guangdong, China; Yanxi Li; Emergency Medicine Center, Affiliated Hospital of Guangdong Medical University, Zhanjiang, Guangdong, China; Yongting Lv; Emergency Medicine Center, Affiliated Hospital of Guangdong Medical University, Zhanjiang, Guangdong, China; Riken Chen; Respiratory and Critical Care Medicine, The Second Affiliated Hospital of Guangdong Medical University, Zhanjiang, Guangdong, China; Xishi Sun; Emergency Medicine Center, Affiliated Hospital of Guangdong Medical University, Zhanjiang, Guangdong, China" + }, + { + "self_ref": "#/texts/2", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "Background Despite previous observational studies linking obstructive sleep apnea (OSA) to venous thromboembolism (VTE), these findings remain controversial. This study aimed to explore the association between OSA and VTE, including pulmonary embolism (PE) and deep vein thrombosis (DVT), at a genetic level using a bidirectional two-sample Mendelian randomization (MR) analysis. Methods Utilizing summary-level data from large-scale genome-wide association studies in European individuals, we designed a bidirectional two-sample MR analysis to comprehensively assess the genetic association between OSA and VTE. The inverse variance weighted was used as the primary method for MR analysis. In addition, MR\u2013Egger, weighted median, and MR pleiotropy residual sum and outlier (MR-PRESSO) were used for complementary analyses. Furthermore, a series of sensitivity analyses were performed to ensure the validity and robustness of the results. Results The initial and validation MR analyses indicated that genetically predicted OSA had no effects on the risk of VTE (including PE and DVT). Likewise, the reverse MR analysis did not find substantial support for a significant association between VTE (including PE and DVT) and OSA. Supplementary MR methods and sensitivity analyses provided additional confirmation of the reliability of the MR results. Conclusion Our bidirectional two-sample MR analysis did not find genetic evidence supporting a significant association between OSA and VTE in either direction.", + "text": "Background Despite previous observational studies linking obstructive sleep apnea (OSA) to venous thromboembolism (VTE), these findings remain controversial. This study aimed to explore the association between OSA and VTE, including pulmonary embolism (PE) and deep vein thrombosis (DVT), at a genetic level using a bidirectional two-sample Mendelian randomization (MR) analysis. Methods Utilizing summary-level data from large-scale genome-wide association studies in European individuals, we designed a bidirectional two-sample MR analysis to comprehensively assess the genetic association between OSA and VTE. The inverse variance weighted was used as the primary method for MR analysis. In addition, MR\u2013Egger, weighted median, and MR pleiotropy residual sum and outlier (MR-PRESSO) were used for complementary analyses. Furthermore, a series of sensitivity analyses were performed to ensure the validity and robustness of the results. Results The initial and validation MR analyses indicated that genetically predicted OSA had no effects on the risk of VTE (including PE and DVT). Likewise, the reverse MR analysis did not find substantial support for a significant association between VTE (including PE and DVT) and OSA. Supplementary MR methods and sensitivity analyses provided additional confirmation of the reliability of the MR results. Conclusion Our bidirectional two-sample MR analysis did not find genetic evidence supporting a significant association between OSA and VTE in either direction." + }, + { + "self_ref": "#/texts/3", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/4" + }, + { + "$ref": "#/texts/5" + }, + { + "$ref": "#/texts/6" + } + ], + "label": "section_header", + "prov": [], + "orig": "Introduction", + "text": "Introduction", + "level": 1 + }, + { + "self_ref": "#/texts/4", + "parent": { + "$ref": "#/texts/3" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "Obstructive sleep apnea (OSA) is a prevalent sleep disorder characterized by the recurrent partial or complete obstruction and collapse of the upper airway during sleep, leading to episodes of apneas and hypoventilation. 1 2 Research studies have reported that the prevalence of OSA in the adult population ranges from 9 to 38%, with a higher prevalence observed in males (13\u201333%) compared to females (6\u201319%). Moreover, the prevalence of OSA tends to increase with age and is closely associated with the prevalence of obesity. 3 4", + "text": "Obstructive sleep apnea (OSA) is a prevalent sleep disorder characterized by the recurrent partial or complete obstruction and collapse of the upper airway during sleep, leading to episodes of apneas and hypoventilation. 1 2 Research studies have reported that the prevalence of OSA in the adult population ranges from 9 to 38%, with a higher prevalence observed in males (13\u201333%) compared to females (6\u201319%). Moreover, the prevalence of OSA tends to increase with age and is closely associated with the prevalence of obesity. 3 4" + }, + { + "self_ref": "#/texts/5", + "parent": { + "$ref": "#/texts/3" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "There is mounting evidence indicating that OSA serves as an independent risk factor for several cardiovascular diseases, including hypertension, 5 stroke, 6 pulmonary hypertension, 7 and heart failure. 8 Venous thromboembolism (VTE), including deep vein thrombosis (DVT) and pulmonary embolism (PE), is recognized as the third most common cardiovascular disease worldwide. 9 There is evidence suggesting that OSA may also be linked to an increased risk of VTE. 10 For instance, a prospective study involving 15,664 subjects (1,424 subjects with OSA) observed a twofold higher incidence of VTE in patients with OSA compared to non-OSA patients. 11 Similarly, findings from a national retrospective cohort study conducted by Peng and his colleagues indicated that patients with OSA had a 3.50-fold higher risk of DVT and a 3.97-fold higher risk of PE compared to the general population. 12 However, the results of observational studies remain somewhat controversial. A 5-year prospective study involving 2,109 subjects concluded that OSA did not increase the risk of VTE recurrence. 13 Another retrospective analysis involving 1,584 patients, of which 848 were women, revealed an intriguing discovery suggesting that OSA may serve as an independent risk factor for VTE solely in women, rather than in men. 14 Moreover, patients with VTE were found to have a higher prevalence of OSA, 15 suggesting a potential bidirectional relationship.", + "text": "There is mounting evidence indicating that OSA serves as an independent risk factor for several cardiovascular diseases, including hypertension, 5 stroke, 6 pulmonary hypertension, 7 and heart failure. 8 Venous thromboembolism (VTE), including deep vein thrombosis (DVT) and pulmonary embolism (PE), is recognized as the third most common cardiovascular disease worldwide. 9 There is evidence suggesting that OSA may also be linked to an increased risk of VTE. 10 For instance, a prospective study involving 15,664 subjects (1,424 subjects with OSA) observed a twofold higher incidence of VTE in patients with OSA compared to non-OSA patients. 11 Similarly, findings from a national retrospective cohort study conducted by Peng and his colleagues indicated that patients with OSA had a 3.50-fold higher risk of DVT and a 3.97-fold higher risk of PE compared to the general population. 12 However, the results of observational studies remain somewhat controversial. A 5-year prospective study involving 2,109 subjects concluded that OSA did not increase the risk of VTE recurrence. 13 Another retrospective analysis involving 1,584 patients, of which 848 were women, revealed an intriguing discovery suggesting that OSA may serve as an independent risk factor for VTE solely in women, rather than in men. 14 Moreover, patients with VTE were found to have a higher prevalence of OSA, 15 suggesting a potential bidirectional relationship." + }, + { + "self_ref": "#/texts/6", + "parent": { + "$ref": "#/texts/3" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "Although previous observational studies have investigated the potential association between OSA and VTE, elucidating aspects of the association from these studies is challenging due to the limitations of potential confounders and reverse causality bias. Mendelian randomization (MR) is a genetic epidemiological methodology that utilizes genetic variants, such as single-nucleotide polymorphisms (SNPs), as instrumental variables (IVs) to infer the genetic association between exposure and outcome. 16 The advantage of MR analysis lies in the random assignment of genetic variants during meiosis, which effectively circumvents the effects of potential confounders and reverse causality encountered in classical epidemiologic studies. 17", + "text": "Although previous observational studies have investigated the potential association between OSA and VTE, elucidating aspects of the association from these studies is challenging due to the limitations of potential confounders and reverse causality bias. Mendelian randomization (MR) is a genetic epidemiological methodology that utilizes genetic variants, such as single-nucleotide polymorphisms (SNPs), as instrumental variables (IVs) to infer the genetic association between exposure and outcome. 16 The advantage of MR analysis lies in the random assignment of genetic variants during meiosis, which effectively circumvents the effects of potential confounders and reverse causality encountered in classical epidemiologic studies. 17" + }, + { + "self_ref": "#/texts/7", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/8" + }, + { + "$ref": "#/texts/9" + } + ], + "label": "section_header", + "prov": [], + "orig": "Data Source and Selection of Instrumental Variables", + "text": "Data Source and Selection of Instrumental Variables", + "level": 1 + }, + { + "self_ref": "#/texts/8", + "parent": { + "$ref": "#/texts/7" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "Summary-level data for OSA were obtained from the GWAS study conducted by Jiang et al on European individuals, which included 2,827 cases and 453,521 controls, covering 11,831,932 SNPs. 18 To ensure the robustness of the findings, additional datasets for OSA were acquired from a GWAS meta-analysis conducted by Campos and colleagues, comprising 25,008 cases of European ancestry and 337,630 controls, involving 9,031,949 SNPs for validation analysis. 19 The study conducted a meta-analysis of GWAS datasets from five cohorts in the United Kingdom, Canada, Australia, the United States, and Finland. These summary-level GWAS statistics for OSA can be accessed from the GWAS Catalog ( https://www.ebi.ac.uk/gwas/downloads ). VTE was defined as a condition comprising PE (blockage of the pulmonary artery or its branches by an embolus) and DVT (formation of a blood clot in a deep vein). The GWAS datasets for VTE (19,372 cases and 357,905 controls), PE (9,243 cases and 367,108 controls), and DVT (9,109 cases and 324,121 controls) were derived from the FinnGen consortium (Release 9, https://r9.finngen.fi/ ). Detailed information regarding the data sources is provided in Table 1 .", + "text": "Summary-level data for OSA were obtained from the GWAS study conducted by Jiang et al on European individuals, which included 2,827 cases and 453,521 controls, covering 11,831,932 SNPs. 18 To ensure the robustness of the findings, additional datasets for OSA were acquired from a GWAS meta-analysis conducted by Campos and colleagues, comprising 25,008 cases of European ancestry and 337,630 controls, involving 9,031,949 SNPs for validation analysis. 19 The study conducted a meta-analysis of GWAS datasets from five cohorts in the United Kingdom, Canada, Australia, the United States, and Finland. These summary-level GWAS statistics for OSA can be accessed from the GWAS Catalog ( https://www.ebi.ac.uk/gwas/downloads ). VTE was defined as a condition comprising PE (blockage of the pulmonary artery or its branches by an embolus) and DVT (formation of a blood clot in a deep vein). The GWAS datasets for VTE (19,372 cases and 357,905 controls), PE (9,243 cases and 367,108 controls), and DVT (9,109 cases and 324,121 controls) were derived from the FinnGen consortium (Release 9, https://r9.finngen.fi/ ). Detailed information regarding the data sources is provided in Table 1 ." + }, + { + "self_ref": "#/texts/9", + "parent": { + "$ref": "#/texts/7" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "The selection criteria for IVs were as follows: (1) the threshold for genome-wide significant SNPs for VTE (including PE and DVT) was set at p \u2009<\u20095.0\u2009\u00d7\u200910 \u22128 , while the threshold for OSA was adjusted to p \u2009<\u20091\u2009\u00d7\u200910 \u22125 due to the inability to detect OSA-associated SNPs using a significance level of p \u2009<\u20095.0\u2009\u00d7\u200910 \u22128 . (2) SNPs with linkage disequilibrium effects ( r 2 \u2009<\u20090.001 within a 10,000-kb window) were excluded to ensure the independence of the selected IVs. (3) The strength of the association between IVs and exposure was measured using the F-statistic [F-statistic\u2009=\u2009(Beta/SE) 2 ]. 20 SNPs with F-statistics >10 were retained to avoid the effects of weak instrumental bias. (4) During the harmonization process, SNPs that did not match the results were removed, along with palindromic SNPs with ambiguous allele frequencies (0.42\u20130.58). 21 (5) Previous studies have demonstrated obesity as an established risk factor for OSA and VTE. 22 23 SNPs associated with body mass index were queried and excluded by Phenoscanner (http://www.phenoscanner.medschl.cam.ac.uk/). The flowchart of IV selection is shown in Fig. 1 .", + "text": "The selection criteria for IVs were as follows: (1) the threshold for genome-wide significant SNPs for VTE (including PE and DVT) was set at p \u2009<\u20095.0\u2009\u00d7\u200910 \u22128 , while the threshold for OSA was adjusted to p \u2009<\u20091\u2009\u00d7\u200910 \u22125 due to the inability to detect OSA-associated SNPs using a significance level of p \u2009<\u20095.0\u2009\u00d7\u200910 \u22128 . (2) SNPs with linkage disequilibrium effects ( r 2 \u2009<\u20090.001 within a 10,000-kb window) were excluded to ensure the independence of the selected IVs. (3) The strength of the association between IVs and exposure was measured using the F-statistic [F-statistic\u2009=\u2009(Beta/SE) 2 ]. 20 SNPs with F-statistics >10 were retained to avoid the effects of weak instrumental bias. (4) During the harmonization process, SNPs that did not match the results were removed, along with palindromic SNPs with ambiguous allele frequencies (0.42\u20130.58). 21 (5) Previous studies have demonstrated obesity as an established risk factor for OSA and VTE. 22 23 SNPs associated with body mass index were queried and excluded by Phenoscanner (http://www.phenoscanner.medschl.cam.ac.uk/). The flowchart of IV selection is shown in Fig. 1 ." + }, + { + "self_ref": "#/texts/10", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/11" + } + ], + "label": "section_header", + "prov": [], + "orig": "Statistical Analysis", + "text": "Statistical Analysis", + "level": 1 + }, + { + "self_ref": "#/texts/11", + "parent": { + "$ref": "#/texts/10" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "This study employed the multiplicative random-effects inverse variance weighted (IVW) method as the primary approach for conducting MR analysis to evaluate the genetic association between OSA and VTE. The IVW method meta-analyzes the Wald ratio estimates for each SNP on the outcome, providing precise estimates of causal effects when all selected SNPs are valid IVs. 24 However, the estimates of causal effects from the IVW method may be biased by the influence of pleiotropic IVs. To ensure the validity and robustness of the results, sensitivity analyses were implemented using three additional MR methods, namely MR\u2013Egger, weighted median, and MR pleiotropy residual sum and outlier (MR-PRESSO). The MR\u2013Egger method is able to generate reliable causal estimates even in situations where all IVs are invalid. Additionally, MR\u2013Egger offers an intercept test to detect horizontal pleiotropy, with a significance threshold of p <0.05 indicating the presence of horizontal pleiotropy. 25 In comparison to the IVW and MR\u2013Egger methods, the weighted median method demonstrates greater robustness and provides consistent estimates of causal effects, even when up to 50% of the IVs are invalid instruments. 26 The MR-PRESSO method identifies outliers with potential horizontal pleiotropy and provides estimates after removing the outliers, where p <0.05 for the global test indicates the presence of outliers with horizontal pleiotropy. 27 Furthermore, the Cochran Q test was utilized to examine heterogeneity, with a significance threshold of p <0.05 indicating significant heterogeneity.", + "text": "This study employed the multiplicative random-effects inverse variance weighted (IVW) method as the primary approach for conducting MR analysis to evaluate the genetic association between OSA and VTE. The IVW method meta-analyzes the Wald ratio estimates for each SNP on the outcome, providing precise estimates of causal effects when all selected SNPs are valid IVs. 24 However, the estimates of causal effects from the IVW method may be biased by the influence of pleiotropic IVs. To ensure the validity and robustness of the results, sensitivity analyses were implemented using three additional MR methods, namely MR\u2013Egger, weighted median, and MR pleiotropy residual sum and outlier (MR-PRESSO). The MR\u2013Egger method is able to generate reliable causal estimates even in situations where all IVs are invalid. Additionally, MR\u2013Egger offers an intercept test to detect horizontal pleiotropy, with a significance threshold of p <0.05 indicating the presence of horizontal pleiotropy. 25 In comparison to the IVW and MR\u2013Egger methods, the weighted median method demonstrates greater robustness and provides consistent estimates of causal effects, even when up to 50% of the IVs are invalid instruments. 26 The MR-PRESSO method identifies outliers with potential horizontal pleiotropy and provides estimates after removing the outliers, where p <0.05 for the global test indicates the presence of outliers with horizontal pleiotropy. 27 Furthermore, the Cochran Q test was utilized to examine heterogeneity, with a significance threshold of p <0.05 indicating significant heterogeneity." + }, + { + "self_ref": "#/texts/12", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/13" + } + ], + "label": "section_header", + "prov": [], + "orig": "Instrumental Variable Selection", + "text": "Instrumental Variable Selection", + "level": 1 + }, + { + "self_ref": "#/texts/13", + "parent": { + "$ref": "#/texts/12" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "As previously outlined, a total of 13 and 28 SNPs were identified through a rigorous screening process to evaluate the effects of OSA on VTE, PE, and DVT. In the reverse MR analysis, 23, 14, 18, 19, 11, and 13 SNPs were identified to assess the implications of reverse association, respectively. Additional details regarding these genetic variants utilized for MR analysis are provided in Tables 2 and 3 .", + "text": "As previously outlined, a total of 13 and 28 SNPs were identified through a rigorous screening process to evaluate the effects of OSA on VTE, PE, and DVT. In the reverse MR analysis, 23, 14, 18, 19, 11, and 13 SNPs were identified to assess the implications of reverse association, respectively. Additional details regarding these genetic variants utilized for MR analysis are provided in Tables 2 and 3 ." + }, + { + "self_ref": "#/texts/14", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/15" + }, + { + "$ref": "#/texts/16" + } + ], + "label": "section_header", + "prov": [], + "orig": "Effects of OSA on VTE", + "text": "Effects of OSA on VTE", + "level": 1 + }, + { + "self_ref": "#/texts/15", + "parent": { + "$ref": "#/texts/14" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "Fig. 2 shows the estimates of the effects for OSA on VTE, PE, and DVT. In the initial MR analysis using the OSA (Jiang et al) dataset, the random-effects IVW method revealed no significant association between OSA and the risk of VTE (odds ratio [OR]: 0.964, 95% confidence interval [CI]: 0.914-1.016, p \u2009=\u20090.172), PE (OR: 0.929, 95% CI: 0.857\u20131.006, p \u2009=\u20090.069), PE (OR: 0.929, 95% CI: 0.857\u20131.006, p \u2009=\u20090.069), and DVT (OR: 1.001, 95% CI: 0.936\u20131.071, p \u2009=\u20090.973). No heterogeneity was observed using the Cochran Q test (all p *\u2009>\u20090.05). The MR\u2013Egger intercept test (all p **\u2009>\u20090.05) and the MR-PRESSO global test (all p ***\u2009>\u20090.05) failed to detect any evidence of pleiotropy.", + "text": "Fig. 2 shows the estimates of the effects for OSA on VTE, PE, and DVT. In the initial MR analysis using the OSA (Jiang et al) dataset, the random-effects IVW method revealed no significant association between OSA and the risk of VTE (odds ratio [OR]: 0.964, 95% confidence interval [CI]: 0.914-1.016, p \u2009=\u20090.172), PE (OR: 0.929, 95% CI: 0.857\u20131.006, p \u2009=\u20090.069), PE (OR: 0.929, 95% CI: 0.857\u20131.006, p \u2009=\u20090.069), and DVT (OR: 1.001, 95% CI: 0.936\u20131.071, p \u2009=\u20090.973). No heterogeneity was observed using the Cochran Q test (all p *\u2009>\u20090.05). The MR\u2013Egger intercept test (all p **\u2009>\u20090.05) and the MR-PRESSO global test (all p ***\u2009>\u20090.05) failed to detect any evidence of pleiotropy." + }, + { + "self_ref": "#/texts/16", + "parent": { + "$ref": "#/texts/14" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "The validation analysis using genetic variants of OSA (Campos et al) yielded similar results. Notably, heterogeneity was observed in the sensitivity analysis for OSA (Campos et al) and VTE ( p *\u2009=\u20090.018). However, considering the random-effects IVW model employed, the level of heterogeneity was deemed acceptable. 28 Despite the presence of outliers suggested by the MR-PRESSO global test ( p \u2009=\u20090.015), no significant association between OSA and VTE (OR: 1.071, 95% CI: 0.917\u20131.251, p \u2009=\u20090.396) was found after excluding an outlier (rs7106583). In addition, none of the three complementary MR methods supported a genetic association between OSA and VTE.", + "text": "The validation analysis using genetic variants of OSA (Campos et al) yielded similar results. Notably, heterogeneity was observed in the sensitivity analysis for OSA (Campos et al) and VTE ( p *\u2009=\u20090.018). However, considering the random-effects IVW model employed, the level of heterogeneity was deemed acceptable. 28 Despite the presence of outliers suggested by the MR-PRESSO global test ( p \u2009=\u20090.015), no significant association between OSA and VTE (OR: 1.071, 95% CI: 0.917\u20131.251, p \u2009=\u20090.396) was found after excluding an outlier (rs7106583). In addition, none of the three complementary MR methods supported a genetic association between OSA and VTE." + }, + { + "self_ref": "#/texts/17", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/18" + } + ], + "label": "section_header", + "prov": [], + "orig": "Effects of VTE on OSA", + "text": "Effects of VTE on OSA", + "level": 1 + }, + { + "self_ref": "#/texts/18", + "parent": { + "$ref": "#/texts/17" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "We conducted reverse MR analysis to further evaluate the effects of VTE (including PE and DVT) on OSA. Both MR analyses yielded consistent results, indicating no significant effects of VTE, PE, and DVT on OSA (see Fig. 3 ). Moreover, the Cochran Q test revealed no heterogeneity (all p *\u2009>\u20090.05), and both the MR\u2013Egger intercept test and the MR-PRESSO global test found no evidence of pleiotropy (all p **\u2009>\u20090.05 and p ***\u2009>\u20090.05, respectively) (see Fig. 3 ). In summary, a range of sensitivities confirmed the reliability of the MR results.", + "text": "We conducted reverse MR analysis to further evaluate the effects of VTE (including PE and DVT) on OSA. Both MR analyses yielded consistent results, indicating no significant effects of VTE, PE, and DVT on OSA (see Fig. 3 ). Moreover, the Cochran Q test revealed no heterogeneity (all p *\u2009>\u20090.05), and both the MR\u2013Egger intercept test and the MR-PRESSO global test found no evidence of pleiotropy (all p **\u2009>\u20090.05 and p ***\u2009>\u20090.05, respectively) (see Fig. 3 ). In summary, a range of sensitivities confirmed the reliability of the MR results." + }, + { + "self_ref": "#/texts/19", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/20" + }, + { + "$ref": "#/texts/21" + }, + { + "$ref": "#/texts/22" + } + ], + "label": "section_header", + "prov": [], + "orig": "Discussion", + "text": "Discussion", + "level": 1 + }, + { + "self_ref": "#/texts/20", + "parent": { + "$ref": "#/texts/19" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "Our findings contradict some previous observational studies suggesting a link between susceptibility to OSA and an increased risk of VTE. 29 30 31 32", + "text": "Our findings contradict some previous observational studies suggesting a link between susceptibility to OSA and an increased risk of VTE. 29 30 31 32" + }, + { + "self_ref": "#/texts/21", + "parent": { + "$ref": "#/texts/19" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "However, these studies were hindered by inadequate consideration of confounding factors, particularly obesity, along with methodological flaws and small sample sizes. Obesity is widely recognized as a significant risk factor for both OSA 33 and VTE. 34 Therefore, it is crucial not to overlook the impact of obesity in striving for a deeper understanding of the potential association between OSA and VTE. Notably, a cohort study involving 31,309 subjects indicated a higher likelihood of VTE development among patients with more severe OSA. Yet, this association disappeared upon adjusting for confounders, notably obesity levels. 35 Thus, it is plausible that the observed association between OSA and VTE could be attributed to obesity confounding. Additionally, Aman and his colleagues' report yielded consistent results, suggesting that OSA does not elevate the risk of VTE after adjusting for obesity confounding. 36", + "text": "However, these studies were hindered by inadequate consideration of confounding factors, particularly obesity, along with methodological flaws and small sample sizes. Obesity is widely recognized as a significant risk factor for both OSA 33 and VTE. 34 Therefore, it is crucial not to overlook the impact of obesity in striving for a deeper understanding of the potential association between OSA and VTE. Notably, a cohort study involving 31,309 subjects indicated a higher likelihood of VTE development among patients with more severe OSA. Yet, this association disappeared upon adjusting for confounders, notably obesity levels. 35 Thus, it is plausible that the observed association between OSA and VTE could be attributed to obesity confounding. Additionally, Aman and his colleagues' report yielded consistent results, suggesting that OSA does not elevate the risk of VTE after adjusting for obesity confounding. 36" + }, + { + "self_ref": "#/texts/22", + "parent": { + "$ref": "#/texts/19" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "While our MR study did not find evidence supporting a genetic association between OSA and VTE, it remains possible that OSA could influence the onset or progression of VTE. Virchow's triad depicts three major factors inducing VTE: endothelial injury, venous stasis, and hypercoagulability. 37 The pathophysiologic mechanism linking OSA and VTE remains unknown but may be associated with OSA's capacity to affect the three classical mechanistic pathways of Virchow's triad. 38 Intermittent hypoxia, a signature feature of OSA, can induce oxidative stress and activate inflammatory markers, further damaging the vascular endothelium. 39 40 OSA-associated hemodynamic alterations and reduced physical activities may result in venous stasis. 41 A growing number of studies have demonstrated a strong correlation between OSA and hypercoagulability. A retrospective cohort study aimed at assessing coagulation in patients with OSA suggested that patients with moderate to severe OSA experienced elevated markers of blood coagulability, primarily evidenced by shortened prothrombin time, compared to healthy individuals. 42 Two additional studies of thrombotic parameters found that patients with OSA possessed higher levels of the thrombin\u2013antithrombin complex. 43 44 Furthermore, several coagulation factors, such as fibrinogen, coagulation factor VII, coagulation factor XII, and vascular hemophilic factor, which play a crucial role in the coagulation process, are elevated in patients with OSA. 45 Collectively, this evidence supports that patients with OSA are in a state of hypercoagulability, facilitating our understanding of the underlying pathophysiologic mechanisms between OSA and VTE. Considering these potential mechanisms, future large-scale studies are necessary to thoroughly explore the potential association between OSA and VTE, delving into greater depth.", + "text": "While our MR study did not find evidence supporting a genetic association between OSA and VTE, it remains possible that OSA could influence the onset or progression of VTE. Virchow's triad depicts three major factors inducing VTE: endothelial injury, venous stasis, and hypercoagulability. 37 The pathophysiologic mechanism linking OSA and VTE remains unknown but may be associated with OSA's capacity to affect the three classical mechanistic pathways of Virchow's triad. 38 Intermittent hypoxia, a signature feature of OSA, can induce oxidative stress and activate inflammatory markers, further damaging the vascular endothelium. 39 40 OSA-associated hemodynamic alterations and reduced physical activities may result in venous stasis. 41 A growing number of studies have demonstrated a strong correlation between OSA and hypercoagulability. A retrospective cohort study aimed at assessing coagulation in patients with OSA suggested that patients with moderate to severe OSA experienced elevated markers of blood coagulability, primarily evidenced by shortened prothrombin time, compared to healthy individuals. 42 Two additional studies of thrombotic parameters found that patients with OSA possessed higher levels of the thrombin\u2013antithrombin complex. 43 44 Furthermore, several coagulation factors, such as fibrinogen, coagulation factor VII, coagulation factor XII, and vascular hemophilic factor, which play a crucial role in the coagulation process, are elevated in patients with OSA. 45 Collectively, this evidence supports that patients with OSA are in a state of hypercoagulability, facilitating our understanding of the underlying pathophysiologic mechanisms between OSA and VTE. Considering these potential mechanisms, future large-scale studies are necessary to thoroughly explore the potential association between OSA and VTE, delving into greater depth." + }, + { + "self_ref": "#/texts/23", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "section_header", + "prov": [], + "orig": "Tables", + "text": "Tables", + "level": 1 + }, + { + "self_ref": "#/texts/24", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [], + "orig": "Table 1 Information on data sources", + "text": "Table 1 Information on data sources" + }, + { + "self_ref": "#/texts/25", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [], + "orig": "Table 2 Genetic variants used in the MR analysis", + "text": "Table 2 Genetic variants used in the MR analysis" + }, + { + "self_ref": "#/texts/26", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [], + "orig": "Table 3 Genetic variants used in the reverse MR analysis", + "text": "Table 3 Genetic variants used in the reverse MR analysis" + }, + { + "self_ref": "#/texts/27", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "section_header", + "prov": [], + "orig": "Figures", + "text": "Figures", + "level": 1 + }, + { + "self_ref": "#/texts/28", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [], + "orig": "Fig. 1 The flowchart of instrumental variables selection. LD, linkage disequilibrium; SNPs, single-nucleotide polymorphisms; BMI, body mass index; VTE, venous thromboembolism; PE, pulmonary embolism; DVT, deep vein thrombosis; OSA, obstructive sleep apnea; \u2460, represents OSA (Jiang et al) as the outcome; \u2461, represents OSA (Campos et al) as the outcome.", + "text": "Fig. 1 The flowchart of instrumental variables selection. LD, linkage disequilibrium; SNPs, single-nucleotide polymorphisms; BMI, body mass index; VTE, venous thromboembolism; PE, pulmonary embolism; DVT, deep vein thrombosis; OSA, obstructive sleep apnea; \u2460, represents OSA (Jiang et al) as the outcome; \u2461, represents OSA (Campos et al) as the outcome." + }, + { + "self_ref": "#/texts/29", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [], + "orig": "Fig. 2 The genetic association of OSA with VTE/PE/DVT. OSA, obstructive sleep apnea; VTE, venous thromboembolism; PE, pulmonary embolism; DVT, deep vein thrombosis; MR, mendelian randomization; IVW, inverse variance weighted; PRESSO, pleiotropy residual sum and outlier; P*, represents P for heterogeneity test; P**, represents P for MR-Egger intercept; P***, represents P for MR-PRESSO global test.", + "text": "Fig. 2 The genetic association of OSA with VTE/PE/DVT. OSA, obstructive sleep apnea; VTE, venous thromboembolism; PE, pulmonary embolism; DVT, deep vein thrombosis; MR, mendelian randomization; IVW, inverse variance weighted; PRESSO, pleiotropy residual sum and outlier; P*, represents P for heterogeneity test; P**, represents P for MR-Egger intercept; P***, represents P for MR-PRESSO global test." + }, + { + "self_ref": "#/texts/30", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [], + "orig": "Fig. 3 The genetic association of VTE/PE/DVT with OSA. OSA, obstructive sleep apnea; VTE, venous thromboembolism; PE, pulmonary embolism; DVT, deep vein thrombosis; MR, mendelian randomization; IVW, inverse variance weighted; PRESSO, pleiotropy residual sum and outlier; P*, represents P for heterogeneity test; P**, represents P for MR-Egger intercept; P***, represents P for MR-PRESSO global test.", + "text": "Fig. 3 The genetic association of VTE/PE/DVT with OSA. OSA, obstructive sleep apnea; VTE, venous thromboembolism; PE, pulmonary embolism; DVT, deep vein thrombosis; MR, mendelian randomization; IVW, inverse variance weighted; PRESSO, pleiotropy residual sum and outlier; P*, represents P for heterogeneity test; P**, represents P for MR-Egger intercept; P***, represents P for MR-PRESSO global test." + }, + { + "self_ref": "#/texts/31", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "section_header", + "prov": [], + "orig": "References", + "text": "References", + "level": 1 + }, + { + "self_ref": "#/texts/32", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "S H Wang; W S Chen; S E Tang. Benzodiazepines associated with acute respiratory failure in patients with obstructive sleep apnea. Front Pharmacol (2019)", + "text": "S H Wang; W S Chen; S E Tang. Benzodiazepines associated with acute respiratory failure in patients with obstructive sleep apnea. Front Pharmacol (2019)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/33", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "C R Innes; P T Kelly; M Hlavac; T R Melzer; R D Jones. Decreased regional cerebral perfusion in moderate-severe obstructive sleep apnoea during wakefulness. Sleep (2015)", + "text": "C R Innes; P T Kelly; M Hlavac; T R Melzer; R D Jones. Decreased regional cerebral perfusion in moderate-severe obstructive sleep apnoea during wakefulness. Sleep (2015)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/34", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "C V Senaratna; J L Perret; C J Lodge. Prevalence of obstructive sleep apnea in the general population: a systematic review. Sleep Med Rev (2017)", + "text": "C V Senaratna; J L Perret; C J Lodge. Prevalence of obstructive sleep apnea in the general population: a systematic review. Sleep Med Rev (2017)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/35", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "J Bai; H Wen; J Tai. Altered spontaneous brain activity related to neurologic and sleep dysfunction in children with obstructive sleep apnea syndrome. Front Neurosci (2021)", + "text": "J Bai; H Wen; J Tai. Altered spontaneous brain activity related to neurologic and sleep dysfunction in children with obstructive sleep apnea syndrome. Front Neurosci (2021)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/36", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "J M Marin; A Agusti; I Villar. Association between treated and untreated obstructive sleep apnea and risk of hypertension. JAMA (2012)", + "text": "J M Marin; A Agusti; I Villar. Association between treated and untreated obstructive sleep apnea and risk of hypertension. JAMA (2012)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/37", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "S Redline; G Yenokyan; D J Gottlieb. Obstructive sleep apnea-hypopnea and incident stroke: the sleep heart health study. Am J Respir Crit Care Med (2010)", + "text": "S Redline; G Yenokyan; D J Gottlieb. Obstructive sleep apnea-hypopnea and incident stroke: the sleep heart health study. Am J Respir Crit Care Med (2010)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/38", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "O Mesarwi; A Malhotra. Obstructive sleep apnea and pulmonary hypertension: a bidirectional relationship. J Clin Sleep Med (2020)", + "text": "O Mesarwi; A Malhotra. Obstructive sleep apnea and pulmonary hypertension: a bidirectional relationship. J Clin Sleep Med (2020)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/39", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "F Piccirillo; S P Crispino; L Buzzelli; A Segreti; R A Incalzi; F Grigioni. A state-of-the-art review on sleep apnea syndrome and heart failure. Am J Cardiol (2023)", + "text": "F Piccirillo; S P Crispino; L Buzzelli; A Segreti; R A Incalzi; F Grigioni. A state-of-the-art review on sleep apnea syndrome and heart failure. Am J Cardiol (2023)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/40", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "K Glise Sandblad; A Rosengren; J S\u00f6rbo; S Jern; P O Hansson. Pulmonary embolism and deep vein thrombosis-comorbidities and temporary provoking factors in a register-based study of 1.48 million people. Res Pract Thromb Haemost (2022)", + "text": "K Glise Sandblad; A Rosengren; J S\u00f6rbo; S Jern; P O Hansson. Pulmonary embolism and deep vein thrombosis-comorbidities and temporary provoking factors in a register-based study of 1.48 million people. Res Pract Thromb Haemost (2022)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/41", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "R Raj; A Paturi; M A Ahmed; S E Thomas; V R Gorantla. Obstructive sleep apnea as a risk factor for venous thromboembolism: a systematic review. Cureus (2022)", + "text": "R Raj; A Paturi; M A Ahmed; S E Thomas; V R Gorantla. Obstructive sleep apnea as a risk factor for venous thromboembolism: a systematic review. Cureus (2022)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/42", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "C C Lin; J J Keller; J H Kang; T C Hsu; H C Lin. Obstructive sleep apnea is associated with an increased risk of venous thromboembolism. J Vasc Surg Venous Lymphat Disord (2013)", + "text": "C C Lin; J J Keller; J H Kang; T C Hsu; H C Lin. Obstructive sleep apnea is associated with an increased risk of venous thromboembolism. J Vasc Surg Venous Lymphat Disord (2013)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/43", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "Y H Peng; W C Liao; W S Chung. Association between obstructive sleep apnea and deep vein thrombosis / pulmonary embolism: a population-based retrospective cohort study. Thromb Res (2014)", + "text": "Y H Peng; W C Liao; W S Chung. Association between obstructive sleep apnea and deep vein thrombosis / pulmonary embolism: a population-based retrospective cohort study. Thromb Res (2014)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/44", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "O Nepveu; C Orione; C Tromeur. Association between obstructive sleep apnea and venous thromboembolism recurrence: results from a French cohort. Thromb J (2022)", + "text": "O Nepveu; C Orione; C Tromeur. Association between obstructive sleep apnea and venous thromboembolism recurrence: results from a French cohort. Thromb J (2022)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/45", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "O Dabbagh; M Sabharwal; O Hassan. Obstructive sleep apnea is an independent risk factor for venous thromboembolism among females not males. Chest (2010)", + "text": "O Dabbagh; M Sabharwal; O Hassan. Obstructive sleep apnea is an independent risk factor for venous thromboembolism among females not males. Chest (2010)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/46", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "J P Bosanquet; B C Bade; M F Zia. Patients with venous thromboembolism appear to have higher prevalence of obstructive sleep apnea than the general population. Clin Appl Thromb Hemost (2011)", + "text": "J P Bosanquet; B C Bade; M F Zia. Patients with venous thromboembolism appear to have higher prevalence of obstructive sleep apnea than the general population. Clin Appl Thromb Hemost (2011)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/47", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "A Xue; L Jiang; Z Zhu. Genome-wide analyses of behavioural traits are subject to bias by misreports and longitudinal changes. Nat Commun (2021)", + "text": "A Xue; L Jiang; Z Zhu. Genome-wide analyses of behavioural traits are subject to bias by misreports and longitudinal changes. Nat Commun (2021)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/48", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "B Pu; P Gu; C Zheng; L Ma; X Zheng; Z Zeng. Self-reported and genetically predicted effects of coffee intake on rheumatoid arthritis: epidemiological studies and Mendelian randomization analysis. Front Nutr (2022)", + "text": "B Pu; P Gu; C Zheng; L Ma; X Zheng; Z Zeng. Self-reported and genetically predicted effects of coffee intake on rheumatoid arthritis: epidemiological studies and Mendelian randomization analysis. Front Nutr (2022)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/49", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "L Jiang; Z Zheng; H Fang; J Yang. A generalized linear mixed model association tool for biobank-scale data. Nat Genet (2021)", + "text": "L Jiang; Z Zheng; H Fang; J Yang. A generalized linear mixed model association tool for biobank-scale data. Nat Genet (2021)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/50", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "A I Campos; N Ingold; Y Huang. Discovery of genomic loci associated with sleep apnea risk through multi-trait GWAS analysis with snoring. Sleep (2023)", + "text": "A I Campos; N Ingold; Y Huang. Discovery of genomic loci associated with sleep apnea risk through multi-trait GWAS analysis with snoring. Sleep (2023)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/51", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "R Feng; M Lu; J Xu. Pulmonary embolism and 529 human blood metabolites: genetic correlation and two-sample Mendelian randomization study. BMC Genom Data (2022)", + "text": "R Feng; M Lu; J Xu. Pulmonary embolism and 529 human blood metabolites: genetic correlation and two-sample Mendelian randomization study. BMC Genom Data (2022)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/52", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "R Molenberg; C HL Thio; M W Aalbers. Sex hormones and risk of aneurysmal subarachnoid hemorrhage: a Mendelian randomization study. Stroke (2022)", + "text": "R Molenberg; C HL Thio; M W Aalbers. Sex hormones and risk of aneurysmal subarachnoid hemorrhage: a Mendelian randomization study. Stroke (2022)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/53", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "S H Wang; B T Keenan; A Wiemken. Effect of weight loss on upper airway anatomy and the apnea-hypopnea index. the importance of tongue fat. Am J Respir Crit Care Med (2020)", + "text": "S H Wang; B T Keenan; A Wiemken. Effect of weight loss on upper airway anatomy and the apnea-hypopnea index. the importance of tongue fat. Am J Respir Crit Care Med (2020)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/54", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "C Hotoleanu. Association between obesity and venous thromboembolism. Med Pharm Rep (2020)", + "text": "C Hotoleanu. Association between obesity and venous thromboembolism. Med Pharm Rep (2020)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/55", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "H Zhao; X Jin. Causal associations between dietary antioxidant vitamin intake and lung cancer: a Mendelian randomization study. Front Nutr (2022)", + "text": "H Zhao; X Jin. Causal associations between dietary antioxidant vitamin intake and lung cancer: a Mendelian randomization study. Front Nutr (2022)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/56", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "B Tang; Y Wang; X Jiang. Genetic variation in targets of antidiabetic drugs and Alzheimer disease risk: a Mendelian randomization study. Neurology (2022)", + "text": "B Tang; Y Wang; X Jiang. Genetic variation in targets of antidiabetic drugs and Alzheimer disease risk: a Mendelian randomization study. Neurology (2022)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/57", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "S S Dong; K Zhang; Y Guo. Phenome-wide investigation of the causal associations between childhood BMI and adult trait outcomes: a two-sample Mendelian randomization study. Genome Med (2021)", + "text": "S S Dong; K Zhang; Y Guo. Phenome-wide investigation of the causal associations between childhood BMI and adult trait outcomes: a two-sample Mendelian randomization study. Genome Med (2021)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/58", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "W Huang; J Xiao; J Ji; L Chen. Association of lipid-lowering drugs with COVID-19 outcomes from a Mendelian randomization study. eLife (2021)", + "text": "W Huang; J Xiao; J Ji; L Chen. Association of lipid-lowering drugs with COVID-19 outcomes from a Mendelian randomization study. eLife (2021)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/59", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "X Chen; J Kong; J Pan. Kidney damage causally affects the brain cortical structure: a Mendelian randomization study. EBioMedicine (2021)", + "text": "X Chen; J Kong; J Pan. Kidney damage causally affects the brain cortical structure: a Mendelian randomization study. EBioMedicine (2021)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/60", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "I Arnulf; M Merino-Andreu; A Perrier; S Birolleau; T Similowski; J P Derenne. Obstructive sleep apnea and venous thromboembolism. JAMA (2002)", + "text": "I Arnulf; M Merino-Andreu; A Perrier; S Birolleau; T Similowski; J P Derenne. Obstructive sleep apnea and venous thromboembolism. JAMA (2002)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/61", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "K T Chou; C C Huang; Y M Chen. Sleep apnea and risk of deep vein thrombosis: a non-randomized, pair-matched cohort study. Am J Med (2012)", + "text": "K T Chou; C C Huang; Y M Chen. Sleep apnea and risk of deep vein thrombosis: a non-randomized, pair-matched cohort study. Am J Med (2012)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/62", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "A Alonso-Fern\u00e1ndez; M de la Pe\u00f1a; D Romero. Association between obstructive sleep apnea and pulmonary embolism. Mayo Clin Proc (2013)", + "text": "A Alonso-Fern\u00e1ndez; M de la Pe\u00f1a; D Romero. Association between obstructive sleep apnea and pulmonary embolism. Mayo Clin Proc (2013)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/63", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "M Ambrosetti; A Lucioni; W Ageno; S Conti; M Neri. Is venous thromboembolism more frequent in patients with obstructive sleep apnea syndrome?. J Thromb Haemost (2004)", + "text": "M Ambrosetti; A Lucioni; W Ageno; S Conti; M Neri. Is venous thromboembolism more frequent in patients with obstructive sleep apnea syndrome?. J Thromb Haemost (2004)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/64", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "S Reutrakul; B Mokhlesi. Obstructive sleep apnea and diabetes: a state of the art review. Chest (2017)", + "text": "S Reutrakul; B Mokhlesi. Obstructive sleep apnea and diabetes: a state of the art review. Chest (2017)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/65", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "S Lindstr\u00f6m; M Germain; M Crous-Bou. Assessing the causal relationship between obesity and venous thromboembolism through a Mendelian Randomization study. Hum Genet (2017)", + "text": "S Lindstr\u00f6m; M Germain; M Crous-Bou. Assessing the causal relationship between obesity and venous thromboembolism through a Mendelian Randomization study. Hum Genet (2017)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/66", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "M V Genuardi; A Rathore; R P Ogilvie. Incidence of VTE in patients with OSA: a cohort study. Chest (2022)", + "text": "M V Genuardi; A Rathore; R P Ogilvie. Incidence of VTE in patients with OSA: a cohort study. Chest (2022)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/67", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "R Aman; V G Michael; P O Rachel. Obstructive sleep apnea does not increase risk of venous thromboembolism. American Thoracic Society (2019)", + "text": "R Aman; V G Michael; P O Rachel. Obstructive sleep apnea does not increase risk of venous thromboembolism. American Thoracic Society (2019)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/68", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "C T Esmon. Basic mechanisms and pathogenesis of venous thrombosis. Blood Rev (2009)", + "text": "C T Esmon. Basic mechanisms and pathogenesis of venous thrombosis. Blood Rev (2009)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/69", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "A Garc\u00eda-Ortega; E Ma\u00f1as; R L\u00f3pez-Reyes. Obstructive sleep apnoea and venous thromboembolism: pathophysiological links and clinical implications. Eur Respir J (2019)", + "text": "A Garc\u00eda-Ortega; E Ma\u00f1as; R L\u00f3pez-Reyes. Obstructive sleep apnoea and venous thromboembolism: pathophysiological links and clinical implications. Eur Respir J (2019)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/70", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "H Xiong; M Lao; L Wang. The incidence of cancer is increased in hospitalized adult patients with obstructive sleep apnea in China: a retrospective cohort study. Front Oncol (2022)", + "text": "H Xiong; M Lao; L Wang. The incidence of cancer is increased in hospitalized adult patients with obstructive sleep apnea in China: a retrospective cohort study. Front Oncol (2022)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/71", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "A Holt; J Bjerre; B Zareini. Sleep apnea, the risk of developing heart failure, and potential benefits of continuous positive airway pressure (CPAP) therapy. J Am Heart Assoc (2018)", + "text": "A Holt; J Bjerre; B Zareini. Sleep apnea, the risk of developing heart failure, and potential benefits of continuous positive airway pressure (CPAP) therapy. J Am Heart Assoc (2018)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/72", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "A Alonso-Fern\u00e1ndez; N Toledo-Pons; F Garc\u00eda-R\u00edo. Obstructive sleep apnea and venous thromboembolism: overview of an emerging relationship. Sleep Med Rev (2020)", + "text": "A Alonso-Fern\u00e1ndez; N Toledo-Pons; F Garc\u00eda-R\u00edo. Obstructive sleep apnea and venous thromboembolism: overview of an emerging relationship. Sleep Med Rev (2020)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/73", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "S N Hong; H C Yun; J H Yoo; S H Lee. Association between hypercoagulability and severe obstructive sleep apnea. JAMA Otolaryngol Head Neck Surg (2017)", + "text": "S N Hong; H C Yun; J H Yoo; S H Lee. Association between hypercoagulability and severe obstructive sleep apnea. JAMA Otolaryngol Head Neck Surg (2017)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/74", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "G V Robinson; J C Pepperell; H C Segal; R J Davies; J R Stradling. Circulating cardiovascular risk factors in obstructive sleep apnoea: data from randomised controlled trials. Thorax (2004)", + "text": "G V Robinson; J C Pepperell; H C Segal; R J Davies; J R Stradling. Circulating cardiovascular risk factors in obstructive sleep apnoea: data from randomised controlled trials. Thorax (2004)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/75", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "R von K\u00e4nel; J S Loredo; F L Powell; K A Adler; J E Dimsdale. Short-term isocapnic hypoxia and coagulation activation in patients with sleep apnea. Clin Hemorheol Microcirc (2005)", + "text": "R von K\u00e4nel; J S Loredo; F L Powell; K A Adler; J E Dimsdale. Short-term isocapnic hypoxia and coagulation activation in patients with sleep apnea. Clin Hemorheol Microcirc (2005)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/76", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "C Zolotoff; L Bertoletti; D Gozal. Obstructive sleep apnea, hypercoagulability, and the blood-brain barrier. J Clin Med (2021)", + "text": "C Zolotoff; L Bertoletti; D Gozal. Obstructive sleep apnea, hypercoagulability, and the blood-brain barrier. J Clin Med (2021)", + "enumerated": false, + "marker": "-" + } + ], + "pictures": [ + { + "self_ref": "#/pictures/0", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "picture", + "prov": [], + "captions": [ + { + "$ref": "#/texts/28" + } + ], + "references": [], + "footnotes": [], + "annotations": [] + }, + { + "self_ref": "#/pictures/1", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "picture", + "prov": [], + "captions": [ + { + "$ref": "#/texts/29" + } + ], + "references": [], + "footnotes": [], + "annotations": [] + }, + { + "self_ref": "#/pictures/2", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "picture", + "prov": [], + "captions": [ + { + "$ref": "#/texts/30" + } + ], + "references": [], + "footnotes": [], + "annotations": [] + } + ], + "tables": [ + { + "self_ref": "#/tables/0", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "table", + "prov": [], + "captions": [ + { + "$ref": "#/texts/24" + } + ], + "references": [], + "footnotes": [], + "data": { + "table_cells": [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "Trait", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "Sample size", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "Case", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "Control", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "No. of SNPs", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "Participates", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "PMID/Link", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "OSA (Jiang et al)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "456,348", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "2,827", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "453,521", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "11,831,932", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "European ancestry", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "34737426", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "OSA (Campos et al)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "362,638", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "25,008", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "337,630", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "9,031,949", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "European ancestry", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "36525587", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "VTE", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "377,277", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "19,372", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "357,905", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "20,170,236", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "European ancestry", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "\nFinnGen consortium (\nhttps://www.finngen.fi/fi\n)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "PE", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "376,351", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "9,243", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "367,108", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "20,170,202", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "European ancestry", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "\nFinnGen consortium (\nhttps://www.finngen.fi/fi\n)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "DVT", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "333,230", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "9,109", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "324,121", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "20,169,198", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "European ancestry", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "\nFinnGen consortium (\nhttps://www.finngen.fi/fi\n)\n", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + "num_rows": 6, + "num_cols": 7, + "grid": [ + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "Trait", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "Sample size", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "Case", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "Control", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "No. of SNPs", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "Participates", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "PMID/Link", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "OSA (Jiang et al)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "456,348", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "2,827", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "453,521", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "11,831,932", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "European ancestry", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "34737426", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "OSA (Campos et al)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "362,638", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "25,008", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "337,630", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "9,031,949", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "European ancestry", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "36525587", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "VTE", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "377,277", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "19,372", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "357,905", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "20,170,236", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "European ancestry", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "\nFinnGen consortium (\nhttps://www.finngen.fi/fi\n)\n", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "PE", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "376,351", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "9,243", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "367,108", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "20,170,202", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "European ancestry", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "\nFinnGen consortium (\nhttps://www.finngen.fi/fi\n)\n", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "DVT", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "333,230", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "9,109", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "324,121", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "20,169,198", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "European ancestry", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "\nFinnGen consortium (\nhttps://www.finngen.fi/fi\n)\n", + "column_header": false, + "row_header": false, + "row_section": false + } + ] + ] + } + }, + { + "self_ref": "#/tables/1", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "table", + "prov": [], + "captions": [ + { + "$ref": "#/texts/25" + } + ], + "references": [], + "footnotes": [], + "data": { + "table_cells": [ + { + "row_span": 1, + "col_span": 17, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 0, + "end_col_offset_idx": 17, + "text": "\nGenetic instruments for OSA (Jiang et al) and their associations with VTE, PE, and DVT\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 4, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 4, + "end_col_offset_idx": 8, + "text": "\nExposure: OSA (Jiang et al)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 3, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 8, + "end_col_offset_idx": 11, + "text": "\nOutcome: VTE\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 3, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 11, + "end_col_offset_idx": 14, + "text": "\nOutcome: PE\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 3, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 14, + "end_col_offset_idx": 17, + "text": "\nOutcome: DVT\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "\nSNP\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "\nEA\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "\nOA\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\nBeta\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "\nSE\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "\np\n-Value\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "\nF-statistic\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\nBeta\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "\nSE\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "\np\n-Value\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "\nBeta\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "\nSE\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "\np\n-Value\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "\nBeta\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 15, + "end_col_offset_idx": 16, + "text": "\nSE\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 16, + "end_col_offset_idx": 17, + "text": "\np\n-Value\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs114417992", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.48798", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.10793", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "6.15E-06", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "20.4409", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.00702", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.04378", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.87253", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "\u22120.0542", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.06211", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "0.3832", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "\u22120.0052", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 15, + "end_col_offset_idx": 16, + "text": "0.06334", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 16, + "end_col_offset_idx": 17, + "text": "0.93511", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs115071002", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.3775", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0807", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "2.90E-06", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "21.8836", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0521", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.05045", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.30146", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "0.0359", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.07185", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "0.61729", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "\u22120.0633", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 15, + "end_col_offset_idx": 16, + "text": "0.07247", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 16, + "end_col_offset_idx": 17, + "text": "0.38241", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs117025138", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.42795", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.09571", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "7.78E-06", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "19.9915", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0149", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.05477", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.78611", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "0.0087", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.07809", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "0.91129", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "\u22120.0338", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 15, + "end_col_offset_idx": 16, + "text": "0.07836", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 16, + "end_col_offset_idx": 17, + "text": "0.66637", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs117474005", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.64176", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.14138", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "5.64E-06", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "20.6051", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0095", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.04108", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.81724", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "\u22120.0009", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.05862", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "0.98772", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "\u22120.0301", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 15, + "end_col_offset_idx": 16, + "text": "0.05891", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 16, + "end_col_offset_idx": 17, + "text": "0.60971", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs139183760", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.82973", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.16928", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "9.50E-07", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "24.0262", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.06514", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.07681", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.39643", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "0.04441", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.10929", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "0.68448", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "0.04761", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 15, + "end_col_offset_idx": 16, + "text": "0.11024", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 16, + "end_col_offset_idx": 17, + "text": "0.66585", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "6", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs148047757", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.47481", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.10699", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "9.08E-06", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "19.6952", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0522", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0352", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.13769", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "\u22120.044", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.04999", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "0.37895", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "\u22120.0294", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 15, + "end_col_offset_idx": 16, + "text": "0.05078", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 16, + "end_col_offset_idx": 17, + "text": "0.562", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "7", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs150798389", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.7875", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.17391", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "5.95E-06", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "20.505", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.2884", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.1435", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.04447", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "\u22120.2436", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.20053", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "0.22438", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "\u22120.1329", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 15, + "end_col_offset_idx": 16, + "text": "0.20679", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 16, + "end_col_offset_idx": 17, + "text": "0.52056", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "8", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs16850412", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.19514", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.04353", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "7.36E-06", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "20.0977", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.02674", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.01584", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.09145", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "0.04785", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.02253", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "0.03368", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "0.0173", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 15, + "end_col_offset_idx": 16, + "text": "0.02277", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 16, + "end_col_offset_idx": 17, + "text": "0.44739", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "9", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs1911999", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.1312", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.02965", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "9.59E-06", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "19.5917", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.01759", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.01111", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.11349", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "0.0376", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.01577", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "0.01714", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "0.00223", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 15, + "end_col_offset_idx": 16, + "text": "0.01596", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 16, + "end_col_offset_idx": 17, + "text": "0.88889", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "10", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs2302012", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.12829", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.02871", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "7.88E-06", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "19.9669", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0104", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.01076", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.33549", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "\u22120.0272", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.0153", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "0.07541", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "0.00767", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 15, + "end_col_offset_idx": 16, + "text": "0.01545", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 16, + "end_col_offset_idx": 17, + "text": "0.61949", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "11", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs35963104", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.16572", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.03452", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "1.59E-06", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "23.0393", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0076", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.01354", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.57685", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "\u22120.02", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.01924", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "0.29896", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "\u22120.007", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 15, + "end_col_offset_idx": 16, + "text": "0.01942", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 16, + "end_col_offset_idx": 17, + "text": "0.71778", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "12", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs60445800", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.29191", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.06499", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "7.06E-06", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "20.1758", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0268", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.02361", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.25672", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "\u22120.0649", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.03349", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "0.05277", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "0.0112", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 15, + "end_col_offset_idx": 16, + "text": "0.03388", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 16, + "end_col_offset_idx": 17, + "text": "0.74095", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "13", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs9587442", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.44308", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.09584", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "3.78E-06", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "21.3735", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0385", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.03346", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.24969", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "\u22120.0101", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.04781", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "0.83322", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "0.00182", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 15, + "end_col_offset_idx": 16, + "text": "0.04783", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 16, + "end_col_offset_idx": 17, + "text": "0.96962", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 17, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 0, + "end_col_offset_idx": 17, + "text": "\nGenetic instruments for OSA (Campos et al) and their associations with VTE, PE, and DVT\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 4, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 4, + "end_col_offset_idx": 8, + "text": "\nExposure: OSA (Campos et al)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 3, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 8, + "end_col_offset_idx": 11, + "text": "\nOutcome: VTE\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 3, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 11, + "end_col_offset_idx": 14, + "text": "\nOutcome: PE\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 3, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 14, + "end_col_offset_idx": 17, + "text": "\nOutcome: DVT\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "\nSNP\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "\nEA\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "\nOA\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\nBeta\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "\nSE\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "\np\n-Value\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "\nF-statistic\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\nBeta\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "\nSE\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "\np\n-Value\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "\nBeta\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "\nSE\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "\np\n-Value\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "\nBeta\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 15, + "end_col_offset_idx": 16, + "text": "\nSE\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 16, + "end_col_offset_idx": 17, + "text": "\np\n-Value\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs10777826", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.0319", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.00664", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "1.58E-06", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "23.0496", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.00684", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.01097", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.53296", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "0.01049", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.01557", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "0.50053", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "0.01763", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 15, + "end_col_offset_idx": 16, + "text": "0.01576", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 16, + "end_col_offset_idx": 17, + "text": "0.26318", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs10878269", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.03308", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0069", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "1.61E-06", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "23.0112", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0208", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.01191", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.08097", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "\u22120.0262", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.01693", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "0.12108", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "\u22120.015", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 15, + "end_col_offset_idx": 16, + "text": "0.01711", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 16, + "end_col_offset_idx": 17, + "text": "0.37964", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs111909157", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.1355", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.02658", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "3.40E-07", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "26.01", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.02664", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.04222", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.52808", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "0.03995", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.05999", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "0.5054", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "0.0364", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 15, + "end_col_offset_idx": 16, + "text": "0.06089", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 16, + "end_col_offset_idx": 17, + "text": "0.55", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs116114601", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.0873", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.01969", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "9.20E-06", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "19.6692", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0401", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.04098", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.32779", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "\u22120.0676", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.05814", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "0.24516", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "\u22120.0182", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 15, + "end_col_offset_idx": 16, + "text": "0.05873", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 16, + "end_col_offset_idx": 17, + "text": "0.75679", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs11989172", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.0378", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.00839", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "6.73E-06", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "20.268", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0217", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.01283", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.09", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "\u22120.039", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.01823", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "0.03222", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "0.01058", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 15, + "end_col_offset_idx": 16, + "text": "0.01842", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 16, + "end_col_offset_idx": 17, + "text": "0.56561", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "6", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs12265404", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.04931", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.01041", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "2.17E-06", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "22.4392", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.05233", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0166", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.00162", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "0.05687", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.0233", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "0.01467", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "0.04278", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 15, + "end_col_offset_idx": 16, + "text": "0.02358", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 16, + "end_col_offset_idx": 17, + "text": "0.06956", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "7", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs12306339", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.0488", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.01083", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "6.64E-06", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "20.295", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0051", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.01804", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.77914", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "\u22120.023", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.02561", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "0.37006", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "0.01462", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 15, + "end_col_offset_idx": 16, + "text": "0.02593", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 16, + "end_col_offset_idx": 17, + "text": "0.57292", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "8", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs13098300", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.03715", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.00712", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "1.84E-07", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "27.1962", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.00251", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.01202", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.83434", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "0.0101", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.01708", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "0.55432", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "5.55E-05", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 15, + "end_col_offset_idx": 16, + "text": "0.01727", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 16, + "end_col_offset_idx": 17, + "text": "0.99744", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 27, + "end_row_offset_idx": 28, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "9", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 27, + "end_row_offset_idx": 28, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs140548601", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 27, + "end_row_offset_idx": 28, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 27, + "end_row_offset_idx": 28, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 27, + "end_row_offset_idx": 28, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.1158", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 27, + "end_row_offset_idx": 28, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.02428", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 27, + "end_row_offset_idx": 28, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "1.85E-06", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 27, + "end_row_offset_idx": 28, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "22.7529", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 27, + "end_row_offset_idx": 28, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.05503", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 27, + "end_row_offset_idx": 28, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.04711", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 27, + "end_row_offset_idx": 28, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.24277", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 27, + "end_row_offset_idx": 28, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "0.09206", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 27, + "end_row_offset_idx": 28, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.06692", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 27, + "end_row_offset_idx": 28, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "0.16895", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 27, + "end_row_offset_idx": 28, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "0.04613", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 27, + "end_row_offset_idx": 28, + "start_col_offset_idx": 15, + "end_col_offset_idx": 16, + "text": "0.06762", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 27, + "end_row_offset_idx": 28, + "start_col_offset_idx": 16, + "end_col_offset_idx": 17, + "text": "0.49515", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 28, + "end_row_offset_idx": 29, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "10", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 28, + "end_row_offset_idx": 29, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs143417867", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 28, + "end_row_offset_idx": 29, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 28, + "end_row_offset_idx": 29, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 28, + "end_row_offset_idx": 29, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.3666", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 28, + "end_row_offset_idx": 29, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.07088", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 28, + "end_row_offset_idx": 29, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "2.30E-07", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 28, + "end_row_offset_idx": 29, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "26.7599", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 28, + "end_row_offset_idx": 29, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.1487", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 28, + "end_row_offset_idx": 29, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.2216", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 28, + "end_row_offset_idx": 29, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.5021", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 28, + "end_row_offset_idx": 29, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "0.15664", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 28, + "end_row_offset_idx": 29, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.31582", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 28, + "end_row_offset_idx": 29, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "0.61991", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 28, + "end_row_offset_idx": 29, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "\u22120.0868", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 28, + "end_row_offset_idx": 29, + "start_col_offset_idx": 15, + "end_col_offset_idx": 16, + "text": "0.31594", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 28, + "end_row_offset_idx": 29, + "start_col_offset_idx": 16, + "end_col_offset_idx": 17, + "text": "0.78353", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 29, + "end_row_offset_idx": 30, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "11", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 29, + "end_row_offset_idx": 30, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs1942263", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 29, + "end_row_offset_idx": 30, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 29, + "end_row_offset_idx": 30, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 29, + "end_row_offset_idx": 30, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.04569", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 29, + "end_row_offset_idx": 30, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.01016", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 29, + "end_row_offset_idx": 30, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "6.93E-06", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 29, + "end_row_offset_idx": 30, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "20.214", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 29, + "end_row_offset_idx": 30, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0156", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 29, + "end_row_offset_idx": 30, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.01713", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 29, + "end_row_offset_idx": 30, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.36361", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 29, + "end_row_offset_idx": 30, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "\u22120.0136", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 29, + "end_row_offset_idx": 30, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.02436", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 29, + "end_row_offset_idx": 30, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "0.57584", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 29, + "end_row_offset_idx": 30, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "\u22120.0318", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 29, + "end_row_offset_idx": 30, + "start_col_offset_idx": 15, + "end_col_offset_idx": 16, + "text": "0.02468", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 29, + "end_row_offset_idx": 30, + "start_col_offset_idx": 16, + "end_col_offset_idx": 17, + "text": "0.19751", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 30, + "end_row_offset_idx": 31, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "12", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 30, + "end_row_offset_idx": 31, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs2876633", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 30, + "end_row_offset_idx": 31, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 30, + "end_row_offset_idx": 31, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 30, + "end_row_offset_idx": 31, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.0355", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 30, + "end_row_offset_idx": 31, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.00695", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 30, + "end_row_offset_idx": 31, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "3.43E-07", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 30, + "end_row_offset_idx": 31, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "25.9896", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 30, + "end_row_offset_idx": 31, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0104", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 30, + "end_row_offset_idx": 31, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.01158", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 30, + "end_row_offset_idx": 31, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.36765", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 30, + "end_row_offset_idx": 31, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "\u22120.0104", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 30, + "end_row_offset_idx": 31, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.01645", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 30, + "end_row_offset_idx": 31, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "0.52845", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 30, + "end_row_offset_idx": 31, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "0.0032", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 30, + "end_row_offset_idx": 31, + "start_col_offset_idx": 15, + "end_col_offset_idx": 16, + "text": "0.01664", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 30, + "end_row_offset_idx": 31, + "start_col_offset_idx": 16, + "end_col_offset_idx": 17, + "text": "0.84772", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 31, + "end_row_offset_idx": 32, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "13", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 31, + "end_row_offset_idx": 32, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs35847366", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 31, + "end_row_offset_idx": 32, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 31, + "end_row_offset_idx": 32, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 31, + "end_row_offset_idx": 32, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.0545", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 31, + "end_row_offset_idx": 32, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.01172", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 31, + "end_row_offset_idx": 32, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "3.31E-06", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 31, + "end_row_offset_idx": 32, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "21.6318", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 31, + "end_row_offset_idx": 32, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0365", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 31, + "end_row_offset_idx": 32, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.01831", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 31, + "end_row_offset_idx": 32, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.04596", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 31, + "end_row_offset_idx": 32, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "\u22120.0383", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 31, + "end_row_offset_idx": 32, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.02603", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 31, + "end_row_offset_idx": 32, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "0.14125", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 31, + "end_row_offset_idx": 32, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "\u22120.0511", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 31, + "end_row_offset_idx": 32, + "start_col_offset_idx": 15, + "end_col_offset_idx": 16, + "text": "0.02629", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 31, + "end_row_offset_idx": 32, + "start_col_offset_idx": 16, + "end_col_offset_idx": 17, + "text": "0.0517", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 32, + "end_row_offset_idx": 33, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "14", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 32, + "end_row_offset_idx": 33, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs36051007", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 32, + "end_row_offset_idx": 33, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 32, + "end_row_offset_idx": 33, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 32, + "end_row_offset_idx": 33, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.03481", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 32, + "end_row_offset_idx": 33, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.00716", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 32, + "end_row_offset_idx": 33, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "1.14E-06", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 32, + "end_row_offset_idx": 33, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "23.6682", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 32, + "end_row_offset_idx": 33, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0037", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 32, + "end_row_offset_idx": 33, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.01095", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 32, + "end_row_offset_idx": 33, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.73452", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 32, + "end_row_offset_idx": 33, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "\u22120.0145", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 32, + "end_row_offset_idx": 33, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.01557", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 32, + "end_row_offset_idx": 33, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "0.35199", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 32, + "end_row_offset_idx": 33, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "0.00723", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 32, + "end_row_offset_idx": 33, + "start_col_offset_idx": 15, + "end_col_offset_idx": 16, + "text": "0.01573", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 32, + "end_row_offset_idx": 33, + "start_col_offset_idx": 16, + "end_col_offset_idx": 17, + "text": "0.64597", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 33, + "end_row_offset_idx": 34, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "15", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 33, + "end_row_offset_idx": 34, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs3774800", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 33, + "end_row_offset_idx": 34, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 33, + "end_row_offset_idx": 34, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 33, + "end_row_offset_idx": 34, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.0309", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 33, + "end_row_offset_idx": 34, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0069", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 33, + "end_row_offset_idx": 34, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "7.79E-06", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 33, + "end_row_offset_idx": 34, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "19.9898", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 33, + "end_row_offset_idx": 34, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.00395", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 33, + "end_row_offset_idx": 34, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.01151", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 33, + "end_row_offset_idx": 34, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.73124", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 33, + "end_row_offset_idx": 34, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "\u22120.0107", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 33, + "end_row_offset_idx": 34, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.01634", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 33, + "end_row_offset_idx": 34, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "0.51218", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 33, + "end_row_offset_idx": 34, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "0.0093", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 33, + "end_row_offset_idx": 34, + "start_col_offset_idx": 15, + "end_col_offset_idx": 16, + "text": "0.01654", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 33, + "end_row_offset_idx": 34, + "start_col_offset_idx": 16, + "end_col_offset_idx": 17, + "text": "0.57396", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 34, + "end_row_offset_idx": 35, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "16", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 34, + "end_row_offset_idx": 35, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs4542364", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 34, + "end_row_offset_idx": 35, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 34, + "end_row_offset_idx": 35, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 34, + "end_row_offset_idx": 35, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.03028", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 34, + "end_row_offset_idx": 35, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.00673", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 34, + "end_row_offset_idx": 35, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "6.69E-06", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 34, + "end_row_offset_idx": 35, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "20.277", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 34, + "end_row_offset_idx": 35, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0053", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 34, + "end_row_offset_idx": 35, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.01084", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 34, + "end_row_offset_idx": 35, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.6236", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 34, + "end_row_offset_idx": 35, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "\u22120.0199", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 34, + "end_row_offset_idx": 35, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.01541", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 34, + "end_row_offset_idx": 35, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "0.19737", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 34, + "end_row_offset_idx": 35, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "0.00163", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 34, + "end_row_offset_idx": 35, + "start_col_offset_idx": 15, + "end_col_offset_idx": 16, + "text": "0.01559", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 34, + "end_row_offset_idx": 35, + "start_col_offset_idx": 16, + "end_col_offset_idx": 17, + "text": "0.91663", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 35, + "end_row_offset_idx": 36, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "17", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 35, + "end_row_offset_idx": 36, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs4675933", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 35, + "end_row_offset_idx": 36, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 35, + "end_row_offset_idx": 36, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 35, + "end_row_offset_idx": 36, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.0329", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 35, + "end_row_offset_idx": 36, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.00709", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 35, + "end_row_offset_idx": 36, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "3.44E-06", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 35, + "end_row_offset_idx": 36, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "21.5482", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 35, + "end_row_offset_idx": 36, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.00822", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 35, + "end_row_offset_idx": 36, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.01093", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 35, + "end_row_offset_idx": 36, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.45187", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 35, + "end_row_offset_idx": 36, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "0.00396", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 35, + "end_row_offset_idx": 36, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.01554", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 35, + "end_row_offset_idx": 36, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "0.79863", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 35, + "end_row_offset_idx": 36, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "0.01593", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 35, + "end_row_offset_idx": 36, + "start_col_offset_idx": 15, + "end_col_offset_idx": 16, + "text": "0.01568", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 35, + "end_row_offset_idx": 36, + "start_col_offset_idx": 16, + "end_col_offset_idx": 17, + "text": "0.30957", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 36, + "end_row_offset_idx": 37, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "18", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 36, + "end_row_offset_idx": 37, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs533143", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 36, + "end_row_offset_idx": 37, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 36, + "end_row_offset_idx": 37, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 36, + "end_row_offset_idx": 37, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.03237", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 36, + "end_row_offset_idx": 37, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.00732", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 36, + "end_row_offset_idx": 37, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "9.73E-06", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 36, + "end_row_offset_idx": 37, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "19.5629", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 36, + "end_row_offset_idx": 37, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.02892", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 36, + "end_row_offset_idx": 37, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.01429", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 36, + "end_row_offset_idx": 37, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.04304", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 36, + "end_row_offset_idx": 37, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "0.02757", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 36, + "end_row_offset_idx": 37, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.02031", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 36, + "end_row_offset_idx": 37, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "0.1747", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 36, + "end_row_offset_idx": 37, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "0.0111", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 36, + "end_row_offset_idx": 37, + "start_col_offset_idx": 15, + "end_col_offset_idx": 16, + "text": "0.02054", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 36, + "end_row_offset_idx": 37, + "start_col_offset_idx": 16, + "end_col_offset_idx": 17, + "text": "0.58881", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 37, + "end_row_offset_idx": 38, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "19", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 37, + "end_row_offset_idx": 38, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs60653979", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 37, + "end_row_offset_idx": 38, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 37, + "end_row_offset_idx": 38, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 37, + "end_row_offset_idx": 38, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.03384", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 37, + "end_row_offset_idx": 38, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0068", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 37, + "end_row_offset_idx": 38, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "6.43E-07", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 37, + "end_row_offset_idx": 38, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "24.7805", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 37, + "end_row_offset_idx": 38, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.01098", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 37, + "end_row_offset_idx": 38, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.01083", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 37, + "end_row_offset_idx": 38, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.31063", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 37, + "end_row_offset_idx": 38, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "\u22120.0154", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 37, + "end_row_offset_idx": 38, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.01539", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 37, + "end_row_offset_idx": 38, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "0.31844", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 37, + "end_row_offset_idx": 38, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "0.02887", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 37, + "end_row_offset_idx": 38, + "start_col_offset_idx": 15, + "end_col_offset_idx": 16, + "text": "0.01557", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 37, + "end_row_offset_idx": 38, + "start_col_offset_idx": 16, + "end_col_offset_idx": 17, + "text": "0.06364", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 38, + "end_row_offset_idx": 39, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "20", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 38, + "end_row_offset_idx": 39, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs62559379", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 38, + "end_row_offset_idx": 39, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 38, + "end_row_offset_idx": 39, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 38, + "end_row_offset_idx": 39, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.0706", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 38, + "end_row_offset_idx": 39, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.01455", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 38, + "end_row_offset_idx": 39, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "1.22E-06", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 38, + "end_row_offset_idx": 39, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "23.5419", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 38, + "end_row_offset_idx": 39, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0163", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 38, + "end_row_offset_idx": 39, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.02726", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 38, + "end_row_offset_idx": 39, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.54934", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 38, + "end_row_offset_idx": 39, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "\u22120.028", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 38, + "end_row_offset_idx": 39, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.03871", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 38, + "end_row_offset_idx": 39, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "0.46867", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 38, + "end_row_offset_idx": 39, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "\u22120.0113", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 38, + "end_row_offset_idx": 39, + "start_col_offset_idx": 15, + "end_col_offset_idx": 16, + "text": "0.03915", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 38, + "end_row_offset_idx": 39, + "start_col_offset_idx": 16, + "end_col_offset_idx": 17, + "text": "0.77255", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 39, + "end_row_offset_idx": 40, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "21", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 39, + "end_row_offset_idx": 40, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs7106583", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 39, + "end_row_offset_idx": 40, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 39, + "end_row_offset_idx": 40, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 39, + "end_row_offset_idx": 40, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.03868", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 39, + "end_row_offset_idx": 40, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.00839", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 39, + "end_row_offset_idx": 40, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "4.09E-06", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 39, + "end_row_offset_idx": 40, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "21.2244", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 39, + "end_row_offset_idx": 40, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0434", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 39, + "end_row_offset_idx": 40, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.014", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 39, + "end_row_offset_idx": 40, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.00194", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 39, + "end_row_offset_idx": 40, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "\u22120.0205", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 39, + "end_row_offset_idx": 40, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.02006", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 39, + "end_row_offset_idx": 40, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "0.30655", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 39, + "end_row_offset_idx": 40, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "\u22120.0414", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 39, + "end_row_offset_idx": 40, + "start_col_offset_idx": 15, + "end_col_offset_idx": 16, + "text": "0.0203", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 39, + "end_row_offset_idx": 40, + "start_col_offset_idx": 16, + "end_col_offset_idx": 17, + "text": "0.04114", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 40, + "end_row_offset_idx": 41, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "22", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 40, + "end_row_offset_idx": 41, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs72904209", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 40, + "end_row_offset_idx": 41, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 40, + "end_row_offset_idx": 41, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 40, + "end_row_offset_idx": 41, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.0446", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 40, + "end_row_offset_idx": 41, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.00983", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 40, + "end_row_offset_idx": 41, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "5.67E-06", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 40, + "end_row_offset_idx": 41, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "20.5934", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 40, + "end_row_offset_idx": 41, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0153", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 40, + "end_row_offset_idx": 41, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.01617", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 40, + "end_row_offset_idx": 41, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.34449", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 40, + "end_row_offset_idx": 41, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "\u22120.0355", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 40, + "end_row_offset_idx": 41, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.02292", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 40, + "end_row_offset_idx": 41, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "0.1215", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 40, + "end_row_offset_idx": 41, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "\u22120.0066", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 40, + "end_row_offset_idx": 41, + "start_col_offset_idx": 15, + "end_col_offset_idx": 16, + "text": "0.02327", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 40, + "end_row_offset_idx": 41, + "start_col_offset_idx": 16, + "end_col_offset_idx": 17, + "text": "0.77599", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 41, + "end_row_offset_idx": 42, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "23", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 41, + "end_row_offset_idx": 42, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs73141516", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 41, + "end_row_offset_idx": 42, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 41, + "end_row_offset_idx": 42, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 41, + "end_row_offset_idx": 42, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.06496", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 41, + "end_row_offset_idx": 42, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.01415", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 41, + "end_row_offset_idx": 42, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "4.40E-06", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 41, + "end_row_offset_idx": 42, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "21.0865", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 41, + "end_row_offset_idx": 42, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.0084", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 41, + "end_row_offset_idx": 42, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.02184", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 41, + "end_row_offset_idx": 42, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.70062", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 41, + "end_row_offset_idx": 42, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "\u22120.0241", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 41, + "end_row_offset_idx": 42, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.03105", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 41, + "end_row_offset_idx": 42, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "0.43797", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 41, + "end_row_offset_idx": 42, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "0.03405", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 41, + "end_row_offset_idx": 42, + "start_col_offset_idx": 15, + "end_col_offset_idx": 16, + "text": "0.03133", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 41, + "end_row_offset_idx": 42, + "start_col_offset_idx": 16, + "end_col_offset_idx": 17, + "text": "0.27717", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 42, + "end_row_offset_idx": 43, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "24", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 42, + "end_row_offset_idx": 43, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs73164714", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 42, + "end_row_offset_idx": 43, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 42, + "end_row_offset_idx": 43, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 42, + "end_row_offset_idx": 43, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.0695", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 42, + "end_row_offset_idx": 43, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.01285", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 42, + "end_row_offset_idx": 43, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "6.43E-08", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 42, + "end_row_offset_idx": 43, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "29.2248", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 42, + "end_row_offset_idx": 43, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.028", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 42, + "end_row_offset_idx": 43, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.03721", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 42, + "end_row_offset_idx": 43, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.45256", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 42, + "end_row_offset_idx": 43, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "0.00562", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 42, + "end_row_offset_idx": 43, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.05276", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 42, + "end_row_offset_idx": 43, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "0.91513", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 42, + "end_row_offset_idx": 43, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "\u22120.0139", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 42, + "end_row_offset_idx": 43, + "start_col_offset_idx": 15, + "end_col_offset_idx": 16, + "text": "0.05319", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 42, + "end_row_offset_idx": 43, + "start_col_offset_idx": 16, + "end_col_offset_idx": 17, + "text": "0.79352", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 43, + "end_row_offset_idx": 44, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "25", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 43, + "end_row_offset_idx": 44, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs7800775", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 43, + "end_row_offset_idx": 44, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 43, + "end_row_offset_idx": 44, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 43, + "end_row_offset_idx": 44, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.03487", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 43, + "end_row_offset_idx": 44, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.00785", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 43, + "end_row_offset_idx": 44, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "8.98E-06", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 43, + "end_row_offset_idx": 44, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "19.7136", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 43, + "end_row_offset_idx": 44, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.00351", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 43, + "end_row_offset_idx": 44, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.01357", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 43, + "end_row_offset_idx": 44, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.79598", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 43, + "end_row_offset_idx": 44, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "0.00758", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 43, + "end_row_offset_idx": 44, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.01929", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 43, + "end_row_offset_idx": 44, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "0.69414", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 43, + "end_row_offset_idx": 44, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "\u22120.0166", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 43, + "end_row_offset_idx": 44, + "start_col_offset_idx": 15, + "end_col_offset_idx": 16, + "text": "0.01948", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 43, + "end_row_offset_idx": 44, + "start_col_offset_idx": 16, + "end_col_offset_idx": 17, + "text": "0.39528", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 44, + "end_row_offset_idx": 45, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "26", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 44, + "end_row_offset_idx": 45, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs794999", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 44, + "end_row_offset_idx": 45, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 44, + "end_row_offset_idx": 45, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 44, + "end_row_offset_idx": 45, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.03421", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 44, + "end_row_offset_idx": 45, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.00764", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 44, + "end_row_offset_idx": 45, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "7.64E-06", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 44, + "end_row_offset_idx": 45, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "20.0256", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 44, + "end_row_offset_idx": 45, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.00108", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 44, + "end_row_offset_idx": 45, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.01258", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 44, + "end_row_offset_idx": 45, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.93171", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 44, + "end_row_offset_idx": 45, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "0.0139", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 44, + "end_row_offset_idx": 45, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.01786", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 44, + "end_row_offset_idx": 45, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "0.43649", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 44, + "end_row_offset_idx": 45, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "0.00374", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 44, + "end_row_offset_idx": 45, + "start_col_offset_idx": 15, + "end_col_offset_idx": 16, + "text": "0.01807", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 44, + "end_row_offset_idx": 45, + "start_col_offset_idx": 16, + "end_col_offset_idx": 17, + "text": "0.83582", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 45, + "end_row_offset_idx": 46, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "27", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 45, + "end_row_offset_idx": 46, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs9464135", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 45, + "end_row_offset_idx": 46, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 45, + "end_row_offset_idx": 46, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 45, + "end_row_offset_idx": 46, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.0309", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 45, + "end_row_offset_idx": 46, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.00663", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 45, + "end_row_offset_idx": 46, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "3.11E-06", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 45, + "end_row_offset_idx": 46, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "21.7436", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 45, + "end_row_offset_idx": 46, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0076", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 45, + "end_row_offset_idx": 46, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.01055", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 45, + "end_row_offset_idx": 46, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.47151", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 45, + "end_row_offset_idx": 46, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "0.01164", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 45, + "end_row_offset_idx": 46, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.015", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 45, + "end_row_offset_idx": 46, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "0.43786", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 45, + "end_row_offset_idx": 46, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "\u22120.0375", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 45, + "end_row_offset_idx": 46, + "start_col_offset_idx": 15, + "end_col_offset_idx": 16, + "text": "0.01516", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 45, + "end_row_offset_idx": 46, + "start_col_offset_idx": 16, + "end_col_offset_idx": 17, + "text": "0.01337", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 46, + "end_row_offset_idx": 47, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "28", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 46, + "end_row_offset_idx": 47, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs9567762", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 46, + "end_row_offset_idx": 47, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 46, + "end_row_offset_idx": 47, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 46, + "end_row_offset_idx": 47, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.03635", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 46, + "end_row_offset_idx": 47, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.00823", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 46, + "end_row_offset_idx": 47, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "9.92E-06", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 46, + "end_row_offset_idx": 47, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "19.5276", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 46, + "end_row_offset_idx": 47, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.01223", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 46, + "end_row_offset_idx": 47, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.01084", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 46, + "end_row_offset_idx": 47, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.25934", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 46, + "end_row_offset_idx": 47, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "0.00403", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 46, + "end_row_offset_idx": 47, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.0154", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 46, + "end_row_offset_idx": 47, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "0.7934", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 46, + "end_row_offset_idx": 47, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "0.01552", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 46, + "end_row_offset_idx": 47, + "start_col_offset_idx": 15, + "end_col_offset_idx": 16, + "text": "0.01557", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 46, + "end_row_offset_idx": 47, + "start_col_offset_idx": 16, + "end_col_offset_idx": 17, + "text": "0.31884", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + "num_rows": 47, + "num_cols": 17, + "grid": [ + [ + { + "row_span": 1, + "col_span": 17, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 0, + "end_col_offset_idx": 17, + "text": "\nGenetic instruments for OSA (Jiang et al) and their associations with VTE, PE, and DVT\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 17, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 0, + "end_col_offset_idx": 17, + "text": "\nGenetic instruments for OSA (Jiang et al) and their associations with VTE, PE, and DVT\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 17, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 0, + "end_col_offset_idx": 17, + "text": "\nGenetic instruments for OSA (Jiang et al) and their associations with VTE, PE, and DVT\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 17, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 0, + "end_col_offset_idx": 17, + "text": "\nGenetic instruments for OSA (Jiang et al) and their associations with VTE, PE, and DVT\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 17, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 0, + "end_col_offset_idx": 17, + "text": "\nGenetic instruments for OSA (Jiang et al) and their associations with VTE, PE, and DVT\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 17, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 0, + "end_col_offset_idx": 17, + "text": "\nGenetic instruments for OSA (Jiang et al) and their associations with VTE, PE, and DVT\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 17, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 0, + "end_col_offset_idx": 17, + "text": "\nGenetic instruments for OSA (Jiang et al) and their associations with VTE, PE, and DVT\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 17, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 0, + "end_col_offset_idx": 17, + "text": "\nGenetic instruments for OSA (Jiang et al) and their associations with VTE, PE, and DVT\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 17, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 0, + "end_col_offset_idx": 17, + "text": "\nGenetic instruments for OSA (Jiang et al) and their associations with VTE, PE, and DVT\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 17, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 0, + "end_col_offset_idx": 17, + "text": "\nGenetic instruments for OSA (Jiang et al) and their associations with VTE, PE, and DVT\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 17, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 0, + "end_col_offset_idx": 17, + "text": "\nGenetic instruments for OSA (Jiang et al) and their associations with VTE, PE, and DVT\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 17, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 0, + "end_col_offset_idx": 17, + "text": "\nGenetic instruments for OSA (Jiang et al) and their associations with VTE, PE, and DVT\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 17, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 0, + "end_col_offset_idx": 17, + "text": "\nGenetic instruments for OSA (Jiang et al) and their associations with VTE, PE, and DVT\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 17, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 0, + "end_col_offset_idx": 17, + "text": "\nGenetic instruments for OSA (Jiang et al) and their associations with VTE, PE, and DVT\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 17, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 0, + "end_col_offset_idx": 17, + "text": "\nGenetic instruments for OSA (Jiang et al) and their associations with VTE, PE, and DVT\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 17, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 0, + "end_col_offset_idx": 17, + "text": "\nGenetic instruments for OSA (Jiang et al) and their associations with VTE, PE, and DVT\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 17, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 0, + "end_col_offset_idx": 17, + "text": "\nGenetic instruments for OSA (Jiang et al) and their associations with VTE, PE, and DVT\n", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 4, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 4, + "end_col_offset_idx": 8, + "text": "\nExposure: OSA (Jiang et al)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 4, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 4, + "end_col_offset_idx": 8, + "text": "\nExposure: OSA (Jiang et al)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 4, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 4, + "end_col_offset_idx": 8, + "text": "\nExposure: OSA (Jiang et al)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 4, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 4, + "end_col_offset_idx": 8, + "text": "\nExposure: OSA (Jiang et al)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 3, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 8, + "end_col_offset_idx": 11, + "text": "\nOutcome: VTE\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 3, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 8, + "end_col_offset_idx": 11, + "text": "\nOutcome: VTE\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 3, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 8, + "end_col_offset_idx": 11, + "text": "\nOutcome: VTE\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 3, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 11, + "end_col_offset_idx": 14, + "text": "\nOutcome: PE\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 3, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 11, + "end_col_offset_idx": 14, + "text": "\nOutcome: PE\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 3, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 11, + "end_col_offset_idx": 14, + "text": "\nOutcome: PE\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 3, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 14, + "end_col_offset_idx": 17, + "text": "\nOutcome: DVT\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 3, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 14, + "end_col_offset_idx": 17, + "text": "\nOutcome: DVT\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 3, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 14, + "end_col_offset_idx": 17, + "text": "\nOutcome: DVT\n", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "\nSNP\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "\nEA\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "\nOA\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\nBeta\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "\nSE\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "\np\n-Value\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "\nF-statistic\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\nBeta\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "\nSE\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "\np\n-Value\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "\nBeta\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "\nSE\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "\np\n-Value\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "\nBeta\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 15, + "end_col_offset_idx": 16, + "text": "\nSE\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 16, + "end_col_offset_idx": 17, + "text": "\np\n-Value\n", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs114417992", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.48798", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.10793", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "6.15E-06", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "20.4409", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.00702", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.04378", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.87253", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "\u22120.0542", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.06211", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "0.3832", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "\u22120.0052", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 15, + "end_col_offset_idx": 16, + "text": "0.06334", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 16, + "end_col_offset_idx": 17, + "text": "0.93511", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs115071002", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.3775", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0807", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "2.90E-06", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "21.8836", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0521", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.05045", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.30146", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "0.0359", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.07185", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "0.61729", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "\u22120.0633", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 15, + "end_col_offset_idx": 16, + "text": "0.07247", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 16, + "end_col_offset_idx": 17, + "text": "0.38241", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs117025138", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.42795", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.09571", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "7.78E-06", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "19.9915", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0149", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.05477", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.78611", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "0.0087", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.07809", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "0.91129", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "\u22120.0338", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 15, + "end_col_offset_idx": 16, + "text": "0.07836", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 16, + "end_col_offset_idx": 17, + "text": "0.66637", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs117474005", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.64176", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.14138", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "5.64E-06", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "20.6051", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0095", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.04108", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.81724", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "\u22120.0009", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.05862", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "0.98772", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "\u22120.0301", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 15, + "end_col_offset_idx": 16, + "text": "0.05891", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 16, + "end_col_offset_idx": 17, + "text": "0.60971", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs139183760", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.82973", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.16928", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "9.50E-07", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "24.0262", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.06514", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.07681", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.39643", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "0.04441", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.10929", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "0.68448", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "0.04761", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 15, + "end_col_offset_idx": 16, + "text": "0.11024", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 16, + "end_col_offset_idx": 17, + "text": "0.66585", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "6", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs148047757", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.47481", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.10699", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "9.08E-06", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "19.6952", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0522", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0352", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.13769", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "\u22120.044", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.04999", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "0.37895", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "\u22120.0294", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 15, + "end_col_offset_idx": 16, + "text": "0.05078", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 16, + "end_col_offset_idx": 17, + "text": "0.562", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "7", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs150798389", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.7875", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.17391", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "5.95E-06", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "20.505", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.2884", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.1435", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.04447", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "\u22120.2436", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.20053", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "0.22438", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "\u22120.1329", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 15, + "end_col_offset_idx": 16, + "text": "0.20679", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 16, + "end_col_offset_idx": 17, + "text": "0.52056", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "8", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs16850412", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.19514", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.04353", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "7.36E-06", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "20.0977", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.02674", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.01584", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.09145", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "0.04785", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.02253", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "0.03368", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "0.0173", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 15, + "end_col_offset_idx": 16, + "text": "0.02277", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 16, + "end_col_offset_idx": 17, + "text": "0.44739", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "9", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs1911999", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.1312", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.02965", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "9.59E-06", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "19.5917", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.01759", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.01111", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.11349", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "0.0376", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.01577", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "0.01714", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "0.00223", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 15, + "end_col_offset_idx": 16, + "text": "0.01596", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 16, + "end_col_offset_idx": 17, + "text": "0.88889", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "10", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs2302012", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.12829", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.02871", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "7.88E-06", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "19.9669", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0104", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.01076", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.33549", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "\u22120.0272", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.0153", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "0.07541", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "0.00767", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 15, + "end_col_offset_idx": 16, + "text": "0.01545", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 16, + "end_col_offset_idx": 17, + "text": "0.61949", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "11", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs35963104", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.16572", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.03452", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "1.59E-06", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "23.0393", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0076", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.01354", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.57685", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "\u22120.02", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.01924", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "0.29896", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "\u22120.007", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 15, + "end_col_offset_idx": 16, + "text": "0.01942", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 16, + "end_col_offset_idx": 17, + "text": "0.71778", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "12", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs60445800", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.29191", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.06499", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "7.06E-06", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "20.1758", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0268", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.02361", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.25672", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "\u22120.0649", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.03349", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "0.05277", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "0.0112", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 15, + "end_col_offset_idx": 16, + "text": "0.03388", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 16, + "end_col_offset_idx": 17, + "text": "0.74095", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "13", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs9587442", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.44308", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.09584", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "3.78E-06", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "21.3735", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0385", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.03346", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.24969", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "\u22120.0101", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.04781", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "0.83322", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "0.00182", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 15, + "end_col_offset_idx": 16, + "text": "0.04783", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 16, + "end_col_offset_idx": 17, + "text": "0.96962", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 17, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 0, + "end_col_offset_idx": 17, + "text": "\nGenetic instruments for OSA (Campos et al) and their associations with VTE, PE, and DVT\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 17, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 0, + "end_col_offset_idx": 17, + "text": "\nGenetic instruments for OSA (Campos et al) and their associations with VTE, PE, and DVT\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 17, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 0, + "end_col_offset_idx": 17, + "text": "\nGenetic instruments for OSA (Campos et al) and their associations with VTE, PE, and DVT\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 17, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 0, + "end_col_offset_idx": 17, + "text": "\nGenetic instruments for OSA (Campos et al) and their associations with VTE, PE, and DVT\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 17, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 0, + "end_col_offset_idx": 17, + "text": "\nGenetic instruments for OSA (Campos et al) and their associations with VTE, PE, and DVT\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 17, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 0, + "end_col_offset_idx": 17, + "text": "\nGenetic instruments for OSA (Campos et al) and their associations with VTE, PE, and DVT\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 17, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 0, + "end_col_offset_idx": 17, + "text": "\nGenetic instruments for OSA (Campos et al) and their associations with VTE, PE, and DVT\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 17, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 0, + "end_col_offset_idx": 17, + "text": "\nGenetic instruments for OSA (Campos et al) and their associations with VTE, PE, and DVT\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 17, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 0, + "end_col_offset_idx": 17, + "text": "\nGenetic instruments for OSA (Campos et al) and their associations with VTE, PE, and DVT\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 17, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 0, + "end_col_offset_idx": 17, + "text": "\nGenetic instruments for OSA (Campos et al) and their associations with VTE, PE, and DVT\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 17, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 0, + "end_col_offset_idx": 17, + "text": "\nGenetic instruments for OSA (Campos et al) and their associations with VTE, PE, and DVT\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 17, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 0, + "end_col_offset_idx": 17, + "text": "\nGenetic instruments for OSA (Campos et al) and their associations with VTE, PE, and DVT\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 17, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 0, + "end_col_offset_idx": 17, + "text": "\nGenetic instruments for OSA (Campos et al) and their associations with VTE, PE, and DVT\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 17, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 0, + "end_col_offset_idx": 17, + "text": "\nGenetic instruments for OSA (Campos et al) and their associations with VTE, PE, and DVT\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 17, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 0, + "end_col_offset_idx": 17, + "text": "\nGenetic instruments for OSA (Campos et al) and their associations with VTE, PE, and DVT\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 17, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 0, + "end_col_offset_idx": 17, + "text": "\nGenetic instruments for OSA (Campos et al) and their associations with VTE, PE, and DVT\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 17, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 0, + "end_col_offset_idx": 17, + "text": "\nGenetic instruments for OSA (Campos et al) and their associations with VTE, PE, and DVT\n", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 4, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 4, + "end_col_offset_idx": 8, + "text": "\nExposure: OSA (Campos et al)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 4, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 4, + "end_col_offset_idx": 8, + "text": "\nExposure: OSA (Campos et al)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 4, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 4, + "end_col_offset_idx": 8, + "text": "\nExposure: OSA (Campos et al)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 4, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 4, + "end_col_offset_idx": 8, + "text": "\nExposure: OSA (Campos et al)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 3, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 8, + "end_col_offset_idx": 11, + "text": "\nOutcome: VTE\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 3, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 8, + "end_col_offset_idx": 11, + "text": "\nOutcome: VTE\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 3, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 8, + "end_col_offset_idx": 11, + "text": "\nOutcome: VTE\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 3, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 11, + "end_col_offset_idx": 14, + "text": "\nOutcome: PE\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 3, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 11, + "end_col_offset_idx": 14, + "text": "\nOutcome: PE\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 3, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 11, + "end_col_offset_idx": 14, + "text": "\nOutcome: PE\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 3, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 14, + "end_col_offset_idx": 17, + "text": "\nOutcome: DVT\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 3, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 14, + "end_col_offset_idx": 17, + "text": "\nOutcome: DVT\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 3, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 14, + "end_col_offset_idx": 17, + "text": "\nOutcome: DVT\n", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "\nSNP\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "\nEA\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "\nOA\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\nBeta\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "\nSE\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "\np\n-Value\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "\nF-statistic\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\nBeta\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "\nSE\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "\np\n-Value\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "\nBeta\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "\nSE\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "\np\n-Value\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "\nBeta\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 15, + "end_col_offset_idx": 16, + "text": "\nSE\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 16, + "end_col_offset_idx": 17, + "text": "\np\n-Value\n", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs10777826", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.0319", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.00664", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "1.58E-06", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "23.0496", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.00684", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.01097", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.53296", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "0.01049", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.01557", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "0.50053", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "0.01763", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 15, + "end_col_offset_idx": 16, + "text": "0.01576", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 16, + "end_col_offset_idx": 17, + "text": "0.26318", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs10878269", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.03308", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0069", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "1.61E-06", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "23.0112", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0208", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.01191", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.08097", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "\u22120.0262", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.01693", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "0.12108", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "\u22120.015", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 15, + "end_col_offset_idx": 16, + "text": "0.01711", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 16, + "end_col_offset_idx": 17, + "text": "0.37964", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs111909157", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.1355", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.02658", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "3.40E-07", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "26.01", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.02664", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.04222", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.52808", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "0.03995", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.05999", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "0.5054", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "0.0364", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 15, + "end_col_offset_idx": 16, + "text": "0.06089", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 16, + "end_col_offset_idx": 17, + "text": "0.55", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs116114601", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.0873", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.01969", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "9.20E-06", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "19.6692", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0401", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.04098", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.32779", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "\u22120.0676", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.05814", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "0.24516", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "\u22120.0182", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 15, + "end_col_offset_idx": 16, + "text": "0.05873", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 16, + "end_col_offset_idx": 17, + "text": "0.75679", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs11989172", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.0378", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.00839", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "6.73E-06", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "20.268", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0217", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.01283", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.09", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "\u22120.039", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.01823", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "0.03222", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "0.01058", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 15, + "end_col_offset_idx": 16, + "text": "0.01842", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 16, + "end_col_offset_idx": 17, + "text": "0.56561", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "6", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs12265404", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.04931", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.01041", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "2.17E-06", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "22.4392", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.05233", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0166", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.00162", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "0.05687", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.0233", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "0.01467", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "0.04278", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 15, + "end_col_offset_idx": 16, + "text": "0.02358", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 16, + "end_col_offset_idx": 17, + "text": "0.06956", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "7", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs12306339", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.0488", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.01083", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "6.64E-06", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "20.295", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0051", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.01804", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.77914", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "\u22120.023", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.02561", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "0.37006", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "0.01462", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 15, + "end_col_offset_idx": 16, + "text": "0.02593", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 16, + "end_col_offset_idx": 17, + "text": "0.57292", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "8", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs13098300", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.03715", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.00712", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "1.84E-07", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "27.1962", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.00251", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.01202", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.83434", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "0.0101", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.01708", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "0.55432", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "5.55E-05", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 15, + "end_col_offset_idx": 16, + "text": "0.01727", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 16, + "end_col_offset_idx": 17, + "text": "0.99744", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 27, + "end_row_offset_idx": 28, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "9", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 27, + "end_row_offset_idx": 28, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs140548601", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 27, + "end_row_offset_idx": 28, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 27, + "end_row_offset_idx": 28, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 27, + "end_row_offset_idx": 28, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.1158", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 27, + "end_row_offset_idx": 28, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.02428", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 27, + "end_row_offset_idx": 28, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "1.85E-06", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 27, + "end_row_offset_idx": 28, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "22.7529", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 27, + "end_row_offset_idx": 28, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.05503", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 27, + "end_row_offset_idx": 28, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.04711", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 27, + "end_row_offset_idx": 28, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.24277", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 27, + "end_row_offset_idx": 28, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "0.09206", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 27, + "end_row_offset_idx": 28, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.06692", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 27, + "end_row_offset_idx": 28, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "0.16895", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 27, + "end_row_offset_idx": 28, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "0.04613", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 27, + "end_row_offset_idx": 28, + "start_col_offset_idx": 15, + "end_col_offset_idx": 16, + "text": "0.06762", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 27, + "end_row_offset_idx": 28, + "start_col_offset_idx": 16, + "end_col_offset_idx": 17, + "text": "0.49515", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 28, + "end_row_offset_idx": 29, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "10", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 28, + "end_row_offset_idx": 29, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs143417867", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 28, + "end_row_offset_idx": 29, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 28, + "end_row_offset_idx": 29, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 28, + "end_row_offset_idx": 29, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.3666", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 28, + "end_row_offset_idx": 29, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.07088", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 28, + "end_row_offset_idx": 29, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "2.30E-07", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 28, + "end_row_offset_idx": 29, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "26.7599", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 28, + "end_row_offset_idx": 29, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.1487", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 28, + "end_row_offset_idx": 29, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.2216", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 28, + "end_row_offset_idx": 29, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.5021", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 28, + "end_row_offset_idx": 29, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "0.15664", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 28, + "end_row_offset_idx": 29, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.31582", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 28, + "end_row_offset_idx": 29, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "0.61991", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 28, + "end_row_offset_idx": 29, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "\u22120.0868", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 28, + "end_row_offset_idx": 29, + "start_col_offset_idx": 15, + "end_col_offset_idx": 16, + "text": "0.31594", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 28, + "end_row_offset_idx": 29, + "start_col_offset_idx": 16, + "end_col_offset_idx": 17, + "text": "0.78353", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 29, + "end_row_offset_idx": 30, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "11", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 29, + "end_row_offset_idx": 30, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs1942263", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 29, + "end_row_offset_idx": 30, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 29, + "end_row_offset_idx": 30, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 29, + "end_row_offset_idx": 30, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.04569", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 29, + "end_row_offset_idx": 30, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.01016", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 29, + "end_row_offset_idx": 30, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "6.93E-06", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 29, + "end_row_offset_idx": 30, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "20.214", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 29, + "end_row_offset_idx": 30, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0156", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 29, + "end_row_offset_idx": 30, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.01713", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 29, + "end_row_offset_idx": 30, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.36361", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 29, + "end_row_offset_idx": 30, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "\u22120.0136", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 29, + "end_row_offset_idx": 30, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.02436", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 29, + "end_row_offset_idx": 30, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "0.57584", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 29, + "end_row_offset_idx": 30, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "\u22120.0318", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 29, + "end_row_offset_idx": 30, + "start_col_offset_idx": 15, + "end_col_offset_idx": 16, + "text": "0.02468", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 29, + "end_row_offset_idx": 30, + "start_col_offset_idx": 16, + "end_col_offset_idx": 17, + "text": "0.19751", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 30, + "end_row_offset_idx": 31, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "12", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 30, + "end_row_offset_idx": 31, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs2876633", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 30, + "end_row_offset_idx": 31, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 30, + "end_row_offset_idx": 31, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 30, + "end_row_offset_idx": 31, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.0355", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 30, + "end_row_offset_idx": 31, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.00695", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 30, + "end_row_offset_idx": 31, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "3.43E-07", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 30, + "end_row_offset_idx": 31, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "25.9896", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 30, + "end_row_offset_idx": 31, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0104", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 30, + "end_row_offset_idx": 31, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.01158", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 30, + "end_row_offset_idx": 31, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.36765", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 30, + "end_row_offset_idx": 31, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "\u22120.0104", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 30, + "end_row_offset_idx": 31, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.01645", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 30, + "end_row_offset_idx": 31, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "0.52845", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 30, + "end_row_offset_idx": 31, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "0.0032", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 30, + "end_row_offset_idx": 31, + "start_col_offset_idx": 15, + "end_col_offset_idx": 16, + "text": "0.01664", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 30, + "end_row_offset_idx": 31, + "start_col_offset_idx": 16, + "end_col_offset_idx": 17, + "text": "0.84772", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 31, + "end_row_offset_idx": 32, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "13", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 31, + "end_row_offset_idx": 32, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs35847366", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 31, + "end_row_offset_idx": 32, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 31, + "end_row_offset_idx": 32, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 31, + "end_row_offset_idx": 32, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.0545", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 31, + "end_row_offset_idx": 32, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.01172", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 31, + "end_row_offset_idx": 32, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "3.31E-06", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 31, + "end_row_offset_idx": 32, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "21.6318", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 31, + "end_row_offset_idx": 32, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0365", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 31, + "end_row_offset_idx": 32, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.01831", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 31, + "end_row_offset_idx": 32, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.04596", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 31, + "end_row_offset_idx": 32, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "\u22120.0383", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 31, + "end_row_offset_idx": 32, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.02603", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 31, + "end_row_offset_idx": 32, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "0.14125", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 31, + "end_row_offset_idx": 32, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "\u22120.0511", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 31, + "end_row_offset_idx": 32, + "start_col_offset_idx": 15, + "end_col_offset_idx": 16, + "text": "0.02629", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 31, + "end_row_offset_idx": 32, + "start_col_offset_idx": 16, + "end_col_offset_idx": 17, + "text": "0.0517", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 32, + "end_row_offset_idx": 33, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "14", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 32, + "end_row_offset_idx": 33, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs36051007", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 32, + "end_row_offset_idx": 33, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 32, + "end_row_offset_idx": 33, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 32, + "end_row_offset_idx": 33, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.03481", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 32, + "end_row_offset_idx": 33, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.00716", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 32, + "end_row_offset_idx": 33, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "1.14E-06", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 32, + "end_row_offset_idx": 33, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "23.6682", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 32, + "end_row_offset_idx": 33, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0037", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 32, + "end_row_offset_idx": 33, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.01095", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 32, + "end_row_offset_idx": 33, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.73452", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 32, + "end_row_offset_idx": 33, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "\u22120.0145", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 32, + "end_row_offset_idx": 33, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.01557", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 32, + "end_row_offset_idx": 33, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "0.35199", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 32, + "end_row_offset_idx": 33, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "0.00723", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 32, + "end_row_offset_idx": 33, + "start_col_offset_idx": 15, + "end_col_offset_idx": 16, + "text": "0.01573", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 32, + "end_row_offset_idx": 33, + "start_col_offset_idx": 16, + "end_col_offset_idx": 17, + "text": "0.64597", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 33, + "end_row_offset_idx": 34, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "15", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 33, + "end_row_offset_idx": 34, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs3774800", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 33, + "end_row_offset_idx": 34, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 33, + "end_row_offset_idx": 34, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 33, + "end_row_offset_idx": 34, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.0309", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 33, + "end_row_offset_idx": 34, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0069", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 33, + "end_row_offset_idx": 34, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "7.79E-06", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 33, + "end_row_offset_idx": 34, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "19.9898", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 33, + "end_row_offset_idx": 34, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.00395", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 33, + "end_row_offset_idx": 34, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.01151", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 33, + "end_row_offset_idx": 34, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.73124", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 33, + "end_row_offset_idx": 34, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "\u22120.0107", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 33, + "end_row_offset_idx": 34, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.01634", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 33, + "end_row_offset_idx": 34, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "0.51218", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 33, + "end_row_offset_idx": 34, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "0.0093", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 33, + "end_row_offset_idx": 34, + "start_col_offset_idx": 15, + "end_col_offset_idx": 16, + "text": "0.01654", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 33, + "end_row_offset_idx": 34, + "start_col_offset_idx": 16, + "end_col_offset_idx": 17, + "text": "0.57396", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 34, + "end_row_offset_idx": 35, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "16", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 34, + "end_row_offset_idx": 35, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs4542364", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 34, + "end_row_offset_idx": 35, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 34, + "end_row_offset_idx": 35, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 34, + "end_row_offset_idx": 35, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.03028", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 34, + "end_row_offset_idx": 35, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.00673", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 34, + "end_row_offset_idx": 35, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "6.69E-06", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 34, + "end_row_offset_idx": 35, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "20.277", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 34, + "end_row_offset_idx": 35, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0053", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 34, + "end_row_offset_idx": 35, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.01084", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 34, + "end_row_offset_idx": 35, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.6236", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 34, + "end_row_offset_idx": 35, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "\u22120.0199", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 34, + "end_row_offset_idx": 35, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.01541", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 34, + "end_row_offset_idx": 35, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "0.19737", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 34, + "end_row_offset_idx": 35, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "0.00163", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 34, + "end_row_offset_idx": 35, + "start_col_offset_idx": 15, + "end_col_offset_idx": 16, + "text": "0.01559", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 34, + "end_row_offset_idx": 35, + "start_col_offset_idx": 16, + "end_col_offset_idx": 17, + "text": "0.91663", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 35, + "end_row_offset_idx": 36, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "17", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 35, + "end_row_offset_idx": 36, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs4675933", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 35, + "end_row_offset_idx": 36, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 35, + "end_row_offset_idx": 36, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 35, + "end_row_offset_idx": 36, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.0329", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 35, + "end_row_offset_idx": 36, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.00709", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 35, + "end_row_offset_idx": 36, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "3.44E-06", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 35, + "end_row_offset_idx": 36, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "21.5482", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 35, + "end_row_offset_idx": 36, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.00822", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 35, + "end_row_offset_idx": 36, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.01093", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 35, + "end_row_offset_idx": 36, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.45187", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 35, + "end_row_offset_idx": 36, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "0.00396", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 35, + "end_row_offset_idx": 36, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.01554", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 35, + "end_row_offset_idx": 36, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "0.79863", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 35, + "end_row_offset_idx": 36, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "0.01593", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 35, + "end_row_offset_idx": 36, + "start_col_offset_idx": 15, + "end_col_offset_idx": 16, + "text": "0.01568", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 35, + "end_row_offset_idx": 36, + "start_col_offset_idx": 16, + "end_col_offset_idx": 17, + "text": "0.30957", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 36, + "end_row_offset_idx": 37, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "18", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 36, + "end_row_offset_idx": 37, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs533143", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 36, + "end_row_offset_idx": 37, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 36, + "end_row_offset_idx": 37, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 36, + "end_row_offset_idx": 37, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.03237", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 36, + "end_row_offset_idx": 37, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.00732", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 36, + "end_row_offset_idx": 37, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "9.73E-06", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 36, + "end_row_offset_idx": 37, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "19.5629", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 36, + "end_row_offset_idx": 37, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.02892", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 36, + "end_row_offset_idx": 37, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.01429", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 36, + "end_row_offset_idx": 37, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.04304", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 36, + "end_row_offset_idx": 37, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "0.02757", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 36, + "end_row_offset_idx": 37, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.02031", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 36, + "end_row_offset_idx": 37, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "0.1747", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 36, + "end_row_offset_idx": 37, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "0.0111", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 36, + "end_row_offset_idx": 37, + "start_col_offset_idx": 15, + "end_col_offset_idx": 16, + "text": "0.02054", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 36, + "end_row_offset_idx": 37, + "start_col_offset_idx": 16, + "end_col_offset_idx": 17, + "text": "0.58881", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 37, + "end_row_offset_idx": 38, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "19", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 37, + "end_row_offset_idx": 38, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs60653979", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 37, + "end_row_offset_idx": 38, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 37, + "end_row_offset_idx": 38, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 37, + "end_row_offset_idx": 38, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.03384", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 37, + "end_row_offset_idx": 38, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0068", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 37, + "end_row_offset_idx": 38, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "6.43E-07", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 37, + "end_row_offset_idx": 38, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "24.7805", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 37, + "end_row_offset_idx": 38, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.01098", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 37, + "end_row_offset_idx": 38, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.01083", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 37, + "end_row_offset_idx": 38, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.31063", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 37, + "end_row_offset_idx": 38, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "\u22120.0154", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 37, + "end_row_offset_idx": 38, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.01539", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 37, + "end_row_offset_idx": 38, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "0.31844", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 37, + "end_row_offset_idx": 38, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "0.02887", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 37, + "end_row_offset_idx": 38, + "start_col_offset_idx": 15, + "end_col_offset_idx": 16, + "text": "0.01557", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 37, + "end_row_offset_idx": 38, + "start_col_offset_idx": 16, + "end_col_offset_idx": 17, + "text": "0.06364", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 38, + "end_row_offset_idx": 39, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "20", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 38, + "end_row_offset_idx": 39, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs62559379", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 38, + "end_row_offset_idx": 39, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 38, + "end_row_offset_idx": 39, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 38, + "end_row_offset_idx": 39, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.0706", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 38, + "end_row_offset_idx": 39, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.01455", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 38, + "end_row_offset_idx": 39, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "1.22E-06", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 38, + "end_row_offset_idx": 39, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "23.5419", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 38, + "end_row_offset_idx": 39, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0163", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 38, + "end_row_offset_idx": 39, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.02726", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 38, + "end_row_offset_idx": 39, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.54934", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 38, + "end_row_offset_idx": 39, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "\u22120.028", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 38, + "end_row_offset_idx": 39, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.03871", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 38, + "end_row_offset_idx": 39, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "0.46867", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 38, + "end_row_offset_idx": 39, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "\u22120.0113", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 38, + "end_row_offset_idx": 39, + "start_col_offset_idx": 15, + "end_col_offset_idx": 16, + "text": "0.03915", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 38, + "end_row_offset_idx": 39, + "start_col_offset_idx": 16, + "end_col_offset_idx": 17, + "text": "0.77255", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 39, + "end_row_offset_idx": 40, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "21", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 39, + "end_row_offset_idx": 40, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs7106583", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 39, + "end_row_offset_idx": 40, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 39, + "end_row_offset_idx": 40, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 39, + "end_row_offset_idx": 40, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.03868", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 39, + "end_row_offset_idx": 40, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.00839", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 39, + "end_row_offset_idx": 40, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "4.09E-06", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 39, + "end_row_offset_idx": 40, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "21.2244", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 39, + "end_row_offset_idx": 40, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0434", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 39, + "end_row_offset_idx": 40, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.014", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 39, + "end_row_offset_idx": 40, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.00194", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 39, + "end_row_offset_idx": 40, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "\u22120.0205", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 39, + "end_row_offset_idx": 40, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.02006", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 39, + "end_row_offset_idx": 40, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "0.30655", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 39, + "end_row_offset_idx": 40, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "\u22120.0414", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 39, + "end_row_offset_idx": 40, + "start_col_offset_idx": 15, + "end_col_offset_idx": 16, + "text": "0.0203", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 39, + "end_row_offset_idx": 40, + "start_col_offset_idx": 16, + "end_col_offset_idx": 17, + "text": "0.04114", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 40, + "end_row_offset_idx": 41, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "22", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 40, + "end_row_offset_idx": 41, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs72904209", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 40, + "end_row_offset_idx": 41, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 40, + "end_row_offset_idx": 41, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 40, + "end_row_offset_idx": 41, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.0446", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 40, + "end_row_offset_idx": 41, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.00983", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 40, + "end_row_offset_idx": 41, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "5.67E-06", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 40, + "end_row_offset_idx": 41, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "20.5934", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 40, + "end_row_offset_idx": 41, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0153", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 40, + "end_row_offset_idx": 41, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.01617", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 40, + "end_row_offset_idx": 41, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.34449", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 40, + "end_row_offset_idx": 41, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "\u22120.0355", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 40, + "end_row_offset_idx": 41, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.02292", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 40, + "end_row_offset_idx": 41, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "0.1215", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 40, + "end_row_offset_idx": 41, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "\u22120.0066", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 40, + "end_row_offset_idx": 41, + "start_col_offset_idx": 15, + "end_col_offset_idx": 16, + "text": "0.02327", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 40, + "end_row_offset_idx": 41, + "start_col_offset_idx": 16, + "end_col_offset_idx": 17, + "text": "0.77599", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 41, + "end_row_offset_idx": 42, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "23", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 41, + "end_row_offset_idx": 42, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs73141516", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 41, + "end_row_offset_idx": 42, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 41, + "end_row_offset_idx": 42, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 41, + "end_row_offset_idx": 42, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.06496", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 41, + "end_row_offset_idx": 42, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.01415", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 41, + "end_row_offset_idx": 42, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "4.40E-06", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 41, + "end_row_offset_idx": 42, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "21.0865", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 41, + "end_row_offset_idx": 42, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.0084", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 41, + "end_row_offset_idx": 42, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.02184", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 41, + "end_row_offset_idx": 42, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.70062", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 41, + "end_row_offset_idx": 42, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "\u22120.0241", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 41, + "end_row_offset_idx": 42, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.03105", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 41, + "end_row_offset_idx": 42, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "0.43797", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 41, + "end_row_offset_idx": 42, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "0.03405", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 41, + "end_row_offset_idx": 42, + "start_col_offset_idx": 15, + "end_col_offset_idx": 16, + "text": "0.03133", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 41, + "end_row_offset_idx": 42, + "start_col_offset_idx": 16, + "end_col_offset_idx": 17, + "text": "0.27717", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 42, + "end_row_offset_idx": 43, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "24", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 42, + "end_row_offset_idx": 43, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs73164714", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 42, + "end_row_offset_idx": 43, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 42, + "end_row_offset_idx": 43, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 42, + "end_row_offset_idx": 43, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.0695", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 42, + "end_row_offset_idx": 43, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.01285", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 42, + "end_row_offset_idx": 43, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "6.43E-08", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 42, + "end_row_offset_idx": 43, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "29.2248", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 42, + "end_row_offset_idx": 43, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.028", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 42, + "end_row_offset_idx": 43, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.03721", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 42, + "end_row_offset_idx": 43, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.45256", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 42, + "end_row_offset_idx": 43, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "0.00562", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 42, + "end_row_offset_idx": 43, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.05276", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 42, + "end_row_offset_idx": 43, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "0.91513", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 42, + "end_row_offset_idx": 43, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "\u22120.0139", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 42, + "end_row_offset_idx": 43, + "start_col_offset_idx": 15, + "end_col_offset_idx": 16, + "text": "0.05319", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 42, + "end_row_offset_idx": 43, + "start_col_offset_idx": 16, + "end_col_offset_idx": 17, + "text": "0.79352", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 43, + "end_row_offset_idx": 44, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "25", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 43, + "end_row_offset_idx": 44, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs7800775", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 43, + "end_row_offset_idx": 44, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 43, + "end_row_offset_idx": 44, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 43, + "end_row_offset_idx": 44, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.03487", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 43, + "end_row_offset_idx": 44, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.00785", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 43, + "end_row_offset_idx": 44, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "8.98E-06", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 43, + "end_row_offset_idx": 44, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "19.7136", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 43, + "end_row_offset_idx": 44, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.00351", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 43, + "end_row_offset_idx": 44, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.01357", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 43, + "end_row_offset_idx": 44, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.79598", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 43, + "end_row_offset_idx": 44, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "0.00758", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 43, + "end_row_offset_idx": 44, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.01929", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 43, + "end_row_offset_idx": 44, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "0.69414", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 43, + "end_row_offset_idx": 44, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "\u22120.0166", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 43, + "end_row_offset_idx": 44, + "start_col_offset_idx": 15, + "end_col_offset_idx": 16, + "text": "0.01948", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 43, + "end_row_offset_idx": 44, + "start_col_offset_idx": 16, + "end_col_offset_idx": 17, + "text": "0.39528", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 44, + "end_row_offset_idx": 45, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "26", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 44, + "end_row_offset_idx": 45, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs794999", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 44, + "end_row_offset_idx": 45, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 44, + "end_row_offset_idx": 45, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 44, + "end_row_offset_idx": 45, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.03421", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 44, + "end_row_offset_idx": 45, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.00764", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 44, + "end_row_offset_idx": 45, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "7.64E-06", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 44, + "end_row_offset_idx": 45, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "20.0256", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 44, + "end_row_offset_idx": 45, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.00108", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 44, + "end_row_offset_idx": 45, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.01258", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 44, + "end_row_offset_idx": 45, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.93171", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 44, + "end_row_offset_idx": 45, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "0.0139", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 44, + "end_row_offset_idx": 45, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.01786", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 44, + "end_row_offset_idx": 45, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "0.43649", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 44, + "end_row_offset_idx": 45, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "0.00374", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 44, + "end_row_offset_idx": 45, + "start_col_offset_idx": 15, + "end_col_offset_idx": 16, + "text": "0.01807", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 44, + "end_row_offset_idx": 45, + "start_col_offset_idx": 16, + "end_col_offset_idx": 17, + "text": "0.83582", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 45, + "end_row_offset_idx": 46, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "27", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 45, + "end_row_offset_idx": 46, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs9464135", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 45, + "end_row_offset_idx": 46, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 45, + "end_row_offset_idx": 46, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 45, + "end_row_offset_idx": 46, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.0309", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 45, + "end_row_offset_idx": 46, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.00663", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 45, + "end_row_offset_idx": 46, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "3.11E-06", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 45, + "end_row_offset_idx": 46, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "21.7436", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 45, + "end_row_offset_idx": 46, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0076", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 45, + "end_row_offset_idx": 46, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.01055", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 45, + "end_row_offset_idx": 46, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.47151", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 45, + "end_row_offset_idx": 46, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "0.01164", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 45, + "end_row_offset_idx": 46, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.015", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 45, + "end_row_offset_idx": 46, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "0.43786", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 45, + "end_row_offset_idx": 46, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "\u22120.0375", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 45, + "end_row_offset_idx": 46, + "start_col_offset_idx": 15, + "end_col_offset_idx": 16, + "text": "0.01516", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 45, + "end_row_offset_idx": 46, + "start_col_offset_idx": 16, + "end_col_offset_idx": 17, + "text": "0.01337", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 46, + "end_row_offset_idx": 47, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "28", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 46, + "end_row_offset_idx": 47, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs9567762", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 46, + "end_row_offset_idx": 47, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 46, + "end_row_offset_idx": 47, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 46, + "end_row_offset_idx": 47, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.03635", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 46, + "end_row_offset_idx": 47, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.00823", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 46, + "end_row_offset_idx": 47, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "9.92E-06", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 46, + "end_row_offset_idx": 47, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "19.5276", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 46, + "end_row_offset_idx": 47, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.01223", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 46, + "end_row_offset_idx": 47, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.01084", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 46, + "end_row_offset_idx": 47, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.25934", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 46, + "end_row_offset_idx": 47, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "0.00403", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 46, + "end_row_offset_idx": 47, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.0154", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 46, + "end_row_offset_idx": 47, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "0.7934", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 46, + "end_row_offset_idx": 47, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "0.01552", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 46, + "end_row_offset_idx": 47, + "start_col_offset_idx": 15, + "end_col_offset_idx": 16, + "text": "0.01557", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 46, + "end_row_offset_idx": 47, + "start_col_offset_idx": 16, + "end_col_offset_idx": 17, + "text": "0.31884", + "column_header": false, + "row_header": false, + "row_section": false + } + ] + ] + } + }, + { + "self_ref": "#/tables/2", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "table", + "prov": [], + "captions": [ + { + "$ref": "#/texts/26" + } + ], + "references": [], + "footnotes": [], + "data": { + "table_cells": [ + { + "row_span": 1, + "col_span": 11, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 0, + "end_col_offset_idx": 11, + "text": "\nGenetic instruments for VTE/PE/DVT and their associations with OSA (Jiang et al)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 4, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 4, + "end_col_offset_idx": 8, + "text": "\nExposure: VTE\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 3, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 8, + "end_col_offset_idx": 11, + "text": "\nOutcome: OSA (Jiang et al)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "\nSNP\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "\nEA\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "\nOA\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\nBeta\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "\nSE\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "\np\n-Value\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "\nF-statistic\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\nBeta\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "\nSE\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "\np\n-Value\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs10896706", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.0702142", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0121006", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "6.53E-09", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "33.669456", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0597845", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.029345", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.0416207", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs113079063", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.378107", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0507769", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "9.59E-14", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "55.449428", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.0050364", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0876134", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.954159", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs114026832", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.773925", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.099915", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "9.50E-15", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "59.997944", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.0578773", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.180543", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.748533", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs114767153", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.20888", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0348173", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "1.98E-09", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "35.991798", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0712189", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0909972", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.433833", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs116997538", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.403288", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0383066", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "6.42E-26", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "110.83665", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.067735", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.123897", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.584581", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "6", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs12054563", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.126677", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0176431", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "6.97E-13", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "51.552027", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.0602695", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0663601", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.363763", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "7", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs1560711", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.122379", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0141465", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "5.11E-18", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "74.836901", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.0310044", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0321024", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.334145", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "8", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs174529", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.0686342", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0107211", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "1.54E-10", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "40.982878", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0053417", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0276673", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.846904", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "9", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs188337046", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.16048", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0250424", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "1.47E-10", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "41.066712", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.178311", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.206621", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.388145", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "10", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs2066865", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.186112", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0112369", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "1.30E-61", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "274.31889", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.0083154", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0313691", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.790945", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "11", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs2519785", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.0702991", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0118882", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "3.35E-09", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "34.967721", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.0074319", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0297183", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.802526", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "12", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs3756011", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.192712", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0105525", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "1.65E-74", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "333.50841", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0026386", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0272831", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.922956", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "13", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs57328376", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.0697584", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0109198", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "1.68E-10", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "40.809724", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0101806", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0290533", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.726031", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "14", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs576123", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.237396", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0104973", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "3.09E-113", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "511.43633", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.00819", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0287779", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.775956", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "15", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs5896", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.109291", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0125852", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "3.82E-18", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "75.413406", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.0614773", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0388191", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.113265", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "16", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs6025", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.873415", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0298388", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "2.42E-188", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "856.79828", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.0502217", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0899796", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.576745", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "17", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs6060308", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.101587", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0112359", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "1.55E-19", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "81.744876", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.0521936", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0308737", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.0909227", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "18", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs60681578", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.118392", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0150029", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "2.99E-15", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "62.272211", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.0169103", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0390773", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.665204", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "19", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs62350309", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.173509", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0181448", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "1.15E-21", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "91.440721", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.071956", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0634685", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.256909", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "20", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs628094", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.0818781", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0114389", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "8.19E-13", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "51.235029", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.0027028", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0302168", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.928726", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "21", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs72708961", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.0891913", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0159445", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "2.22E-08", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "31.291269", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0765307", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0367798", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.0374539", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "22", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs7772305", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.0726964", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0111586", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "7.28E-11", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "42.443031", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.0585778", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0307164", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.0565137", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "23", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs78807356", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.541094", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0563616", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "7.96E-22", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "92.167713", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.101617", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0796139", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.201825", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 4, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 4, + "end_col_offset_idx": 8, + "text": "\nExposure: PE\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 3, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 8, + "end_col_offset_idx": 11, + "text": "\nOutcome: OSA (Jiang et al)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 27, + "end_row_offset_idx": 28, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 27, + "end_row_offset_idx": 28, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "\nSNP\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 27, + "end_row_offset_idx": 28, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "\nEA\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 27, + "end_row_offset_idx": 28, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "\nOA\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 27, + "end_row_offset_idx": 28, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\nBeta\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 27, + "end_row_offset_idx": 28, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "\nSE\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 27, + "end_row_offset_idx": 28, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "\np\n-Value\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 27, + "end_row_offset_idx": 28, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "\nF-statistic\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 27, + "end_row_offset_idx": 28, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\nBeta\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 27, + "end_row_offset_idx": 28, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "\nSE\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 27, + "end_row_offset_idx": 28, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "\np\n-Value\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 28, + "end_row_offset_idx": 29, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 28, + "end_row_offset_idx": 29, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs117210485", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 28, + "end_row_offset_idx": 29, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 28, + "end_row_offset_idx": 29, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 28, + "end_row_offset_idx": 29, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.150787", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 28, + "end_row_offset_idx": 29, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0228699", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 28, + "end_row_offset_idx": 29, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "4.30E-11", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 28, + "end_row_offset_idx": 29, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "43.470964", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 28, + "end_row_offset_idx": 29, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.0214618", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 28, + "end_row_offset_idx": 29, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.114177", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 28, + "end_row_offset_idx": 29, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.8509", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 29, + "end_row_offset_idx": 30, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 29, + "end_row_offset_idx": 30, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs11758950", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 29, + "end_row_offset_idx": 30, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 29, + "end_row_offset_idx": 30, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 29, + "end_row_offset_idx": 30, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.203947", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 29, + "end_row_offset_idx": 30, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0367907", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 29, + "end_row_offset_idx": 30, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "2.97E-08", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 29, + "end_row_offset_idx": 30, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "30.729716", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 29, + "end_row_offset_idx": 30, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.0418521", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 29, + "end_row_offset_idx": 30, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0821953", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 29, + "end_row_offset_idx": 30, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.610627", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 30, + "end_row_offset_idx": 31, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 30, + "end_row_offset_idx": 31, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs143620474", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 30, + "end_row_offset_idx": 31, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 30, + "end_row_offset_idx": 31, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 30, + "end_row_offset_idx": 31, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.281243", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 30, + "end_row_offset_idx": 31, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0512263", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 30, + "end_row_offset_idx": 31, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "4.01E-08", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 30, + "end_row_offset_idx": 31, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "30.142375", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 30, + "end_row_offset_idx": 31, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.546819", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 30, + "end_row_offset_idx": 31, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.155226", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 30, + "end_row_offset_idx": 31, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.0004271", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 31, + "end_row_offset_idx": 32, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 31, + "end_row_offset_idx": 32, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs1481808", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 31, + "end_row_offset_idx": 32, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 31, + "end_row_offset_idx": 32, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 31, + "end_row_offset_idx": 32, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.480929", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 31, + "end_row_offset_idx": 32, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0875759", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 31, + "end_row_offset_idx": 32, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "3.98E-08", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 31, + "end_row_offset_idx": 32, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "30.157318", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 31, + "end_row_offset_idx": 32, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.164933", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 31, + "end_row_offset_idx": 32, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.105459", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 31, + "end_row_offset_idx": 32, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.117828", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 32, + "end_row_offset_idx": 33, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 32, + "end_row_offset_idx": 33, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs1560711", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 32, + "end_row_offset_idx": 33, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 32, + "end_row_offset_idx": 33, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 32, + "end_row_offset_idx": 33, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.144704", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 32, + "end_row_offset_idx": 33, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0202073", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 32, + "end_row_offset_idx": 33, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "8.01E-13", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 32, + "end_row_offset_idx": 33, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "51.279584", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 32, + "end_row_offset_idx": 33, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.0310044", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 32, + "end_row_offset_idx": 33, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0321024", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 32, + "end_row_offset_idx": 33, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.334145", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 33, + "end_row_offset_idx": 34, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "6", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 33, + "end_row_offset_idx": 34, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs1894692", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 33, + "end_row_offset_idx": 34, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 33, + "end_row_offset_idx": 34, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 33, + "end_row_offset_idx": 34, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.547808", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 33, + "end_row_offset_idx": 34, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0457764", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 33, + "end_row_offset_idx": 34, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "5.29E-33", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 33, + "end_row_offset_idx": 34, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "143.21004", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 33, + "end_row_offset_idx": 34, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.0002365", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 33, + "end_row_offset_idx": 34, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0951533", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 33, + "end_row_offset_idx": 34, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.998017", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 34, + "end_row_offset_idx": 35, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "7", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 34, + "end_row_offset_idx": 35, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs2066865", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 34, + "end_row_offset_idx": 35, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 34, + "end_row_offset_idx": 35, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 34, + "end_row_offset_idx": 35, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.227484", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 34, + "end_row_offset_idx": 35, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0158067", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 34, + "end_row_offset_idx": 35, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "5.85E-47", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 34, + "end_row_offset_idx": 35, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "207.11869", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 34, + "end_row_offset_idx": 35, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.0083154", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 34, + "end_row_offset_idx": 35, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0313691", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 34, + "end_row_offset_idx": 35, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.790945", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 35, + "end_row_offset_idx": 36, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "8", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 35, + "end_row_offset_idx": 36, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs28584824", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 35, + "end_row_offset_idx": 36, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 35, + "end_row_offset_idx": 36, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 35, + "end_row_offset_idx": 36, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.155264", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 35, + "end_row_offset_idx": 36, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0279234", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 35, + "end_row_offset_idx": 36, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "2.69E-08", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 35, + "end_row_offset_idx": 36, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "30.917541", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 35, + "end_row_offset_idx": 36, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0268756", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 35, + "end_row_offset_idx": 36, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0782108", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 35, + "end_row_offset_idx": 36, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.731124", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 36, + "end_row_offset_idx": 37, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "9", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 36, + "end_row_offset_idx": 37, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs3756011", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 36, + "end_row_offset_idx": 37, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 36, + "end_row_offset_idx": 37, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 36, + "end_row_offset_idx": 37, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.234784", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 36, + "end_row_offset_idx": 37, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0149143", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 36, + "end_row_offset_idx": 37, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "7.77E-56", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 36, + "end_row_offset_idx": 37, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "247.81709", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 36, + "end_row_offset_idx": 37, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0026386", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 36, + "end_row_offset_idx": 37, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0272831", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 36, + "end_row_offset_idx": 37, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.922956", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 37, + "end_row_offset_idx": 38, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "10", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 37, + "end_row_offset_idx": 38, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs62350309", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 37, + "end_row_offset_idx": 38, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 37, + "end_row_offset_idx": 38, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 37, + "end_row_offset_idx": 38, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.202534", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 37, + "end_row_offset_idx": 38, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0260372", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 37, + "end_row_offset_idx": 38, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "7.33E-15", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 37, + "end_row_offset_idx": 38, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "60.507237", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 37, + "end_row_offset_idx": 38, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.071956", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 37, + "end_row_offset_idx": 38, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0634685", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 37, + "end_row_offset_idx": 38, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.256909", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 38, + "end_row_offset_idx": 39, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "11", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 38, + "end_row_offset_idx": 39, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs635634", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 38, + "end_row_offset_idx": 39, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 38, + "end_row_offset_idx": 39, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 38, + "end_row_offset_idx": 39, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.239636", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 38, + "end_row_offset_idx": 39, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0177935", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 38, + "end_row_offset_idx": 39, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "2.43E-41", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 38, + "end_row_offset_idx": 39, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "181.37664", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 38, + "end_row_offset_idx": 39, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.0064596", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 38, + "end_row_offset_idx": 39, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0347197", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 38, + "end_row_offset_idx": 39, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.852404", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 39, + "end_row_offset_idx": 40, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "12", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 39, + "end_row_offset_idx": 40, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs665082", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 39, + "end_row_offset_idx": 40, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 39, + "end_row_offset_idx": 40, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 39, + "end_row_offset_idx": 40, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.175581", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 39, + "end_row_offset_idx": 40, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.030484", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 39, + "end_row_offset_idx": 40, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "8.42E-09", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 39, + "end_row_offset_idx": 40, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "33.175015", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 39, + "end_row_offset_idx": 40, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.343267", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 39, + "end_row_offset_idx": 40, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.216405", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 39, + "end_row_offset_idx": 40, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.112688", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 40, + "end_row_offset_idx": 41, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "13", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 40, + "end_row_offset_idx": 41, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs77165492", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 40, + "end_row_offset_idx": 41, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 40, + "end_row_offset_idx": 41, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 40, + "end_row_offset_idx": 41, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.209269", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 40, + "end_row_offset_idx": 41, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0275462", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 40, + "end_row_offset_idx": 41, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "3.03E-14", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 40, + "end_row_offset_idx": 41, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "57.714695", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 40, + "end_row_offset_idx": 41, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0445618", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 40, + "end_row_offset_idx": 41, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0457769", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 40, + "end_row_offset_idx": 41, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.330327", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 41, + "end_row_offset_idx": 42, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "14", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 41, + "end_row_offset_idx": 42, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs78807356", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 41, + "end_row_offset_idx": 42, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 41, + "end_row_offset_idx": 42, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 41, + "end_row_offset_idx": 42, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.515784", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 41, + "end_row_offset_idx": 42, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0795096", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 41, + "end_row_offset_idx": 42, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "8.75E-11", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 41, + "end_row_offset_idx": 42, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "42.082022", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 41, + "end_row_offset_idx": 42, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.101617", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 41, + "end_row_offset_idx": 42, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0796139", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 41, + "end_row_offset_idx": 42, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.201825", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 42, + "end_row_offset_idx": 43, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 42, + "end_row_offset_idx": 43, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 42, + "end_row_offset_idx": 43, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 42, + "end_row_offset_idx": 43, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 4, + "start_row_offset_idx": 42, + "end_row_offset_idx": 43, + "start_col_offset_idx": 4, + "end_col_offset_idx": 8, + "text": "\nExposure: DVT\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 3, + "start_row_offset_idx": 42, + "end_row_offset_idx": 43, + "start_col_offset_idx": 8, + "end_col_offset_idx": 11, + "text": "\nOutcome: OSA (Jiang et al)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 43, + "end_row_offset_idx": 44, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 43, + "end_row_offset_idx": 44, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "\nSNP\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 43, + "end_row_offset_idx": 44, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "\nEA\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 43, + "end_row_offset_idx": 44, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "\nOA\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 43, + "end_row_offset_idx": 44, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\nBeta\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 43, + "end_row_offset_idx": 44, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "\nSE\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 43, + "end_row_offset_idx": 44, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "\np\n-Value\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 43, + "end_row_offset_idx": 44, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "\nF-statistic\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 43, + "end_row_offset_idx": 44, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\nBeta\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 43, + "end_row_offset_idx": 44, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "\nSE\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 43, + "end_row_offset_idx": 44, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "\np\n-Value\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 44, + "end_row_offset_idx": 45, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 44, + "end_row_offset_idx": 45, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs113079063", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 44, + "end_row_offset_idx": 45, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 44, + "end_row_offset_idx": 45, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 44, + "end_row_offset_idx": 45, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.436284", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 44, + "end_row_offset_idx": 45, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0717563", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 44, + "end_row_offset_idx": 45, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "1.20E-09", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 44, + "end_row_offset_idx": 45, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "36.967365", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 44, + "end_row_offset_idx": 45, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.0050364", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 44, + "end_row_offset_idx": 45, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0876134", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 44, + "end_row_offset_idx": 45, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.954159", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 45, + "end_row_offset_idx": 46, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 45, + "end_row_offset_idx": 46, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs116997538", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 45, + "end_row_offset_idx": 46, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 45, + "end_row_offset_idx": 46, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 45, + "end_row_offset_idx": 46, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.466245", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 45, + "end_row_offset_idx": 46, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0534583", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 45, + "end_row_offset_idx": 46, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "2.74E-18", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 45, + "end_row_offset_idx": 46, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "76.067315", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 45, + "end_row_offset_idx": 46, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.067735", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 45, + "end_row_offset_idx": 46, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.123897", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 45, + "end_row_offset_idx": 46, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.584581", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 46, + "end_row_offset_idx": 47, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 46, + "end_row_offset_idx": 47, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs13377102", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 46, + "end_row_offset_idx": 47, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 46, + "end_row_offset_idx": 47, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 46, + "end_row_offset_idx": 47, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.233255", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 46, + "end_row_offset_idx": 47, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0255094", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 46, + "end_row_offset_idx": 47, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "6.02E-20", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 46, + "end_row_offset_idx": 47, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "83.610619", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 46, + "end_row_offset_idx": 47, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0250186", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 46, + "end_row_offset_idx": 47, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0389518", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 46, + "end_row_offset_idx": 47, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.520681", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 47, + "end_row_offset_idx": 48, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 47, + "end_row_offset_idx": 48, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs2066865", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 47, + "end_row_offset_idx": 48, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 47, + "end_row_offset_idx": 48, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 47, + "end_row_offset_idx": 48, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.184507", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 47, + "end_row_offset_idx": 48, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0161145", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 47, + "end_row_offset_idx": 48, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "2.36E-30", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 47, + "end_row_offset_idx": 48, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "131.09678", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 47, + "end_row_offset_idx": 48, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.0083154", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 47, + "end_row_offset_idx": 48, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0313691", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 47, + "end_row_offset_idx": 48, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.790945", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 48, + "end_row_offset_idx": 49, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 48, + "end_row_offset_idx": 49, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs2289252", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 48, + "end_row_offset_idx": 49, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 48, + "end_row_offset_idx": 49, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 48, + "end_row_offset_idx": 49, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.197972", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 48, + "end_row_offset_idx": 49, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.015135", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 48, + "end_row_offset_idx": 49, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "4.26E-39", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 48, + "end_row_offset_idx": 49, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "171.09712", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 48, + "end_row_offset_idx": 49, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0018411", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 48, + "end_row_offset_idx": 49, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0272571", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 48, + "end_row_offset_idx": 49, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.946148", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 49, + "end_row_offset_idx": 50, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "6", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 49, + "end_row_offset_idx": 50, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs2519785", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 49, + "end_row_offset_idx": 50, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 49, + "end_row_offset_idx": 50, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 49, + "end_row_offset_idx": 50, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.0982467", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 49, + "end_row_offset_idx": 50, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0169973", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 49, + "end_row_offset_idx": 50, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "7.46E-09", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 49, + "end_row_offset_idx": 50, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "33.409968", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 49, + "end_row_offset_idx": 50, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.0074319", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 49, + "end_row_offset_idx": 50, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0297183", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 49, + "end_row_offset_idx": 50, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.802526", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 50, + "end_row_offset_idx": 51, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "7", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 50, + "end_row_offset_idx": 51, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs576123", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 50, + "end_row_offset_idx": 51, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 50, + "end_row_offset_idx": 51, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 50, + "end_row_offset_idx": 51, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.297682", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 50, + "end_row_offset_idx": 51, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.014983", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 50, + "end_row_offset_idx": 51, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "7.70E-88", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 50, + "end_row_offset_idx": 51, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "394.73678", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 50, + "end_row_offset_idx": 51, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.00819", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 50, + "end_row_offset_idx": 51, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0287779", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 50, + "end_row_offset_idx": 51, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.775956", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 51, + "end_row_offset_idx": 52, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "8", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 51, + "end_row_offset_idx": 52, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs5896", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 51, + "end_row_offset_idx": 52, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 51, + "end_row_offset_idx": 52, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 51, + "end_row_offset_idx": 52, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.141024", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 51, + "end_row_offset_idx": 52, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.017945", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 51, + "end_row_offset_idx": 52, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "3.88E-15", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 51, + "end_row_offset_idx": 52, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "61.75884", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 51, + "end_row_offset_idx": 52, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.0614773", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 51, + "end_row_offset_idx": 52, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0388191", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 51, + "end_row_offset_idx": 52, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.113265", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 52, + "end_row_offset_idx": 53, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "9", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 52, + "end_row_offset_idx": 53, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs6025", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 52, + "end_row_offset_idx": 53, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 52, + "end_row_offset_idx": 53, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 52, + "end_row_offset_idx": 53, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "1.10439", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 52, + "end_row_offset_idx": 53, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0393903", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 52, + "end_row_offset_idx": 53, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "5.71E-173", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 52, + "end_row_offset_idx": 53, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "786.07929", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 52, + "end_row_offset_idx": 53, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.0502217", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 52, + "end_row_offset_idx": 53, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0899796", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 52, + "end_row_offset_idx": 53, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.576745", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 53, + "end_row_offset_idx": 54, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "10", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 53, + "end_row_offset_idx": 54, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs6060237", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 53, + "end_row_offset_idx": 54, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 53, + "end_row_offset_idx": 54, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 53, + "end_row_offset_idx": 54, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.168453", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 53, + "end_row_offset_idx": 54, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0198214", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 53, + "end_row_offset_idx": 54, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "1.92E-17", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 53, + "end_row_offset_idx": 54, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "72.225216", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 53, + "end_row_offset_idx": 54, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.0318432", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 53, + "end_row_offset_idx": 54, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0414073", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 53, + "end_row_offset_idx": 54, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.441879", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 54, + "end_row_offset_idx": 55, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "11", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 54, + "end_row_offset_idx": 55, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs60681578", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 54, + "end_row_offset_idx": 55, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 54, + "end_row_offset_idx": 55, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 54, + "end_row_offset_idx": 55, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.137615", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 54, + "end_row_offset_idx": 55, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.021627", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 54, + "end_row_offset_idx": 55, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "1.98E-10", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 54, + "end_row_offset_idx": 55, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "40.489181", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 54, + "end_row_offset_idx": 55, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.0169103", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 54, + "end_row_offset_idx": 55, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0390773", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 54, + "end_row_offset_idx": 55, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.665204", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 55, + "end_row_offset_idx": 56, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "12", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 55, + "end_row_offset_idx": 56, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs62350309", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 55, + "end_row_offset_idx": 56, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 55, + "end_row_offset_idx": 56, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 55, + "end_row_offset_idx": 56, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.162704", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 55, + "end_row_offset_idx": 56, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0259998", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 55, + "end_row_offset_idx": 56, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "3.90E-10", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 55, + "end_row_offset_idx": 56, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "39.161241", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 55, + "end_row_offset_idx": 56, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.071956", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 55, + "end_row_offset_idx": 56, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0634685", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 55, + "end_row_offset_idx": 56, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.256909", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 56, + "end_row_offset_idx": 57, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "13", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 56, + "end_row_offset_idx": 57, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs666870", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 56, + "end_row_offset_idx": 57, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 56, + "end_row_offset_idx": 57, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 56, + "end_row_offset_idx": 57, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.0924832", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 56, + "end_row_offset_idx": 57, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0159069", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 56, + "end_row_offset_idx": 57, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "6.10E-09", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 56, + "end_row_offset_idx": 57, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "33.802949", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 56, + "end_row_offset_idx": 57, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.0127968", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 56, + "end_row_offset_idx": 57, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0271558", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 56, + "end_row_offset_idx": 57, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.637472", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 57, + "end_row_offset_idx": 58, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "14", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 57, + "end_row_offset_idx": 58, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs7308002", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 57, + "end_row_offset_idx": 58, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 57, + "end_row_offset_idx": 58, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 57, + "end_row_offset_idx": 58, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.0978174", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 57, + "end_row_offset_idx": 58, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.01576", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 57, + "end_row_offset_idx": 58, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "5.41E-10", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 57, + "end_row_offset_idx": 58, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "38.522974", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 57, + "end_row_offset_idx": 58, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0027934", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 57, + "end_row_offset_idx": 58, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0275746", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 57, + "end_row_offset_idx": 58, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.919309", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 58, + "end_row_offset_idx": 59, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "15", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 58, + "end_row_offset_idx": 59, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs76151810", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 58, + "end_row_offset_idx": 59, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 58, + "end_row_offset_idx": 59, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 58, + "end_row_offset_idx": 59, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.153073", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 58, + "end_row_offset_idx": 59, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0273112", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 58, + "end_row_offset_idx": 59, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "2.09E-08", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 58, + "end_row_offset_idx": 59, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "31.413449", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 58, + "end_row_offset_idx": 59, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0018493", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 58, + "end_row_offset_idx": 59, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0507256", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 58, + "end_row_offset_idx": 59, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.970918", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 59, + "end_row_offset_idx": 60, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "16", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 59, + "end_row_offset_idx": 60, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs7772305", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 59, + "end_row_offset_idx": 60, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 59, + "end_row_offset_idx": 60, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 59, + "end_row_offset_idx": 60, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.100251", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 59, + "end_row_offset_idx": 60, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.016057", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 59, + "end_row_offset_idx": 60, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "4.28E-10", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 59, + "end_row_offset_idx": 60, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "38.980608", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 59, + "end_row_offset_idx": 60, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.0585778", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 59, + "end_row_offset_idx": 60, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0307164", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 59, + "end_row_offset_idx": 60, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.0565137", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 60, + "end_row_offset_idx": 61, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "17", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 60, + "end_row_offset_idx": 61, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs78807356", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 60, + "end_row_offset_idx": 61, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 60, + "end_row_offset_idx": 61, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 60, + "end_row_offset_idx": 61, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.621447", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 60, + "end_row_offset_idx": 61, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0792414", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 60, + "end_row_offset_idx": 61, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "4.42E-15", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 60, + "end_row_offset_idx": 61, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "61.504078", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 60, + "end_row_offset_idx": 61, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.101617", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 60, + "end_row_offset_idx": 61, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0796139", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 60, + "end_row_offset_idx": 61, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.201825", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 61, + "end_row_offset_idx": 62, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "18", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 61, + "end_row_offset_idx": 62, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs9865118", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 61, + "end_row_offset_idx": 62, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 61, + "end_row_offset_idx": 62, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 61, + "end_row_offset_idx": 62, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.0863804", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 61, + "end_row_offset_idx": 62, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0151814", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 61, + "end_row_offset_idx": 62, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "1.27E-08", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 61, + "end_row_offset_idx": 62, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "32.374776", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 61, + "end_row_offset_idx": 62, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.0363583", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 61, + "end_row_offset_idx": 62, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0268338", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 61, + "end_row_offset_idx": 62, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.175436", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 11, + "start_row_offset_idx": 62, + "end_row_offset_idx": 63, + "start_col_offset_idx": 0, + "end_col_offset_idx": 11, + "text": "\nGenetic instruments for VTE/PE/DVT and their associations with OSA (Campos et al)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 63, + "end_row_offset_idx": 64, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 63, + "end_row_offset_idx": 64, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 63, + "end_row_offset_idx": 64, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 63, + "end_row_offset_idx": 64, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 4, + "start_row_offset_idx": 63, + "end_row_offset_idx": 64, + "start_col_offset_idx": 4, + "end_col_offset_idx": 8, + "text": "\nExposure: VTE\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 3, + "start_row_offset_idx": 63, + "end_row_offset_idx": 64, + "start_col_offset_idx": 8, + "end_col_offset_idx": 11, + "text": "\nOutcome: OSA (Campos et al)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 64, + "end_row_offset_idx": 65, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 64, + "end_row_offset_idx": 65, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "\nSNP\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 64, + "end_row_offset_idx": 65, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "\nEA\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 64, + "end_row_offset_idx": 65, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "\nOA\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 64, + "end_row_offset_idx": 65, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\nBeta\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 64, + "end_row_offset_idx": 65, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "\nSE\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 64, + "end_row_offset_idx": 65, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "\np\n-Value\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 64, + "end_row_offset_idx": 65, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "\nF-statistic\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 64, + "end_row_offset_idx": 65, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\nBeta\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 64, + "end_row_offset_idx": 65, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "\nSE\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 64, + "end_row_offset_idx": 65, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "\np\n-Value\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 65, + "end_row_offset_idx": 66, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 65, + "end_row_offset_idx": 66, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs10896706", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 65, + "end_row_offset_idx": 66, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 65, + "end_row_offset_idx": 66, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 65, + "end_row_offset_idx": 66, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.0702142", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 65, + "end_row_offset_idx": 66, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0121006", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 65, + "end_row_offset_idx": 66, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "6.53E-09", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 65, + "end_row_offset_idx": 66, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "33.669456", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 65, + "end_row_offset_idx": 66, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.0073376", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 65, + "end_row_offset_idx": 66, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0072794", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 65, + "end_row_offset_idx": 66, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.3136", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 66, + "end_row_offset_idx": 67, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 66, + "end_row_offset_idx": 67, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs114767153", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 66, + "end_row_offset_idx": 67, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 66, + "end_row_offset_idx": 67, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 66, + "end_row_offset_idx": 67, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.20888", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 66, + "end_row_offset_idx": 67, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0348173", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 66, + "end_row_offset_idx": 67, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "1.98E-09", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 66, + "end_row_offset_idx": 67, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "35.991798", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 66, + "end_row_offset_idx": 67, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0240477", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 66, + "end_row_offset_idx": 67, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0220217", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 66, + "end_row_offset_idx": 67, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.2749", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 67, + "end_row_offset_idx": 68, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 67, + "end_row_offset_idx": 68, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs116997538", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 67, + "end_row_offset_idx": 68, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 67, + "end_row_offset_idx": 68, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 67, + "end_row_offset_idx": 68, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.403288", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 67, + "end_row_offset_idx": 68, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0383066", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 67, + "end_row_offset_idx": 68, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "6.42E-26", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 67, + "end_row_offset_idx": 68, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "110.83665", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 67, + "end_row_offset_idx": 68, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0202903", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 67, + "end_row_offset_idx": 68, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0346251", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 67, + "end_row_offset_idx": 68, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.558", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 68, + "end_row_offset_idx": 69, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 68, + "end_row_offset_idx": 69, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs12054563", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 68, + "end_row_offset_idx": 69, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 68, + "end_row_offset_idx": 69, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 68, + "end_row_offset_idx": 69, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.126677", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 68, + "end_row_offset_idx": 69, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0176431", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 68, + "end_row_offset_idx": 69, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "6.97E-13", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 68, + "end_row_offset_idx": 69, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "51.552027", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 68, + "end_row_offset_idx": 69, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0164525", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 68, + "end_row_offset_idx": 69, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0159578", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 68, + "end_row_offset_idx": 69, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.3025", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 69, + "end_row_offset_idx": 70, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 69, + "end_row_offset_idx": 70, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs1560711", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 69, + "end_row_offset_idx": 70, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 69, + "end_row_offset_idx": 70, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 69, + "end_row_offset_idx": 70, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.122379", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 69, + "end_row_offset_idx": 70, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0141465", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 69, + "end_row_offset_idx": 70, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "5.11E-18", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 69, + "end_row_offset_idx": 70, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "74.836901", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 69, + "end_row_offset_idx": 70, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0033405", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 69, + "end_row_offset_idx": 70, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0090041", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 69, + "end_row_offset_idx": 70, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.7104", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 70, + "end_row_offset_idx": 71, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "6", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 70, + "end_row_offset_idx": 71, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs174529", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 70, + "end_row_offset_idx": 71, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 70, + "end_row_offset_idx": 71, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 70, + "end_row_offset_idx": 71, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.0686342", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 70, + "end_row_offset_idx": 71, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0107211", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 70, + "end_row_offset_idx": 71, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "1.54E-10", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 70, + "end_row_offset_idx": 71, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "40.982878", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 70, + "end_row_offset_idx": 71, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0016235", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 70, + "end_row_offset_idx": 71, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0068503", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 70, + "end_row_offset_idx": 71, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.8124", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 71, + "end_row_offset_idx": 72, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "7", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 71, + "end_row_offset_idx": 72, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs2066865", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 71, + "end_row_offset_idx": 72, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 71, + "end_row_offset_idx": 72, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 71, + "end_row_offset_idx": 72, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.186112", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 71, + "end_row_offset_idx": 72, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0112369", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 71, + "end_row_offset_idx": 72, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "1.30E-61", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 71, + "end_row_offset_idx": 72, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "274.31889", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 71, + "end_row_offset_idx": 72, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0033999", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 71, + "end_row_offset_idx": 72, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0077623", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 71, + "end_row_offset_idx": 72, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.6612", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 72, + "end_row_offset_idx": 73, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "8", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 72, + "end_row_offset_idx": 73, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs3756011", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 72, + "end_row_offset_idx": 73, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 72, + "end_row_offset_idx": 73, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 72, + "end_row_offset_idx": 73, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.192712", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 72, + "end_row_offset_idx": 73, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0105525", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 72, + "end_row_offset_idx": 73, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "1.65E-74", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 72, + "end_row_offset_idx": 73, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "333.50841", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 72, + "end_row_offset_idx": 73, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.000575", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 72, + "end_row_offset_idx": 73, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0067645", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 72, + "end_row_offset_idx": 73, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.9326", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 73, + "end_row_offset_idx": 74, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "9", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 73, + "end_row_offset_idx": 74, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs57328376", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 73, + "end_row_offset_idx": 74, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 73, + "end_row_offset_idx": 74, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 73, + "end_row_offset_idx": 74, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.0697584", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 73, + "end_row_offset_idx": 74, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0109198", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 73, + "end_row_offset_idx": 74, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "1.68E-10", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 73, + "end_row_offset_idx": 74, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "40.809724", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 73, + "end_row_offset_idx": 74, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0010062", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 73, + "end_row_offset_idx": 74, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0071873", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 73, + "end_row_offset_idx": 74, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.8885", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 74, + "end_row_offset_idx": 75, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "10", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 74, + "end_row_offset_idx": 75, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs576123", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 74, + "end_row_offset_idx": 75, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 74, + "end_row_offset_idx": 75, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 74, + "end_row_offset_idx": 75, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.237396", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 74, + "end_row_offset_idx": 75, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0104973", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 74, + "end_row_offset_idx": 75, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "3.09E-113", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 74, + "end_row_offset_idx": 75, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "511.43633", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 74, + "end_row_offset_idx": 75, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.0183551", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 74, + "end_row_offset_idx": 75, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0086786", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 74, + "end_row_offset_idx": 75, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.03441", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 75, + "end_row_offset_idx": 76, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "11", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 75, + "end_row_offset_idx": 76, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs5896", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 75, + "end_row_offset_idx": 76, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 75, + "end_row_offset_idx": 76, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 75, + "end_row_offset_idx": 76, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.109291", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 75, + "end_row_offset_idx": 76, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0125852", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 75, + "end_row_offset_idx": 76, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "3.82E-18", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 75, + "end_row_offset_idx": 76, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "75.413406", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 75, + "end_row_offset_idx": 76, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.020985", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 75, + "end_row_offset_idx": 76, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0096527", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 75, + "end_row_offset_idx": 76, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.02974", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 76, + "end_row_offset_idx": 77, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "12", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 76, + "end_row_offset_idx": 77, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs6025", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 76, + "end_row_offset_idx": 77, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 76, + "end_row_offset_idx": 77, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 76, + "end_row_offset_idx": 77, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.873415", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 76, + "end_row_offset_idx": 77, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0298388", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 76, + "end_row_offset_idx": 77, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "2.42E-188", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 76, + "end_row_offset_idx": 77, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "856.79828", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 76, + "end_row_offset_idx": 77, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.0380118", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 76, + "end_row_offset_idx": 77, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0218836", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 76, + "end_row_offset_idx": 77, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.08241", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 77, + "end_row_offset_idx": 78, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "13", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 77, + "end_row_offset_idx": 78, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs6060308", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 77, + "end_row_offset_idx": 78, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 77, + "end_row_offset_idx": 78, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 77, + "end_row_offset_idx": 78, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.101587", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 77, + "end_row_offset_idx": 78, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0112359", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 77, + "end_row_offset_idx": 78, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "1.55E-19", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 77, + "end_row_offset_idx": 78, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "81.744876", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 77, + "end_row_offset_idx": 78, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0009288", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 77, + "end_row_offset_idx": 78, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0074901", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 77, + "end_row_offset_idx": 78, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.9013", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 78, + "end_row_offset_idx": 79, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "14", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 78, + "end_row_offset_idx": 79, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs60681578", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 78, + "end_row_offset_idx": 79, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 78, + "end_row_offset_idx": 79, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 78, + "end_row_offset_idx": 79, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.118392", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 78, + "end_row_offset_idx": 79, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0150029", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 78, + "end_row_offset_idx": 79, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "2.99E-15", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 78, + "end_row_offset_idx": 79, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "62.272211", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 78, + "end_row_offset_idx": 79, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.0085067", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 78, + "end_row_offset_idx": 79, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0117172", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 78, + "end_row_offset_idx": 79, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.4678", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 79, + "end_row_offset_idx": 80, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "15", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 79, + "end_row_offset_idx": 80, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs62350309", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 79, + "end_row_offset_idx": 80, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 79, + "end_row_offset_idx": 80, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 79, + "end_row_offset_idx": 80, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.173509", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 79, + "end_row_offset_idx": 80, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0181448", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 79, + "end_row_offset_idx": 80, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "1.15E-21", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 79, + "end_row_offset_idx": 80, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "91.440721", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 79, + "end_row_offset_idx": 80, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.0075114", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 79, + "end_row_offset_idx": 80, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0152982", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 79, + "end_row_offset_idx": 80, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.6233", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 80, + "end_row_offset_idx": 81, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "16", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 80, + "end_row_offset_idx": 81, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs628094", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 80, + "end_row_offset_idx": 81, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 80, + "end_row_offset_idx": 81, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 80, + "end_row_offset_idx": 81, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.0818781", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 80, + "end_row_offset_idx": 81, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0114389", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 80, + "end_row_offset_idx": 81, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "8.19E-13", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 80, + "end_row_offset_idx": 81, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "51.235029", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 80, + "end_row_offset_idx": 81, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0022354", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 80, + "end_row_offset_idx": 81, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0074021", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 80, + "end_row_offset_idx": 81, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.7627", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 81, + "end_row_offset_idx": 82, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "17", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 81, + "end_row_offset_idx": 82, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs72708961", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 81, + "end_row_offset_idx": 82, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 81, + "end_row_offset_idx": 82, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 81, + "end_row_offset_idx": 82, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.0891913", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 81, + "end_row_offset_idx": 82, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0159445", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 81, + "end_row_offset_idx": 82, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "2.22E-08", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 81, + "end_row_offset_idx": 82, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "31.291269", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 81, + "end_row_offset_idx": 82, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0170636", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 81, + "end_row_offset_idx": 82, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0090957", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 81, + "end_row_offset_idx": 82, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.06059", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 82, + "end_row_offset_idx": 83, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "18", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 82, + "end_row_offset_idx": 83, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs7772305", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 82, + "end_row_offset_idx": 83, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 82, + "end_row_offset_idx": 83, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 82, + "end_row_offset_idx": 83, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.0726964", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 82, + "end_row_offset_idx": 83, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0111586", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 82, + "end_row_offset_idx": 83, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "7.28E-11", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 82, + "end_row_offset_idx": 83, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "42.443031", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 82, + "end_row_offset_idx": 83, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.016709", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 82, + "end_row_offset_idx": 83, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0086396", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 82, + "end_row_offset_idx": 83, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.05311", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 83, + "end_row_offset_idx": 84, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "19", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 83, + "end_row_offset_idx": 84, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs80137017", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 83, + "end_row_offset_idx": 84, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 83, + "end_row_offset_idx": 84, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 83, + "end_row_offset_idx": 84, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.208902", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 83, + "end_row_offset_idx": 84, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0177996", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 83, + "end_row_offset_idx": 84, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "8.30E-32", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 83, + "end_row_offset_idx": 84, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "137.74147", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 83, + "end_row_offset_idx": 84, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.0152022", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 83, + "end_row_offset_idx": 84, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0099426", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 83, + "end_row_offset_idx": 84, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.1262", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 84, + "end_row_offset_idx": 85, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 84, + "end_row_offset_idx": 85, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 84, + "end_row_offset_idx": 85, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 84, + "end_row_offset_idx": 85, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 4, + "start_row_offset_idx": 84, + "end_row_offset_idx": 85, + "start_col_offset_idx": 4, + "end_col_offset_idx": 8, + "text": "\nExposure: PE\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 3, + "start_row_offset_idx": 84, + "end_row_offset_idx": 85, + "start_col_offset_idx": 8, + "end_col_offset_idx": 11, + "text": "\nOutcome: OSA (Campos et al)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 85, + "end_row_offset_idx": 86, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 85, + "end_row_offset_idx": 86, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "\nSNP\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 85, + "end_row_offset_idx": 86, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "\nEA\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 85, + "end_row_offset_idx": 86, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "\nOA\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 85, + "end_row_offset_idx": 86, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\nBeta\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 85, + "end_row_offset_idx": 86, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "\nSE\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 85, + "end_row_offset_idx": 86, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "\np\n-Value\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 85, + "end_row_offset_idx": 86, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "\nF-statistic\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 85, + "end_row_offset_idx": 86, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\nBeta\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 85, + "end_row_offset_idx": 86, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "\nSE\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 85, + "end_row_offset_idx": 86, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "\np\n-Value\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 86, + "end_row_offset_idx": 87, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 86, + "end_row_offset_idx": 87, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs117210485", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 86, + "end_row_offset_idx": 87, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 86, + "end_row_offset_idx": 87, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 86, + "end_row_offset_idx": 87, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.150787", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 86, + "end_row_offset_idx": 87, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0228699", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 86, + "end_row_offset_idx": 87, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "4.30E-11", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 86, + "end_row_offset_idx": 87, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "43.470964", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 86, + "end_row_offset_idx": 87, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0346523", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 86, + "end_row_offset_idx": 87, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0239146", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 86, + "end_row_offset_idx": 87, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.1473", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 87, + "end_row_offset_idx": 88, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 87, + "end_row_offset_idx": 88, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs143620474", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 87, + "end_row_offset_idx": 88, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 87, + "end_row_offset_idx": 88, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 87, + "end_row_offset_idx": 88, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.281243", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 87, + "end_row_offset_idx": 88, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0512263", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 87, + "end_row_offset_idx": 88, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "4.01E-08", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 87, + "end_row_offset_idx": 88, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "30.142375", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 87, + "end_row_offset_idx": 88, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.0124988", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 87, + "end_row_offset_idx": 88, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0892769", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 87, + "end_row_offset_idx": 88, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.8889", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 88, + "end_row_offset_idx": 89, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 88, + "end_row_offset_idx": 89, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs1481808", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 88, + "end_row_offset_idx": 89, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 88, + "end_row_offset_idx": 89, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 88, + "end_row_offset_idx": 89, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.480929", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 88, + "end_row_offset_idx": 89, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0875759", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 88, + "end_row_offset_idx": 89, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "3.98E-08", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 88, + "end_row_offset_idx": 89, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "30.157318", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 88, + "end_row_offset_idx": 89, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0281243", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 88, + "end_row_offset_idx": 89, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0269648", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 88, + "end_row_offset_idx": 89, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.297", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 89, + "end_row_offset_idx": 90, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 89, + "end_row_offset_idx": 90, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs1560711", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 89, + "end_row_offset_idx": 90, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 89, + "end_row_offset_idx": 90, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 89, + "end_row_offset_idx": 90, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.144704", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 89, + "end_row_offset_idx": 90, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0202073", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 89, + "end_row_offset_idx": 90, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "8.01E-13", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 89, + "end_row_offset_idx": 90, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "51.279584", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 89, + "end_row_offset_idx": 90, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0033405", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 89, + "end_row_offset_idx": 90, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0090041", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 89, + "end_row_offset_idx": 90, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.7104", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 90, + "end_row_offset_idx": 91, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 90, + "end_row_offset_idx": 91, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs2066865", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 90, + "end_row_offset_idx": 91, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 90, + "end_row_offset_idx": 91, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 90, + "end_row_offset_idx": 91, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.227484", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 90, + "end_row_offset_idx": 91, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0158067", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 90, + "end_row_offset_idx": 91, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "5.85E-47", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 90, + "end_row_offset_idx": 91, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "207.11869", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 90, + "end_row_offset_idx": 91, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0033999", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 90, + "end_row_offset_idx": 91, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0077623", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 90, + "end_row_offset_idx": 91, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.6612", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 91, + "end_row_offset_idx": 92, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "6", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 91, + "end_row_offset_idx": 92, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs28584824", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 91, + "end_row_offset_idx": 92, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 91, + "end_row_offset_idx": 92, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 91, + "end_row_offset_idx": 92, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.155264", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 91, + "end_row_offset_idx": 92, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0279234", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 91, + "end_row_offset_idx": 92, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "2.69E-08", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 91, + "end_row_offset_idx": 92, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "30.917541", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 91, + "end_row_offset_idx": 92, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.0324135", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 91, + "end_row_offset_idx": 92, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0191569", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 91, + "end_row_offset_idx": 92, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.09056", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 92, + "end_row_offset_idx": 93, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "7", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 92, + "end_row_offset_idx": 93, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs3756011", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 92, + "end_row_offset_idx": 93, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 92, + "end_row_offset_idx": 93, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 92, + "end_row_offset_idx": 93, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.234784", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 92, + "end_row_offset_idx": 93, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0149143", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 92, + "end_row_offset_idx": 93, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "7.77E-56", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 92, + "end_row_offset_idx": 93, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "247.81709", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 92, + "end_row_offset_idx": 93, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.000575", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 92, + "end_row_offset_idx": 93, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0067645", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 92, + "end_row_offset_idx": 93, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.9326", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 93, + "end_row_offset_idx": 94, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "8", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 93, + "end_row_offset_idx": 94, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs62350309", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 93, + "end_row_offset_idx": 94, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 93, + "end_row_offset_idx": 94, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 93, + "end_row_offset_idx": 94, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.202534", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 93, + "end_row_offset_idx": 94, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0260372", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 93, + "end_row_offset_idx": 94, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "7.33E-15", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 93, + "end_row_offset_idx": 94, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "60.507237", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 93, + "end_row_offset_idx": 94, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.0075114", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 93, + "end_row_offset_idx": 94, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0152982", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 93, + "end_row_offset_idx": 94, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.6233", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 94, + "end_row_offset_idx": 95, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "9", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 94, + "end_row_offset_idx": 95, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs635634", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 94, + "end_row_offset_idx": 95, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 94, + "end_row_offset_idx": 95, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 94, + "end_row_offset_idx": 95, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.239636", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 94, + "end_row_offset_idx": 95, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0177935", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 94, + "end_row_offset_idx": 95, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "2.43E-41", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 94, + "end_row_offset_idx": 95, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "181.37664", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 94, + "end_row_offset_idx": 95, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.0139975", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 94, + "end_row_offset_idx": 95, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0096935", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 94, + "end_row_offset_idx": 95, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.1488", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 95, + "end_row_offset_idx": 96, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "10", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 95, + "end_row_offset_idx": 96, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs77165492", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 95, + "end_row_offset_idx": 96, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 95, + "end_row_offset_idx": 96, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 95, + "end_row_offset_idx": 96, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.209269", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 95, + "end_row_offset_idx": 96, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0275462", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 95, + "end_row_offset_idx": 96, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "3.03E-14", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 95, + "end_row_offset_idx": 96, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "57.714695", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 95, + "end_row_offset_idx": 96, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.0013946", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 95, + "end_row_offset_idx": 96, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0114311", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 95, + "end_row_offset_idx": 96, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.9026", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 96, + "end_row_offset_idx": 97, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "11", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 96, + "end_row_offset_idx": 97, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs80137017", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 96, + "end_row_offset_idx": 97, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 96, + "end_row_offset_idx": 97, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 96, + "end_row_offset_idx": 97, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.230014", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 96, + "end_row_offset_idx": 97, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.02543", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 96, + "end_row_offset_idx": 97, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "1.50E-19", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 96, + "end_row_offset_idx": 97, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "81.811776", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 96, + "end_row_offset_idx": 97, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.0152022", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 96, + "end_row_offset_idx": 97, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0099426", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 96, + "end_row_offset_idx": 97, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.1262", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 97, + "end_row_offset_idx": 98, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 97, + "end_row_offset_idx": 98, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 97, + "end_row_offset_idx": 98, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 97, + "end_row_offset_idx": 98, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 4, + "start_row_offset_idx": 97, + "end_row_offset_idx": 98, + "start_col_offset_idx": 4, + "end_col_offset_idx": 8, + "text": "\nExposure: DVT\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 3, + "start_row_offset_idx": 97, + "end_row_offset_idx": 98, + "start_col_offset_idx": 8, + "end_col_offset_idx": 11, + "text": "\nOutcome: OSA (Campos et al)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 98, + "end_row_offset_idx": 99, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 98, + "end_row_offset_idx": 99, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "\nSNP\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 98, + "end_row_offset_idx": 99, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "\nEA\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 98, + "end_row_offset_idx": 99, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "\nOA\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 98, + "end_row_offset_idx": 99, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\nBeta\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 98, + "end_row_offset_idx": 99, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "\nSE\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 98, + "end_row_offset_idx": 99, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "\np\n-Value\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 98, + "end_row_offset_idx": 99, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "\nF-statistic\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 98, + "end_row_offset_idx": 99, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\nBeta\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 98, + "end_row_offset_idx": 99, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "\nSE\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 98, + "end_row_offset_idx": 99, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "\np\n-Value\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 99, + "end_row_offset_idx": 100, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 99, + "end_row_offset_idx": 100, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs116997538", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 99, + "end_row_offset_idx": 100, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 99, + "end_row_offset_idx": 100, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 99, + "end_row_offset_idx": 100, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.466245", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 99, + "end_row_offset_idx": 100, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0534583", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 99, + "end_row_offset_idx": 100, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "2.74E-18", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 99, + "end_row_offset_idx": 100, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "76.067315", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 99, + "end_row_offset_idx": 100, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0202903", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 99, + "end_row_offset_idx": 100, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0346251", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 99, + "end_row_offset_idx": 100, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.558", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 100, + "end_row_offset_idx": 101, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 100, + "end_row_offset_idx": 101, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs13377102", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 100, + "end_row_offset_idx": 101, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 100, + "end_row_offset_idx": 101, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 100, + "end_row_offset_idx": 101, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.233255", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 100, + "end_row_offset_idx": 101, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0255094", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 100, + "end_row_offset_idx": 101, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "6.02E-20", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 100, + "end_row_offset_idx": 101, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "83.610619", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 100, + "end_row_offset_idx": 101, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.0085579", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 100, + "end_row_offset_idx": 101, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0096591", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 100, + "end_row_offset_idx": 101, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.3759", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 101, + "end_row_offset_idx": 102, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 101, + "end_row_offset_idx": 102, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs2066865", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 101, + "end_row_offset_idx": 102, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 101, + "end_row_offset_idx": 102, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 101, + "end_row_offset_idx": 102, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.184507", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 101, + "end_row_offset_idx": 102, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0161145", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 101, + "end_row_offset_idx": 102, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "2.36E-30", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 101, + "end_row_offset_idx": 102, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "131.09678", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 101, + "end_row_offset_idx": 102, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0033999", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 101, + "end_row_offset_idx": 102, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0077623", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 101, + "end_row_offset_idx": 102, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.6612", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 102, + "end_row_offset_idx": 103, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 102, + "end_row_offset_idx": 103, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs576123", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 102, + "end_row_offset_idx": 103, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 102, + "end_row_offset_idx": 103, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 102, + "end_row_offset_idx": 103, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.297682", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 102, + "end_row_offset_idx": 103, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.014983", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 102, + "end_row_offset_idx": 103, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "7.70E-88", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 102, + "end_row_offset_idx": 103, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "394.73678", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 102, + "end_row_offset_idx": 103, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.0183551", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 102, + "end_row_offset_idx": 103, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0086786", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 102, + "end_row_offset_idx": 103, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.03441", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 103, + "end_row_offset_idx": 104, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 103, + "end_row_offset_idx": 104, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs5896", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 103, + "end_row_offset_idx": 104, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 103, + "end_row_offset_idx": 104, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 103, + "end_row_offset_idx": 104, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.141024", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 103, + "end_row_offset_idx": 104, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.017945", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 103, + "end_row_offset_idx": 104, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "3.88E-15", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 103, + "end_row_offset_idx": 104, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "61.75884", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 103, + "end_row_offset_idx": 104, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.020985", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 103, + "end_row_offset_idx": 104, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0096527", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 103, + "end_row_offset_idx": 104, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.02974", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 104, + "end_row_offset_idx": 105, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "6", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 104, + "end_row_offset_idx": 105, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs6025", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 104, + "end_row_offset_idx": 105, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 104, + "end_row_offset_idx": 105, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 104, + "end_row_offset_idx": 105, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "1.10439", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 104, + "end_row_offset_idx": 105, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0393903", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 104, + "end_row_offset_idx": 105, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "5.71E-173", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 104, + "end_row_offset_idx": 105, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "786.07929", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 104, + "end_row_offset_idx": 105, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.0380118", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 104, + "end_row_offset_idx": 105, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0218836", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 104, + "end_row_offset_idx": 105, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.08241", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 105, + "end_row_offset_idx": 106, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "7", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 105, + "end_row_offset_idx": 106, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs6060237", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 105, + "end_row_offset_idx": 106, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 105, + "end_row_offset_idx": 106, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 105, + "end_row_offset_idx": 106, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.168453", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 105, + "end_row_offset_idx": 106, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0198214", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 105, + "end_row_offset_idx": 106, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "1.92E-17", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 105, + "end_row_offset_idx": 106, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "72.225216", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 105, + "end_row_offset_idx": 106, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.0060526", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 105, + "end_row_offset_idx": 106, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0101724", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 105, + "end_row_offset_idx": 106, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.5518", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 106, + "end_row_offset_idx": 107, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "8", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 106, + "end_row_offset_idx": 107, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs60681578", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 106, + "end_row_offset_idx": 107, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 106, + "end_row_offset_idx": 107, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 106, + "end_row_offset_idx": 107, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.137615", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 106, + "end_row_offset_idx": 107, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.021627", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 106, + "end_row_offset_idx": 107, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "1.98E-10", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 106, + "end_row_offset_idx": 107, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "40.489181", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 106, + "end_row_offset_idx": 107, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.0085067", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 106, + "end_row_offset_idx": 107, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0117172", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 106, + "end_row_offset_idx": 107, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.4678", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 107, + "end_row_offset_idx": 108, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "9", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 107, + "end_row_offset_idx": 108, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs62350309", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 107, + "end_row_offset_idx": 108, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 107, + "end_row_offset_idx": 108, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 107, + "end_row_offset_idx": 108, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.162704", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 107, + "end_row_offset_idx": 108, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0259998", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 107, + "end_row_offset_idx": 108, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "3.90E-10", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 107, + "end_row_offset_idx": 108, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "39.161241", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 107, + "end_row_offset_idx": 108, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.0075114", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 107, + "end_row_offset_idx": 108, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0152982", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 107, + "end_row_offset_idx": 108, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.6233", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 108, + "end_row_offset_idx": 109, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "10", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 108, + "end_row_offset_idx": 109, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs666870", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 108, + "end_row_offset_idx": 109, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 108, + "end_row_offset_idx": 109, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 108, + "end_row_offset_idx": 109, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.0924832", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 108, + "end_row_offset_idx": 109, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0159069", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 108, + "end_row_offset_idx": 109, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "6.10E-09", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 108, + "end_row_offset_idx": 109, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "33.802949", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 108, + "end_row_offset_idx": 109, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.0074616", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 108, + "end_row_offset_idx": 109, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0067221", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 108, + "end_row_offset_idx": 109, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.2669", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 109, + "end_row_offset_idx": 110, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "11", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 109, + "end_row_offset_idx": 110, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs7308002", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 109, + "end_row_offset_idx": 110, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 109, + "end_row_offset_idx": 110, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 109, + "end_row_offset_idx": 110, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.0978174", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 109, + "end_row_offset_idx": 110, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.01576", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 109, + "end_row_offset_idx": 110, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "5.41E-10", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 109, + "end_row_offset_idx": 110, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "38.522974", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 109, + "end_row_offset_idx": 110, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0023644", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 109, + "end_row_offset_idx": 110, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0068533", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 109, + "end_row_offset_idx": 110, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.7298", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 110, + "end_row_offset_idx": 111, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "12", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 110, + "end_row_offset_idx": 111, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs7772305", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 110, + "end_row_offset_idx": 111, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 110, + "end_row_offset_idx": 111, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 110, + "end_row_offset_idx": 111, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.100251", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 110, + "end_row_offset_idx": 111, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.016057", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 110, + "end_row_offset_idx": 111, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "4.28E-10", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 110, + "end_row_offset_idx": 111, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "38.980608", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 110, + "end_row_offset_idx": 111, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.016709", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 110, + "end_row_offset_idx": 111, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0086396", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 110, + "end_row_offset_idx": 111, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.05311", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 111, + "end_row_offset_idx": 112, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "13", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 111, + "end_row_offset_idx": 112, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs9865118", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 111, + "end_row_offset_idx": 112, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 111, + "end_row_offset_idx": 112, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 111, + "end_row_offset_idx": 112, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.0863804", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 111, + "end_row_offset_idx": 112, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0151814", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 111, + "end_row_offset_idx": 112, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "1.27E-08", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 111, + "end_row_offset_idx": 112, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "32.374776", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 111, + "end_row_offset_idx": 112, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0005648", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 111, + "end_row_offset_idx": 112, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0066442", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 111, + "end_row_offset_idx": 112, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.9323", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + "num_rows": 112, + "num_cols": 11, + "grid": [ + [ + { + "row_span": 1, + "col_span": 11, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 0, + "end_col_offset_idx": 11, + "text": "\nGenetic instruments for VTE/PE/DVT and their associations with OSA (Jiang et al)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 11, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 0, + "end_col_offset_idx": 11, + "text": "\nGenetic instruments for VTE/PE/DVT and their associations with OSA (Jiang et al)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 11, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 0, + "end_col_offset_idx": 11, + "text": "\nGenetic instruments for VTE/PE/DVT and their associations with OSA (Jiang et al)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 11, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 0, + "end_col_offset_idx": 11, + "text": "\nGenetic instruments for VTE/PE/DVT and their associations with OSA (Jiang et al)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 11, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 0, + "end_col_offset_idx": 11, + "text": "\nGenetic instruments for VTE/PE/DVT and their associations with OSA (Jiang et al)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 11, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 0, + "end_col_offset_idx": 11, + "text": "\nGenetic instruments for VTE/PE/DVT and their associations with OSA (Jiang et al)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 11, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 0, + "end_col_offset_idx": 11, + "text": "\nGenetic instruments for VTE/PE/DVT and their associations with OSA (Jiang et al)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 11, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 0, + "end_col_offset_idx": 11, + "text": "\nGenetic instruments for VTE/PE/DVT and their associations with OSA (Jiang et al)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 11, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 0, + "end_col_offset_idx": 11, + "text": "\nGenetic instruments for VTE/PE/DVT and their associations with OSA (Jiang et al)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 11, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 0, + "end_col_offset_idx": 11, + "text": "\nGenetic instruments for VTE/PE/DVT and their associations with OSA (Jiang et al)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 11, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 0, + "end_col_offset_idx": 11, + "text": "\nGenetic instruments for VTE/PE/DVT and their associations with OSA (Jiang et al)\n", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 4, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 4, + "end_col_offset_idx": 8, + "text": "\nExposure: VTE\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 4, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 4, + "end_col_offset_idx": 8, + "text": "\nExposure: VTE\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 4, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 4, + "end_col_offset_idx": 8, + "text": "\nExposure: VTE\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 4, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 4, + "end_col_offset_idx": 8, + "text": "\nExposure: VTE\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 3, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 8, + "end_col_offset_idx": 11, + "text": "\nOutcome: OSA (Jiang et al)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 3, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 8, + "end_col_offset_idx": 11, + "text": "\nOutcome: OSA (Jiang et al)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 3, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 8, + "end_col_offset_idx": 11, + "text": "\nOutcome: OSA (Jiang et al)\n", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "\nSNP\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "\nEA\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "\nOA\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\nBeta\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "\nSE\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "\np\n-Value\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "\nF-statistic\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\nBeta\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "\nSE\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "\np\n-Value\n", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs10896706", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.0702142", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0121006", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "6.53E-09", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "33.669456", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0597845", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.029345", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.0416207", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs113079063", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.378107", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0507769", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "9.59E-14", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "55.449428", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.0050364", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0876134", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.954159", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs114026832", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.773925", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.099915", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "9.50E-15", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "59.997944", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.0578773", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.180543", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.748533", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs114767153", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.20888", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0348173", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "1.98E-09", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "35.991798", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0712189", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0909972", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.433833", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs116997538", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.403288", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0383066", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "6.42E-26", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "110.83665", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.067735", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.123897", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.584581", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "6", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs12054563", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.126677", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0176431", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "6.97E-13", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "51.552027", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.0602695", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0663601", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.363763", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "7", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs1560711", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.122379", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0141465", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "5.11E-18", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "74.836901", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.0310044", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0321024", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.334145", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "8", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs174529", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.0686342", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0107211", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "1.54E-10", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "40.982878", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0053417", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0276673", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.846904", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "9", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs188337046", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.16048", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0250424", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "1.47E-10", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "41.066712", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.178311", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.206621", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.388145", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "10", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs2066865", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.186112", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0112369", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "1.30E-61", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "274.31889", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.0083154", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0313691", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.790945", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "11", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs2519785", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.0702991", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0118882", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "3.35E-09", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "34.967721", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.0074319", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0297183", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.802526", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "12", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs3756011", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.192712", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0105525", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "1.65E-74", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "333.50841", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0026386", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0272831", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.922956", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "13", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs57328376", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.0697584", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0109198", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "1.68E-10", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "40.809724", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0101806", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0290533", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.726031", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "14", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs576123", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.237396", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0104973", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "3.09E-113", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "511.43633", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.00819", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0287779", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.775956", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "15", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs5896", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.109291", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0125852", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "3.82E-18", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "75.413406", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.0614773", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0388191", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.113265", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "16", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs6025", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.873415", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0298388", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "2.42E-188", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "856.79828", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.0502217", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0899796", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.576745", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "17", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs6060308", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.101587", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0112359", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "1.55E-19", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "81.744876", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.0521936", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0308737", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.0909227", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "18", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs60681578", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.118392", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0150029", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "2.99E-15", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "62.272211", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.0169103", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0390773", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.665204", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "19", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs62350309", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.173509", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0181448", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "1.15E-21", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "91.440721", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.071956", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0634685", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.256909", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "20", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs628094", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.0818781", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0114389", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "8.19E-13", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "51.235029", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.0027028", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0302168", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.928726", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "21", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs72708961", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.0891913", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0159445", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "2.22E-08", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "31.291269", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0765307", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0367798", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.0374539", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "22", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs7772305", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.0726964", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0111586", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "7.28E-11", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "42.443031", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.0585778", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0307164", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.0565137", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "23", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs78807356", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.541094", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0563616", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "7.96E-22", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "92.167713", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.101617", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0796139", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.201825", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 4, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 4, + "end_col_offset_idx": 8, + "text": "\nExposure: PE\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 4, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 4, + "end_col_offset_idx": 8, + "text": "\nExposure: PE\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 4, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 4, + "end_col_offset_idx": 8, + "text": "\nExposure: PE\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 4, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 4, + "end_col_offset_idx": 8, + "text": "\nExposure: PE\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 3, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 8, + "end_col_offset_idx": 11, + "text": "\nOutcome: OSA (Jiang et al)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 3, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 8, + "end_col_offset_idx": 11, + "text": "\nOutcome: OSA (Jiang et al)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 3, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 8, + "end_col_offset_idx": 11, + "text": "\nOutcome: OSA (Jiang et al)\n", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 27, + "end_row_offset_idx": 28, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 27, + "end_row_offset_idx": 28, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "\nSNP\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 27, + "end_row_offset_idx": 28, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "\nEA\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 27, + "end_row_offset_idx": 28, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "\nOA\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 27, + "end_row_offset_idx": 28, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\nBeta\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 27, + "end_row_offset_idx": 28, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "\nSE\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 27, + "end_row_offset_idx": 28, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "\np\n-Value\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 27, + "end_row_offset_idx": 28, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "\nF-statistic\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 27, + "end_row_offset_idx": 28, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\nBeta\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 27, + "end_row_offset_idx": 28, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "\nSE\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 27, + "end_row_offset_idx": 28, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "\np\n-Value\n", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 28, + "end_row_offset_idx": 29, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 28, + "end_row_offset_idx": 29, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs117210485", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 28, + "end_row_offset_idx": 29, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 28, + "end_row_offset_idx": 29, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 28, + "end_row_offset_idx": 29, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.150787", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 28, + "end_row_offset_idx": 29, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0228699", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 28, + "end_row_offset_idx": 29, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "4.30E-11", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 28, + "end_row_offset_idx": 29, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "43.470964", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 28, + "end_row_offset_idx": 29, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.0214618", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 28, + "end_row_offset_idx": 29, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.114177", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 28, + "end_row_offset_idx": 29, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.8509", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 29, + "end_row_offset_idx": 30, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 29, + "end_row_offset_idx": 30, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs11758950", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 29, + "end_row_offset_idx": 30, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 29, + "end_row_offset_idx": 30, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 29, + "end_row_offset_idx": 30, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.203947", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 29, + "end_row_offset_idx": 30, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0367907", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 29, + "end_row_offset_idx": 30, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "2.97E-08", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 29, + "end_row_offset_idx": 30, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "30.729716", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 29, + "end_row_offset_idx": 30, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.0418521", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 29, + "end_row_offset_idx": 30, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0821953", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 29, + "end_row_offset_idx": 30, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.610627", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 30, + "end_row_offset_idx": 31, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 30, + "end_row_offset_idx": 31, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs143620474", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 30, + "end_row_offset_idx": 31, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 30, + "end_row_offset_idx": 31, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 30, + "end_row_offset_idx": 31, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.281243", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 30, + "end_row_offset_idx": 31, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0512263", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 30, + "end_row_offset_idx": 31, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "4.01E-08", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 30, + "end_row_offset_idx": 31, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "30.142375", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 30, + "end_row_offset_idx": 31, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.546819", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 30, + "end_row_offset_idx": 31, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.155226", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 30, + "end_row_offset_idx": 31, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.0004271", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 31, + "end_row_offset_idx": 32, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 31, + "end_row_offset_idx": 32, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs1481808", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 31, + "end_row_offset_idx": 32, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 31, + "end_row_offset_idx": 32, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 31, + "end_row_offset_idx": 32, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.480929", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 31, + "end_row_offset_idx": 32, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0875759", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 31, + "end_row_offset_idx": 32, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "3.98E-08", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 31, + "end_row_offset_idx": 32, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "30.157318", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 31, + "end_row_offset_idx": 32, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.164933", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 31, + "end_row_offset_idx": 32, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.105459", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 31, + "end_row_offset_idx": 32, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.117828", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 32, + "end_row_offset_idx": 33, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 32, + "end_row_offset_idx": 33, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs1560711", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 32, + "end_row_offset_idx": 33, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 32, + "end_row_offset_idx": 33, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 32, + "end_row_offset_idx": 33, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.144704", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 32, + "end_row_offset_idx": 33, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0202073", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 32, + "end_row_offset_idx": 33, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "8.01E-13", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 32, + "end_row_offset_idx": 33, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "51.279584", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 32, + "end_row_offset_idx": 33, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.0310044", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 32, + "end_row_offset_idx": 33, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0321024", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 32, + "end_row_offset_idx": 33, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.334145", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 33, + "end_row_offset_idx": 34, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "6", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 33, + "end_row_offset_idx": 34, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs1894692", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 33, + "end_row_offset_idx": 34, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 33, + "end_row_offset_idx": 34, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 33, + "end_row_offset_idx": 34, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.547808", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 33, + "end_row_offset_idx": 34, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0457764", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 33, + "end_row_offset_idx": 34, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "5.29E-33", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 33, + "end_row_offset_idx": 34, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "143.21004", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 33, + "end_row_offset_idx": 34, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.0002365", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 33, + "end_row_offset_idx": 34, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0951533", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 33, + "end_row_offset_idx": 34, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.998017", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 34, + "end_row_offset_idx": 35, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "7", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 34, + "end_row_offset_idx": 35, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs2066865", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 34, + "end_row_offset_idx": 35, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 34, + "end_row_offset_idx": 35, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 34, + "end_row_offset_idx": 35, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.227484", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 34, + "end_row_offset_idx": 35, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0158067", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 34, + "end_row_offset_idx": 35, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "5.85E-47", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 34, + "end_row_offset_idx": 35, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "207.11869", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 34, + "end_row_offset_idx": 35, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.0083154", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 34, + "end_row_offset_idx": 35, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0313691", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 34, + "end_row_offset_idx": 35, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.790945", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 35, + "end_row_offset_idx": 36, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "8", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 35, + "end_row_offset_idx": 36, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs28584824", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 35, + "end_row_offset_idx": 36, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 35, + "end_row_offset_idx": 36, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 35, + "end_row_offset_idx": 36, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.155264", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 35, + "end_row_offset_idx": 36, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0279234", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 35, + "end_row_offset_idx": 36, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "2.69E-08", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 35, + "end_row_offset_idx": 36, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "30.917541", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 35, + "end_row_offset_idx": 36, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0268756", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 35, + "end_row_offset_idx": 36, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0782108", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 35, + "end_row_offset_idx": 36, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.731124", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 36, + "end_row_offset_idx": 37, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "9", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 36, + "end_row_offset_idx": 37, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs3756011", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 36, + "end_row_offset_idx": 37, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 36, + "end_row_offset_idx": 37, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 36, + "end_row_offset_idx": 37, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.234784", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 36, + "end_row_offset_idx": 37, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0149143", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 36, + "end_row_offset_idx": 37, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "7.77E-56", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 36, + "end_row_offset_idx": 37, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "247.81709", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 36, + "end_row_offset_idx": 37, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0026386", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 36, + "end_row_offset_idx": 37, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0272831", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 36, + "end_row_offset_idx": 37, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.922956", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 37, + "end_row_offset_idx": 38, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "10", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 37, + "end_row_offset_idx": 38, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs62350309", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 37, + "end_row_offset_idx": 38, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 37, + "end_row_offset_idx": 38, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 37, + "end_row_offset_idx": 38, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.202534", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 37, + "end_row_offset_idx": 38, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0260372", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 37, + "end_row_offset_idx": 38, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "7.33E-15", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 37, + "end_row_offset_idx": 38, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "60.507237", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 37, + "end_row_offset_idx": 38, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.071956", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 37, + "end_row_offset_idx": 38, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0634685", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 37, + "end_row_offset_idx": 38, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.256909", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 38, + "end_row_offset_idx": 39, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "11", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 38, + "end_row_offset_idx": 39, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs635634", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 38, + "end_row_offset_idx": 39, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 38, + "end_row_offset_idx": 39, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 38, + "end_row_offset_idx": 39, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.239636", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 38, + "end_row_offset_idx": 39, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0177935", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 38, + "end_row_offset_idx": 39, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "2.43E-41", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 38, + "end_row_offset_idx": 39, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "181.37664", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 38, + "end_row_offset_idx": 39, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.0064596", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 38, + "end_row_offset_idx": 39, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0347197", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 38, + "end_row_offset_idx": 39, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.852404", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 39, + "end_row_offset_idx": 40, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "12", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 39, + "end_row_offset_idx": 40, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs665082", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 39, + "end_row_offset_idx": 40, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 39, + "end_row_offset_idx": 40, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 39, + "end_row_offset_idx": 40, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.175581", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 39, + "end_row_offset_idx": 40, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.030484", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 39, + "end_row_offset_idx": 40, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "8.42E-09", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 39, + "end_row_offset_idx": 40, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "33.175015", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 39, + "end_row_offset_idx": 40, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.343267", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 39, + "end_row_offset_idx": 40, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.216405", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 39, + "end_row_offset_idx": 40, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.112688", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 40, + "end_row_offset_idx": 41, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "13", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 40, + "end_row_offset_idx": 41, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs77165492", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 40, + "end_row_offset_idx": 41, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 40, + "end_row_offset_idx": 41, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 40, + "end_row_offset_idx": 41, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.209269", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 40, + "end_row_offset_idx": 41, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0275462", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 40, + "end_row_offset_idx": 41, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "3.03E-14", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 40, + "end_row_offset_idx": 41, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "57.714695", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 40, + "end_row_offset_idx": 41, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0445618", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 40, + "end_row_offset_idx": 41, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0457769", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 40, + "end_row_offset_idx": 41, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.330327", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 41, + "end_row_offset_idx": 42, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "14", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 41, + "end_row_offset_idx": 42, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs78807356", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 41, + "end_row_offset_idx": 42, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 41, + "end_row_offset_idx": 42, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 41, + "end_row_offset_idx": 42, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.515784", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 41, + "end_row_offset_idx": 42, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0795096", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 41, + "end_row_offset_idx": 42, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "8.75E-11", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 41, + "end_row_offset_idx": 42, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "42.082022", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 41, + "end_row_offset_idx": 42, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.101617", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 41, + "end_row_offset_idx": 42, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0796139", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 41, + "end_row_offset_idx": 42, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.201825", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 42, + "end_row_offset_idx": 43, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 42, + "end_row_offset_idx": 43, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 42, + "end_row_offset_idx": 43, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 42, + "end_row_offset_idx": 43, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 4, + "start_row_offset_idx": 42, + "end_row_offset_idx": 43, + "start_col_offset_idx": 4, + "end_col_offset_idx": 8, + "text": "\nExposure: DVT\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 4, + "start_row_offset_idx": 42, + "end_row_offset_idx": 43, + "start_col_offset_idx": 4, + "end_col_offset_idx": 8, + "text": "\nExposure: DVT\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 4, + "start_row_offset_idx": 42, + "end_row_offset_idx": 43, + "start_col_offset_idx": 4, + "end_col_offset_idx": 8, + "text": "\nExposure: DVT\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 4, + "start_row_offset_idx": 42, + "end_row_offset_idx": 43, + "start_col_offset_idx": 4, + "end_col_offset_idx": 8, + "text": "\nExposure: DVT\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 3, + "start_row_offset_idx": 42, + "end_row_offset_idx": 43, + "start_col_offset_idx": 8, + "end_col_offset_idx": 11, + "text": "\nOutcome: OSA (Jiang et al)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 3, + "start_row_offset_idx": 42, + "end_row_offset_idx": 43, + "start_col_offset_idx": 8, + "end_col_offset_idx": 11, + "text": "\nOutcome: OSA (Jiang et al)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 3, + "start_row_offset_idx": 42, + "end_row_offset_idx": 43, + "start_col_offset_idx": 8, + "end_col_offset_idx": 11, + "text": "\nOutcome: OSA (Jiang et al)\n", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 43, + "end_row_offset_idx": 44, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 43, + "end_row_offset_idx": 44, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "\nSNP\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 43, + "end_row_offset_idx": 44, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "\nEA\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 43, + "end_row_offset_idx": 44, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "\nOA\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 43, + "end_row_offset_idx": 44, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\nBeta\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 43, + "end_row_offset_idx": 44, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "\nSE\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 43, + "end_row_offset_idx": 44, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "\np\n-Value\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 43, + "end_row_offset_idx": 44, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "\nF-statistic\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 43, + "end_row_offset_idx": 44, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\nBeta\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 43, + "end_row_offset_idx": 44, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "\nSE\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 43, + "end_row_offset_idx": 44, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "\np\n-Value\n", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 44, + "end_row_offset_idx": 45, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 44, + "end_row_offset_idx": 45, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs113079063", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 44, + "end_row_offset_idx": 45, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 44, + "end_row_offset_idx": 45, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 44, + "end_row_offset_idx": 45, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.436284", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 44, + "end_row_offset_idx": 45, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0717563", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 44, + "end_row_offset_idx": 45, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "1.20E-09", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 44, + "end_row_offset_idx": 45, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "36.967365", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 44, + "end_row_offset_idx": 45, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.0050364", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 44, + "end_row_offset_idx": 45, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0876134", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 44, + "end_row_offset_idx": 45, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.954159", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 45, + "end_row_offset_idx": 46, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 45, + "end_row_offset_idx": 46, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs116997538", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 45, + "end_row_offset_idx": 46, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 45, + "end_row_offset_idx": 46, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 45, + "end_row_offset_idx": 46, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.466245", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 45, + "end_row_offset_idx": 46, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0534583", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 45, + "end_row_offset_idx": 46, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "2.74E-18", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 45, + "end_row_offset_idx": 46, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "76.067315", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 45, + "end_row_offset_idx": 46, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.067735", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 45, + "end_row_offset_idx": 46, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.123897", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 45, + "end_row_offset_idx": 46, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.584581", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 46, + "end_row_offset_idx": 47, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 46, + "end_row_offset_idx": 47, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs13377102", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 46, + "end_row_offset_idx": 47, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 46, + "end_row_offset_idx": 47, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 46, + "end_row_offset_idx": 47, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.233255", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 46, + "end_row_offset_idx": 47, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0255094", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 46, + "end_row_offset_idx": 47, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "6.02E-20", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 46, + "end_row_offset_idx": 47, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "83.610619", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 46, + "end_row_offset_idx": 47, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0250186", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 46, + "end_row_offset_idx": 47, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0389518", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 46, + "end_row_offset_idx": 47, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.520681", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 47, + "end_row_offset_idx": 48, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 47, + "end_row_offset_idx": 48, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs2066865", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 47, + "end_row_offset_idx": 48, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 47, + "end_row_offset_idx": 48, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 47, + "end_row_offset_idx": 48, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.184507", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 47, + "end_row_offset_idx": 48, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0161145", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 47, + "end_row_offset_idx": 48, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "2.36E-30", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 47, + "end_row_offset_idx": 48, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "131.09678", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 47, + "end_row_offset_idx": 48, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.0083154", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 47, + "end_row_offset_idx": 48, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0313691", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 47, + "end_row_offset_idx": 48, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.790945", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 48, + "end_row_offset_idx": 49, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 48, + "end_row_offset_idx": 49, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs2289252", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 48, + "end_row_offset_idx": 49, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 48, + "end_row_offset_idx": 49, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 48, + "end_row_offset_idx": 49, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.197972", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 48, + "end_row_offset_idx": 49, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.015135", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 48, + "end_row_offset_idx": 49, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "4.26E-39", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 48, + "end_row_offset_idx": 49, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "171.09712", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 48, + "end_row_offset_idx": 49, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0018411", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 48, + "end_row_offset_idx": 49, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0272571", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 48, + "end_row_offset_idx": 49, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.946148", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 49, + "end_row_offset_idx": 50, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "6", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 49, + "end_row_offset_idx": 50, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs2519785", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 49, + "end_row_offset_idx": 50, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 49, + "end_row_offset_idx": 50, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 49, + "end_row_offset_idx": 50, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.0982467", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 49, + "end_row_offset_idx": 50, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0169973", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 49, + "end_row_offset_idx": 50, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "7.46E-09", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 49, + "end_row_offset_idx": 50, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "33.409968", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 49, + "end_row_offset_idx": 50, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.0074319", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 49, + "end_row_offset_idx": 50, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0297183", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 49, + "end_row_offset_idx": 50, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.802526", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 50, + "end_row_offset_idx": 51, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "7", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 50, + "end_row_offset_idx": 51, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs576123", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 50, + "end_row_offset_idx": 51, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 50, + "end_row_offset_idx": 51, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 50, + "end_row_offset_idx": 51, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.297682", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 50, + "end_row_offset_idx": 51, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.014983", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 50, + "end_row_offset_idx": 51, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "7.70E-88", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 50, + "end_row_offset_idx": 51, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "394.73678", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 50, + "end_row_offset_idx": 51, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.00819", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 50, + "end_row_offset_idx": 51, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0287779", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 50, + "end_row_offset_idx": 51, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.775956", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 51, + "end_row_offset_idx": 52, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "8", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 51, + "end_row_offset_idx": 52, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs5896", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 51, + "end_row_offset_idx": 52, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 51, + "end_row_offset_idx": 52, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 51, + "end_row_offset_idx": 52, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.141024", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 51, + "end_row_offset_idx": 52, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.017945", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 51, + "end_row_offset_idx": 52, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "3.88E-15", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 51, + "end_row_offset_idx": 52, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "61.75884", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 51, + "end_row_offset_idx": 52, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.0614773", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 51, + "end_row_offset_idx": 52, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0388191", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 51, + "end_row_offset_idx": 52, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.113265", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 52, + "end_row_offset_idx": 53, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "9", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 52, + "end_row_offset_idx": 53, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs6025", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 52, + "end_row_offset_idx": 53, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 52, + "end_row_offset_idx": 53, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 52, + "end_row_offset_idx": 53, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "1.10439", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 52, + "end_row_offset_idx": 53, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0393903", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 52, + "end_row_offset_idx": 53, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "5.71E-173", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 52, + "end_row_offset_idx": 53, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "786.07929", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 52, + "end_row_offset_idx": 53, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.0502217", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 52, + "end_row_offset_idx": 53, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0899796", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 52, + "end_row_offset_idx": 53, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.576745", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 53, + "end_row_offset_idx": 54, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "10", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 53, + "end_row_offset_idx": 54, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs6060237", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 53, + "end_row_offset_idx": 54, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 53, + "end_row_offset_idx": 54, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 53, + "end_row_offset_idx": 54, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.168453", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 53, + "end_row_offset_idx": 54, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0198214", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 53, + "end_row_offset_idx": 54, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "1.92E-17", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 53, + "end_row_offset_idx": 54, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "72.225216", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 53, + "end_row_offset_idx": 54, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.0318432", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 53, + "end_row_offset_idx": 54, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0414073", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 53, + "end_row_offset_idx": 54, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.441879", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 54, + "end_row_offset_idx": 55, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "11", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 54, + "end_row_offset_idx": 55, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs60681578", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 54, + "end_row_offset_idx": 55, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 54, + "end_row_offset_idx": 55, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 54, + "end_row_offset_idx": 55, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.137615", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 54, + "end_row_offset_idx": 55, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.021627", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 54, + "end_row_offset_idx": 55, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "1.98E-10", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 54, + "end_row_offset_idx": 55, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "40.489181", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 54, + "end_row_offset_idx": 55, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.0169103", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 54, + "end_row_offset_idx": 55, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0390773", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 54, + "end_row_offset_idx": 55, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.665204", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 55, + "end_row_offset_idx": 56, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "12", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 55, + "end_row_offset_idx": 56, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs62350309", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 55, + "end_row_offset_idx": 56, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 55, + "end_row_offset_idx": 56, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 55, + "end_row_offset_idx": 56, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.162704", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 55, + "end_row_offset_idx": 56, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0259998", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 55, + "end_row_offset_idx": 56, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "3.90E-10", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 55, + "end_row_offset_idx": 56, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "39.161241", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 55, + "end_row_offset_idx": 56, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.071956", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 55, + "end_row_offset_idx": 56, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0634685", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 55, + "end_row_offset_idx": 56, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.256909", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 56, + "end_row_offset_idx": 57, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "13", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 56, + "end_row_offset_idx": 57, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs666870", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 56, + "end_row_offset_idx": 57, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 56, + "end_row_offset_idx": 57, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 56, + "end_row_offset_idx": 57, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.0924832", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 56, + "end_row_offset_idx": 57, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0159069", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 56, + "end_row_offset_idx": 57, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "6.10E-09", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 56, + "end_row_offset_idx": 57, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "33.802949", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 56, + "end_row_offset_idx": 57, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.0127968", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 56, + "end_row_offset_idx": 57, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0271558", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 56, + "end_row_offset_idx": 57, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.637472", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 57, + "end_row_offset_idx": 58, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "14", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 57, + "end_row_offset_idx": 58, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs7308002", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 57, + "end_row_offset_idx": 58, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 57, + "end_row_offset_idx": 58, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 57, + "end_row_offset_idx": 58, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.0978174", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 57, + "end_row_offset_idx": 58, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.01576", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 57, + "end_row_offset_idx": 58, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "5.41E-10", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 57, + "end_row_offset_idx": 58, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "38.522974", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 57, + "end_row_offset_idx": 58, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0027934", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 57, + "end_row_offset_idx": 58, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0275746", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 57, + "end_row_offset_idx": 58, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.919309", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 58, + "end_row_offset_idx": 59, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "15", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 58, + "end_row_offset_idx": 59, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs76151810", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 58, + "end_row_offset_idx": 59, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 58, + "end_row_offset_idx": 59, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 58, + "end_row_offset_idx": 59, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.153073", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 58, + "end_row_offset_idx": 59, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0273112", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 58, + "end_row_offset_idx": 59, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "2.09E-08", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 58, + "end_row_offset_idx": 59, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "31.413449", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 58, + "end_row_offset_idx": 59, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0018493", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 58, + "end_row_offset_idx": 59, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0507256", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 58, + "end_row_offset_idx": 59, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.970918", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 59, + "end_row_offset_idx": 60, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "16", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 59, + "end_row_offset_idx": 60, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs7772305", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 59, + "end_row_offset_idx": 60, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 59, + "end_row_offset_idx": 60, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 59, + "end_row_offset_idx": 60, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.100251", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 59, + "end_row_offset_idx": 60, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.016057", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 59, + "end_row_offset_idx": 60, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "4.28E-10", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 59, + "end_row_offset_idx": 60, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "38.980608", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 59, + "end_row_offset_idx": 60, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.0585778", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 59, + "end_row_offset_idx": 60, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0307164", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 59, + "end_row_offset_idx": 60, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.0565137", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 60, + "end_row_offset_idx": 61, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "17", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 60, + "end_row_offset_idx": 61, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs78807356", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 60, + "end_row_offset_idx": 61, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 60, + "end_row_offset_idx": 61, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 60, + "end_row_offset_idx": 61, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.621447", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 60, + "end_row_offset_idx": 61, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0792414", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 60, + "end_row_offset_idx": 61, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "4.42E-15", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 60, + "end_row_offset_idx": 61, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "61.504078", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 60, + "end_row_offset_idx": 61, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.101617", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 60, + "end_row_offset_idx": 61, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0796139", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 60, + "end_row_offset_idx": 61, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.201825", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 61, + "end_row_offset_idx": 62, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "18", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 61, + "end_row_offset_idx": 62, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs9865118", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 61, + "end_row_offset_idx": 62, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 61, + "end_row_offset_idx": 62, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 61, + "end_row_offset_idx": 62, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.0863804", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 61, + "end_row_offset_idx": 62, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0151814", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 61, + "end_row_offset_idx": 62, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "1.27E-08", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 61, + "end_row_offset_idx": 62, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "32.374776", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 61, + "end_row_offset_idx": 62, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.0363583", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 61, + "end_row_offset_idx": 62, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0268338", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 61, + "end_row_offset_idx": 62, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.175436", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 11, + "start_row_offset_idx": 62, + "end_row_offset_idx": 63, + "start_col_offset_idx": 0, + "end_col_offset_idx": 11, + "text": "\nGenetic instruments for VTE/PE/DVT and their associations with OSA (Campos et al)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 11, + "start_row_offset_idx": 62, + "end_row_offset_idx": 63, + "start_col_offset_idx": 0, + "end_col_offset_idx": 11, + "text": "\nGenetic instruments for VTE/PE/DVT and their associations with OSA (Campos et al)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 11, + "start_row_offset_idx": 62, + "end_row_offset_idx": 63, + "start_col_offset_idx": 0, + "end_col_offset_idx": 11, + "text": "\nGenetic instruments for VTE/PE/DVT and their associations with OSA (Campos et al)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 11, + "start_row_offset_idx": 62, + "end_row_offset_idx": 63, + "start_col_offset_idx": 0, + "end_col_offset_idx": 11, + "text": "\nGenetic instruments for VTE/PE/DVT and their associations with OSA (Campos et al)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 11, + "start_row_offset_idx": 62, + "end_row_offset_idx": 63, + "start_col_offset_idx": 0, + "end_col_offset_idx": 11, + "text": "\nGenetic instruments for VTE/PE/DVT and their associations with OSA (Campos et al)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 11, + "start_row_offset_idx": 62, + "end_row_offset_idx": 63, + "start_col_offset_idx": 0, + "end_col_offset_idx": 11, + "text": "\nGenetic instruments for VTE/PE/DVT and their associations with OSA (Campos et al)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 11, + "start_row_offset_idx": 62, + "end_row_offset_idx": 63, + "start_col_offset_idx": 0, + "end_col_offset_idx": 11, + "text": "\nGenetic instruments for VTE/PE/DVT and their associations with OSA (Campos et al)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 11, + "start_row_offset_idx": 62, + "end_row_offset_idx": 63, + "start_col_offset_idx": 0, + "end_col_offset_idx": 11, + "text": "\nGenetic instruments for VTE/PE/DVT and their associations with OSA (Campos et al)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 11, + "start_row_offset_idx": 62, + "end_row_offset_idx": 63, + "start_col_offset_idx": 0, + "end_col_offset_idx": 11, + "text": "\nGenetic instruments for VTE/PE/DVT and their associations with OSA (Campos et al)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 11, + "start_row_offset_idx": 62, + "end_row_offset_idx": 63, + "start_col_offset_idx": 0, + "end_col_offset_idx": 11, + "text": "\nGenetic instruments for VTE/PE/DVT and their associations with OSA (Campos et al)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 11, + "start_row_offset_idx": 62, + "end_row_offset_idx": 63, + "start_col_offset_idx": 0, + "end_col_offset_idx": 11, + "text": "\nGenetic instruments for VTE/PE/DVT and their associations with OSA (Campos et al)\n", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 63, + "end_row_offset_idx": 64, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 63, + "end_row_offset_idx": 64, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 63, + "end_row_offset_idx": 64, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 63, + "end_row_offset_idx": 64, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 4, + "start_row_offset_idx": 63, + "end_row_offset_idx": 64, + "start_col_offset_idx": 4, + "end_col_offset_idx": 8, + "text": "\nExposure: VTE\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 4, + "start_row_offset_idx": 63, + "end_row_offset_idx": 64, + "start_col_offset_idx": 4, + "end_col_offset_idx": 8, + "text": "\nExposure: VTE\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 4, + "start_row_offset_idx": 63, + "end_row_offset_idx": 64, + "start_col_offset_idx": 4, + "end_col_offset_idx": 8, + "text": "\nExposure: VTE\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 4, + "start_row_offset_idx": 63, + "end_row_offset_idx": 64, + "start_col_offset_idx": 4, + "end_col_offset_idx": 8, + "text": "\nExposure: VTE\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 3, + "start_row_offset_idx": 63, + "end_row_offset_idx": 64, + "start_col_offset_idx": 8, + "end_col_offset_idx": 11, + "text": "\nOutcome: OSA (Campos et al)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 3, + "start_row_offset_idx": 63, + "end_row_offset_idx": 64, + "start_col_offset_idx": 8, + "end_col_offset_idx": 11, + "text": "\nOutcome: OSA (Campos et al)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 3, + "start_row_offset_idx": 63, + "end_row_offset_idx": 64, + "start_col_offset_idx": 8, + "end_col_offset_idx": 11, + "text": "\nOutcome: OSA (Campos et al)\n", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 64, + "end_row_offset_idx": 65, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 64, + "end_row_offset_idx": 65, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "\nSNP\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 64, + "end_row_offset_idx": 65, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "\nEA\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 64, + "end_row_offset_idx": 65, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "\nOA\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 64, + "end_row_offset_idx": 65, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\nBeta\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 64, + "end_row_offset_idx": 65, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "\nSE\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 64, + "end_row_offset_idx": 65, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "\np\n-Value\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 64, + "end_row_offset_idx": 65, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "\nF-statistic\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 64, + "end_row_offset_idx": 65, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\nBeta\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 64, + "end_row_offset_idx": 65, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "\nSE\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 64, + "end_row_offset_idx": 65, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "\np\n-Value\n", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 65, + "end_row_offset_idx": 66, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 65, + "end_row_offset_idx": 66, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs10896706", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 65, + "end_row_offset_idx": 66, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 65, + "end_row_offset_idx": 66, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 65, + "end_row_offset_idx": 66, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.0702142", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 65, + "end_row_offset_idx": 66, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0121006", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 65, + "end_row_offset_idx": 66, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "6.53E-09", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 65, + "end_row_offset_idx": 66, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "33.669456", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 65, + "end_row_offset_idx": 66, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.0073376", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 65, + "end_row_offset_idx": 66, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0072794", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 65, + "end_row_offset_idx": 66, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.3136", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 66, + "end_row_offset_idx": 67, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 66, + "end_row_offset_idx": 67, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs114767153", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 66, + "end_row_offset_idx": 67, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 66, + "end_row_offset_idx": 67, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 66, + "end_row_offset_idx": 67, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.20888", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 66, + "end_row_offset_idx": 67, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0348173", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 66, + "end_row_offset_idx": 67, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "1.98E-09", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 66, + "end_row_offset_idx": 67, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "35.991798", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 66, + "end_row_offset_idx": 67, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0240477", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 66, + "end_row_offset_idx": 67, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0220217", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 66, + "end_row_offset_idx": 67, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.2749", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 67, + "end_row_offset_idx": 68, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 67, + "end_row_offset_idx": 68, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs116997538", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 67, + "end_row_offset_idx": 68, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 67, + "end_row_offset_idx": 68, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 67, + "end_row_offset_idx": 68, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.403288", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 67, + "end_row_offset_idx": 68, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0383066", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 67, + "end_row_offset_idx": 68, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "6.42E-26", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 67, + "end_row_offset_idx": 68, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "110.83665", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 67, + "end_row_offset_idx": 68, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0202903", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 67, + "end_row_offset_idx": 68, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0346251", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 67, + "end_row_offset_idx": 68, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.558", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 68, + "end_row_offset_idx": 69, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 68, + "end_row_offset_idx": 69, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs12054563", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 68, + "end_row_offset_idx": 69, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 68, + "end_row_offset_idx": 69, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 68, + "end_row_offset_idx": 69, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.126677", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 68, + "end_row_offset_idx": 69, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0176431", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 68, + "end_row_offset_idx": 69, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "6.97E-13", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 68, + "end_row_offset_idx": 69, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "51.552027", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 68, + "end_row_offset_idx": 69, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0164525", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 68, + "end_row_offset_idx": 69, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0159578", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 68, + "end_row_offset_idx": 69, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.3025", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 69, + "end_row_offset_idx": 70, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 69, + "end_row_offset_idx": 70, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs1560711", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 69, + "end_row_offset_idx": 70, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 69, + "end_row_offset_idx": 70, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 69, + "end_row_offset_idx": 70, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.122379", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 69, + "end_row_offset_idx": 70, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0141465", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 69, + "end_row_offset_idx": 70, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "5.11E-18", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 69, + "end_row_offset_idx": 70, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "74.836901", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 69, + "end_row_offset_idx": 70, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0033405", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 69, + "end_row_offset_idx": 70, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0090041", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 69, + "end_row_offset_idx": 70, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.7104", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 70, + "end_row_offset_idx": 71, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "6", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 70, + "end_row_offset_idx": 71, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs174529", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 70, + "end_row_offset_idx": 71, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 70, + "end_row_offset_idx": 71, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 70, + "end_row_offset_idx": 71, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.0686342", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 70, + "end_row_offset_idx": 71, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0107211", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 70, + "end_row_offset_idx": 71, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "1.54E-10", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 70, + "end_row_offset_idx": 71, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "40.982878", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 70, + "end_row_offset_idx": 71, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0016235", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 70, + "end_row_offset_idx": 71, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0068503", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 70, + "end_row_offset_idx": 71, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.8124", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 71, + "end_row_offset_idx": 72, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "7", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 71, + "end_row_offset_idx": 72, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs2066865", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 71, + "end_row_offset_idx": 72, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 71, + "end_row_offset_idx": 72, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 71, + "end_row_offset_idx": 72, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.186112", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 71, + "end_row_offset_idx": 72, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0112369", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 71, + "end_row_offset_idx": 72, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "1.30E-61", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 71, + "end_row_offset_idx": 72, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "274.31889", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 71, + "end_row_offset_idx": 72, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0033999", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 71, + "end_row_offset_idx": 72, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0077623", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 71, + "end_row_offset_idx": 72, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.6612", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 72, + "end_row_offset_idx": 73, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "8", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 72, + "end_row_offset_idx": 73, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs3756011", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 72, + "end_row_offset_idx": 73, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 72, + "end_row_offset_idx": 73, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 72, + "end_row_offset_idx": 73, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.192712", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 72, + "end_row_offset_idx": 73, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0105525", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 72, + "end_row_offset_idx": 73, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "1.65E-74", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 72, + "end_row_offset_idx": 73, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "333.50841", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 72, + "end_row_offset_idx": 73, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.000575", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 72, + "end_row_offset_idx": 73, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0067645", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 72, + "end_row_offset_idx": 73, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.9326", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 73, + "end_row_offset_idx": 74, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "9", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 73, + "end_row_offset_idx": 74, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs57328376", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 73, + "end_row_offset_idx": 74, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 73, + "end_row_offset_idx": 74, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 73, + "end_row_offset_idx": 74, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.0697584", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 73, + "end_row_offset_idx": 74, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0109198", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 73, + "end_row_offset_idx": 74, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "1.68E-10", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 73, + "end_row_offset_idx": 74, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "40.809724", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 73, + "end_row_offset_idx": 74, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0010062", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 73, + "end_row_offset_idx": 74, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0071873", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 73, + "end_row_offset_idx": 74, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.8885", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 74, + "end_row_offset_idx": 75, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "10", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 74, + "end_row_offset_idx": 75, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs576123", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 74, + "end_row_offset_idx": 75, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 74, + "end_row_offset_idx": 75, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 74, + "end_row_offset_idx": 75, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.237396", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 74, + "end_row_offset_idx": 75, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0104973", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 74, + "end_row_offset_idx": 75, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "3.09E-113", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 74, + "end_row_offset_idx": 75, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "511.43633", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 74, + "end_row_offset_idx": 75, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.0183551", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 74, + "end_row_offset_idx": 75, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0086786", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 74, + "end_row_offset_idx": 75, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.03441", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 75, + "end_row_offset_idx": 76, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "11", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 75, + "end_row_offset_idx": 76, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs5896", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 75, + "end_row_offset_idx": 76, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 75, + "end_row_offset_idx": 76, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 75, + "end_row_offset_idx": 76, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.109291", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 75, + "end_row_offset_idx": 76, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0125852", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 75, + "end_row_offset_idx": 76, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "3.82E-18", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 75, + "end_row_offset_idx": 76, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "75.413406", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 75, + "end_row_offset_idx": 76, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.020985", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 75, + "end_row_offset_idx": 76, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0096527", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 75, + "end_row_offset_idx": 76, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.02974", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 76, + "end_row_offset_idx": 77, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "12", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 76, + "end_row_offset_idx": 77, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs6025", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 76, + "end_row_offset_idx": 77, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 76, + "end_row_offset_idx": 77, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 76, + "end_row_offset_idx": 77, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.873415", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 76, + "end_row_offset_idx": 77, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0298388", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 76, + "end_row_offset_idx": 77, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "2.42E-188", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 76, + "end_row_offset_idx": 77, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "856.79828", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 76, + "end_row_offset_idx": 77, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.0380118", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 76, + "end_row_offset_idx": 77, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0218836", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 76, + "end_row_offset_idx": 77, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.08241", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 77, + "end_row_offset_idx": 78, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "13", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 77, + "end_row_offset_idx": 78, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs6060308", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 77, + "end_row_offset_idx": 78, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 77, + "end_row_offset_idx": 78, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 77, + "end_row_offset_idx": 78, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.101587", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 77, + "end_row_offset_idx": 78, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0112359", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 77, + "end_row_offset_idx": 78, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "1.55E-19", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 77, + "end_row_offset_idx": 78, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "81.744876", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 77, + "end_row_offset_idx": 78, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0009288", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 77, + "end_row_offset_idx": 78, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0074901", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 77, + "end_row_offset_idx": 78, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.9013", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 78, + "end_row_offset_idx": 79, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "14", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 78, + "end_row_offset_idx": 79, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs60681578", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 78, + "end_row_offset_idx": 79, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 78, + "end_row_offset_idx": 79, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 78, + "end_row_offset_idx": 79, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.118392", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 78, + "end_row_offset_idx": 79, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0150029", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 78, + "end_row_offset_idx": 79, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "2.99E-15", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 78, + "end_row_offset_idx": 79, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "62.272211", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 78, + "end_row_offset_idx": 79, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.0085067", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 78, + "end_row_offset_idx": 79, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0117172", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 78, + "end_row_offset_idx": 79, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.4678", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 79, + "end_row_offset_idx": 80, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "15", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 79, + "end_row_offset_idx": 80, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs62350309", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 79, + "end_row_offset_idx": 80, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 79, + "end_row_offset_idx": 80, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 79, + "end_row_offset_idx": 80, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.173509", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 79, + "end_row_offset_idx": 80, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0181448", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 79, + "end_row_offset_idx": 80, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "1.15E-21", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 79, + "end_row_offset_idx": 80, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "91.440721", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 79, + "end_row_offset_idx": 80, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.0075114", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 79, + "end_row_offset_idx": 80, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0152982", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 79, + "end_row_offset_idx": 80, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.6233", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 80, + "end_row_offset_idx": 81, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "16", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 80, + "end_row_offset_idx": 81, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs628094", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 80, + "end_row_offset_idx": 81, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 80, + "end_row_offset_idx": 81, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 80, + "end_row_offset_idx": 81, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.0818781", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 80, + "end_row_offset_idx": 81, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0114389", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 80, + "end_row_offset_idx": 81, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "8.19E-13", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 80, + "end_row_offset_idx": 81, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "51.235029", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 80, + "end_row_offset_idx": 81, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0022354", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 80, + "end_row_offset_idx": 81, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0074021", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 80, + "end_row_offset_idx": 81, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.7627", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 81, + "end_row_offset_idx": 82, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "17", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 81, + "end_row_offset_idx": 82, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs72708961", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 81, + "end_row_offset_idx": 82, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 81, + "end_row_offset_idx": 82, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 81, + "end_row_offset_idx": 82, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.0891913", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 81, + "end_row_offset_idx": 82, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0159445", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 81, + "end_row_offset_idx": 82, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "2.22E-08", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 81, + "end_row_offset_idx": 82, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "31.291269", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 81, + "end_row_offset_idx": 82, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0170636", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 81, + "end_row_offset_idx": 82, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0090957", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 81, + "end_row_offset_idx": 82, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.06059", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 82, + "end_row_offset_idx": 83, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "18", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 82, + "end_row_offset_idx": 83, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs7772305", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 82, + "end_row_offset_idx": 83, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 82, + "end_row_offset_idx": 83, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 82, + "end_row_offset_idx": 83, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.0726964", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 82, + "end_row_offset_idx": 83, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0111586", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 82, + "end_row_offset_idx": 83, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "7.28E-11", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 82, + "end_row_offset_idx": 83, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "42.443031", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 82, + "end_row_offset_idx": 83, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.016709", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 82, + "end_row_offset_idx": 83, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0086396", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 82, + "end_row_offset_idx": 83, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.05311", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 83, + "end_row_offset_idx": 84, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "19", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 83, + "end_row_offset_idx": 84, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs80137017", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 83, + "end_row_offset_idx": 84, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 83, + "end_row_offset_idx": 84, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 83, + "end_row_offset_idx": 84, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.208902", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 83, + "end_row_offset_idx": 84, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0177996", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 83, + "end_row_offset_idx": 84, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "8.30E-32", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 83, + "end_row_offset_idx": 84, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "137.74147", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 83, + "end_row_offset_idx": 84, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.0152022", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 83, + "end_row_offset_idx": 84, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0099426", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 83, + "end_row_offset_idx": 84, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.1262", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 84, + "end_row_offset_idx": 85, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 84, + "end_row_offset_idx": 85, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 84, + "end_row_offset_idx": 85, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 84, + "end_row_offset_idx": 85, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 4, + "start_row_offset_idx": 84, + "end_row_offset_idx": 85, + "start_col_offset_idx": 4, + "end_col_offset_idx": 8, + "text": "\nExposure: PE\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 4, + "start_row_offset_idx": 84, + "end_row_offset_idx": 85, + "start_col_offset_idx": 4, + "end_col_offset_idx": 8, + "text": "\nExposure: PE\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 4, + "start_row_offset_idx": 84, + "end_row_offset_idx": 85, + "start_col_offset_idx": 4, + "end_col_offset_idx": 8, + "text": "\nExposure: PE\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 4, + "start_row_offset_idx": 84, + "end_row_offset_idx": 85, + "start_col_offset_idx": 4, + "end_col_offset_idx": 8, + "text": "\nExposure: PE\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 3, + "start_row_offset_idx": 84, + "end_row_offset_idx": 85, + "start_col_offset_idx": 8, + "end_col_offset_idx": 11, + "text": "\nOutcome: OSA (Campos et al)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 3, + "start_row_offset_idx": 84, + "end_row_offset_idx": 85, + "start_col_offset_idx": 8, + "end_col_offset_idx": 11, + "text": "\nOutcome: OSA (Campos et al)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 3, + "start_row_offset_idx": 84, + "end_row_offset_idx": 85, + "start_col_offset_idx": 8, + "end_col_offset_idx": 11, + "text": "\nOutcome: OSA (Campos et al)\n", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 85, + "end_row_offset_idx": 86, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 85, + "end_row_offset_idx": 86, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "\nSNP\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 85, + "end_row_offset_idx": 86, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "\nEA\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 85, + "end_row_offset_idx": 86, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "\nOA\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 85, + "end_row_offset_idx": 86, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\nBeta\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 85, + "end_row_offset_idx": 86, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "\nSE\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 85, + "end_row_offset_idx": 86, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "\np\n-Value\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 85, + "end_row_offset_idx": 86, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "\nF-statistic\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 85, + "end_row_offset_idx": 86, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\nBeta\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 85, + "end_row_offset_idx": 86, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "\nSE\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 85, + "end_row_offset_idx": 86, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "\np\n-Value\n", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 86, + "end_row_offset_idx": 87, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 86, + "end_row_offset_idx": 87, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs117210485", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 86, + "end_row_offset_idx": 87, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 86, + "end_row_offset_idx": 87, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 86, + "end_row_offset_idx": 87, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.150787", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 86, + "end_row_offset_idx": 87, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0228699", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 86, + "end_row_offset_idx": 87, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "4.30E-11", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 86, + "end_row_offset_idx": 87, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "43.470964", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 86, + "end_row_offset_idx": 87, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0346523", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 86, + "end_row_offset_idx": 87, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0239146", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 86, + "end_row_offset_idx": 87, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.1473", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 87, + "end_row_offset_idx": 88, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 87, + "end_row_offset_idx": 88, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs143620474", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 87, + "end_row_offset_idx": 88, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 87, + "end_row_offset_idx": 88, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 87, + "end_row_offset_idx": 88, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.281243", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 87, + "end_row_offset_idx": 88, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0512263", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 87, + "end_row_offset_idx": 88, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "4.01E-08", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 87, + "end_row_offset_idx": 88, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "30.142375", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 87, + "end_row_offset_idx": 88, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.0124988", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 87, + "end_row_offset_idx": 88, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0892769", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 87, + "end_row_offset_idx": 88, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.8889", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 88, + "end_row_offset_idx": 89, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 88, + "end_row_offset_idx": 89, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs1481808", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 88, + "end_row_offset_idx": 89, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 88, + "end_row_offset_idx": 89, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 88, + "end_row_offset_idx": 89, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.480929", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 88, + "end_row_offset_idx": 89, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0875759", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 88, + "end_row_offset_idx": 89, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "3.98E-08", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 88, + "end_row_offset_idx": 89, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "30.157318", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 88, + "end_row_offset_idx": 89, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0281243", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 88, + "end_row_offset_idx": 89, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0269648", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 88, + "end_row_offset_idx": 89, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.297", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 89, + "end_row_offset_idx": 90, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 89, + "end_row_offset_idx": 90, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs1560711", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 89, + "end_row_offset_idx": 90, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 89, + "end_row_offset_idx": 90, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 89, + "end_row_offset_idx": 90, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.144704", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 89, + "end_row_offset_idx": 90, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0202073", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 89, + "end_row_offset_idx": 90, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "8.01E-13", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 89, + "end_row_offset_idx": 90, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "51.279584", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 89, + "end_row_offset_idx": 90, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0033405", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 89, + "end_row_offset_idx": 90, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0090041", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 89, + "end_row_offset_idx": 90, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.7104", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 90, + "end_row_offset_idx": 91, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 90, + "end_row_offset_idx": 91, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs2066865", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 90, + "end_row_offset_idx": 91, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 90, + "end_row_offset_idx": 91, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 90, + "end_row_offset_idx": 91, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.227484", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 90, + "end_row_offset_idx": 91, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0158067", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 90, + "end_row_offset_idx": 91, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "5.85E-47", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 90, + "end_row_offset_idx": 91, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "207.11869", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 90, + "end_row_offset_idx": 91, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0033999", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 90, + "end_row_offset_idx": 91, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0077623", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 90, + "end_row_offset_idx": 91, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.6612", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 91, + "end_row_offset_idx": 92, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "6", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 91, + "end_row_offset_idx": 92, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs28584824", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 91, + "end_row_offset_idx": 92, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 91, + "end_row_offset_idx": 92, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 91, + "end_row_offset_idx": 92, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.155264", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 91, + "end_row_offset_idx": 92, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0279234", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 91, + "end_row_offset_idx": 92, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "2.69E-08", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 91, + "end_row_offset_idx": 92, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "30.917541", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 91, + "end_row_offset_idx": 92, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.0324135", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 91, + "end_row_offset_idx": 92, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0191569", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 91, + "end_row_offset_idx": 92, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.09056", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 92, + "end_row_offset_idx": 93, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "7", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 92, + "end_row_offset_idx": 93, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs3756011", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 92, + "end_row_offset_idx": 93, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 92, + "end_row_offset_idx": 93, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 92, + "end_row_offset_idx": 93, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.234784", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 92, + "end_row_offset_idx": 93, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0149143", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 92, + "end_row_offset_idx": 93, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "7.77E-56", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 92, + "end_row_offset_idx": 93, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "247.81709", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 92, + "end_row_offset_idx": 93, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.000575", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 92, + "end_row_offset_idx": 93, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0067645", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 92, + "end_row_offset_idx": 93, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.9326", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 93, + "end_row_offset_idx": 94, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "8", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 93, + "end_row_offset_idx": 94, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs62350309", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 93, + "end_row_offset_idx": 94, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 93, + "end_row_offset_idx": 94, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 93, + "end_row_offset_idx": 94, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.202534", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 93, + "end_row_offset_idx": 94, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0260372", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 93, + "end_row_offset_idx": 94, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "7.33E-15", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 93, + "end_row_offset_idx": 94, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "60.507237", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 93, + "end_row_offset_idx": 94, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.0075114", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 93, + "end_row_offset_idx": 94, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0152982", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 93, + "end_row_offset_idx": 94, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.6233", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 94, + "end_row_offset_idx": 95, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "9", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 94, + "end_row_offset_idx": 95, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs635634", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 94, + "end_row_offset_idx": 95, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 94, + "end_row_offset_idx": 95, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 94, + "end_row_offset_idx": 95, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.239636", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 94, + "end_row_offset_idx": 95, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0177935", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 94, + "end_row_offset_idx": 95, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "2.43E-41", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 94, + "end_row_offset_idx": 95, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "181.37664", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 94, + "end_row_offset_idx": 95, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.0139975", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 94, + "end_row_offset_idx": 95, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0096935", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 94, + "end_row_offset_idx": 95, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.1488", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 95, + "end_row_offset_idx": 96, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "10", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 95, + "end_row_offset_idx": 96, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs77165492", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 95, + "end_row_offset_idx": 96, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 95, + "end_row_offset_idx": 96, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 95, + "end_row_offset_idx": 96, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.209269", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 95, + "end_row_offset_idx": 96, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0275462", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 95, + "end_row_offset_idx": 96, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "3.03E-14", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 95, + "end_row_offset_idx": 96, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "57.714695", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 95, + "end_row_offset_idx": 96, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.0013946", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 95, + "end_row_offset_idx": 96, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0114311", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 95, + "end_row_offset_idx": 96, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.9026", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 96, + "end_row_offset_idx": 97, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "11", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 96, + "end_row_offset_idx": 97, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs80137017", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 96, + "end_row_offset_idx": 97, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 96, + "end_row_offset_idx": 97, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 96, + "end_row_offset_idx": 97, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.230014", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 96, + "end_row_offset_idx": 97, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.02543", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 96, + "end_row_offset_idx": 97, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "1.50E-19", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 96, + "end_row_offset_idx": 97, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "81.811776", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 96, + "end_row_offset_idx": 97, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.0152022", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 96, + "end_row_offset_idx": 97, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0099426", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 96, + "end_row_offset_idx": 97, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.1262", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 97, + "end_row_offset_idx": 98, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 97, + "end_row_offset_idx": 98, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 97, + "end_row_offset_idx": 98, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 97, + "end_row_offset_idx": 98, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 4, + "start_row_offset_idx": 97, + "end_row_offset_idx": 98, + "start_col_offset_idx": 4, + "end_col_offset_idx": 8, + "text": "\nExposure: DVT\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 4, + "start_row_offset_idx": 97, + "end_row_offset_idx": 98, + "start_col_offset_idx": 4, + "end_col_offset_idx": 8, + "text": "\nExposure: DVT\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 4, + "start_row_offset_idx": 97, + "end_row_offset_idx": 98, + "start_col_offset_idx": 4, + "end_col_offset_idx": 8, + "text": "\nExposure: DVT\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 4, + "start_row_offset_idx": 97, + "end_row_offset_idx": 98, + "start_col_offset_idx": 4, + "end_col_offset_idx": 8, + "text": "\nExposure: DVT\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 3, + "start_row_offset_idx": 97, + "end_row_offset_idx": 98, + "start_col_offset_idx": 8, + "end_col_offset_idx": 11, + "text": "\nOutcome: OSA (Campos et al)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 3, + "start_row_offset_idx": 97, + "end_row_offset_idx": 98, + "start_col_offset_idx": 8, + "end_col_offset_idx": 11, + "text": "\nOutcome: OSA (Campos et al)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 3, + "start_row_offset_idx": 97, + "end_row_offset_idx": 98, + "start_col_offset_idx": 8, + "end_col_offset_idx": 11, + "text": "\nOutcome: OSA (Campos et al)\n", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 98, + "end_row_offset_idx": 99, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 98, + "end_row_offset_idx": 99, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "\nSNP\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 98, + "end_row_offset_idx": 99, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "\nEA\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 98, + "end_row_offset_idx": 99, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "\nOA\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 98, + "end_row_offset_idx": 99, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\nBeta\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 98, + "end_row_offset_idx": 99, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "\nSE\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 98, + "end_row_offset_idx": 99, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "\np\n-Value\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 98, + "end_row_offset_idx": 99, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "\nF-statistic\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 98, + "end_row_offset_idx": 99, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\nBeta\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 98, + "end_row_offset_idx": 99, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "\nSE\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 98, + "end_row_offset_idx": 99, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "\np\n-Value\n", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 99, + "end_row_offset_idx": 100, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "1", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 99, + "end_row_offset_idx": 100, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs116997538", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 99, + "end_row_offset_idx": 100, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 99, + "end_row_offset_idx": 100, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 99, + "end_row_offset_idx": 100, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.466245", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 99, + "end_row_offset_idx": 100, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0534583", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 99, + "end_row_offset_idx": 100, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "2.74E-18", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 99, + "end_row_offset_idx": 100, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "76.067315", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 99, + "end_row_offset_idx": 100, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0202903", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 99, + "end_row_offset_idx": 100, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0346251", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 99, + "end_row_offset_idx": 100, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.558", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 100, + "end_row_offset_idx": 101, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "2", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 100, + "end_row_offset_idx": 101, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs13377102", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 100, + "end_row_offset_idx": 101, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 100, + "end_row_offset_idx": 101, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 100, + "end_row_offset_idx": 101, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.233255", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 100, + "end_row_offset_idx": 101, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0255094", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 100, + "end_row_offset_idx": 101, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "6.02E-20", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 100, + "end_row_offset_idx": 101, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "83.610619", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 100, + "end_row_offset_idx": 101, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.0085579", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 100, + "end_row_offset_idx": 101, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0096591", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 100, + "end_row_offset_idx": 101, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.3759", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 101, + "end_row_offset_idx": 102, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "3", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 101, + "end_row_offset_idx": 102, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs2066865", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 101, + "end_row_offset_idx": 102, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 101, + "end_row_offset_idx": 102, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 101, + "end_row_offset_idx": 102, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.184507", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 101, + "end_row_offset_idx": 102, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0161145", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 101, + "end_row_offset_idx": 102, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "2.36E-30", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 101, + "end_row_offset_idx": 102, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "131.09678", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 101, + "end_row_offset_idx": 102, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0033999", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 101, + "end_row_offset_idx": 102, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0077623", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 101, + "end_row_offset_idx": 102, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.6612", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 102, + "end_row_offset_idx": 103, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 102, + "end_row_offset_idx": 103, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs576123", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 102, + "end_row_offset_idx": 103, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 102, + "end_row_offset_idx": 103, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 102, + "end_row_offset_idx": 103, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.297682", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 102, + "end_row_offset_idx": 103, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.014983", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 102, + "end_row_offset_idx": 103, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "7.70E-88", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 102, + "end_row_offset_idx": 103, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "394.73678", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 102, + "end_row_offset_idx": 103, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.0183551", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 102, + "end_row_offset_idx": 103, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0086786", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 102, + "end_row_offset_idx": 103, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.03441", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 103, + "end_row_offset_idx": 104, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "5", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 103, + "end_row_offset_idx": 104, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs5896", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 103, + "end_row_offset_idx": 104, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 103, + "end_row_offset_idx": 104, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 103, + "end_row_offset_idx": 104, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.141024", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 103, + "end_row_offset_idx": 104, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.017945", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 103, + "end_row_offset_idx": 104, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "3.88E-15", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 103, + "end_row_offset_idx": 104, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "61.75884", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 103, + "end_row_offset_idx": 104, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.020985", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 103, + "end_row_offset_idx": 104, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0096527", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 103, + "end_row_offset_idx": 104, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.02974", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 104, + "end_row_offset_idx": 105, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "6", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 104, + "end_row_offset_idx": 105, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs6025", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 104, + "end_row_offset_idx": 105, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 104, + "end_row_offset_idx": 105, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 104, + "end_row_offset_idx": 105, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "1.10439", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 104, + "end_row_offset_idx": 105, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0393903", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 104, + "end_row_offset_idx": 105, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "5.71E-173", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 104, + "end_row_offset_idx": 105, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "786.07929", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 104, + "end_row_offset_idx": 105, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.0380118", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 104, + "end_row_offset_idx": 105, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0218836", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 104, + "end_row_offset_idx": 105, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.08241", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 105, + "end_row_offset_idx": 106, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "7", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 105, + "end_row_offset_idx": 106, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs6060237", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 105, + "end_row_offset_idx": 106, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 105, + "end_row_offset_idx": 106, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 105, + "end_row_offset_idx": 106, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.168453", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 105, + "end_row_offset_idx": 106, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0198214", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 105, + "end_row_offset_idx": 106, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "1.92E-17", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 105, + "end_row_offset_idx": 106, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "72.225216", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 105, + "end_row_offset_idx": 106, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.0060526", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 105, + "end_row_offset_idx": 106, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0101724", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 105, + "end_row_offset_idx": 106, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.5518", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 106, + "end_row_offset_idx": 107, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "8", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 106, + "end_row_offset_idx": 107, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs60681578", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 106, + "end_row_offset_idx": 107, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 106, + "end_row_offset_idx": 107, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 106, + "end_row_offset_idx": 107, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.137615", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 106, + "end_row_offset_idx": 107, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.021627", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 106, + "end_row_offset_idx": 107, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "1.98E-10", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 106, + "end_row_offset_idx": 107, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "40.489181", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 106, + "end_row_offset_idx": 107, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.0085067", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 106, + "end_row_offset_idx": 107, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0117172", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 106, + "end_row_offset_idx": 107, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.4678", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 107, + "end_row_offset_idx": 108, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "9", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 107, + "end_row_offset_idx": 108, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs62350309", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 107, + "end_row_offset_idx": 108, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 107, + "end_row_offset_idx": 108, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 107, + "end_row_offset_idx": 108, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.162704", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 107, + "end_row_offset_idx": 108, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0259998", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 107, + "end_row_offset_idx": 108, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "3.90E-10", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 107, + "end_row_offset_idx": 108, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "39.161241", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 107, + "end_row_offset_idx": 108, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.0075114", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 107, + "end_row_offset_idx": 108, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0152982", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 107, + "end_row_offset_idx": 108, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.6233", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 108, + "end_row_offset_idx": 109, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "10", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 108, + "end_row_offset_idx": 109, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs666870", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 108, + "end_row_offset_idx": 109, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 108, + "end_row_offset_idx": 109, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 108, + "end_row_offset_idx": 109, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.0924832", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 108, + "end_row_offset_idx": 109, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0159069", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 108, + "end_row_offset_idx": 109, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "6.10E-09", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 108, + "end_row_offset_idx": 109, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "33.802949", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 108, + "end_row_offset_idx": 109, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.0074616", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 108, + "end_row_offset_idx": 109, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0067221", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 108, + "end_row_offset_idx": 109, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.2669", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 109, + "end_row_offset_idx": 110, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "11", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 109, + "end_row_offset_idx": 110, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs7308002", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 109, + "end_row_offset_idx": 110, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 109, + "end_row_offset_idx": 110, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 109, + "end_row_offset_idx": 110, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.0978174", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 109, + "end_row_offset_idx": 110, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.01576", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 109, + "end_row_offset_idx": 110, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "5.41E-10", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 109, + "end_row_offset_idx": 110, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "38.522974", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 109, + "end_row_offset_idx": 110, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0023644", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 109, + "end_row_offset_idx": 110, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0068533", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 109, + "end_row_offset_idx": 110, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.7298", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 110, + "end_row_offset_idx": 111, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "12", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 110, + "end_row_offset_idx": 111, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs7772305", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 110, + "end_row_offset_idx": 111, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "G", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 110, + "end_row_offset_idx": 111, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "A", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 110, + "end_row_offset_idx": 111, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "\u22120.100251", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 110, + "end_row_offset_idx": 111, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.016057", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 110, + "end_row_offset_idx": 111, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "4.28E-10", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 110, + "end_row_offset_idx": 111, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "38.980608", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 110, + "end_row_offset_idx": 111, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.016709", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 110, + "end_row_offset_idx": 111, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0086396", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 110, + "end_row_offset_idx": 111, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.05311", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 111, + "end_row_offset_idx": 112, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "13", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 111, + "end_row_offset_idx": 112, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "rs9865118", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 111, + "end_row_offset_idx": 112, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "T", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 111, + "end_row_offset_idx": 112, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "C", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 111, + "end_row_offset_idx": 112, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.0863804", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 111, + "end_row_offset_idx": 112, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "0.0151814", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 111, + "end_row_offset_idx": 112, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "1.27E-08", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 111, + "end_row_offset_idx": 112, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "32.374776", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 111, + "end_row_offset_idx": 112, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "\u22120.0005648", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 111, + "end_row_offset_idx": 112, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "0.0066442", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 111, + "end_row_offset_idx": 112, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0.9323", + "column_header": false, + "row_header": false, + "row_section": false + } + ] + ] + } + } + ], + "key_value_items": [], + "pages": {} +} \ No newline at end of file diff --git a/tests/data/groundtruth/docling_v2/10-1055-a-2308-2290.nxml.md b/tests/data/groundtruth/docling_v2/10-1055-a-2308-2290.nxml.md new file mode 100644 index 00000000..622402a3 --- /dev/null +++ b/tests/data/groundtruth/docling_v2/10-1055-a-2308-2290.nxml.md @@ -0,0 +1,286 @@ +# The Association between Obstructive Sleep Apnea and Venous Thromboembolism: A Bidirectional Two-Sample Mendelian Randomization Study + +Zhihai Huang; Emergency Medicine Center, Affiliated Hospital of Guangdong Medical University, Zhanjiang, Guangdong, China; Zhenzhen Zheng; Respiratory and Critical Care Medicine, The Second Affiliated Hospital of Guangdong Medical University, Zhanjiang, Guangdong, China; Lingpin Pang; Emergency Medicine Center, Affiliated Hospital of Guangdong Medical University, Zhanjiang, Guangdong, China; Kaili Fu; Respiratory and Critical Care Medicine, The Second Affiliated Hospital of Guangdong Medical University, Zhanjiang, Guangdong, China; Junfen Cheng; Respiratory and Critical Care Medicine, The Second Affiliated Hospital of Guangdong Medical University, Zhanjiang, Guangdong, China; Ming Zhong; Emergency Medicine Center, Affiliated Hospital of Guangdong Medical University, Zhanjiang, Guangdong, China; Lingyue Song; Emergency Medicine Center, Affiliated Hospital of Guangdong Medical University, Zhanjiang, Guangdong, China; Dingyu Guo; Emergency Medicine Center, Affiliated Hospital of Guangdong Medical University, Zhanjiang, Guangdong, China; Qiaoyun Chen; Emergency Medicine Center, Affiliated Hospital of Guangdong Medical University, Zhanjiang, Guangdong, China; Yanxi Li; Emergency Medicine Center, Affiliated Hospital of Guangdong Medical University, Zhanjiang, Guangdong, China; Yongting Lv; Emergency Medicine Center, Affiliated Hospital of Guangdong Medical University, Zhanjiang, Guangdong, China; Riken Chen; Respiratory and Critical Care Medicine, The Second Affiliated Hospital of Guangdong Medical University, Zhanjiang, Guangdong, China; Xishi Sun; Emergency Medicine Center, Affiliated Hospital of Guangdong Medical University, Zhanjiang, Guangdong, China + +Background Despite previous observational studies linking obstructive sleep apnea (OSA) to venous thromboembolism (VTE), these findings remain controversial. This study aimed to explore the association between OSA and VTE, including pulmonary embolism (PE) and deep vein thrombosis (DVT), at a genetic level using a bidirectional two-sample Mendelian randomization (MR) analysis. Methods Utilizing summary-level data from large-scale genome-wide association studies in European individuals, we designed a bidirectional two-sample MR analysis to comprehensively assess the genetic association between OSA and VTE. The inverse variance weighted was used as the primary method for MR analysis. In addition, MR–Egger, weighted median, and MR pleiotropy residual sum and outlier (MR-PRESSO) were used for complementary analyses. Furthermore, a series of sensitivity analyses were performed to ensure the validity and robustness of the results. Results The initial and validation MR analyses indicated that genetically predicted OSA had no effects on the risk of VTE (including PE and DVT). Likewise, the reverse MR analysis did not find substantial support for a significant association between VTE (including PE and DVT) and OSA. Supplementary MR methods and sensitivity analyses provided additional confirmation of the reliability of the MR results. Conclusion Our bidirectional two-sample MR analysis did not find genetic evidence supporting a significant association between OSA and VTE in either direction. + +## Introduction + +Obstructive sleep apnea (OSA) is a prevalent sleep disorder characterized by the recurrent partial or complete obstruction and collapse of the upper airway during sleep, leading to episodes of apneas and hypoventilation. 1 2 Research studies have reported that the prevalence of OSA in the adult population ranges from 9 to 38%, with a higher prevalence observed in males (13–33%) compared to females (6–19%). Moreover, the prevalence of OSA tends to increase with age and is closely associated with the prevalence of obesity. 3 4 + +There is mounting evidence indicating that OSA serves as an independent risk factor for several cardiovascular diseases, including hypertension, 5 stroke, 6 pulmonary hypertension, 7 and heart failure. 8 Venous thromboembolism (VTE), including deep vein thrombosis (DVT) and pulmonary embolism (PE), is recognized as the third most common cardiovascular disease worldwide. 9 There is evidence suggesting that OSA may also be linked to an increased risk of VTE. 10 For instance, a prospective study involving 15,664 subjects (1,424 subjects with OSA) observed a twofold higher incidence of VTE in patients with OSA compared to non-OSA patients. 11 Similarly, findings from a national retrospective cohort study conducted by Peng and his colleagues indicated that patients with OSA had a 3.50-fold higher risk of DVT and a 3.97-fold higher risk of PE compared to the general population. 12 However, the results of observational studies remain somewhat controversial. A 5-year prospective study involving 2,109 subjects concluded that OSA did not increase the risk of VTE recurrence. 13 Another retrospective analysis involving 1,584 patients, of which 848 were women, revealed an intriguing discovery suggesting that OSA may serve as an independent risk factor for VTE solely in women, rather than in men. 14 Moreover, patients with VTE were found to have a higher prevalence of OSA, 15 suggesting a potential bidirectional relationship. + +Although previous observational studies have investigated the potential association between OSA and VTE, elucidating aspects of the association from these studies is challenging due to the limitations of potential confounders and reverse causality bias. Mendelian randomization (MR) is a genetic epidemiological methodology that utilizes genetic variants, such as single-nucleotide polymorphisms (SNPs), as instrumental variables (IVs) to infer the genetic association between exposure and outcome. 16 The advantage of MR analysis lies in the random assignment of genetic variants during meiosis, which effectively circumvents the effects of potential confounders and reverse causality encountered in classical epidemiologic studies. 17 + +## Data Source and Selection of Instrumental Variables + +Summary-level data for OSA were obtained from the GWAS study conducted by Jiang et al on European individuals, which included 2,827 cases and 453,521 controls, covering 11,831,932 SNPs. 18 To ensure the robustness of the findings, additional datasets for OSA were acquired from a GWAS meta-analysis conducted by Campos and colleagues, comprising 25,008 cases of European ancestry and 337,630 controls, involving 9,031,949 SNPs for validation analysis. 19 The study conducted a meta-analysis of GWAS datasets from five cohorts in the United Kingdom, Canada, Australia, the United States, and Finland. These summary-level GWAS statistics for OSA can be accessed from the GWAS Catalog ( https://www.ebi.ac.uk/gwas/downloads ). VTE was defined as a condition comprising PE (blockage of the pulmonary artery or its branches by an embolus) and DVT (formation of a blood clot in a deep vein). The GWAS datasets for VTE (19,372 cases and 357,905 controls), PE (9,243 cases and 367,108 controls), and DVT (9,109 cases and 324,121 controls) were derived from the FinnGen consortium (Release 9, https://r9.finngen.fi/ ). Detailed information regarding the data sources is provided in Table 1 . + +The selection criteria for IVs were as follows: (1) the threshold for genome-wide significant SNPs for VTE (including PE and DVT) was set at p  < 5.0 × 10 −8 , while the threshold for OSA was adjusted to p  < 1 × 10 −5 due to the inability to detect OSA-associated SNPs using a significance level of p  < 5.0 × 10 −8 . (2) SNPs with linkage disequilibrium effects ( r 2  < 0.001 within a 10,000-kb window) were excluded to ensure the independence of the selected IVs. (3) The strength of the association between IVs and exposure was measured using the F-statistic [F-statistic = (Beta/SE) 2 ]. 20 SNPs with F-statistics >10 were retained to avoid the effects of weak instrumental bias. (4) During the harmonization process, SNPs that did not match the results were removed, along with palindromic SNPs with ambiguous allele frequencies (0.42–0.58). 21 (5) Previous studies have demonstrated obesity as an established risk factor for OSA and VTE. 22 23 SNPs associated with body mass index were queried and excluded by Phenoscanner (http://www.phenoscanner.medschl.cam.ac.uk/). The flowchart of IV selection is shown in Fig. 1 . + +## Statistical Analysis + +This study employed the multiplicative random-effects inverse variance weighted (IVW) method as the primary approach for conducting MR analysis to evaluate the genetic association between OSA and VTE. The IVW method meta-analyzes the Wald ratio estimates for each SNP on the outcome, providing precise estimates of causal effects when all selected SNPs are valid IVs. 24 However, the estimates of causal effects from the IVW method may be biased by the influence of pleiotropic IVs. To ensure the validity and robustness of the results, sensitivity analyses were implemented using three additional MR methods, namely MR–Egger, weighted median, and MR pleiotropy residual sum and outlier (MR-PRESSO). The MR–Egger method is able to generate reliable causal estimates even in situations where all IVs are invalid. Additionally, MR–Egger offers an intercept test to detect horizontal pleiotropy, with a significance threshold of p <0.05 indicating the presence of horizontal pleiotropy. 25 In comparison to the IVW and MR–Egger methods, the weighted median method demonstrates greater robustness and provides consistent estimates of causal effects, even when up to 50% of the IVs are invalid instruments. 26 The MR-PRESSO method identifies outliers with potential horizontal pleiotropy and provides estimates after removing the outliers, where p <0.05 for the global test indicates the presence of outliers with horizontal pleiotropy. 27 Furthermore, the Cochran Q test was utilized to examine heterogeneity, with a significance threshold of p <0.05 indicating significant heterogeneity. + +## Instrumental Variable Selection + +As previously outlined, a total of 13 and 28 SNPs were identified through a rigorous screening process to evaluate the effects of OSA on VTE, PE, and DVT. In the reverse MR analysis, 23, 14, 18, 19, 11, and 13 SNPs were identified to assess the implications of reverse association, respectively. Additional details regarding these genetic variants utilized for MR analysis are provided in Tables 2 and 3 . + +## Effects of OSA on VTE + +Fig. 2 shows the estimates of the effects for OSA on VTE, PE, and DVT. In the initial MR analysis using the OSA (Jiang et al) dataset, the random-effects IVW method revealed no significant association between OSA and the risk of VTE (odds ratio [OR]: 0.964, 95% confidence interval [CI]: 0.914-1.016, p  = 0.172), PE (OR: 0.929, 95% CI: 0.857–1.006, p  = 0.069), PE (OR: 0.929, 95% CI: 0.857–1.006, p  = 0.069), and DVT (OR: 1.001, 95% CI: 0.936–1.071, p  = 0.973). No heterogeneity was observed using the Cochran Q test (all p * > 0.05). The MR–Egger intercept test (all p ** > 0.05) and the MR-PRESSO global test (all p *** > 0.05) failed to detect any evidence of pleiotropy. + +The validation analysis using genetic variants of OSA (Campos et al) yielded similar results. Notably, heterogeneity was observed in the sensitivity analysis for OSA (Campos et al) and VTE ( p * = 0.018). However, considering the random-effects IVW model employed, the level of heterogeneity was deemed acceptable. 28 Despite the presence of outliers suggested by the MR-PRESSO global test ( p  = 0.015), no significant association between OSA and VTE (OR: 1.071, 95% CI: 0.917–1.251, p  = 0.396) was found after excluding an outlier (rs7106583). In addition, none of the three complementary MR methods supported a genetic association between OSA and VTE. + +## Effects of VTE on OSA + +We conducted reverse MR analysis to further evaluate the effects of VTE (including PE and DVT) on OSA. Both MR analyses yielded consistent results, indicating no significant effects of VTE, PE, and DVT on OSA (see Fig. 3 ). Moreover, the Cochran Q test revealed no heterogeneity (all p * > 0.05), and both the MR–Egger intercept test and the MR-PRESSO global test found no evidence of pleiotropy (all p ** > 0.05 and p *** > 0.05, respectively) (see Fig. 3 ). In summary, a range of sensitivities confirmed the reliability of the MR results. + +## Discussion + +Our findings contradict some previous observational studies suggesting a link between susceptibility to OSA and an increased risk of VTE. 29 30 31 32 + +However, these studies were hindered by inadequate consideration of confounding factors, particularly obesity, along with methodological flaws and small sample sizes. Obesity is widely recognized as a significant risk factor for both OSA 33 and VTE. 34 Therefore, it is crucial not to overlook the impact of obesity in striving for a deeper understanding of the potential association between OSA and VTE. Notably, a cohort study involving 31,309 subjects indicated a higher likelihood of VTE development among patients with more severe OSA. Yet, this association disappeared upon adjusting for confounders, notably obesity levels. 35 Thus, it is plausible that the observed association between OSA and VTE could be attributed to obesity confounding. Additionally, Aman and his colleagues' report yielded consistent results, suggesting that OSA does not elevate the risk of VTE after adjusting for obesity confounding. 36 + +While our MR study did not find evidence supporting a genetic association between OSA and VTE, it remains possible that OSA could influence the onset or progression of VTE. Virchow's triad depicts three major factors inducing VTE: endothelial injury, venous stasis, and hypercoagulability. 37 The pathophysiologic mechanism linking OSA and VTE remains unknown but may be associated with OSA's capacity to affect the three classical mechanistic pathways of Virchow's triad. 38 Intermittent hypoxia, a signature feature of OSA, can induce oxidative stress and activate inflammatory markers, further damaging the vascular endothelium. 39 40 OSA-associated hemodynamic alterations and reduced physical activities may result in venous stasis. 41 A growing number of studies have demonstrated a strong correlation between OSA and hypercoagulability. A retrospective cohort study aimed at assessing coagulation in patients with OSA suggested that patients with moderate to severe OSA experienced elevated markers of blood coagulability, primarily evidenced by shortened prothrombin time, compared to healthy individuals. 42 Two additional studies of thrombotic parameters found that patients with OSA possessed higher levels of the thrombin–antithrombin complex. 43 44 Furthermore, several coagulation factors, such as fibrinogen, coagulation factor VII, coagulation factor XII, and vascular hemophilic factor, which play a crucial role in the coagulation process, are elevated in patients with OSA. 45 Collectively, this evidence supports that patients with OSA are in a state of hypercoagulability, facilitating our understanding of the underlying pathophysiologic mechanisms between OSA and VTE. Considering these potential mechanisms, future large-scale studies are necessary to thoroughly explore the potential association between OSA and VTE, delving into greater depth. + +## Tables + +Table 1 Information on data sources + +| Trait | Sample size | Case | Control | No. of SNPs | Participates | PMID/Link | +|--------------------|---------------|--------|-----------|---------------|-------------------|--------------------------------------------------| +| OSA (Jiang et al) | 456,348 | 2,827 | 453,521 | 11,831,932 | European ancestry | 34737426 | +| OSA (Campos et al) | 362,638 | 25,008 | 337,630 | 9,031,949 | European ancestry | 36525587 | +| VTE | 377,277 | 19,372 | 357,905 | 20,170,236 | European ancestry | FinnGen consortium ( https://www.finngen.fi/fi ) | +| PE | 376,351 | 9,243 | 367,108 | 20,170,202 | European ancestry | FinnGen consortium ( https://www.finngen.fi/fi ) | +| DVT | 333,230 | 9,109 | 324,121 | 20,169,198 | European ancestry | FinnGen consortium ( https://www.finngen.fi/fi ) | + +Table 2 Genetic variants used in the MR analysis + +| Genetic instruments for OSA (Jiang et al) and their associations with VTE, PE, and DVT | Genetic instruments for OSA (Jiang et al) and their associations with VTE, PE, and DVT | Genetic instruments for OSA (Jiang et al) and their associations with VTE, PE, and DVT | Genetic instruments for OSA (Jiang et al) and their associations with VTE, PE, and DVT | Genetic instruments for OSA (Jiang et al) and their associations with VTE, PE, and DVT | Genetic instruments for OSA (Jiang et al) and their associations with VTE, PE, and DVT | Genetic instruments for OSA (Jiang et al) and their associations with VTE, PE, and DVT | Genetic instruments for OSA (Jiang et al) and their associations with VTE, PE, and DVT | Genetic instruments for OSA (Jiang et al) and their associations with VTE, PE, and DVT | Genetic instruments for OSA (Jiang et al) and their associations with VTE, PE, and DVT | Genetic instruments for OSA (Jiang et al) and their associations with VTE, PE, and DVT | Genetic instruments for OSA (Jiang et al) and their associations with VTE, PE, and DVT | Genetic instruments for OSA (Jiang et al) and their associations with VTE, PE, and DVT | Genetic instruments for OSA (Jiang et al) and their associations with VTE, PE, and DVT | Genetic instruments for OSA (Jiang et al) and their associations with VTE, PE, and DVT | Genetic instruments for OSA (Jiang et al) and their associations with VTE, PE, and DVT | Genetic instruments for OSA (Jiang et al) and their associations with VTE, PE, and DVT | +|--------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------| +| | | | | Exposure: OSA (Jiang et al) | Exposure: OSA (Jiang et al) | Exposure: OSA (Jiang et al) | Exposure: OSA (Jiang et al) | Outcome: VTE | Outcome: VTE | Outcome: VTE | Outcome: PE | Outcome: PE | Outcome: PE | Outcome: DVT | Outcome: DVT | Outcome: DVT | +| | SNP | EA | OA | Beta | SE | p -Value | F-statistic | Beta | SE | p -Value | Beta | SE | p -Value | Beta | SE | p -Value | +| 1 | rs114417992 | C | G | 0.48798 | 0.10793 | 6.15E-06 | 20.4409 | 0.00702 | 0.04378 | 0.87253 | −0.0542 | 0.06211 | 0.3832 | −0.0052 | 0.06334 | 0.93511 | +| 2 | rs115071002 | T | C | −0.3775 | 0.0807 | 2.90E-06 | 21.8836 | −0.0521 | 0.05045 | 0.30146 | 0.0359 | 0.07185 | 0.61729 | −0.0633 | 0.07247 | 0.38241 | +| 3 | rs117025138 | C | G | 0.42795 | 0.09571 | 7.78E-06 | 19.9915 | −0.0149 | 0.05477 | 0.78611 | 0.0087 | 0.07809 | 0.91129 | −0.0338 | 0.07836 | 0.66637 | +| 4 | rs117474005 | T | C | 0.64176 | 0.14138 | 5.64E-06 | 20.6051 | −0.0095 | 0.04108 | 0.81724 | −0.0009 | 0.05862 | 0.98772 | −0.0301 | 0.05891 | 0.60971 | +| 5 | rs139183760 | C | G | 0.82973 | 0.16928 | 9.50E-07 | 24.0262 | 0.06514 | 0.07681 | 0.39643 | 0.04441 | 0.10929 | 0.68448 | 0.04761 | 0.11024 | 0.66585 | +| 6 | rs148047757 | A | G | 0.47481 | 0.10699 | 9.08E-06 | 19.6952 | −0.0522 | 0.0352 | 0.13769 | −0.044 | 0.04999 | 0.37895 | −0.0294 | 0.05078 | 0.562 | +| 7 | rs150798389 | C | A | 0.7875 | 0.17391 | 5.95E-06 | 20.505 | −0.2884 | 0.1435 | 0.04447 | −0.2436 | 0.20053 | 0.22438 | −0.1329 | 0.20679 | 0.52056 | +| 8 | rs16850412 | A | G | 0.19514 | 0.04353 | 7.36E-06 | 20.0977 | 0.02674 | 0.01584 | 0.09145 | 0.04785 | 0.02253 | 0.03368 | 0.0173 | 0.02277 | 0.44739 | +| 9 | rs1911999 | C | T | −0.1312 | 0.02965 | 9.59E-06 | 19.5917 | 0.01759 | 0.01111 | 0.11349 | 0.0376 | 0.01577 | 0.01714 | 0.00223 | 0.01596 | 0.88889 | +| 10 | rs2302012 | A | G | 0.12829 | 0.02871 | 7.88E-06 | 19.9669 | −0.0104 | 0.01076 | 0.33549 | −0.0272 | 0.0153 | 0.07541 | 0.00767 | 0.01545 | 0.61949 | +| 11 | rs35963104 | T | C | 0.16572 | 0.03452 | 1.59E-06 | 23.0393 | −0.0076 | 0.01354 | 0.57685 | −0.02 | 0.01924 | 0.29896 | −0.007 | 0.01942 | 0.71778 | +| 12 | rs60445800 | T | C | 0.29191 | 0.06499 | 7.06E-06 | 20.1758 | −0.0268 | 0.02361 | 0.25672 | −0.0649 | 0.03349 | 0.05277 | 0.0112 | 0.03388 | 0.74095 | +| 13 | rs9587442 | T | C | 0.44308 | 0.09584 | 3.78E-06 | 21.3735 | −0.0385 | 0.03346 | 0.24969 | −0.0101 | 0.04781 | 0.83322 | 0.00182 | 0.04783 | 0.96962 | +| Genetic instruments for OSA (Campos et al) and their associations with VTE, PE, and DVT | Genetic instruments for OSA (Campos et al) and their associations with VTE, PE, and DVT | Genetic instruments for OSA (Campos et al) and their associations with VTE, PE, and DVT | Genetic instruments for OSA (Campos et al) and their associations with VTE, PE, and DVT | Genetic instruments for OSA (Campos et al) and their associations with VTE, PE, and DVT | Genetic instruments for OSA (Campos et al) and their associations with VTE, PE, and DVT | Genetic instruments for OSA (Campos et al) and their associations with VTE, PE, and DVT | Genetic instruments for OSA (Campos et al) and their associations with VTE, PE, and DVT | Genetic instruments for OSA (Campos et al) and their associations with VTE, PE, and DVT | Genetic instruments for OSA (Campos et al) and their associations with VTE, PE, and DVT | Genetic instruments for OSA (Campos et al) and their associations with VTE, PE, and DVT | Genetic instruments for OSA (Campos et al) and their associations with VTE, PE, and DVT | Genetic instruments for OSA (Campos et al) and their associations with VTE, PE, and DVT | Genetic instruments for OSA (Campos et al) and their associations with VTE, PE, and DVT | Genetic instruments for OSA (Campos et al) and their associations with VTE, PE, and DVT | Genetic instruments for OSA (Campos et al) and their associations with VTE, PE, and DVT | Genetic instruments for OSA (Campos et al) and their associations with VTE, PE, and DVT | +| | | | | Exposure: OSA (Campos et al) | Exposure: OSA (Campos et al) | Exposure: OSA (Campos et al) | Exposure: OSA (Campos et al) | Outcome: VTE | Outcome: VTE | Outcome: VTE | Outcome: PE | Outcome: PE | Outcome: PE | Outcome: DVT | Outcome: DVT | Outcome: DVT | +| | SNP | EA | OA | Beta | SE | p -Value | F-statistic | Beta | SE | p -Value | Beta | SE | p -Value | Beta | SE | p -Value | +| 1 | rs10777826 | T | C | −0.0319 | 0.00664 | 1.58E-06 | 23.0496 | 0.00684 | 0.01097 | 0.53296 | 0.01049 | 0.01557 | 0.50053 | 0.01763 | 0.01576 | 0.26318 | +| 2 | rs10878269 | T | C | 0.03308 | 0.0069 | 1.61E-06 | 23.0112 | −0.0208 | 0.01191 | 0.08097 | −0.0262 | 0.01693 | 0.12108 | −0.015 | 0.01711 | 0.37964 | +| 3 | rs111909157 | T | C | −0.1355 | 0.02658 | 3.40E-07 | 26.01 | 0.02664 | 0.04222 | 0.52808 | 0.03995 | 0.05999 | 0.5054 | 0.0364 | 0.06089 | 0.55 | +| 4 | rs116114601 | A | G | −0.0873 | 0.01969 | 9.20E-06 | 19.6692 | −0.0401 | 0.04098 | 0.32779 | −0.0676 | 0.05814 | 0.24516 | −0.0182 | 0.05873 | 0.75679 | +| 5 | rs11989172 | C | G | −0.0378 | 0.00839 | 6.73E-06 | 20.268 | −0.0217 | 0.01283 | 0.09 | −0.039 | 0.01823 | 0.03222 | 0.01058 | 0.01842 | 0.56561 | +| 6 | rs12265404 | A | G | 0.04931 | 0.01041 | 2.17E-06 | 22.4392 | 0.05233 | 0.0166 | 0.00162 | 0.05687 | 0.0233 | 0.01467 | 0.04278 | 0.02358 | 0.06956 | +| 7 | rs12306339 | A | C | −0.0488 | 0.01083 | 6.64E-06 | 20.295 | −0.0051 | 0.01804 | 0.77914 | −0.023 | 0.02561 | 0.37006 | 0.01462 | 0.02593 | 0.57292 | +| 8 | rs13098300 | T | C | 0.03715 | 0.00712 | 1.84E-07 | 27.1962 | 0.00251 | 0.01202 | 0.83434 | 0.0101 | 0.01708 | 0.55432 | 5.55E-05 | 0.01727 | 0.99744 | +| 9 | rs140548601 | C | G | −0.1158 | 0.02428 | 1.85E-06 | 22.7529 | 0.05503 | 0.04711 | 0.24277 | 0.09206 | 0.06692 | 0.16895 | 0.04613 | 0.06762 | 0.49515 | +| 10 | rs143417867 | A | G | −0.3666 | 0.07088 | 2.30E-07 | 26.7599 | −0.1487 | 0.2216 | 0.5021 | 0.15664 | 0.31582 | 0.61991 | −0.0868 | 0.31594 | 0.78353 | +| 11 | rs1942263 | A | G | 0.04569 | 0.01016 | 6.93E-06 | 20.214 | −0.0156 | 0.01713 | 0.36361 | −0.0136 | 0.02436 | 0.57584 | −0.0318 | 0.02468 | 0.19751 | +| 12 | rs2876633 | A | T | −0.0355 | 0.00695 | 3.43E-07 | 25.9896 | −0.0104 | 0.01158 | 0.36765 | −0.0104 | 0.01645 | 0.52845 | 0.0032 | 0.01664 | 0.84772 | +| 13 | rs35847366 | A | G | 0.0545 | 0.01172 | 3.31E-06 | 21.6318 | −0.0365 | 0.01831 | 0.04596 | −0.0383 | 0.02603 | 0.14125 | −0.0511 | 0.02629 | 0.0517 | +| 14 | rs36051007 | T | C | 0.03481 | 0.00716 | 1.14E-06 | 23.6682 | −0.0037 | 0.01095 | 0.73452 | −0.0145 | 0.01557 | 0.35199 | 0.00723 | 0.01573 | 0.64597 | +| 15 | rs3774800 | A | G | −0.0309 | 0.0069 | 7.79E-06 | 19.9898 | 0.00395 | 0.01151 | 0.73124 | −0.0107 | 0.01634 | 0.51218 | 0.0093 | 0.01654 | 0.57396 | +| 16 | rs4542364 | A | G | 0.03028 | 0.00673 | 6.69E-06 | 20.277 | −0.0053 | 0.01084 | 0.6236 | −0.0199 | 0.01541 | 0.19737 | 0.00163 | 0.01559 | 0.91663 | +| 17 | rs4675933 | T | C | −0.0329 | 0.00709 | 3.44E-06 | 21.5482 | 0.00822 | 0.01093 | 0.45187 | 0.00396 | 0.01554 | 0.79863 | 0.01593 | 0.01568 | 0.30957 | +| 18 | rs533143 | T | C | 0.03237 | 0.00732 | 9.73E-06 | 19.5629 | 0.02892 | 0.01429 | 0.04304 | 0.02757 | 0.02031 | 0.1747 | 0.0111 | 0.02054 | 0.58881 | +| 19 | rs60653979 | A | G | 0.03384 | 0.0068 | 6.43E-07 | 24.7805 | 0.01098 | 0.01083 | 0.31063 | −0.0154 | 0.01539 | 0.31844 | 0.02887 | 0.01557 | 0.06364 | +| 20 | rs62559379 | C | G | 0.0706 | 0.01455 | 1.22E-06 | 23.5419 | −0.0163 | 0.02726 | 0.54934 | −0.028 | 0.03871 | 0.46867 | −0.0113 | 0.03915 | 0.77255 | +| 21 | rs7106583 | T | C | 0.03868 | 0.00839 | 4.09E-06 | 21.2244 | −0.0434 | 0.014 | 0.00194 | −0.0205 | 0.02006 | 0.30655 | −0.0414 | 0.0203 | 0.04114 | +| 22 | rs72904209 | T | C | −0.0446 | 0.00983 | 5.67E-06 | 20.5934 | −0.0153 | 0.01617 | 0.34449 | −0.0355 | 0.02292 | 0.1215 | −0.0066 | 0.02327 | 0.77599 | +| 23 | rs73141516 | T | C | 0.06496 | 0.01415 | 4.40E-06 | 21.0865 | 0.0084 | 0.02184 | 0.70062 | −0.0241 | 0.03105 | 0.43797 | 0.03405 | 0.03133 | 0.27717 | +| 24 | rs73164714 | T | C | −0.0695 | 0.01285 | 6.43E-08 | 29.2248 | −0.028 | 0.03721 | 0.45256 | 0.00562 | 0.05276 | 0.91513 | −0.0139 | 0.05319 | 0.79352 | +| 25 | rs7800775 | A | G | 0.03487 | 0.00785 | 8.98E-06 | 19.7136 | 0.00351 | 0.01357 | 0.79598 | 0.00758 | 0.01929 | 0.69414 | −0.0166 | 0.01948 | 0.39528 | +| 26 | rs794999 | A | G | 0.03421 | 0.00764 | 7.64E-06 | 20.0256 | 0.00108 | 0.01258 | 0.93171 | 0.0139 | 0.01786 | 0.43649 | 0.00374 | 0.01807 | 0.83582 | +| 27 | rs9464135 | A | G | −0.0309 | 0.00663 | 3.11E-06 | 21.7436 | −0.0076 | 0.01055 | 0.47151 | 0.01164 | 0.015 | 0.43786 | −0.0375 | 0.01516 | 0.01337 | +| 28 | rs9567762 | A | T | 0.03635 | 0.00823 | 9.92E-06 | 19.5276 | 0.01223 | 0.01084 | 0.25934 | 0.00403 | 0.0154 | 0.7934 | 0.01552 | 0.01557 | 0.31884 | + +Table 3 Genetic variants used in the reverse MR analysis + +| Genetic instruments for VTE/PE/DVT and their associations with OSA (Jiang et al) | Genetic instruments for VTE/PE/DVT and their associations with OSA (Jiang et al) | Genetic instruments for VTE/PE/DVT and their associations with OSA (Jiang et al) | Genetic instruments for VTE/PE/DVT and their associations with OSA (Jiang et al) | Genetic instruments for VTE/PE/DVT and their associations with OSA (Jiang et al) | Genetic instruments for VTE/PE/DVT and their associations with OSA (Jiang et al) | Genetic instruments for VTE/PE/DVT and their associations with OSA (Jiang et al) | Genetic instruments for VTE/PE/DVT and their associations with OSA (Jiang et al) | Genetic instruments for VTE/PE/DVT and their associations with OSA (Jiang et al) | Genetic instruments for VTE/PE/DVT and their associations with OSA (Jiang et al) | Genetic instruments for VTE/PE/DVT and their associations with OSA (Jiang et al) | +|--------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------| +| | | | | Exposure: VTE | Exposure: VTE | Exposure: VTE | Exposure: VTE | Outcome: OSA (Jiang et al) | Outcome: OSA (Jiang et al) | Outcome: OSA (Jiang et al) | +| | SNP | EA | OA | Beta | SE | p -Value | F-statistic | Beta | SE | p -Value | +| 1 | rs10896706 | A | G | 0.0702142 | 0.0121006 | 6.53E-09 | 33.669456 | −0.0597845 | 0.029345 | 0.0416207 | +| 2 | rs113079063 | T | G | 0.378107 | 0.0507769 | 9.59E-14 | 55.449428 | 0.0050364 | 0.0876134 | 0.954159 | +| 3 | rs114026832 | A | C | 0.773925 | 0.099915 | 9.50E-15 | 59.997944 | 0.0578773 | 0.180543 | 0.748533 | +| 4 | rs114767153 | T | A | −0.20888 | 0.0348173 | 1.98E-09 | 35.991798 | −0.0712189 | 0.0909972 | 0.433833 | +| 5 | rs116997538 | T | C | 0.403288 | 0.0383066 | 6.42E-26 | 110.83665 | −0.067735 | 0.123897 | 0.584581 | +| 6 | rs12054563 | G | A | −0.126677 | 0.0176431 | 6.97E-13 | 51.552027 | 0.0602695 | 0.0663601 | 0.363763 | +| 7 | rs1560711 | T | C | 0.122379 | 0.0141465 | 5.11E-18 | 74.836901 | 0.0310044 | 0.0321024 | 0.334145 | +| 8 | rs174529 | C | T | −0.0686342 | 0.0107211 | 1.54E-10 | 40.982878 | −0.0053417 | 0.0276673 | 0.846904 | +| 9 | rs188337046 | T | C | 0.16048 | 0.0250424 | 1.47E-10 | 41.066712 | 0.178311 | 0.206621 | 0.388145 | +| 10 | rs2066865 | A | G | 0.186112 | 0.0112369 | 1.30E-61 | 274.31889 | 0.0083154 | 0.0313691 | 0.790945 | +| 11 | rs2519785 | G | A | −0.0702991 | 0.0118882 | 3.35E-09 | 34.967721 | 0.0074319 | 0.0297183 | 0.802526 | +| 12 | rs3756011 | A | C | 0.192712 | 0.0105525 | 1.65E-74 | 333.50841 | −0.0026386 | 0.0272831 | 0.922956 | +| 13 | rs57328376 | G | A | 0.0697584 | 0.0109198 | 1.68E-10 | 40.809724 | −0.0101806 | 0.0290533 | 0.726031 | +| 14 | rs576123 | T | C | −0.237396 | 0.0104973 | 3.09E-113 | 511.43633 | 0.00819 | 0.0287779 | 0.775956 | +| 15 | rs5896 | T | C | 0.109291 | 0.0125852 | 3.82E-18 | 75.413406 | 0.0614773 | 0.0388191 | 0.113265 | +| 16 | rs6025 | T | C | 0.873415 | 0.0298388 | 2.42E-188 | 856.79828 | 0.0502217 | 0.0899796 | 0.576745 | +| 17 | rs6060308 | A | G | 0.101587 | 0.0112359 | 1.55E-19 | 81.744876 | 0.0521936 | 0.0308737 | 0.0909227 | +| 18 | rs60681578 | C | A | −0.118392 | 0.0150029 | 2.99E-15 | 62.272211 | 0.0169103 | 0.0390773 | 0.665204 | +| 19 | rs62350309 | G | A | −0.173509 | 0.0181448 | 1.15E-21 | 91.440721 | −0.071956 | 0.0634685 | 0.256909 | +| 20 | rs628094 | A | G | 0.0818781 | 0.0114389 | 8.19E-13 | 51.235029 | 0.0027028 | 0.0302168 | 0.928726 | +| 21 | rs72708961 | C | T | 0.0891913 | 0.0159445 | 2.22E-08 | 31.291269 | −0.0765307 | 0.0367798 | 0.0374539 | +| 22 | rs7772305 | G | A | −0.0726964 | 0.0111586 | 7.28E-11 | 42.443031 | 0.0585778 | 0.0307164 | 0.0565137 | +| 23 | rs78807356 | T | G | 0.541094 | 0.0563616 | 7.96E-22 | 92.167713 | 0.101617 | 0.0796139 | 0.201825 | +| | | | | Exposure: PE | Exposure: PE | Exposure: PE | Exposure: PE | Outcome: OSA (Jiang et al) | Outcome: OSA (Jiang et al) | Outcome: OSA (Jiang et al) | +| | SNP | EA | OA | Beta | SE | p -Value | F-statistic | Beta | SE | p -Value | +| 1 | rs117210485 | A | G | 0.150787 | 0.0228699 | 4.30E-11 | 43.470964 | 0.0214618 | 0.114177 | 0.8509 | +| 2 | rs11758950 | T | C | 0.203947 | 0.0367907 | 2.97E-08 | 30.729716 | 0.0418521 | 0.0821953 | 0.610627 | +| 3 | rs143620474 | A | G | 0.281243 | 0.0512263 | 4.01E-08 | 30.142375 | 0.546819 | 0.155226 | 0.0004271 | +| 4 | rs1481808 | C | T | −0.480929 | 0.0875759 | 3.98E-08 | 30.157318 | −0.164933 | 0.105459 | 0.117828 | +| 5 | rs1560711 | T | C | 0.144704 | 0.0202073 | 8.01E-13 | 51.279584 | 0.0310044 | 0.0321024 | 0.334145 | +| 6 | rs1894692 | A | G | −0.547808 | 0.0457764 | 5.29E-33 | 143.21004 | 0.0002365 | 0.0951533 | 0.998017 | +| 7 | rs2066865 | A | G | 0.227484 | 0.0158067 | 5.85E-47 | 207.11869 | 0.0083154 | 0.0313691 | 0.790945 | +| 8 | rs28584824 | A | C | −0.155264 | 0.0279234 | 2.69E-08 | 30.917541 | −0.0268756 | 0.0782108 | 0.731124 | +| 9 | rs3756011 | A | C | 0.234784 | 0.0149143 | 7.77E-56 | 247.81709 | −0.0026386 | 0.0272831 | 0.922956 | +| 10 | rs62350309 | G | A | −0.202534 | 0.0260372 | 7.33E-15 | 60.507237 | −0.071956 | 0.0634685 | 0.256909 | +| 11 | rs635634 | C | T | −0.239636 | 0.0177935 | 2.43E-41 | 181.37664 | 0.0064596 | 0.0347197 | 0.852404 | +| 12 | rs665082 | C | G | −0.175581 | 0.030484 | 8.42E-09 | 33.175015 | −0.343267 | 0.216405 | 0.112688 | +| 13 | rs77165492 | C | T | 0.209269 | 0.0275462 | 3.03E-14 | 57.714695 | −0.0445618 | 0.0457769 | 0.330327 | +| 14 | rs78807356 | T | G | 0.515784 | 0.0795096 | 8.75E-11 | 42.082022 | 0.101617 | 0.0796139 | 0.201825 | +| | | | | Exposure: DVT | Exposure: DVT | Exposure: DVT | Exposure: DVT | Outcome: OSA (Jiang et al) | Outcome: OSA (Jiang et al) | Outcome: OSA (Jiang et al) | +| | SNP | EA | OA | Beta | SE | p -Value | F-statistic | Beta | SE | p -Value | +| 1 | rs113079063 | T | G | 0.436284 | 0.0717563 | 1.20E-09 | 36.967365 | 0.0050364 | 0.0876134 | 0.954159 | +| 2 | rs116997538 | T | C | 0.466245 | 0.0534583 | 2.74E-18 | 76.067315 | −0.067735 | 0.123897 | 0.584581 | +| 3 | rs13377102 | A | T | −0.233255 | 0.0255094 | 6.02E-20 | 83.610619 | −0.0250186 | 0.0389518 | 0.520681 | +| 4 | rs2066865 | A | G | 0.184507 | 0.0161145 | 2.36E-30 | 131.09678 | 0.0083154 | 0.0313691 | 0.790945 | +| 5 | rs2289252 | T | C | 0.197972 | 0.015135 | 4.26E-39 | 171.09712 | −0.0018411 | 0.0272571 | 0.946148 | +| 6 | rs2519785 | G | A | −0.0982467 | 0.0169973 | 7.46E-09 | 33.409968 | 0.0074319 | 0.0297183 | 0.802526 | +| 7 | rs576123 | T | C | −0.297682 | 0.014983 | 7.70E-88 | 394.73678 | 0.00819 | 0.0287779 | 0.775956 | +| 8 | rs5896 | T | C | 0.141024 | 0.017945 | 3.88E-15 | 61.75884 | 0.0614773 | 0.0388191 | 0.113265 | +| 9 | rs6025 | T | C | 1.10439 | 0.0393903 | 5.71E-173 | 786.07929 | 0.0502217 | 0.0899796 | 0.576745 | +| 10 | rs6060237 | G | A | 0.168453 | 0.0198214 | 1.92E-17 | 72.225216 | 0.0318432 | 0.0414073 | 0.441879 | +| 11 | rs60681578 | C | A | −0.137615 | 0.021627 | 1.98E-10 | 40.489181 | 0.0169103 | 0.0390773 | 0.665204 | +| 12 | rs62350309 | G | A | −0.162704 | 0.0259998 | 3.90E-10 | 39.161241 | −0.071956 | 0.0634685 | 0.256909 | +| 13 | rs666870 | A | G | 0.0924832 | 0.0159069 | 6.10E-09 | 33.802949 | 0.0127968 | 0.0271558 | 0.637472 | +| 14 | rs7308002 | A | G | 0.0978174 | 0.01576 | 5.41E-10 | 38.522974 | −0.0027934 | 0.0275746 | 0.919309 | +| 15 | rs76151810 | A | C | 0.153073 | 0.0273112 | 2.09E-08 | 31.413449 | −0.0018493 | 0.0507256 | 0.970918 | +| 16 | rs7772305 | G | A | −0.100251 | 0.016057 | 4.28E-10 | 38.980608 | 0.0585778 | 0.0307164 | 0.0565137 | +| 17 | rs78807356 | T | G | 0.621447 | 0.0792414 | 4.42E-15 | 61.504078 | 0.101617 | 0.0796139 | 0.201825 | +| 18 | rs9865118 | T | C | 0.0863804 | 0.0151814 | 1.27E-08 | 32.374776 | 0.0363583 | 0.0268338 | 0.175436 | +| Genetic instruments for VTE/PE/DVT and their associations with OSA (Campos et al) | Genetic instruments for VTE/PE/DVT and their associations with OSA (Campos et al) | Genetic instruments for VTE/PE/DVT and their associations with OSA (Campos et al) | Genetic instruments for VTE/PE/DVT and their associations with OSA (Campos et al) | Genetic instruments for VTE/PE/DVT and their associations with OSA (Campos et al) | Genetic instruments for VTE/PE/DVT and their associations with OSA (Campos et al) | Genetic instruments for VTE/PE/DVT and their associations with OSA (Campos et al) | Genetic instruments for VTE/PE/DVT and their associations with OSA (Campos et al) | Genetic instruments for VTE/PE/DVT and their associations with OSA (Campos et al) | Genetic instruments for VTE/PE/DVT and their associations with OSA (Campos et al) | Genetic instruments for VTE/PE/DVT and their associations with OSA (Campos et al) | +| | | | | Exposure: VTE | Exposure: VTE | Exposure: VTE | Exposure: VTE | Outcome: OSA (Campos et al) | Outcome: OSA (Campos et al) | Outcome: OSA (Campos et al) | +| | SNP | EA | OA | Beta | SE | p -Value | F-statistic | Beta | SE | p -Value | +| 1 | rs10896706 | A | G | 0.0702142 | 0.0121006 | 6.53E-09 | 33.669456 | 0.0073376 | 0.0072794 | 0.3136 | +| 2 | rs114767153 | T | A | −0.20888 | 0.0348173 | 1.98E-09 | 35.991798 | −0.0240477 | 0.0220217 | 0.2749 | +| 3 | rs116997538 | T | C | 0.403288 | 0.0383066 | 6.42E-26 | 110.83665 | −0.0202903 | 0.0346251 | 0.558 | +| 4 | rs12054563 | G | A | −0.126677 | 0.0176431 | 6.97E-13 | 51.552027 | −0.0164525 | 0.0159578 | 0.3025 | +| 5 | rs1560711 | T | C | 0.122379 | 0.0141465 | 5.11E-18 | 74.836901 | −0.0033405 | 0.0090041 | 0.7104 | +| 6 | rs174529 | C | T | −0.0686342 | 0.0107211 | 1.54E-10 | 40.982878 | −0.0016235 | 0.0068503 | 0.8124 | +| 7 | rs2066865 | A | G | 0.186112 | 0.0112369 | 1.30E-61 | 274.31889 | −0.0033999 | 0.0077623 | 0.6612 | +| 8 | rs3756011 | A | C | 0.192712 | 0.0105525 | 1.65E-74 | 333.50841 | 0.000575 | 0.0067645 | 0.9326 | +| 9 | rs57328376 | G | A | 0.0697584 | 0.0109198 | 1.68E-10 | 40.809724 | −0.0010062 | 0.0071873 | 0.8885 | +| 10 | rs576123 | T | C | −0.237396 | 0.0104973 | 3.09E-113 | 511.43633 | 0.0183551 | 0.0086786 | 0.03441 | +| 11 | rs5896 | T | C | 0.109291 | 0.0125852 | 3.82E-18 | 75.413406 | 0.020985 | 0.0096527 | 0.02974 | +| 12 | rs6025 | T | C | 0.873415 | 0.0298388 | 2.42E-188 | 856.79828 | 0.0380118 | 0.0218836 | 0.08241 | +| 13 | rs6060308 | A | G | 0.101587 | 0.0112359 | 1.55E-19 | 81.744876 | −0.0009288 | 0.0074901 | 0.9013 | +| 14 | rs60681578 | C | A | −0.118392 | 0.0150029 | 2.99E-15 | 62.272211 | 0.0085067 | 0.0117172 | 0.4678 | +| 15 | rs62350309 | G | A | −0.173509 | 0.0181448 | 1.15E-21 | 91.440721 | 0.0075114 | 0.0152982 | 0.6233 | +| 16 | rs628094 | A | G | 0.0818781 | 0.0114389 | 8.19E-13 | 51.235029 | −0.0022354 | 0.0074021 | 0.7627 | +| 17 | rs72708961 | C | T | 0.0891913 | 0.0159445 | 2.22E-08 | 31.291269 | −0.0170636 | 0.0090957 | 0.06059 | +| 18 | rs7772305 | G | A | −0.0726964 | 0.0111586 | 7.28E-11 | 42.443031 | 0.016709 | 0.0086396 | 0.05311 | +| 19 | rs80137017 | T | C | −0.208902 | 0.0177996 | 8.30E-32 | 137.74147 | 0.0152022 | 0.0099426 | 0.1262 | +| | | | | Exposure: PE | Exposure: PE | Exposure: PE | Exposure: PE | Outcome: OSA (Campos et al) | Outcome: OSA (Campos et al) | Outcome: OSA (Campos et al) | +| | SNP | EA | OA | Beta | SE | p -Value | F-statistic | Beta | SE | p -Value | +| 1 | rs117210485 | A | G | 0.150787 | 0.0228699 | 4.30E-11 | 43.470964 | −0.0346523 | 0.0239146 | 0.1473 | +| 2 | rs143620474 | A | G | 0.281243 | 0.0512263 | 4.01E-08 | 30.142375 | 0.0124988 | 0.0892769 | 0.8889 | +| 3 | rs1481808 | C | T | −0.480929 | 0.0875759 | 3.98E-08 | 30.157318 | −0.0281243 | 0.0269648 | 0.297 | +| 4 | rs1560711 | T | C | 0.144704 | 0.0202073 | 8.01E-13 | 51.279584 | −0.0033405 | 0.0090041 | 0.7104 | +| 5 | rs2066865 | A | G | 0.227484 | 0.0158067 | 5.85E-47 | 207.11869 | −0.0033999 | 0.0077623 | 0.6612 | +| 6 | rs28584824 | A | C | −0.155264 | 0.0279234 | 2.69E-08 | 30.917541 | 0.0324135 | 0.0191569 | 0.09056 | +| 7 | rs3756011 | A | C | 0.234784 | 0.0149143 | 7.77E-56 | 247.81709 | 0.000575 | 0.0067645 | 0.9326 | +| 8 | rs62350309 | G | A | −0.202534 | 0.0260372 | 7.33E-15 | 60.507237 | 0.0075114 | 0.0152982 | 0.6233 | +| 9 | rs635634 | C | T | −0.239636 | 0.0177935 | 2.43E-41 | 181.37664 | 0.0139975 | 0.0096935 | 0.1488 | +| 10 | rs77165492 | C | T | 0.209269 | 0.0275462 | 3.03E-14 | 57.714695 | 0.0013946 | 0.0114311 | 0.9026 | +| 11 | rs80137017 | T | C | −0.230014 | 0.02543 | 1.50E-19 | 81.811776 | 0.0152022 | 0.0099426 | 0.1262 | +| | | | | Exposure: DVT | Exposure: DVT | Exposure: DVT | Exposure: DVT | Outcome: OSA (Campos et al) | Outcome: OSA (Campos et al) | Outcome: OSA (Campos et al) | +| | SNP | EA | OA | Beta | SE | p -Value | F-statistic | Beta | SE | p -Value | +| 1 | rs116997538 | T | C | 0.466245 | 0.0534583 | 2.74E-18 | 76.067315 | −0.0202903 | 0.0346251 | 0.558 | +| 2 | rs13377102 | A | T | −0.233255 | 0.0255094 | 6.02E-20 | 83.610619 | 0.0085579 | 0.0096591 | 0.3759 | +| 3 | rs2066865 | A | G | 0.184507 | 0.0161145 | 2.36E-30 | 131.09678 | −0.0033999 | 0.0077623 | 0.6612 | +| 4 | rs576123 | T | C | −0.297682 | 0.014983 | 7.70E-88 | 394.73678 | 0.0183551 | 0.0086786 | 0.03441 | +| 5 | rs5896 | T | C | 0.141024 | 0.017945 | 3.88E-15 | 61.75884 | 0.020985 | 0.0096527 | 0.02974 | +| 6 | rs6025 | T | C | 1.10439 | 0.0393903 | 5.71E-173 | 786.07929 | 0.0380118 | 0.0218836 | 0.08241 | +| 7 | rs6060237 | G | A | 0.168453 | 0.0198214 | 1.92E-17 | 72.225216 | 0.0060526 | 0.0101724 | 0.5518 | +| 8 | rs60681578 | C | A | −0.137615 | 0.021627 | 1.98E-10 | 40.489181 | 0.0085067 | 0.0117172 | 0.4678 | +| 9 | rs62350309 | G | A | −0.162704 | 0.0259998 | 3.90E-10 | 39.161241 | 0.0075114 | 0.0152982 | 0.6233 | +| 10 | rs666870 | A | G | 0.0924832 | 0.0159069 | 6.10E-09 | 33.802949 | 0.0074616 | 0.0067221 | 0.2669 | +| 11 | rs7308002 | A | G | 0.0978174 | 0.01576 | 5.41E-10 | 38.522974 | −0.0023644 | 0.0068533 | 0.7298 | +| 12 | rs7772305 | G | A | −0.100251 | 0.016057 | 4.28E-10 | 38.980608 | 0.016709 | 0.0086396 | 0.05311 | +| 13 | rs9865118 | T | C | 0.0863804 | 0.0151814 | 1.27E-08 | 32.374776 | −0.0005648 | 0.0066442 | 0.9323 | + +## Figures + +Fig. 1 The flowchart of instrumental variables selection. LD, linkage disequilibrium; SNPs, single-nucleotide polymorphisms; BMI, body mass index; VTE, venous thromboembolism; PE, pulmonary embolism; DVT, deep vein thrombosis; OSA, obstructive sleep apnea; ①, represents OSA (Jiang et al) as the outcome; ②, represents OSA (Campos et al) as the outcome. + + + +Fig. 2 The genetic association of OSA with VTE/PE/DVT. OSA, obstructive sleep apnea; VTE, venous thromboembolism; PE, pulmonary embolism; DVT, deep vein thrombosis; MR, mendelian randomization; IVW, inverse variance weighted; PRESSO, pleiotropy residual sum and outlier; P*, represents P for heterogeneity test; P**, represents P for MR-Egger intercept; P***, represents P for MR-PRESSO global test. + + + +Fig. 3 The genetic association of VTE/PE/DVT with OSA. OSA, obstructive sleep apnea; VTE, venous thromboembolism; PE, pulmonary embolism; DVT, deep vein thrombosis; MR, mendelian randomization; IVW, inverse variance weighted; PRESSO, pleiotropy residual sum and outlier; P*, represents P for heterogeneity test; P**, represents P for MR-Egger intercept; P***, represents P for MR-PRESSO global test. + + + +## References + +- S H Wang; W S Chen; S E Tang. Benzodiazepines associated with acute respiratory failure in patients with obstructive sleep apnea. Front Pharmacol (2019) +- C R Innes; P T Kelly; M Hlavac; T R Melzer; R D Jones. Decreased regional cerebral perfusion in moderate-severe obstructive sleep apnoea during wakefulness. Sleep (2015) +- C V Senaratna; J L Perret; C J Lodge. Prevalence of obstructive sleep apnea in the general population: a systematic review. Sleep Med Rev (2017) +- J Bai; H Wen; J Tai. Altered spontaneous brain activity related to neurologic and sleep dysfunction in children with obstructive sleep apnea syndrome. Front Neurosci (2021) +- J M Marin; A Agusti; I Villar. Association between treated and untreated obstructive sleep apnea and risk of hypertension. JAMA (2012) +- S Redline; G Yenokyan; D J Gottlieb. Obstructive sleep apnea-hypopnea and incident stroke: the sleep heart health study. Am J Respir Crit Care Med (2010) +- O Mesarwi; A Malhotra. Obstructive sleep apnea and pulmonary hypertension: a bidirectional relationship. J Clin Sleep Med (2020) +- F Piccirillo; S P Crispino; L Buzzelli; A Segreti; R A Incalzi; F Grigioni. A state-of-the-art review on sleep apnea syndrome and heart failure. Am J Cardiol (2023) +- K Glise Sandblad; A Rosengren; J Sörbo; S Jern; P O Hansson. Pulmonary embolism and deep vein thrombosis-comorbidities and temporary provoking factors in a register-based study of 1.48 million people. Res Pract Thromb Haemost (2022) +- R Raj; A Paturi; M A Ahmed; S E Thomas; V R Gorantla. Obstructive sleep apnea as a risk factor for venous thromboembolism: a systematic review. Cureus (2022) +- C C Lin; J J Keller; J H Kang; T C Hsu; H C Lin. Obstructive sleep apnea is associated with an increased risk of venous thromboembolism. J Vasc Surg Venous Lymphat Disord (2013) +- Y H Peng; W C Liao; W S Chung. Association between obstructive sleep apnea and deep vein thrombosis / pulmonary embolism: a population-based retrospective cohort study. Thromb Res (2014) +- O Nepveu; C Orione; C Tromeur. Association between obstructive sleep apnea and venous thromboembolism recurrence: results from a French cohort. Thromb J (2022) +- O Dabbagh; M Sabharwal; O Hassan. Obstructive sleep apnea is an independent risk factor for venous thromboembolism among females not males. Chest (2010) +- J P Bosanquet; B C Bade; M F Zia. Patients with venous thromboembolism appear to have higher prevalence of obstructive sleep apnea than the general population. Clin Appl Thromb Hemost (2011) +- A Xue; L Jiang; Z Zhu. Genome-wide analyses of behavioural traits are subject to bias by misreports and longitudinal changes. Nat Commun (2021) +- B Pu; P Gu; C Zheng; L Ma; X Zheng; Z Zeng. Self-reported and genetically predicted effects of coffee intake on rheumatoid arthritis: epidemiological studies and Mendelian randomization analysis. Front Nutr (2022) +- L Jiang; Z Zheng; H Fang; J Yang. A generalized linear mixed model association tool for biobank-scale data. Nat Genet (2021) +- A I Campos; N Ingold; Y Huang. Discovery of genomic loci associated with sleep apnea risk through multi-trait GWAS analysis with snoring. Sleep (2023) +- R Feng; M Lu; J Xu. Pulmonary embolism and 529 human blood metabolites: genetic correlation and two-sample Mendelian randomization study. BMC Genom Data (2022) +- R Molenberg; C HL Thio; M W Aalbers. Sex hormones and risk of aneurysmal subarachnoid hemorrhage: a Mendelian randomization study. Stroke (2022) +- S H Wang; B T Keenan; A Wiemken. Effect of weight loss on upper airway anatomy and the apnea-hypopnea index. the importance of tongue fat. Am J Respir Crit Care Med (2020) +- C Hotoleanu. Association between obesity and venous thromboembolism. Med Pharm Rep (2020) +- H Zhao; X Jin. Causal associations between dietary antioxidant vitamin intake and lung cancer: a Mendelian randomization study. Front Nutr (2022) +- B Tang; Y Wang; X Jiang. Genetic variation in targets of antidiabetic drugs and Alzheimer disease risk: a Mendelian randomization study. Neurology (2022) +- S S Dong; K Zhang; Y Guo. Phenome-wide investigation of the causal associations between childhood BMI and adult trait outcomes: a two-sample Mendelian randomization study. Genome Med (2021) +- W Huang; J Xiao; J Ji; L Chen. Association of lipid-lowering drugs with COVID-19 outcomes from a Mendelian randomization study. eLife (2021) +- X Chen; J Kong; J Pan. Kidney damage causally affects the brain cortical structure: a Mendelian randomization study. EBioMedicine (2021) +- I Arnulf; M Merino-Andreu; A Perrier; S Birolleau; T Similowski; J P Derenne. Obstructive sleep apnea and venous thromboembolism. JAMA (2002) +- K T Chou; C C Huang; Y M Chen. Sleep apnea and risk of deep vein thrombosis: a non-randomized, pair-matched cohort study. Am J Med (2012) +- A Alonso-Fernández; M de la Peña; D Romero. Association between obstructive sleep apnea and pulmonary embolism. Mayo Clin Proc (2013) +- M Ambrosetti; A Lucioni; W Ageno; S Conti; M Neri. Is venous thromboembolism more frequent in patients with obstructive sleep apnea syndrome?. J Thromb Haemost (2004) +- S Reutrakul; B Mokhlesi. Obstructive sleep apnea and diabetes: a state of the art review. Chest (2017) +- S Lindström; M Germain; M Crous-Bou. Assessing the causal relationship between obesity and venous thromboembolism through a Mendelian Randomization study. Hum Genet (2017) +- M V Genuardi; A Rathore; R P Ogilvie. Incidence of VTE in patients with OSA: a cohort study. Chest (2022) +- R Aman; V G Michael; P O Rachel. Obstructive sleep apnea does not increase risk of venous thromboembolism. American Thoracic Society (2019) +- C T Esmon. Basic mechanisms and pathogenesis of venous thrombosis. Blood Rev (2009) +- A García-Ortega; E Mañas; R López-Reyes. Obstructive sleep apnoea and venous thromboembolism: pathophysiological links and clinical implications. Eur Respir J (2019) +- H Xiong; M Lao; L Wang. The incidence of cancer is increased in hospitalized adult patients with obstructive sleep apnea in China: a retrospective cohort study. Front Oncol (2022) +- A Holt; J Bjerre; B Zareini. Sleep apnea, the risk of developing heart failure, and potential benefits of continuous positive airway pressure (CPAP) therapy. J Am Heart Assoc (2018) +- A Alonso-Fernández; N Toledo-Pons; F García-Río. Obstructive sleep apnea and venous thromboembolism: overview of an emerging relationship. Sleep Med Rev (2020) +- S N Hong; H C Yun; J H Yoo; S H Lee. Association between hypercoagulability and severe obstructive sleep apnea. JAMA Otolaryngol Head Neck Surg (2017) +- G V Robinson; J C Pepperell; H C Segal; R J Davies; J R Stradling. Circulating cardiovascular risk factors in obstructive sleep apnoea: data from randomised controlled trials. Thorax (2004) +- R von Känel; J S Loredo; F L Powell; K A Adler; J E Dimsdale. Short-term isocapnic hypoxia and coagulation activation in patients with sleep apnea. Clin Hemorheol Microcirc (2005) +- C Zolotoff; L Bertoletti; D Gozal. Obstructive sleep apnea, hypercoagulability, and the blood-brain barrier. J Clin Med (2021) \ No newline at end of file diff --git a/tests/data/groundtruth/docling_v2/10-1055-a-2313-0311.nxml.itxt b/tests/data/groundtruth/docling_v2/10-1055-a-2313-0311.nxml.itxt new file mode 100644 index 00000000..f01e7aaf --- /dev/null +++ b/tests/data/groundtruth/docling_v2/10-1055-a-2313-0311.nxml.itxt @@ -0,0 +1,76 @@ +item-0 at level 0: unspecified: group _root_ + item-1 at level 1: title: Exploring the Two-Way Link betwe ... o-Sample Mendelian Randomization Study + item-2 at level 1: paragraph: Yang Wang; Vascular Surgery, Sha ... iliated Central Hospital, Jinan, China + item-3 at level 1: text: Background The objective of this ... nd VTE within the European population. + item-4 at level 1: section_header: Introduction + item-5 at level 2: text: Venous thromboembolism (VTE) enc ... risk in clinical settings are crucial. + item-6 at level 2: text: Migraine, characterized by recur ... elationship between VTE and migraines. + item-7 at level 2: text: Mendelian randomization (MR) is ... n traditional epidemiological methods. + item-8 at level 1: section_header: Research Methodology + item-9 at level 2: text: A rigorous bidirectional two-sam ... of the resultant causal inferences. 12 + item-10 at level 1: section_header: Data Sources + item-11 at level 2: text: Our SNPs are obtained from large ... in our study can be found in Table 1 . + item-12 at level 2: text: The variances in genetic variati ... ecessity for further ethical approval. + item-13 at level 1: section_header: Filtering Criteria of IVs + item-14 at level 2: text: To select appropriate SNPs as IV ... 0 to minimize weak instrument bias. 19 + item-15 at level 1: section_header: Results + item-16 at level 2: text: In the present investigation, we ... analysis results detailed in Table 2 . + item-17 at level 1: section_header: Mendelian Randomization Analysis + item-18 at level 2: text: During the IV screening process, ... ined in our investigation ( Fig. 2D ). + item-19 at level 1: section_header: Reverse Mendelian Randomization Analysis + item-20 at level 2: text: Upon screening for IVs in migrai ... e estimated causal effect ( Fig. 3D ). + item-21 at level 1: section_header: Discussion + item-22 at level 2: text: VTE constitutes a grave health h ... he MR analysis is considered reliable. + item-23 at level 2: text: Our MR analysis discloses a pote ... s in clinical practice is recommended. + item-24 at level 2: text: Our endeavor seeks to offer a pr ... rely a weak risk factor for migraines. + item-25 at level 1: section_header: Tables + item-27 at level 1: table with [3x6] + item-27 at level 2: caption: Table 1 Description of GWAS used for each phenotype + item-29 at level 1: table with [4x7] + item-29 at level 2: caption: Table 2 Mendelian randomization regression causal association results + item-30 at level 1: section_header: Figures + item-32 at level 1: picture + item-32 at level 2: caption: Fig. 1 This figure illustrates the research methodology for the bidirectional Mendelian randomization analysis concerning migraine and VTE. Assumption I: relevance assumption; Assumption II: independence/exchangeability assumption; Assumption III: exclusion restriction assumption. + item-34 at level 1: picture + item-34 at level 2: caption: Fig. 2 This figure explores the correlation between migraine risk and VTE, validating the presence of heterogeneity and pleiotropy. (A) The forest plot displays individual IVs, with each point flanked by lines that depict the 95% confidence interval. The effect of SNPs on the exposure (migraine) is shown along thex-axis, whereas their impact on the outcome (VTE) is presented on they-axis. A fitted line reflects the Mendelian randomization analysis results. (B) A scatter plot visualizes each IV, with the SNP effects on both exposure and outcome similar to that of the forest plot. Again, a fitted line represents the Mendelian randomization results. (C) The funnel plot positions the coefficient βIVfrom the instrumental variable regression on thex-axis to demonstrate the association's strength, while the inverse of its standard error (1/SEIV†) on they-axis indicates the precision of this estimate. (D) A leave-one-out sensitivity analysis is shown on thex-axis, charting the estimated effects from the Mendelian randomization analysis. With each SNP associated with migraine successively excluded, the analysis recalculates the Mendelian randomization effect estimates, culminating with the “all” category that encompasses all considered SNPs. IV, instrumental variable; SNP, single nucleotide polymorphisms; VTE, venous thromboembolism; SE, standard error.†SE is the standard error of β. + item-36 at level 1: picture + item-36 at level 2: caption: Fig. 3 (A–D) This figure presents the relationship between VTE risk and migraine, also verifying heterogeneity and pleiotropy through similar graphic representations as detailed forFig. 2, but with the exposure and outcome reversed—SNPs' effect on VTE and outcome on migraine. SNP, single nucleotide polymorphisms; VTE, venous thromboembolism. + item-37 at level 1: section_header: References + item-38 at level 1: list: group list + item-39 at level 2: list_item: F Khan; T Tritschler; S R Kahn; ... Venous thromboembolism. Lancet (2021) + item-40 at level 2: list_item: J A Heit. Epidemiology of venous thromboembolism. Nat Rev Cardiol (2015) + item-41 at level 2: list_item: . Headache Classification Commit ... rders, 3rd edition. Cephalalgia (2018) + item-42 at level 2: list_item: K Adelborg; S K Szépligeti; L Ho ... based matched cohort study. BMJ (2018) + item-43 at level 2: list_item: K P Peng; Y T Chen; J L Fuh; C H ... tionwide cohort study. Headache (2016) + item-44 at level 2: list_item: S Sacco; A Carolei. Burden of at ... tients with migraine. Neurology (2009) + item-45 at level 2: list_item: A R Folsom; P L Lutsey; J R Misi ... dults. Res Pract Thromb Haemost (2019) + item-46 at level 2: list_item: I Y Elgendy; S E Nadeau; C N Bai ... ease in women. J Am Heart Assoc (2019) + item-47 at level 2: list_item: C A Emdin; A V Khera; S Kathiresan. Mendelian randomization. JAMA (2017) + item-48 at level 2: list_item: T Karlsson; F Hadizadeh; M Rask- ... n analyses. Arthritis Rheumatol (2023) + item-49 at level 2: list_item: T Lawler; S Warren Andersen. Ser ... andomization studies. Nutrients (2023) + item-50 at level 2: list_item: S Burgess; A S Butterworth; J R ... ic predictors. J Clin Epidemiol (2016) + item-51 at level 2: list_item: C Sudlow; J Gallacher; N Allen. ... of middle and old age. PLoS Med (2015) + item-52 at level 2: list_item: M S Lyon; S J Andrews; B Elswort ... summary statistics. Genome Biol (2021) + item-53 at level 2: list_item: M I Kurki; J Karjalainen; P Palt ... ped isolated population. Nature (2023) + item-54 at level 2: list_item: E Sanderson; M M Glymour; M V Ho ... zation. Nat Rev Methods Primers (2022) + item-55 at level 2: list_item: J R Staley; J Blackshaw; M A Kam ... pe associations. Bioinformatics (2016) + item-56 at level 2: list_item: M A Kamat; J A Blackshaw; R Youn ... pe associations. Bioinformatics (2019) + item-57 at level 2: list_item: S Burgess; S G Thompson. Mendeli ... erence Using Genetic Variants. (2021) + item-58 at level 2: list_item: A May; L H Schulte. Chronic migr ... s and treatment. Nat Rev Neurol (2016) + item-59 at level 2: list_item: D W Dodick. Migraine. Lancet (2018) + item-60 at level 2: list_item: A A Khorana; N Mackman; A Falang ... boembolism. Nat Rev Dis Primers (2022) + item-61 at level 2: list_item: E J Bell; A R Folsom; P L Lutsey ... alysis. Diabetes Res Clin Pract (2016) + item-62 at level 2: list_item: S Bhoelan; J Borjas Howard; V Ti ... study. Res Pract Thromb Haemost (2022) + item-63 at level 2: list_item: V Pengo; G Denas. Antiphospholip ... boembolism. Semin Thromb Hemost (2023) + item-64 at level 2: list_item: L Maitrot-Mantelet; M H Horellou ... tional French study. Thromb Res (2014) + item-65 at level 2: list_item: G E Tietjen; S A Collins. Hypercoagulability and migraine. Headache (2018) + item-66 at level 2: list_item: J Schwaiger; S Kiechl; H Stockne ... tients with migraine. Neurology (2008) + item-67 at level 2: list_item: C D Bushnell; M Jamison; A H Jam ... n based case-control study. BMJ (2009) + item-68 at level 2: list_item: W Y Ding; M B Protty; I G Davies ... al fibrillation. Cardiovasc Res (2022) + item-69 at level 2: list_item: R M Gupta; J Hadaya; A Trehan. A ... othelin-1 gene expression. Cell (2017) + item-70 at level 2: list_item: B Kumari; A Prabhakar; A Sahu. E ... lation. Clin Appl Thromb Hemost (2017) + item-71 at level 2: list_item: Y Zhang; J Liu; W Jia. AGEs/RAGE ... thrombosis (DVT). Bioengineered (2021) + item-72 at level 2: list_item: J Padilla; A J Carpenter; N A Da ... Am J Physiol Heart Circ Physiol (2018) + item-73 at level 2: list_item: L Liu; C Jouve; J Sebastien Hulo ... th muscle cells. Cardiovasc Res (2022) + item-74 at level 2: list_item: R Vormittag; P Bencur; C Ay. Low ... romboembolism. J Thromb Haemost (2007) + item-75 at level 2: list_item: H Chun; J H Kurasawa; P Olivares ... plex contacts. J Thromb Haemost (2022) \ No newline at end of file diff --git a/tests/data/groundtruth/docling_v2/10-1055-a-2313-0311.nxml.json b/tests/data/groundtruth/docling_v2/10-1055-a-2313-0311.nxml.json new file mode 100644 index 00000000..0135186d --- /dev/null +++ b/tests/data/groundtruth/docling_v2/10-1055-a-2313-0311.nxml.json @@ -0,0 +1,2313 @@ +{ + "schema_name": "DoclingDocument", + "version": "1.0.0", + "name": "10-1055-a-2313-0311", + "origin": { + "mimetype": "text/xml", + "binary_hash": 15469079219742339932, + "filename": "10-1055-a-2313-0311.nxml" + }, + "furniture": { + "self_ref": "#/furniture", + "children": [], + "name": "_root_", + "label": "unspecified" + }, + "body": { + "self_ref": "#/body", + "children": [ + { + "$ref": "#/texts/0" + }, + { + "$ref": "#/texts/1" + }, + { + "$ref": "#/texts/2" + }, + { + "$ref": "#/texts/3" + }, + { + "$ref": "#/texts/7" + }, + { + "$ref": "#/texts/9" + }, + { + "$ref": "#/texts/12" + }, + { + "$ref": "#/texts/14" + }, + { + "$ref": "#/texts/16" + }, + { + "$ref": "#/texts/18" + }, + { + "$ref": "#/texts/20" + }, + { + "$ref": "#/texts/24" + }, + { + "$ref": "#/texts/25" + }, + { + "$ref": "#/tables/0" + }, + { + "$ref": "#/texts/26" + }, + { + "$ref": "#/tables/1" + }, + { + "$ref": "#/texts/27" + }, + { + "$ref": "#/texts/28" + }, + { + "$ref": "#/pictures/0" + }, + { + "$ref": "#/texts/29" + }, + { + "$ref": "#/pictures/1" + }, + { + "$ref": "#/texts/30" + }, + { + "$ref": "#/pictures/2" + }, + { + "$ref": "#/texts/31" + }, + { + "$ref": "#/groups/0" + } + ], + "name": "_root_", + "label": "unspecified" + }, + "groups": [ + { + "self_ref": "#/groups/0", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/32" + }, + { + "$ref": "#/texts/33" + }, + { + "$ref": "#/texts/34" + }, + { + "$ref": "#/texts/35" + }, + { + "$ref": "#/texts/36" + }, + { + "$ref": "#/texts/37" + }, + { + "$ref": "#/texts/38" + }, + { + "$ref": "#/texts/39" + }, + { + "$ref": "#/texts/40" + }, + { + "$ref": "#/texts/41" + }, + { + "$ref": "#/texts/42" + }, + { + "$ref": "#/texts/43" + }, + { + "$ref": "#/texts/44" + }, + { + "$ref": "#/texts/45" + }, + { + "$ref": "#/texts/46" + }, + { + "$ref": "#/texts/47" + }, + { + "$ref": "#/texts/48" + }, + { + "$ref": "#/texts/49" + }, + { + "$ref": "#/texts/50" + }, + { + "$ref": "#/texts/51" + }, + { + "$ref": "#/texts/52" + }, + { + "$ref": "#/texts/53" + }, + { + "$ref": "#/texts/54" + }, + { + "$ref": "#/texts/55" + }, + { + "$ref": "#/texts/56" + }, + { + "$ref": "#/texts/57" + }, + { + "$ref": "#/texts/58" + }, + { + "$ref": "#/texts/59" + }, + { + "$ref": "#/texts/60" + }, + { + "$ref": "#/texts/61" + }, + { + "$ref": "#/texts/62" + }, + { + "$ref": "#/texts/63" + }, + { + "$ref": "#/texts/64" + }, + { + "$ref": "#/texts/65" + }, + { + "$ref": "#/texts/66" + }, + { + "$ref": "#/texts/67" + }, + { + "$ref": "#/texts/68" + } + ], + "name": "list", + "label": "list" + } + ], + "texts": [ + { + "self_ref": "#/texts/0", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "title", + "prov": [], + "orig": "Exploring the Two-Way Link between Migraines and Venous Thromboembolism: A Bidirectional Two-Sample Mendelian Randomization Study", + "text": "Exploring the Two-Way Link between Migraines and Venous Thromboembolism: A Bidirectional Two-Sample Mendelian Randomization Study" + }, + { + "self_ref": "#/texts/1", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "paragraph", + "prov": [], + "orig": "Yang Wang; Vascular Surgery, Shandong Public Health Clinical Center, Shandong University, Jinan, China; Xiaofang Hu; Department of Neurology, Shandong Public Health Clinical Center, Shandong University, Jinan, China; Xiaoqing Wang; Interventional Department, Shandong Public Health Clinical Center, Shandong University, Jinan, China; Lili Li; Interventional Department, Shandong Public Health Clinical Center, Shandong University, Jinan, China; Peng Lou; Vascular Surgery, Shandong Public Health Clinical Center, Shandong University, Jinan, China; Zhaoxuan Liu; Vascular Surgery, Shandong First Medical University affiliated Central Hospital, Jinan, China", + "text": "Yang Wang; Vascular Surgery, Shandong Public Health Clinical Center, Shandong University, Jinan, China; Xiaofang Hu; Department of Neurology, Shandong Public Health Clinical Center, Shandong University, Jinan, China; Xiaoqing Wang; Interventional Department, Shandong Public Health Clinical Center, Shandong University, Jinan, China; Lili Li; Interventional Department, Shandong Public Health Clinical Center, Shandong University, Jinan, China; Peng Lou; Vascular Surgery, Shandong Public Health Clinical Center, Shandong University, Jinan, China; Zhaoxuan Liu; Vascular Surgery, Shandong First Medical University affiliated Central Hospital, Jinan, China" + }, + { + "self_ref": "#/texts/2", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "Background The objective of this study is to utilize Mendelian randomization to scrutinize the mutual causality between migraine and venous thromboembolism (VTE) thereby addressing the heterogeneity and inconsistency that were observed in prior observational studies concerning the potential interrelation of the two conditions. Methods Employing a bidirectional Mendelian randomization approach, the study explored the link between migraine and VTE, incorporating participants of European descent from a large-scale meta-analysis. An inverse-variance weighted (IVW) regression model, with random-effects, leveraging single nucleotide polymorphisms (SNPs) as instrumental variables was utilized to endorse the mutual causality between migraine and VTE. SNP heterogeneity was evaluated using Cochran's Q-test and to account for multiple testing, correction was implemented using the intercept of the MR-Egger method, and a leave-one-out analysis. Results The IVW model unveiled a statistically considerable causal link between migraine and the development of VTE (odds ratio [OR]\u2009=\u200996.155, 95% confidence interval [CI]: 4.342\u20132129.458, p =\u20090.004), implying that migraine poses a strong risk factor for VTE development. Conversely, both IVW and simple model outcomes indicated that VTE poses as a weaker risk factor for migraine (IVW OR\u2009=\u20091.002, 95% CI: 1.000\u20131.004, p =\u20090.016). The MR-Egger regression analysis denoted absence of evidence for genetic pleiotropy among the SNPs while the durability of our Mendelian randomization results was vouched by the leave-one-out sensitivity analysis. Conclusion The findings of this Mendelian randomization assessment provide substantiation for a reciprocal causative association between migraine and VTE within the European population.", + "text": "Background The objective of this study is to utilize Mendelian randomization to scrutinize the mutual causality between migraine and venous thromboembolism (VTE) thereby addressing the heterogeneity and inconsistency that were observed in prior observational studies concerning the potential interrelation of the two conditions. Methods Employing a bidirectional Mendelian randomization approach, the study explored the link between migraine and VTE, incorporating participants of European descent from a large-scale meta-analysis. An inverse-variance weighted (IVW) regression model, with random-effects, leveraging single nucleotide polymorphisms (SNPs) as instrumental variables was utilized to endorse the mutual causality between migraine and VTE. SNP heterogeneity was evaluated using Cochran's Q-test and to account for multiple testing, correction was implemented using the intercept of the MR-Egger method, and a leave-one-out analysis. Results The IVW model unveiled a statistically considerable causal link between migraine and the development of VTE (odds ratio [OR]\u2009=\u200996.155, 95% confidence interval [CI]: 4.342\u20132129.458, p =\u20090.004), implying that migraine poses a strong risk factor for VTE development. Conversely, both IVW and simple model outcomes indicated that VTE poses as a weaker risk factor for migraine (IVW OR\u2009=\u20091.002, 95% CI: 1.000\u20131.004, p =\u20090.016). The MR-Egger regression analysis denoted absence of evidence for genetic pleiotropy among the SNPs while the durability of our Mendelian randomization results was vouched by the leave-one-out sensitivity analysis. Conclusion The findings of this Mendelian randomization assessment provide substantiation for a reciprocal causative association between migraine and VTE within the European population." + }, + { + "self_ref": "#/texts/3", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/4" + }, + { + "$ref": "#/texts/5" + }, + { + "$ref": "#/texts/6" + } + ], + "label": "section_header", + "prov": [], + "orig": "Introduction", + "text": "Introduction", + "level": 1 + }, + { + "self_ref": "#/texts/4", + "parent": { + "$ref": "#/texts/3" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "Venous thromboembolism (VTE) encompasses both deep vein thrombosis and pulmonary embolism, 1 ranking third globally as a prevalent vascular disorder associated with mortality. 2 This increases the mortality risk for patients and compounds the financial burden on health care services. Hence, the ongoing evaluation and assessment of VTE risk in clinical settings are crucial.", + "text": "Venous thromboembolism (VTE) encompasses both deep vein thrombosis and pulmonary embolism, 1 ranking third globally as a prevalent vascular disorder associated with mortality. 2 This increases the mortality risk for patients and compounds the financial burden on health care services. Hence, the ongoing evaluation and assessment of VTE risk in clinical settings are crucial." + }, + { + "self_ref": "#/texts/5", + "parent": { + "$ref": "#/texts/3" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "Migraine, characterized by recurrent episodes of severe unilateral headaches accompanied by pulsating sensations and autonomic symptoms, affects approximately one billion individuals worldwide. 3 Several research studies indicate an increase in VTE incidence among migraine sufferers. 4 5 6 7 8 Hence, there is a significant need for further investigation to elucidate the causal relationship between VTE and migraines.", + "text": "Migraine, characterized by recurrent episodes of severe unilateral headaches accompanied by pulsating sensations and autonomic symptoms, affects approximately one billion individuals worldwide. 3 Several research studies indicate an increase in VTE incidence among migraine sufferers. 4 5 6 7 8 Hence, there is a significant need for further investigation to elucidate the causal relationship between VTE and migraines." + }, + { + "self_ref": "#/texts/6", + "parent": { + "$ref": "#/texts/3" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "Mendelian randomization (MR) is a methodology that utilizes genetic variants as instrumental variables (IVs) to explore the causal association between a modifiable exposure and a disease outcome. 9 By leveraging the random allocation and fixed nature of an individual's alleles at conception, this approach helps alleviate concerns regarding reverse causality and environmental confounders commonly encountered in traditional epidemiological methods.", + "text": "Mendelian randomization (MR) is a methodology that utilizes genetic variants as instrumental variables (IVs) to explore the causal association between a modifiable exposure and a disease outcome. 9 By leveraging the random allocation and fixed nature of an individual's alleles at conception, this approach helps alleviate concerns regarding reverse causality and environmental confounders commonly encountered in traditional epidemiological methods." + }, + { + "self_ref": "#/texts/7", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/8" + } + ], + "label": "section_header", + "prov": [], + "orig": "Research Methodology", + "text": "Research Methodology", + "level": 1 + }, + { + "self_ref": "#/texts/8", + "parent": { + "$ref": "#/texts/7" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "A rigorous bidirectional two-sample MR examination was implemented to probe the causal link between migraine and VTE risk, subsequent to a meticulous screening mechanism. For achieving credible estimations of MR causality, efficacious genetic variances serving as IVs must meet three central postulates: (I) relevance assumption, asserting that variations must demonstrate intimate association with the exposure element; (II) independence/exchangeability assumption, demanding no correlations be exhibited with any measured, unmeasured, or inconspicuous confounding elements germane to the researched correlation of interest; and (III) exclusion restriction assumption, maintaining that the variation affects the outcome exclusively through the exposure, devoid of alternative routes. 10 11 A single nucleotide polymorphism (SNP) refers to a genomic variant where a single nucleotide undergoes alteration at a specific locus within the DNA sequence. SNPs were employed as IVs in this study for estimating causal effects. The study's design is graphically portrayed in Fig. 1 , emphasizing the three fundamental postulates of MR. These postulates are of the utmost importance in affirming the validity of the MR examination and ensuring the reliability of the resultant causal inferences. 12", + "text": "A rigorous bidirectional two-sample MR examination was implemented to probe the causal link between migraine and VTE risk, subsequent to a meticulous screening mechanism. For achieving credible estimations of MR causality, efficacious genetic variances serving as IVs must meet three central postulates: (I) relevance assumption, asserting that variations must demonstrate intimate association with the exposure element; (II) independence/exchangeability assumption, demanding no correlations be exhibited with any measured, unmeasured, or inconspicuous confounding elements germane to the researched correlation of interest; and (III) exclusion restriction assumption, maintaining that the variation affects the outcome exclusively through the exposure, devoid of alternative routes. 10 11 A single nucleotide polymorphism (SNP) refers to a genomic variant where a single nucleotide undergoes alteration at a specific locus within the DNA sequence. SNPs were employed as IVs in this study for estimating causal effects. The study's design is graphically portrayed in Fig. 1 , emphasizing the three fundamental postulates of MR. These postulates are of the utmost importance in affirming the validity of the MR examination and ensuring the reliability of the resultant causal inferences. 12" + }, + { + "self_ref": "#/texts/9", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/10" + }, + { + "$ref": "#/texts/11" + } + ], + "label": "section_header", + "prov": [], + "orig": "Data Sources", + "text": "Data Sources", + "level": 1 + }, + { + "self_ref": "#/texts/10", + "parent": { + "$ref": "#/texts/9" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "Our SNPs are obtained from large-scale genome-wide association studies (GWAS) public databases. The exposure variable for this study was obtained from the largest migraine GWAS meta-analysis conducted by the IEU Open GWAS project, which can be accessed at https://gwas.mrcieu.ac.uk/datasets . 13 14 The outcome variable was derived from the largest VTE GWAS conducted by FinnGen, available at https://www.finngen.fi . 15 A comprehensive overview of the data sources used in our study can be found in Table 1 .", + "text": "Our SNPs are obtained from large-scale genome-wide association studies (GWAS) public databases. The exposure variable for this study was obtained from the largest migraine GWAS meta-analysis conducted by the IEU Open GWAS project, which can be accessed at https://gwas.mrcieu.ac.uk/datasets . 13 14 The outcome variable was derived from the largest VTE GWAS conducted by FinnGen, available at https://www.finngen.fi . 15 A comprehensive overview of the data sources used in our study can be found in Table 1 ." + }, + { + "self_ref": "#/texts/11", + "parent": { + "$ref": "#/texts/9" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "The variances in genetic variations and exposure distributions across diverse ethnicities could potentially result in spurious correlations between genetic variants and exposures. 16 Consequently, the migraine and VTE GWAS for this study were sourced from a homogeneous European populace to circumvent such inaccurate associations. It is crucial to highlight that the data harvested from public databases were current up to March 31, 2023. Given the public nature of all data utilized in our study, there was no necessity for further ethical approval.", + "text": "The variances in genetic variations and exposure distributions across diverse ethnicities could potentially result in spurious correlations between genetic variants and exposures. 16 Consequently, the migraine and VTE GWAS for this study were sourced from a homogeneous European populace to circumvent such inaccurate associations. It is crucial to highlight that the data harvested from public databases were current up to March 31, 2023. Given the public nature of all data utilized in our study, there was no necessity for further ethical approval." + }, + { + "self_ref": "#/texts/12", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/13" + } + ], + "label": "section_header", + "prov": [], + "orig": "Filtering Criteria of IVs", + "text": "Filtering Criteria of IVs", + "level": 1 + }, + { + "self_ref": "#/texts/13", + "parent": { + "$ref": "#/texts/12" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "To select appropriate SNPs as IVs, we followed standard assumptions of MR. First, we performed a screening process using the migraine GWAS summary data, applying a significance threshold of p \u2009<\u20095\u2009\u00d7\u200910 \u22128 (Assumption I). To ensure the independence of SNPs and mitigate the effects of linkage disequilibrium, we set the linkage disequilibrium coefficient ( r 2 ) to 0.001 and restricted the width of the linkage disequilibrium region to 10,000\u2009kb. PhenoScanner ( http://www.phenoscanner.medschl.cam.ac.uk/ ) serves as a versatile tool, enabling users to explore genetic variants, genes, and traits linked to a wide spectrum of phenotypes. 17 18 Utilizing PhenoScanner v2, we ruled out SNPs linked with potential confounding constituents and outcomes, thereby addressing assumptions II and III. Subsequently, we extracted the relevant SNPs from the VTE GWAS summary data, ensuring a minimum r 2 \u2009>\u20090.8 and replacing missing SNPs with highly linked SNPs. We excluded SNPs without replacement sites and palindromic SNPs and combined the information from both datasets. Finally, we excluded SNPs directly associated with VTE at a significance level of p \u2009<\u20095\u2009\u00d7\u200910 \u22128 and prioritized IVs with an F-statistic [F-statistic\u2009=\u2009(\u03b2/SE)2]\u2009>\u200910 to minimize weak instrument bias. 19", + "text": "To select appropriate SNPs as IVs, we followed standard assumptions of MR. First, we performed a screening process using the migraine GWAS summary data, applying a significance threshold of p \u2009<\u20095\u2009\u00d7\u200910 \u22128 (Assumption I). To ensure the independence of SNPs and mitigate the effects of linkage disequilibrium, we set the linkage disequilibrium coefficient ( r 2 ) to 0.001 and restricted the width of the linkage disequilibrium region to 10,000\u2009kb. PhenoScanner ( http://www.phenoscanner.medschl.cam.ac.uk/ ) serves as a versatile tool, enabling users to explore genetic variants, genes, and traits linked to a wide spectrum of phenotypes. 17 18 Utilizing PhenoScanner v2, we ruled out SNPs linked with potential confounding constituents and outcomes, thereby addressing assumptions II and III. Subsequently, we extracted the relevant SNPs from the VTE GWAS summary data, ensuring a minimum r 2 \u2009>\u20090.8 and replacing missing SNPs with highly linked SNPs. We excluded SNPs without replacement sites and palindromic SNPs and combined the information from both datasets. Finally, we excluded SNPs directly associated with VTE at a significance level of p \u2009<\u20095\u2009\u00d7\u200910 \u22128 and prioritized IVs with an F-statistic [F-statistic\u2009=\u2009(\u03b2/SE)2]\u2009>\u200910 to minimize weak instrument bias. 19" + }, + { + "self_ref": "#/texts/14", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/15" + } + ], + "label": "section_header", + "prov": [], + "orig": "Results", + "text": "Results", + "level": 1 + }, + { + "self_ref": "#/texts/15", + "parent": { + "$ref": "#/texts/14" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "In the present investigation, we capitalized on a bidirectional two-sample MR analysis in individuals of European descent to scrutinize the potential causative correlation between migraines and VTE risk. Our investigation implies a potential bidirectional pathogenic relationship between migraines and the risk of VTE, as supported by the specific analysis results detailed in Table 2 .", + "text": "In the present investigation, we capitalized on a bidirectional two-sample MR analysis in individuals of European descent to scrutinize the potential causative correlation between migraines and VTE risk. Our investigation implies a potential bidirectional pathogenic relationship between migraines and the risk of VTE, as supported by the specific analysis results detailed in Table 2 ." + }, + { + "self_ref": "#/texts/16", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/17" + } + ], + "label": "section_header", + "prov": [], + "orig": "Mendelian Randomization Analysis", + "text": "Mendelian Randomization Analysis", + "level": 1 + }, + { + "self_ref": "#/texts/17", + "parent": { + "$ref": "#/texts/16" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "During the IV screening process, it was identified that SNP r10908505 was associated with body mass index (BMI) in VTE. Considering the established association between BMI and VTE, 1 15 this violated Assumption III and the SNP was subsequently excluded. The VTE dataset ultimately consisted of 11 SNPs, with individual SNP F-statistics ranging from 29.76 to 96.77 (all >10), indicating a minimal potential for causal associations to be confounded by weak IV bias ( Supplementary Table S1 , available in the online version). The IVW model revealed that migraine was a statistically significant risk factor for the onset of VTE (odds ratio [OR]\u2009=\u200996.155, 95% confidence interval [CI]: 4.3422\u2013129.458, p \u2009=\u20090.004) ( Table 2 , Fig. 2A ). The scatter plot ( Fig. 2B ) and funnel plot ( Fig. 2C ) of migraine demonstrated a symmetrical distribution of all included SNPs, suggesting a limited possibility of bias affecting the causal association. The Cochran's Q test, conducted on the MR-Egger regression and the IVW method, yielded statistics of 5.610 and 5.973 ( p \u2009>\u20090.05), indicating the absence of heterogeneity among the SNPs ( Supplementary Table S2 , available in the online version). These findings suggest a positive correlation between the strength of association between the IVs and migraine, satisfying the assumptions of IV analysis. The MR-Egger regression analysis showed no statistically significant difference from zero for the intercept term ( p \u2009=\u20090.5617), indicating the absence of genetic pleiotropy among the SNPs ( Supplementary Table S3 , available in the online version). Additionally, the leave-one-out analysis revealed that the inclusion or exclusion of individual SNPs did not substantially impact the estimated causal effects, demonstrating the robustness of the MR results obtained in our investigation ( Fig. 2D ).", + "text": "During the IV screening process, it was identified that SNP r10908505 was associated with body mass index (BMI) in VTE. Considering the established association between BMI and VTE, 1 15 this violated Assumption III and the SNP was subsequently excluded. The VTE dataset ultimately consisted of 11 SNPs, with individual SNP F-statistics ranging from 29.76 to 96.77 (all >10), indicating a minimal potential for causal associations to be confounded by weak IV bias ( Supplementary Table S1 , available in the online version). The IVW model revealed that migraine was a statistically significant risk factor for the onset of VTE (odds ratio [OR]\u2009=\u200996.155, 95% confidence interval [CI]: 4.3422\u2013129.458, p \u2009=\u20090.004) ( Table 2 , Fig. 2A ). The scatter plot ( Fig. 2B ) and funnel plot ( Fig. 2C ) of migraine demonstrated a symmetrical distribution of all included SNPs, suggesting a limited possibility of bias affecting the causal association. The Cochran's Q test, conducted on the MR-Egger regression and the IVW method, yielded statistics of 5.610 and 5.973 ( p \u2009>\u20090.05), indicating the absence of heterogeneity among the SNPs ( Supplementary Table S2 , available in the online version). These findings suggest a positive correlation between the strength of association between the IVs and migraine, satisfying the assumptions of IV analysis. The MR-Egger regression analysis showed no statistically significant difference from zero for the intercept term ( p \u2009=\u20090.5617), indicating the absence of genetic pleiotropy among the SNPs ( Supplementary Table S3 , available in the online version). Additionally, the leave-one-out analysis revealed that the inclusion or exclusion of individual SNPs did not substantially impact the estimated causal effects, demonstrating the robustness of the MR results obtained in our investigation ( Fig. 2D )." + }, + { + "self_ref": "#/texts/18", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/19" + } + ], + "label": "section_header", + "prov": [], + "orig": "Reverse Mendelian Randomization Analysis", + "text": "Reverse Mendelian Randomization Analysis", + "level": 1 + }, + { + "self_ref": "#/texts/19", + "parent": { + "$ref": "#/texts/18" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "Upon screening for IVs in migraine patients, SNP rs6060308 was excluded due to its association with education 20 21 and violation of Assumption III. The final migraine dataset comprised 13 SNPs, with individual SNP F-statistics ranging from 30.60 to 354.34, all surpassing the threshold of 10 ( Supplementary Table S4 , available in the online version). Both the IVW and simple models supported VTE as a risk factor for migraine. The IVW analysis yielded an OR of 1.002 (95% CI: 1.000\u20131.004, p \u2009=\u20090.016), while the simple model yielded an OR of 1.003 (95% CI: 1.000\u20131.006, p \u2009=\u20090.047) ( Table 2 , Fig. 3A ). The scatter plot ( Fig. 3B ) and funnel plot ( Fig. 3C ) exhibited symmetrical distributions across all included SNPs, indicating minimal potential for biases affecting the causal association. Heterogeneity among SNPs was observed through the Cochran's Q test of the IVW method and MR-Egger regression, with Q statistics of 18.697 and 20.377, respectively, both with p \u2009<\u20090.05 ( Supplementary Table S2 , available in the online version). Therefore, careful consideration is necessary for the results obtained from the random-effects IVW method. MR-Egger regression analysis revealed a nonsignificant difference between the intercept term and zero ( p \u2009=\u20090.3655), suggesting the absence of genetic pleiotropy among the SNPs ( Supplementary Table S3 , available in the online version). Additionally, the leave-one-out analysis demonstrated that the inclusion or exclusion of individual SNPs had no substantial impact on the estimated causal effect ( Fig. 3D ).", + "text": "Upon screening for IVs in migraine patients, SNP rs6060308 was excluded due to its association with education 20 21 and violation of Assumption III. The final migraine dataset comprised 13 SNPs, with individual SNP F-statistics ranging from 30.60 to 354.34, all surpassing the threshold of 10 ( Supplementary Table S4 , available in the online version). Both the IVW and simple models supported VTE as a risk factor for migraine. The IVW analysis yielded an OR of 1.002 (95% CI: 1.000\u20131.004, p \u2009=\u20090.016), while the simple model yielded an OR of 1.003 (95% CI: 1.000\u20131.006, p \u2009=\u20090.047) ( Table 2 , Fig. 3A ). The scatter plot ( Fig. 3B ) and funnel plot ( Fig. 3C ) exhibited symmetrical distributions across all included SNPs, indicating minimal potential for biases affecting the causal association. Heterogeneity among SNPs was observed through the Cochran's Q test of the IVW method and MR-Egger regression, with Q statistics of 18.697 and 20.377, respectively, both with p \u2009<\u20090.05 ( Supplementary Table S2 , available in the online version). Therefore, careful consideration is necessary for the results obtained from the random-effects IVW method. MR-Egger regression analysis revealed a nonsignificant difference between the intercept term and zero ( p \u2009=\u20090.3655), suggesting the absence of genetic pleiotropy among the SNPs ( Supplementary Table S3 , available in the online version). Additionally, the leave-one-out analysis demonstrated that the inclusion or exclusion of individual SNPs had no substantial impact on the estimated causal effect ( Fig. 3D )." + }, + { + "self_ref": "#/texts/20", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/21" + }, + { + "$ref": "#/texts/22" + }, + { + "$ref": "#/texts/23" + } + ], + "label": "section_header", + "prov": [], + "orig": "Discussion", + "text": "Discussion", + "level": 1 + }, + { + "self_ref": "#/texts/21", + "parent": { + "$ref": "#/texts/20" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "VTE constitutes a grave health hazard to patients, necessitating rigorous clinical surveillance. Distinct from common VTE risk factors such as cancer, 22 diabetes, 23 lupus, 24 and antiphospholipid syndrome, 25 migraines remain absent from prevalent VTE guidelines or advisories. The MR findings from our research provide first-of-its-kind evidence of a causal nexus between migraines and VTE in individuals of European descent, signaling that migraines potently predispose individuals to VTE (IVW OR\u2009=\u200996.155, 95% CI: 4.342\u20132129.458), while VTE presents a weak risk factor for migraines (IVW OR\u2009=\u20091.002, 95% CI: 1.000\u20131.004). Given the robustness of the IVW analysis, the MR analysis is considered reliable.", + "text": "VTE constitutes a grave health hazard to patients, necessitating rigorous clinical surveillance. Distinct from common VTE risk factors such as cancer, 22 diabetes, 23 lupus, 24 and antiphospholipid syndrome, 25 migraines remain absent from prevalent VTE guidelines or advisories. The MR findings from our research provide first-of-its-kind evidence of a causal nexus between migraines and VTE in individuals of European descent, signaling that migraines potently predispose individuals to VTE (IVW OR\u2009=\u200996.155, 95% CI: 4.342\u20132129.458), while VTE presents a weak risk factor for migraines (IVW OR\u2009=\u20091.002, 95% CI: 1.000\u20131.004). Given the robustness of the IVW analysis, the MR analysis is considered reliable." + }, + { + "self_ref": "#/texts/22", + "parent": { + "$ref": "#/texts/20" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "Our MR analysis discloses a potential causal association between individuals suffering from migraines and VTE incidence, with a risk rate 96.155 times higher in comparison to nonmigraine sufferers. Previous observational endeavors investigating VTE risk amidst migraine patients have been scant and have yielded discordant outcomes, complicating the provision of clinical directives. 26 27 In a longitudinal inquiry with a 19-year follow-up, Adelborg et al discerned a heightened VTE risk in individuals afflicted with migraines. 4 Peng et al's prospective clinical study unveiled a more than double VTE risk increase in migraine patients during a 4-year follow-up. 5 Schwaiger et al's cohort study, incorporating 574 patients aged 55 to 94, observed a significant escalation in VTE risk among elderly individuals with migraines. 6 28 Bushnell et al uncovered a tripled VTE risk during pregnancy in migraine-affected women. 29 Although these studies validate a potential correlation between migraines and VTE, their persuasiveness is restricted due to other prominent VTE risk factors (such as advanced age and pregnancy) and contradicting findings in existing observational studies. For instance, Folsom et al observed no significant correlation between migraines and VTE risk in elderly individuals, contradicting Schwaiger's conclusion. 7 However, he clarified that the cohort incorporated in his study did not undergo rigorous neurological migraine diagnosis, possibly leading to confounding biases and generating findings that contradict other scholarly endeavors. 7 These contradictions originate from observational studies examining associations rather than causal relationships, invariably involving a confluence of various confounding factors. MR, leveraging SNPs as IVs to ascertain the causal link between migraines and VTE risk, can eliminate other confounding elements resulting in more reliable outcomes. Based on this finding, monitoring VTE risk among migraine patients in clinical practice is recommended.", + "text": "Our MR analysis discloses a potential causal association between individuals suffering from migraines and VTE incidence, with a risk rate 96.155 times higher in comparison to nonmigraine sufferers. Previous observational endeavors investigating VTE risk amidst migraine patients have been scant and have yielded discordant outcomes, complicating the provision of clinical directives. 26 27 In a longitudinal inquiry with a 19-year follow-up, Adelborg et al discerned a heightened VTE risk in individuals afflicted with migraines. 4 Peng et al's prospective clinical study unveiled a more than double VTE risk increase in migraine patients during a 4-year follow-up. 5 Schwaiger et al's cohort study, incorporating 574 patients aged 55 to 94, observed a significant escalation in VTE risk among elderly individuals with migraines. 6 28 Bushnell et al uncovered a tripled VTE risk during pregnancy in migraine-affected women. 29 Although these studies validate a potential correlation between migraines and VTE, their persuasiveness is restricted due to other prominent VTE risk factors (such as advanced age and pregnancy) and contradicting findings in existing observational studies. For instance, Folsom et al observed no significant correlation between migraines and VTE risk in elderly individuals, contradicting Schwaiger's conclusion. 7 However, he clarified that the cohort incorporated in his study did not undergo rigorous neurological migraine diagnosis, possibly leading to confounding biases and generating findings that contradict other scholarly endeavors. 7 These contradictions originate from observational studies examining associations rather than causal relationships, invariably involving a confluence of various confounding factors. MR, leveraging SNPs as IVs to ascertain the causal link between migraines and VTE risk, can eliminate other confounding elements resulting in more reliable outcomes. Based on this finding, monitoring VTE risk among migraine patients in clinical practice is recommended." + }, + { + "self_ref": "#/texts/23", + "parent": { + "$ref": "#/texts/20" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "Our endeavor seeks to offer a preliminary examination of the potential mechanisms underlying the interplay between migraines and VTE. The incidence of VTE habitually involves Virchow's triad, encompassing endothelial damage, venous stasis, and hypercoagulability. 30 On the genetic association front, the SNPs rs9349379 and rs11172113, acting as IVs for migraines, display relevance to the mechanisms underpinning VTE. Prior research earmarks the gene corresponding to rs9349379, PHACTR1 ( Supplementary Table S1 , available in the online version), as a catalyst for the upregulation of EDN1 . 31 Elevated EDN1 expression is associated with increased VTE susceptibility, 32 and EDN1 inhibition can diminish VTE incidence, 33 potentially through Endothelin 1-mediated vascular endothelial inflammation leading to thrombus formation. 34 The SNP rs11172113 corresponds to the gene LRP1 ( Supplementary Table S1 , available in the online version). 35 LRP1 can facilitate the upregulation of FVIII , culminating in an increase in plasma coagulation factor VIII, 36 thereby leading to heightened blood coagulability and an associated elevated VTE risk. 37 While various studies propose divergent mechanisms, they collectively signal that migraines can instigate a hypercoagulable state, thereby promoting the onset of VTE. The SNPs serving as IVs for VTE did not unveil any association with the onset of migraines. This corroborates our MR analysis outcomes, indicating that VTE is merely a weak risk factor for migraines.", + "text": "Our endeavor seeks to offer a preliminary examination of the potential mechanisms underlying the interplay between migraines and VTE. The incidence of VTE habitually involves Virchow's triad, encompassing endothelial damage, venous stasis, and hypercoagulability. 30 On the genetic association front, the SNPs rs9349379 and rs11172113, acting as IVs for migraines, display relevance to the mechanisms underpinning VTE. Prior research earmarks the gene corresponding to rs9349379, PHACTR1 ( Supplementary Table S1 , available in the online version), as a catalyst for the upregulation of EDN1 . 31 Elevated EDN1 expression is associated with increased VTE susceptibility, 32 and EDN1 inhibition can diminish VTE incidence, 33 potentially through Endothelin 1-mediated vascular endothelial inflammation leading to thrombus formation. 34 The SNP rs11172113 corresponds to the gene LRP1 ( Supplementary Table S1 , available in the online version). 35 LRP1 can facilitate the upregulation of FVIII , culminating in an increase in plasma coagulation factor VIII, 36 thereby leading to heightened blood coagulability and an associated elevated VTE risk. 37 While various studies propose divergent mechanisms, they collectively signal that migraines can instigate a hypercoagulable state, thereby promoting the onset of VTE. The SNPs serving as IVs for VTE did not unveil any association with the onset of migraines. This corroborates our MR analysis outcomes, indicating that VTE is merely a weak risk factor for migraines." + }, + { + "self_ref": "#/texts/24", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "section_header", + "prov": [], + "orig": "Tables", + "text": "Tables", + "level": 1 + }, + { + "self_ref": "#/texts/25", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [], + "orig": "Table 1 Description of GWAS used for each phenotype", + "text": "Table 1 Description of GWAS used for each phenotype" + }, + { + "self_ref": "#/texts/26", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [], + "orig": "Table 2 Mendelian randomization regression causal association results", + "text": "Table 2 Mendelian randomization regression causal association results" + }, + { + "self_ref": "#/texts/27", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "section_header", + "prov": [], + "orig": "Figures", + "text": "Figures", + "level": 1 + }, + { + "self_ref": "#/texts/28", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [], + "orig": "Fig. 1 This figure illustrates the research methodology for the bidirectional Mendelian randomization analysis concerning migraine and VTE. Assumption I: relevance assumption; Assumption II: independence/exchangeability assumption; Assumption III: exclusion restriction assumption.", + "text": "Fig. 1 This figure illustrates the research methodology for the bidirectional Mendelian randomization analysis concerning migraine and VTE. Assumption I: relevance assumption; Assumption II: independence/exchangeability assumption; Assumption III: exclusion restriction assumption." + }, + { + "self_ref": "#/texts/29", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [], + "orig": "Fig. 2 This figure explores the correlation between migraine risk and VTE, validating the presence of heterogeneity and pleiotropy. (A) The forest plot displays individual IVs, with each point flanked by lines that depict the 95% confidence interval. The effect of SNPs on the exposure (migraine) is shown along thex-axis, whereas their impact on the outcome (VTE) is presented on they-axis. A fitted line reflects the Mendelian randomization analysis results. (B) A scatter plot visualizes each IV, with the SNP effects on both exposure and outcome similar to that of the forest plot. Again, a fitted line represents the Mendelian randomization results. (C) The funnel plot positions the coefficient \u03b2IVfrom the instrumental variable regression on thex-axis to demonstrate the association's strength, while the inverse of its standard error (1/SEIV\u2020) on they-axis indicates the precision of this estimate. (D) A leave-one-out sensitivity analysis is shown on thex-axis, charting the estimated effects from the Mendelian randomization analysis. With each SNP associated with migraine successively excluded, the analysis recalculates the Mendelian randomization effect estimates, culminating with the \u201call\u201d category that encompasses all considered SNPs. IV, instrumental variable; SNP, single nucleotide polymorphisms; VTE, venous thromboembolism; SE, standard error.\u2020SE is the standard error of \u03b2.", + "text": "Fig. 2 This figure explores the correlation between migraine risk and VTE, validating the presence of heterogeneity and pleiotropy. (A) The forest plot displays individual IVs, with each point flanked by lines that depict the 95% confidence interval. The effect of SNPs on the exposure (migraine) is shown along thex-axis, whereas their impact on the outcome (VTE) is presented on they-axis. A fitted line reflects the Mendelian randomization analysis results. (B) A scatter plot visualizes each IV, with the SNP effects on both exposure and outcome similar to that of the forest plot. Again, a fitted line represents the Mendelian randomization results. (C) The funnel plot positions the coefficient \u03b2IVfrom the instrumental variable regression on thex-axis to demonstrate the association's strength, while the inverse of its standard error (1/SEIV\u2020) on they-axis indicates the precision of this estimate. (D) A leave-one-out sensitivity analysis is shown on thex-axis, charting the estimated effects from the Mendelian randomization analysis. With each SNP associated with migraine successively excluded, the analysis recalculates the Mendelian randomization effect estimates, culminating with the \u201call\u201d category that encompasses all considered SNPs. IV, instrumental variable; SNP, single nucleotide polymorphisms; VTE, venous thromboembolism; SE, standard error.\u2020SE is the standard error of \u03b2." + }, + { + "self_ref": "#/texts/30", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [], + "orig": "Fig. 3 (A\u2013D) This figure presents the relationship between VTE risk and migraine, also verifying heterogeneity and pleiotropy through similar graphic representations as detailed forFig. 2, but with the exposure and outcome reversed\u2014SNPs' effect on VTE and outcome on migraine. SNP, single nucleotide polymorphisms; VTE, venous thromboembolism.", + "text": "Fig. 3 (A\u2013D) This figure presents the relationship between VTE risk and migraine, also verifying heterogeneity and pleiotropy through similar graphic representations as detailed forFig. 2, but with the exposure and outcome reversed\u2014SNPs' effect on VTE and outcome on migraine. SNP, single nucleotide polymorphisms; VTE, venous thromboembolism." + }, + { + "self_ref": "#/texts/31", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "section_header", + "prov": [], + "orig": "References", + "text": "References", + "level": 1 + }, + { + "self_ref": "#/texts/32", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "F Khan; T Tritschler; S R Kahn; M A Rodger. Venous thromboembolism. Lancet (2021)", + "text": "F Khan; T Tritschler; S R Kahn; M A Rodger. Venous thromboembolism. Lancet (2021)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/33", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "J A Heit. Epidemiology of venous thromboembolism. Nat Rev Cardiol (2015)", + "text": "J A Heit. Epidemiology of venous thromboembolism. Nat Rev Cardiol (2015)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/34", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": ". Headache Classification Committee of the International Headache Society (IHS) The International Classification of Headache Disorders, 3rd edition. Cephalalgia (2018)", + "text": ". Headache Classification Committee of the International Headache Society (IHS) The International Classification of Headache Disorders, 3rd edition. Cephalalgia (2018)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/35", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "K Adelborg; S K Sz\u00e9pligeti; L Holland-Bill. Migraine and risk of cardiovascular diseases: Danish population based matched cohort study. BMJ (2018)", + "text": "K Adelborg; S K Sz\u00e9pligeti; L Holland-Bill. Migraine and risk of cardiovascular diseases: Danish population based matched cohort study. BMJ (2018)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/36", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "K P Peng; Y T Chen; J L Fuh; C H Tang; S J Wang. Association between migraine and risk of venous thromboembolism: a nationwide cohort study. Headache (2016)", + "text": "K P Peng; Y T Chen; J L Fuh; C H Tang; S J Wang. Association between migraine and risk of venous thromboembolism: a nationwide cohort study. Headache (2016)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/37", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "S Sacco; A Carolei. Burden of atherosclerosis and risk of venous thromboembolism in patients with migraine. Neurology (2009)", + "text": "S Sacco; A Carolei. Burden of atherosclerosis and risk of venous thromboembolism in patients with migraine. Neurology (2009)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/38", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "A R Folsom; P L Lutsey; J R Misialek; M Cushman. A prospective study of migraine history and venous thromboembolism in older adults. Res Pract Thromb Haemost (2019)", + "text": "A R Folsom; P L Lutsey; J R Misialek; M Cushman. A prospective study of migraine history and venous thromboembolism in older adults. Res Pract Thromb Haemost (2019)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/39", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "I Y Elgendy; S E Nadeau; C N Bairey Merz; C J Pepine. Migraine headache: an under-appreciated risk factor for cardiovascular disease in women. J Am Heart Assoc (2019)", + "text": "I Y Elgendy; S E Nadeau; C N Bairey Merz; C J Pepine. Migraine headache: an under-appreciated risk factor for cardiovascular disease in women. J Am Heart Assoc (2019)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/40", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "C A Emdin; A V Khera; S Kathiresan. Mendelian randomization. JAMA (2017)", + "text": "C A Emdin; A V Khera; S Kathiresan. Mendelian randomization. JAMA (2017)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/41", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "T Karlsson; F Hadizadeh; M Rask-Andersen; \u00c5 Johansson; W E Ek. Body mass index and the risk of rheumatic disease: linear and nonlinear Mendelian randomization analyses. Arthritis Rheumatol (2023)", + "text": "T Karlsson; F Hadizadeh; M Rask-Andersen; \u00c5 Johansson; W E Ek. Body mass index and the risk of rheumatic disease: linear and nonlinear Mendelian randomization analyses. Arthritis Rheumatol (2023)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/42", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "T Lawler; S Warren Andersen. Serum 25-hydroxyvitamin D and cancer risk: a systematic review of mendelian randomization studies. Nutrients (2023)", + "text": "T Lawler; S Warren Andersen. Serum 25-hydroxyvitamin D and cancer risk: a systematic review of mendelian randomization studies. Nutrients (2023)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/43", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "S Burgess; A S Butterworth; J R Thompson. Beyond Mendelian randomization: how to interpret evidence of shared genetic predictors. J Clin Epidemiol (2016)", + "text": "S Burgess; A S Butterworth; J R Thompson. Beyond Mendelian randomization: how to interpret evidence of shared genetic predictors. J Clin Epidemiol (2016)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/44", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "C Sudlow; J Gallacher; N Allen. UK biobank: an open access resource for identifying the causes of a wide range of complex diseases of middle and old age. PLoS Med (2015)", + "text": "C Sudlow; J Gallacher; N Allen. UK biobank: an open access resource for identifying the causes of a wide range of complex diseases of middle and old age. PLoS Med (2015)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/45", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "M S Lyon; S J Andrews; B Elsworth; T R Gaunt; G Hemani; E Marcora. The variant call format provides efficient and robust storage of GWAS summary statistics. Genome Biol (2021)", + "text": "M S Lyon; S J Andrews; B Elsworth; T R Gaunt; G Hemani; E Marcora. The variant call format provides efficient and robust storage of GWAS summary statistics. Genome Biol (2021)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/46", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "M I Kurki; J Karjalainen; P Palta. FinnGen provides genetic insights from a well-phenotyped isolated population. Nature (2023)", + "text": "M I Kurki; J Karjalainen; P Palta. FinnGen provides genetic insights from a well-phenotyped isolated population. Nature (2023)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/47", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "E Sanderson; M M Glymour; M V Holmes. Mendelian randomization. Nat Rev Methods Primers (2022)", + "text": "E Sanderson; M M Glymour; M V Holmes. Mendelian randomization. Nat Rev Methods Primers (2022)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/48", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "J R Staley; J Blackshaw; M A Kamat. PhenoScanner: a database of human genotype-phenotype associations. Bioinformatics (2016)", + "text": "J R Staley; J Blackshaw; M A Kamat. PhenoScanner: a database of human genotype-phenotype associations. Bioinformatics (2016)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/49", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "M A Kamat; J A Blackshaw; R Young. PhenoScanner V2: an expanded tool for searching human genotype-phenotype associations. Bioinformatics (2019)", + "text": "M A Kamat; J A Blackshaw; R Young. PhenoScanner V2: an expanded tool for searching human genotype-phenotype associations. Bioinformatics (2019)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/50", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "S Burgess; S G Thompson. Mendelian Randomization: Methods for Causal Inference Using Genetic Variants. (2021)", + "text": "S Burgess; S G Thompson. Mendelian Randomization: Methods for Causal Inference Using Genetic Variants. (2021)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/51", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "A May; L H Schulte. Chronic migraine: risk factors, mechanisms and treatment. Nat Rev Neurol (2016)", + "text": "A May; L H Schulte. Chronic migraine: risk factors, mechanisms and treatment. Nat Rev Neurol (2016)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/52", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "D W Dodick. Migraine. Lancet (2018)", + "text": "D W Dodick. Migraine. Lancet (2018)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/53", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "A A Khorana; N Mackman; A Falanga. Cancer-associated venous thromboembolism. Nat Rev Dis Primers (2022)", + "text": "A A Khorana; N Mackman; A Falanga. Cancer-associated venous thromboembolism. Nat Rev Dis Primers (2022)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/54", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "E J Bell; A R Folsom; P L Lutsey. Diabetes mellitus and venous thromboembolism: a systematic review and meta-analysis. Diabetes Res Clin Pract (2016)", + "text": "E J Bell; A R Folsom; P L Lutsey. Diabetes mellitus and venous thromboembolism: a systematic review and meta-analysis. Diabetes Res Clin Pract (2016)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/55", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "S Bhoelan; J Borjas Howard; V Tichelaar. Recurrence risk of venous thromboembolism associated with systemic lupus erythematosus: a retrospective cohort study. Res Pract Thromb Haemost (2022)", + "text": "S Bhoelan; J Borjas Howard; V Tichelaar. Recurrence risk of venous thromboembolism associated with systemic lupus erythematosus: a retrospective cohort study. Res Pract Thromb Haemost (2022)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/56", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "V Pengo; G Denas. Antiphospholipid syndrome in patients with venous thromboembolism. Semin Thromb Hemost (2023)", + "text": "V Pengo; G Denas. Antiphospholipid syndrome in patients with venous thromboembolism. Semin Thromb Hemost (2023)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/57", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "L Maitrot-Mantelet; M H Horellou; H Massiou; J Conard; A Gompel; G Plu-Bureau. Should women suffering from migraine with aura be screened for biological thrombophilia?: results from a cross-sectional French study. Thromb Res (2014)", + "text": "L Maitrot-Mantelet; M H Horellou; H Massiou; J Conard; A Gompel; G Plu-Bureau. Should women suffering from migraine with aura be screened for biological thrombophilia?: results from a cross-sectional French study. Thromb Res (2014)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/58", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "G E Tietjen; S A Collins. Hypercoagulability and migraine. Headache (2018)", + "text": "G E Tietjen; S A Collins. Hypercoagulability and migraine. Headache (2018)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/59", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "J Schwaiger; S Kiechl; H Stockner. Burden of atherosclerosis and risk of venous thromboembolism in patients with migraine. Neurology (2008)", + "text": "J Schwaiger; S Kiechl; H Stockner. Burden of atherosclerosis and risk of venous thromboembolism in patients with migraine. Neurology (2008)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/60", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "C D Bushnell; M Jamison; A H James. Migraines during pregnancy linked to stroke and vascular diseases: US population based case-control study. BMJ (2009)", + "text": "C D Bushnell; M Jamison; A H James. Migraines during pregnancy linked to stroke and vascular diseases: US population based case-control study. BMJ (2009)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/61", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "W Y Ding; M B Protty; I G Davies; G YH Lip. Relationship between lipoproteins, thrombosis, and atrial fibrillation. Cardiovasc Res (2022)", + "text": "W Y Ding; M B Protty; I G Davies; G YH Lip. Relationship between lipoproteins, thrombosis, and atrial fibrillation. Cardiovasc Res (2022)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/62", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "R M Gupta; J Hadaya; A Trehan. A genetic variant associated with five vascular diseases is a distal regulator of endothelin-1 gene expression. Cell (2017)", + "text": "R M Gupta; J Hadaya; A Trehan. A genetic variant associated with five vascular diseases is a distal regulator of endothelin-1 gene expression. Cell (2017)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/63", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "B Kumari; A Prabhakar; A Sahu. Endothelin-1 gene polymorphism and its level predict the risk of venous thromboembolism in male indian population. Clin Appl Thromb Hemost (2017)", + "text": "B Kumari; A Prabhakar; A Sahu. Endothelin-1 gene polymorphism and its level predict the risk of venous thromboembolism in male indian population. Clin Appl Thromb Hemost (2017)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/64", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "Y Zhang; J Liu; W Jia. AGEs/RAGE blockade downregulates Endothenin-1 (ET-1), mitigating Human Umbilical Vein Endothelial Cells (HUVEC) injury in deep vein thrombosis (DVT). Bioengineered (2021)", + "text": "Y Zhang; J Liu; W Jia. AGEs/RAGE blockade downregulates Endothenin-1 (ET-1), mitigating Human Umbilical Vein Endothelial Cells (HUVEC) injury in deep vein thrombosis (DVT). Bioengineered (2021)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/65", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "J Padilla; A J Carpenter; N A Das. TRAF3IP2 mediates high glucose-induced endothelin-1 production as well as endothelin-1-induced inflammation in endothelial cells. Am J Physiol Heart Circ Physiol (2018)", + "text": "J Padilla; A J Carpenter; N A Das. TRAF3IP2 mediates high glucose-induced endothelin-1 production as well as endothelin-1-induced inflammation in endothelial cells. Am J Physiol Heart Circ Physiol (2018)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/66", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "L Liu; C Jouve; J Sebastien Hulot; A Georges; N Bouatia-Naji. Epigenetic regulation at LRP1 risk locus for cardiovascular diseases and assessment of cellular function in hiPSC derived smooth muscle cells. Cardiovasc Res (2022)", + "text": "L Liu; C Jouve; J Sebastien Hulot; A Georges; N Bouatia-Naji. Epigenetic regulation at LRP1 risk locus for cardiovascular diseases and assessment of cellular function in hiPSC derived smooth muscle cells. Cardiovasc Res (2022)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/67", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "R Vormittag; P Bencur; C Ay. Low-density lipoprotein receptor-related protein 1 polymorphism 663\u2009C > T affects clotting factor VIII activity and increases the risk of venous thromboembolism. J Thromb Haemost (2007)", + "text": "R Vormittag; P Bencur; C Ay. Low-density lipoprotein receptor-related protein 1 polymorphism 663\u2009C > T affects clotting factor VIII activity and increases the risk of venous thromboembolism. J Thromb Haemost (2007)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/68", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "H Chun; J H Kurasawa; P Olivares. Characterization of interaction between blood coagulation factor VIII and LRP1 suggests dynamic binding by alternating complex contacts. J Thromb Haemost (2022)", + "text": "H Chun; J H Kurasawa; P Olivares. Characterization of interaction between blood coagulation factor VIII and LRP1 suggests dynamic binding by alternating complex contacts. J Thromb Haemost (2022)", + "enumerated": false, + "marker": "-" + } + ], + "pictures": [ + { + "self_ref": "#/pictures/0", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "picture", + "prov": [], + "captions": [ + { + "$ref": "#/texts/28" + } + ], + "references": [], + "footnotes": [], + "annotations": [] + }, + { + "self_ref": "#/pictures/1", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "picture", + "prov": [], + "captions": [ + { + "$ref": "#/texts/29" + } + ], + "references": [], + "footnotes": [], + "annotations": [] + }, + { + "self_ref": "#/pictures/2", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "picture", + "prov": [], + "captions": [ + { + "$ref": "#/texts/30" + } + ], + "references": [], + "footnotes": [], + "annotations": [] + } + ], + "tables": [ + { + "self_ref": "#/tables/0", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "table", + "prov": [], + "captions": [ + { + "$ref": "#/texts/25" + } + ], + "references": [], + "footnotes": [], + "data": { + "table_cells": [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "Variable", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "Sample size", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "ID", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "Population", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "Database", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "Year", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "Migraine", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "337159", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "ukb-a-87", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "European", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "IEU Open GWAS project", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "2017", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "VTE", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "218792", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "finn-b-I9_VTE", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "European", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "FinnGen", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "2021", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + "num_rows": 3, + "num_cols": 6, + "grid": [ + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "Variable", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "Sample size", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "ID", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "Population", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "Database", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "Year", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "Migraine", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "337159", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "ukb-a-87", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "European", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "IEU Open GWAS project", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "2017", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "VTE", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "218792", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "finn-b-I9_VTE", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "European", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "FinnGen", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "2021", + "column_header": false, + "row_header": false, + "row_section": false + } + ] + ] + } + }, + { + "self_ref": "#/tables/1", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "table", + "prov": [], + "captions": [ + { + "$ref": "#/texts/26" + } + ], + "references": [], + "footnotes": [], + "data": { + "table_cells": [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "Exposures", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "SNPs (no.)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "Methods", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "\u03b2", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "SE", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "OR (95% CI)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "\np\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "Migraine", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "11", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "IVW", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "4.566", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "1.580", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "96.155 (4.342\u20132129.458)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.004", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 2, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 4, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "VTE", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 2, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 4, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "12", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "IVW", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.002", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.001", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "1.002 (1.000\u20131.004);", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.016", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "Simple mode", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.003", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.001", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "1.003 (1.000\u20131.006)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.047", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + "num_rows": 4, + "num_cols": 7, + "grid": [ + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "Exposures", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "SNPs (no.)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "Methods", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "\u03b2", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "SE", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "OR (95% CI)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "\np\n", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "Migraine", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "11", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "IVW", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "4.566", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "1.580", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "96.155 (4.342\u20132129.458)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.004", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 2, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 4, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "VTE", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 2, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 4, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "12", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "IVW", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.002", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.001", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "1.002 (1.000\u20131.004);", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.016", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 2, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 4, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "VTE", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 2, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 4, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "12", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "Simple mode", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "0.003", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.001", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "1.003 (1.000\u20131.006)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.047", + "column_header": false, + "row_header": false, + "row_section": false + } + ] + ] + } + } + ], + "key_value_items": [], + "pages": {} +} \ No newline at end of file diff --git a/tests/data/groundtruth/docling_v2/10-1055-a-2313-0311.nxml.md b/tests/data/groundtruth/docling_v2/10-1055-a-2313-0311.nxml.md new file mode 100644 index 00000000..ae44bce4 --- /dev/null +++ b/tests/data/groundtruth/docling_v2/10-1055-a-2313-0311.nxml.md @@ -0,0 +1,118 @@ +# Exploring the Two-Way Link between Migraines and Venous Thromboembolism: A Bidirectional Two-Sample Mendelian Randomization Study + +Yang Wang; Vascular Surgery, Shandong Public Health Clinical Center, Shandong University, Jinan, China; Xiaofang Hu; Department of Neurology, Shandong Public Health Clinical Center, Shandong University, Jinan, China; Xiaoqing Wang; Interventional Department, Shandong Public Health Clinical Center, Shandong University, Jinan, China; Lili Li; Interventional Department, Shandong Public Health Clinical Center, Shandong University, Jinan, China; Peng Lou; Vascular Surgery, Shandong Public Health Clinical Center, Shandong University, Jinan, China; Zhaoxuan Liu; Vascular Surgery, Shandong First Medical University affiliated Central Hospital, Jinan, China + +Background The objective of this study is to utilize Mendelian randomization to scrutinize the mutual causality between migraine and venous thromboembolism (VTE) thereby addressing the heterogeneity and inconsistency that were observed in prior observational studies concerning the potential interrelation of the two conditions. Methods Employing a bidirectional Mendelian randomization approach, the study explored the link between migraine and VTE, incorporating participants of European descent from a large-scale meta-analysis. An inverse-variance weighted (IVW) regression model, with random-effects, leveraging single nucleotide polymorphisms (SNPs) as instrumental variables was utilized to endorse the mutual causality between migraine and VTE. SNP heterogeneity was evaluated using Cochran's Q-test and to account for multiple testing, correction was implemented using the intercept of the MR-Egger method, and a leave-one-out analysis. Results The IVW model unveiled a statistically considerable causal link between migraine and the development of VTE (odds ratio [OR] = 96.155, 95% confidence interval [CI]: 4.342–2129.458, p = 0.004), implying that migraine poses a strong risk factor for VTE development. Conversely, both IVW and simple model outcomes indicated that VTE poses as a weaker risk factor for migraine (IVW OR = 1.002, 95% CI: 1.000–1.004, p = 0.016). The MR-Egger regression analysis denoted absence of evidence for genetic pleiotropy among the SNPs while the durability of our Mendelian randomization results was vouched by the leave-one-out sensitivity analysis. Conclusion The findings of this Mendelian randomization assessment provide substantiation for a reciprocal causative association between migraine and VTE within the European population. + +## Introduction + +Venous thromboembolism (VTE) encompasses both deep vein thrombosis and pulmonary embolism, 1 ranking third globally as a prevalent vascular disorder associated with mortality. 2 This increases the mortality risk for patients and compounds the financial burden on health care services. Hence, the ongoing evaluation and assessment of VTE risk in clinical settings are crucial. + +Migraine, characterized by recurrent episodes of severe unilateral headaches accompanied by pulsating sensations and autonomic symptoms, affects approximately one billion individuals worldwide. 3 Several research studies indicate an increase in VTE incidence among migraine sufferers. 4 5 6 7 8 Hence, there is a significant need for further investigation to elucidate the causal relationship between VTE and migraines. + +Mendelian randomization (MR) is a methodology that utilizes genetic variants as instrumental variables (IVs) to explore the causal association between a modifiable exposure and a disease outcome. 9 By leveraging the random allocation and fixed nature of an individual's alleles at conception, this approach helps alleviate concerns regarding reverse causality and environmental confounders commonly encountered in traditional epidemiological methods. + +## Research Methodology + +A rigorous bidirectional two-sample MR examination was implemented to probe the causal link between migraine and VTE risk, subsequent to a meticulous screening mechanism. For achieving credible estimations of MR causality, efficacious genetic variances serving as IVs must meet three central postulates: (I) relevance assumption, asserting that variations must demonstrate intimate association with the exposure element; (II) independence/exchangeability assumption, demanding no correlations be exhibited with any measured, unmeasured, or inconspicuous confounding elements germane to the researched correlation of interest; and (III) exclusion restriction assumption, maintaining that the variation affects the outcome exclusively through the exposure, devoid of alternative routes. 10 11 A single nucleotide polymorphism (SNP) refers to a genomic variant where a single nucleotide undergoes alteration at a specific locus within the DNA sequence. SNPs were employed as IVs in this study for estimating causal effects. The study's design is graphically portrayed in Fig. 1 , emphasizing the three fundamental postulates of MR. These postulates are of the utmost importance in affirming the validity of the MR examination and ensuring the reliability of the resultant causal inferences. 12 + +## Data Sources + +Our SNPs are obtained from large-scale genome-wide association studies (GWAS) public databases. The exposure variable for this study was obtained from the largest migraine GWAS meta-analysis conducted by the IEU Open GWAS project, which can be accessed at https://gwas.mrcieu.ac.uk/datasets . 13 14 The outcome variable was derived from the largest VTE GWAS conducted by FinnGen, available at https://www.finngen.fi . 15 A comprehensive overview of the data sources used in our study can be found in Table 1 . + +The variances in genetic variations and exposure distributions across diverse ethnicities could potentially result in spurious correlations between genetic variants and exposures. 16 Consequently, the migraine and VTE GWAS for this study were sourced from a homogeneous European populace to circumvent such inaccurate associations. It is crucial to highlight that the data harvested from public databases were current up to March 31, 2023. Given the public nature of all data utilized in our study, there was no necessity for further ethical approval. + +## Filtering Criteria of IVs + +To select appropriate SNPs as IVs, we followed standard assumptions of MR. First, we performed a screening process using the migraine GWAS summary data, applying a significance threshold of p  < 5 × 10 −8 (Assumption I). To ensure the independence of SNPs and mitigate the effects of linkage disequilibrium, we set the linkage disequilibrium coefficient ( r 2 ) to 0.001 and restricted the width of the linkage disequilibrium region to 10,000 kb. PhenoScanner ( http://www.phenoscanner.medschl.cam.ac.uk/ ) serves as a versatile tool, enabling users to explore genetic variants, genes, and traits linked to a wide spectrum of phenotypes. 17 18 Utilizing PhenoScanner v2, we ruled out SNPs linked with potential confounding constituents and outcomes, thereby addressing assumptions II and III. Subsequently, we extracted the relevant SNPs from the VTE GWAS summary data, ensuring a minimum r 2  > 0.8 and replacing missing SNPs with highly linked SNPs. We excluded SNPs without replacement sites and palindromic SNPs and combined the information from both datasets. Finally, we excluded SNPs directly associated with VTE at a significance level of p  < 5 × 10 −8 and prioritized IVs with an F-statistic [F-statistic = (β/SE)2] > 10 to minimize weak instrument bias. 19 + +## Results + +In the present investigation, we capitalized on a bidirectional two-sample MR analysis in individuals of European descent to scrutinize the potential causative correlation between migraines and VTE risk. Our investigation implies a potential bidirectional pathogenic relationship between migraines and the risk of VTE, as supported by the specific analysis results detailed in Table 2 . + +## Mendelian Randomization Analysis + +During the IV screening process, it was identified that SNP r10908505 was associated with body mass index (BMI) in VTE. Considering the established association between BMI and VTE, 1 15 this violated Assumption III and the SNP was subsequently excluded. The VTE dataset ultimately consisted of 11 SNPs, with individual SNP F-statistics ranging from 29.76 to 96.77 (all >10), indicating a minimal potential for causal associations to be confounded by weak IV bias ( Supplementary Table S1 , available in the online version). The IVW model revealed that migraine was a statistically significant risk factor for the onset of VTE (odds ratio [OR] = 96.155, 95% confidence interval [CI]: 4.3422–129.458, p  = 0.004) ( Table 2 , Fig. 2A ). The scatter plot ( Fig. 2B ) and funnel plot ( Fig. 2C ) of migraine demonstrated a symmetrical distribution of all included SNPs, suggesting a limited possibility of bias affecting the causal association. The Cochran's Q test, conducted on the MR-Egger regression and the IVW method, yielded statistics of 5.610 and 5.973 ( p  > 0.05), indicating the absence of heterogeneity among the SNPs ( Supplementary Table S2 , available in the online version). These findings suggest a positive correlation between the strength of association between the IVs and migraine, satisfying the assumptions of IV analysis. The MR-Egger regression analysis showed no statistically significant difference from zero for the intercept term ( p  = 0.5617), indicating the absence of genetic pleiotropy among the SNPs ( Supplementary Table S3 , available in the online version). Additionally, the leave-one-out analysis revealed that the inclusion or exclusion of individual SNPs did not substantially impact the estimated causal effects, demonstrating the robustness of the MR results obtained in our investigation ( Fig. 2D ). + +## Reverse Mendelian Randomization Analysis + +Upon screening for IVs in migraine patients, SNP rs6060308 was excluded due to its association with education 20 21 and violation of Assumption III. The final migraine dataset comprised 13 SNPs, with individual SNP F-statistics ranging from 30.60 to 354.34, all surpassing the threshold of 10 ( Supplementary Table S4 , available in the online version). Both the IVW and simple models supported VTE as a risk factor for migraine. The IVW analysis yielded an OR of 1.002 (95% CI: 1.000–1.004, p  = 0.016), while the simple model yielded an OR of 1.003 (95% CI: 1.000–1.006, p  = 0.047) ( Table 2 , Fig. 3A ). The scatter plot ( Fig. 3B ) and funnel plot ( Fig. 3C ) exhibited symmetrical distributions across all included SNPs, indicating minimal potential for biases affecting the causal association. Heterogeneity among SNPs was observed through the Cochran's Q test of the IVW method and MR-Egger regression, with Q statistics of 18.697 and 20.377, respectively, both with p  < 0.05 ( Supplementary Table S2 , available in the online version). Therefore, careful consideration is necessary for the results obtained from the random-effects IVW method. MR-Egger regression analysis revealed a nonsignificant difference between the intercept term and zero ( p  = 0.3655), suggesting the absence of genetic pleiotropy among the SNPs ( Supplementary Table S3 , available in the online version). Additionally, the leave-one-out analysis demonstrated that the inclusion or exclusion of individual SNPs had no substantial impact on the estimated causal effect ( Fig. 3D ). + +## Discussion + +VTE constitutes a grave health hazard to patients, necessitating rigorous clinical surveillance. Distinct from common VTE risk factors such as cancer, 22 diabetes, 23 lupus, 24 and antiphospholipid syndrome, 25 migraines remain absent from prevalent VTE guidelines or advisories. The MR findings from our research provide first-of-its-kind evidence of a causal nexus between migraines and VTE in individuals of European descent, signaling that migraines potently predispose individuals to VTE (IVW OR = 96.155, 95% CI: 4.342–2129.458), while VTE presents a weak risk factor for migraines (IVW OR = 1.002, 95% CI: 1.000–1.004). Given the robustness of the IVW analysis, the MR analysis is considered reliable. + +Our MR analysis discloses a potential causal association between individuals suffering from migraines and VTE incidence, with a risk rate 96.155 times higher in comparison to nonmigraine sufferers. Previous observational endeavors investigating VTE risk amidst migraine patients have been scant and have yielded discordant outcomes, complicating the provision of clinical directives. 26 27 In a longitudinal inquiry with a 19-year follow-up, Adelborg et al discerned a heightened VTE risk in individuals afflicted with migraines. 4 Peng et al's prospective clinical study unveiled a more than double VTE risk increase in migraine patients during a 4-year follow-up. 5 Schwaiger et al's cohort study, incorporating 574 patients aged 55 to 94, observed a significant escalation in VTE risk among elderly individuals with migraines. 6 28 Bushnell et al uncovered a tripled VTE risk during pregnancy in migraine-affected women. 29 Although these studies validate a potential correlation between migraines and VTE, their persuasiveness is restricted due to other prominent VTE risk factors (such as advanced age and pregnancy) and contradicting findings in existing observational studies. For instance, Folsom et al observed no significant correlation between migraines and VTE risk in elderly individuals, contradicting Schwaiger's conclusion. 7 However, he clarified that the cohort incorporated in his study did not undergo rigorous neurological migraine diagnosis, possibly leading to confounding biases and generating findings that contradict other scholarly endeavors. 7 These contradictions originate from observational studies examining associations rather than causal relationships, invariably involving a confluence of various confounding factors. MR, leveraging SNPs as IVs to ascertain the causal link between migraines and VTE risk, can eliminate other confounding elements resulting in more reliable outcomes. Based on this finding, monitoring VTE risk among migraine patients in clinical practice is recommended. + +Our endeavor seeks to offer a preliminary examination of the potential mechanisms underlying the interplay between migraines and VTE. The incidence of VTE habitually involves Virchow's triad, encompassing endothelial damage, venous stasis, and hypercoagulability. 30 On the genetic association front, the SNPs rs9349379 and rs11172113, acting as IVs for migraines, display relevance to the mechanisms underpinning VTE. Prior research earmarks the gene corresponding to rs9349379, PHACTR1 ( Supplementary Table S1 , available in the online version), as a catalyst for the upregulation of EDN1 . 31 Elevated EDN1 expression is associated with increased VTE susceptibility, 32 and EDN1 inhibition can diminish VTE incidence, 33 potentially through Endothelin 1-mediated vascular endothelial inflammation leading to thrombus formation. 34 The SNP rs11172113 corresponds to the gene LRP1 ( Supplementary Table S1 , available in the online version). 35 LRP1 can facilitate the upregulation of FVIII , culminating in an increase in plasma coagulation factor VIII, 36 thereby leading to heightened blood coagulability and an associated elevated VTE risk. 37 While various studies propose divergent mechanisms, they collectively signal that migraines can instigate a hypercoagulable state, thereby promoting the onset of VTE. The SNPs serving as IVs for VTE did not unveil any association with the onset of migraines. This corroborates our MR analysis outcomes, indicating that VTE is merely a weak risk factor for migraines. + +## Tables + +Table 1 Description of GWAS used for each phenotype + +| Variable | Sample size | ID | Population | Database | Year | +|------------|---------------|---------------|--------------|-----------------------|--------| +| Migraine | 337159 | ukb-a-87 | European | IEU Open GWAS project | 2017 | +| VTE | 218792 | finn-b-I9\_VTE | European | FinnGen | 2021 | + +Table 2 Mendelian randomization regression causal association results + +| Exposures | SNPs (no.) | Methods | β | SE | OR (95% CI) | p | +|-------------|--------------|-------------|-------|-------|-------------------------|-------| +| Migraine | 11 | IVW | 4.566 | 1.58 | 96.155 (4.342–2129.458) | 0.004 | +| VTE | 12 | IVW | 0.002 | 0.001 | 1.002 (1.000–1.004); | 0.016 | +| VTE | 12 | Simple mode | 0.003 | 0.001 | 1.003 (1.000–1.006) | 0.047 | + +## Figures + +Fig. 1 This figure illustrates the research methodology for the bidirectional Mendelian randomization analysis concerning migraine and VTE. Assumption I: relevance assumption; Assumption II: independence/exchangeability assumption; Assumption III: exclusion restriction assumption. + + + +Fig. 2 This figure explores the correlation between migraine risk and VTE, validating the presence of heterogeneity and pleiotropy. (A) The forest plot displays individual IVs, with each point flanked by lines that depict the 95% confidence interval. The effect of SNPs on the exposure (migraine) is shown along thex-axis, whereas their impact on the outcome (VTE) is presented on they-axis. A fitted line reflects the Mendelian randomization analysis results. (B) A scatter plot visualizes each IV, with the SNP effects on both exposure and outcome similar to that of the forest plot. Again, a fitted line represents the Mendelian randomization results. (C) The funnel plot positions the coefficient βIVfrom the instrumental variable regression on thex-axis to demonstrate the association's strength, while the inverse of its standard error (1/SEIV†) on they-axis indicates the precision of this estimate. (D) A leave-one-out sensitivity analysis is shown on thex-axis, charting the estimated effects from the Mendelian randomization analysis. With each SNP associated with migraine successively excluded, the analysis recalculates the Mendelian randomization effect estimates, culminating with the “all” category that encompasses all considered SNPs. IV, instrumental variable; SNP, single nucleotide polymorphisms; VTE, venous thromboembolism; SE, standard error.†SE is the standard error of β. + + + +Fig. 3 (A–D) This figure presents the relationship between VTE risk and migraine, also verifying heterogeneity and pleiotropy through similar graphic representations as detailed forFig. 2, but with the exposure and outcome reversed—SNPs' effect on VTE and outcome on migraine. SNP, single nucleotide polymorphisms; VTE, venous thromboembolism. + + + +## References + +- F Khan; T Tritschler; S R Kahn; M A Rodger. Venous thromboembolism. Lancet (2021) +- J A Heit. Epidemiology of venous thromboembolism. Nat Rev Cardiol (2015) +- . Headache Classification Committee of the International Headache Society (IHS) The International Classification of Headache Disorders, 3rd edition. Cephalalgia (2018) +- K Adelborg; S K Szépligeti; L Holland-Bill. Migraine and risk of cardiovascular diseases: Danish population based matched cohort study. BMJ (2018) +- K P Peng; Y T Chen; J L Fuh; C H Tang; S J Wang. Association between migraine and risk of venous thromboembolism: a nationwide cohort study. Headache (2016) +- S Sacco; A Carolei. Burden of atherosclerosis and risk of venous thromboembolism in patients with migraine. Neurology (2009) +- A R Folsom; P L Lutsey; J R Misialek; M Cushman. A prospective study of migraine history and venous thromboembolism in older adults. Res Pract Thromb Haemost (2019) +- I Y Elgendy; S E Nadeau; C N Bairey Merz; C J Pepine. Migraine headache: an under-appreciated risk factor for cardiovascular disease in women. J Am Heart Assoc (2019) +- C A Emdin; A V Khera; S Kathiresan. Mendelian randomization. JAMA (2017) +- T Karlsson; F Hadizadeh; M Rask-Andersen; Å Johansson; W E Ek. Body mass index and the risk of rheumatic disease: linear and nonlinear Mendelian randomization analyses. Arthritis Rheumatol (2023) +- T Lawler; S Warren Andersen. Serum 25-hydroxyvitamin D and cancer risk: a systematic review of mendelian randomization studies. Nutrients (2023) +- S Burgess; A S Butterworth; J R Thompson. Beyond Mendelian randomization: how to interpret evidence of shared genetic predictors. J Clin Epidemiol (2016) +- C Sudlow; J Gallacher; N Allen. UK biobank: an open access resource for identifying the causes of a wide range of complex diseases of middle and old age. PLoS Med (2015) +- M S Lyon; S J Andrews; B Elsworth; T R Gaunt; G Hemani; E Marcora. The variant call format provides efficient and robust storage of GWAS summary statistics. Genome Biol (2021) +- M I Kurki; J Karjalainen; P Palta. FinnGen provides genetic insights from a well-phenotyped isolated population. Nature (2023) +- E Sanderson; M M Glymour; M V Holmes. Mendelian randomization. Nat Rev Methods Primers (2022) +- J R Staley; J Blackshaw; M A Kamat. PhenoScanner: a database of human genotype-phenotype associations. Bioinformatics (2016) +- M A Kamat; J A Blackshaw; R Young. PhenoScanner V2: an expanded tool for searching human genotype-phenotype associations. Bioinformatics (2019) +- S Burgess; S G Thompson. Mendelian Randomization: Methods for Causal Inference Using Genetic Variants. (2021) +- A May; L H Schulte. Chronic migraine: risk factors, mechanisms and treatment. Nat Rev Neurol (2016) +- D W Dodick. Migraine. Lancet (2018) +- A A Khorana; N Mackman; A Falanga. Cancer-associated venous thromboembolism. Nat Rev Dis Primers (2022) +- E J Bell; A R Folsom; P L Lutsey. Diabetes mellitus and venous thromboembolism: a systematic review and meta-analysis. Diabetes Res Clin Pract (2016) +- S Bhoelan; J Borjas Howard; V Tichelaar. Recurrence risk of venous thromboembolism associated with systemic lupus erythematosus: a retrospective cohort study. Res Pract Thromb Haemost (2022) +- V Pengo; G Denas. Antiphospholipid syndrome in patients with venous thromboembolism. Semin Thromb Hemost (2023) +- L Maitrot-Mantelet; M H Horellou; H Massiou; J Conard; A Gompel; G Plu-Bureau. Should women suffering from migraine with aura be screened for biological thrombophilia?: results from a cross-sectional French study. Thromb Res (2014) +- G E Tietjen; S A Collins. Hypercoagulability and migraine. Headache (2018) +- J Schwaiger; S Kiechl; H Stockner. Burden of atherosclerosis and risk of venous thromboembolism in patients with migraine. Neurology (2008) +- C D Bushnell; M Jamison; A H James. Migraines during pregnancy linked to stroke and vascular diseases: US population based case-control study. BMJ (2009) +- W Y Ding; M B Protty; I G Davies; G YH Lip. Relationship between lipoproteins, thrombosis, and atrial fibrillation. Cardiovasc Res (2022) +- R M Gupta; J Hadaya; A Trehan. A genetic variant associated with five vascular diseases is a distal regulator of endothelin-1 gene expression. Cell (2017) +- B Kumari; A Prabhakar; A Sahu. Endothelin-1 gene polymorphism and its level predict the risk of venous thromboembolism in male indian population. Clin Appl Thromb Hemost (2017) +- Y Zhang; J Liu; W Jia. AGEs/RAGE blockade downregulates Endothenin-1 (ET-1), mitigating Human Umbilical Vein Endothelial Cells (HUVEC) injury in deep vein thrombosis (DVT). Bioengineered (2021) +- J Padilla; A J Carpenter; N A Das. TRAF3IP2 mediates high glucose-induced endothelin-1 production as well as endothelin-1-induced inflammation in endothelial cells. Am J Physiol Heart Circ Physiol (2018) +- L Liu; C Jouve; J Sebastien Hulot; A Georges; N Bouatia-Naji. Epigenetic regulation at LRP1 risk locus for cardiovascular diseases and assessment of cellular function in hiPSC derived smooth muscle cells. Cardiovasc Res (2022) +- R Vormittag; P Bencur; C Ay. Low-density lipoprotein receptor-related protein 1 polymorphism 663 C > T affects clotting factor VIII activity and increases the risk of venous thromboembolism. J Thromb Haemost (2007) +- H Chun; J H Kurasawa; P Olivares. Characterization of interaction between blood coagulation factor VIII and LRP1 suggests dynamic binding by alternating complex contacts. J Thromb Haemost (2022) \ No newline at end of file diff --git a/tests/data/groundtruth/docling_v2/10-1055-s-0043-1775965.nxml.itxt b/tests/data/groundtruth/docling_v2/10-1055-s-0043-1775965.nxml.itxt new file mode 100644 index 00000000..96d458ff --- /dev/null +++ b/tests/data/groundtruth/docling_v2/10-1055-s-0043-1775965.nxml.itxt @@ -0,0 +1,124 @@ +item-0 at level 0: unspecified: group _root_ + item-1 at level 1: title: Differential Effects of Erythrop ... xpression on Venous Thrombosis in Mice + item-2 at level 1: paragraph: Sven Stockhausen; Medizinische K ... ximilians-Universität, Munich, Germany + item-3 at level 1: text: Background Deep vein thrombosis ... and potential therapeutic strategies. + item-4 at level 1: section_header: Introduction + item-5 at level 2: text: Red blood cells (RBCs) are the p ... geted prevention and treatment of DVT. + item-6 at level 2: text: The mechanism of RBC-mediated DV ... DVT has not been conclusively proven. + item-7 at level 2: text: In this project we used a transg ... so identified in this mouse strain. 15 + item-8 at level 2: text: The spleen is responsible for RB ... DVT in vivo remains unclear. 20 25 26 + item-9 at level 1: section_header: Mouse Model + item-10 at level 2: text: C57BL/6 mice were obtained from ... nich) and were authorized accordingly. + item-11 at level 1: section_header: Statistics + item-12 at level 2: text: Statistical analysis was conduct ... re compared using the chi-square test. + item-13 at level 1: section_header: Chronic EPO Overproduction Leads to Increased DVT in Mice + item-14 at level 2: text: To investigate the impact of chr ... ailable in the online version]). 28 29 + item-15 at level 2: text: Based on clinical observations i ... L [available in the online version]). + item-16 at level 1: section_header: High RBC Count Leads to a Decrea ... elet Accumulation in Venous Thrombosis + item-17 at level 2: text: Having observed a correlation be ... y thinner fibrin fibers ( Fig. 3A-C ). + item-18 at level 2: text: To quantify platelet accumulatio ... from EPO transgenic mice ( Fig. 2C ). + item-19 at level 2: text: As mentioned previously, inflamm ... brinogen and platelets were decreased. + item-20 at level 1: section_header: Short-Term Administration of EPO Does Not Foster DVT + item-21 at level 2: text: Due to the significant impact of ... G [available in the online version]). + item-22 at level 2: text: To further investigate the under ... unchanged after 2 weeks of treatment. + item-23 at level 2: text: To analyze the impact of 2-week ... ollowing EPO treatment ( Fig. 3D, E ). + item-24 at level 1: section_header: Splenectomy Does Not Affect Venous Thrombus Formation + item-25 at level 2: text: As the data suggested a qualitat ... [available in the online version]). 13 + item-26 at level 2: text: To investigate the role of splen ... obtained from nonsplenectomized mice. + item-27 at level 2: text: Finally, we analyzed the impact ... of enhanced or normal erythropoiesis. + item-28 at level 1: section_header: Discussion + item-29 at level 2: text: Here, we present evidence for a ... ouse model through chronic hypoxia. 37 + item-30 at level 2: text: In our analyses, we observed tha ... ing to a 70% reduction in lifespan. 15 + item-31 at level 2: text: During the ageing process, RBCs ... easing the risk of DVT formation. 5 71 + item-32 at level 2: text: Clearance of RBCs primarily occu ... bsence of the spleen after removal. 15 + item-33 at level 2: text: Besides their activating effect ... subjected to short-term EPO injection. + item-34 at level 1: section_header: Figures + item-36 at level 1: picture + item-36 at level 2: caption: Fig. 1 EPO-overexpressing mice experience an increased incidence of DVT formation. (A) Comparison of RBC count between EPO-overexpressing Tg(EPO) mice (n = 12) and control (WT) mice (n = 13). (B) Comparison of platelet count between EPO-overexpressing Tg(EPO) (n = 7) mice and control (WT) mice (n = 5). (C) Comparison of thrombus weight between Tg(EPO) mice (n = 9) and WT (n = 10); mean age in the Tg(EPO) group: 19.8 weeks; mean age in the WT group: 20.1 weeks. (D) Comparison of thrombus incidence between Tg(EPO) mice (n = 9) and WT mice (n = 10); NS = nonsignificant, *p < 0.05, **p < 0.01, ***p < 0.001. DVT, deep vein thrombosis; EPO, erythropoietin; RBC, red blood cell; WT, wild type. + item-38 at level 1: picture + item-38 at level 2: caption: Fig. 2 Chronic overproduction of EPO in mice leads to a decrease in the accumulation of classical drivers of DVT formation, including platelets, neutrophils, and fibrinogen. (A) The proportion of RBC-covered area in the thrombi of EPO-overexpressing Tg(EPO) mice (n = 4) was compared to control (WT) (n = 3) by immunofluorescence staining of cross-sections of the IVC 48 hours after flow reduction. (B) The proportion of fibrinogen-covered area in the thrombi of EPO- overexpressing Tg(EPO) mice (n = 3) was compared to control (WT) (n = 3) using immunofluorescence staining of cross-sections of the IVC 48 hours after flow reduction. (C) The proportion of platelet-covered area in the thrombi of EPO-overexpressing Tg(EPO) mice (n = 3) was compared to control (WT) (n = 3) by immunofluorescence staining of cross-sections of the IVC 48 hours after flow reduction. (D) Quantification of neutrophils was performed by immunofluorescence staining of cross-sections of the IVC 48 hours after flow reduction in EPO-overexpressing Tg(EPO) mice (n = 3) compared to control (WT) (n = 3). (E) Immunofluorescence staining of cross-sections of the IVC 48 hours after flow reduction from EPO-overexpressing Tg(EPO) mice (top) was compared to control (WT) (bottom) for TER119 in red (RBC), CD42b in green (platelets), and Hoechst in blue (DNA). The merged image is on the left, and the single channel image is on the right. Scale bar: 50 µm. (F) Immunofluorescence staining of cross-sections of the IVC 48 hours after flow reduction from EPO-overexpressing Tg(EPO) mice (top) was compared to control (WT) (bottom) for TER119 in red (RBC), fibrinogen in green, and Hoechst in blue (DNA); the merged image is on the left, and single-channel images are on the right. Scale bar: 50 µm.; NS = nonsignificant, *p < 0.05, **p < 0.01, ***p < 0.001. DVT, deep vein thrombosis; EPO, erythropoietin; IVC, inferior vena cava; RBC, red blood cell; WT, wild type. + item-40 at level 1: picture + item-40 at level 2: caption: Fig. 3 The interaction of RBC with fibrinogen leads to the formation of a branched fibrin structure. (A) Immunofluorescence staining of cross-sections of the IVC 48 hours after flow reduction from EPO-overexpressing Tg(EPO) mice (left) was compared to control (WT) for fibrinogen (green). Scare bar: 50 µm. (B) High-resolution confocal images of immunofluorescence staining of cross-sections of the IVC 48 hours after flow reduction from EPO-overexpressing Tg(EPO) mice (left) compared to control (WT) for fibrinogen (green), RBC (red), and DNA (blue). Scale bar: 2 µm. (C) The mean diameter of 2,141 fibrin fibers was measured in cross-sections of thrombi from Tg(EPO) mice (left), and compared to 5,238 fibrin fibers of WT thrombi. (D) The mean diameter of 3,797 fibrin fibers was measured in two cross-sections of thrombi from 2-week EPO-injected mice (left), and compared to 10,920 fibrin fibers of three cross-sections from control (2-week NaCl-injected mice). (E) High-resolution confocal images of immunofluorescence staining of two cross-sections of the IVC 48 hours after flow reduction from 2-week EPO-injected mice (left) were compared to control (2 week NaCl-injected mice) for fibrinogen (green), RBC (red), and DNA (blue). Scale bar: 2 µm. EPO, erythropoietin; IVC, inferior vena cava; RBC, red blood cell; WT, wild type. + item-42 at level 1: picture + item-42 at level 2: caption: Fig. 4 Two-week EPO injection leads to thrombocytopenia without an impact on the bone marrow. (A) RBC count in peripheral blood after 6 × 300 IU EPO treatment of C57Bl/6J mice (n = 10) was compared to control (6 × 30 µL NaCl injection) (n = 9). (B) Platelet count in peripheral blood after 6 × 300 IU EPO treatment of C57Bl/6J mice (n = 10) was compared to control (6 × 30 µL NaCl injection) (n = 10). (C) Area of RBC-positive area in the bone marrow of 6 × 300 IU EPO-treated C57Bl/6J mice (n = 4) was compared to control (6 × 30 µL NaCl injection) (n = 4). (D) Immunofluorescence staining of cross-sections of the bone marrow after 2-week EPO injection (top) was compared to NaCl injection (bottom) stained for TER119 (violet) and Hoechst (white). Scale bar: 100 µm. (E) Number of megakaryocyte count in the bone marrow of 6 × 300 IU EPO-treated C57Bl/6J mice (n = 4) was compared to control (6 × 30 µL NaCl injection) (n = 4). (F) Immunofluorescence staining of cross-sections of the bone marrow after 2-week EPO injection (top) compared to NaCl injection (bottom) stained for CD41 (violet) and Hoechst (white). Scale bar: 100 µm. (G) Platelet large cell ratio in peripheral blood of 6 × 300 IU EPO-treated C57Bl/6J mice (n = 10) compared to control (6 × 30 µL NaCl injection) (n = 9). (H) Thrombus weight of 6 × 300 IU EPO-treated C57Bl/6J mice (n = 10) and NaCl-injected control mice (n = 10). (I) Thrombus incidence of 6 × 300 IU EPO-treated C57Bl/6J mice (n = 10) and NaCl-injected control mice (n = 10). NS = nonsignificant, *p < 0.05, **p < 0.01, ***p < 0.001. EPO, erythropoietin; RBC, red blood cell. + item-44 at level 1: picture + item-44 at level 2: caption: Fig. 5 Splenectomy does not affect the blood count as well as DVT formation. (A) WBC count in C57Bl/6J mice without treatment (n = 5), 48 hours after induction of DVT (n = 7), 5 weeks after splenectomy (n = 3), and 5 weeks after splenectomy with an additional 48-hour induction of DVT (n = 9). (B) Platelet count in C57Bl/6J mice without treatment (n = 6), 48 hours after induction of DVT (n = 6), 5 weeks after splenectomy (n = 3), and 5 weeks after splenectomy with an additional 48-hour induction of DVT (n = 9). (C) RBC count in C57Bl/6J mice without treatment (n = 6), 48 hours after induction of DVT (n = 6), 5 weeks after splenectomy (n = 3), and 5 weeks after splenectomy with an additional 48-hour induction of DVT (n = 9). (D) Thrombus weight in C57Bl6 wild-type mice without splenectomy (n = 6) and with splenectomy (n = 6) (E) Thrombus incidence in C57Bl/6J wild-type mice without splenectomy (n = 6) and with splenectomy (n = 6). (F) Thrombus weight in EPO-overexpressing Tg(EPO) mice without splenectomy (n = 9) and with splenectomy (n = 6) compared to control WT mice without splenectomy (n = 10) and with splenectomy (n = 11). (G) Thrombus incidence in EPO-overexpressing Tg(EPO) mice without splenectomy (n = 9) and with splenectomy (n = 6) compared to control WT mice without splenectomy (n = 10) and with splenectomy (n = 11). NS = nonsignificant, *p < 0.05, **p < 0.01, ***p < 0.001. DVT, deep vein thrombosis; RBC, red blood cell; WT, wild type. + item-45 at level 1: section_header: References + item-46 at level 1: list: group list + item-47 at level 2: list_item: G Ramsey; P F Lindholm. Thrombos ... ansfusions. Semin Thromb Hemost (2019) + item-48 at level 2: list_item: M A Kumar; T A Boland; M Baiou. ... noid hemorrhage. Neurocrit Care (2014) + item-49 at level 2: list_item: R Goel; E U Patel; M M Cushing. ... th American Registry. JAMA Surg (2018) + item-50 at level 2: list_item: C Wang; I Le Ray; B Lee; A Wikma ... venous thromboembolism. Sci Rep (2019) + item-51 at level 2: list_item: B S Donahue. Red cell transfusio ... ic risk in children. Pediatrics (2020) + item-52 at level 2: list_item: M Dicato. Venous thromboembolic ... g agents: an update. Oncologist (2008) + item-53 at level 2: list_item: C L Bennett; S M Silver; B Djulb ... cancer-associated anemia. JAMA (2008) + item-54 at level 2: list_item: E Chievitz; T Thiede. Complicati ... ycythaemia vera. Acta Med Scand (1962) + item-55 at level 2: list_item: V R Gordeuk; J T Prchal. Vascula ... lycythemia. Semin Thromb Hemost (2006) + item-56 at level 2: list_item: S Ballestri; E Romagnoli; D Ario ... m: a narrative review. Adv Ther (2023) + item-57 at level 2: list_item: M L von Brühl; K Stark; A Steinh ... osis in mice in vivo. J Exp Med (2012) + item-58 at level 2: list_item: G D Lowe; A J Lee; A Rumley; J F ... rgh Artery Study. Br J Haematol (1997) + item-59 at level 2: list_item: J Vogel; I Kiessling; K Heinicke ... gulating blood viscosity. Blood (2003) + item-60 at level 2: list_item: F T Ruschitzka; R H Wenger; T St ... ietin. Proc Natl Acad Sci U S A (2000) + item-61 at level 2: list_item: A Bogdanova; D Mihov; H Lutz; B ... xpressing erythropoietin. Blood (2007) + item-62 at level 2: list_item: R E Mebius; G Kraal. Structure a ... of the spleen. Nat Rev Immunol (2005) + item-63 at level 2: list_item: M A Boxer; J Braun; L Ellman. Th ... ctomy thrombocytosis. Arch Surg (1978) + item-64 at level 2: list_item: P N Khan; R J Nair; J Olivares; ... ytosis. Proc Bayl Univ Med Cent (2009) + item-65 at level 2: list_item: R W Thomsen; W M Schoonen; D K F ... cohort study. J Thromb Haemost (2010) + item-66 at level 2: list_item: G J Kato. Vascular complications ... or hematologic disorders. Blood (2009) + item-67 at level 2: list_item: E M Sewify; D Sayed; R F Abdel A ... bocytopenic purpura. Thromb Res (2013) + item-68 at level 2: list_item: M K Frey; S Alias; M P Winter. S ... of thrombosis. J Am Heart Assoc (2014) + item-69 at level 2: list_item: D Bratosin; J Mazurier; J P Tiss ... acrophages. A review. Biochimie (1998) + item-70 at level 2: list_item: A T Taher; K M Musallam; M Karim ... ia intermedia. J Thromb Haemost (2010) + item-71 at level 2: list_item: M Seki; N Arashiki; Y Takakuwa; ... nt erythrocytes. J Cell Mol Med (2020) + item-72 at level 2: list_item: M F Whelihan; K G Mann. The role ... thrombin generation. Thromb Res (2013) + item-73 at level 2: list_item: T Frietsch; M H Maurer; J Vogel; ... tosis. J Cereb Blood Flow Metab (2007) + item-74 at level 2: list_item: O Mitchell; D M Feldman; M Diako ... hronic liver disease. Hepat Med (2016) + item-75 at level 2: list_item: Y Lv; W Y Lau; Y Li. Hyperspleni ... nd current status. Exp Ther Med (2016) + item-76 at level 2: list_item: K F Wagner; D M Katschinski; J H ... xpressing erythropoietin. Blood (2001) + item-77 at level 2: list_item: C Klatt; I Krüger; S Zey. Platel ... t for thrombosis. J Clin Invest (2018) + item-78 at level 2: list_item: J Shibata; J Hasegawa; H J Sieme ... uences of erythrocytosis. Blood (2003) + item-79 at level 2: list_item: E Babu; D Basu. Platelet large c ... unts. Indian J Pathol Microbiol (2004) + item-80 at level 2: list_item: F Formenti; P A Beer; Q P Croft. ... n-of-function mutation. FASEB J (2011) + item-81 at level 2: list_item: H M Ashraf; A Javed; S Ashraf. P ... mia. J Coll Physicians Surg Pak (2006) + item-82 at level 2: list_item: D P Smallman; C M McBratney; C H ... and Military Academies. Mil Med (2011) + item-83 at level 2: list_item: M Li; X Tang; Z Liao. Hypoxia an ... ability at high altitude. Blood (2022) + item-84 at level 2: list_item: T P McDonald; R E Clift; M B Cot ... thrombocytopenia in mice. Blood (1992) + item-85 at level 2: list_item: X Jaïs; V Ioos; C Jardim. Splene ... pulmonary hypertension. Thorax (2005) + item-86 at level 2: list_item: J M Watters; C N Sambasivan; K Z ... e state after trauma. Am J Surg (2010) + item-87 at level 2: list_item: S Visudhiphan; K Ketsa-Ard; A Pi ... boembolism. Biomed Pharmacother (1985) + item-88 at level 2: list_item: T P McDonald; M B Cottrell; R E ... production in mice. Exp Hematol (1987) + item-89 at level 2: list_item: Y Shikama; T Ishibashi; H Kimura ... is in vivo in mice. Exp Hematol (1992) + item-90 at level 2: list_item: C W Jackson; C C Edwards. Biphas ... ypobaric hypoxia. Br J Haematol (1977) + item-91 at level 2: list_item: T P McDonald. Platelet productio ... ansfused mice. Scand J Haematol (1978) + item-92 at level 2: list_item: Z Rolović; N Basara; L Biljanovi ... normobaric hypoxia. Exp Hematol (1990) + item-93 at level 2: list_item: R F Wolf; J Peng; P Friese; L S ... atelets in dogs. Thromb Haemost (1997) + item-94 at level 2: list_item: J K Fraser; A S Tan; F K Lin; M ... use megakaryocytes. Exp Hematol (1989) + item-95 at level 2: list_item: H Sasaki; Y Hirabayashi; T Ishib ... ion of receptor mRNAs. Leuk Res (1995) + item-96 at level 2: list_item: R D McBane; C Gonzalez; D O Hodg ... thrombi. J Thromb Thrombolysis (2014) + item-97 at level 2: list_item: M Buttarello; G Mezzapelle; F Fr ... limitations. Int J Lab Hematol (2020) + item-98 at level 2: list_item: S Guthikonda; C L Alviar; M Vadu ... tery disease. J Am Coll Cardiol (2008) + item-99 at level 2: list_item: M S Goel; S L Diamond. Adhesion ... polymerized from plasma. Blood (2002) + item-100 at level 2: list_item: P Hermand; P Gane; M Huet. Red c ... IIbbeta 3 integrin. J Biol Chem (2003) + item-101 at level 2: list_item: A Orbach; O Zelig; S Yedgar; G B ... ragility. Transfus Med Hemother (2017) + item-102 at level 2: list_item: C C Helms; M Marvel; W Zhao. Mec ... et activation. J Thromb Haemost (2013) + item-103 at level 2: list_item: J Villagra; S Shiva; L A Hunter; ... by cell-free hemoglobin. Blood (2007) + item-104 at level 2: list_item: S Gambaryan; H Subramanian; L Ke ... O synthesis. Cell Commun Signal (2016) + item-105 at level 2: list_item: S Krauss. Haptoglobin metabolism in polycythemia vera. Blood (1969) + item-106 at level 2: list_item: A Vignoli; S Gamba; P EJ van der ... a vera patients. Blood Transfus (2022) + item-107 at level 2: list_item: J H Lawrence. The control of pol ... of 172 patients. J Am Med Assoc (1949) + item-108 at level 2: list_item: T C Pearson; G Wetherley-Mein. V ... iferative polycythaemia. Lancet (1978) + item-109 at level 2: list_item: J F Fazekas; D Nelson. Cerebral ... hemia vera. AMA Arch Intern Med (1956) + item-110 at level 2: list_item: D J Thomas; J Marshall; R W Russ ... ebral blood-flow in man. Lancet (1977) + item-111 at level 2: list_item: A D'Emilio; R Battista; E Dini. ... on and busulphan. Br J Haematol (1987) + item-112 at level 2: list_item: J E Taylor; I S Henderson; W K S ... haemodialysis patients. Lancet (1991) + item-113 at level 2: list_item: J J Zwaginga; M J IJsseldijk; P ... y uremic plasma. Thromb Haemost (1991) + item-114 at level 2: list_item: F Fabris; I Cordiano; M L Randi. ... haemodialysis. Pediatr Nephrol (1991) + item-115 at level 2: list_item: T Akizawa; E Kinugasa; T Kitaoka ... emodialysis patients. Nephron J (1991) + item-116 at level 2: list_item: G Viganò; A Benigni; D Mendogni; ... remic bleeding. Am J Kidney Dis (1991) + item-117 at level 2: list_item: J A Rios; J Hambleton; M Viele. ... tivation treatment. Transfusion (2006) + item-118 at level 2: list_item: S Khandelwal; N van Rooijen; R K ... om the circulation. Transfusion (2007) + item-119 at level 2: list_item: G J Bosman; J M Werre; F L Wille ... s for transfusion. Transfus Med (2008) + item-120 at level 2: list_item: W H Crosby. Normal functions of ... ed blood cells: a review. Blood (1959) + item-121 at level 2: list_item: R Varin; S Mirshahi; P Mirshahi. ... cacy of rivaroxaban. Thromb Res (2013) + item-122 at level 2: list_item: F A Carvalho; S Connell; G Milte ... on human erythrocytes. ACS Nano (2010) + item-123 at level 2: list_item: N Wohner; P Sótonyi; R Machovich ... . Arterioscler Thromb Vasc Biol (2011) \ No newline at end of file diff --git a/tests/data/groundtruth/docling_v2/10-1055-s-0043-1775965.nxml.json b/tests/data/groundtruth/docling_v2/10-1055-s-0043-1775965.nxml.json new file mode 100644 index 00000000..e5f5bda1 --- /dev/null +++ b/tests/data/groundtruth/docling_v2/10-1055-s-0043-1775965.nxml.json @@ -0,0 +1,1955 @@ +{ + "schema_name": "DoclingDocument", + "version": "1.0.0", + "name": "10-1055-s-0043-1775965", + "origin": { + "mimetype": "text/xml", + "binary_hash": 6626011644007813730, + "filename": "10-1055-s-0043-1775965.nxml" + }, + "furniture": { + "self_ref": "#/furniture", + "children": [], + "name": "_root_", + "label": "unspecified" + }, + "body": { + "self_ref": "#/body", + "children": [ + { + "$ref": "#/texts/0" + }, + { + "$ref": "#/texts/1" + }, + { + "$ref": "#/texts/2" + }, + { + "$ref": "#/texts/3" + }, + { + "$ref": "#/texts/8" + }, + { + "$ref": "#/texts/10" + }, + { + "$ref": "#/texts/12" + }, + { + "$ref": "#/texts/15" + }, + { + "$ref": "#/texts/19" + }, + { + "$ref": "#/texts/23" + }, + { + "$ref": "#/texts/27" + }, + { + "$ref": "#/texts/33" + }, + { + "$ref": "#/texts/34" + }, + { + "$ref": "#/pictures/0" + }, + { + "$ref": "#/texts/35" + }, + { + "$ref": "#/pictures/1" + }, + { + "$ref": "#/texts/36" + }, + { + "$ref": "#/pictures/2" + }, + { + "$ref": "#/texts/37" + }, + { + "$ref": "#/pictures/3" + }, + { + "$ref": "#/texts/38" + }, + { + "$ref": "#/pictures/4" + }, + { + "$ref": "#/texts/39" + }, + { + "$ref": "#/groups/0" + } + ], + "name": "_root_", + "label": "unspecified" + }, + "groups": [ + { + "self_ref": "#/groups/0", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/40" + }, + { + "$ref": "#/texts/41" + }, + { + "$ref": "#/texts/42" + }, + { + "$ref": "#/texts/43" + }, + { + "$ref": "#/texts/44" + }, + { + "$ref": "#/texts/45" + }, + { + "$ref": "#/texts/46" + }, + { + "$ref": "#/texts/47" + }, + { + "$ref": "#/texts/48" + }, + { + "$ref": "#/texts/49" + }, + { + "$ref": "#/texts/50" + }, + { + "$ref": "#/texts/51" + }, + { + "$ref": "#/texts/52" + }, + { + "$ref": "#/texts/53" + }, + { + "$ref": "#/texts/54" + }, + { + "$ref": "#/texts/55" + }, + { + "$ref": "#/texts/56" + }, + { + "$ref": "#/texts/57" + }, + { + "$ref": "#/texts/58" + }, + { + "$ref": "#/texts/59" + }, + { + "$ref": "#/texts/60" + }, + { + "$ref": "#/texts/61" + }, + { + "$ref": "#/texts/62" + }, + { + "$ref": "#/texts/63" + }, + { + "$ref": "#/texts/64" + }, + { + "$ref": "#/texts/65" + }, + { + "$ref": "#/texts/66" + }, + { + "$ref": "#/texts/67" + }, + { + "$ref": "#/texts/68" + }, + { + "$ref": "#/texts/69" + }, + { + "$ref": "#/texts/70" + }, + { + "$ref": "#/texts/71" + }, + { + "$ref": "#/texts/72" + }, + { + "$ref": "#/texts/73" + }, + { + "$ref": "#/texts/74" + }, + { + "$ref": "#/texts/75" + }, + { + "$ref": "#/texts/76" + }, + { + "$ref": "#/texts/77" + }, + { + "$ref": "#/texts/78" + }, + { + "$ref": "#/texts/79" + }, + { + "$ref": "#/texts/80" + }, + { + "$ref": "#/texts/81" + }, + { + "$ref": "#/texts/82" + }, + { + "$ref": "#/texts/83" + }, + { + "$ref": "#/texts/84" + }, + { + "$ref": "#/texts/85" + }, + { + "$ref": "#/texts/86" + }, + { + "$ref": "#/texts/87" + }, + { + "$ref": "#/texts/88" + }, + { + "$ref": "#/texts/89" + }, + { + "$ref": "#/texts/90" + }, + { + "$ref": "#/texts/91" + }, + { + "$ref": "#/texts/92" + }, + { + "$ref": "#/texts/93" + }, + { + "$ref": "#/texts/94" + }, + { + "$ref": "#/texts/95" + }, + { + "$ref": "#/texts/96" + }, + { + "$ref": "#/texts/97" + }, + { + "$ref": "#/texts/98" + }, + { + "$ref": "#/texts/99" + }, + { + "$ref": "#/texts/100" + }, + { + "$ref": "#/texts/101" + }, + { + "$ref": "#/texts/102" + }, + { + "$ref": "#/texts/103" + }, + { + "$ref": "#/texts/104" + }, + { + "$ref": "#/texts/105" + }, + { + "$ref": "#/texts/106" + }, + { + "$ref": "#/texts/107" + }, + { + "$ref": "#/texts/108" + }, + { + "$ref": "#/texts/109" + }, + { + "$ref": "#/texts/110" + }, + { + "$ref": "#/texts/111" + }, + { + "$ref": "#/texts/112" + }, + { + "$ref": "#/texts/113" + }, + { + "$ref": "#/texts/114" + }, + { + "$ref": "#/texts/115" + }, + { + "$ref": "#/texts/116" + } + ], + "name": "list", + "label": "list" + } + ], + "texts": [ + { + "self_ref": "#/texts/0", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "title", + "prov": [], + "orig": "Differential Effects of Erythropoietin Administration and Overexpression on Venous Thrombosis in Mice", + "text": "Differential Effects of Erythropoietin Administration and Overexpression on Venous Thrombosis in Mice" + }, + { + "self_ref": "#/texts/1", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "paragraph", + "prov": [], + "orig": "Sven Stockhausen; Medizinische Klinik und Poliklinik I, Klinikum der Universit\u00e4t M\u00fcnchen, Ludwig-Maximilians-Universit\u00e4t, Munich, Germany; German Center for Cardiovascular Research (DZHK), partner site Munich Heart Alliance, Munich, Germany; Walter-Brendel Center of Experimental Medicine, Ludwig-Maximilians-Universit\u00e4t, Munich, Germany; Badr Kilani; Medizinische Klinik und Poliklinik I, Klinikum der Universit\u00e4t M\u00fcnchen, Ludwig-Maximilians-Universit\u00e4t, Munich, Germany; German Center for Cardiovascular Research (DZHK), partner site Munich Heart Alliance, Munich, Germany; Walter-Brendel Center of Experimental Medicine, Ludwig-Maximilians-Universit\u00e4t, Munich, Germany; Irene Schubert; Medizinische Klinik und Poliklinik I, Klinikum der Universit\u00e4t M\u00fcnchen, Ludwig-Maximilians-Universit\u00e4t, Munich, Germany; German Center for Cardiovascular Research (DZHK), partner site Munich Heart Alliance, Munich, Germany; Walter-Brendel Center of Experimental Medicine, Ludwig-Maximilians-Universit\u00e4t, Munich, Germany; Anna-Lena Steinsiek; Department of cardiology, German Heart Center, Munich, Germany.; Sue Chandraratne; Medizinische Klinik und Poliklinik I, Klinikum der Universit\u00e4t M\u00fcnchen, Ludwig-Maximilians-Universit\u00e4t, Munich, Germany; German Center for Cardiovascular Research (DZHK), partner site Munich Heart Alliance, Munich, Germany; Walter-Brendel Center of Experimental Medicine, Ludwig-Maximilians-Universit\u00e4t, Munich, Germany; Franziska Wendler; Medizinische Klinik und Poliklinik I, Klinikum der Universit\u00e4t M\u00fcnchen, Ludwig-Maximilians-Universit\u00e4t, Munich, Germany; German Center for Cardiovascular Research (DZHK), partner site Munich Heart Alliance, Munich, Germany; Walter-Brendel Center of Experimental Medicine, Ludwig-Maximilians-Universit\u00e4t, Munich, Germany; Luke Eivers; Medizinische Klinik und Poliklinik I, Klinikum der Universit\u00e4t M\u00fcnchen, Ludwig-Maximilians-Universit\u00e4t, Munich, Germany; German Center for Cardiovascular Research (DZHK), partner site Munich Heart Alliance, Munich, Germany; Walter-Brendel Center of Experimental Medicine, Ludwig-Maximilians-Universit\u00e4t, Munich, Germany; Marie-Luise von Br\u00fchl; Medizinische Klinik und Poliklinik I, Klinikum der Universit\u00e4t M\u00fcnchen, Ludwig-Maximilians-Universit\u00e4t, Munich, Germany; German Center for Cardiovascular Research (DZHK), partner site Munich Heart Alliance, Munich, Germany; Walter-Brendel Center of Experimental Medicine, Ludwig-Maximilians-Universit\u00e4t, Munich, Germany; Steffen Massberg; Medizinische Klinik und Poliklinik I, Klinikum der Universit\u00e4t M\u00fcnchen, Ludwig-Maximilians-Universit\u00e4t, Munich, Germany; German Center for Cardiovascular Research (DZHK), partner site Munich Heart Alliance, Munich, Germany; Walter-Brendel Center of Experimental Medicine, Ludwig-Maximilians-Universit\u00e4t, Munich, Germany; Ilka Ott; Department of cardiology, German Heart Center, Munich, Germany.; Konstantin Stark; Medizinische Klinik und Poliklinik I, Klinikum der Universit\u00e4t M\u00fcnchen, Ludwig-Maximilians-Universit\u00e4t, Munich, Germany; German Center for Cardiovascular Research (DZHK), partner site Munich Heart Alliance, Munich, Germany; Walter-Brendel Center of Experimental Medicine, Ludwig-Maximilians-Universit\u00e4t, Munich, Germany", + "text": "Sven Stockhausen; Medizinische Klinik und Poliklinik I, Klinikum der Universit\u00e4t M\u00fcnchen, Ludwig-Maximilians-Universit\u00e4t, Munich, Germany; German Center for Cardiovascular Research (DZHK), partner site Munich Heart Alliance, Munich, Germany; Walter-Brendel Center of Experimental Medicine, Ludwig-Maximilians-Universit\u00e4t, Munich, Germany; Badr Kilani; Medizinische Klinik und Poliklinik I, Klinikum der Universit\u00e4t M\u00fcnchen, Ludwig-Maximilians-Universit\u00e4t, Munich, Germany; German Center for Cardiovascular Research (DZHK), partner site Munich Heart Alliance, Munich, Germany; Walter-Brendel Center of Experimental Medicine, Ludwig-Maximilians-Universit\u00e4t, Munich, Germany; Irene Schubert; Medizinische Klinik und Poliklinik I, Klinikum der Universit\u00e4t M\u00fcnchen, Ludwig-Maximilians-Universit\u00e4t, Munich, Germany; German Center for Cardiovascular Research (DZHK), partner site Munich Heart Alliance, Munich, Germany; Walter-Brendel Center of Experimental Medicine, Ludwig-Maximilians-Universit\u00e4t, Munich, Germany; Anna-Lena Steinsiek; Department of cardiology, German Heart Center, Munich, Germany.; Sue Chandraratne; Medizinische Klinik und Poliklinik I, Klinikum der Universit\u00e4t M\u00fcnchen, Ludwig-Maximilians-Universit\u00e4t, Munich, Germany; German Center for Cardiovascular Research (DZHK), partner site Munich Heart Alliance, Munich, Germany; Walter-Brendel Center of Experimental Medicine, Ludwig-Maximilians-Universit\u00e4t, Munich, Germany; Franziska Wendler; Medizinische Klinik und Poliklinik I, Klinikum der Universit\u00e4t M\u00fcnchen, Ludwig-Maximilians-Universit\u00e4t, Munich, Germany; German Center for Cardiovascular Research (DZHK), partner site Munich Heart Alliance, Munich, Germany; Walter-Brendel Center of Experimental Medicine, Ludwig-Maximilians-Universit\u00e4t, Munich, Germany; Luke Eivers; Medizinische Klinik und Poliklinik I, Klinikum der Universit\u00e4t M\u00fcnchen, Ludwig-Maximilians-Universit\u00e4t, Munich, Germany; German Center for Cardiovascular Research (DZHK), partner site Munich Heart Alliance, Munich, Germany; Walter-Brendel Center of Experimental Medicine, Ludwig-Maximilians-Universit\u00e4t, Munich, Germany; Marie-Luise von Br\u00fchl; Medizinische Klinik und Poliklinik I, Klinikum der Universit\u00e4t M\u00fcnchen, Ludwig-Maximilians-Universit\u00e4t, Munich, Germany; German Center for Cardiovascular Research (DZHK), partner site Munich Heart Alliance, Munich, Germany; Walter-Brendel Center of Experimental Medicine, Ludwig-Maximilians-Universit\u00e4t, Munich, Germany; Steffen Massberg; Medizinische Klinik und Poliklinik I, Klinikum der Universit\u00e4t M\u00fcnchen, Ludwig-Maximilians-Universit\u00e4t, Munich, Germany; German Center for Cardiovascular Research (DZHK), partner site Munich Heart Alliance, Munich, Germany; Walter-Brendel Center of Experimental Medicine, Ludwig-Maximilians-Universit\u00e4t, Munich, Germany; Ilka Ott; Department of cardiology, German Heart Center, Munich, Germany.; Konstantin Stark; Medizinische Klinik und Poliklinik I, Klinikum der Universit\u00e4t M\u00fcnchen, Ludwig-Maximilians-Universit\u00e4t, Munich, Germany; German Center for Cardiovascular Research (DZHK), partner site Munich Heart Alliance, Munich, Germany; Walter-Brendel Center of Experimental Medicine, Ludwig-Maximilians-Universit\u00e4t, Munich, Germany" + }, + { + "self_ref": "#/texts/2", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "Background Deep vein thrombosis (DVT) is a common condition associated with significant mortality due to pulmonary embolism. Despite advanced prevention and anticoagulation therapy, the incidence of venous thromboembolism remains unchanged. Individuals with elevated hematocrit and/or excessively high erythropoietin (EPO) serum levels are particularly susceptible to DVT formation. We investigated the influence of short-term EPO administration compared to chronic EPO overproduction on DVT development. Additionally, we examined the role of the spleen in this context and assessed its impact on thrombus composition. Methods We induced ligation of the caudal vena cava (VCC) in EPO-overproducing Tg(EPO) mice as well as wildtype mice treated with EPO for two weeks, both with and without splenectomy. The effect on platelet circulation time was evaluated through FACS analysis, and thrombus composition was analyzed using immunohistology. Results We present evidence for an elevated thrombogenic phenotype resulting from chronic EPO overproduction, achieved by combining an EPO-overexpressing mouse model with experimental DVT induction. This increased thrombotic state is largely independent of traditional contributors to DVT, such as neutrophils and platelets. Notably, the pronounced prothrombotic effect of red blood cells (RBCs) only manifests during chronic EPO overproduction and is not influenced by splenic RBC clearance, as demonstrated by splenectomy. In contrast, short-term EPO treatment does not induce thrombogenesis in mice. Consequently, our findings support the existence of a differential thrombogenic effect between chronic enhanced erythropoiesis and exogenous EPO administration. Conclusion Chronic EPO overproduction significantly increases the risk of DVT, while short-term EPO treatment does not. These findings underscore the importance of considering EPO-related factors in DVT risk assessment and potential therapeutic strategies.", + "text": "Background Deep vein thrombosis (DVT) is a common condition associated with significant mortality due to pulmonary embolism. Despite advanced prevention and anticoagulation therapy, the incidence of venous thromboembolism remains unchanged. Individuals with elevated hematocrit and/or excessively high erythropoietin (EPO) serum levels are particularly susceptible to DVT formation. We investigated the influence of short-term EPO administration compared to chronic EPO overproduction on DVT development. Additionally, we examined the role of the spleen in this context and assessed its impact on thrombus composition. Methods We induced ligation of the caudal vena cava (VCC) in EPO-overproducing Tg(EPO) mice as well as wildtype mice treated with EPO for two weeks, both with and without splenectomy. The effect on platelet circulation time was evaluated through FACS analysis, and thrombus composition was analyzed using immunohistology. Results We present evidence for an elevated thrombogenic phenotype resulting from chronic EPO overproduction, achieved by combining an EPO-overexpressing mouse model with experimental DVT induction. This increased thrombotic state is largely independent of traditional contributors to DVT, such as neutrophils and platelets. Notably, the pronounced prothrombotic effect of red blood cells (RBCs) only manifests during chronic EPO overproduction and is not influenced by splenic RBC clearance, as demonstrated by splenectomy. In contrast, short-term EPO treatment does not induce thrombogenesis in mice. Consequently, our findings support the existence of a differential thrombogenic effect between chronic enhanced erythropoiesis and exogenous EPO administration. Conclusion Chronic EPO overproduction significantly increases the risk of DVT, while short-term EPO treatment does not. These findings underscore the importance of considering EPO-related factors in DVT risk assessment and potential therapeutic strategies." + }, + { + "self_ref": "#/texts/3", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/4" + }, + { + "$ref": "#/texts/5" + }, + { + "$ref": "#/texts/6" + }, + { + "$ref": "#/texts/7" + } + ], + "label": "section_header", + "prov": [], + "orig": "Introduction", + "text": "Introduction", + "level": 1 + }, + { + "self_ref": "#/texts/4", + "parent": { + "$ref": "#/texts/3" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "Red blood cells (RBCs) are the primary carriers oxygen and carbon dioxide in all mammals. Low hemoglobin concentrations in the blood can cause severe oxygen deficiency, leading to ischemia in organs and tissues. At the same time, numerous clinical observations identified elevated hemoglobin levels as an independent risk factor for deep vein thrombosis (DVT) formation. This applies to overproduction of RBCs due to erythropoietin (EPO) administration, as well as foreign blood transfusions. 1 2 3 4 5 6 7 This is also evident in illnesses which exhibit an excessive RBC production such as polycythemia vera or Chuvash polycythemia where a significant increase in thromboembolic complications has been reported. 8 9 In such cases, oral or parenteral anticoagulants are effective preventive measures. However, their use entails significant drawbacks in the form of elevated bleeding risks, which can lead to severe complications. 10 Therefore, it is crucial to identify patients at risk and to expand our understanding of the pathophysiology to enable a more targeted prevention and treatment of DVT.", + "text": "Red blood cells (RBCs) are the primary carriers oxygen and carbon dioxide in all mammals. Low hemoglobin concentrations in the blood can cause severe oxygen deficiency, leading to ischemia in organs and tissues. At the same time, numerous clinical observations identified elevated hemoglobin levels as an independent risk factor for deep vein thrombosis (DVT) formation. This applies to overproduction of RBCs due to erythropoietin (EPO) administration, as well as foreign blood transfusions. 1 2 3 4 5 6 7 This is also evident in illnesses which exhibit an excessive RBC production such as polycythemia vera or Chuvash polycythemia where a significant increase in thromboembolic complications has been reported. 8 9 In such cases, oral or parenteral anticoagulants are effective preventive measures. However, their use entails significant drawbacks in the form of elevated bleeding risks, which can lead to severe complications. 10 Therefore, it is crucial to identify patients at risk and to expand our understanding of the pathophysiology to enable a more targeted prevention and treatment of DVT." + }, + { + "self_ref": "#/texts/5", + "parent": { + "$ref": "#/texts/3" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "The mechanism of RBC-mediated DVT formation so far is not fully understood. Essentially, DVT formation is triggered by sterile inflammation. 11 Neutrophils and monocytes deliver tissue factor (TF) to the site of thrombus formation creating a procoagulant environment. 11 However, the contribution of leukocytes to DVT formation may vary depending on the underlying disease and a leukocyte-recruiting property of RBCs in DVT has not been conclusively proven.", + "text": "The mechanism of RBC-mediated DVT formation so far is not fully understood. Essentially, DVT formation is triggered by sterile inflammation. 11 Neutrophils and monocytes deliver tissue factor (TF) to the site of thrombus formation creating a procoagulant environment. 11 However, the contribution of leukocytes to DVT formation may vary depending on the underlying disease and a leukocyte-recruiting property of RBCs in DVT has not been conclusively proven." + }, + { + "self_ref": "#/texts/6", + "parent": { + "$ref": "#/texts/3" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "In this project we used a transgenic mouse model overexpressing the human EPO gene in an oxygen-independent manner. In these mice the hematocrit is chronically elevated, which leads to several changes. RBCs represent, volumetrically, the largest cellular component in the peripheral blood, thus influencing the viscosity of the blood, fostering cardiovascular events like stroke or ischemic heart disease. 12 RBCs from Tg(EPO) mice show increased flexibility which in turn reduces the viscosity, and protects from thrombus formation. 13 Additionally, excessive NO production has been described. In Tg(EPO) mice, the vasodilative effect of extensive NO release is partly compensated by endothelin. 14 A reduced lifespan of RBCs was also identified in this mouse strain. 15", + "text": "In this project we used a transgenic mouse model overexpressing the human EPO gene in an oxygen-independent manner. In these mice the hematocrit is chronically elevated, which leads to several changes. RBCs represent, volumetrically, the largest cellular component in the peripheral blood, thus influencing the viscosity of the blood, fostering cardiovascular events like stroke or ischemic heart disease. 12 RBCs from Tg(EPO) mice show increased flexibility which in turn reduces the viscosity, and protects from thrombus formation. 13 Additionally, excessive NO production has been described. In Tg(EPO) mice, the vasodilative effect of extensive NO release is partly compensated by endothelin. 14 A reduced lifespan of RBCs was also identified in this mouse strain. 15" + }, + { + "self_ref": "#/texts/7", + "parent": { + "$ref": "#/texts/3" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "The spleen is responsible for RBC clearance, which acts as gatekeeper of the state, age, and number of RBCs. 16 The loss of function of the spleen, due to removal, leads to changes in the blood count, the most striking of which is the transient thrombocytosis observed after splenectomy. 17 Even though the platelet count normalizes within weeks, the risk of thromboembolism remains persistently high; however, the mechanism behind this prothrombotic state is unclear. 18 19 20 Previous studies reveal an increase in platelet- and (to a lesser extent) RBC-derived microvesicles in splenectomized patients, which could indicate changes in their life cycle or activation state. 21 At the same time, the levels of negatively charged prothrombotic phospholipids, like phosphatidylserine, in pulmonary embolism increase after splenectomy. 22 23 24 Among others, RBCs can contribute to phosphatidylserine exposure. 25 Old, rigid RBCs with modified phospholipid exposure promote thrombus formation; however, their relevance for DVT in vivo remains unclear. 20 25 26", + "text": "The spleen is responsible for RBC clearance, which acts as gatekeeper of the state, age, and number of RBCs. 16 The loss of function of the spleen, due to removal, leads to changes in the blood count, the most striking of which is the transient thrombocytosis observed after splenectomy. 17 Even though the platelet count normalizes within weeks, the risk of thromboembolism remains persistently high; however, the mechanism behind this prothrombotic state is unclear. 18 19 20 Previous studies reveal an increase in platelet- and (to a lesser extent) RBC-derived microvesicles in splenectomized patients, which could indicate changes in their life cycle or activation state. 21 At the same time, the levels of negatively charged prothrombotic phospholipids, like phosphatidylserine, in pulmonary embolism increase after splenectomy. 22 23 24 Among others, RBCs can contribute to phosphatidylserine exposure. 25 Old, rigid RBCs with modified phospholipid exposure promote thrombus formation; however, their relevance for DVT in vivo remains unclear. 20 25 26" + }, + { + "self_ref": "#/texts/8", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/9" + } + ], + "label": "section_header", + "prov": [], + "orig": "Mouse Model", + "text": "Mouse Model", + "level": 1 + }, + { + "self_ref": "#/texts/9", + "parent": { + "$ref": "#/texts/8" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "C57BL/6 mice were obtained from Jackson Laboratory. Human EPO-overexpressing mice were generated as previously described. 14 TgN(PDGFBEPO)321Zbz consists of a transgenic mouse line, TgN(PDGFBEPO)321Zbz, expresses human EPO cDNA, and was initially reported by Ruschitzka et al, 14 subsequently named Tg(EPO). The expression is regulated by the platelet-derived growth factor promotor. We used the corresponding WT littermate controls named as WT. 27 Sex- and age-matched groups were used for the experiments with an age limit ranging between 12 and 29 weeks. The mice were housed in a specific-pathogen-free environment in our animal facility. General anesthesia was induced using a mixture of inhaled isoflurane, intravenous fentanyl, medetomidine, and midazolam. All procedures performed on mice were conducted in accordance with local legislation for the protection of animals (Regierung von Oberbayern, Munich) and were authorized accordingly.", + "text": "C57BL/6 mice were obtained from Jackson Laboratory. Human EPO-overexpressing mice were generated as previously described. 14 TgN(PDGFBEPO)321Zbz consists of a transgenic mouse line, TgN(PDGFBEPO)321Zbz, expresses human EPO cDNA, and was initially reported by Ruschitzka et al, 14 subsequently named Tg(EPO). The expression is regulated by the platelet-derived growth factor promotor. We used the corresponding WT littermate controls named as WT. 27 Sex- and age-matched groups were used for the experiments with an age limit ranging between 12 and 29 weeks. The mice were housed in a specific-pathogen-free environment in our animal facility. General anesthesia was induced using a mixture of inhaled isoflurane, intravenous fentanyl, medetomidine, and midazolam. All procedures performed on mice were conducted in accordance with local legislation for the protection of animals (Regierung von Oberbayern, Munich) and were authorized accordingly." + }, + { + "self_ref": "#/texts/10", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/11" + } + ], + "label": "section_header", + "prov": [], + "orig": "Statistics", + "text": "Statistics", + "level": 1 + }, + { + "self_ref": "#/texts/11", + "parent": { + "$ref": "#/texts/10" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "Statistical analysis was conducted using GraphPad Prism 5, employing a t -test. Based on clinical observations strongly suggesting an increase in thrombus formation in EPO overproducing mice, a one-sided t -test was performed. 8 9 The normal distribution of the data was confirmed using D'Agostino and Pearson omnibus normality testing. Thrombus incidences between groups were compared using the chi-square test.", + "text": "Statistical analysis was conducted using GraphPad Prism 5, employing a t -test. Based on clinical observations strongly suggesting an increase in thrombus formation in EPO overproducing mice, a one-sided t -test was performed. 8 9 The normal distribution of the data was confirmed using D'Agostino and Pearson omnibus normality testing. Thrombus incidences between groups were compared using the chi-square test." + }, + { + "self_ref": "#/texts/12", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/13" + }, + { + "$ref": "#/texts/14" + } + ], + "label": "section_header", + "prov": [], + "orig": "Chronic EPO Overproduction Leads to Increased DVT in Mice", + "text": "Chronic EPO Overproduction Leads to Increased DVT in Mice", + "level": 1 + }, + { + "self_ref": "#/texts/13", + "parent": { + "$ref": "#/texts/12" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "To investigate the impact of chronic erythrocyte overproduction on DVT in mice, we analyzed EPO-overexpressing transgenic Tg(EPO) mice. As expected, this mouse strain exhibited a substantial increase in RBC count ( Fig. 1A ). Additionally, the RBC width coefficient and reticulocyte count were elevated, indicating enhanced RBC production ( Supplementary Fig. S1A, B [available in the online version]). In addition to influencing the RBC lineage, our analyses revealed a significant increase in white blood cell (WBC) count, primarily driven by elevated lymphocyte count ( Supplementary Fig. S1C, E [available in the online version]). However, neutrophils known as major contributors to venous thrombosis showed no significant changes in EPO transgenic mice, while platelet counts were significantly reduced ( Fig. 1B and Supplementary Fig. S1D [available in the online version]). Furthermore, autopsies of the animals confirmed the presence of splenomegaly ( Supplementary Fig. S1F [available in the online version]). 28 29", + "text": "To investigate the impact of chronic erythrocyte overproduction on DVT in mice, we analyzed EPO-overexpressing transgenic Tg(EPO) mice. As expected, this mouse strain exhibited a substantial increase in RBC count ( Fig. 1A ). Additionally, the RBC width coefficient and reticulocyte count were elevated, indicating enhanced RBC production ( Supplementary Fig. S1A, B [available in the online version]). In addition to influencing the RBC lineage, our analyses revealed a significant increase in white blood cell (WBC) count, primarily driven by elevated lymphocyte count ( Supplementary Fig. S1C, E [available in the online version]). However, neutrophils known as major contributors to venous thrombosis showed no significant changes in EPO transgenic mice, while platelet counts were significantly reduced ( Fig. 1B and Supplementary Fig. S1D [available in the online version]). Furthermore, autopsies of the animals confirmed the presence of splenomegaly ( Supplementary Fig. S1F [available in the online version]). 28 29" + }, + { + "self_ref": "#/texts/14", + "parent": { + "$ref": "#/texts/12" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "Based on clinical observations indicating a correlation between high EPO levels and increased incidence of DVT, we utilized an IVC stenosis model to evaluate venous thrombosis in EPO-overexpressing mice. 6 7 Our findings revealed a significant elevation in both the incidence and thrombus weight in Tg(EPO) mice compared to their WT littermates ( Fig. 1C, D ). To determine whether chronic EPO overproduction in transgenic mice affected cardiac function, we assessed parameters such as the left ventricular ejection fraction, fractional shortening, and heart rate, ruling out any alternations ( Supplementary Fig. S1G, H, J [available in the online version]), which aligns with previous publications. 30 Additionally, morphological parameters including left ventricular mass, left ventricular internal diameter end diastole, and inner ventricular end diastolic septum diameter were similar between Tg(EPO) and WT mice ( Supplementary Fig. S1I, K, L [available in the online version]).", + "text": "Based on clinical observations indicating a correlation between high EPO levels and increased incidence of DVT, we utilized an IVC stenosis model to evaluate venous thrombosis in EPO-overexpressing mice. 6 7 Our findings revealed a significant elevation in both the incidence and thrombus weight in Tg(EPO) mice compared to their WT littermates ( Fig. 1C, D ). To determine whether chronic EPO overproduction in transgenic mice affected cardiac function, we assessed parameters such as the left ventricular ejection fraction, fractional shortening, and heart rate, ruling out any alternations ( Supplementary Fig. S1G, H, J [available in the online version]), which aligns with previous publications. 30 Additionally, morphological parameters including left ventricular mass, left ventricular internal diameter end diastole, and inner ventricular end diastolic septum diameter were similar between Tg(EPO) and WT mice ( Supplementary Fig. S1I, K, L [available in the online version])." + }, + { + "self_ref": "#/texts/15", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/16" + }, + { + "$ref": "#/texts/17" + }, + { + "$ref": "#/texts/18" + } + ], + "label": "section_header", + "prov": [], + "orig": "High RBC Count Leads to a Decrease in Platelet Accumulation in Venous Thrombosis", + "text": "High RBC Count Leads to a Decrease in Platelet Accumulation in Venous Thrombosis", + "level": 1 + }, + { + "self_ref": "#/texts/16", + "parent": { + "$ref": "#/texts/15" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "Having observed a correlation between high EPO and hematocrit levels with increased thrombus formation, our aim was to investigate the factors involved in triggering thrombus development through histologic analysis of thrombus composition. In Tg(EPO) mice, the elevated hematocrit levels led to enhanced RBC accumulation within the thrombus, as indicated by the Ter119-covered area measurement ( Fig. 2A ). Given the interaction between RBCs and platelets, which can initiate coagulation activation, we examined the distribution of fibrinogen in relation to RBCs and platelets within the thrombi. 31 Our findings revealed a close association between the fibrinogen signal and RBCs, as well as between the platelet signal and RBCs, indicating interactions among these three factors ( Fig. 2E, F ). However, we observed significantly lower fibrinogen coverage in thrombi from EPO transgenic mice ( Fig. 2B ). Furthermore, the structure of the fibrin meshwork exhibited an overall \u201clooser\u201d morphology with significantly thinner fibrin fibers ( Fig. 3A-C ).", + "text": "Having observed a correlation between high EPO and hematocrit levels with increased thrombus formation, our aim was to investigate the factors involved in triggering thrombus development through histologic analysis of thrombus composition. In Tg(EPO) mice, the elevated hematocrit levels led to enhanced RBC accumulation within the thrombus, as indicated by the Ter119-covered area measurement ( Fig. 2A ). Given the interaction between RBCs and platelets, which can initiate coagulation activation, we examined the distribution of fibrinogen in relation to RBCs and platelets within the thrombi. 31 Our findings revealed a close association between the fibrinogen signal and RBCs, as well as between the platelet signal and RBCs, indicating interactions among these three factors ( Fig. 2E, F ). However, we observed significantly lower fibrinogen coverage in thrombi from EPO transgenic mice ( Fig. 2B ). Furthermore, the structure of the fibrin meshwork exhibited an overall \u201clooser\u201d morphology with significantly thinner fibrin fibers ( Fig. 3A-C )." + }, + { + "self_ref": "#/texts/17", + "parent": { + "$ref": "#/texts/15" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "To quantify platelet accumulation in thrombi, we analyzed the CD41-covered area in thrombi of both mouse strains. Consistent with the reduced platelet count in peripheral blood, platelet accumulation was also decreased in thrombi from EPO transgenic mice ( Fig. 2C ).", + "text": "To quantify platelet accumulation in thrombi, we analyzed the CD41-covered area in thrombi of both mouse strains. Consistent with the reduced platelet count in peripheral blood, platelet accumulation was also decreased in thrombi from EPO transgenic mice ( Fig. 2C )." + }, + { + "self_ref": "#/texts/18", + "parent": { + "$ref": "#/texts/15" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "As mentioned previously, inflammation plays a fundamental role in DVT formation. Therefore, we conducted an analysis to quantify the presence of leukocytes in the thrombus material. Our investigation focused specifically on neutrophils, as they represent the predominant leukocyte population in peripheral blood. Despite observing normal neutrophil counts, we identified a significant reduction in neutrophil recruitment within thrombi from EPO transgenic mice ( Fig. 2D ). In summary, our findings indicate an isolated increase in the number of RBCs within venous thrombi of EPO transgenic mice, while the levels of fibrinogen and platelets were decreased.", + "text": "As mentioned previously, inflammation plays a fundamental role in DVT formation. Therefore, we conducted an analysis to quantify the presence of leukocytes in the thrombus material. Our investigation focused specifically on neutrophils, as they represent the predominant leukocyte population in peripheral blood. Despite observing normal neutrophil counts, we identified a significant reduction in neutrophil recruitment within thrombi from EPO transgenic mice ( Fig. 2D ). In summary, our findings indicate an isolated increase in the number of RBCs within venous thrombi of EPO transgenic mice, while the levels of fibrinogen and platelets were decreased." + }, + { + "self_ref": "#/texts/19", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/20" + }, + { + "$ref": "#/texts/21" + }, + { + "$ref": "#/texts/22" + } + ], + "label": "section_header", + "prov": [], + "orig": "Short-Term Administration of EPO Does Not Foster DVT", + "text": "Short-Term Administration of EPO Does Not Foster DVT", + "level": 1 + }, + { + "self_ref": "#/texts/20", + "parent": { + "$ref": "#/texts/19" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "Due to the significant impact of chronic EPO overproduction in Tg(EPO) mice on peripheral blood count and its detrimental consequences on DVT formation, we proceeded to analyze the effects of 2-week periodic EPO injections on blood count and subsequent DVT formation in WT mice. Within just 2 weeks, a significant increase of RBC and reticulocyte count in peripheral blood was observed ( Fig. 4A and Supplementary Fig. S2A [available in the online version]). Conversely, platelet count exhibited a notable decrease in EPO-treated mice ( Fig. 4B ). Unlike EPO-overexpressing mice, the leukocyte counts and their differentiation into granulocytes, lymphocytes, and monocytes showed no differences between EPO-treated and nontreated mice ( Supplementary Fig. S2B\u2013E [available in the online version]). Autopsy analyses further revealed a significant enlargement and weight increase of the spleen in EPO-treated mice ( Supplementary Fig. S2F, G [available in the online version]).", + "text": "Due to the significant impact of chronic EPO overproduction in Tg(EPO) mice on peripheral blood count and its detrimental consequences on DVT formation, we proceeded to analyze the effects of 2-week periodic EPO injections on blood count and subsequent DVT formation in WT mice. Within just 2 weeks, a significant increase of RBC and reticulocyte count in peripheral blood was observed ( Fig. 4A and Supplementary Fig. S2A [available in the online version]). Conversely, platelet count exhibited a notable decrease in EPO-treated mice ( Fig. 4B ). Unlike EPO-overexpressing mice, the leukocyte counts and their differentiation into granulocytes, lymphocytes, and monocytes showed no differences between EPO-treated and nontreated mice ( Supplementary Fig. S2B\u2013E [available in the online version]). Autopsy analyses further revealed a significant enlargement and weight increase of the spleen in EPO-treated mice ( Supplementary Fig. S2F, G [available in the online version])." + }, + { + "self_ref": "#/texts/21", + "parent": { + "$ref": "#/texts/19" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "To further investigate the underlying cause of thrombocytopenia in EPO-treated mice, we examined the bone marrow composition. Previous studies by Shibata et al demonstrated a reduction in megakaryocytes in Tg(EPO) mice. 32 Therefore, we analyzed the bone marrow composition after 2 weeks of EPO treatment. However, we found no difference in the TER119-covered area, indicating no significant alternation ( Fig. 4C, D ). Similarly, the megakaryocyte count in the bone marrow showed no changes compared to the control group ( Fig. 4E, F ,). In terms of platelet morphology, we observed an increased platelet large cell ratio in the EPO-treated group ( Fig. 4G ). This suggests an elevated production potential of megakaryocytes, as immature platelets tend to have larger cell volumes compared to mature platelets. 33 These findings indicate that our EPO administration protocol enhanced the synthesis capacity of bone marrow stem cells, resulting in augmented erythropoiesis. However, the cellular composition of the bone marrow remained unchanged after 2 weeks of treatment.", + "text": "To further investigate the underlying cause of thrombocytopenia in EPO-treated mice, we examined the bone marrow composition. Previous studies by Shibata et al demonstrated a reduction in megakaryocytes in Tg(EPO) mice. 32 Therefore, we analyzed the bone marrow composition after 2 weeks of EPO treatment. However, we found no difference in the TER119-covered area, indicating no significant alternation ( Fig. 4C, D ). Similarly, the megakaryocyte count in the bone marrow showed no changes compared to the control group ( Fig. 4E, F ,). In terms of platelet morphology, we observed an increased platelet large cell ratio in the EPO-treated group ( Fig. 4G ). This suggests an elevated production potential of megakaryocytes, as immature platelets tend to have larger cell volumes compared to mature platelets. 33 These findings indicate that our EPO administration protocol enhanced the synthesis capacity of bone marrow stem cells, resulting in augmented erythropoiesis. However, the cellular composition of the bone marrow remained unchanged after 2 weeks of treatment." + }, + { + "self_ref": "#/texts/22", + "parent": { + "$ref": "#/texts/19" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "To analyze the impact of 2-week EPO treatment on DVT formation, we utilized the IVC stenosis model. Despite similar changes in blood count in Tg(EPO) mice or WT mice after EPO administration, we observed comparable venous thrombus formation between mice treated with EPO for 2 weeks and the control group treated with NaCl ( Fig. 4H, I ). Since we previously observed that only long-term elevation of EPO levels with supraphysiologic hematocrit leads to increased thrombus formation, our focus shifted toward identifying the factors triggering thrombus formation. Therefore, we conducted a histological analysis of thrombus composition. Given the significantly thinner fibrin fibers observed in thrombi from Tg(EPO) mice, we investigated whether similar morphological changes occurred in mice treated with EPO for 2 weeks. Interestingly, the histological examination of the thrombi revealed a comparable thinning of fibrin fibers following EPO treatment ( Fig. 3D, E ).", + "text": "To analyze the impact of 2-week EPO treatment on DVT formation, we utilized the IVC stenosis model. Despite similar changes in blood count in Tg(EPO) mice or WT mice after EPO administration, we observed comparable venous thrombus formation between mice treated with EPO for 2 weeks and the control group treated with NaCl ( Fig. 4H, I ). Since we previously observed that only long-term elevation of EPO levels with supraphysiologic hematocrit leads to increased thrombus formation, our focus shifted toward identifying the factors triggering thrombus formation. Therefore, we conducted a histological analysis of thrombus composition. Given the significantly thinner fibrin fibers observed in thrombi from Tg(EPO) mice, we investigated whether similar morphological changes occurred in mice treated with EPO for 2 weeks. Interestingly, the histological examination of the thrombi revealed a comparable thinning of fibrin fibers following EPO treatment ( Fig. 3D, E )." + }, + { + "self_ref": "#/texts/23", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/24" + }, + { + "$ref": "#/texts/25" + }, + { + "$ref": "#/texts/26" + } + ], + "label": "section_header", + "prov": [], + "orig": "Splenectomy Does Not Affect Venous Thrombus Formation", + "text": "Splenectomy Does Not Affect Venous Thrombus Formation", + "level": 1 + }, + { + "self_ref": "#/texts/24", + "parent": { + "$ref": "#/texts/23" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "As the data suggested a qualitative change in RBCs in the context of EPO overproduction, we investigated whether splenic clearance of aged RBCs plays a critical role in the increased formation of DVT. In the spleen, aged and damaged RBCs are eliminated, ensuring the presence of young and flexible RBCs. 16 We examined the immediate impact of EPO on spleen morphology. Even a single injection of 300\u2009IU EPO s.c. in mice resulted in a significant increase in spleen weight, despite no difference in blood count compared to the control group ( Supplementary Fig. S2F\u2013H [available in the online version]). This striking phenotype was also observed in mice with chronic EPO overexpression ( Supplementary Fig. S1F [available in the online version]). 13", + "text": "As the data suggested a qualitative change in RBCs in the context of EPO overproduction, we investigated whether splenic clearance of aged RBCs plays a critical role in the increased formation of DVT. In the spleen, aged and damaged RBCs are eliminated, ensuring the presence of young and flexible RBCs. 16 We examined the immediate impact of EPO on spleen morphology. Even a single injection of 300\u2009IU EPO s.c. in mice resulted in a significant increase in spleen weight, despite no difference in blood count compared to the control group ( Supplementary Fig. S2F\u2013H [available in the online version]). This striking phenotype was also observed in mice with chronic EPO overexpression ( Supplementary Fig. S1F [available in the online version]). 13" + }, + { + "self_ref": "#/texts/25", + "parent": { + "$ref": "#/texts/23" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "To investigate the role of splenic RBC clearance in DVT, we performed splenectomy 5 weeks prior to conducting the IVC stenosis model. Firstly, we analyzed the impact of splenectomy on blood cell counts in WT mice 5 weeks postsurgery. We observed an increase in granulocytes and lymphocytes after splenectomy ( Fig. 5A and Supplementary Fig. S3A, B [available in the online version]). Next, we examined the distribution of blood cells in response to DVT development. Similar to nonsplenectomized mice, we observed an increase in WBC count in the peripheral blood ( Fig. 5A ). Additionally, we noted a significant decrease in platelet count in splenectomized mice in response to thrombus development ( Fig. 5B ), which is consistent with the results obtained from nonsplenectomized mice.", + "text": "To investigate the role of splenic RBC clearance in DVT, we performed splenectomy 5 weeks prior to conducting the IVC stenosis model. Firstly, we analyzed the impact of splenectomy on blood cell counts in WT mice 5 weeks postsurgery. We observed an increase in granulocytes and lymphocytes after splenectomy ( Fig. 5A and Supplementary Fig. S3A, B [available in the online version]). Next, we examined the distribution of blood cells in response to DVT development. Similar to nonsplenectomized mice, we observed an increase in WBC count in the peripheral blood ( Fig. 5A ). Additionally, we noted a significant decrease in platelet count in splenectomized mice in response to thrombus development ( Fig. 5B ), which is consistent with the results obtained from nonsplenectomized mice." + }, + { + "self_ref": "#/texts/26", + "parent": { + "$ref": "#/texts/23" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "Finally, we analyzed the impact of splenectomy on DVT formation in both WT mice and Tg(EPO) mice. Despite changes in blood cell counts and the effects on platelet removal, there was no difference in the incidence and thrombus weight in C57Bl/6 mice ( Fig. 5D, E ). Next, we examined EPO-overexpressing mice, which have been shown to have an increased risk of DVT formation. Despite significant splenomegaly, the incidence of DVT formation remained statistically unchanged after spleen removal ( Fig. 5F, G ). Therefore, splenectomy does not affect thrombus formation in the context of enhanced or normal erythropoiesis.", + "text": "Finally, we analyzed the impact of splenectomy on DVT formation in both WT mice and Tg(EPO) mice. Despite changes in blood cell counts and the effects on platelet removal, there was no difference in the incidence and thrombus weight in C57Bl/6 mice ( Fig. 5D, E ). Next, we examined EPO-overexpressing mice, which have been shown to have an increased risk of DVT formation. Despite significant splenomegaly, the incidence of DVT formation remained statistically unchanged after spleen removal ( Fig. 5F, G ). Therefore, splenectomy does not affect thrombus formation in the context of enhanced or normal erythropoiesis." + }, + { + "self_ref": "#/texts/27", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/28" + }, + { + "$ref": "#/texts/29" + }, + { + "$ref": "#/texts/30" + }, + { + "$ref": "#/texts/31" + }, + { + "$ref": "#/texts/32" + } + ], + "label": "section_header", + "prov": [], + "orig": "Discussion", + "text": "Discussion", + "level": 1 + }, + { + "self_ref": "#/texts/28", + "parent": { + "$ref": "#/texts/27" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "Here, we present evidence for a differential thrombotic effect of chronic EPO overproduction and short-term external EPO administration. Consistent with clinical observations, chronic overproduction of EPO is associated with an increased risk of DVT formation. This is similar to Chuvash polycythemia where the von-Hippel\u2013Lindau mutation leads to chronic overproduction of hypoxia-induced factors and high EPO levels. 34 In addition to genetically altered EPO production, factors such as residence at high altitudes and naturally increasing EPO secretion also represent risk factors for venous thrombosis and pulmonary thromboembolism. 35 36 These conditions can be mimicked in a mouse model through chronic hypoxia. 37", + "text": "Here, we present evidence for a differential thrombotic effect of chronic EPO overproduction and short-term external EPO administration. Consistent with clinical observations, chronic overproduction of EPO is associated with an increased risk of DVT formation. This is similar to Chuvash polycythemia where the von-Hippel\u2013Lindau mutation leads to chronic overproduction of hypoxia-induced factors and high EPO levels. 34 In addition to genetically altered EPO production, factors such as residence at high altitudes and naturally increasing EPO secretion also represent risk factors for venous thrombosis and pulmonary thromboembolism. 35 36 These conditions can be mimicked in a mouse model through chronic hypoxia. 37" + }, + { + "self_ref": "#/texts/29", + "parent": { + "$ref": "#/texts/27" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "In our analyses, we observed that short-term administration of EPO does not increase the risk of DVT, in contrast to chronic overproduction of EPO. However, changes in peripheral blood count in response to EPO occur relatively quickly, within 2 weeks of initiating therapy in mice. These changes include elevated levels of hemoglobin and thrombocytopenia, which are consistent with previous studies. 17 22 38 39 40 41 42 43 44 45 In the model of transgenic overexpressing EPO mice, there was an age-dependent progressive decrease in megakaryocyte count in the bone marrow. 32 A similar phenomenon can be observed in mice exposed to chronic hypoxia. 46 It is believed that competition between erythroid and platelet precursors in the stem cell population is responsible for this phenomenon. 38 Despite a similar decrease of peripheral platelet counts, we observed normal megakaryocyte counts in the bone marrow of mice injected with EPO for 2 weeks. We speculate that morphological changes in the bone marrow are long-term consequences of EPO administration. In peripheral blood, we observed a significant increase in the platelet large cell ratio in mice treated with EPO for 2 weeks. This is likely due to an elevated count of reticulated platelets, which has been previously observed in response to EPO treatment. 47 The presence of high levels of reticulated platelets indicates a high synthetic potential of megakaryocytes. Indeed, megakaryocytes possess high-affinity binding sites for EPO resulting in an increase in size, ploidy, and number of megakaryocytes in vitro. 48 49 Young, reticulated platelets are known risk factors for thrombosis, which may counterbalance the overall low platelet count in terms of thrombogenicity. 50 51 52 However, the significant increase in DVT observed in chronic EPO-overexpressing mice is likely attributed to qualitative changes in RBCs. There are several ways in which RBCs can interact with platelets and fibrin. The FAS-L-FAS-R interplay between RBCs and platelets has been shown to enhance DVT formation. 31 Additionally, interactions such as ICAM-4\u2013\u03b11b\u03b23 integrin and adhesion between RBCs and platelets mediated by GPIb and CD36 have been described. 53 54 As demonstrated in this study, the pronounced prothrombotic effect of RBCs only manifests after several weeks to months of EPO overproduction. Thus, we propose that RBC aging plays a role in this phenomenon. This is supported by the finding that RBCs in our Tg(EPO) mouse model exhibit characteristics of accelerated aging including decreased CD47 expression, leading to a 70% reduction in lifespan. 15", + "text": "In our analyses, we observed that short-term administration of EPO does not increase the risk of DVT, in contrast to chronic overproduction of EPO. However, changes in peripheral blood count in response to EPO occur relatively quickly, within 2 weeks of initiating therapy in mice. These changes include elevated levels of hemoglobin and thrombocytopenia, which are consistent with previous studies. 17 22 38 39 40 41 42 43 44 45 In the model of transgenic overexpressing EPO mice, there was an age-dependent progressive decrease in megakaryocyte count in the bone marrow. 32 A similar phenomenon can be observed in mice exposed to chronic hypoxia. 46 It is believed that competition between erythroid and platelet precursors in the stem cell population is responsible for this phenomenon. 38 Despite a similar decrease of peripheral platelet counts, we observed normal megakaryocyte counts in the bone marrow of mice injected with EPO for 2 weeks. We speculate that morphological changes in the bone marrow are long-term consequences of EPO administration. In peripheral blood, we observed a significant increase in the platelet large cell ratio in mice treated with EPO for 2 weeks. This is likely due to an elevated count of reticulated platelets, which has been previously observed in response to EPO treatment. 47 The presence of high levels of reticulated platelets indicates a high synthetic potential of megakaryocytes. Indeed, megakaryocytes possess high-affinity binding sites for EPO resulting in an increase in size, ploidy, and number of megakaryocytes in vitro. 48 49 Young, reticulated platelets are known risk factors for thrombosis, which may counterbalance the overall low platelet count in terms of thrombogenicity. 50 51 52 However, the significant increase in DVT observed in chronic EPO-overexpressing mice is likely attributed to qualitative changes in RBCs. There are several ways in which RBCs can interact with platelets and fibrin. The FAS-L-FAS-R interplay between RBCs and platelets has been shown to enhance DVT formation. 31 Additionally, interactions such as ICAM-4\u2013\u03b11b\u03b23 integrin and adhesion between RBCs and platelets mediated by GPIb and CD36 have been described. 53 54 As demonstrated in this study, the pronounced prothrombotic effect of RBCs only manifests after several weeks to months of EPO overproduction. Thus, we propose that RBC aging plays a role in this phenomenon. This is supported by the finding that RBCs in our Tg(EPO) mouse model exhibit characteristics of accelerated aging including decreased CD47 expression, leading to a 70% reduction in lifespan. 15" + }, + { + "self_ref": "#/texts/30", + "parent": { + "$ref": "#/texts/27" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "During the ageing process, RBCs not only display increasing amounts of procoagulant phosphatidylserine on their surface but also exhibit heightened osmotic and mechanical fragility, which is also observed in Tg(EPO) mice. 32 55 Fragile RBCs are prone to hemolysis, resulting in the release of ADP and free hemoglobin. Furthermore, hemoglobin directly or indirectly contributes to increased platelet activity, for instance, by forming complexes with nitric oxide (NO). 56 57 58 NO is essential for the survival of Tg(EPO) mice but dispensable for WT mice. 14 Consistent with this, patients with polycythemia vera exhibit platelet hypersensitivity despite normal platelet counts, while plasma haptoglobin concentration, a marker for hemolysis, is decreased. 59 60 61 62 63 64 65 Similarly, chronic subcutaneous EPO administration in hemodialysis patients leads to a prothrombotic phenotype similar to that of polycythemia vera patients. 66 67 68 69 70 Notably, concentrated RBC transfusions result in the rapid clearance of up to 30% of transfused erythrocytes within 24\u2009hours due to their age, thus increasing the risk of DVT formation. 5 71", + "text": "During the ageing process, RBCs not only display increasing amounts of procoagulant phosphatidylserine on their surface but also exhibit heightened osmotic and mechanical fragility, which is also observed in Tg(EPO) mice. 32 55 Fragile RBCs are prone to hemolysis, resulting in the release of ADP and free hemoglobin. Furthermore, hemoglobin directly or indirectly contributes to increased platelet activity, for instance, by forming complexes with nitric oxide (NO). 56 57 58 NO is essential for the survival of Tg(EPO) mice but dispensable for WT mice. 14 Consistent with this, patients with polycythemia vera exhibit platelet hypersensitivity despite normal platelet counts, while plasma haptoglobin concentration, a marker for hemolysis, is decreased. 59 60 61 62 63 64 65 Similarly, chronic subcutaneous EPO administration in hemodialysis patients leads to a prothrombotic phenotype similar to that of polycythemia vera patients. 66 67 68 69 70 Notably, concentrated RBC transfusions result in the rapid clearance of up to 30% of transfused erythrocytes within 24\u2009hours due to their age, thus increasing the risk of DVT formation. 5 71" + }, + { + "self_ref": "#/texts/31", + "parent": { + "$ref": "#/texts/27" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "Clearance of RBCs primarily occurs in the spleen, where tissue-resident macrophages screen for surface markers such as CD47. 72 Subsequently, RBCs are phagocytosed before reaching day 120 of their lifespan. 73 The spleen plays a crucial role in maintaining the shape and membrane resilience of RBCs, acting as a guardian in this regard. 74 However, shortly after splenectomy, the loss of the organ significantly increases the risk of DVT formation. 20 In the long-term basis, we observed no difference in DVT formation after splenectomy, neither in WT mice nor in chronic EPO-overexpressing mice, despite the dramatic increase in macrophage-mediated RBC clearance in these mice. 15 Since RBC clearance occurs primarily in the spleen and liver in mice, we hypothesize that the liver is capable of adequately compensating for the absence of the spleen after removal. 15", + "text": "Clearance of RBCs primarily occurs in the spleen, where tissue-resident macrophages screen for surface markers such as CD47. 72 Subsequently, RBCs are phagocytosed before reaching day 120 of their lifespan. 73 The spleen plays a crucial role in maintaining the shape and membrane resilience of RBCs, acting as a guardian in this regard. 74 However, shortly after splenectomy, the loss of the organ significantly increases the risk of DVT formation. 20 In the long-term basis, we observed no difference in DVT formation after splenectomy, neither in WT mice nor in chronic EPO-overexpressing mice, despite the dramatic increase in macrophage-mediated RBC clearance in these mice. 15 Since RBC clearance occurs primarily in the spleen and liver in mice, we hypothesize that the liver is capable of adequately compensating for the absence of the spleen after removal. 15" + }, + { + "self_ref": "#/texts/32", + "parent": { + "$ref": "#/texts/27" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "Besides their activating effect on platelets, RBCs also directly impact the coagulation system. Previous data demonstrate that following TF activation, RBCs contribute to thrombin generation to a similar extent to platelets. 75 Furthermore, RBCs expose phosphatidylserine, which activates the contact pathway. 31 Notably, the coagulation system in Tg(EPO) mice exhibits normal activity in whole blood adjusted to a physiological hematocrit. 32 Additionally, RBCs express a receptor with properties similar to the \u03b1 IIb \u03b2 3 integrin enabling their interaction with fibrin. 76 This interaction contributes to the formation of a dense fibrin meshwork consisting of thin fibers. 77 Such a structure hinders clot dissolution, leading to slower lysis. 77 In our histological analysis of thrombi, we confirm morphological changes in the fibrin meshwork, resulting in a thinner appearance in both EPO-overexpressing mice and mice subjected to short-term EPO injection.", + "text": "Besides their activating effect on platelets, RBCs also directly impact the coagulation system. Previous data demonstrate that following TF activation, RBCs contribute to thrombin generation to a similar extent to platelets. 75 Furthermore, RBCs expose phosphatidylserine, which activates the contact pathway. 31 Notably, the coagulation system in Tg(EPO) mice exhibits normal activity in whole blood adjusted to a physiological hematocrit. 32 Additionally, RBCs express a receptor with properties similar to the \u03b1 IIb \u03b2 3 integrin enabling their interaction with fibrin. 76 This interaction contributes to the formation of a dense fibrin meshwork consisting of thin fibers. 77 Such a structure hinders clot dissolution, leading to slower lysis. 77 In our histological analysis of thrombi, we confirm morphological changes in the fibrin meshwork, resulting in a thinner appearance in both EPO-overexpressing mice and mice subjected to short-term EPO injection." + }, + { + "self_ref": "#/texts/33", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "section_header", + "prov": [], + "orig": "Figures", + "text": "Figures", + "level": 1 + }, + { + "self_ref": "#/texts/34", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [], + "orig": "Fig. 1 EPO-overexpressing mice experience an increased incidence of DVT formation. (A) Comparison of RBC count between EPO-overexpressing Tg(EPO) mice (n\u2009=\u200912) and control (WT) mice (n\u2009=\u200913). (B) Comparison of platelet count between EPO-overexpressing Tg(EPO) (n\u2009=\u20097) mice and control (WT) mice (n\u2009=\u20095). (C) Comparison of thrombus weight between Tg(EPO) mice (n\u2009=\u20099) and WT (n\u2009=\u200910); mean age in the Tg(EPO) group: 19.8 weeks; mean age in the WT group: 20.1 weeks. (D) Comparison of thrombus incidence between Tg(EPO) mice (n\u2009=\u20099) and WT mice (n\u2009=\u200910); NS\u2009=\u2009nonsignificant, *p\u2009<\u20090.05, **p\u2009<\u20090.01, ***p\u2009<\u20090.001. DVT, deep vein thrombosis; EPO, erythropoietin; RBC, red blood cell; WT, wild type.", + "text": "Fig. 1 EPO-overexpressing mice experience an increased incidence of DVT formation. (A) Comparison of RBC count between EPO-overexpressing Tg(EPO) mice (n\u2009=\u200912) and control (WT) mice (n\u2009=\u200913). (B) Comparison of platelet count between EPO-overexpressing Tg(EPO) (n\u2009=\u20097) mice and control (WT) mice (n\u2009=\u20095). (C) Comparison of thrombus weight between Tg(EPO) mice (n\u2009=\u20099) and WT (n\u2009=\u200910); mean age in the Tg(EPO) group: 19.8 weeks; mean age in the WT group: 20.1 weeks. (D) Comparison of thrombus incidence between Tg(EPO) mice (n\u2009=\u20099) and WT mice (n\u2009=\u200910); NS\u2009=\u2009nonsignificant, *p\u2009<\u20090.05, **p\u2009<\u20090.01, ***p\u2009<\u20090.001. DVT, deep vein thrombosis; EPO, erythropoietin; RBC, red blood cell; WT, wild type." + }, + { + "self_ref": "#/texts/35", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [], + "orig": "Fig. 2 Chronic overproduction of EPO in mice leads to a decrease in the accumulation of classical drivers of DVT formation, including platelets, neutrophils, and fibrinogen. (A) The proportion of RBC-covered area in the thrombi of EPO-overexpressing Tg(EPO) mice (n\u2009=\u20094) was compared to control (WT) (n\u2009=\u20093) by immunofluorescence staining of cross-sections of the IVC 48\u2009hours after flow reduction. (B) The proportion of fibrinogen-covered area in the thrombi of EPO- overexpressing Tg(EPO) mice (n\u2009=\u20093) was compared to control (WT) (n\u2009=\u20093) using immunofluorescence staining of cross-sections of the IVC 48\u2009hours after flow reduction. (C) The proportion of platelet-covered area in the thrombi of EPO-overexpressing Tg(EPO) mice (n\u2009=\u20093) was compared to control (WT) (n\u2009=\u20093) by immunofluorescence staining of cross-sections of the IVC 48\u2009hours after flow reduction. (D) Quantification of neutrophils was performed by immunofluorescence staining of cross-sections of the IVC 48\u2009hours after flow reduction in EPO-overexpressing Tg(EPO) mice (n\u2009=\u20093) compared to control (WT) (n\u2009=\u20093). (E) Immunofluorescence staining of cross-sections of the IVC 48\u2009hours after flow reduction from EPO-overexpressing Tg(EPO) mice (top) was compared to control (WT) (bottom) for TER119 in red (RBC), CD42b in green (platelets), and Hoechst in blue (DNA). The merged image is on the left, and the single channel image is on the right. Scale bar: 50\u2009\u00b5m. (F) Immunofluorescence staining of cross-sections of the IVC 48\u2009hours after flow reduction from EPO-overexpressing Tg(EPO) mice (top) was compared to control (WT) (bottom) for TER119 in red (RBC), fibrinogen in green, and Hoechst in blue (DNA); the merged image is on the left, and single-channel images are on the right. Scale bar: 50\u2009\u00b5m.; NS\u2009=\u2009nonsignificant, *p\u2009<\u20090.05, **p\u2009<\u20090.01, ***p\u2009<\u20090.001. DVT, deep vein thrombosis; EPO, erythropoietin; IVC, inferior vena cava; RBC, red blood cell; WT, wild type.", + "text": "Fig. 2 Chronic overproduction of EPO in mice leads to a decrease in the accumulation of classical drivers of DVT formation, including platelets, neutrophils, and fibrinogen. (A) The proportion of RBC-covered area in the thrombi of EPO-overexpressing Tg(EPO) mice (n\u2009=\u20094) was compared to control (WT) (n\u2009=\u20093) by immunofluorescence staining of cross-sections of the IVC 48\u2009hours after flow reduction. (B) The proportion of fibrinogen-covered area in the thrombi of EPO- overexpressing Tg(EPO) mice (n\u2009=\u20093) was compared to control (WT) (n\u2009=\u20093) using immunofluorescence staining of cross-sections of the IVC 48\u2009hours after flow reduction. (C) The proportion of platelet-covered area in the thrombi of EPO-overexpressing Tg(EPO) mice (n\u2009=\u20093) was compared to control (WT) (n\u2009=\u20093) by immunofluorescence staining of cross-sections of the IVC 48\u2009hours after flow reduction. (D) Quantification of neutrophils was performed by immunofluorescence staining of cross-sections of the IVC 48\u2009hours after flow reduction in EPO-overexpressing Tg(EPO) mice (n\u2009=\u20093) compared to control (WT) (n\u2009=\u20093). (E) Immunofluorescence staining of cross-sections of the IVC 48\u2009hours after flow reduction from EPO-overexpressing Tg(EPO) mice (top) was compared to control (WT) (bottom) for TER119 in red (RBC), CD42b in green (platelets), and Hoechst in blue (DNA). The merged image is on the left, and the single channel image is on the right. Scale bar: 50\u2009\u00b5m. (F) Immunofluorescence staining of cross-sections of the IVC 48\u2009hours after flow reduction from EPO-overexpressing Tg(EPO) mice (top) was compared to control (WT) (bottom) for TER119 in red (RBC), fibrinogen in green, and Hoechst in blue (DNA); the merged image is on the left, and single-channel images are on the right. Scale bar: 50\u2009\u00b5m.; NS\u2009=\u2009nonsignificant, *p\u2009<\u20090.05, **p\u2009<\u20090.01, ***p\u2009<\u20090.001. DVT, deep vein thrombosis; EPO, erythropoietin; IVC, inferior vena cava; RBC, red blood cell; WT, wild type." + }, + { + "self_ref": "#/texts/36", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [], + "orig": "Fig. 3 The interaction of RBC with fibrinogen leads to the formation of a branched fibrin structure. (A) Immunofluorescence staining of cross-sections of the IVC 48\u2009hours after flow reduction from EPO-overexpressing Tg(EPO) mice (left) was compared to control (WT) for fibrinogen (green). Scare bar: 50\u2009\u00b5m. (B) High-resolution confocal images of immunofluorescence staining of cross-sections of the IVC 48\u2009hours after flow reduction from EPO-overexpressing Tg(EPO) mice (left) compared to control (WT) for fibrinogen (green), RBC (red), and DNA (blue). Scale bar: 2\u2009\u00b5m. (C) The mean diameter of 2,141 fibrin fibers was measured in cross-sections of thrombi from Tg(EPO) mice (left), and compared to 5,238 fibrin fibers of WT thrombi. (D) The mean diameter of 3,797 fibrin fibers was measured in two cross-sections of thrombi from 2-week EPO-injected mice (left), and compared to 10,920 fibrin fibers of three cross-sections from control (2-week NaCl-injected mice). (E) High-resolution confocal images of immunofluorescence staining of two cross-sections of the IVC 48\u2009hours after flow reduction from 2-week EPO-injected mice (left) were compared to control (2 week NaCl-injected mice) for fibrinogen (green), RBC (red), and DNA (blue). Scale bar: 2\u2009\u00b5m. EPO, erythropoietin; IVC, inferior vena cava; RBC, red blood cell; WT, wild type.", + "text": "Fig. 3 The interaction of RBC with fibrinogen leads to the formation of a branched fibrin structure. (A) Immunofluorescence staining of cross-sections of the IVC 48\u2009hours after flow reduction from EPO-overexpressing Tg(EPO) mice (left) was compared to control (WT) for fibrinogen (green). Scare bar: 50\u2009\u00b5m. (B) High-resolution confocal images of immunofluorescence staining of cross-sections of the IVC 48\u2009hours after flow reduction from EPO-overexpressing Tg(EPO) mice (left) compared to control (WT) for fibrinogen (green), RBC (red), and DNA (blue). Scale bar: 2\u2009\u00b5m. (C) The mean diameter of 2,141 fibrin fibers was measured in cross-sections of thrombi from Tg(EPO) mice (left), and compared to 5,238 fibrin fibers of WT thrombi. (D) The mean diameter of 3,797 fibrin fibers was measured in two cross-sections of thrombi from 2-week EPO-injected mice (left), and compared to 10,920 fibrin fibers of three cross-sections from control (2-week NaCl-injected mice). (E) High-resolution confocal images of immunofluorescence staining of two cross-sections of the IVC 48\u2009hours after flow reduction from 2-week EPO-injected mice (left) were compared to control (2 week NaCl-injected mice) for fibrinogen (green), RBC (red), and DNA (blue). Scale bar: 2\u2009\u00b5m. EPO, erythropoietin; IVC, inferior vena cava; RBC, red blood cell; WT, wild type." + }, + { + "self_ref": "#/texts/37", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [], + "orig": "Fig. 4 Two-week EPO injection leads to thrombocytopenia without an impact on the bone marrow. (A) RBC count in peripheral blood after 6\u2009\u00d7\u2009300\u2009IU EPO treatment of C57Bl/6J mice (n\u2009=\u200910) was compared to control (6\u2009\u00d7\u200930 \u00b5L NaCl injection) (n\u2009=\u20099). (B) Platelet count in peripheral blood after 6\u2009\u00d7\u2009300\u2009IU EPO treatment of C57Bl/6J mice (n\u2009=\u200910) was compared to control (6\u2009\u00d7\u200930 \u00b5L NaCl injection) (n\u2009=\u200910). (C) Area of RBC-positive area in the bone marrow of 6\u2009\u00d7\u2009300\u2009IU EPO-treated C57Bl/6J mice (n\u2009=\u20094) was compared to control (6\u2009\u00d7\u200930 \u00b5L NaCl injection) (n\u2009=\u20094). (D) Immunofluorescence staining of cross-sections of the bone marrow after 2-week EPO injection (top) was compared to NaCl injection (bottom) stained for TER119 (violet) and Hoechst (white). Scale bar: 100\u2009\u00b5m. (E) Number of megakaryocyte count in the bone marrow of 6\u2009\u00d7\u2009300\u2009IU EPO-treated C57Bl/6J mice (n\u2009=\u20094) was compared to control (6\u2009\u00d7\u200930 \u00b5L NaCl injection) (n\u2009=\u20094). (F) Immunofluorescence staining of cross-sections of the bone marrow after 2-week EPO injection (top) compared to NaCl injection (bottom) stained for CD41 (violet) and Hoechst (white). Scale bar: 100\u2009\u00b5m. (G) Platelet large cell ratio in peripheral blood of 6\u2009\u00d7\u2009300\u2009IU EPO-treated C57Bl/6J mice (n\u2009=\u200910) compared to control (6\u2009\u00d7\u200930 \u00b5L NaCl injection) (n\u2009=\u20099). (H) Thrombus weight of 6\u2009\u00d7\u2009300\u2009IU EPO-treated C57Bl/6J mice (n\u2009=\u200910) and NaCl-injected control mice (n\u2009=\u200910). (I) Thrombus incidence of 6\u2009\u00d7\u2009300\u2009IU EPO-treated C57Bl/6J mice (n\u2009=\u200910) and NaCl-injected control mice (n\u2009=\u200910). NS\u2009=\u2009nonsignificant, *p\u2009<\u20090.05, **p\u2009<\u20090.01, ***p\u2009<\u20090.001. EPO, erythropoietin; RBC, red blood cell.", + "text": "Fig. 4 Two-week EPO injection leads to thrombocytopenia without an impact on the bone marrow. (A) RBC count in peripheral blood after 6\u2009\u00d7\u2009300\u2009IU EPO treatment of C57Bl/6J mice (n\u2009=\u200910) was compared to control (6\u2009\u00d7\u200930 \u00b5L NaCl injection) (n\u2009=\u20099). (B) Platelet count in peripheral blood after 6\u2009\u00d7\u2009300\u2009IU EPO treatment of C57Bl/6J mice (n\u2009=\u200910) was compared to control (6\u2009\u00d7\u200930 \u00b5L NaCl injection) (n\u2009=\u200910). (C) Area of RBC-positive area in the bone marrow of 6\u2009\u00d7\u2009300\u2009IU EPO-treated C57Bl/6J mice (n\u2009=\u20094) was compared to control (6\u2009\u00d7\u200930 \u00b5L NaCl injection) (n\u2009=\u20094). (D) Immunofluorescence staining of cross-sections of the bone marrow after 2-week EPO injection (top) was compared to NaCl injection (bottom) stained for TER119 (violet) and Hoechst (white). Scale bar: 100\u2009\u00b5m. (E) Number of megakaryocyte count in the bone marrow of 6\u2009\u00d7\u2009300\u2009IU EPO-treated C57Bl/6J mice (n\u2009=\u20094) was compared to control (6\u2009\u00d7\u200930 \u00b5L NaCl injection) (n\u2009=\u20094). (F) Immunofluorescence staining of cross-sections of the bone marrow after 2-week EPO injection (top) compared to NaCl injection (bottom) stained for CD41 (violet) and Hoechst (white). Scale bar: 100\u2009\u00b5m. (G) Platelet large cell ratio in peripheral blood of 6\u2009\u00d7\u2009300\u2009IU EPO-treated C57Bl/6J mice (n\u2009=\u200910) compared to control (6\u2009\u00d7\u200930 \u00b5L NaCl injection) (n\u2009=\u20099). (H) Thrombus weight of 6\u2009\u00d7\u2009300\u2009IU EPO-treated C57Bl/6J mice (n\u2009=\u200910) and NaCl-injected control mice (n\u2009=\u200910). (I) Thrombus incidence of 6\u2009\u00d7\u2009300\u2009IU EPO-treated C57Bl/6J mice (n\u2009=\u200910) and NaCl-injected control mice (n\u2009=\u200910). NS\u2009=\u2009nonsignificant, *p\u2009<\u20090.05, **p\u2009<\u20090.01, ***p\u2009<\u20090.001. EPO, erythropoietin; RBC, red blood cell." + }, + { + "self_ref": "#/texts/38", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [], + "orig": "Fig. 5 Splenectomy does not affect the blood count as well as DVT formation. (A) WBC count in C57Bl/6J mice without treatment (n\u2009=\u20095), 48\u2009hours after induction of DVT (n\u2009=\u20097), 5 weeks after splenectomy (n\u2009=\u20093), and 5 weeks after splenectomy with an additional 48-hour induction of DVT (n\u2009=\u20099). (B) Platelet count in C57Bl/6J mice without treatment (n\u2009=\u20096), 48\u2009hours after induction of DVT (n\u2009=\u20096), 5 weeks after splenectomy (n\u2009=\u20093), and 5 weeks after splenectomy with an additional 48-hour induction of DVT (n\u2009=\u20099). (C) RBC count in C57Bl/6J mice without treatment (n\u2009=\u20096), 48\u2009hours after induction of DVT (n\u2009=\u20096), 5 weeks after splenectomy (n\u2009=\u20093), and 5 weeks after splenectomy with an additional 48-hour induction of DVT (n\u2009=\u20099). (D) Thrombus weight in C57Bl6 wild-type mice without splenectomy (n\u2009=\u20096) and with splenectomy (n\u2009=\u20096) (E) Thrombus incidence in C57Bl/6J wild-type mice without splenectomy (n\u2009=\u20096) and with splenectomy (n\u2009=\u20096). (F) Thrombus weight in EPO-overexpressing Tg(EPO) mice without splenectomy (n\u2009=\u20099) and with splenectomy (n\u2009=\u20096) compared to control WT mice without splenectomy (n\u2009=\u200910) and with splenectomy (n\u2009=\u200911). (G) Thrombus incidence in EPO-overexpressing Tg(EPO) mice without splenectomy (n\u2009=\u20099) and with splenectomy (n\u2009=\u20096) compared to control WT mice without splenectomy (n\u2009=\u200910) and with splenectomy (n\u2009=\u200911). NS\u2009=\u2009nonsignificant, *p\u2009<\u20090.05, **p\u2009<\u20090.01, ***p\u2009<\u20090.001. DVT, deep vein thrombosis; RBC, red blood cell; WT, wild type.", + "text": "Fig. 5 Splenectomy does not affect the blood count as well as DVT formation. (A) WBC count in C57Bl/6J mice without treatment (n\u2009=\u20095), 48\u2009hours after induction of DVT (n\u2009=\u20097), 5 weeks after splenectomy (n\u2009=\u20093), and 5 weeks after splenectomy with an additional 48-hour induction of DVT (n\u2009=\u20099). (B) Platelet count in C57Bl/6J mice without treatment (n\u2009=\u20096), 48\u2009hours after induction of DVT (n\u2009=\u20096), 5 weeks after splenectomy (n\u2009=\u20093), and 5 weeks after splenectomy with an additional 48-hour induction of DVT (n\u2009=\u20099). (C) RBC count in C57Bl/6J mice without treatment (n\u2009=\u20096), 48\u2009hours after induction of DVT (n\u2009=\u20096), 5 weeks after splenectomy (n\u2009=\u20093), and 5 weeks after splenectomy with an additional 48-hour induction of DVT (n\u2009=\u20099). (D) Thrombus weight in C57Bl6 wild-type mice without splenectomy (n\u2009=\u20096) and with splenectomy (n\u2009=\u20096) (E) Thrombus incidence in C57Bl/6J wild-type mice without splenectomy (n\u2009=\u20096) and with splenectomy (n\u2009=\u20096). (F) Thrombus weight in EPO-overexpressing Tg(EPO) mice without splenectomy (n\u2009=\u20099) and with splenectomy (n\u2009=\u20096) compared to control WT mice without splenectomy (n\u2009=\u200910) and with splenectomy (n\u2009=\u200911). (G) Thrombus incidence in EPO-overexpressing Tg(EPO) mice without splenectomy (n\u2009=\u20099) and with splenectomy (n\u2009=\u20096) compared to control WT mice without splenectomy (n\u2009=\u200910) and with splenectomy (n\u2009=\u200911). NS\u2009=\u2009nonsignificant, *p\u2009<\u20090.05, **p\u2009<\u20090.01, ***p\u2009<\u20090.001. DVT, deep vein thrombosis; RBC, red blood cell; WT, wild type." + }, + { + "self_ref": "#/texts/39", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "section_header", + "prov": [], + "orig": "References", + "text": "References", + "level": 1 + }, + { + "self_ref": "#/texts/40", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "G Ramsey; P F Lindholm. Thrombosis risk in cancer patients receiving red blood cell transfusions. Semin Thromb Hemost (2019)", + "text": "G Ramsey; P F Lindholm. Thrombosis risk in cancer patients receiving red blood cell transfusions. Semin Thromb Hemost (2019)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/41", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "M A Kumar; T A Boland; M Baiou. Red blood cell transfusion increases the risk of thrombotic events in patients with subarachnoid hemorrhage. Neurocrit Care (2014)", + "text": "M A Kumar; T A Boland; M Baiou. Red blood cell transfusion increases the risk of thrombotic events in patients with subarachnoid hemorrhage. Neurocrit Care (2014)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/42", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "R Goel; E U Patel; M M Cushing. Association of perioperative red blood cell transfusions with venous thromboembolism in a North American Registry. JAMA Surg (2018)", + "text": "R Goel; E U Patel; M M Cushing. Association of perioperative red blood cell transfusions with venous thromboembolism in a North American Registry. JAMA Surg (2018)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/43", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "C Wang; I Le Ray; B Lee; A Wikman; M Reilly. Association of blood group and red blood cell transfusion with the incidence of antepartum, peripartum and postpartum venous thromboembolism. Sci Rep (2019)", + "text": "C Wang; I Le Ray; B Lee; A Wikman; M Reilly. Association of blood group and red blood cell transfusion with the incidence of antepartum, peripartum and postpartum venous thromboembolism. Sci Rep (2019)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/44", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "B S Donahue. Red cell transfusion and thrombotic risk in children. Pediatrics (2020)", + "text": "B S Donahue. Red cell transfusion and thrombotic risk in children. Pediatrics (2020)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/45", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "M Dicato. Venous thromboembolic events and erythropoiesis-stimulating agents: an update. Oncologist (2008)", + "text": "M Dicato. Venous thromboembolic events and erythropoiesis-stimulating agents: an update. Oncologist (2008)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/46", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "C L Bennett; S M Silver; B Djulbegovic. Venous thromboembolism and mortality associated with recombinant erythropoietin and darbepoetin administration for the treatment of cancer-associated anemia. JAMA (2008)", + "text": "C L Bennett; S M Silver; B Djulbegovic. Venous thromboembolism and mortality associated with recombinant erythropoietin and darbepoetin administration for the treatment of cancer-associated anemia. JAMA (2008)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/47", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "E Chievitz; T Thiede. Complications and causes of death in polycythaemia vera. Acta Med Scand (1962)", + "text": "E Chievitz; T Thiede. Complications and causes of death in polycythaemia vera. Acta Med Scand (1962)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/48", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "V R Gordeuk; J T Prchal. Vascular complications in Chuvash polycythemia. Semin Thromb Hemost (2006)", + "text": "V R Gordeuk; J T Prchal. Vascular complications in Chuvash polycythemia. Semin Thromb Hemost (2006)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/49", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "S Ballestri; E Romagnoli; D Arioli. Risk and management of bleeding complications with direct oral anticoagulants in patients with atrial fibrillation and venous thromboembolism: a narrative review. Adv Ther (2023)", + "text": "S Ballestri; E Romagnoli; D Arioli. Risk and management of bleeding complications with direct oral anticoagulants in patients with atrial fibrillation and venous thromboembolism: a narrative review. Adv Ther (2023)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/50", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "M L von Br\u00fchl; K Stark; A Steinhart. Monocytes, neutrophils, and platelets cooperate to initiate and propagate venous thrombosis in mice in vivo. J Exp Med (2012)", + "text": "M L von Br\u00fchl; K Stark; A Steinhart. Monocytes, neutrophils, and platelets cooperate to initiate and propagate venous thrombosis in mice in vivo. J Exp Med (2012)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/51", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "G D Lowe; A J Lee; A Rumley; J F Price; F G Fowkes. Blood viscosity and risk of cardiovascular events: the Edinburgh Artery Study. Br J Haematol (1997)", + "text": "G D Lowe; A J Lee; A Rumley; J F Price; F G Fowkes. Blood viscosity and risk of cardiovascular events: the Edinburgh Artery Study. Br J Haematol (1997)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/52", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "J Vogel; I Kiessling; K Heinicke. Transgenic mice overexpressing erythropoietin adapt to excessive erythrocytosis by regulating blood viscosity. Blood (2003)", + "text": "J Vogel; I Kiessling; K Heinicke. Transgenic mice overexpressing erythropoietin adapt to excessive erythrocytosis by regulating blood viscosity. Blood (2003)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/53", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "F T Ruschitzka; R H Wenger; T Stallmach. Nitric oxide prevents cardiovascular disease and determines survival in polyglobulic mice overexpressing erythropoietin. Proc Natl Acad Sci U S A (2000)", + "text": "F T Ruschitzka; R H Wenger; T Stallmach. Nitric oxide prevents cardiovascular disease and determines survival in polyglobulic mice overexpressing erythropoietin. Proc Natl Acad Sci U S A (2000)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/54", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "A Bogdanova; D Mihov; H Lutz; B Saam; M Gassmann; J Vogel. Enhanced erythro-phagocytosis in polycythemic mice overexpressing erythropoietin. Blood (2007)", + "text": "A Bogdanova; D Mihov; H Lutz; B Saam; M Gassmann; J Vogel. Enhanced erythro-phagocytosis in polycythemic mice overexpressing erythropoietin. Blood (2007)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/55", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "R E Mebius; G Kraal. Structure and function of the spleen. Nat Rev Immunol (2005)", + "text": "R E Mebius; G Kraal. Structure and function of the spleen. Nat Rev Immunol (2005)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/56", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "M A Boxer; J Braun; L Ellman. Thromboembolic risk of postsplenectomy thrombocytosis. Arch Surg (1978)", + "text": "M A Boxer; J Braun; L Ellman. Thromboembolic risk of postsplenectomy thrombocytosis. Arch Surg (1978)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/57", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "P N Khan; R J Nair; J Olivares; L E Tingle; Z Li. Postsplenectomy reactive thrombocytosis. Proc Bayl Univ Med Cent (2009)", + "text": "P N Khan; R J Nair; J Olivares; L E Tingle; Z Li. Postsplenectomy reactive thrombocytosis. Proc Bayl Univ Med Cent (2009)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/58", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "R W Thomsen; W M Schoonen; D K Farkas; A Riis; J P Fryzek; H T S\u00f8rensen. Risk of venous thromboembolism in splenectomized patients compared with the general population and appendectomized patients: a 10-year nationwide cohort study. J Thromb Haemost (2010)", + "text": "R W Thomsen; W M Schoonen; D K Farkas; A Riis; J P Fryzek; H T S\u00f8rensen. Risk of venous thromboembolism in splenectomized patients compared with the general population and appendectomized patients: a 10-year nationwide cohort study. J Thromb Haemost (2010)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/59", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "G J Kato. Vascular complications after splenectomy for hematologic disorders. Blood (2009)", + "text": "G J Kato. Vascular complications after splenectomy for hematologic disorders. Blood (2009)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/60", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "E M Sewify; D Sayed; R F Abdel Aal; H M Ahmad; M A Abdou. Increased circulating red cell microparticles (RMP) and platelet microparticles (PMP) in immune thrombocytopenic purpura. Thromb Res (2013)", + "text": "E M Sewify; D Sayed; R F Abdel Aal; H M Ahmad; M A Abdou. Increased circulating red cell microparticles (RMP) and platelet microparticles (PMP) in immune thrombocytopenic purpura. Thromb Res (2013)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/61", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "M K Frey; S Alias; M P Winter. Splenectomy is modifying the vascular remodeling of thrombosis. J Am Heart Assoc (2014)", + "text": "M K Frey; S Alias; M P Winter. Splenectomy is modifying the vascular remodeling of thrombosis. J Am Heart Assoc (2014)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/62", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "D Bratosin; J Mazurier; J P Tissier. Cellular and molecular mechanisms of senescent erythrocyte phagocytosis by macrophages. A review. Biochimie (1998)", + "text": "D Bratosin; J Mazurier; J P Tissier. Cellular and molecular mechanisms of senescent erythrocyte phagocytosis by macrophages. A review. Biochimie (1998)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/63", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "A T Taher; K M Musallam; M Karimi. Splenectomy and thrombosis: the case of thalassemia intermedia. J Thromb Haemost (2010)", + "text": "A T Taher; K M Musallam; M Karimi. Splenectomy and thrombosis: the case of thalassemia intermedia. J Thromb Haemost (2010)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/64", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "M Seki; N Arashiki; Y Takakuwa; K Nitta; F Nakamura. Reduction in flippase activity contributes to surface presentation of phosphatidylserine in human senescent erythrocytes. J Cell Mol Med (2020)", + "text": "M Seki; N Arashiki; Y Takakuwa; K Nitta; F Nakamura. Reduction in flippase activity contributes to surface presentation of phosphatidylserine in human senescent erythrocytes. J Cell Mol Med (2020)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/65", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "M F Whelihan; K G Mann. The role of the red cell membrane in thrombin generation. Thromb Res (2013)", + "text": "M F Whelihan; K G Mann. The role of the red cell membrane in thrombin generation. Thromb Res (2013)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/66", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "T Frietsch; M H Maurer; J Vogel; M Gassmann; W Kuschinsky; K F Waschke. Reduced cerebral blood flow but elevated cerebral glucose metabolic rate in erythropoietin overexpressing transgenic mice with excessive erythrocytosis. J Cereb Blood Flow Metab (2007)", + "text": "T Frietsch; M H Maurer; J Vogel; M Gassmann; W Kuschinsky; K F Waschke. Reduced cerebral blood flow but elevated cerebral glucose metabolic rate in erythropoietin overexpressing transgenic mice with excessive erythrocytosis. J Cereb Blood Flow Metab (2007)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/67", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "O Mitchell; D M Feldman; M Diakow; S H Sigal. The pathophysiology of thrombocytopenia in chronic liver disease. Hepat Med (2016)", + "text": "O Mitchell; D M Feldman; M Diakow; S H Sigal. The pathophysiology of thrombocytopenia in chronic liver disease. Hepat Med (2016)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/68", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "Y Lv; W Y Lau; Y Li. Hypersplenism: history and current status. Exp Ther Med (2016)", + "text": "Y Lv; W Y Lau; Y Li. Hypersplenism: history and current status. Exp Ther Med (2016)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/69", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "K F Wagner; D M Katschinski; J Hasegawa. Chronic inborn erythrocytosis leads to cardiac dysfunction and premature death in mice overexpressing erythropoietin. Blood (2001)", + "text": "K F Wagner; D M Katschinski; J Hasegawa. Chronic inborn erythrocytosis leads to cardiac dysfunction and premature death in mice overexpressing erythropoietin. Blood (2001)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/70", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "C Klatt; I Kr\u00fcger; S Zey. Platelet-RBC interaction mediated by FasL/FasR induces procoagulant activity important for thrombosis. J Clin Invest (2018)", + "text": "C Klatt; I Kr\u00fcger; S Zey. Platelet-RBC interaction mediated by FasL/FasR induces procoagulant activity important for thrombosis. J Clin Invest (2018)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/71", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "J Shibata; J Hasegawa; H J Siemens. Hemostasis and coagulation at a hematocrit level of 0.85: functional consequences of erythrocytosis. Blood (2003)", + "text": "J Shibata; J Hasegawa; H J Siemens. Hemostasis and coagulation at a hematocrit level of 0.85: functional consequences of erythrocytosis. Blood (2003)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/72", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "E Babu; D Basu. Platelet large cell ratio in the differential diagnosis of abnormal platelet counts. Indian J Pathol Microbiol (2004)", + "text": "E Babu; D Basu. Platelet large cell ratio in the differential diagnosis of abnormal platelet counts. Indian J Pathol Microbiol (2004)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/73", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "F Formenti; P A Beer; Q P Croft. Cardiopulmonary function in two human disorders of the hypoxia-inducible factor (HIF) pathway: von Hippel-Lindau disease and HIF-2alpha gain-of-function mutation. FASEB J (2011)", + "text": "F Formenti; P A Beer; Q P Croft. Cardiopulmonary function in two human disorders of the hypoxia-inducible factor (HIF) pathway: von Hippel-Lindau disease and HIF-2alpha gain-of-function mutation. FASEB J (2011)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/74", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "H M Ashraf; A Javed; S Ashraf. Pulmonary embolism at high altitude and hyperhomocysteinemia. J Coll Physicians Surg Pak (2006)", + "text": "H M Ashraf; A Javed; S Ashraf. Pulmonary embolism at high altitude and hyperhomocysteinemia. J Coll Physicians Surg Pak (2006)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/75", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "D P Smallman; C M McBratney; C H Olsen; K M Slogic; C J Henderson. Quantification of the 5-year incidence of thromboembolic events in U.S. Air Force Academy cadets in comparison to the U.S. Naval and Military Academies. Mil Med (2011)", + "text": "D P Smallman; C M McBratney; C H Olsen; K M Slogic; C J Henderson. Quantification of the 5-year incidence of thromboembolic events in U.S. Air Force Academy cadets in comparison to the U.S. Naval and Military Academies. Mil Med (2011)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/76", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "M Li; X Tang; Z Liao. Hypoxia and low temperature upregulate transferrin to induce hypercoagulability at high altitude. Blood (2022)", + "text": "M Li; X Tang; Z Liao. Hypoxia and low temperature upregulate transferrin to induce hypercoagulability at high altitude. Blood (2022)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/77", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "T P McDonald; R E Clift; M B Cottrell. Large, chronic doses of erythropoietin cause thrombocytopenia in mice. Blood (1992)", + "text": "T P McDonald; R E Clift; M B Cottrell. Large, chronic doses of erythropoietin cause thrombocytopenia in mice. Blood (1992)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/78", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "X Ja\u00efs; V Ioos; C Jardim. Splenectomy and chronic thromboembolic pulmonary hypertension. Thorax (2005)", + "text": "X Ja\u00efs; V Ioos; C Jardim. Splenectomy and chronic thromboembolic pulmonary hypertension. Thorax (2005)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/79", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "J M Watters; C N Sambasivan; K Zink. Splenectomy leads to a persistent hypercoagulable state after trauma. Am J Surg (2010)", + "text": "J M Watters; C N Sambasivan; K Zink. Splenectomy leads to a persistent hypercoagulable state after trauma. Am J Surg (2010)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/80", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "S Visudhiphan; K Ketsa-Ard; A Piankijagum; S Tumliang. Blood coagulation and platelet profiles in persistent post-splenectomy thrombocytosis. The relationship to thromboembolism. Biomed Pharmacother (1985)", + "text": "S Visudhiphan; K Ketsa-Ard; A Piankijagum; S Tumliang. Blood coagulation and platelet profiles in persistent post-splenectomy thrombocytosis. The relationship to thromboembolism. Biomed Pharmacother (1985)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/81", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "T P McDonald; M B Cottrell; R E Clift; W C Cullen; F K Lin. High doses of recombinant erythropoietin stimulate platelet production in mice. Exp Hematol (1987)", + "text": "T P McDonald; M B Cottrell; R E Clift; W C Cullen; F K Lin. High doses of recombinant erythropoietin stimulate platelet production in mice. Exp Hematol (1987)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/82", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "Y Shikama; T Ishibashi; H Kimura; M Kawaguchi; T Uchida; Y Maruyama. Transient effect of erythropoietin on thrombocytopoiesis in vivo in mice. Exp Hematol (1992)", + "text": "Y Shikama; T Ishibashi; H Kimura; M Kawaguchi; T Uchida; Y Maruyama. Transient effect of erythropoietin on thrombocytopoiesis in vivo in mice. Exp Hematol (1992)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/83", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "C W Jackson; C C Edwards. Biphasic thrombopoietic response to severe hypobaric hypoxia. Br J Haematol (1977)", + "text": "C W Jackson; C C Edwards. Biphasic thrombopoietic response to severe hypobaric hypoxia. Br J Haematol (1977)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/84", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "T P McDonald. Platelet production in hypoxic and RBC-transfused mice. Scand J Haematol (1978)", + "text": "T P McDonald. Platelet production in hypoxic and RBC-transfused mice. Scand J Haematol (1978)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/85", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "Z Rolovi\u0107; N Basara; L Biljanovi\u0107-Paunovi\u0107; N Stojanovi\u0107; N Suvajdzi\u0107; V Pavlovi\u0107-Kentera. Megakaryocytopoiesis in experimentally induced chronic normobaric hypoxia. Exp Hematol (1990)", + "text": "Z Rolovi\u0107; N Basara; L Biljanovi\u0107-Paunovi\u0107; N Stojanovi\u0107; N Suvajdzi\u0107; V Pavlovi\u0107-Kentera. Megakaryocytopoiesis in experimentally induced chronic normobaric hypoxia. Exp Hematol (1990)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/86", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "R F Wolf; J Peng; P Friese; L S Gilmore; S A Burstein; G L Dale. Erythropoietin administration increases production and reactivity of platelets in dogs. Thromb Haemost (1997)", + "text": "R F Wolf; J Peng; P Friese; L S Gilmore; S A Burstein; G L Dale. Erythropoietin administration increases production and reactivity of platelets in dogs. Thromb Haemost (1997)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/87", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "J K Fraser; A S Tan; F K Lin; M V Berridge. Expression of specific high-affinity binding sites for erythropoietin on rat and mouse megakaryocytes. Exp Hematol (1989)", + "text": "J K Fraser; A S Tan; F K Lin; M V Berridge. Expression of specific high-affinity binding sites for erythropoietin on rat and mouse megakaryocytes. Exp Hematol (1989)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/88", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "H Sasaki; Y Hirabayashi; T Ishibashi. Effects of erythropoietin, IL-3, IL-6 and LIF on a murine megakaryoblastic cell line: growth enhancement and expression of receptor mRNAs. Leuk Res (1995)", + "text": "H Sasaki; Y Hirabayashi; T Ishibashi. Effects of erythropoietin, IL-3, IL-6 and LIF on a murine megakaryoblastic cell line: growth enhancement and expression of receptor mRNAs. Leuk Res (1995)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/89", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "R D McBane; C Gonzalez; D O Hodge; W E Wysokinski. Propensity for young reticulated platelet recruitment into arterial thrombi. J Thromb Thrombolysis (2014)", + "text": "R D McBane; C Gonzalez; D O Hodge; W E Wysokinski. Propensity for young reticulated platelet recruitment into arterial thrombi. J Thromb Thrombolysis (2014)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/90", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "M Buttarello; G Mezzapelle; F Freguglia; M Plebani. Reticulated platelets and immature platelet fraction: clinical applications and method limitations. Int J Lab Hematol (2020)", + "text": "M Buttarello; G Mezzapelle; F Freguglia; M Plebani. Reticulated platelets and immature platelet fraction: clinical applications and method limitations. Int J Lab Hematol (2020)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/91", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "S Guthikonda; C L Alviar; M Vaduganathan. Role of reticulated platelets and platelet size heterogeneity on platelet activity after dual antiplatelet therapy with aspirin and clopidogrel in patients with stable coronary artery disease. J Am Coll Cardiol (2008)", + "text": "S Guthikonda; C L Alviar; M Vaduganathan. Role of reticulated platelets and platelet size heterogeneity on platelet activity after dual antiplatelet therapy with aspirin and clopidogrel in patients with stable coronary artery disease. J Am Coll Cardiol (2008)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/92", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "M S Goel; S L Diamond. Adhesion of normal erythrocytes at depressed venous shear rates to activated neutrophils, activated platelets, and fibrin polymerized from plasma. Blood (2002)", + "text": "M S Goel; S L Diamond. Adhesion of normal erythrocytes at depressed venous shear rates to activated neutrophils, activated platelets, and fibrin polymerized from plasma. Blood (2002)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/93", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "P Hermand; P Gane; M Huet. Red cell ICAM-4 is a novel ligand for platelet-activated alpha IIbbeta 3 integrin. J Biol Chem (2003)", + "text": "P Hermand; P Gane; M Huet. Red cell ICAM-4 is a novel ligand for platelet-activated alpha IIbbeta 3 integrin. J Biol Chem (2003)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/94", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "A Orbach; O Zelig; S Yedgar; G Barshtein. Biophysical and biochemical markers of red blood cell fragility. Transfus Med Hemother (2017)", + "text": "A Orbach; O Zelig; S Yedgar; G Barshtein. Biophysical and biochemical markers of red blood cell fragility. Transfus Med Hemother (2017)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/95", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "C C Helms; M Marvel; W Zhao. Mechanisms of hemolysis-associated platelet activation. J Thromb Haemost (2013)", + "text": "C C Helms; M Marvel; W Zhao. Mechanisms of hemolysis-associated platelet activation. J Thromb Haemost (2013)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/96", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "J Villagra; S Shiva; L A Hunter; R F Machado; M T Gladwin; G J Kato. Platelet activation in patients with sickle disease, hemolysis-associated pulmonary hypertension, and nitric oxide scavenging by cell-free hemoglobin. Blood (2007)", + "text": "J Villagra; S Shiva; L A Hunter; R F Machado; M T Gladwin; G J Kato. Platelet activation in patients with sickle disease, hemolysis-associated pulmonary hypertension, and nitric oxide scavenging by cell-free hemoglobin. Blood (2007)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/97", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "S Gambaryan; H Subramanian; L Kehrer. Erythrocytes do not activate purified and platelet soluble guanylate cyclases even in conditions favourable for NO synthesis. Cell Commun Signal (2016)", + "text": "S Gambaryan; H Subramanian; L Kehrer. Erythrocytes do not activate purified and platelet soluble guanylate cyclases even in conditions favourable for NO synthesis. Cell Commun Signal (2016)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/98", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "S Krauss. Haptoglobin metabolism in polycythemia vera. Blood (1969)", + "text": "S Krauss. Haptoglobin metabolism in polycythemia vera. Blood (1969)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/99", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "A Vignoli; S Gamba; P EJ van der Meijden. Increased platelet thrombus formation under flow conditions in whole blood from polycythaemia vera patients. Blood Transfus (2022)", + "text": "A Vignoli; S Gamba; P EJ van der Meijden. Increased platelet thrombus formation under flow conditions in whole blood from polycythaemia vera patients. Blood Transfus (2022)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/100", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "J H Lawrence. The control of polycythemia by marrow inhibition; a 10-year study of 172 patients. J Am Med Assoc (1949)", + "text": "J H Lawrence. The control of polycythemia by marrow inhibition; a 10-year study of 172 patients. J Am Med Assoc (1949)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/101", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "T C Pearson; G Wetherley-Mein. Vascular occlusive episodes and venous haematocrit in primary proliferative polycythaemia. Lancet (1978)", + "text": "T C Pearson; G Wetherley-Mein. Vascular occlusive episodes and venous haematocrit in primary proliferative polycythaemia. Lancet (1978)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/102", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "J F Fazekas; D Nelson. Cerebral blood flow in polycythemia vera. AMA Arch Intern Med (1956)", + "text": "J F Fazekas; D Nelson. Cerebral blood flow in polycythemia vera. AMA Arch Intern Med (1956)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/103", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "D J Thomas; J Marshall; R W Russell. Effect of haematocrit on cerebral blood-flow in man. Lancet (1977)", + "text": "D J Thomas; J Marshall; R W Russell. Effect of haematocrit on cerebral blood-flow in man. Lancet (1977)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/104", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "A D'Emilio; R Battista; E Dini. Treatment of primary proliferative polycythaemia by venesection and busulphan. Br J Haematol (1987)", + "text": "A D'Emilio; R Battista; E Dini. Treatment of primary proliferative polycythaemia by venesection and busulphan. Br J Haematol (1987)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/105", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "J E Taylor; I S Henderson; W K Stewart; J J Belch. Erythropoietin and spontaneous platelet aggregation in haemodialysis patients. Lancet (1991)", + "text": "J E Taylor; I S Henderson; W K Stewart; J J Belch. Erythropoietin and spontaneous platelet aggregation in haemodialysis patients. Lancet (1991)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/106", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "J J Zwaginga; M J IJsseldijk; P G de Groot. Treatment of uremic anemia with recombinant erythropoietin also reduces the defects in platelet adhesion and aggregation caused by uremic plasma. Thromb Haemost (1991)", + "text": "J J Zwaginga; M J IJsseldijk; P G de Groot. Treatment of uremic anemia with recombinant erythropoietin also reduces the defects in platelet adhesion and aggregation caused by uremic plasma. Thromb Haemost (1991)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/107", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "F Fabris; I Cordiano; M L Randi. Effect of human recombinant erythropoietin on bleeding time, platelet number and function in children with end-stage renal disease maintained by haemodialysis. Pediatr Nephrol (1991)", + "text": "F Fabris; I Cordiano; M L Randi. Effect of human recombinant erythropoietin on bleeding time, platelet number and function in children with end-stage renal disease maintained by haemodialysis. Pediatr Nephrol (1991)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/108", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "T Akizawa; E Kinugasa; T Kitaoka; S Koshikawa. Effects of recombinant human erythropoietin and correction of anemia on platelet function in hemodialysis patients. Nephron J (1991)", + "text": "T Akizawa; E Kinugasa; T Kitaoka; S Koshikawa. Effects of recombinant human erythropoietin and correction of anemia on platelet function in hemodialysis patients. Nephron J (1991)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/109", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "G Vigan\u00f2; A Benigni; D Mendogni; G Mingardi; G Mecca; G Remuzzi. Recombinant human erythropoietin to correct uremic bleeding. Am J Kidney Dis (1991)", + "text": "G Vigan\u00f2; A Benigni; D Mendogni; G Mingardi; G Mecca; G Remuzzi. Recombinant human erythropoietin to correct uremic bleeding. Am J Kidney Dis (1991)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/110", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "J A Rios; J Hambleton; M Viele. Viability of red cells prepared with S-303 pathogen inactivation treatment. Transfusion (2006)", + "text": "J A Rios; J Hambleton; M Viele. Viability of red cells prepared with S-303 pathogen inactivation treatment. Transfusion (2006)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/111", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "S Khandelwal; N van Rooijen; R K Saxena. Reduced expression of CD47 during murine red blood cell (RBC) senescence and its role in RBC clearance from the circulation. Transfusion (2007)", + "text": "S Khandelwal; N van Rooijen; R K Saxena. Reduced expression of CD47 during murine red blood cell (RBC) senescence and its role in RBC clearance from the circulation. Transfusion (2007)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/112", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "G J Bosman; J M Werre; F L Willekens; V M Novotn\u00fd. Erythrocyte ageing in vivo and in vitro: structural aspects and implications for transfusion. Transfus Med (2008)", + "text": "G J Bosman; J M Werre; F L Willekens; V M Novotn\u00fd. Erythrocyte ageing in vivo and in vitro: structural aspects and implications for transfusion. Transfus Med (2008)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/113", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "W H Crosby. Normal functions of the spleen relative to red blood cells: a review. Blood (1959)", + "text": "W H Crosby. Normal functions of the spleen relative to red blood cells: a review. Blood (1959)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/114", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "R Varin; S Mirshahi; P Mirshahi. Whole blood clots are more resistant to lysis than plasma clots\u2013greater efficacy of rivaroxaban. Thromb Res (2013)", + "text": "R Varin; S Mirshahi; P Mirshahi. Whole blood clots are more resistant to lysis than plasma clots\u2013greater efficacy of rivaroxaban. Thromb Res (2013)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/115", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "F A Carvalho; S Connell; G Miltenberger-Miltenyi. Atomic force microscopy-based molecular recognition of a fibrinogen receptor on human erythrocytes. ACS Nano (2010)", + "text": "F A Carvalho; S Connell; G Miltenberger-Miltenyi. Atomic force microscopy-based molecular recognition of a fibrinogen receptor on human erythrocytes. ACS Nano (2010)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/116", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "N Wohner; P S\u00f3tonyi; R Machovich. Lytic resistance of fibrin containing red blood cells. Arterioscler Thromb Vasc Biol (2011)", + "text": "N Wohner; P S\u00f3tonyi; R Machovich. Lytic resistance of fibrin containing red blood cells. Arterioscler Thromb Vasc Biol (2011)", + "enumerated": false, + "marker": "-" + } + ], + "pictures": [ + { + "self_ref": "#/pictures/0", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "picture", + "prov": [], + "captions": [ + { + "$ref": "#/texts/34" + } + ], + "references": [], + "footnotes": [], + "annotations": [] + }, + { + "self_ref": "#/pictures/1", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "picture", + "prov": [], + "captions": [ + { + "$ref": "#/texts/35" + } + ], + "references": [], + "footnotes": [], + "annotations": [] + }, + { + "self_ref": "#/pictures/2", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "picture", + "prov": [], + "captions": [ + { + "$ref": "#/texts/36" + } + ], + "references": [], + "footnotes": [], + "annotations": [] + }, + { + "self_ref": "#/pictures/3", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "picture", + "prov": [], + "captions": [ + { + "$ref": "#/texts/37" + } + ], + "references": [], + "footnotes": [], + "annotations": [] + }, + { + "self_ref": "#/pictures/4", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "picture", + "prov": [], + "captions": [ + { + "$ref": "#/texts/38" + } + ], + "references": [], + "footnotes": [], + "annotations": [] + } + ], + "tables": [], + "key_value_items": [], + "pages": {} +} \ No newline at end of file diff --git a/tests/data/groundtruth/docling_v2/10-1055-s-0043-1775965.nxml.md b/tests/data/groundtruth/docling_v2/10-1055-s-0043-1775965.nxml.md new file mode 100644 index 00000000..60fbceff --- /dev/null +++ b/tests/data/groundtruth/docling_v2/10-1055-s-0043-1775965.nxml.md @@ -0,0 +1,167 @@ +# Differential Effects of Erythropoietin Administration and Overexpression on Venous Thrombosis in Mice + +Sven Stockhausen; Medizinische Klinik und Poliklinik I, Klinikum der Universität München, Ludwig-Maximilians-Universität, Munich, Germany; German Center for Cardiovascular Research (DZHK), partner site Munich Heart Alliance, Munich, Germany; Walter-Brendel Center of Experimental Medicine, Ludwig-Maximilians-Universität, Munich, Germany; Badr Kilani; Medizinische Klinik und Poliklinik I, Klinikum der Universität München, Ludwig-Maximilians-Universität, Munich, Germany; German Center for Cardiovascular Research (DZHK), partner site Munich Heart Alliance, Munich, Germany; Walter-Brendel Center of Experimental Medicine, Ludwig-Maximilians-Universität, Munich, Germany; Irene Schubert; Medizinische Klinik und Poliklinik I, Klinikum der Universität München, Ludwig-Maximilians-Universität, Munich, Germany; German Center for Cardiovascular Research (DZHK), partner site Munich Heart Alliance, Munich, Germany; Walter-Brendel Center of Experimental Medicine, Ludwig-Maximilians-Universität, Munich, Germany; Anna-Lena Steinsiek; Department of cardiology, German Heart Center, Munich, Germany.; Sue Chandraratne; Medizinische Klinik und Poliklinik I, Klinikum der Universität München, Ludwig-Maximilians-Universität, Munich, Germany; German Center for Cardiovascular Research (DZHK), partner site Munich Heart Alliance, Munich, Germany; Walter-Brendel Center of Experimental Medicine, Ludwig-Maximilians-Universität, Munich, Germany; Franziska Wendler; Medizinische Klinik und Poliklinik I, Klinikum der Universität München, Ludwig-Maximilians-Universität, Munich, Germany; German Center for Cardiovascular Research (DZHK), partner site Munich Heart Alliance, Munich, Germany; Walter-Brendel Center of Experimental Medicine, Ludwig-Maximilians-Universität, Munich, Germany; Luke Eivers; Medizinische Klinik und Poliklinik I, Klinikum der Universität München, Ludwig-Maximilians-Universität, Munich, Germany; German Center for Cardiovascular Research (DZHK), partner site Munich Heart Alliance, Munich, Germany; Walter-Brendel Center of Experimental Medicine, Ludwig-Maximilians-Universität, Munich, Germany; Marie-Luise von Brühl; Medizinische Klinik und Poliklinik I, Klinikum der Universität München, Ludwig-Maximilians-Universität, Munich, Germany; German Center for Cardiovascular Research (DZHK), partner site Munich Heart Alliance, Munich, Germany; Walter-Brendel Center of Experimental Medicine, Ludwig-Maximilians-Universität, Munich, Germany; Steffen Massberg; Medizinische Klinik und Poliklinik I, Klinikum der Universität München, Ludwig-Maximilians-Universität, Munich, Germany; German Center for Cardiovascular Research (DZHK), partner site Munich Heart Alliance, Munich, Germany; Walter-Brendel Center of Experimental Medicine, Ludwig-Maximilians-Universität, Munich, Germany; Ilka Ott; Department of cardiology, German Heart Center, Munich, Germany.; Konstantin Stark; Medizinische Klinik und Poliklinik I, Klinikum der Universität München, Ludwig-Maximilians-Universität, Munich, Germany; German Center for Cardiovascular Research (DZHK), partner site Munich Heart Alliance, Munich, Germany; Walter-Brendel Center of Experimental Medicine, Ludwig-Maximilians-Universität, Munich, Germany + +Background Deep vein thrombosis (DVT) is a common condition associated with significant mortality due to pulmonary embolism. Despite advanced prevention and anticoagulation therapy, the incidence of venous thromboembolism remains unchanged. Individuals with elevated hematocrit and/or excessively high erythropoietin (EPO) serum levels are particularly susceptible to DVT formation. We investigated the influence of short-term EPO administration compared to chronic EPO overproduction on DVT development. Additionally, we examined the role of the spleen in this context and assessed its impact on thrombus composition. Methods We induced ligation of the caudal vena cava (VCC) in EPO-overproducing Tg(EPO) mice as well as wildtype mice treated with EPO for two weeks, both with and without splenectomy. The effect on platelet circulation time was evaluated through FACS analysis, and thrombus composition was analyzed using immunohistology. Results We present evidence for an elevated thrombogenic phenotype resulting from chronic EPO overproduction, achieved by combining an EPO-overexpressing mouse model with experimental DVT induction. This increased thrombotic state is largely independent of traditional contributors to DVT, such as neutrophils and platelets. Notably, the pronounced prothrombotic effect of red blood cells (RBCs) only manifests during chronic EPO overproduction and is not influenced by splenic RBC clearance, as demonstrated by splenectomy. In contrast, short-term EPO treatment does not induce thrombogenesis in mice. Consequently, our findings support the existence of a differential thrombogenic effect between chronic enhanced erythropoiesis and exogenous EPO administration. Conclusion Chronic EPO overproduction significantly increases the risk of DVT, while short-term EPO treatment does not. These findings underscore the importance of considering EPO-related factors in DVT risk assessment and potential therapeutic strategies. + +## Introduction + +Red blood cells (RBCs) are the primary carriers oxygen and carbon dioxide in all mammals. Low hemoglobin concentrations in the blood can cause severe oxygen deficiency, leading to ischemia in organs and tissues. At the same time, numerous clinical observations identified elevated hemoglobin levels as an independent risk factor for deep vein thrombosis (DVT) formation. This applies to overproduction of RBCs due to erythropoietin (EPO) administration, as well as foreign blood transfusions. 1 2 3 4 5 6 7 This is also evident in illnesses which exhibit an excessive RBC production such as polycythemia vera or Chuvash polycythemia where a significant increase in thromboembolic complications has been reported. 8 9 In such cases, oral or parenteral anticoagulants are effective preventive measures. However, their use entails significant drawbacks in the form of elevated bleeding risks, which can lead to severe complications. 10 Therefore, it is crucial to identify patients at risk and to expand our understanding of the pathophysiology to enable a more targeted prevention and treatment of DVT. + +The mechanism of RBC-mediated DVT formation so far is not fully understood. Essentially, DVT formation is triggered by sterile inflammation. 11 Neutrophils and monocytes deliver tissue factor (TF) to the site of thrombus formation creating a procoagulant environment. 11 However, the contribution of leukocytes to DVT formation may vary depending on the underlying disease and a leukocyte-recruiting property of RBCs in DVT has not been conclusively proven. + +In this project we used a transgenic mouse model overexpressing the human EPO gene in an oxygen-independent manner. In these mice the hematocrit is chronically elevated, which leads to several changes. RBCs represent, volumetrically, the largest cellular component in the peripheral blood, thus influencing the viscosity of the blood, fostering cardiovascular events like stroke or ischemic heart disease. 12 RBCs from Tg(EPO) mice show increased flexibility which in turn reduces the viscosity, and protects from thrombus formation. 13 Additionally, excessive NO production has been described. In Tg(EPO) mice, the vasodilative effect of extensive NO release is partly compensated by endothelin. 14 A reduced lifespan of RBCs was also identified in this mouse strain. 15 + +The spleen is responsible for RBC clearance, which acts as gatekeeper of the state, age, and number of RBCs. 16 The loss of function of the spleen, due to removal, leads to changes in the blood count, the most striking of which is the transient thrombocytosis observed after splenectomy. 17 Even though the platelet count normalizes within weeks, the risk of thromboembolism remains persistently high; however, the mechanism behind this prothrombotic state is unclear. 18 19 20 Previous studies reveal an increase in platelet- and (to a lesser extent) RBC-derived microvesicles in splenectomized patients, which could indicate changes in their life cycle or activation state. 21 At the same time, the levels of negatively charged prothrombotic phospholipids, like phosphatidylserine, in pulmonary embolism increase after splenectomy. 22 23 24 Among others, RBCs can contribute to phosphatidylserine exposure. 25 Old, rigid RBCs with modified phospholipid exposure promote thrombus formation; however, their relevance for DVT in vivo remains unclear. 20 25 26 + +## Mouse Model + +C57BL/6 mice were obtained from Jackson Laboratory. Human EPO-overexpressing mice were generated as previously described. 14 TgN(PDGFBEPO)321Zbz consists of a transgenic mouse line, TgN(PDGFBEPO)321Zbz, expresses human EPO cDNA, and was initially reported by Ruschitzka et al, 14 subsequently named Tg(EPO). The expression is regulated by the platelet-derived growth factor promotor. We used the corresponding WT littermate controls named as WT. 27 Sex- and age-matched groups were used for the experiments with an age limit ranging between 12 and 29 weeks. The mice were housed in a specific-pathogen-free environment in our animal facility. General anesthesia was induced using a mixture of inhaled isoflurane, intravenous fentanyl, medetomidine, and midazolam. All procedures performed on mice were conducted in accordance with local legislation for the protection of animals (Regierung von Oberbayern, Munich) and were authorized accordingly. + +## Statistics + +Statistical analysis was conducted using GraphPad Prism 5, employing a t -test. Based on clinical observations strongly suggesting an increase in thrombus formation in EPO overproducing mice, a one-sided t -test was performed. 8 9 The normal distribution of the data was confirmed using D'Agostino and Pearson omnibus normality testing. Thrombus incidences between groups were compared using the chi-square test. + +## Chronic EPO Overproduction Leads to Increased DVT in Mice + +To investigate the impact of chronic erythrocyte overproduction on DVT in mice, we analyzed EPO-overexpressing transgenic Tg(EPO) mice. As expected, this mouse strain exhibited a substantial increase in RBC count ( Fig. 1A ). Additionally, the RBC width coefficient and reticulocyte count were elevated, indicating enhanced RBC production ( Supplementary Fig. S1A, B [available in the online version]). In addition to influencing the RBC lineage, our analyses revealed a significant increase in white blood cell (WBC) count, primarily driven by elevated lymphocyte count ( Supplementary Fig. S1C, E [available in the online version]). However, neutrophils known as major contributors to venous thrombosis showed no significant changes in EPO transgenic mice, while platelet counts were significantly reduced ( Fig. 1B and Supplementary Fig. S1D [available in the online version]). Furthermore, autopsies of the animals confirmed the presence of splenomegaly ( Supplementary Fig. S1F [available in the online version]). 28 29 + +Based on clinical observations indicating a correlation between high EPO levels and increased incidence of DVT, we utilized an IVC stenosis model to evaluate venous thrombosis in EPO-overexpressing mice. 6 7 Our findings revealed a significant elevation in both the incidence and thrombus weight in Tg(EPO) mice compared to their WT littermates ( Fig. 1C, D ). To determine whether chronic EPO overproduction in transgenic mice affected cardiac function, we assessed parameters such as the left ventricular ejection fraction, fractional shortening, and heart rate, ruling out any alternations ( Supplementary Fig. S1G, H, J [available in the online version]), which aligns with previous publications. 30 Additionally, morphological parameters including left ventricular mass, left ventricular internal diameter end diastole, and inner ventricular end diastolic septum diameter were similar between Tg(EPO) and WT mice ( Supplementary Fig. S1I, K, L [available in the online version]). + +## High RBC Count Leads to a Decrease in Platelet Accumulation in Venous Thrombosis + +Having observed a correlation between high EPO and hematocrit levels with increased thrombus formation, our aim was to investigate the factors involved in triggering thrombus development through histologic analysis of thrombus composition. In Tg(EPO) mice, the elevated hematocrit levels led to enhanced RBC accumulation within the thrombus, as indicated by the Ter119-covered area measurement ( Fig. 2A ). Given the interaction between RBCs and platelets, which can initiate coagulation activation, we examined the distribution of fibrinogen in relation to RBCs and platelets within the thrombi. 31 Our findings revealed a close association between the fibrinogen signal and RBCs, as well as between the platelet signal and RBCs, indicating interactions among these three factors ( Fig. 2E, F ). However, we observed significantly lower fibrinogen coverage in thrombi from EPO transgenic mice ( Fig. 2B ). Furthermore, the structure of the fibrin meshwork exhibited an overall “looser” morphology with significantly thinner fibrin fibers ( Fig. 3A-C ). + +To quantify platelet accumulation in thrombi, we analyzed the CD41-covered area in thrombi of both mouse strains. Consistent with the reduced platelet count in peripheral blood, platelet accumulation was also decreased in thrombi from EPO transgenic mice ( Fig. 2C ). + +As mentioned previously, inflammation plays a fundamental role in DVT formation. Therefore, we conducted an analysis to quantify the presence of leukocytes in the thrombus material. Our investigation focused specifically on neutrophils, as they represent the predominant leukocyte population in peripheral blood. Despite observing normal neutrophil counts, we identified a significant reduction in neutrophil recruitment within thrombi from EPO transgenic mice ( Fig. 2D ). In summary, our findings indicate an isolated increase in the number of RBCs within venous thrombi of EPO transgenic mice, while the levels of fibrinogen and platelets were decreased. + +## Short-Term Administration of EPO Does Not Foster DVT + +Due to the significant impact of chronic EPO overproduction in Tg(EPO) mice on peripheral blood count and its detrimental consequences on DVT formation, we proceeded to analyze the effects of 2-week periodic EPO injections on blood count and subsequent DVT formation in WT mice. Within just 2 weeks, a significant increase of RBC and reticulocyte count in peripheral blood was observed ( Fig. 4A and Supplementary Fig. S2A [available in the online version]). Conversely, platelet count exhibited a notable decrease in EPO-treated mice ( Fig. 4B ). Unlike EPO-overexpressing mice, the leukocyte counts and their differentiation into granulocytes, lymphocytes, and monocytes showed no differences between EPO-treated and nontreated mice ( Supplementary Fig. S2B–E [available in the online version]). Autopsy analyses further revealed a significant enlargement and weight increase of the spleen in EPO-treated mice ( Supplementary Fig. S2F, G [available in the online version]). + +To further investigate the underlying cause of thrombocytopenia in EPO-treated mice, we examined the bone marrow composition. Previous studies by Shibata et al demonstrated a reduction in megakaryocytes in Tg(EPO) mice. 32 Therefore, we analyzed the bone marrow composition after 2 weeks of EPO treatment. However, we found no difference in the TER119-covered area, indicating no significant alternation ( Fig. 4C, D ). Similarly, the megakaryocyte count in the bone marrow showed no changes compared to the control group ( Fig. 4E, F ,). In terms of platelet morphology, we observed an increased platelet large cell ratio in the EPO-treated group ( Fig. 4G ). This suggests an elevated production potential of megakaryocytes, as immature platelets tend to have larger cell volumes compared to mature platelets. 33 These findings indicate that our EPO administration protocol enhanced the synthesis capacity of bone marrow stem cells, resulting in augmented erythropoiesis. However, the cellular composition of the bone marrow remained unchanged after 2 weeks of treatment. + +To analyze the impact of 2-week EPO treatment on DVT formation, we utilized the IVC stenosis model. Despite similar changes in blood count in Tg(EPO) mice or WT mice after EPO administration, we observed comparable venous thrombus formation between mice treated with EPO for 2 weeks and the control group treated with NaCl ( Fig. 4H, I ). Since we previously observed that only long-term elevation of EPO levels with supraphysiologic hematocrit leads to increased thrombus formation, our focus shifted toward identifying the factors triggering thrombus formation. Therefore, we conducted a histological analysis of thrombus composition. Given the significantly thinner fibrin fibers observed in thrombi from Tg(EPO) mice, we investigated whether similar morphological changes occurred in mice treated with EPO for 2 weeks. Interestingly, the histological examination of the thrombi revealed a comparable thinning of fibrin fibers following EPO treatment ( Fig. 3D, E ). + +## Splenectomy Does Not Affect Venous Thrombus Formation + +As the data suggested a qualitative change in RBCs in the context of EPO overproduction, we investigated whether splenic clearance of aged RBCs plays a critical role in the increased formation of DVT. In the spleen, aged and damaged RBCs are eliminated, ensuring the presence of young and flexible RBCs. 16 We examined the immediate impact of EPO on spleen morphology. Even a single injection of 300 IU EPO s.c. in mice resulted in a significant increase in spleen weight, despite no difference in blood count compared to the control group ( Supplementary Fig. S2F–H [available in the online version]). This striking phenotype was also observed in mice with chronic EPO overexpression ( Supplementary Fig. S1F [available in the online version]). 13 + +To investigate the role of splenic RBC clearance in DVT, we performed splenectomy 5 weeks prior to conducting the IVC stenosis model. Firstly, we analyzed the impact of splenectomy on blood cell counts in WT mice 5 weeks postsurgery. We observed an increase in granulocytes and lymphocytes after splenectomy ( Fig. 5A and Supplementary Fig. S3A, B [available in the online version]). Next, we examined the distribution of blood cells in response to DVT development. Similar to nonsplenectomized mice, we observed an increase in WBC count in the peripheral blood ( Fig. 5A ). Additionally, we noted a significant decrease in platelet count in splenectomized mice in response to thrombus development ( Fig. 5B ), which is consistent with the results obtained from nonsplenectomized mice. + +Finally, we analyzed the impact of splenectomy on DVT formation in both WT mice and Tg(EPO) mice. Despite changes in blood cell counts and the effects on platelet removal, there was no difference in the incidence and thrombus weight in C57Bl/6 mice ( Fig. 5D, E ). Next, we examined EPO-overexpressing mice, which have been shown to have an increased risk of DVT formation. Despite significant splenomegaly, the incidence of DVT formation remained statistically unchanged after spleen removal ( Fig. 5F, G ). Therefore, splenectomy does not affect thrombus formation in the context of enhanced or normal erythropoiesis. + +## Discussion + +Here, we present evidence for a differential thrombotic effect of chronic EPO overproduction and short-term external EPO administration. Consistent with clinical observations, chronic overproduction of EPO is associated with an increased risk of DVT formation. This is similar to Chuvash polycythemia where the von-Hippel–Lindau mutation leads to chronic overproduction of hypoxia-induced factors and high EPO levels. 34 In addition to genetically altered EPO production, factors such as residence at high altitudes and naturally increasing EPO secretion also represent risk factors for venous thrombosis and pulmonary thromboembolism. 35 36 These conditions can be mimicked in a mouse model through chronic hypoxia. 37 + +In our analyses, we observed that short-term administration of EPO does not increase the risk of DVT, in contrast to chronic overproduction of EPO. However, changes in peripheral blood count in response to EPO occur relatively quickly, within 2 weeks of initiating therapy in mice. These changes include elevated levels of hemoglobin and thrombocytopenia, which are consistent with previous studies. 17 22 38 39 40 41 42 43 44 45 In the model of transgenic overexpressing EPO mice, there was an age-dependent progressive decrease in megakaryocyte count in the bone marrow. 32 A similar phenomenon can be observed in mice exposed to chronic hypoxia. 46 It is believed that competition between erythroid and platelet precursors in the stem cell population is responsible for this phenomenon. 38 Despite a similar decrease of peripheral platelet counts, we observed normal megakaryocyte counts in the bone marrow of mice injected with EPO for 2 weeks. We speculate that morphological changes in the bone marrow are long-term consequences of EPO administration. In peripheral blood, we observed a significant increase in the platelet large cell ratio in mice treated with EPO for 2 weeks. This is likely due to an elevated count of reticulated platelets, which has been previously observed in response to EPO treatment. 47 The presence of high levels of reticulated platelets indicates a high synthetic potential of megakaryocytes. Indeed, megakaryocytes possess high-affinity binding sites for EPO resulting in an increase in size, ploidy, and number of megakaryocytes in vitro. 48 49 Young, reticulated platelets are known risk factors for thrombosis, which may counterbalance the overall low platelet count in terms of thrombogenicity. 50 51 52 However, the significant increase in DVT observed in chronic EPO-overexpressing mice is likely attributed to qualitative changes in RBCs. There are several ways in which RBCs can interact with platelets and fibrin. The FAS-L-FAS-R interplay between RBCs and platelets has been shown to enhance DVT formation. 31 Additionally, interactions such as ICAM-4–α1bβ3 integrin and adhesion between RBCs and platelets mediated by GPIb and CD36 have been described. 53 54 As demonstrated in this study, the pronounced prothrombotic effect of RBCs only manifests after several weeks to months of EPO overproduction. Thus, we propose that RBC aging plays a role in this phenomenon. This is supported by the finding that RBCs in our Tg(EPO) mouse model exhibit characteristics of accelerated aging including decreased CD47 expression, leading to a 70% reduction in lifespan. 15 + +During the ageing process, RBCs not only display increasing amounts of procoagulant phosphatidylserine on their surface but also exhibit heightened osmotic and mechanical fragility, which is also observed in Tg(EPO) mice. 32 55 Fragile RBCs are prone to hemolysis, resulting in the release of ADP and free hemoglobin. Furthermore, hemoglobin directly or indirectly contributes to increased platelet activity, for instance, by forming complexes with nitric oxide (NO). 56 57 58 NO is essential for the survival of Tg(EPO) mice but dispensable for WT mice. 14 Consistent with this, patients with polycythemia vera exhibit platelet hypersensitivity despite normal platelet counts, while plasma haptoglobin concentration, a marker for hemolysis, is decreased. 59 60 61 62 63 64 65 Similarly, chronic subcutaneous EPO administration in hemodialysis patients leads to a prothrombotic phenotype similar to that of polycythemia vera patients. 66 67 68 69 70 Notably, concentrated RBC transfusions result in the rapid clearance of up to 30% of transfused erythrocytes within 24 hours due to their age, thus increasing the risk of DVT formation. 5 71 + +Clearance of RBCs primarily occurs in the spleen, where tissue-resident macrophages screen for surface markers such as CD47. 72 Subsequently, RBCs are phagocytosed before reaching day 120 of their lifespan. 73 The spleen plays a crucial role in maintaining the shape and membrane resilience of RBCs, acting as a guardian in this regard. 74 However, shortly after splenectomy, the loss of the organ significantly increases the risk of DVT formation. 20 In the long-term basis, we observed no difference in DVT formation after splenectomy, neither in WT mice nor in chronic EPO-overexpressing mice, despite the dramatic increase in macrophage-mediated RBC clearance in these mice. 15 Since RBC clearance occurs primarily in the spleen and liver in mice, we hypothesize that the liver is capable of adequately compensating for the absence of the spleen after removal. 15 + +Besides their activating effect on platelets, RBCs also directly impact the coagulation system. Previous data demonstrate that following TF activation, RBCs contribute to thrombin generation to a similar extent to platelets. 75 Furthermore, RBCs expose phosphatidylserine, which activates the contact pathway. 31 Notably, the coagulation system in Tg(EPO) mice exhibits normal activity in whole blood adjusted to a physiological hematocrit. 32 Additionally, RBCs express a receptor with properties similar to the α IIb β 3 integrin enabling their interaction with fibrin. 76 This interaction contributes to the formation of a dense fibrin meshwork consisting of thin fibers. 77 Such a structure hinders clot dissolution, leading to slower lysis. 77 In our histological analysis of thrombi, we confirm morphological changes in the fibrin meshwork, resulting in a thinner appearance in both EPO-overexpressing mice and mice subjected to short-term EPO injection. + +## Figures + +Fig. 1 EPO-overexpressing mice experience an increased incidence of DVT formation. (A) Comparison of RBC count between EPO-overexpressing Tg(EPO) mice (n = 12) and control (WT) mice (n = 13). (B) Comparison of platelet count between EPO-overexpressing Tg(EPO) (n = 7) mice and control (WT) mice (n = 5). (C) Comparison of thrombus weight between Tg(EPO) mice (n = 9) and WT (n = 10); mean age in the Tg(EPO) group: 19.8 weeks; mean age in the WT group: 20.1 weeks. (D) Comparison of thrombus incidence between Tg(EPO) mice (n = 9) and WT mice (n = 10); NS = nonsignificant, *p < 0.05, **p < 0.01, ***p < 0.001. DVT, deep vein thrombosis; EPO, erythropoietin; RBC, red blood cell; WT, wild type. + + + +Fig. 2 Chronic overproduction of EPO in mice leads to a decrease in the accumulation of classical drivers of DVT formation, including platelets, neutrophils, and fibrinogen. (A) The proportion of RBC-covered area in the thrombi of EPO-overexpressing Tg(EPO) mice (n = 4) was compared to control (WT) (n = 3) by immunofluorescence staining of cross-sections of the IVC 48 hours after flow reduction. (B) The proportion of fibrinogen-covered area in the thrombi of EPO- overexpressing Tg(EPO) mice (n = 3) was compared to control (WT) (n = 3) using immunofluorescence staining of cross-sections of the IVC 48 hours after flow reduction. (C) The proportion of platelet-covered area in the thrombi of EPO-overexpressing Tg(EPO) mice (n = 3) was compared to control (WT) (n = 3) by immunofluorescence staining of cross-sections of the IVC 48 hours after flow reduction. (D) Quantification of neutrophils was performed by immunofluorescence staining of cross-sections of the IVC 48 hours after flow reduction in EPO-overexpressing Tg(EPO) mice (n = 3) compared to control (WT) (n = 3). (E) Immunofluorescence staining of cross-sections of the IVC 48 hours after flow reduction from EPO-overexpressing Tg(EPO) mice (top) was compared to control (WT) (bottom) for TER119 in red (RBC), CD42b in green (platelets), and Hoechst in blue (DNA). The merged image is on the left, and the single channel image is on the right. Scale bar: 50 µm. (F) Immunofluorescence staining of cross-sections of the IVC 48 hours after flow reduction from EPO-overexpressing Tg(EPO) mice (top) was compared to control (WT) (bottom) for TER119 in red (RBC), fibrinogen in green, and Hoechst in blue (DNA); the merged image is on the left, and single-channel images are on the right. Scale bar: 50 µm.; NS = nonsignificant, *p < 0.05, **p < 0.01, ***p < 0.001. DVT, deep vein thrombosis; EPO, erythropoietin; IVC, inferior vena cava; RBC, red blood cell; WT, wild type. + + + +Fig. 3 The interaction of RBC with fibrinogen leads to the formation of a branched fibrin structure. (A) Immunofluorescence staining of cross-sections of the IVC 48 hours after flow reduction from EPO-overexpressing Tg(EPO) mice (left) was compared to control (WT) for fibrinogen (green). Scare bar: 50 µm. (B) High-resolution confocal images of immunofluorescence staining of cross-sections of the IVC 48 hours after flow reduction from EPO-overexpressing Tg(EPO) mice (left) compared to control (WT) for fibrinogen (green), RBC (red), and DNA (blue). Scale bar: 2 µm. (C) The mean diameter of 2,141 fibrin fibers was measured in cross-sections of thrombi from Tg(EPO) mice (left), and compared to 5,238 fibrin fibers of WT thrombi. (D) The mean diameter of 3,797 fibrin fibers was measured in two cross-sections of thrombi from 2-week EPO-injected mice (left), and compared to 10,920 fibrin fibers of three cross-sections from control (2-week NaCl-injected mice). (E) High-resolution confocal images of immunofluorescence staining of two cross-sections of the IVC 48 hours after flow reduction from 2-week EPO-injected mice (left) were compared to control (2 week NaCl-injected mice) for fibrinogen (green), RBC (red), and DNA (blue). Scale bar: 2 µm. EPO, erythropoietin; IVC, inferior vena cava; RBC, red blood cell; WT, wild type. + + + +Fig. 4 Two-week EPO injection leads to thrombocytopenia without an impact on the bone marrow. (A) RBC count in peripheral blood after 6 × 300 IU EPO treatment of C57Bl/6J mice (n = 10) was compared to control (6 × 30 µL NaCl injection) (n = 9). (B) Platelet count in peripheral blood after 6 × 300 IU EPO treatment of C57Bl/6J mice (n = 10) was compared to control (6 × 30 µL NaCl injection) (n = 10). (C) Area of RBC-positive area in the bone marrow of 6 × 300 IU EPO-treated C57Bl/6J mice (n = 4) was compared to control (6 × 30 µL NaCl injection) (n = 4). (D) Immunofluorescence staining of cross-sections of the bone marrow after 2-week EPO injection (top) was compared to NaCl injection (bottom) stained for TER119 (violet) and Hoechst (white). Scale bar: 100 µm. (E) Number of megakaryocyte count in the bone marrow of 6 × 300 IU EPO-treated C57Bl/6J mice (n = 4) was compared to control (6 × 30 µL NaCl injection) (n = 4). (F) Immunofluorescence staining of cross-sections of the bone marrow after 2-week EPO injection (top) compared to NaCl injection (bottom) stained for CD41 (violet) and Hoechst (white). Scale bar: 100 µm. (G) Platelet large cell ratio in peripheral blood of 6 × 300 IU EPO-treated C57Bl/6J mice (n = 10) compared to control (6 × 30 µL NaCl injection) (n = 9). (H) Thrombus weight of 6 × 300 IU EPO-treated C57Bl/6J mice (n = 10) and NaCl-injected control mice (n = 10). (I) Thrombus incidence of 6 × 300 IU EPO-treated C57Bl/6J mice (n = 10) and NaCl-injected control mice (n = 10). NS = nonsignificant, *p < 0.05, **p < 0.01, ***p < 0.001. EPO, erythropoietin; RBC, red blood cell. + + + +Fig. 5 Splenectomy does not affect the blood count as well as DVT formation. (A) WBC count in C57Bl/6J mice without treatment (n = 5), 48 hours after induction of DVT (n = 7), 5 weeks after splenectomy (n = 3), and 5 weeks after splenectomy with an additional 48-hour induction of DVT (n = 9). (B) Platelet count in C57Bl/6J mice without treatment (n = 6), 48 hours after induction of DVT (n = 6), 5 weeks after splenectomy (n = 3), and 5 weeks after splenectomy with an additional 48-hour induction of DVT (n = 9). (C) RBC count in C57Bl/6J mice without treatment (n = 6), 48 hours after induction of DVT (n = 6), 5 weeks after splenectomy (n = 3), and 5 weeks after splenectomy with an additional 48-hour induction of DVT (n = 9). (D) Thrombus weight in C57Bl6 wild-type mice without splenectomy (n = 6) and with splenectomy (n = 6) (E) Thrombus incidence in C57Bl/6J wild-type mice without splenectomy (n = 6) and with splenectomy (n = 6). (F) Thrombus weight in EPO-overexpressing Tg(EPO) mice without splenectomy (n = 9) and with splenectomy (n = 6) compared to control WT mice without splenectomy (n = 10) and with splenectomy (n = 11). (G) Thrombus incidence in EPO-overexpressing Tg(EPO) mice without splenectomy (n = 9) and with splenectomy (n = 6) compared to control WT mice without splenectomy (n = 10) and with splenectomy (n = 11). NS = nonsignificant, *p < 0.05, **p < 0.01, ***p < 0.001. DVT, deep vein thrombosis; RBC, red blood cell; WT, wild type. + + + +## References + +- G Ramsey; P F Lindholm. Thrombosis risk in cancer patients receiving red blood cell transfusions. Semin Thromb Hemost (2019) +- M A Kumar; T A Boland; M Baiou. Red blood cell transfusion increases the risk of thrombotic events in patients with subarachnoid hemorrhage. Neurocrit Care (2014) +- R Goel; E U Patel; M M Cushing. Association of perioperative red blood cell transfusions with venous thromboembolism in a North American Registry. JAMA Surg (2018) +- C Wang; I Le Ray; B Lee; A Wikman; M Reilly. Association of blood group and red blood cell transfusion with the incidence of antepartum, peripartum and postpartum venous thromboembolism. Sci Rep (2019) +- B S Donahue. Red cell transfusion and thrombotic risk in children. Pediatrics (2020) +- M Dicato. Venous thromboembolic events and erythropoiesis-stimulating agents: an update. Oncologist (2008) +- C L Bennett; S M Silver; B Djulbegovic. Venous thromboembolism and mortality associated with recombinant erythropoietin and darbepoetin administration for the treatment of cancer-associated anemia. JAMA (2008) +- E Chievitz; T Thiede. Complications and causes of death in polycythaemia vera. Acta Med Scand (1962) +- V R Gordeuk; J T Prchal. Vascular complications in Chuvash polycythemia. Semin Thromb Hemost (2006) +- S Ballestri; E Romagnoli; D Arioli. Risk and management of bleeding complications with direct oral anticoagulants in patients with atrial fibrillation and venous thromboembolism: a narrative review. Adv Ther (2023) +- M L von Brühl; K Stark; A Steinhart. Monocytes, neutrophils, and platelets cooperate to initiate and propagate venous thrombosis in mice in vivo. J Exp Med (2012) +- G D Lowe; A J Lee; A Rumley; J F Price; F G Fowkes. Blood viscosity and risk of cardiovascular events: the Edinburgh Artery Study. Br J Haematol (1997) +- J Vogel; I Kiessling; K Heinicke. Transgenic mice overexpressing erythropoietin adapt to excessive erythrocytosis by regulating blood viscosity. Blood (2003) +- F T Ruschitzka; R H Wenger; T Stallmach. Nitric oxide prevents cardiovascular disease and determines survival in polyglobulic mice overexpressing erythropoietin. Proc Natl Acad Sci U S A (2000) +- A Bogdanova; D Mihov; H Lutz; B Saam; M Gassmann; J Vogel. Enhanced erythro-phagocytosis in polycythemic mice overexpressing erythropoietin. Blood (2007) +- R E Mebius; G Kraal. Structure and function of the spleen. Nat Rev Immunol (2005) +- M A Boxer; J Braun; L Ellman. Thromboembolic risk of postsplenectomy thrombocytosis. Arch Surg (1978) +- P N Khan; R J Nair; J Olivares; L E Tingle; Z Li. Postsplenectomy reactive thrombocytosis. Proc Bayl Univ Med Cent (2009) +- R W Thomsen; W M Schoonen; D K Farkas; A Riis; J P Fryzek; H T Sørensen. Risk of venous thromboembolism in splenectomized patients compared with the general population and appendectomized patients: a 10-year nationwide cohort study. J Thromb Haemost (2010) +- G J Kato. Vascular complications after splenectomy for hematologic disorders. Blood (2009) +- E M Sewify; D Sayed; R F Abdel Aal; H M Ahmad; M A Abdou. Increased circulating red cell microparticles (RMP) and platelet microparticles (PMP) in immune thrombocytopenic purpura. Thromb Res (2013) +- M K Frey; S Alias; M P Winter. Splenectomy is modifying the vascular remodeling of thrombosis. J Am Heart Assoc (2014) +- D Bratosin; J Mazurier; J P Tissier. Cellular and molecular mechanisms of senescent erythrocyte phagocytosis by macrophages. A review. Biochimie (1998) +- A T Taher; K M Musallam; M Karimi. Splenectomy and thrombosis: the case of thalassemia intermedia. J Thromb Haemost (2010) +- M Seki; N Arashiki; Y Takakuwa; K Nitta; F Nakamura. Reduction in flippase activity contributes to surface presentation of phosphatidylserine in human senescent erythrocytes. J Cell Mol Med (2020) +- M F Whelihan; K G Mann. The role of the red cell membrane in thrombin generation. Thromb Res (2013) +- T Frietsch; M H Maurer; J Vogel; M Gassmann; W Kuschinsky; K F Waschke. Reduced cerebral blood flow but elevated cerebral glucose metabolic rate in erythropoietin overexpressing transgenic mice with excessive erythrocytosis. J Cereb Blood Flow Metab (2007) +- O Mitchell; D M Feldman; M Diakow; S H Sigal. The pathophysiology of thrombocytopenia in chronic liver disease. Hepat Med (2016) +- Y Lv; W Y Lau; Y Li. Hypersplenism: history and current status. Exp Ther Med (2016) +- K F Wagner; D M Katschinski; J Hasegawa. Chronic inborn erythrocytosis leads to cardiac dysfunction and premature death in mice overexpressing erythropoietin. Blood (2001) +- C Klatt; I Krüger; S Zey. Platelet-RBC interaction mediated by FasL/FasR induces procoagulant activity important for thrombosis. J Clin Invest (2018) +- J Shibata; J Hasegawa; H J Siemens. Hemostasis and coagulation at a hematocrit level of 0.85: functional consequences of erythrocytosis. Blood (2003) +- E Babu; D Basu. Platelet large cell ratio in the differential diagnosis of abnormal platelet counts. Indian J Pathol Microbiol (2004) +- F Formenti; P A Beer; Q P Croft. Cardiopulmonary function in two human disorders of the hypoxia-inducible factor (HIF) pathway: von Hippel-Lindau disease and HIF-2alpha gain-of-function mutation. FASEB J (2011) +- H M Ashraf; A Javed; S Ashraf. Pulmonary embolism at high altitude and hyperhomocysteinemia. J Coll Physicians Surg Pak (2006) +- D P Smallman; C M McBratney; C H Olsen; K M Slogic; C J Henderson. Quantification of the 5-year incidence of thromboembolic events in U.S. Air Force Academy cadets in comparison to the U.S. Naval and Military Academies. Mil Med (2011) +- M Li; X Tang; Z Liao. Hypoxia and low temperature upregulate transferrin to induce hypercoagulability at high altitude. Blood (2022) +- T P McDonald; R E Clift; M B Cottrell. Large, chronic doses of erythropoietin cause thrombocytopenia in mice. Blood (1992) +- X Jaïs; V Ioos; C Jardim. Splenectomy and chronic thromboembolic pulmonary hypertension. Thorax (2005) +- J M Watters; C N Sambasivan; K Zink. Splenectomy leads to a persistent hypercoagulable state after trauma. Am J Surg (2010) +- S Visudhiphan; K Ketsa-Ard; A Piankijagum; S Tumliang. Blood coagulation and platelet profiles in persistent post-splenectomy thrombocytosis. The relationship to thromboembolism. Biomed Pharmacother (1985) +- T P McDonald; M B Cottrell; R E Clift; W C Cullen; F K Lin. High doses of recombinant erythropoietin stimulate platelet production in mice. Exp Hematol (1987) +- Y Shikama; T Ishibashi; H Kimura; M Kawaguchi; T Uchida; Y Maruyama. Transient effect of erythropoietin on thrombocytopoiesis in vivo in mice. Exp Hematol (1992) +- C W Jackson; C C Edwards. Biphasic thrombopoietic response to severe hypobaric hypoxia. Br J Haematol (1977) +- T P McDonald. Platelet production in hypoxic and RBC-transfused mice. Scand J Haematol (1978) +- Z Rolović; N Basara; L Biljanović-Paunović; N Stojanović; N Suvajdzić; V Pavlović-Kentera. Megakaryocytopoiesis in experimentally induced chronic normobaric hypoxia. Exp Hematol (1990) +- R F Wolf; J Peng; P Friese; L S Gilmore; S A Burstein; G L Dale. Erythropoietin administration increases production and reactivity of platelets in dogs. Thromb Haemost (1997) +- J K Fraser; A S Tan; F K Lin; M V Berridge. Expression of specific high-affinity binding sites for erythropoietin on rat and mouse megakaryocytes. Exp Hematol (1989) +- H Sasaki; Y Hirabayashi; T Ishibashi. Effects of erythropoietin, IL-3, IL-6 and LIF on a murine megakaryoblastic cell line: growth enhancement and expression of receptor mRNAs. Leuk Res (1995) +- R D McBane; C Gonzalez; D O Hodge; W E Wysokinski. Propensity for young reticulated platelet recruitment into arterial thrombi. J Thromb Thrombolysis (2014) +- M Buttarello; G Mezzapelle; F Freguglia; M Plebani. Reticulated platelets and immature platelet fraction: clinical applications and method limitations. Int J Lab Hematol (2020) +- S Guthikonda; C L Alviar; M Vaduganathan. Role of reticulated platelets and platelet size heterogeneity on platelet activity after dual antiplatelet therapy with aspirin and clopidogrel in patients with stable coronary artery disease. J Am Coll Cardiol (2008) +- M S Goel; S L Diamond. Adhesion of normal erythrocytes at depressed venous shear rates to activated neutrophils, activated platelets, and fibrin polymerized from plasma. Blood (2002) +- P Hermand; P Gane; M Huet. Red cell ICAM-4 is a novel ligand for platelet-activated alpha IIbbeta 3 integrin. J Biol Chem (2003) +- A Orbach; O Zelig; S Yedgar; G Barshtein. Biophysical and biochemical markers of red blood cell fragility. Transfus Med Hemother (2017) +- C C Helms; M Marvel; W Zhao. Mechanisms of hemolysis-associated platelet activation. J Thromb Haemost (2013) +- J Villagra; S Shiva; L A Hunter; R F Machado; M T Gladwin; G J Kato. Platelet activation in patients with sickle disease, hemolysis-associated pulmonary hypertension, and nitric oxide scavenging by cell-free hemoglobin. Blood (2007) +- S Gambaryan; H Subramanian; L Kehrer. Erythrocytes do not activate purified and platelet soluble guanylate cyclases even in conditions favourable for NO synthesis. Cell Commun Signal (2016) +- S Krauss. Haptoglobin metabolism in polycythemia vera. Blood (1969) +- A Vignoli; S Gamba; P EJ van der Meijden. Increased platelet thrombus formation under flow conditions in whole blood from polycythaemia vera patients. Blood Transfus (2022) +- J H Lawrence. The control of polycythemia by marrow inhibition; a 10-year study of 172 patients. J Am Med Assoc (1949) +- T C Pearson; G Wetherley-Mein. Vascular occlusive episodes and venous haematocrit in primary proliferative polycythaemia. Lancet (1978) +- J F Fazekas; D Nelson. Cerebral blood flow in polycythemia vera. AMA Arch Intern Med (1956) +- D J Thomas; J Marshall; R W Russell. Effect of haematocrit on cerebral blood-flow in man. Lancet (1977) +- A D'Emilio; R Battista; E Dini. Treatment of primary proliferative polycythaemia by venesection and busulphan. Br J Haematol (1987) +- J E Taylor; I S Henderson; W K Stewart; J J Belch. Erythropoietin and spontaneous platelet aggregation in haemodialysis patients. Lancet (1991) +- J J Zwaginga; M J IJsseldijk; P G de Groot. Treatment of uremic anemia with recombinant erythropoietin also reduces the defects in platelet adhesion and aggregation caused by uremic plasma. Thromb Haemost (1991) +- F Fabris; I Cordiano; M L Randi. Effect of human recombinant erythropoietin on bleeding time, platelet number and function in children with end-stage renal disease maintained by haemodialysis. Pediatr Nephrol (1991) +- T Akizawa; E Kinugasa; T Kitaoka; S Koshikawa. Effects of recombinant human erythropoietin and correction of anemia on platelet function in hemodialysis patients. Nephron J (1991) +- G Viganò; A Benigni; D Mendogni; G Mingardi; G Mecca; G Remuzzi. Recombinant human erythropoietin to correct uremic bleeding. Am J Kidney Dis (1991) +- J A Rios; J Hambleton; M Viele. Viability of red cells prepared with S-303 pathogen inactivation treatment. Transfusion (2006) +- S Khandelwal; N van Rooijen; R K Saxena. Reduced expression of CD47 during murine red blood cell (RBC) senescence and its role in RBC clearance from the circulation. Transfusion (2007) +- G J Bosman; J M Werre; F L Willekens; V M Novotný. Erythrocyte ageing in vivo and in vitro: structural aspects and implications for transfusion. Transfus Med (2008) +- W H Crosby. Normal functions of the spleen relative to red blood cells: a review. Blood (1959) +- R Varin; S Mirshahi; P Mirshahi. Whole blood clots are more resistant to lysis than plasma clots–greater efficacy of rivaroxaban. Thromb Res (2013) +- F A Carvalho; S Connell; G Miltenberger-Miltenyi. Atomic force microscopy-based molecular recognition of a fibrinogen receptor on human erythrocytes. ACS Nano (2010) +- N Wohner; P Sótonyi; R Machovich. Lytic resistance of fibrin containing red blood cells. Arterioscler Thromb Vasc Biol (2011) \ No newline at end of file diff --git a/tests/data/groundtruth/docling_v2/10-1055-s-0044-1786808.nxml.itxt b/tests/data/groundtruth/docling_v2/10-1055-s-0044-1786808.nxml.itxt new file mode 100644 index 00000000..14a1da5c --- /dev/null +++ b/tests/data/groundtruth/docling_v2/10-1055-s-0044-1786808.nxml.itxt @@ -0,0 +1,72 @@ +item-0 at level 0: unspecified: group _root_ + item-1 at level 1: title: Proposal and Validation of a Cli ... ulation Diagnostic Criteria for Sepsis + item-2 at level 1: paragraph: Kazuma Yamakawa; Department of E ... hi Tokushukai Hospital, Sapporo, Japan + item-3 at level 1: text: Background Japanese Association ... native criteria for sepsis management. + item-4 at level 1: section_header: Introduction + item-5 at level 2: text: Disseminated intravascular coagu ... are widely used in clinical settings. + item-6 at level 2: text: The JAAM DIC criteria have sever ... sis, this burden should be eliminated. + item-7 at level 1: section_header: Study Population + item-8 at level 2: text: This investigation was performed ... ., SOFA score of 2 or more points). 13 + item-9 at level 1: section_header: Data Collection and Definitions + item-10 at level 2: text: A case report form was developed ... e was all-cause in-hospital mortality. + item-11 at level 1: section_header: Newly Proposed Modified JAAM-2 DIC Criteria + item-12 at level 2: text: We proposed novel DIC criteria n ... s set at 3 points or more ( Table 2 ). + item-13 at level 1: section_header: Statistical Analysis + item-14 at level 2: text: The overall effectiveness of ant ... along with estimated survival curves. + item-15 at level 1: section_header: Patient Characteristics + item-16 at level 2: text: The patient flow diagram is show ... CU registry in the final study cohort. + item-17 at level 2: text: Baseline characteristics of the ... the anticoagulant and control groups. + item-18 at level 1: section_header: Prognostic Value of the Criteria + item-19 at level 2: text: ROC curves for the original JAAM ... teria was considered to be equivalent. + item-20 at level 1: section_header: Validity of the Criteria in Initiating Anticoagulation + item-21 at level 2: text: Survival curves for the anticoag ... g DIC was considered to be equivalent. + item-22 at level 1: section_header: Clinical Application of the Findings + item-23 at level 2: text: Several different clinical pract ... tion and determining treatment timing. + item-24 at level 2: text: Modification of the JAAM DIC cri ... a totally clinical-friendly approach. + item-25 at level 2: text: We intended to evaluate the seve ... 24 proposed by the ISTH in the future. + item-26 at level 1: section_header: Strengths and Limitations + item-27 at level 2: text: We acknowledge several limitatio ... tis should be conducted in the future. + item-28 at level 1: section_header: Tables + item-30 at level 1: table with [22x2] + item-30 at level 2: caption: Table 1 Underlying diseases targeted by the JAAM-2 DIC criteria + item-32 at level 1: table with [38x4] + item-32 at level 2: caption: Table 3 Baseline characteristics of included sepsis patients in the three datasets + item-33 at level 1: section_header: Figures + item-35 at level 1: picture + item-35 at level 2: caption: Fig. 1 Patient flow for the three datasets used in this study. DIC, disseminated intravascular coagulation; JAAM, Japanese Association for Acute Medicine; ROC, receiver operating characteristic. + item-37 at level 1: picture + item-37 at level 2: caption: Fig. 2 Receiver operating characteristic curves for original JAAM and modified JAAM-2 DIC criteria as predictors of in-hospital mortality. The solid line represents curves for JAAM-2, and the dotted line represents curves for original JAAM. (A) J-Septic DIC dataset, (B) FORECAST dataset, (C) SPICE dataset. DIC, disseminated intravascular coagulation; JAAM, Japanese Association for Acute Medicine. + item-39 at level 1: picture + item-39 at level 2: caption: Fig. 3 Adjusted estimated survival curves according to the original JAAM and modified JAAM-2 DIC status using the J-septic DIC dataset. (A) JAAM DIC score ≤ 3, (B) JAAM DIC score ≥ 4, (C) JAAM-2 DIC score ≤ 2, and (D) JAAM-2 DIC score ≥ 3. The solid line represents patients in the anticoagulant group, and the dotted line represents patients in the control group. DIC, disseminated intravascular coagulation; JAAM, Japanese Association for Acute Medicine. + item-41 at level 1: picture + item-41 at level 2: caption: Fig. 4 Adjusted estimated survival curves according to the original JAAM and modified JAAM-2 DIC status using the FORECAST dataset. (A) JAAM DIC score ≤ 3, (B) JAAM DIC score ≥ 4, (C) JAAM-2 DIC score ≤ 2, and (D) JAAM-2 DIC score ≥ 3. The solid line represents patients in the anticoagulant group, and the dotted line represents patients in the control group. DIC, disseminated intravascular coagulation; JAAM, Japanese Association for Acute Medicine. + item-42 at level 1: section_header: References + item-43 at level 1: list: group list + item-44 at level 2: list_item: M Levi; H Ten Cate. Disseminated ... cular coagulation. N Engl J Med (1999) + item-45 at level 2: list_item: M Hayakawa; S Saito; S Uchino. C ... ing 2011-2013. J Intensive Care (2016) + item-46 at level 2: list_item: S Gando; A Shiraishi; K Yamakawa ... on in severe sepsis. Thromb Res (2019) + item-47 at level 2: list_item: N Kobayashi; T Maekawa; M Takada ... on DIC in Japan. Bibl Haematol (1983) + item-48 at level 2: list_item: F B Taylor; C H Toh; W K Hoots; ... lar coagulation. Thromb Haemost (2001) + item-49 at level 2: list_item: T Iba; Y Umemura; E Watanabe; T ... nd coagulopathy. Acute Med Surg (2019) + item-50 at level 2: list_item: K Yamakawa; J Yoshimura; T Ito; ... pathy in sepsis. Thromb Haemost (2019) + item-51 at level 2: list_item: S Gando; T Iba; Y Eguchi. A mult ... current criteria. Crit Care Med (2006) + item-52 at level 2: list_item: S Gando; D Saitoh; H Ogura. Natu ... ospective survey. Crit Care Med (2008) + item-53 at level 2: list_item: H Ogura; S Gando; T Iba. SIRS-as ... ts with thrombocytopenia. Shock (2007) + item-54 at level 2: list_item: . American College of Chest Phys ... rapies in sepsis. Crit Care Med (1992) + item-55 at level 2: list_item: K M Kaukonen; M Bailey; D Pilche ... ing severe sepsis. N Engl J Med (2015) + item-56 at level 2: list_item: M Singer; C S Deutschman; C W Se ... d Septic Shock (Sepsis-3). JAMA (2016) + item-57 at level 2: list_item: T Abe; H Ogura; A Shiraishi. Cha ... : the FORECAST study. Crit Care (2018) + item-58 at level 2: list_item: T Abe; K Yamakawa; H Ogura. Epid ... m (SPICE-ICU). J Intensive Care (2020) + item-59 at level 2: list_item: R C Bone; R A Balk; F B Cerra. D ... tive therapies in sepsis. Chest (1992) + item-60 at level 2: list_item: J L Vincent; R Moreno; J Takala. ... re Medicine. Intensive Care Med (1996) + item-61 at level 2: list_item: M Levi; C H Toh; J Thachil; H G ... ular coagulation. Br J Haematol (2009) + item-62 at level 2: list_item: H Wada; H Asakura; K Okamoto. Ex ... oagulation in Japan. Thromb Res (2010) + item-63 at level 2: list_item: M Di Nisio; F Baudo; B Cosmi. Di ... Thrombosis (SISET). Thromb Res (2012) + item-64 at level 2: list_item: H Wada; J Thachil; M Di Nisio. G ... ee guidelines. J Thromb Haemost (2013) + item-65 at level 2: list_item: Y Umemura; K Yamakawa; T Kiguchi ... iteria. Clin Appl Thromb Hemost (2016) + item-66 at level 2: list_item: T Iba; M Di Nisio; J Thachil. Re ... ntithrombin activity. Crit Care (2016) + item-67 at level 2: list_item: T Iba; M D Nisio; J H Levy; N Ki ... f a nationwide survey. BMJ Open (2017) + item-68 at level 2: list_item: S Kushimoto; S Gando; D Saitoh. ... psis and trauma. Thromb Haemost (2008) + item-69 at level 2: list_item: A Sawamura; M Hayakawa; S Gando. ... rly phase of trauma. Thromb Res (2009) + item-70 at level 2: list_item: K Iwai; S Uchino; A Endo; K Sait ... ute Medicine (JAAM). Thromb Res (2010) + item-71 at level 2: list_item: T Takemitsu; H Wada; T Hatada. P ... lar coagulation. Thromb Haemost (2011) \ No newline at end of file diff --git a/tests/data/groundtruth/docling_v2/10-1055-s-0044-1786808.nxml.json b/tests/data/groundtruth/docling_v2/10-1055-s-0044-1786808.nxml.json new file mode 100644 index 00000000..c5cf25dd --- /dev/null +++ b/tests/data/groundtruth/docling_v2/10-1055-s-0044-1786808.nxml.json @@ -0,0 +1,5643 @@ +{ + "schema_name": "DoclingDocument", + "version": "1.0.0", + "name": "10-1055-s-0044-1786808", + "origin": { + "mimetype": "text/xml", + "binary_hash": 16679380506820838384, + "filename": "10-1055-s-0044-1786808.nxml" + }, + "furniture": { + "self_ref": "#/furniture", + "children": [], + "name": "_root_", + "label": "unspecified" + }, + "body": { + "self_ref": "#/body", + "children": [ + { + "$ref": "#/texts/0" + }, + { + "$ref": "#/texts/1" + }, + { + "$ref": "#/texts/2" + }, + { + "$ref": "#/texts/3" + }, + { + "$ref": "#/texts/6" + }, + { + "$ref": "#/texts/8" + }, + { + "$ref": "#/texts/10" + }, + { + "$ref": "#/texts/12" + }, + { + "$ref": "#/texts/14" + }, + { + "$ref": "#/texts/17" + }, + { + "$ref": "#/texts/19" + }, + { + "$ref": "#/texts/21" + }, + { + "$ref": "#/texts/25" + }, + { + "$ref": "#/texts/27" + }, + { + "$ref": "#/texts/28" + }, + { + "$ref": "#/tables/0" + }, + { + "$ref": "#/texts/29" + }, + { + "$ref": "#/tables/1" + }, + { + "$ref": "#/texts/30" + }, + { + "$ref": "#/texts/31" + }, + { + "$ref": "#/pictures/0" + }, + { + "$ref": "#/texts/32" + }, + { + "$ref": "#/pictures/1" + }, + { + "$ref": "#/texts/33" + }, + { + "$ref": "#/pictures/2" + }, + { + "$ref": "#/texts/34" + }, + { + "$ref": "#/pictures/3" + }, + { + "$ref": "#/texts/35" + }, + { + "$ref": "#/groups/0" + } + ], + "name": "_root_", + "label": "unspecified" + }, + "groups": [ + { + "self_ref": "#/groups/0", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/36" + }, + { + "$ref": "#/texts/37" + }, + { + "$ref": "#/texts/38" + }, + { + "$ref": "#/texts/39" + }, + { + "$ref": "#/texts/40" + }, + { + "$ref": "#/texts/41" + }, + { + "$ref": "#/texts/42" + }, + { + "$ref": "#/texts/43" + }, + { + "$ref": "#/texts/44" + }, + { + "$ref": "#/texts/45" + }, + { + "$ref": "#/texts/46" + }, + { + "$ref": "#/texts/47" + }, + { + "$ref": "#/texts/48" + }, + { + "$ref": "#/texts/49" + }, + { + "$ref": "#/texts/50" + }, + { + "$ref": "#/texts/51" + }, + { + "$ref": "#/texts/52" + }, + { + "$ref": "#/texts/53" + }, + { + "$ref": "#/texts/54" + }, + { + "$ref": "#/texts/55" + }, + { + "$ref": "#/texts/56" + }, + { + "$ref": "#/texts/57" + }, + { + "$ref": "#/texts/58" + }, + { + "$ref": "#/texts/59" + }, + { + "$ref": "#/texts/60" + }, + { + "$ref": "#/texts/61" + }, + { + "$ref": "#/texts/62" + }, + { + "$ref": "#/texts/63" + } + ], + "name": "list", + "label": "list" + } + ], + "texts": [ + { + "self_ref": "#/texts/0", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "title", + "prov": [], + "orig": "Proposal and Validation of a Clinically Relevant Modification of the Japanese Association for Acute Medicine Disseminated Intravascular Coagulation Diagnostic Criteria for Sepsis", + "text": "Proposal and Validation of a Clinically Relevant Modification of the Japanese Association for Acute Medicine Disseminated Intravascular Coagulation Diagnostic Criteria for Sepsis" + }, + { + "self_ref": "#/texts/1", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "paragraph", + "prov": [], + "orig": "Kazuma Yamakawa; Department of Emergency and Critical Care Medicine, Osaka Medical and Pharmaceutical University, Takatsuki, Japan; Yutaka Umemura; Division of Trauma and Surgical Critical Care, Osaka General Medical Center, Osaka, Japan; Katsunori Mochizuki; Department of Emergency and Critical Care Medicine, Osaka Medical and Pharmaceutical University, Takatsuki, Japan; Department of Emergency and Critical Care Medicine, Azumino Red Cross Hospital, Nagano, Japan; Tadashi Matsuoka; Department of Emergency and Critical Care Medicine, Keio University, Tokyo, Japan; Takeshi Wada; Division of Acute and Critical Care Medicine, Department of Anesthesiology and Critical Care Medicine, Hokkaido University Faculty of Medicine, Sapporo, Japan; Mineji Hayakawa; Division of Acute and Critical Care Medicine, Department of Anesthesiology and Critical Care Medicine, Hokkaido University Faculty of Medicine, Sapporo, Japan; Toshiaki Iba; Department of Emergency and Disaster Medicine, Juntendo University Graduate School of Medicine, Tokyo, Japan; Yasuhiro Ohtomo; National Disaster Medical Center, Tokyo, Japan; Kohji Okamoto; Department of Surgery, Kitakyushu City Yahata Hospital, Kitakyushu, Japan; Toshihiko Mayumi; Department of Intensive Care Unit, Japan Community Healthcare Organization Chukyo Hospital, Nagoya, Japan; Toshiaki Ikeda; Division of Critical Care and Emergency Medicine, Tokyo Medical University Hachioji Medical Center, Tokyo, Japan; Hiroyasu Ishikura; Department of Emergency and Critical Care Medicine, Fukuoka University, Fukuoka, Japan; Hiroshi Ogura; Department of Traumatology and Acute Critical Medicine, Osaka University Graduate School of Medicine, Suita, Japan; Shigeki Kushimoto; Division of Emergency and Critical Care Medicine, Tohoku University Graduate School of Medicine, Sendai, Japan; Daizoh Saitoh; Graduate School of Emergency Medical System, Kokushikan University, Tama, Japan; Satoshi Gando; Division of Acute and Critical Care Medicine, Department of Anesthesiology and Critical Care Medicine, Hokkaido University Faculty of Medicine, Sapporo, Japan; Department of Acute and Critical Care Medicine, Sapporo Higashi Tokushukai Hospital, Sapporo, Japan", + "text": "Kazuma Yamakawa; Department of Emergency and Critical Care Medicine, Osaka Medical and Pharmaceutical University, Takatsuki, Japan; Yutaka Umemura; Division of Trauma and Surgical Critical Care, Osaka General Medical Center, Osaka, Japan; Katsunori Mochizuki; Department of Emergency and Critical Care Medicine, Osaka Medical and Pharmaceutical University, Takatsuki, Japan; Department of Emergency and Critical Care Medicine, Azumino Red Cross Hospital, Nagano, Japan; Tadashi Matsuoka; Department of Emergency and Critical Care Medicine, Keio University, Tokyo, Japan; Takeshi Wada; Division of Acute and Critical Care Medicine, Department of Anesthesiology and Critical Care Medicine, Hokkaido University Faculty of Medicine, Sapporo, Japan; Mineji Hayakawa; Division of Acute and Critical Care Medicine, Department of Anesthesiology and Critical Care Medicine, Hokkaido University Faculty of Medicine, Sapporo, Japan; Toshiaki Iba; Department of Emergency and Disaster Medicine, Juntendo University Graduate School of Medicine, Tokyo, Japan; Yasuhiro Ohtomo; National Disaster Medical Center, Tokyo, Japan; Kohji Okamoto; Department of Surgery, Kitakyushu City Yahata Hospital, Kitakyushu, Japan; Toshihiko Mayumi; Department of Intensive Care Unit, Japan Community Healthcare Organization Chukyo Hospital, Nagoya, Japan; Toshiaki Ikeda; Division of Critical Care and Emergency Medicine, Tokyo Medical University Hachioji Medical Center, Tokyo, Japan; Hiroyasu Ishikura; Department of Emergency and Critical Care Medicine, Fukuoka University, Fukuoka, Japan; Hiroshi Ogura; Department of Traumatology and Acute Critical Medicine, Osaka University Graduate School of Medicine, Suita, Japan; Shigeki Kushimoto; Division of Emergency and Critical Care Medicine, Tohoku University Graduate School of Medicine, Sendai, Japan; Daizoh Saitoh; Graduate School of Emergency Medical System, Kokushikan University, Tama, Japan; Satoshi Gando; Division of Acute and Critical Care Medicine, Department of Anesthesiology and Critical Care Medicine, Hokkaido University Faculty of Medicine, Sapporo, Japan; Department of Acute and Critical Care Medicine, Sapporo Higashi Tokushukai Hospital, Sapporo, Japan" + }, + { + "self_ref": "#/texts/2", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "Background Japanese Association for Acute Medicine (JAAM) disseminated intravascular coagulation (DIC) criteria were launched nearly 20 years ago. Following the revised conceptual definition of sepsis and subsequent omission of systemic inflammatory response syndrome (SIRS) score from the latest sepsis diagnostic criteria, we omitted the SIRS score and proposed a modified version of JAAM DIC criteria, the JAAM-2 DIC criteria. Objectives To validate and compare performance between new JAAM-2 DIC criteria and conventional JAAM DIC criteria for sepsis. Methods We used three datasets containing adult sepsis patients from a multicenter nationwide Japanese cohort study (J-septic DIC, FORECAST, and SPICE-ICU registries). JAAM-2 DIC criteria omitted the SIRS score and set the cutoff value at \u22653 points. Receiver operating characteristic (ROC) analyses were performed between the two DIC criteria to evaluate prognostic value. Associations between in-hospital mortality and anticoagulant therapy according to DIC status were analyzed using propensity score weighting to compare significance of the criteria in determining introduction of anticoagulants against sepsis. Results Final study cohorts of the datasets included 2,154, 1,065, and 608 sepsis patients, respectively. ROC analysis revealed that curves for both JAAM and JAAM-2 DIC criteria as predictors of in-hospital mortality were almost consistent. Survival curves for the anticoagulant and control groups in the propensity score-weighted prediction model diagnosed using the two criteria were also almost entirely consistent. Conclusion JAAM-2 DIC criteria were equivalent to JAAM DIC criteria regarding prognostic and diagnostic values for initiating anticoagulation. The newly proposed JAAM-2 DIC criteria could be potentially alternative criteria for sepsis management.", + "text": "Background Japanese Association for Acute Medicine (JAAM) disseminated intravascular coagulation (DIC) criteria were launched nearly 20 years ago. Following the revised conceptual definition of sepsis and subsequent omission of systemic inflammatory response syndrome (SIRS) score from the latest sepsis diagnostic criteria, we omitted the SIRS score and proposed a modified version of JAAM DIC criteria, the JAAM-2 DIC criteria. Objectives To validate and compare performance between new JAAM-2 DIC criteria and conventional JAAM DIC criteria for sepsis. Methods We used three datasets containing adult sepsis patients from a multicenter nationwide Japanese cohort study (J-septic DIC, FORECAST, and SPICE-ICU registries). JAAM-2 DIC criteria omitted the SIRS score and set the cutoff value at \u22653 points. Receiver operating characteristic (ROC) analyses were performed between the two DIC criteria to evaluate prognostic value. Associations between in-hospital mortality and anticoagulant therapy according to DIC status were analyzed using propensity score weighting to compare significance of the criteria in determining introduction of anticoagulants against sepsis. Results Final study cohorts of the datasets included 2,154, 1,065, and 608 sepsis patients, respectively. ROC analysis revealed that curves for both JAAM and JAAM-2 DIC criteria as predictors of in-hospital mortality were almost consistent. Survival curves for the anticoagulant and control groups in the propensity score-weighted prediction model diagnosed using the two criteria were also almost entirely consistent. Conclusion JAAM-2 DIC criteria were equivalent to JAAM DIC criteria regarding prognostic and diagnostic values for initiating anticoagulation. The newly proposed JAAM-2 DIC criteria could be potentially alternative criteria for sepsis management." + }, + { + "self_ref": "#/texts/3", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/4" + }, + { + "$ref": "#/texts/5" + } + ], + "label": "section_header", + "prov": [], + "orig": "Introduction", + "text": "Introduction", + "level": 1 + }, + { + "self_ref": "#/texts/4", + "parent": { + "$ref": "#/texts/3" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "Disseminated intravascular coagulation (DIC) is a disorder frequently seen in critically ill patients, especially those with sepsis, that may lead to severe bleeding and organ dysfunction. 1 Because mortality is higher in patients with than without DIC, 2 3 several organizations have put forward DIC scoring systems with the aim of improving the outcome of patients with DIC. The Japanese Ministry of Health and Welfare (JMHW) proposed a criteria for the diagnosis of DIC in 1976. 4 Their criteria involved the evaluation of global coagulation tests, underlying diseases, and clinical symptoms. Thereafter, the subcommittee of the International Society on Thrombosis and Haemostasis (ISTH) proposed a scoring system for overt and non-overt DIC in 2001. 5 However, patients diagnosed according to the JMHW or ISTH DIC criteria are often at high risk of death at the time of diagnosis because of the delay from the onset of coagulopathy. It has been reported that these patients are missing out on the initiation of interventions in the setting of critical illness. 6 7 Thus, the Japanese Association for Acute Medicine (JAAM) proposed another DIC scoring system that aimed to make early diagnosis of DIC in acute diseases possible. 8 9 Now, both the ISTH overt- and JAAM DIC criteria are widely used in clinical settings.", + "text": "Disseminated intravascular coagulation (DIC) is a disorder frequently seen in critically ill patients, especially those with sepsis, that may lead to severe bleeding and organ dysfunction. 1 Because mortality is higher in patients with than without DIC, 2 3 several organizations have put forward DIC scoring systems with the aim of improving the outcome of patients with DIC. The Japanese Ministry of Health and Welfare (JMHW) proposed a criteria for the diagnosis of DIC in 1976. 4 Their criteria involved the evaluation of global coagulation tests, underlying diseases, and clinical symptoms. Thereafter, the subcommittee of the International Society on Thrombosis and Haemostasis (ISTH) proposed a scoring system for overt and non-overt DIC in 2001. 5 However, patients diagnosed according to the JMHW or ISTH DIC criteria are often at high risk of death at the time of diagnosis because of the delay from the onset of coagulopathy. It has been reported that these patients are missing out on the initiation of interventions in the setting of critical illness. 6 7 Thus, the Japanese Association for Acute Medicine (JAAM) proposed another DIC scoring system that aimed to make early diagnosis of DIC in acute diseases possible. 8 9 Now, both the ISTH overt- and JAAM DIC criteria are widely used in clinical settings." + }, + { + "self_ref": "#/texts/5", + "parent": { + "$ref": "#/texts/3" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "The JAAM DIC criteria have several unique features compared with other DIC criteria, one of which is the inclusion of the systemic inflammatory response syndrome (SIRS) score. Based on the pathophysiological concept, as sepsis-induced DIC is caused by systemic inflammation and subsequent endothelial injury, inclusion of the SIRS score seemed to be reasonable. 10 The SIRS score was introduced as one of the criteria to diagnose sepsis in 1992. 11 In recent years, however, the prognostic relevance of the SIRS score has been questioned, 12 and SIRS criteria have been omitted from the latest definition of sepsis proposed in 2016 13 and are no longer used in clinical practice. Other concerns with including the SIRS score in the DIC criteria were the clinical burden on physicians and inter-observer variability in scoring. To determine the SIRS score, several vital signs need to be assessed and the score calculated. Because the SIRS criteria are now no longer used to diagnose sepsis, this burden should be eliminated.", + "text": "The JAAM DIC criteria have several unique features compared with other DIC criteria, one of which is the inclusion of the systemic inflammatory response syndrome (SIRS) score. Based on the pathophysiological concept, as sepsis-induced DIC is caused by systemic inflammation and subsequent endothelial injury, inclusion of the SIRS score seemed to be reasonable. 10 The SIRS score was introduced as one of the criteria to diagnose sepsis in 1992. 11 In recent years, however, the prognostic relevance of the SIRS score has been questioned, 12 and SIRS criteria have been omitted from the latest definition of sepsis proposed in 2016 13 and are no longer used in clinical practice. Other concerns with including the SIRS score in the DIC criteria were the clinical burden on physicians and inter-observer variability in scoring. To determine the SIRS score, several vital signs need to be assessed and the score calculated. Because the SIRS criteria are now no longer used to diagnose sepsis, this burden should be eliminated." + }, + { + "self_ref": "#/texts/6", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/7" + } + ], + "label": "section_header", + "prov": [], + "orig": "Study Population", + "text": "Study Population", + "level": 1 + }, + { + "self_ref": "#/texts/7", + "parent": { + "$ref": "#/texts/6" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "This investigation was performed using three different datasets extracted from a multicenter nationwide cohort study conducted in Japan. The first dataset, the J-septic DIC dataset, was compiled in 42 intensive care units (ICUs) between January 2011 and December 2013. 2 The second dataset, the FORECAST dataset, was compiled in 59 ICUs between January 2016 and March 2017, 14 and the third dataset, the SPICE dataset, was compiled in 22 ICUs between December 2017 and May 2018. 15 In the first two datasets, patients were eligible for the registry if they were diagnosed as having severe sepsis or septic shock according to the conventional criteria proposed by the American College of Chest Physicians/Society of Critical Care Medicine (ACCP/SCCM) consensus conference in 1991 16 and were 18 years of age or older. In the present analysis, we included as the underlying diseases targeted by the JAAM-2 DIC criteria only those of sepsis patients diagnosed using the Sepsis-3 criteria (i.e., SOFA score of 2 or more points). 13", + "text": "This investigation was performed using three different datasets extracted from a multicenter nationwide cohort study conducted in Japan. The first dataset, the J-septic DIC dataset, was compiled in 42 intensive care units (ICUs) between January 2011 and December 2013. 2 The second dataset, the FORECAST dataset, was compiled in 59 ICUs between January 2016 and March 2017, 14 and the third dataset, the SPICE dataset, was compiled in 22 ICUs between December 2017 and May 2018. 15 In the first two datasets, patients were eligible for the registry if they were diagnosed as having severe sepsis or septic shock according to the conventional criteria proposed by the American College of Chest Physicians/Society of Critical Care Medicine (ACCP/SCCM) consensus conference in 1991 16 and were 18 years of age or older. In the present analysis, we included as the underlying diseases targeted by the JAAM-2 DIC criteria only those of sepsis patients diagnosed using the Sepsis-3 criteria (i.e., SOFA score of 2 or more points). 13" + }, + { + "self_ref": "#/texts/8", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/9" + } + ], + "label": "section_header", + "prov": [], + "orig": "Data Collection and Definitions", + "text": "Data Collection and Definitions", + "level": 1 + }, + { + "self_ref": "#/texts/9", + "parent": { + "$ref": "#/texts/8" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "A case report form was developed for the three datasets used in this study on which the following information was recorded: age, sex, disease severity scores on the day of ICU admission, the source of ICU admission, pre-existing conditions, new organ dysfunction, primary source of infection, and concomitant therapies against sepsis. The severity of illness was evaluated at study entry according to the Acute Physiology and Chronic Health Evaluation (APACHE) II score and SIRS score. The Sequential Organ Failure Assessment (SOFA) score was used to assess organ dysfunction, which was defined as a SOFA subscore \u22652 for each organ. 17 The primary outcome measure was all-cause in-hospital mortality.", + "text": "A case report form was developed for the three datasets used in this study on which the following information was recorded: age, sex, disease severity scores on the day of ICU admission, the source of ICU admission, pre-existing conditions, new organ dysfunction, primary source of infection, and concomitant therapies against sepsis. The severity of illness was evaluated at study entry according to the Acute Physiology and Chronic Health Evaluation (APACHE) II score and SIRS score. The Sequential Organ Failure Assessment (SOFA) score was used to assess organ dysfunction, which was defined as a SOFA subscore \u22652 for each organ. 17 The primary outcome measure was all-cause in-hospital mortality." + }, + { + "self_ref": "#/texts/10", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/11" + } + ], + "label": "section_header", + "prov": [], + "orig": "Newly Proposed Modified JAAM-2 DIC Criteria", + "text": "Newly Proposed Modified JAAM-2 DIC Criteria", + "level": 1 + }, + { + "self_ref": "#/texts/11", + "parent": { + "$ref": "#/texts/10" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "We proposed novel DIC criteria named the JAAM-2 DIC criteria that were modified from the original JAAM DIC criteria. The underlying diseases targeted by the JAAM-2 DIC criteria, which comply with those of the original JAAM DIC criteria, are shown in Table 1 . 9 The SIRS score component from the JAAM DIC criteria was omitted, and the cutoff value for diagnosing DIC was set at 3 points or more ( Table 2 ).", + "text": "We proposed novel DIC criteria named the JAAM-2 DIC criteria that were modified from the original JAAM DIC criteria. The underlying diseases targeted by the JAAM-2 DIC criteria, which comply with those of the original JAAM DIC criteria, are shown in Table 1 . 9 The SIRS score component from the JAAM DIC criteria was omitted, and the cutoff value for diagnosing DIC was set at 3 points or more ( Table 2 )." + }, + { + "self_ref": "#/texts/12", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/13" + } + ], + "label": "section_header", + "prov": [], + "orig": "Statistical Analysis", + "text": "Statistical Analysis", + "level": 1 + }, + { + "self_ref": "#/texts/13", + "parent": { + "$ref": "#/texts/12" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "The overall effectiveness of anticoagulant therapy on mortality was assessed using a Cox regression model with inverse probability-of-treatment weighting using the propensity scores. The propensity score for receiving anticoagulant therapy was calculated using multivariate logistic regression and included 25 independent variables for the J-septic DIC cohort and 30 variables for the FORECAST cohort, including age, sex, disease severity, source of ICU admission, past medical history of severe conditions, new organ dysfunctions, ICU characteristics, primary source of infection, causal microorganisms, anticoagulant therapy not for DIC, and other therapeutic interventions ( Supplementary Table S1 [available in the online version]). Hazard ratio and estimated 95% confidence interval were calculated along with estimated survival curves.", + "text": "The overall effectiveness of anticoagulant therapy on mortality was assessed using a Cox regression model with inverse probability-of-treatment weighting using the propensity scores. The propensity score for receiving anticoagulant therapy was calculated using multivariate logistic regression and included 25 independent variables for the J-septic DIC cohort and 30 variables for the FORECAST cohort, including age, sex, disease severity, source of ICU admission, past medical history of severe conditions, new organ dysfunctions, ICU characteristics, primary source of infection, causal microorganisms, anticoagulant therapy not for DIC, and other therapeutic interventions ( Supplementary Table S1 [available in the online version]). Hazard ratio and estimated 95% confidence interval were calculated along with estimated survival curves." + }, + { + "self_ref": "#/texts/14", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/15" + }, + { + "$ref": "#/texts/16" + } + ], + "label": "section_header", + "prov": [], + "orig": "Patient Characteristics", + "text": "Patient Characteristics", + "level": 1 + }, + { + "self_ref": "#/texts/15", + "parent": { + "$ref": "#/texts/14" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "The patient flow diagram is shown in Fig. 1 . During the study period, 3,195 consecutive patients fulfilling the inclusion criteria were registered in the J-Septic DIC registry database. After excluding 1,040 patients who met at least one exclusion criterion, we analyzed 2,154 patients in the final study cohort. The anticoagulant group comprised 1,089 patients, and the control group comprised 1,065 patients. Similarly, we enrolled 817 patients from the FORECAST registry and 608 patients from the SPICE-ICU registry in the final study cohort.", + "text": "The patient flow diagram is shown in Fig. 1 . During the study period, 3,195 consecutive patients fulfilling the inclusion criteria were registered in the J-Septic DIC registry database. After excluding 1,040 patients who met at least one exclusion criterion, we analyzed 2,154 patients in the final study cohort. The anticoagulant group comprised 1,089 patients, and the control group comprised 1,065 patients. Similarly, we enrolled 817 patients from the FORECAST registry and 608 patients from the SPICE-ICU registry in the final study cohort." + }, + { + "self_ref": "#/texts/16", + "parent": { + "$ref": "#/texts/14" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "Baseline characteristics of the study population are shown in Table 3 , Supplementary Table S2 and S3 (available in the online version). Patient characteristics such as age and sex were similar between the three datasets. After applying an inverse probability of treatment weighting with propensity score, patient characteristics, such as illness severity, as indicated by SOFA, APACHE II, and DIC scores and the rate of new organ dysfunction, were well matched between the anticoagulant and control groups.", + "text": "Baseline characteristics of the study population are shown in Table 3 , Supplementary Table S2 and S3 (available in the online version). Patient characteristics such as age and sex were similar between the three datasets. After applying an inverse probability of treatment weighting with propensity score, patient characteristics, such as illness severity, as indicated by SOFA, APACHE II, and DIC scores and the rate of new organ dysfunction, were well matched between the anticoagulant and control groups." + }, + { + "self_ref": "#/texts/17", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/18" + } + ], + "label": "section_header", + "prov": [], + "orig": "Prognostic Value of the Criteria", + "text": "Prognostic Value of the Criteria", + "level": 1 + }, + { + "self_ref": "#/texts/18", + "parent": { + "$ref": "#/texts/17" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "ROC curves for the original JAAM and modified JAAM-2 DIC criteria as predictors of in-hospital mortality are shown in Fig. 2 . Consistent with the three different datasets, the curves for both the JAAM and JAAM-2 DIC criteria were almost entirely consistent with each other. These data suggested that in predicting short-term mortality, use of the JAAM DIC and JAAM-2 DIC criteria was considered to be equivalent.", + "text": "ROC curves for the original JAAM and modified JAAM-2 DIC criteria as predictors of in-hospital mortality are shown in Fig. 2 . Consistent with the three different datasets, the curves for both the JAAM and JAAM-2 DIC criteria were almost entirely consistent with each other. These data suggested that in predicting short-term mortality, use of the JAAM DIC and JAAM-2 DIC criteria was considered to be equivalent." + }, + { + "self_ref": "#/texts/19", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/20" + } + ], + "label": "section_header", + "prov": [], + "orig": "Validity of the Criteria in Initiating Anticoagulation", + "text": "Validity of the Criteria in Initiating Anticoagulation", + "level": 1 + }, + { + "self_ref": "#/texts/20", + "parent": { + "$ref": "#/texts/19" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "Survival curves for the anticoagulant and control groups in the propensity score-weighted prediction model according to DIC status diagnosed using the two criteria are shown in Fig. 3 (J-septic DIC dataset) and Fig. 4 (FORECAST dataset). Consistent with both criteria and both datasets, favorable effects of anticoagulant therapy were observed only in the patient subsets with DIC, whereas differences in mortality between the anticoagulant and control groups in the subsets without DIC were not significant. These findings were consistent between the two datasets and suggested that to determine the optimal target of anticoagulant therapy for sepsis, use of the JAAM DIC and JAAM-2 DIC criteria for diagnosing DIC was considered to be equivalent.", + "text": "Survival curves for the anticoagulant and control groups in the propensity score-weighted prediction model according to DIC status diagnosed using the two criteria are shown in Fig. 3 (J-septic DIC dataset) and Fig. 4 (FORECAST dataset). Consistent with both criteria and both datasets, favorable effects of anticoagulant therapy were observed only in the patient subsets with DIC, whereas differences in mortality between the anticoagulant and control groups in the subsets without DIC were not significant. These findings were consistent between the two datasets and suggested that to determine the optimal target of anticoagulant therapy for sepsis, use of the JAAM DIC and JAAM-2 DIC criteria for diagnosing DIC was considered to be equivalent." + }, + { + "self_ref": "#/texts/21", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/22" + }, + { + "$ref": "#/texts/23" + }, + { + "$ref": "#/texts/24" + } + ], + "label": "section_header", + "prov": [], + "orig": "Clinical Application of the Findings", + "text": "Clinical Application of the Findings", + "level": 1 + }, + { + "self_ref": "#/texts/22", + "parent": { + "$ref": "#/texts/21" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "Several different clinical practice guidelines for DIC have been developed by societies in Britain, 18 Japan, 19 and Italy, 20 along with the harmonized guidance by the ISTH. 21 Some distinct discrepancies in the appraisal of diagnostic criteria for DIC exist between these guidelines. The Japanese and Italian clinical practice guidelines recommend the use of either the JMHW, ISTH, or the JAAM criteria, whereas the British guideline recommends the use of the ISTH criteria. The guidelines do not offer consistent recommendations on diagnosing DIC, and thus, there is currently no definitive agreement as to which of these criteria is superior to the other. The present study does not aim to discuss the diagnostic value of the several DIC criteria because we have no gold standard for DIC diagnosis. No meta-analysis has been conducted so far to compare the prognostic performance among the several available DIC criteria. Nonetheless, we showed that the clinical usefulness of the proposed JAAM-2 DIC criteria was nearly equivalent to that of the traditional JAAM DIC criteria. While a discussion on superiority would be worthless, we showed that the performance of the JAAM-2 scoring system is almost identical to that of the JAAM criteria in terms of mortality prediction and determining treatment timing.", + "text": "Several different clinical practice guidelines for DIC have been developed by societies in Britain, 18 Japan, 19 and Italy, 20 along with the harmonized guidance by the ISTH. 21 Some distinct discrepancies in the appraisal of diagnostic criteria for DIC exist between these guidelines. The Japanese and Italian clinical practice guidelines recommend the use of either the JMHW, ISTH, or the JAAM criteria, whereas the British guideline recommends the use of the ISTH criteria. The guidelines do not offer consistent recommendations on diagnosing DIC, and thus, there is currently no definitive agreement as to which of these criteria is superior to the other. The present study does not aim to discuss the diagnostic value of the several DIC criteria because we have no gold standard for DIC diagnosis. No meta-analysis has been conducted so far to compare the prognostic performance among the several available DIC criteria. Nonetheless, we showed that the clinical usefulness of the proposed JAAM-2 DIC criteria was nearly equivalent to that of the traditional JAAM DIC criteria. While a discussion on superiority would be worthless, we showed that the performance of the JAAM-2 scoring system is almost identical to that of the JAAM criteria in terms of mortality prediction and determining treatment timing." + }, + { + "self_ref": "#/texts/23", + "parent": { + "$ref": "#/texts/21" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "Modification of the JAAM DIC criteria has been discussed in several studies so far. Umemura et al 22 proposed unified DIC criteria involving several hemostatic endothelial molecular markers based on the JAAM DIC criteria and showed that the addition of protein C activity and plasminogen activator inhibitor 1 to the original JAAM DIC criteria resulted in greater prognostic value than the original criteria. Iba et al 23 proposed replacing the SIRS score with antithrombin activity in the JAAM DIC criteria. They validated the proposed criteria using a dataset of 819 sepsis patients and found that using AT-based DIC criteria makes it possible to discriminate a more coagulation disorder-specific population. All of these previous attempts were in addition to or replacements of the other variables instead of the SIRS score, and thus, the burden on clinicians still remained. In the present study, we simply omitted the SIRS score, so this modification of the JAAM DIC criteria should allow a totally clinical-friendly approach.", + "text": "Modification of the JAAM DIC criteria has been discussed in several studies so far. Umemura et al 22 proposed unified DIC criteria involving several hemostatic endothelial molecular markers based on the JAAM DIC criteria and showed that the addition of protein C activity and plasminogen activator inhibitor 1 to the original JAAM DIC criteria resulted in greater prognostic value than the original criteria. Iba et al 23 proposed replacing the SIRS score with antithrombin activity in the JAAM DIC criteria. They validated the proposed criteria using a dataset of 819 sepsis patients and found that using AT-based DIC criteria makes it possible to discriminate a more coagulation disorder-specific population. All of these previous attempts were in addition to or replacements of the other variables instead of the SIRS score, and thus, the burden on clinicians still remained. In the present study, we simply omitted the SIRS score, so this modification of the JAAM DIC criteria should allow a totally clinical-friendly approach." + }, + { + "self_ref": "#/texts/24", + "parent": { + "$ref": "#/texts/21" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "We intended to evaluate the severity of sepsis by adding \u201cSIRS score \u2265 3\u201d; however, the present study showed the prognosis to be not different without this item included. Therefore, we think it is reasonable to omit the SIRS item from the JAAM criteria. In the present analysis, as the JAAM-2 DIC criteria have been shown to increase clinical simplicity without diminishing any diagnostic performance, the educational activities led by our academic society will aid in the replacement of original JAAM with JAAM-2 DIC criteria in Japan. Furthermore, it will be necessary to verify coherence with the sepsis-induced coagulopathy criteria 24 proposed by the ISTH in the future.", + "text": "We intended to evaluate the severity of sepsis by adding \u201cSIRS score \u2265 3\u201d; however, the present study showed the prognosis to be not different without this item included. Therefore, we think it is reasonable to omit the SIRS item from the JAAM criteria. In the present analysis, as the JAAM-2 DIC criteria have been shown to increase clinical simplicity without diminishing any diagnostic performance, the educational activities led by our academic society will aid in the replacement of original JAAM with JAAM-2 DIC criteria in Japan. Furthermore, it will be necessary to verify coherence with the sepsis-induced coagulopathy criteria 24 proposed by the ISTH in the future." + }, + { + "self_ref": "#/texts/25", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/26" + } + ], + "label": "section_header", + "prov": [], + "orig": "Strengths and Limitations", + "text": "Strengths and Limitations", + "level": 1 + }, + { + "self_ref": "#/texts/26", + "parent": { + "$ref": "#/texts/25" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "We acknowledge several limitations of this study. First, due to its retrospective nature, the anticoagulant intervention was not standardized. The indications for the intervention being examined were dependent on the treatment principles of each hospital or each attending physician. Thus, we used propensity scoring to handle the nonrandomization. Second, this study used sub-group analysis, which might have accidentally generated both false-positive and false-negative results. Finally, this article focused only on patients with sepsis among various underlying diseases of DIC. The original JAAM DIC criteria have been reported to be useful in a variety of underlying diseases. 25 26 27 28 Further validation studies of these novel JAAM-2 DIC criteria targeting other underlying diseases such as trauma, postcardiac arrest, and pancreatitis should be conducted in the future.", + "text": "We acknowledge several limitations of this study. First, due to its retrospective nature, the anticoagulant intervention was not standardized. The indications for the intervention being examined were dependent on the treatment principles of each hospital or each attending physician. Thus, we used propensity scoring to handle the nonrandomization. Second, this study used sub-group analysis, which might have accidentally generated both false-positive and false-negative results. Finally, this article focused only on patients with sepsis among various underlying diseases of DIC. The original JAAM DIC criteria have been reported to be useful in a variety of underlying diseases. 25 26 27 28 Further validation studies of these novel JAAM-2 DIC criteria targeting other underlying diseases such as trauma, postcardiac arrest, and pancreatitis should be conducted in the future." + }, + { + "self_ref": "#/texts/27", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "section_header", + "prov": [], + "orig": "Tables", + "text": "Tables", + "level": 1 + }, + { + "self_ref": "#/texts/28", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [], + "orig": "Table 1 Underlying diseases targeted by the JAAM-2 DIC criteria", + "text": "Table 1 Underlying diseases targeted by the JAAM-2 DIC criteria" + }, + { + "self_ref": "#/texts/29", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [], + "orig": "Table 3 Baseline characteristics of included sepsis patients in the three datasets", + "text": "Table 3 Baseline characteristics of included sepsis patients in the three datasets" + }, + { + "self_ref": "#/texts/30", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "section_header", + "prov": [], + "orig": "Figures", + "text": "Figures", + "level": 1 + }, + { + "self_ref": "#/texts/31", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [], + "orig": "Fig. 1 Patient flow for the three datasets used in this study. DIC, disseminated intravascular coagulation; JAAM, Japanese Association for Acute Medicine; ROC, receiver operating characteristic.", + "text": "Fig. 1 Patient flow for the three datasets used in this study. DIC, disseminated intravascular coagulation; JAAM, Japanese Association for Acute Medicine; ROC, receiver operating characteristic." + }, + { + "self_ref": "#/texts/32", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [], + "orig": "Fig. 2 Receiver operating characteristic curves for original JAAM and modified JAAM-2 DIC criteria as predictors of in-hospital mortality. The solid line represents curves for JAAM-2, and the dotted line represents curves for original JAAM. (A) J-Septic DIC dataset, (B) FORECAST dataset, (C) SPICE dataset. DIC, disseminated intravascular coagulation; JAAM, Japanese Association for Acute Medicine.", + "text": "Fig. 2 Receiver operating characteristic curves for original JAAM and modified JAAM-2 DIC criteria as predictors of in-hospital mortality. The solid line represents curves for JAAM-2, and the dotted line represents curves for original JAAM. (A) J-Septic DIC dataset, (B) FORECAST dataset, (C) SPICE dataset. DIC, disseminated intravascular coagulation; JAAM, Japanese Association for Acute Medicine." + }, + { + "self_ref": "#/texts/33", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [], + "orig": "Fig. 3 Adjusted estimated survival curves according to the original JAAM and modified JAAM-2 DIC status using the J-septic DIC dataset. (A) JAAM DIC score \u2264 3, (B) JAAM DIC score \u2265 4, (C) JAAM-2 DIC score \u2264 2, and (D) JAAM-2 DIC score \u2265 3. The solid line represents patients in the anticoagulant group, and the dotted line represents patients in the control group. DIC, disseminated intravascular coagulation; JAAM, Japanese Association for Acute Medicine.", + "text": "Fig. 3 Adjusted estimated survival curves according to the original JAAM and modified JAAM-2 DIC status using the J-septic DIC dataset. (A) JAAM DIC score \u2264 3, (B) JAAM DIC score \u2265 4, (C) JAAM-2 DIC score \u2264 2, and (D) JAAM-2 DIC score \u2265 3. The solid line represents patients in the anticoagulant group, and the dotted line represents patients in the control group. DIC, disseminated intravascular coagulation; JAAM, Japanese Association for Acute Medicine." + }, + { + "self_ref": "#/texts/34", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [], + "orig": "Fig. 4 Adjusted estimated survival curves according to the original JAAM and modified JAAM-2 DIC status using the FORECAST dataset. (A) JAAM DIC score \u2264 3, (B) JAAM DIC score \u2265 4, (C) JAAM-2 DIC score \u2264 2, and (D) JAAM-2 DIC score \u2265 3. The solid line represents patients in the anticoagulant group, and the dotted line represents patients in the control group. DIC, disseminated intravascular coagulation; JAAM, Japanese Association for Acute Medicine.", + "text": "Fig. 4 Adjusted estimated survival curves according to the original JAAM and modified JAAM-2 DIC status using the FORECAST dataset. (A) JAAM DIC score \u2264 3, (B) JAAM DIC score \u2265 4, (C) JAAM-2 DIC score \u2264 2, and (D) JAAM-2 DIC score \u2265 3. The solid line represents patients in the anticoagulant group, and the dotted line represents patients in the control group. DIC, disseminated intravascular coagulation; JAAM, Japanese Association for Acute Medicine." + }, + { + "self_ref": "#/texts/35", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "section_header", + "prov": [], + "orig": "References", + "text": "References", + "level": 1 + }, + { + "self_ref": "#/texts/36", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "M Levi; H Ten Cate. Disseminated intravascular coagulation. N Engl J Med (1999)", + "text": "M Levi; H Ten Cate. Disseminated intravascular coagulation. N Engl J Med (1999)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/37", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "M Hayakawa; S Saito; S Uchino. Characteristics, treatments, and outcomes of severe sepsis of 3195 ICU-treated adult patients throughout Japan during 2011-2013. J Intensive Care (2016)", + "text": "M Hayakawa; S Saito; S Uchino. Characteristics, treatments, and outcomes of severe sepsis of 3195 ICU-treated adult patients throughout Japan during 2011-2013. J Intensive Care (2016)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/38", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "S Gando; A Shiraishi; K Yamakawa. Role of disseminated intravascular coagulation in severe sepsis. Thromb Res (2019)", + "text": "S Gando; A Shiraishi; K Yamakawa. Role of disseminated intravascular coagulation in severe sepsis. Thromb Res (2019)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/39", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "N Kobayashi; T Maekawa; M Takada; H Tanaka; H Gonmori. Criteria for diagnosis of DIC based on the analysis of clinical and laboratory findings in 345 DIC patients collected by the Research Committee on DIC in Japan. Bibl Haematol (1983)", + "text": "N Kobayashi; T Maekawa; M Takada; H Tanaka; H Gonmori. Criteria for diagnosis of DIC based on the analysis of clinical and laboratory findings in 345 DIC patients collected by the Research Committee on DIC in Japan. Bibl Haematol (1983)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/40", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "F B Taylor; C H Toh; W K Hoots; H Wada; M Levi. Towards definition, clinical and laboratory criteria, and a scoring system for disseminated intravascular coagulation. Thromb Haemost (2001)", + "text": "F B Taylor; C H Toh; W K Hoots; H Wada; M Levi. Towards definition, clinical and laboratory criteria, and a scoring system for disseminated intravascular coagulation. Thromb Haemost (2001)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/41", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "T Iba; Y Umemura; E Watanabe; T Wada; K Hayashida; S Kushimoto. Diagnosis of sepsis-induced disseminated intravascular coagulation and coagulopathy. Acute Med Surg (2019)", + "text": "T Iba; Y Umemura; E Watanabe; T Wada; K Hayashida; S Kushimoto. Diagnosis of sepsis-induced disseminated intravascular coagulation and coagulopathy. Acute Med Surg (2019)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/42", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "K Yamakawa; J Yoshimura; T Ito; M Hayakawa; T Hamasaki; S Fujimi. External validation of the two newly proposed criteria for assessing coagulopathy in sepsis. Thromb Haemost (2019)", + "text": "K Yamakawa; J Yoshimura; T Ito; M Hayakawa; T Hamasaki; S Fujimi. External validation of the two newly proposed criteria for assessing coagulopathy in sepsis. Thromb Haemost (2019)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/43", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "S Gando; T Iba; Y Eguchi. A multicenter, prospective validation of disseminated intravascular coagulation diagnostic criteria for critically ill patients: comparing current criteria. Crit Care Med (2006)", + "text": "S Gando; T Iba; Y Eguchi. A multicenter, prospective validation of disseminated intravascular coagulation diagnostic criteria for critically ill patients: comparing current criteria. Crit Care Med (2006)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/44", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "S Gando; D Saitoh; H Ogura. Natural history of disseminated intravascular coagulation diagnosed based on the newly established diagnostic criteria for critically ill patients: results of a multicenter, prospective survey. Crit Care Med (2008)", + "text": "S Gando; D Saitoh; H Ogura. Natural history of disseminated intravascular coagulation diagnosed based on the newly established diagnostic criteria for critically ill patients: results of a multicenter, prospective survey. Crit Care Med (2008)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/45", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "H Ogura; S Gando; T Iba. SIRS-associated coagulopathy and organ dysfunction in critically ill patients with thrombocytopenia. Shock (2007)", + "text": "H Ogura; S Gando; T Iba. SIRS-associated coagulopathy and organ dysfunction in critically ill patients with thrombocytopenia. Shock (2007)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/46", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": ". American College of Chest Physicians/Society of Critical Care Medicine Consensus Conference: definitions for sepsis and organ failure and guidelines for the use of innovative therapies in sepsis. Crit Care Med (1992)", + "text": ". American College of Chest Physicians/Society of Critical Care Medicine Consensus Conference: definitions for sepsis and organ failure and guidelines for the use of innovative therapies in sepsis. Crit Care Med (1992)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/47", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "K M Kaukonen; M Bailey; D Pilcher; D J Cooper; R Bellomo. Systemic inflammatory response syndrome criteria in defining severe sepsis. N Engl J Med (2015)", + "text": "K M Kaukonen; M Bailey; D Pilcher; D J Cooper; R Bellomo. Systemic inflammatory response syndrome criteria in defining severe sepsis. N Engl J Med (2015)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/48", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "M Singer; C S Deutschman; C W Seymour. The Third International Consensus Definitions for Sepsis and Septic Shock (Sepsis-3). JAMA (2016)", + "text": "M Singer; C S Deutschman; C W Seymour. The Third International Consensus Definitions for Sepsis and Septic Shock (Sepsis-3). JAMA (2016)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/49", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "T Abe; H Ogura; A Shiraishi. Characteristics, management, and in-hospital mortality among patients with severe sepsis in intensive care units in Japan: the FORECAST study. Crit Care (2018)", + "text": "T Abe; H Ogura; A Shiraishi. Characteristics, management, and in-hospital mortality among patients with severe sepsis in intensive care units in Japan: the FORECAST study. Crit Care (2018)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/50", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "T Abe; K Yamakawa; H Ogura. Epidemiology of sepsis and septic shock in intensive care units between sepsis-2 and sepsis-3 populations: sepsis prognostication in intensive care unit and emergency room (SPICE-ICU). J Intensive Care (2020)", + "text": "T Abe; K Yamakawa; H Ogura. Epidemiology of sepsis and septic shock in intensive care units between sepsis-2 and sepsis-3 populations: sepsis prognostication in intensive care unit and emergency room (SPICE-ICU). J Intensive Care (2020)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/51", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "R C Bone; R A Balk; F B Cerra. Definitions for sepsis and organ failure and guidelines for the use of innovative therapies in sepsis. Chest (1992)", + "text": "R C Bone; R A Balk; F B Cerra. Definitions for sepsis and organ failure and guidelines for the use of innovative therapies in sepsis. Chest (1992)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/52", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "J L Vincent; R Moreno; J Takala. The SOFA (Sepsis-related Organ Failure Assessment) score to describe organ dysfunction/failure. On behalf of the Working Group on Sepsis-Related Problems of the European Society of Intensive Care Medicine. Intensive Care Med (1996)", + "text": "J L Vincent; R Moreno; J Takala. The SOFA (Sepsis-related Organ Failure Assessment) score to describe organ dysfunction/failure. On behalf of the Working Group on Sepsis-Related Problems of the European Society of Intensive Care Medicine. Intensive Care Med (1996)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/53", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "M Levi; C H Toh; J Thachil; H G Watson. Guidelines for the diagnosis and management of disseminated intravascular coagulation. Br J Haematol (2009)", + "text": "M Levi; C H Toh; J Thachil; H G Watson. Guidelines for the diagnosis and management of disseminated intravascular coagulation. Br J Haematol (2009)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/54", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "H Wada; H Asakura; K Okamoto. Expert consensus for the treatment of disseminated intravascular coagulation in Japan. Thromb Res (2010)", + "text": "H Wada; H Asakura; K Okamoto. Expert consensus for the treatment of disseminated intravascular coagulation in Japan. Thromb Res (2010)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/55", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "M Di Nisio; F Baudo; B Cosmi. Diagnosis and treatment of disseminated intravascular coagulation: guidelines of the Italian Society for Haemostasis and Thrombosis (SISET). Thromb Res (2012)", + "text": "M Di Nisio; F Baudo; B Cosmi. Diagnosis and treatment of disseminated intravascular coagulation: guidelines of the Italian Society for Haemostasis and Thrombosis (SISET). Thromb Res (2012)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/56", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "H Wada; J Thachil; M Di Nisio. Guidance for diagnosis and treatment of DIC from harmonization of the recommendations from three guidelines. J Thromb Haemost (2013)", + "text": "H Wada; J Thachil; M Di Nisio. Guidance for diagnosis and treatment of DIC from harmonization of the recommendations from three guidelines. J Thromb Haemost (2013)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/57", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "Y Umemura; K Yamakawa; T Kiguchi. Design and evaluation of new unified criteria for disseminated intravascular coagulation based on the Japanese Association for Acute Medicine Criteria. Clin Appl Thromb Hemost (2016)", + "text": "Y Umemura; K Yamakawa; T Kiguchi. Design and evaluation of new unified criteria for disseminated intravascular coagulation based on the Japanese Association for Acute Medicine Criteria. Clin Appl Thromb Hemost (2016)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/58", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "T Iba; M Di Nisio; J Thachil. Revision of the Japanese Association for Acute Medicine (JAAM) disseminated intravascular coagulation (DIC) diagnostic criteria using antithrombin activity. Crit Care (2016)", + "text": "T Iba; M Di Nisio; J Thachil. Revision of the Japanese Association for Acute Medicine (JAAM) disseminated intravascular coagulation (DIC) diagnostic criteria using antithrombin activity. Crit Care (2016)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/59", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "T Iba; M D Nisio; J H Levy; N Kitamura; J Thachil. New criteria for sepsis-induced coagulopathy (SIC) following the revised sepsis definition: a retrospective analysis of a nationwide survey. BMJ Open (2017)", + "text": "T Iba; M D Nisio; J H Levy; N Kitamura; J Thachil. New criteria for sepsis-induced coagulopathy (SIC) following the revised sepsis definition: a retrospective analysis of a nationwide survey. BMJ Open (2017)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/60", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "S Kushimoto; S Gando; D Saitoh. Clinical course and outcome of disseminated intravascular coagulation diagnosed by Japanese Association for Acute Medicine criteria. Comparison between sepsis and trauma. Thromb Haemost (2008)", + "text": "S Kushimoto; S Gando; D Saitoh. Clinical course and outcome of disseminated intravascular coagulation diagnosed by Japanese Association for Acute Medicine criteria. Comparison between sepsis and trauma. Thromb Haemost (2008)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/61", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "A Sawamura; M Hayakawa; S Gando. Application of the Japanese Association for Acute Medicine disseminated intravascular coagulation diagnostic criteria for patients at an early phase of trauma. Thromb Res (2009)", + "text": "A Sawamura; M Hayakawa; S Gando. Application of the Japanese Association for Acute Medicine disseminated intravascular coagulation diagnostic criteria for patients at an early phase of trauma. Thromb Res (2009)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/62", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "K Iwai; S Uchino; A Endo; K Saito; Y Kase; M Takinami. Prospective external validation of the new scoring system for disseminated intravascular coagulation by Japanese Association for Acute Medicine (JAAM). Thromb Res (2010)", + "text": "K Iwai; S Uchino; A Endo; K Saito; Y Kase; M Takinami. Prospective external validation of the new scoring system for disseminated intravascular coagulation by Japanese Association for Acute Medicine (JAAM). Thromb Res (2010)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/63", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "T Takemitsu; H Wada; T Hatada. Prospective evaluation of three different diagnostic criteria for disseminated intravascular coagulation. Thromb Haemost (2011)", + "text": "T Takemitsu; H Wada; T Hatada. Prospective evaluation of three different diagnostic criteria for disseminated intravascular coagulation. Thromb Haemost (2011)", + "enumerated": false, + "marker": "-" + } + ], + "pictures": [ + { + "self_ref": "#/pictures/0", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "picture", + "prov": [], + "captions": [ + { + "$ref": "#/texts/31" + } + ], + "references": [], + "footnotes": [], + "annotations": [] + }, + { + "self_ref": "#/pictures/1", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "picture", + "prov": [], + "captions": [ + { + "$ref": "#/texts/32" + } + ], + "references": [], + "footnotes": [], + "annotations": [] + }, + { + "self_ref": "#/pictures/2", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "picture", + "prov": [], + "captions": [ + { + "$ref": "#/texts/33" + } + ], + "references": [], + "footnotes": [], + "annotations": [] + }, + { + "self_ref": "#/pictures/3", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "picture", + "prov": [], + "captions": [ + { + "$ref": "#/texts/34" + } + ], + "references": [], + "footnotes": [], + "annotations": [] + } + ], + "tables": [ + { + "self_ref": "#/tables/0", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "table", + "prov": [], + "captions": [ + { + "$ref": "#/texts/28" + } + ], + "references": [], + "footnotes": [], + "data": { + "table_cells": [ + { + "row_span": 1, + "col_span": 2, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 0, + "end_col_offset_idx": 2, + "text": "1. Sepsis/severe infection (any microorganism)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 2, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 0, + "end_col_offset_idx": 2, + "text": "2. Trauma/burn/surgery", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 2, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 0, + "end_col_offset_idx": 2, + "text": "3. Vascular abnormalities", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "Large vascular aneurysms", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "Giant hemangioma", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "Vasculitis", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 2, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 0, + "end_col_offset_idx": 2, + "text": "4. Severe toxic or immunological reactions", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "Snakebite", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "Recreational drugs", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "Transfusion reactions", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "Transplant rejection", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 2, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 0, + "end_col_offset_idx": 2, + "text": "5. Malignancy (except bone marrow suppression)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 2, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 0, + "end_col_offset_idx": 2, + "text": "6. Obstetric calamities", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 2, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 0, + "end_col_offset_idx": 2, + "text": "7. Conditions that may be associated with systemic inflammatory response syndrome", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "Organ destruction (e.g., severe pancreatitis)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "Severe hepatic failure", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "Ischemia/hypoxia/shock", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "Heat stroke/malignant syndrome", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "Fat embolism", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "Rhabdomyolysis", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "Others", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 2, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 0, + "end_col_offset_idx": 2, + "text": "8. Others", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + "num_rows": 22, + "num_cols": 2, + "grid": [ + [ + { + "row_span": 1, + "col_span": 2, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 0, + "end_col_offset_idx": 2, + "text": "1. Sepsis/severe infection (any microorganism)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 2, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 0, + "end_col_offset_idx": 2, + "text": "1. Sepsis/severe infection (any microorganism)", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 2, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 0, + "end_col_offset_idx": 2, + "text": "2. Trauma/burn/surgery", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 2, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 0, + "end_col_offset_idx": 2, + "text": "2. Trauma/burn/surgery", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 2, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 0, + "end_col_offset_idx": 2, + "text": "3. Vascular abnormalities", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 2, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 0, + "end_col_offset_idx": 2, + "text": "3. Vascular abnormalities", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "Large vascular aneurysms", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "Giant hemangioma", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "Vasculitis", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 2, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 0, + "end_col_offset_idx": 2, + "text": "4. Severe toxic or immunological reactions", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 2, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 0, + "end_col_offset_idx": 2, + "text": "4. Severe toxic or immunological reactions", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "Snakebite", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "Recreational drugs", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "Transfusion reactions", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "Transplant rejection", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 2, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 0, + "end_col_offset_idx": 2, + "text": "5. Malignancy (except bone marrow suppression)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 2, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 0, + "end_col_offset_idx": 2, + "text": "5. Malignancy (except bone marrow suppression)", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 2, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 0, + "end_col_offset_idx": 2, + "text": "6. Obstetric calamities", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 2, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 0, + "end_col_offset_idx": 2, + "text": "6. Obstetric calamities", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 2, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 0, + "end_col_offset_idx": 2, + "text": "7. Conditions that may be associated with systemic inflammatory response syndrome", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 2, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 0, + "end_col_offset_idx": 2, + "text": "7. Conditions that may be associated with systemic inflammatory response syndrome", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "Organ destruction (e.g., severe pancreatitis)", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "Severe hepatic failure", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "Ischemia/hypoxia/shock", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "Heat stroke/malignant syndrome", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "Fat embolism", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "Rhabdomyolysis", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "Others", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 2, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 0, + "end_col_offset_idx": 2, + "text": "8. Others", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 2, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 0, + "end_col_offset_idx": 2, + "text": "8. Others", + "column_header": false, + "row_header": false, + "row_section": false + } + ] + ] + } + }, + { + "self_ref": "#/tables/1", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "table", + "prov": [], + "captions": [ + { + "$ref": "#/texts/29" + } + ], + "references": [], + "footnotes": [], + "data": { + "table_cells": [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "Characteristics", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "J-septic DIC dataset\n(\nn\n\u2009=\u20092,154)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "FORECAST dataset\n(\nn\n\u2009=\u2009817)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "SPICE dataset\n(\nn\n\u2009=\u2009608)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "Age in years", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "72 (62\u201380)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "72 (63\u201382)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "72 (60\u201382)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "Male sex", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "1,270 (59%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "496 (61%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "350 (58%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 4, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 0, + "end_col_offset_idx": 4, + "text": "Illness severity", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\u2003SIRS score", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "3 (2\u20134)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "3 (2\u20134)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "3 (2\u20133)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\u2003SOFA score", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "9 (7\u201312)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "9 (6\u201311)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "7 (4.5\u201310)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\u2003APACHE II score", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "22 (17\u201328)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "22 (17\u201329)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "20 (14\u201327)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\u2003ISTH overt-DIC score", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "4 (2\u20135)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "3 (2\u20134)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "2 (0\u20133)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\u2003JAAM DIC score", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "4 (3\u20136)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "4 (2\u20135)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "3 (2\u20135)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 4, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 0, + "end_col_offset_idx": 4, + "text": "Source of ICU admission", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\u2003Emergency department", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "1,018 (47%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "465 (57%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "350 (58%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\u2003Ward", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "515 (24%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 2, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 13, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "352 (43%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 2, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 13, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "258 (42%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\u2003Other hospital", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "621 (29%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 4, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 0, + "end_col_offset_idx": 4, + "text": "Pre-existing condition", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\u2003Liver insufficiency", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "16 (1%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "26 (3%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "26 (4%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\u2003Chronic heart failure", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "116 (5%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "104 (13%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "57 (9%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\u2003Chronic respiratory disorder", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "85 (4%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "58 (7%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "52 (9%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\u2003Chronic hemodialysis", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "167 (8%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "52 (6%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "52 (9%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\u2003Immunocompromised", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "228 (11%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "96 (12%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "38 (6%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 4, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 0, + "end_col_offset_idx": 4, + "text": "New organ dysfunction (SOFA subscores \u2265 2)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\u2003Respiratory", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "1,489 (69%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "575 (70%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "370 (61%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\u2003Cardiovascular", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "1,416 (66%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "461 (56%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "254 (42%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\u2003Renal", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "1,071 (50%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "413 (51%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "268 (44%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\u2003Hepatic", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "383 (18%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "127 (16%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "84 (14%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\u2003Coagulation", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "816 (38%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "233 (29%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "127 (21%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 4, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 0, + "end_col_offset_idx": 4, + "text": "Primary source of infection", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\u2003Abdomen", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "696 (32%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "212 (26%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "120 (20%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 27, + "end_row_offset_idx": 28, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\u2003Lung", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 27, + "end_row_offset_idx": 28, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "556 (26%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 27, + "end_row_offset_idx": 28, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "259 (32%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 27, + "end_row_offset_idx": 28, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "203 (33%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 28, + "end_row_offset_idx": 29, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\u2003Urinary tract", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 28, + "end_row_offset_idx": 29, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "385 (18%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 28, + "end_row_offset_idx": 29, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "159 (19%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 28, + "end_row_offset_idx": 29, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "102 (17%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 29, + "end_row_offset_idx": 30, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\u2003Bone/soft tissue", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 29, + "end_row_offset_idx": 30, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "250 (12%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 29, + "end_row_offset_idx": 30, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "111 (14%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 29, + "end_row_offset_idx": 30, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "90 (15%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 30, + "end_row_offset_idx": 31, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\u2003Central nervous system", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 30, + "end_row_offset_idx": 31, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "50 (2%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 30, + "end_row_offset_idx": 31, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "15 (2%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 30, + "end_row_offset_idx": 31, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "15 (2%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 31, + "end_row_offset_idx": 32, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\u2003Other/unknown", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 31, + "end_row_offset_idx": 32, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "217 (10%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 31, + "end_row_offset_idx": 32, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "61 (7%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 31, + "end_row_offset_idx": 32, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "78 (13%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 4, + "start_row_offset_idx": 32, + "end_row_offset_idx": 33, + "start_col_offset_idx": 0, + "end_col_offset_idx": 4, + "text": "Other therapeutic interventions", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 33, + "end_row_offset_idx": 34, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\u2003Immunoglobulin", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 33, + "end_row_offset_idx": 34, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "685 (32%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 33, + "end_row_offset_idx": 34, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "158 (19%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 33, + "end_row_offset_idx": 34, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 34, + "end_row_offset_idx": 35, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\u2003Low-dose steroids", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 34, + "end_row_offset_idx": 35, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "539 (25%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 34, + "end_row_offset_idx": 35, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "241 (30%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 34, + "end_row_offset_idx": 35, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 35, + "end_row_offset_idx": 36, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\u2003Renal replacement therapy", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 35, + "end_row_offset_idx": 36, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "599 (28%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 35, + "end_row_offset_idx": 36, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "231 (28%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 35, + "end_row_offset_idx": 36, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 36, + "end_row_offset_idx": 37, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\u2003PMX-DHP", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 36, + "end_row_offset_idx": 37, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "465 (22%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 36, + "end_row_offset_idx": 37, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "78 (10%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 36, + "end_row_offset_idx": 37, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 37, + "end_row_offset_idx": 38, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\u2003Surgical intervention", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 37, + "end_row_offset_idx": 38, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "906 (42%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 37, + "end_row_offset_idx": 38, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "145 (18%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 37, + "end_row_offset_idx": 38, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + "num_rows": 38, + "num_cols": 4, + "grid": [ + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "Characteristics", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "J-septic DIC dataset\n(\nn\n\u2009=\u20092,154)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "FORECAST dataset\n(\nn\n\u2009=\u2009817)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "SPICE dataset\n(\nn\n\u2009=\u2009608)\n", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "Age in years", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "72 (62\u201380)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "72 (63\u201382)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "72 (60\u201382)", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "Male sex", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "1,270 (59%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "496 (61%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "350 (58%)", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 4, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 0, + "end_col_offset_idx": 4, + "text": "Illness severity", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 4, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 0, + "end_col_offset_idx": 4, + "text": "Illness severity", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 4, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 0, + "end_col_offset_idx": 4, + "text": "Illness severity", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 4, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 0, + "end_col_offset_idx": 4, + "text": "Illness severity", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\u2003SIRS score", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "3 (2\u20134)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "3 (2\u20134)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "3 (2\u20133)", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\u2003SOFA score", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "9 (7\u201312)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "9 (6\u201311)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "7 (4.5\u201310)", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\u2003APACHE II score", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "22 (17\u201328)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "22 (17\u201329)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "20 (14\u201327)", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\u2003ISTH overt-DIC score", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "4 (2\u20135)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "3 (2\u20134)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "2 (0\u20133)", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\u2003JAAM DIC score", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "4 (3\u20136)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "4 (2\u20135)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "3 (2\u20135)", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 4, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 0, + "end_col_offset_idx": 4, + "text": "Source of ICU admission", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 4, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 0, + "end_col_offset_idx": 4, + "text": "Source of ICU admission", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 4, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 0, + "end_col_offset_idx": 4, + "text": "Source of ICU admission", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 4, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 0, + "end_col_offset_idx": 4, + "text": "Source of ICU admission", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\u2003Emergency department", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "1,018 (47%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "465 (57%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "350 (58%)", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\u2003Ward", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "515 (24%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 2, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 13, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "352 (43%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 2, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 13, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "258 (42%)", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\u2003Other hospital", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "621 (29%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 2, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 13, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "352 (43%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 2, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 13, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "258 (42%)", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 4, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 0, + "end_col_offset_idx": 4, + "text": "Pre-existing condition", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 4, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 0, + "end_col_offset_idx": 4, + "text": "Pre-existing condition", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 4, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 0, + "end_col_offset_idx": 4, + "text": "Pre-existing condition", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 4, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 0, + "end_col_offset_idx": 4, + "text": "Pre-existing condition", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\u2003Liver insufficiency", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "16 (1%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "26 (3%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "26 (4%)", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\u2003Chronic heart failure", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "116 (5%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "104 (13%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "57 (9%)", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\u2003Chronic respiratory disorder", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "85 (4%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "58 (7%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "52 (9%)", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\u2003Chronic hemodialysis", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "167 (8%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "52 (6%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "52 (9%)", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\u2003Immunocompromised", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "228 (11%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "96 (12%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "38 (6%)", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 4, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 0, + "end_col_offset_idx": 4, + "text": "New organ dysfunction (SOFA subscores \u2265 2)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 4, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 0, + "end_col_offset_idx": 4, + "text": "New organ dysfunction (SOFA subscores \u2265 2)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 4, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 0, + "end_col_offset_idx": 4, + "text": "New organ dysfunction (SOFA subscores \u2265 2)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 4, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 0, + "end_col_offset_idx": 4, + "text": "New organ dysfunction (SOFA subscores \u2265 2)", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\u2003Respiratory", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "1,489 (69%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "575 (70%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "370 (61%)", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\u2003Cardiovascular", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "1,416 (66%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "461 (56%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "254 (42%)", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\u2003Renal", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "1,071 (50%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "413 (51%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "268 (44%)", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\u2003Hepatic", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "383 (18%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "127 (16%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "84 (14%)", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\u2003Coagulation", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "816 (38%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "233 (29%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "127 (21%)", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 4, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 0, + "end_col_offset_idx": 4, + "text": "Primary source of infection", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 4, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 0, + "end_col_offset_idx": 4, + "text": "Primary source of infection", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 4, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 0, + "end_col_offset_idx": 4, + "text": "Primary source of infection", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 4, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 0, + "end_col_offset_idx": 4, + "text": "Primary source of infection", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\u2003Abdomen", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "696 (32%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "212 (26%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "120 (20%)", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 27, + "end_row_offset_idx": 28, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\u2003Lung", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 27, + "end_row_offset_idx": 28, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "556 (26%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 27, + "end_row_offset_idx": 28, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "259 (32%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 27, + "end_row_offset_idx": 28, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "203 (33%)", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 28, + "end_row_offset_idx": 29, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\u2003Urinary tract", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 28, + "end_row_offset_idx": 29, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "385 (18%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 28, + "end_row_offset_idx": 29, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "159 (19%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 28, + "end_row_offset_idx": 29, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "102 (17%)", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 29, + "end_row_offset_idx": 30, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\u2003Bone/soft tissue", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 29, + "end_row_offset_idx": 30, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "250 (12%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 29, + "end_row_offset_idx": 30, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "111 (14%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 29, + "end_row_offset_idx": 30, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "90 (15%)", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 30, + "end_row_offset_idx": 31, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\u2003Central nervous system", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 30, + "end_row_offset_idx": 31, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "50 (2%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 30, + "end_row_offset_idx": 31, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "15 (2%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 30, + "end_row_offset_idx": 31, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "15 (2%)", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 31, + "end_row_offset_idx": 32, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\u2003Other/unknown", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 31, + "end_row_offset_idx": 32, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "217 (10%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 31, + "end_row_offset_idx": 32, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "61 (7%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 31, + "end_row_offset_idx": 32, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "78 (13%)", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 4, + "start_row_offset_idx": 32, + "end_row_offset_idx": 33, + "start_col_offset_idx": 0, + "end_col_offset_idx": 4, + "text": "Other therapeutic interventions", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 4, + "start_row_offset_idx": 32, + "end_row_offset_idx": 33, + "start_col_offset_idx": 0, + "end_col_offset_idx": 4, + "text": "Other therapeutic interventions", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 4, + "start_row_offset_idx": 32, + "end_row_offset_idx": 33, + "start_col_offset_idx": 0, + "end_col_offset_idx": 4, + "text": "Other therapeutic interventions", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 4, + "start_row_offset_idx": 32, + "end_row_offset_idx": 33, + "start_col_offset_idx": 0, + "end_col_offset_idx": 4, + "text": "Other therapeutic interventions", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 33, + "end_row_offset_idx": 34, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\u2003Immunoglobulin", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 33, + "end_row_offset_idx": 34, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "685 (32%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 33, + "end_row_offset_idx": 34, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "158 (19%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 33, + "end_row_offset_idx": 34, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 34, + "end_row_offset_idx": 35, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\u2003Low-dose steroids", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 34, + "end_row_offset_idx": 35, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "539 (25%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 34, + "end_row_offset_idx": 35, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "241 (30%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 34, + "end_row_offset_idx": 35, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 35, + "end_row_offset_idx": 36, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\u2003Renal replacement therapy", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 35, + "end_row_offset_idx": 36, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "599 (28%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 35, + "end_row_offset_idx": 36, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "231 (28%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 35, + "end_row_offset_idx": 36, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 36, + "end_row_offset_idx": 37, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\u2003PMX-DHP", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 36, + "end_row_offset_idx": 37, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "465 (22%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 36, + "end_row_offset_idx": 37, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "78 (10%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 36, + "end_row_offset_idx": 37, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 37, + "end_row_offset_idx": 38, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\u2003Surgical intervention", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 37, + "end_row_offset_idx": 38, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "906 (42%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 37, + "end_row_offset_idx": 38, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "145 (18%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 37, + "end_row_offset_idx": 38, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + } + ] + ] + } + } + ], + "key_value_items": [], + "pages": {} +} \ No newline at end of file diff --git a/tests/data/groundtruth/docling_v2/10-1055-s-0044-1786808.nxml.md b/tests/data/groundtruth/docling_v2/10-1055-s-0044-1786808.nxml.md new file mode 100644 index 00000000..80c474af --- /dev/null +++ b/tests/data/groundtruth/docling_v2/10-1055-s-0044-1786808.nxml.md @@ -0,0 +1,172 @@ +# Proposal and Validation of a Clinically Relevant Modification of the Japanese Association for Acute Medicine Disseminated Intravascular Coagulation Diagnostic Criteria for Sepsis + +Kazuma Yamakawa; Department of Emergency and Critical Care Medicine, Osaka Medical and Pharmaceutical University, Takatsuki, Japan; Yutaka Umemura; Division of Trauma and Surgical Critical Care, Osaka General Medical Center, Osaka, Japan; Katsunori Mochizuki; Department of Emergency and Critical Care Medicine, Osaka Medical and Pharmaceutical University, Takatsuki, Japan; Department of Emergency and Critical Care Medicine, Azumino Red Cross Hospital, Nagano, Japan; Tadashi Matsuoka; Department of Emergency and Critical Care Medicine, Keio University, Tokyo, Japan; Takeshi Wada; Division of Acute and Critical Care Medicine, Department of Anesthesiology and Critical Care Medicine, Hokkaido University Faculty of Medicine, Sapporo, Japan; Mineji Hayakawa; Division of Acute and Critical Care Medicine, Department of Anesthesiology and Critical Care Medicine, Hokkaido University Faculty of Medicine, Sapporo, Japan; Toshiaki Iba; Department of Emergency and Disaster Medicine, Juntendo University Graduate School of Medicine, Tokyo, Japan; Yasuhiro Ohtomo; National Disaster Medical Center, Tokyo, Japan; Kohji Okamoto; Department of Surgery, Kitakyushu City Yahata Hospital, Kitakyushu, Japan; Toshihiko Mayumi; Department of Intensive Care Unit, Japan Community Healthcare Organization Chukyo Hospital, Nagoya, Japan; Toshiaki Ikeda; Division of Critical Care and Emergency Medicine, Tokyo Medical University Hachioji Medical Center, Tokyo, Japan; Hiroyasu Ishikura; Department of Emergency and Critical Care Medicine, Fukuoka University, Fukuoka, Japan; Hiroshi Ogura; Department of Traumatology and Acute Critical Medicine, Osaka University Graduate School of Medicine, Suita, Japan; Shigeki Kushimoto; Division of Emergency and Critical Care Medicine, Tohoku University Graduate School of Medicine, Sendai, Japan; Daizoh Saitoh; Graduate School of Emergency Medical System, Kokushikan University, Tama, Japan; Satoshi Gando; Division of Acute and Critical Care Medicine, Department of Anesthesiology and Critical Care Medicine, Hokkaido University Faculty of Medicine, Sapporo, Japan; Department of Acute and Critical Care Medicine, Sapporo Higashi Tokushukai Hospital, Sapporo, Japan + +Background Japanese Association for Acute Medicine (JAAM) disseminated intravascular coagulation (DIC) criteria were launched nearly 20 years ago. Following the revised conceptual definition of sepsis and subsequent omission of systemic inflammatory response syndrome (SIRS) score from the latest sepsis diagnostic criteria, we omitted the SIRS score and proposed a modified version of JAAM DIC criteria, the JAAM-2 DIC criteria. Objectives To validate and compare performance between new JAAM-2 DIC criteria and conventional JAAM DIC criteria for sepsis. Methods We used three datasets containing adult sepsis patients from a multicenter nationwide Japanese cohort study (J-septic DIC, FORECAST, and SPICE-ICU registries). JAAM-2 DIC criteria omitted the SIRS score and set the cutoff value at ≥3 points. Receiver operating characteristic (ROC) analyses were performed between the two DIC criteria to evaluate prognostic value. Associations between in-hospital mortality and anticoagulant therapy according to DIC status were analyzed using propensity score weighting to compare significance of the criteria in determining introduction of anticoagulants against sepsis. Results Final study cohorts of the datasets included 2,154, 1,065, and 608 sepsis patients, respectively. ROC analysis revealed that curves for both JAAM and JAAM-2 DIC criteria as predictors of in-hospital mortality were almost consistent. Survival curves for the anticoagulant and control groups in the propensity score-weighted prediction model diagnosed using the two criteria were also almost entirely consistent. Conclusion JAAM-2 DIC criteria were equivalent to JAAM DIC criteria regarding prognostic and diagnostic values for initiating anticoagulation. The newly proposed JAAM-2 DIC criteria could be potentially alternative criteria for sepsis management. + +## Introduction + +Disseminated intravascular coagulation (DIC) is a disorder frequently seen in critically ill patients, especially those with sepsis, that may lead to severe bleeding and organ dysfunction. 1 Because mortality is higher in patients with than without DIC, 2 3 several organizations have put forward DIC scoring systems with the aim of improving the outcome of patients with DIC. The Japanese Ministry of Health and Welfare (JMHW) proposed a criteria for the diagnosis of DIC in 1976. 4 Their criteria involved the evaluation of global coagulation tests, underlying diseases, and clinical symptoms. Thereafter, the subcommittee of the International Society on Thrombosis and Haemostasis (ISTH) proposed a scoring system for overt and non-overt DIC in 2001. 5 However, patients diagnosed according to the JMHW or ISTH DIC criteria are often at high risk of death at the time of diagnosis because of the delay from the onset of coagulopathy. It has been reported that these patients are missing out on the initiation of interventions in the setting of critical illness. 6 7 Thus, the Japanese Association for Acute Medicine (JAAM) proposed another DIC scoring system that aimed to make early diagnosis of DIC in acute diseases possible. 8 9 Now, both the ISTH overt- and JAAM DIC criteria are widely used in clinical settings. + +The JAAM DIC criteria have several unique features compared with other DIC criteria, one of which is the inclusion of the systemic inflammatory response syndrome (SIRS) score. Based on the pathophysiological concept, as sepsis-induced DIC is caused by systemic inflammation and subsequent endothelial injury, inclusion of the SIRS score seemed to be reasonable. 10 The SIRS score was introduced as one of the criteria to diagnose sepsis in 1992. 11 In recent years, however, the prognostic relevance of the SIRS score has been questioned, 12 and SIRS criteria have been omitted from the latest definition of sepsis proposed in 2016 13 and are no longer used in clinical practice. Other concerns with including the SIRS score in the DIC criteria were the clinical burden on physicians and inter-observer variability in scoring. To determine the SIRS score, several vital signs need to be assessed and the score calculated. Because the SIRS criteria are now no longer used to diagnose sepsis, this burden should be eliminated. + +## Study Population + +This investigation was performed using three different datasets extracted from a multicenter nationwide cohort study conducted in Japan. The first dataset, the J-septic DIC dataset, was compiled in 42 intensive care units (ICUs) between January 2011 and December 2013. 2 The second dataset, the FORECAST dataset, was compiled in 59 ICUs between January 2016 and March 2017, 14 and the third dataset, the SPICE dataset, was compiled in 22 ICUs between December 2017 and May 2018. 15 In the first two datasets, patients were eligible for the registry if they were diagnosed as having severe sepsis or septic shock according to the conventional criteria proposed by the American College of Chest Physicians/Society of Critical Care Medicine (ACCP/SCCM) consensus conference in 1991 16 and were 18 years of age or older. In the present analysis, we included as the underlying diseases targeted by the JAAM-2 DIC criteria only those of sepsis patients diagnosed using the Sepsis-3 criteria (i.e., SOFA score of 2 or more points). 13 + +## Data Collection and Definitions + +A case report form was developed for the three datasets used in this study on which the following information was recorded: age, sex, disease severity scores on the day of ICU admission, the source of ICU admission, pre-existing conditions, new organ dysfunction, primary source of infection, and concomitant therapies against sepsis. The severity of illness was evaluated at study entry according to the Acute Physiology and Chronic Health Evaluation (APACHE) II score and SIRS score. The Sequential Organ Failure Assessment (SOFA) score was used to assess organ dysfunction, which was defined as a SOFA subscore ≥2 for each organ. 17 The primary outcome measure was all-cause in-hospital mortality. + +## Newly Proposed Modified JAAM-2 DIC Criteria + +We proposed novel DIC criteria named the JAAM-2 DIC criteria that were modified from the original JAAM DIC criteria. The underlying diseases targeted by the JAAM-2 DIC criteria, which comply with those of the original JAAM DIC criteria, are shown in Table 1 . 9 The SIRS score component from the JAAM DIC criteria was omitted, and the cutoff value for diagnosing DIC was set at 3 points or more ( Table 2 ). + +## Statistical Analysis + +The overall effectiveness of anticoagulant therapy on mortality was assessed using a Cox regression model with inverse probability-of-treatment weighting using the propensity scores. The propensity score for receiving anticoagulant therapy was calculated using multivariate logistic regression and included 25 independent variables for the J-septic DIC cohort and 30 variables for the FORECAST cohort, including age, sex, disease severity, source of ICU admission, past medical history of severe conditions, new organ dysfunctions, ICU characteristics, primary source of infection, causal microorganisms, anticoagulant therapy not for DIC, and other therapeutic interventions ( Supplementary Table S1 [available in the online version]). Hazard ratio and estimated 95% confidence interval were calculated along with estimated survival curves. + +## Patient Characteristics + +The patient flow diagram is shown in Fig. 1 . During the study period, 3,195 consecutive patients fulfilling the inclusion criteria were registered in the J-Septic DIC registry database. After excluding 1,040 patients who met at least one exclusion criterion, we analyzed 2,154 patients in the final study cohort. The anticoagulant group comprised 1,089 patients, and the control group comprised 1,065 patients. Similarly, we enrolled 817 patients from the FORECAST registry and 608 patients from the SPICE-ICU registry in the final study cohort. + +Baseline characteristics of the study population are shown in Table 3 , Supplementary Table S2 and S3 (available in the online version). Patient characteristics such as age and sex were similar between the three datasets. After applying an inverse probability of treatment weighting with propensity score, patient characteristics, such as illness severity, as indicated by SOFA, APACHE II, and DIC scores and the rate of new organ dysfunction, were well matched between the anticoagulant and control groups. + +## Prognostic Value of the Criteria + +ROC curves for the original JAAM and modified JAAM-2 DIC criteria as predictors of in-hospital mortality are shown in Fig. 2 . Consistent with the three different datasets, the curves for both the JAAM and JAAM-2 DIC criteria were almost entirely consistent with each other. These data suggested that in predicting short-term mortality, use of the JAAM DIC and JAAM-2 DIC criteria was considered to be equivalent. + +## Validity of the Criteria in Initiating Anticoagulation + +Survival curves for the anticoagulant and control groups in the propensity score-weighted prediction model according to DIC status diagnosed using the two criteria are shown in Fig. 3 (J-septic DIC dataset) and Fig. 4 (FORECAST dataset). Consistent with both criteria and both datasets, favorable effects of anticoagulant therapy were observed only in the patient subsets with DIC, whereas differences in mortality between the anticoagulant and control groups in the subsets without DIC were not significant. These findings were consistent between the two datasets and suggested that to determine the optimal target of anticoagulant therapy for sepsis, use of the JAAM DIC and JAAM-2 DIC criteria for diagnosing DIC was considered to be equivalent. + +## Clinical Application of the Findings + +Several different clinical practice guidelines for DIC have been developed by societies in Britain, 18 Japan, 19 and Italy, 20 along with the harmonized guidance by the ISTH. 21 Some distinct discrepancies in the appraisal of diagnostic criteria for DIC exist between these guidelines. The Japanese and Italian clinical practice guidelines recommend the use of either the JMHW, ISTH, or the JAAM criteria, whereas the British guideline recommends the use of the ISTH criteria. The guidelines do not offer consistent recommendations on diagnosing DIC, and thus, there is currently no definitive agreement as to which of these criteria is superior to the other. The present study does not aim to discuss the diagnostic value of the several DIC criteria because we have no gold standard for DIC diagnosis. No meta-analysis has been conducted so far to compare the prognostic performance among the several available DIC criteria. Nonetheless, we showed that the clinical usefulness of the proposed JAAM-2 DIC criteria was nearly equivalent to that of the traditional JAAM DIC criteria. While a discussion on superiority would be worthless, we showed that the performance of the JAAM-2 scoring system is almost identical to that of the JAAM criteria in terms of mortality prediction and determining treatment timing. + +Modification of the JAAM DIC criteria has been discussed in several studies so far. Umemura et al 22 proposed unified DIC criteria involving several hemostatic endothelial molecular markers based on the JAAM DIC criteria and showed that the addition of protein C activity and plasminogen activator inhibitor 1 to the original JAAM DIC criteria resulted in greater prognostic value than the original criteria. Iba et al 23 proposed replacing the SIRS score with antithrombin activity in the JAAM DIC criteria. They validated the proposed criteria using a dataset of 819 sepsis patients and found that using AT-based DIC criteria makes it possible to discriminate a more coagulation disorder-specific population. All of these previous attempts were in addition to or replacements of the other variables instead of the SIRS score, and thus, the burden on clinicians still remained. In the present study, we simply omitted the SIRS score, so this modification of the JAAM DIC criteria should allow a totally clinical-friendly approach. + +We intended to evaluate the severity of sepsis by adding “SIRS score ≥ 3”; however, the present study showed the prognosis to be not different without this item included. Therefore, we think it is reasonable to omit the SIRS item from the JAAM criteria. In the present analysis, as the JAAM-2 DIC criteria have been shown to increase clinical simplicity without diminishing any diagnostic performance, the educational activities led by our academic society will aid in the replacement of original JAAM with JAAM-2 DIC criteria in Japan. Furthermore, it will be necessary to verify coherence with the sepsis-induced coagulopathy criteria 24 proposed by the ISTH in the future. + +## Strengths and Limitations + +We acknowledge several limitations of this study. First, due to its retrospective nature, the anticoagulant intervention was not standardized. The indications for the intervention being examined were dependent on the treatment principles of each hospital or each attending physician. Thus, we used propensity scoring to handle the nonrandomization. Second, this study used sub-group analysis, which might have accidentally generated both false-positive and false-negative results. Finally, this article focused only on patients with sepsis among various underlying diseases of DIC. The original JAAM DIC criteria have been reported to be useful in a variety of underlying diseases. 25 26 27 28 Further validation studies of these novel JAAM-2 DIC criteria targeting other underlying diseases such as trauma, postcardiac arrest, and pancreatitis should be conducted in the future. + +## Tables + +Table 1 Underlying diseases targeted by the JAAM-2 DIC criteria + +| 1. Sepsis/severe infection (any microorganism) | 1. Sepsis/severe infection (any microorganism) | +|-----------------------------------------------------------------------------------|-----------------------------------------------------------------------------------| +| 2. Trauma/burn/surgery | 2. Trauma/burn/surgery | +| 3. Vascular abnormalities | 3. Vascular abnormalities | +| | Large vascular aneurysms | +| | Giant hemangioma | +| | Vasculitis | +| 4. Severe toxic or immunological reactions | 4. Severe toxic or immunological reactions | +| | Snakebite | +| | Recreational drugs | +| | Transfusion reactions | +| | Transplant rejection | +| 5. Malignancy (except bone marrow suppression) | 5. Malignancy (except bone marrow suppression) | +| 6. Obstetric calamities | 6. Obstetric calamities | +| 7. Conditions that may be associated with systemic inflammatory response syndrome | 7. Conditions that may be associated with systemic inflammatory response syndrome | +| | Organ destruction (e.g., severe pancreatitis) | +| | Severe hepatic failure | +| | Ischemia/hypoxia/shock | +| | Heat stroke/malignant syndrome | +| | Fat embolism | +| | Rhabdomyolysis | +| | Others | +| 8. Others | 8. Others | + +Table 3 Baseline characteristics of included sepsis patients in the three datasets + +| Characteristics | J-septic DIC dataset ( n  = 2,154) | FORECAST dataset ( n  = 817) | SPICE dataset ( n  = 608) | +|--------------------------------------------|--------------------------------------------|--------------------------------------------|--------------------------------------------| +| Age in years | 72 (62–80) | 72 (63–82) | 72 (60–82) | +| Male sex | 1,270 (59%) | 496 (61%) | 350 (58%) | +| Illness severity | Illness severity | Illness severity | Illness severity | +| SIRS score | 3 (2–4) | 3 (2–4) | 3 (2–3) | +| SOFA score | 9 (7–12) | 9 (6–11) | 7 (4.5–10) | +| APACHE II score | 22 (17–28) | 22 (17–29) | 20 (14–27) | +| ISTH overt-DIC score | 4 (2–5) | 3 (2–4) | 2 (0–3) | +| JAAM DIC score | 4 (3–6) | 4 (2–5) | 3 (2–5) | +| Source of ICU admission | Source of ICU admission | Source of ICU admission | Source of ICU admission | +| Emergency department | 1,018 (47%) | 465 (57%) | 350 (58%) | +| Ward | 515 (24%) | 352 (43%) | 258 (42%) | +| Other hospital | 621 (29%) | 352 (43%) | 258 (42%) | +| Pre-existing condition | Pre-existing condition | Pre-existing condition | Pre-existing condition | +| Liver insufficiency | 16 (1%) | 26 (3%) | 26 (4%) | +| Chronic heart failure | 116 (5%) | 104 (13%) | 57 (9%) | +| Chronic respiratory disorder | 85 (4%) | 58 (7%) | 52 (9%) | +| Chronic hemodialysis | 167 (8%) | 52 (6%) | 52 (9%) | +| Immunocompromised | 228 (11%) | 96 (12%) | 38 (6%) | +| New organ dysfunction (SOFA subscores ≥ 2) | New organ dysfunction (SOFA subscores ≥ 2) | New organ dysfunction (SOFA subscores ≥ 2) | New organ dysfunction (SOFA subscores ≥ 2) | +| Respiratory | 1,489 (69%) | 575 (70%) | 370 (61%) | +| Cardiovascular | 1,416 (66%) | 461 (56%) | 254 (42%) | +| Renal | 1,071 (50%) | 413 (51%) | 268 (44%) | +| Hepatic | 383 (18%) | 127 (16%) | 84 (14%) | +| Coagulation | 816 (38%) | 233 (29%) | 127 (21%) | +| Primary source of infection | Primary source of infection | Primary source of infection | Primary source of infection | +| Abdomen | 696 (32%) | 212 (26%) | 120 (20%) | +| Lung | 556 (26%) | 259 (32%) | 203 (33%) | +| Urinary tract | 385 (18%) | 159 (19%) | 102 (17%) | +| Bone/soft tissue | 250 (12%) | 111 (14%) | 90 (15%) | +| Central nervous system | 50 (2%) | 15 (2%) | 15 (2%) | +| Other/unknown | 217 (10%) | 61 (7%) | 78 (13%) | +| Other therapeutic interventions | Other therapeutic interventions | Other therapeutic interventions | Other therapeutic interventions | +| Immunoglobulin | 685 (32%) | 158 (19%) | | +| Low-dose steroids | 539 (25%) | 241 (30%) | | +| Renal replacement therapy | 599 (28%) | 231 (28%) | | +| PMX-DHP | 465 (22%) | 78 (10%) | | +| Surgical intervention | 906 (42%) | 145 (18%) | | + +## Figures + +Fig. 1 Patient flow for the three datasets used in this study. DIC, disseminated intravascular coagulation; JAAM, Japanese Association for Acute Medicine; ROC, receiver operating characteristic. + + + +Fig. 2 Receiver operating characteristic curves for original JAAM and modified JAAM-2 DIC criteria as predictors of in-hospital mortality. The solid line represents curves for JAAM-2, and the dotted line represents curves for original JAAM. (A) J-Septic DIC dataset, (B) FORECAST dataset, (C) SPICE dataset. DIC, disseminated intravascular coagulation; JAAM, Japanese Association for Acute Medicine. + + + +Fig. 3 Adjusted estimated survival curves according to the original JAAM and modified JAAM-2 DIC status using the J-septic DIC dataset. (A) JAAM DIC score ≤ 3, (B) JAAM DIC score ≥ 4, (C) JAAM-2 DIC score ≤ 2, and (D) JAAM-2 DIC score ≥ 3. The solid line represents patients in the anticoagulant group, and the dotted line represents patients in the control group. DIC, disseminated intravascular coagulation; JAAM, Japanese Association for Acute Medicine. + + + +Fig. 4 Adjusted estimated survival curves according to the original JAAM and modified JAAM-2 DIC status using the FORECAST dataset. (A) JAAM DIC score ≤ 3, (B) JAAM DIC score ≥ 4, (C) JAAM-2 DIC score ≤ 2, and (D) JAAM-2 DIC score ≥ 3. The solid line represents patients in the anticoagulant group, and the dotted line represents patients in the control group. DIC, disseminated intravascular coagulation; JAAM, Japanese Association for Acute Medicine. + + + +## References + +- M Levi; H Ten Cate. Disseminated intravascular coagulation. N Engl J Med (1999) +- M Hayakawa; S Saito; S Uchino. Characteristics, treatments, and outcomes of severe sepsis of 3195 ICU-treated adult patients throughout Japan during 2011-2013. J Intensive Care (2016) +- S Gando; A Shiraishi; K Yamakawa. Role of disseminated intravascular coagulation in severe sepsis. Thromb Res (2019) +- N Kobayashi; T Maekawa; M Takada; H Tanaka; H Gonmori. Criteria for diagnosis of DIC based on the analysis of clinical and laboratory findings in 345 DIC patients collected by the Research Committee on DIC in Japan. Bibl Haematol (1983) +- F B Taylor; C H Toh; W K Hoots; H Wada; M Levi. Towards definition, clinical and laboratory criteria, and a scoring system for disseminated intravascular coagulation. Thromb Haemost (2001) +- T Iba; Y Umemura; E Watanabe; T Wada; K Hayashida; S Kushimoto. Diagnosis of sepsis-induced disseminated intravascular coagulation and coagulopathy. Acute Med Surg (2019) +- K Yamakawa; J Yoshimura; T Ito; M Hayakawa; T Hamasaki; S Fujimi. External validation of the two newly proposed criteria for assessing coagulopathy in sepsis. Thromb Haemost (2019) +- S Gando; T Iba; Y Eguchi. A multicenter, prospective validation of disseminated intravascular coagulation diagnostic criteria for critically ill patients: comparing current criteria. Crit Care Med (2006) +- S Gando; D Saitoh; H Ogura. Natural history of disseminated intravascular coagulation diagnosed based on the newly established diagnostic criteria for critically ill patients: results of a multicenter, prospective survey. Crit Care Med (2008) +- H Ogura; S Gando; T Iba. SIRS-associated coagulopathy and organ dysfunction in critically ill patients with thrombocytopenia. Shock (2007) +- . American College of Chest Physicians/Society of Critical Care Medicine Consensus Conference: definitions for sepsis and organ failure and guidelines for the use of innovative therapies in sepsis. Crit Care Med (1992) +- K M Kaukonen; M Bailey; D Pilcher; D J Cooper; R Bellomo. Systemic inflammatory response syndrome criteria in defining severe sepsis. N Engl J Med (2015) +- M Singer; C S Deutschman; C W Seymour. The Third International Consensus Definitions for Sepsis and Septic Shock (Sepsis-3). JAMA (2016) +- T Abe; H Ogura; A Shiraishi. Characteristics, management, and in-hospital mortality among patients with severe sepsis in intensive care units in Japan: the FORECAST study. Crit Care (2018) +- T Abe; K Yamakawa; H Ogura. Epidemiology of sepsis and septic shock in intensive care units between sepsis-2 and sepsis-3 populations: sepsis prognostication in intensive care unit and emergency room (SPICE-ICU). J Intensive Care (2020) +- R C Bone; R A Balk; F B Cerra. Definitions for sepsis and organ failure and guidelines for the use of innovative therapies in sepsis. Chest (1992) +- J L Vincent; R Moreno; J Takala. The SOFA (Sepsis-related Organ Failure Assessment) score to describe organ dysfunction/failure. On behalf of the Working Group on Sepsis-Related Problems of the European Society of Intensive Care Medicine. Intensive Care Med (1996) +- M Levi; C H Toh; J Thachil; H G Watson. Guidelines for the diagnosis and management of disseminated intravascular coagulation. Br J Haematol (2009) +- H Wada; H Asakura; K Okamoto. Expert consensus for the treatment of disseminated intravascular coagulation in Japan. Thromb Res (2010) +- M Di Nisio; F Baudo; B Cosmi. Diagnosis and treatment of disseminated intravascular coagulation: guidelines of the Italian Society for Haemostasis and Thrombosis (SISET). Thromb Res (2012) +- H Wada; J Thachil; M Di Nisio. Guidance for diagnosis and treatment of DIC from harmonization of the recommendations from three guidelines. J Thromb Haemost (2013) +- Y Umemura; K Yamakawa; T Kiguchi. Design and evaluation of new unified criteria for disseminated intravascular coagulation based on the Japanese Association for Acute Medicine Criteria. Clin Appl Thromb Hemost (2016) +- T Iba; M Di Nisio; J Thachil. Revision of the Japanese Association for Acute Medicine (JAAM) disseminated intravascular coagulation (DIC) diagnostic criteria using antithrombin activity. Crit Care (2016) +- T Iba; M D Nisio; J H Levy; N Kitamura; J Thachil. New criteria for sepsis-induced coagulopathy (SIC) following the revised sepsis definition: a retrospective analysis of a nationwide survey. BMJ Open (2017) +- S Kushimoto; S Gando; D Saitoh. Clinical course and outcome of disseminated intravascular coagulation diagnosed by Japanese Association for Acute Medicine criteria. Comparison between sepsis and trauma. Thromb Haemost (2008) +- A Sawamura; M Hayakawa; S Gando. Application of the Japanese Association for Acute Medicine disseminated intravascular coagulation diagnostic criteria for patients at an early phase of trauma. Thromb Res (2009) +- K Iwai; S Uchino; A Endo; K Saito; Y Kase; M Takinami. Prospective external validation of the new scoring system for disseminated intravascular coagulation by Japanese Association for Acute Medicine (JAAM). Thromb Res (2010) +- T Takemitsu; H Wada; T Hatada. Prospective evaluation of three different diagnostic criteria for disseminated intravascular coagulation. Thromb Haemost (2011) \ No newline at end of file diff --git a/tests/data/groundtruth/docling_v2/10-1055-s-0044-1786809.nxml.itxt b/tests/data/groundtruth/docling_v2/10-1055-s-0044-1786809.nxml.itxt new file mode 100644 index 00000000..b0fd0e76 --- /dev/null +++ b/tests/data/groundtruth/docling_v2/10-1055-s-0044-1786809.nxml.itxt @@ -0,0 +1,77 @@ +item-0 at level 0: unspecified: group _root_ + item-1 at level 1: title: Exploring Causal Relationships b ... erans: A Mendelian Randomization Study + item-2 at level 1: paragraph: Bihui Zhang; Department of Inter ... versity First Hospital, Beijing, China + item-3 at level 1: text: Background Thromboangiitis oblit ... ective therapeutic strategies for TAO. + item-4 at level 1: section_header: Introduction + item-5 at level 2: text: Thromboangiitis obliterans (TAO) ... d 74%, and 19 and 66%, respectively. 4 + item-6 at level 2: text: An immune-mediated response is i ... ew diagnostic and therapeutic avenues. + item-7 at level 2: text: Mendelian randomization (MR) is ... levels on the risk of developing TAO. + item-8 at level 1: section_header: Study Design + item-9 at level 2: text: The current research represents ... numbers GCST90274758 to GCST90274848). + item-10 at level 2: text: Flowchart of the study is shown ... ), and ICD-10 (I73.1) classifications. + item-11 at level 1: section_header: Instrumental Variable Selection + item-12 at level 2: text: We employed comprehensive GWAS s ... (available in the online version). 14 + item-13 at level 1: section_header: Statistical Analysis + item-14 at level 2: text: The random-effects inverse varia ... overlap with the FinnGen database. 20 + item-15 at level 2: text: Heterogeneity among individual S ... packages in R software version 4.3.2. + item-16 at level 1: section_header: Selection of Instrumental Variables + item-17 at level 2: text: The association between 91 circu ... SNPs, and stem cell factor to 36 SNPs. + item-18 at level 1: section_header: The Causal Role of Inflammation-Related Proteins in TAO + item-19 at level 2: text: Elevated genetically predicted C ... 9) suggested an increased risk of TAO. + item-20 at level 1: section_header: Sensitivity Analysis + item-21 at level 2: text: MR–Egger regression intercepts w ... al relationships, as shown in Fig. 5 . + item-22 at level 1: section_header: MVMR Analysis + item-23 at level 2: text: Fig. 6 reveals that, even after ... stem cell factor ( p  = 0.159) on TAO. + item-24 at level 1: section_header: Discussion + item-25 at level 2: text: C–C motif chemokines, a subfamil ... a biomarker and a therapeutic target. + item-26 at level 2: text: CCL23, also known as myeloid pro ... r investigation into its precise role. + item-27 at level 2: text: GDNF was first discovered as a p ... athways, akin to its action in IBD. 34 + item-28 at level 1: section_header: Figures + item-30 at level 1: picture + item-30 at level 2: caption: Fig. 1 The flowchart of the study. The whole workflow of MR analysis. GWAS, genome-wide association study; TAO, thromboangiitis obliterans; SNP, single nucleotide polymorphism; MR, Mendelian randomization. + item-32 at level 1: picture + item-32 at level 2: caption: Fig. 2 Causal relationship between circulating inflammatory proteins and TAO. TAO, thromboangiitis obliterans. + item-34 at level 1: picture + item-34 at level 2: caption: Fig. 3 Scatter plots for the causal association between circulating inflammatory proteins and TAO. TAO, thromboangiitis obliterans. + item-36 at level 1: picture + item-36 at level 2: caption: Fig. 4 Funnel plots of circulating inflammatory proteins. + item-38 at level 1: picture + item-38 at level 2: caption: Fig. 5 Leave-one-out plots for the causal association between circulating inflammatory proteins and TAO. TAO, thromboangiitis obliterans. + item-40 at level 1: picture + item-40 at level 2: caption: Fig. 6 Results from multivariable Mendelian randomization analysis on the impact of circulating inflammatory proteins on TAO, after adjusting for genetically predicted smoking. IVW, inverse variance weighting; TAO, thromboangiitis obliterans. + item-41 at level 1: section_header: References + item-42 at level 1: list: group list + item-43 at level 2: list_item: J W Olin. Thromboangiitis oblite ... uerger's disease). N Engl J Med (2000) + item-44 at level 2: list_item: X L Sun; B Y Law; I R de Seabra ... othelial cells. Atherosclerosis (2017) + item-45 at level 2: list_item: J W Olin. Thromboangiitis oblite ... progress made. J Am Heart Assoc (2018) + item-46 at level 2: list_item: A Le Joncour; S Soudet; A Dupont ... 224 patients. J Am Heart Assoc (2018) + item-47 at level 2: list_item: S S Ketha; L T Cooper. The role ... er's disease). Ann N Y Acad Sci (2013) + item-48 at level 2: list_item: M Kobayashi; M Ito; A Nakagawa; ... eritis obliterans). J Vasc Surg (1999) + item-49 at level 2: list_item: R Dellalibera-Joviliano; E E Jov ... rans patients. Clin Exp Immunol (2012) + item-50 at level 2: list_item: G Davey Smith; G Hemani. Mendeli ... ological studies. Hum Mol Genet (2014) + item-51 at level 2: list_item: C A Emdin; A V Khera; S Kathiresan. Mendelian randomization. JAMA (2017) + item-52 at level 2: list_item: S C Larsson; A S Butterworth; S ... s and applications. Eur Heart J (2023) + item-53 at level 2: list_item: V W Skrivankova; R C Richmond; B ... xplanation and elaboration. BMJ (2021) + item-54 at level 2: list_item: J H Zhao; D Stacey; N Eriksson. ... herapeutic targets. Nat Immunol (2023) + item-55 at level 2: list_item: M I Kurki; J Karjalainen; P Palt ... ped isolated population. Nature (2023) + item-56 at level 2: list_item: M A Kamat; J A Blackshaw; R Youn ... pe associations. Bioinformatics (2019) + item-57 at level 2: list_item: S Burgess; F Dudbridge; S G Thom ... mmarized data methods. Stat Med (2016) + item-58 at level 2: list_item: O O Yavorska; S Burgess. Mendeli ... ummarized data. Int J Epidemiol (2017) + item-59 at level 2: list_item: J Bowden; G Davey Smith; S Burge ... ger regression. Int J Epidemiol (2015) + item-60 at level 2: list_item: J Bowden; G Davey Smith; P C Hay ... dian estimator. Genet Epidemiol (2016) + item-61 at level 2: list_item: M Verbanck; C Y Chen; B Neale; R ... traits and diseases. Nat Genet (2018) + item-62 at level 2: list_item: P R Loh; G Kichaev; S Gazal; A P ... obank-scale datasets. Nat Genet (2018) + item-63 at level 2: list_item: D Staiger; H James. Stock. 1997. ... eak instruments.”. Econometrica (1997) + item-64 at level 2: list_item: C E Hughes; R JB Nibbs. A guide ... nes and their receptors. FEBS J (2018) + item-65 at level 2: list_item: T T Chang; J W Chen. Emerging ro ... s or foes?. Cardiovasc Diabetol (2016) + item-66 at level 2: list_item: S G Irving; P F Zipfel; J Balke. ... romosome 17q. Nucleic Acids Res (1990) + item-67 at level 2: list_item: W Lim; H Bae; F W Bazer; G Song. ... ernal-fetal interface. Dev Biol (2018) + item-68 at level 2: list_item: C H Shih; S F van Eeden; Y Goto; ... om the bone marrow. Exp Hematol (2005) + item-69 at level 2: list_item: D Karan. CCL23 in balancing the ... cellular carcinoma. Front Oncol (2021) + item-70 at level 2: list_item: A Simats; T García-Berrocoso; A ... uman brain damage. J Intern Med (2018) + item-71 at level 2: list_item: M Brink; E Berglin; A J Mohammad ... sculitides. Arthritis Rheumatol (2023) + item-72 at level 2: list_item: C S Kim; J H Kang; H R Cho. Pote ... ase from monocytes. Inflamm Res (2011) + item-73 at level 2: list_item: M Saarma; H Sariola. Other neuro ... factor (GDNF). Microsc Res Tech (1999) + item-74 at level 2: list_item: Z Zhang; G Y Sun; S Ding. Glial ... ischemic stroke. Neurochem Res (2021) + item-75 at level 2: list_item: H Chen; T Han; L Gao; D Zhang. T ... ease. J Interferon Cytokine Res (2022) + item-76 at level 2: list_item: M Meir; S Flemming; N Burkard; J ... siol Gastrointest Liver Physiol (2016) \ No newline at end of file diff --git a/tests/data/groundtruth/docling_v2/10-1055-s-0044-1786809.nxml.json b/tests/data/groundtruth/docling_v2/10-1055-s-0044-1786809.nxml.json new file mode 100644 index 00000000..0aec8383 --- /dev/null +++ b/tests/data/groundtruth/docling_v2/10-1055-s-0044-1786809.nxml.json @@ -0,0 +1,1219 @@ +{ + "schema_name": "DoclingDocument", + "version": "1.0.0", + "name": "10-1055-s-0044-1786809", + "origin": { + "mimetype": "text/xml", + "binary_hash": 11369943838295364093, + "filename": "10-1055-s-0044-1786809.nxml" + }, + "furniture": { + "self_ref": "#/furniture", + "children": [], + "name": "_root_", + "label": "unspecified" + }, + "body": { + "self_ref": "#/body", + "children": [ + { + "$ref": "#/texts/0" + }, + { + "$ref": "#/texts/1" + }, + { + "$ref": "#/texts/2" + }, + { + "$ref": "#/texts/3" + }, + { + "$ref": "#/texts/7" + }, + { + "$ref": "#/texts/10" + }, + { + "$ref": "#/texts/12" + }, + { + "$ref": "#/texts/15" + }, + { + "$ref": "#/texts/17" + }, + { + "$ref": "#/texts/19" + }, + { + "$ref": "#/texts/21" + }, + { + "$ref": "#/texts/23" + }, + { + "$ref": "#/texts/27" + }, + { + "$ref": "#/texts/28" + }, + { + "$ref": "#/pictures/0" + }, + { + "$ref": "#/texts/29" + }, + { + "$ref": "#/pictures/1" + }, + { + "$ref": "#/texts/30" + }, + { + "$ref": "#/pictures/2" + }, + { + "$ref": "#/texts/31" + }, + { + "$ref": "#/pictures/3" + }, + { + "$ref": "#/texts/32" + }, + { + "$ref": "#/pictures/4" + }, + { + "$ref": "#/texts/33" + }, + { + "$ref": "#/pictures/5" + }, + { + "$ref": "#/texts/34" + }, + { + "$ref": "#/groups/0" + } + ], + "name": "_root_", + "label": "unspecified" + }, + "groups": [ + { + "self_ref": "#/groups/0", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/35" + }, + { + "$ref": "#/texts/36" + }, + { + "$ref": "#/texts/37" + }, + { + "$ref": "#/texts/38" + }, + { + "$ref": "#/texts/39" + }, + { + "$ref": "#/texts/40" + }, + { + "$ref": "#/texts/41" + }, + { + "$ref": "#/texts/42" + }, + { + "$ref": "#/texts/43" + }, + { + "$ref": "#/texts/44" + }, + { + "$ref": "#/texts/45" + }, + { + "$ref": "#/texts/46" + }, + { + "$ref": "#/texts/47" + }, + { + "$ref": "#/texts/48" + }, + { + "$ref": "#/texts/49" + }, + { + "$ref": "#/texts/50" + }, + { + "$ref": "#/texts/51" + }, + { + "$ref": "#/texts/52" + }, + { + "$ref": "#/texts/53" + }, + { + "$ref": "#/texts/54" + }, + { + "$ref": "#/texts/55" + }, + { + "$ref": "#/texts/56" + }, + { + "$ref": "#/texts/57" + }, + { + "$ref": "#/texts/58" + }, + { + "$ref": "#/texts/59" + }, + { + "$ref": "#/texts/60" + }, + { + "$ref": "#/texts/61" + }, + { + "$ref": "#/texts/62" + }, + { + "$ref": "#/texts/63" + }, + { + "$ref": "#/texts/64" + }, + { + "$ref": "#/texts/65" + }, + { + "$ref": "#/texts/66" + }, + { + "$ref": "#/texts/67" + }, + { + "$ref": "#/texts/68" + } + ], + "name": "list", + "label": "list" + } + ], + "texts": [ + { + "self_ref": "#/texts/0", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "title", + "prov": [], + "orig": "Exploring Causal Relationships between Circulating Inflammatory Proteins and Thromboangiitis Obliterans: A Mendelian Randomization Study", + "text": "Exploring Causal Relationships between Circulating Inflammatory Proteins and Thromboangiitis Obliterans: A Mendelian Randomization Study" + }, + { + "self_ref": "#/texts/1", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "paragraph", + "prov": [], + "orig": "Bihui Zhang; Department of Interventional Radiology and Vascular Surgery, Peking University First Hospital, Beijing, China; Rui He; Department of Plastic Surgery and Burn, Peking University First Hospital, Beijing, China; Ziping Yao; Department of Interventional Radiology and Vascular Surgery, Peking University First Hospital, Beijing, China; Pengyu Li; Department of Interventional Radiology and Vascular Surgery, Peking University First Hospital, Beijing, China; Guochen Niu; Department of Interventional Radiology and Vascular Surgery, Peking University First Hospital, Beijing, China; Ziguang Yan; Department of Interventional Radiology and Vascular Surgery, Peking University First Hospital, Beijing, China; Yinghua Zou; Department of Interventional Radiology and Vascular Surgery, Peking University First Hospital, Beijing, China; Xiaoqiang Tong; Department of Interventional Radiology and Vascular Surgery, Peking University First Hospital, Beijing, China; Min Yang; Department of Interventional Radiology and Vascular Surgery, Peking University First Hospital, Beijing, China", + "text": "Bihui Zhang; Department of Interventional Radiology and Vascular Surgery, Peking University First Hospital, Beijing, China; Rui He; Department of Plastic Surgery and Burn, Peking University First Hospital, Beijing, China; Ziping Yao; Department of Interventional Radiology and Vascular Surgery, Peking University First Hospital, Beijing, China; Pengyu Li; Department of Interventional Radiology and Vascular Surgery, Peking University First Hospital, Beijing, China; Guochen Niu; Department of Interventional Radiology and Vascular Surgery, Peking University First Hospital, Beijing, China; Ziguang Yan; Department of Interventional Radiology and Vascular Surgery, Peking University First Hospital, Beijing, China; Yinghua Zou; Department of Interventional Radiology and Vascular Surgery, Peking University First Hospital, Beijing, China; Xiaoqiang Tong; Department of Interventional Radiology and Vascular Surgery, Peking University First Hospital, Beijing, China; Min Yang; Department of Interventional Radiology and Vascular Surgery, Peking University First Hospital, Beijing, China" + }, + { + "self_ref": "#/texts/2", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "Background Thromboangiitis obliterans (TAO) is a vascular condition characterized by poor prognosis and an unclear etiology. This study employs Mendelian randomization (MR) to investigate the causal impact of circulating inflammatory proteins on TAO. Methods In this MR analysis, summary statistics from a genome-wide association study meta-analysis of 91 inflammation-related proteins were integrated with independently sourced TAO data from the FinnGen consortium's R10 release. Methods such as inverse variance weighting, MR\u2013Egger regression, weighted median approaches, MR-PRESSO, and multivariable MR (MVMR) analysis were utilized. Results The analysis indicated an association between higher levels of C\u2013C motif chemokine 4 and a reduced risk of TAO, with an odds ratio (OR) of 0.44 (95% confidence interval [CI]: 0.29\u20130.67; p =\u20091.4\u2009\u00d7\u200910 \u22124 ; adjusted p =\u20090.013). Similarly, glial cell line-derived neurotrophic factor exhibited a suggestively protective effect against TAO (OR: 0.43, 95% CI: 0.22\u20130.81; p =\u20090.010; adjusted p =\u20090.218). Conversely, higher levels of C\u2013C motif chemokine 23 were suggestively linked to an increased risk of TAO (OR: 1.88, 95% CI: 1.21\u20132.93; p =\u20090.005; adjusted p =\u20090.218). The sensitivity analysis and MVMR revealed no evidence of heterogeneity or pleiotropy. Conclusion This study identifies C\u2013C motif chemokine 4 and glial cell line-derived neurotrophic factor as potential protective biomarkers for TAO, whereas C\u2013C motif chemokine 23 emerges as a suggestive risk marker. These findings elucidate potential causal relationships and highlight the significance of these proteins in the pathogenesis and prospective therapeutic strategies for TAO.", + "text": "Background Thromboangiitis obliterans (TAO) is a vascular condition characterized by poor prognosis and an unclear etiology. This study employs Mendelian randomization (MR) to investigate the causal impact of circulating inflammatory proteins on TAO. Methods In this MR analysis, summary statistics from a genome-wide association study meta-analysis of 91 inflammation-related proteins were integrated with independently sourced TAO data from the FinnGen consortium's R10 release. Methods such as inverse variance weighting, MR\u2013Egger regression, weighted median approaches, MR-PRESSO, and multivariable MR (MVMR) analysis were utilized. Results The analysis indicated an association between higher levels of C\u2013C motif chemokine 4 and a reduced risk of TAO, with an odds ratio (OR) of 0.44 (95% confidence interval [CI]: 0.29\u20130.67; p =\u20091.4\u2009\u00d7\u200910 \u22124 ; adjusted p =\u20090.013). Similarly, glial cell line-derived neurotrophic factor exhibited a suggestively protective effect against TAO (OR: 0.43, 95% CI: 0.22\u20130.81; p =\u20090.010; adjusted p =\u20090.218). Conversely, higher levels of C\u2013C motif chemokine 23 were suggestively linked to an increased risk of TAO (OR: 1.88, 95% CI: 1.21\u20132.93; p =\u20090.005; adjusted p =\u20090.218). The sensitivity analysis and MVMR revealed no evidence of heterogeneity or pleiotropy. Conclusion This study identifies C\u2013C motif chemokine 4 and glial cell line-derived neurotrophic factor as potential protective biomarkers for TAO, whereas C\u2013C motif chemokine 23 emerges as a suggestive risk marker. These findings elucidate potential causal relationships and highlight the significance of these proteins in the pathogenesis and prospective therapeutic strategies for TAO." + }, + { + "self_ref": "#/texts/3", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/4" + }, + { + "$ref": "#/texts/5" + }, + { + "$ref": "#/texts/6" + } + ], + "label": "section_header", + "prov": [], + "orig": "Introduction", + "text": "Introduction", + "level": 1 + }, + { + "self_ref": "#/texts/4", + "parent": { + "$ref": "#/texts/3" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "Thromboangiitis obliterans (TAO), commonly referred to as Buerger's disease, is a distinct nonatherosclerotic, segmental inflammatory disorder that predominantly affects small- and medium-sized arteries and veins in both the upper and lower extremities. 1 TAO, with an annual incidence of 12.6 per 100,000 in the United States, is observed worldwide but is more prevalent in the Middle East and Far East. 1 The disease typically presents in patients <45 years of age. Despite over a century of recognition, advancements in comprehending its etiology, pathophysiology, and optimal treatment strategies have been limited. 2 3 Vascular event-free survival and amputation-free survival rates at 5, 10, and 15 years are reported at 41 and 85%, 23 and 74%, and 19 and 66%, respectively. 4", + "text": "Thromboangiitis obliterans (TAO), commonly referred to as Buerger's disease, is a distinct nonatherosclerotic, segmental inflammatory disorder that predominantly affects small- and medium-sized arteries and veins in both the upper and lower extremities. 1 TAO, with an annual incidence of 12.6 per 100,000 in the United States, is observed worldwide but is more prevalent in the Middle East and Far East. 1 The disease typically presents in patients <45 years of age. Despite over a century of recognition, advancements in comprehending its etiology, pathophysiology, and optimal treatment strategies have been limited. 2 3 Vascular event-free survival and amputation-free survival rates at 5, 10, and 15 years are reported at 41 and 85%, 23 and 74%, and 19 and 66%, respectively. 4" + }, + { + "self_ref": "#/texts/5", + "parent": { + "$ref": "#/texts/3" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "An immune-mediated response is implicated in TAO pathogenesis. 5 Recent studies have identified a balanced presence of CD4+ and CD8+ T cells near the internal lamina. Additionally, macrophages and S100+ dendritic cells are present in thrombi and intimal layers. 5 6 Elevated levels of diverse cytokines in TAO patients highlight the critical importance of inflammatory and autoimmune mechanisms. 2 7 Nonetheless, the clinical significance of these cytokines is yet to be fully understood, due to the scarcity of comprehensive experimental and clinical studies. Investigating circulating inflammatory proteins could shed light on the biological underpinnings of TAO, offering new diagnostic and therapeutic avenues.", + "text": "An immune-mediated response is implicated in TAO pathogenesis. 5 Recent studies have identified a balanced presence of CD4+ and CD8+ T cells near the internal lamina. Additionally, macrophages and S100+ dendritic cells are present in thrombi and intimal layers. 5 6 Elevated levels of diverse cytokines in TAO patients highlight the critical importance of inflammatory and autoimmune mechanisms. 2 7 Nonetheless, the clinical significance of these cytokines is yet to be fully understood, due to the scarcity of comprehensive experimental and clinical studies. Investigating circulating inflammatory proteins could shed light on the biological underpinnings of TAO, offering new diagnostic and therapeutic avenues." + }, + { + "self_ref": "#/texts/6", + "parent": { + "$ref": "#/texts/3" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "Mendelian randomization (MR) is an approach that leverages genetic variants associated with specific exposures to infer causal relationships between risk factors and disease outcomes. 8 This method, which relies on the random distribution of genetic variants during meiosis, helps minimize confounding factors and biases inherent in environmental or behavioral influences. 9 It is particularly useful in addressing limitations of conventional observational studies and randomized controlled trials, especially for rare diseases like TAO. 10 For a robust MR analysis, three critical assumptions must be met: the genetic variants should be strongly associated with the risk factor, not linked to confounding variables, and affect the outcome solely through the risk factor, excluding any direct causal pathways. 10 In the present study, a MR was employed to evaluate the impact of genetically proxied inflammatory protein levels on the risk of developing TAO.", + "text": "Mendelian randomization (MR) is an approach that leverages genetic variants associated with specific exposures to infer causal relationships between risk factors and disease outcomes. 8 This method, which relies on the random distribution of genetic variants during meiosis, helps minimize confounding factors and biases inherent in environmental or behavioral influences. 9 It is particularly useful in addressing limitations of conventional observational studies and randomized controlled trials, especially for rare diseases like TAO. 10 For a robust MR analysis, three critical assumptions must be met: the genetic variants should be strongly associated with the risk factor, not linked to confounding variables, and affect the outcome solely through the risk factor, excluding any direct causal pathways. 10 In the present study, a MR was employed to evaluate the impact of genetically proxied inflammatory protein levels on the risk of developing TAO." + }, + { + "self_ref": "#/texts/7", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/8" + }, + { + "$ref": "#/texts/9" + } + ], + "label": "section_header", + "prov": [], + "orig": "Study Design", + "text": "Study Design", + "level": 1 + }, + { + "self_ref": "#/texts/8", + "parent": { + "$ref": "#/texts/7" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "The current research represents a MR analysis conducted in accordance with STROBE-MR guidelines. 11 Genetic variants associated with circulating inflammatory proteins were identified from a comprehensive genome-wide meta-analysis, which analyzed 91 plasma proteins in a sample of 14,824 individuals of European descent, spanning 11 distinct cohorts. 12 This study utilized the Olink Target-96 Inflammation immunoassay panel to focus on 92 inflammation-related proteins. However, due to assay issues, brain-derived neurotrophic factor was subsequently removed from the panel by Olink, resulting in the inclusion of 91 proteins in the analysis. Protein quantitative trait locus (pQTL) mapping was employed to determine genetic impacts on these inflammation-related proteins. The data on these 91 plasma inflammatory proteins, including the pQTL findings, are accessible in the EBI GWAS Catalog (accession numbers GCST90274758 to GCST90274848).", + "text": "The current research represents a MR analysis conducted in accordance with STROBE-MR guidelines. 11 Genetic variants associated with circulating inflammatory proteins were identified from a comprehensive genome-wide meta-analysis, which analyzed 91 plasma proteins in a sample of 14,824 individuals of European descent, spanning 11 distinct cohorts. 12 This study utilized the Olink Target-96 Inflammation immunoassay panel to focus on 92 inflammation-related proteins. However, due to assay issues, brain-derived neurotrophic factor was subsequently removed from the panel by Olink, resulting in the inclusion of 91 proteins in the analysis. Protein quantitative trait locus (pQTL) mapping was employed to determine genetic impacts on these inflammation-related proteins. The data on these 91 plasma inflammatory proteins, including the pQTL findings, are accessible in the EBI GWAS Catalog (accession numbers GCST90274758 to GCST90274848)." + }, + { + "self_ref": "#/texts/9", + "parent": { + "$ref": "#/texts/7" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "Flowchart of the study is shown in Fig. 1 . Summary statistics for TAO in the genome-wide association study (GWAS) were derived from the FinnGen consortium R10 release (finngen_R10_I9_THROMBANG). Launched in 2017, the FinnGen study is a comprehensive nationwide effort combining genetic information from Finnish biobanks with digital health records from national registries. 13 The GWAS included a substantial cohort of 412,181 Finnish participants, analyzing 21,311,942 variants, with TAO cases (114) and controls (381,977) identified according to International Classification of Diseases (ICD)-8 (44310), ICD-9 (4431A), and ICD-10 (I73.1) classifications.", + "text": "Flowchart of the study is shown in Fig. 1 . Summary statistics for TAO in the genome-wide association study (GWAS) were derived from the FinnGen consortium R10 release (finngen_R10_I9_THROMBANG). Launched in 2017, the FinnGen study is a comprehensive nationwide effort combining genetic information from Finnish biobanks with digital health records from national registries. 13 The GWAS included a substantial cohort of 412,181 Finnish participants, analyzing 21,311,942 variants, with TAO cases (114) and controls (381,977) identified according to International Classification of Diseases (ICD)-8 (44310), ICD-9 (4431A), and ICD-10 (I73.1) classifications." + }, + { + "self_ref": "#/texts/10", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/11" + } + ], + "label": "section_header", + "prov": [], + "orig": "Instrumental Variable Selection", + "text": "Instrumental Variable Selection", + "level": 1 + }, + { + "self_ref": "#/texts/11", + "parent": { + "$ref": "#/texts/10" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "We employed comprehensive GWAS summary statistics for 91 inflammation-related proteins to select genetic instruments. The criteria for eligibility included: (1) single nucleotide polymorphisms (SNPs) must exhibit a genome-wide significant association with each protein ( p \u2009<\u20095.0\u2009\u00d7\u200910 \u22126 ); (2) SNPs should be independently associated with the exposure, meaning they must not be in linkage disequilibrium (defined as r 2 \u2009<\u20090.01, distance\u2009>\u200910,000\u2009kb) with other SNPs for the same exposure; (3) the chosen genetic instruments must account for at least 0.1% of the exposure variance, ensuring sufficient strength for the genetic instrumental variables (IVs) to assess a causal effect. For each exposure, we harmonized IVs to ensure compatibility and consistency between different data sources and variables. Since smoking is a well-accepted risk factor for TAO, SNPs that were associated with smoking or thrombo-associated events were deleted for MR due to the PhenoScanner V2 database (http://www.phenoscanner.medschl.cam.ac.uk/), details are shown in Supplementary Table S1 (available in the online version). 14", + "text": "We employed comprehensive GWAS summary statistics for 91 inflammation-related proteins to select genetic instruments. The criteria for eligibility included: (1) single nucleotide polymorphisms (SNPs) must exhibit a genome-wide significant association with each protein ( p \u2009<\u20095.0\u2009\u00d7\u200910 \u22126 ); (2) SNPs should be independently associated with the exposure, meaning they must not be in linkage disequilibrium (defined as r 2 \u2009<\u20090.01, distance\u2009>\u200910,000\u2009kb) with other SNPs for the same exposure; (3) the chosen genetic instruments must account for at least 0.1% of the exposure variance, ensuring sufficient strength for the genetic instrumental variables (IVs) to assess a causal effect. For each exposure, we harmonized IVs to ensure compatibility and consistency between different data sources and variables. Since smoking is a well-accepted risk factor for TAO, SNPs that were associated with smoking or thrombo-associated events were deleted for MR due to the PhenoScanner V2 database (http://www.phenoscanner.medschl.cam.ac.uk/), details are shown in Supplementary Table S1 (available in the online version). 14" + }, + { + "self_ref": "#/texts/12", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/13" + }, + { + "$ref": "#/texts/14" + } + ], + "label": "section_header", + "prov": [], + "orig": "Statistical Analysis", + "text": "Statistical Analysis", + "level": 1 + }, + { + "self_ref": "#/texts/13", + "parent": { + "$ref": "#/texts/12" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "The random-effects inverse variance weighted (IVW) method was used as the primary MR method to estimate the causal relationships between circulating inflammatory proteins and TAO. The IVW method offers a consistent estimate of the causal effect of exposure on the outcome, under the assumption that each genetic variant meets the IV criteria. 15 16 For sensitivity analysis, multiple methods, including MR\u2013Egger regression, MR pleiotropy Residual Sum and Outlier (MR-PRESSO), and weighted median approaches, were employed in this study to examine the robustness of results. An adaptation of MR\u2013Egger regression is capable of identifying certain violations of standard IV assumptions, providing an adjusted estimate that is unaffected by these issues. This method also measures the extent of directional pleiotropy and serves as a robustness check. 17 The weighted median is consistent even when up to 50% of the information comes from invalid IVs. 18 For SNPs numbering more than three, MRPRESSO was employed to identify and adjust for horizontal pleiotropy. This method can pinpoint horizontal pleiotropic outliers among SNPs and deliver results matching those from IVW when outliers are absent. 19 Leave-one-out analysis was conducted to determine if significant findings were driven by a single SNP. To mitigate potential pleiotropic effects attributable to smoking, a multivariable MR (MVMR) analysis incorporating adjustments for genetically predicted smoking behaviors was conducted. The GWAS data pertaining to smoking were sourced from the EBI GWAS Catalog (GCST90029014), ensuring no sample overlap with the FinnGen database. 20", + "text": "The random-effects inverse variance weighted (IVW) method was used as the primary MR method to estimate the causal relationships between circulating inflammatory proteins and TAO. The IVW method offers a consistent estimate of the causal effect of exposure on the outcome, under the assumption that each genetic variant meets the IV criteria. 15 16 For sensitivity analysis, multiple methods, including MR\u2013Egger regression, MR pleiotropy Residual Sum and Outlier (MR-PRESSO), and weighted median approaches, were employed in this study to examine the robustness of results. An adaptation of MR\u2013Egger regression is capable of identifying certain violations of standard IV assumptions, providing an adjusted estimate that is unaffected by these issues. This method also measures the extent of directional pleiotropy and serves as a robustness check. 17 The weighted median is consistent even when up to 50% of the information comes from invalid IVs. 18 For SNPs numbering more than three, MRPRESSO was employed to identify and adjust for horizontal pleiotropy. This method can pinpoint horizontal pleiotropic outliers among SNPs and deliver results matching those from IVW when outliers are absent. 19 Leave-one-out analysis was conducted to determine if significant findings were driven by a single SNP. To mitigate potential pleiotropic effects attributable to smoking, a multivariable MR (MVMR) analysis incorporating adjustments for genetically predicted smoking behaviors was conducted. The GWAS data pertaining to smoking were sourced from the EBI GWAS Catalog (GCST90029014), ensuring no sample overlap with the FinnGen database. 20" + }, + { + "self_ref": "#/texts/14", + "parent": { + "$ref": "#/texts/12" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "Heterogeneity among individual SNP-based estimates was assessed using Cochran's Q value. In instances with only one SNP for the exposure, the Wald ratio method was applied, dividing the SNP\u2013outcome association estimate by the SNP\u2013exposure association estimate to determine the causal link. The F-statistic was estimated to evaluate the strength of each instrument, with an F-statistic greater than 10 indicating a sufficiently strong instrument. 21 False discovery rate (FDR) correction was conducted by the Benjamini\u2013Hochberg method, with a FDR of adjusted p \u2009<\u20090.1. A suggestive association was considered when p \u2009<\u20090.05 but adjusted p \u2265 0.1. All analyses were two-sided and performed using the TwoSampleMR (version 0.5.8), MendelianRandomization (version 0.9.0), and MRPRESSO (version 1.0) packages in R software version 4.3.2.", + "text": "Heterogeneity among individual SNP-based estimates was assessed using Cochran's Q value. In instances with only one SNP for the exposure, the Wald ratio method was applied, dividing the SNP\u2013outcome association estimate by the SNP\u2013exposure association estimate to determine the causal link. The F-statistic was estimated to evaluate the strength of each instrument, with an F-statistic greater than 10 indicating a sufficiently strong instrument. 21 False discovery rate (FDR) correction was conducted by the Benjamini\u2013Hochberg method, with a FDR of adjusted p \u2009<\u20090.1. A suggestive association was considered when p \u2009<\u20090.05 but adjusted p \u2265 0.1. All analyses were two-sided and performed using the TwoSampleMR (version 0.5.8), MendelianRandomization (version 0.9.0), and MRPRESSO (version 1.0) packages in R software version 4.3.2." + }, + { + "self_ref": "#/texts/15", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/16" + } + ], + "label": "section_header", + "prov": [], + "orig": "Selection of Instrumental Variables", + "text": "Selection of Instrumental Variables", + "level": 1 + }, + { + "self_ref": "#/texts/16", + "parent": { + "$ref": "#/texts/15" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "The association between 91 circulating inflammatory proteins and TAO through the IVW method is detailed in Supplementary Table S2 (available in the online version). After an extensive quality control review, 173 SNPs associated with six circulating inflammation-related proteins were identified as IVs for TAO. Notably, C\u2013C motif chemokine 23 (CCL23) levels were linked to 30 SNPs, C\u2013C motif chemokine 25 to 37 SNPs, C\u2013C motif chemokine 28 to 21 SNPs, C\u2013C motif chemokine 4 (CCL4) to 27 SNPs, glial cell line-derived neurotrophic factor (GDNF) to 22 SNPs, and stem cell factor to 36 SNPs.", + "text": "The association between 91 circulating inflammatory proteins and TAO through the IVW method is detailed in Supplementary Table S2 (available in the online version). After an extensive quality control review, 173 SNPs associated with six circulating inflammation-related proteins were identified as IVs for TAO. Notably, C\u2013C motif chemokine 23 (CCL23) levels were linked to 30 SNPs, C\u2013C motif chemokine 25 to 37 SNPs, C\u2013C motif chemokine 28 to 21 SNPs, C\u2013C motif chemokine 4 (CCL4) to 27 SNPs, glial cell line-derived neurotrophic factor (GDNF) to 22 SNPs, and stem cell factor to 36 SNPs." + }, + { + "self_ref": "#/texts/17", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/18" + } + ], + "label": "section_header", + "prov": [], + "orig": "The Causal Role of Inflammation-Related Proteins in TAO", + "text": "The Causal Role of Inflammation-Related Proteins in TAO", + "level": 1 + }, + { + "self_ref": "#/texts/18", + "parent": { + "$ref": "#/texts/17" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "Elevated genetically predicted CCL4 levels were linked to a decreased TAO risk, as shown in Fig. 2 . Specifically, each unit increase in the genetically predicted level of CCL4 was associated with an odds ratio (OR) of 0.44 (95% confidence interval [CI]: 0.29\u20130.67; p \u2009=\u20091.4\u2009\u00d7\u200910 \u22124 ; adjusted p \u2009=\u20090.013) for TAO. Similarly, levels of C\u2013C motif chemokine 28 (OR: 0.33; 95% CI: 0.12\u20130.91; p \u2009=\u20090.034; adjusted p \u2009=\u20090.579), GDNF (OR: 0.43, 95% CI: 0.22\u20130.81; p \u2009=\u20090.010; adjusted p \u2009=\u20090.218), and stem cell factor (OR: 0.49, 95% CI: 0.29\u20130.84; p \u2009=\u20090.009; adjusted p \u2009=\u20090.218) also showed a suggestive inverse association with TAO, as depicted in Fig. 2 . Conversely, higher levels of genetically predicted CCL23 (OR: 1.88, 95% CI: 1.21\u20132.93; p \u2009=\u20090.005; adjusted p \u2009=\u20090.218) and C\u2013C motif chemokine 25 (OR: 1.44, 95% CI: 1.01\u20132.06; p \u2009=\u20090.046; adjusted p \u2009=\u20090.579) suggested an increased risk of TAO.", + "text": "Elevated genetically predicted CCL4 levels were linked to a decreased TAO risk, as shown in Fig. 2 . Specifically, each unit increase in the genetically predicted level of CCL4 was associated with an odds ratio (OR) of 0.44 (95% confidence interval [CI]: 0.29\u20130.67; p \u2009=\u20091.4\u2009\u00d7\u200910 \u22124 ; adjusted p \u2009=\u20090.013) for TAO. Similarly, levels of C\u2013C motif chemokine 28 (OR: 0.33; 95% CI: 0.12\u20130.91; p \u2009=\u20090.034; adjusted p \u2009=\u20090.579), GDNF (OR: 0.43, 95% CI: 0.22\u20130.81; p \u2009=\u20090.010; adjusted p \u2009=\u20090.218), and stem cell factor (OR: 0.49, 95% CI: 0.29\u20130.84; p \u2009=\u20090.009; adjusted p \u2009=\u20090.218) also showed a suggestive inverse association with TAO, as depicted in Fig. 2 . Conversely, higher levels of genetically predicted CCL23 (OR: 1.88, 95% CI: 1.21\u20132.93; p \u2009=\u20090.005; adjusted p \u2009=\u20090.218) and C\u2013C motif chemokine 25 (OR: 1.44, 95% CI: 1.01\u20132.06; p \u2009=\u20090.046; adjusted p \u2009=\u20090.579) suggested an increased risk of TAO." + }, + { + "self_ref": "#/texts/19", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/20" + } + ], + "label": "section_header", + "prov": [], + "orig": "Sensitivity Analysis", + "text": "Sensitivity Analysis", + "level": 1 + }, + { + "self_ref": "#/texts/20", + "parent": { + "$ref": "#/texts/19" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "MR\u2013Egger regression intercepts were not significantly different from zero, suggesting no horizontal pleiotropy (all intercept p \u2009>\u20090.05), as depicted in Fig. 2 . The MR-PRESSO test also found no pleiotropic outliers among these SNPs ( p \u2009>\u20090.05), further corroborating the absence of pleiotropy. Consistency with these findings was confirmed by the weighted median approach. Scatter plots illustrating the genetic associations with circulating inflammatory proteins and TAO are presented in Fig. 3 . Cochran's Q test detected no heterogeneity among the genetic IVs for the measured levels (all p \u2009>\u20090.1). Additionally, funnel plots showed no significant asymmetry, suggesting negligible publication bias and directional horizontal pleiotropy ( Fig. 4 ). The robustness of these causal estimates was further validated by a leave-one-out analysis, demonstrating that no single IV disproportionately influenced the observed causal relationships, as shown in Fig. 5 .", + "text": "MR\u2013Egger regression intercepts were not significantly different from zero, suggesting no horizontal pleiotropy (all intercept p \u2009>\u20090.05), as depicted in Fig. 2 . The MR-PRESSO test also found no pleiotropic outliers among these SNPs ( p \u2009>\u20090.05), further corroborating the absence of pleiotropy. Consistency with these findings was confirmed by the weighted median approach. Scatter plots illustrating the genetic associations with circulating inflammatory proteins and TAO are presented in Fig. 3 . Cochran's Q test detected no heterogeneity among the genetic IVs for the measured levels (all p \u2009>\u20090.1). Additionally, funnel plots showed no significant asymmetry, suggesting negligible publication bias and directional horizontal pleiotropy ( Fig. 4 ). The robustness of these causal estimates was further validated by a leave-one-out analysis, demonstrating that no single IV disproportionately influenced the observed causal relationships, as shown in Fig. 5 ." + }, + { + "self_ref": "#/texts/21", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/22" + } + ], + "label": "section_header", + "prov": [], + "orig": "MVMR Analysis", + "text": "MVMR Analysis", + "level": 1 + }, + { + "self_ref": "#/texts/22", + "parent": { + "$ref": "#/texts/21" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "Fig. 6 reveals that, even after adjusting for genetically predicted smoking, the level of CCL4 still exerts a direct protective influence against TAO (IVW: OR= 0.54, p \u2009=\u20090.009; MR\u2013Egger: p \u2009=\u20090.013, intercept p \u2009=\u20090.843). The level of CCL23 is suggestively associated with an increased risk of TAO (IVW: OR\u2009=\u20092.24, p \u2009=\u20090.011; MR\u2013Egger: p \u2009=\u20090.019, intercept p \u2009=\u20090.978). GDNF levels show a suggestively protective effect against TAO (IVW: OR\u2009=\u20090.315, p \u2009=\u20090.016; MR\u2013Egger: p \u2009=\u20090.020, intercept p \u2009=\u20090.634). However, no significant direct impacts were observed for the levels of C\u2013C motif chemokine 25 ( p \u2009=\u20090.079), C\u2013C motif chemokine 28 ( p \u2009=\u20090.179), or stem cell factor ( p \u2009=\u20090.159) on TAO.", + "text": "Fig. 6 reveals that, even after adjusting for genetically predicted smoking, the level of CCL4 still exerts a direct protective influence against TAO (IVW: OR= 0.54, p \u2009=\u20090.009; MR\u2013Egger: p \u2009=\u20090.013, intercept p \u2009=\u20090.843). The level of CCL23 is suggestively associated with an increased risk of TAO (IVW: OR\u2009=\u20092.24, p \u2009=\u20090.011; MR\u2013Egger: p \u2009=\u20090.019, intercept p \u2009=\u20090.978). GDNF levels show a suggestively protective effect against TAO (IVW: OR\u2009=\u20090.315, p \u2009=\u20090.016; MR\u2013Egger: p \u2009=\u20090.020, intercept p \u2009=\u20090.634). However, no significant direct impacts were observed for the levels of C\u2013C motif chemokine 25 ( p \u2009=\u20090.079), C\u2013C motif chemokine 28 ( p \u2009=\u20090.179), or stem cell factor ( p \u2009=\u20090.159) on TAO." + }, + { + "self_ref": "#/texts/23", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/24" + }, + { + "$ref": "#/texts/25" + }, + { + "$ref": "#/texts/26" + } + ], + "label": "section_header", + "prov": [], + "orig": "Discussion", + "text": "Discussion", + "level": 1 + }, + { + "self_ref": "#/texts/24", + "parent": { + "$ref": "#/texts/23" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "C\u2013C motif chemokines, a subfamily of small, secreted proteins, engage with G protein-coupled chemokine receptors on the cell surface, which are distinguished by directly juxtaposed cysteines. 22 Their renowned function is to orchestrate cell migration, particularly of leukocytes, playing crucial roles in both protective and destructive immune and inflammatory responses. 23 CCL4, also known as the macrophage inflammatory protein, is a significant member of the CC chemokine family. This protein, encoded by the CCL4 gene in humans, interacts with CCR5 and is identified as a pivotal human immunodeficiency virus-suppressive factor secreted by CD8+ T-cells. 24 Additionally, its involvement has been increasingly recognized in cardiovascular diseases. 23 While CCL4 exhibits a protective effect in Type 1 diabetes mellitus patients, it is also found to be elevated in conditions such as atherosclerosis and myocardial infarction. 23 CCL4's ability to activate PI3K and MAPK signaling pathways and inhibit the NF-\u03baB pathway contributes to the enhanced proliferation of porcine uterine luminal epithelial cells. 25 This mechanism may elucidate CCL4's protective role in TAO, as demonstrated in this study (OR: 0.44; 95% CI: 0.29\u20130.67; p \u2009=\u20091.4\u2009\u00d7\u200910 \u22124 ; adjusted p \u2009=\u20090.013), highlighting its potential as both a biomarker and a therapeutic target.", + "text": "C\u2013C motif chemokines, a subfamily of small, secreted proteins, engage with G protein-coupled chemokine receptors on the cell surface, which are distinguished by directly juxtaposed cysteines. 22 Their renowned function is to orchestrate cell migration, particularly of leukocytes, playing crucial roles in both protective and destructive immune and inflammatory responses. 23 CCL4, also known as the macrophage inflammatory protein, is a significant member of the CC chemokine family. This protein, encoded by the CCL4 gene in humans, interacts with CCR5 and is identified as a pivotal human immunodeficiency virus-suppressive factor secreted by CD8+ T-cells. 24 Additionally, its involvement has been increasingly recognized in cardiovascular diseases. 23 While CCL4 exhibits a protective effect in Type 1 diabetes mellitus patients, it is also found to be elevated in conditions such as atherosclerosis and myocardial infarction. 23 CCL4's ability to activate PI3K and MAPK signaling pathways and inhibit the NF-\u03baB pathway contributes to the enhanced proliferation of porcine uterine luminal epithelial cells. 25 This mechanism may elucidate CCL4's protective role in TAO, as demonstrated in this study (OR: 0.44; 95% CI: 0.29\u20130.67; p \u2009=\u20091.4\u2009\u00d7\u200910 \u22124 ; adjusted p \u2009=\u20090.013), highlighting its potential as both a biomarker and a therapeutic target." + }, + { + "self_ref": "#/texts/25", + "parent": { + "$ref": "#/texts/23" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "CCL23, also known as myeloid progenitor inhibitory factor-1, represents another key member of the CC chemokine subfamily. It plays a role in the inflammatory process, capable of inhibiting the release of polymorphonuclear leukocytes from the bone marrow. 26 As a relatively novel chemokine, CCL23's biological significance remains partially unexplored. 27 Circulating CCL23 exhibited a continuous increase from baseline to 24\u2009hours in ischemic stroke patients and could predict the clinical outcome after 3 months. 28 Elevated blood levels of CCL23 have been linked with antineutrophil cytoplasmic antibody-associated vasculitis. 29 Although its mechanisms are largely uncharted, CCL23 is known to facilitate the chemotaxis of human THP-1 monocytes, increase adhesion molecule CD11c expression, and stimulate MMP-2 release from THP-1 monocytes. 30 Moreover, CCL23 can enhance leucocyte trafficking and direct the migration of monocytes, macrophages, dendritic cells, and T lymphocytes. 27 This study posits CCL23 as a suggestive risk factor for TAO (OR: 1.88, 95% CI: 1.21\u20132.93; p \u2009=\u20090.005; adjusted p \u2009=\u20090.218), warranting further investigation into its precise role.", + "text": "CCL23, also known as myeloid progenitor inhibitory factor-1, represents another key member of the CC chemokine subfamily. It plays a role in the inflammatory process, capable of inhibiting the release of polymorphonuclear leukocytes from the bone marrow. 26 As a relatively novel chemokine, CCL23's biological significance remains partially unexplored. 27 Circulating CCL23 exhibited a continuous increase from baseline to 24\u2009hours in ischemic stroke patients and could predict the clinical outcome after 3 months. 28 Elevated blood levels of CCL23 have been linked with antineutrophil cytoplasmic antibody-associated vasculitis. 29 Although its mechanisms are largely uncharted, CCL23 is known to facilitate the chemotaxis of human THP-1 monocytes, increase adhesion molecule CD11c expression, and stimulate MMP-2 release from THP-1 monocytes. 30 Moreover, CCL23 can enhance leucocyte trafficking and direct the migration of monocytes, macrophages, dendritic cells, and T lymphocytes. 27 This study posits CCL23 as a suggestive risk factor for TAO (OR: 1.88, 95% CI: 1.21\u20132.93; p \u2009=\u20090.005; adjusted p \u2009=\u20090.218), warranting further investigation into its precise role." + }, + { + "self_ref": "#/texts/26", + "parent": { + "$ref": "#/texts/23" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "GDNF was first discovered as a potent survival factor for midbrain dopaminergic neurons and has shown promise in preserving these neurons in animal models of Parkinson's disease. 31 Recent studies have further elucidated GDNF's significance in neuronal safeguarding and cerebral recuperation. 32 Additionally, GDNF has been implicated in inflammatory bowel disease (IBD), where it bolsters the integrity of the intestinal epithelial barrier and facilitates wound repair, while also exerting an immunomodulatory influence. 33 34 In our study, GDNF is identified as a potential protective agent against TAO, with an OR of 0.43 (95% CI: 0.22\u20130.81; p \u2009=\u20090.010; adjusted p \u2009=\u20090.218). It is postulated that GDNF's protective mechanism in TAO may involve the inhibition of apoptosis through the activation of MAPK and AKT pathways, akin to its action in IBD. 34", + "text": "GDNF was first discovered as a potent survival factor for midbrain dopaminergic neurons and has shown promise in preserving these neurons in animal models of Parkinson's disease. 31 Recent studies have further elucidated GDNF's significance in neuronal safeguarding and cerebral recuperation. 32 Additionally, GDNF has been implicated in inflammatory bowel disease (IBD), where it bolsters the integrity of the intestinal epithelial barrier and facilitates wound repair, while also exerting an immunomodulatory influence. 33 34 In our study, GDNF is identified as a potential protective agent against TAO, with an OR of 0.43 (95% CI: 0.22\u20130.81; p \u2009=\u20090.010; adjusted p \u2009=\u20090.218). It is postulated that GDNF's protective mechanism in TAO may involve the inhibition of apoptosis through the activation of MAPK and AKT pathways, akin to its action in IBD. 34" + }, + { + "self_ref": "#/texts/27", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "section_header", + "prov": [], + "orig": "Figures", + "text": "Figures", + "level": 1 + }, + { + "self_ref": "#/texts/28", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [], + "orig": "Fig. 1 The flowchart of the study. The whole workflow of MR analysis. GWAS, genome-wide association study; TAO, thromboangiitis obliterans; SNP, single nucleotide polymorphism; MR, Mendelian randomization.", + "text": "Fig. 1 The flowchart of the study. The whole workflow of MR analysis. GWAS, genome-wide association study; TAO, thromboangiitis obliterans; SNP, single nucleotide polymorphism; MR, Mendelian randomization." + }, + { + "self_ref": "#/texts/29", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [], + "orig": "Fig. 2 Causal relationship between circulating inflammatory proteins and TAO. TAO, thromboangiitis obliterans.", + "text": "Fig. 2 Causal relationship between circulating inflammatory proteins and TAO. TAO, thromboangiitis obliterans." + }, + { + "self_ref": "#/texts/30", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [], + "orig": "Fig. 3 Scatter plots for the causal association between circulating inflammatory proteins and TAO. TAO, thromboangiitis obliterans.", + "text": "Fig. 3 Scatter plots for the causal association between circulating inflammatory proteins and TAO. TAO, thromboangiitis obliterans." + }, + { + "self_ref": "#/texts/31", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [], + "orig": "Fig. 4 Funnel plots of circulating inflammatory proteins.", + "text": "Fig. 4 Funnel plots of circulating inflammatory proteins." + }, + { + "self_ref": "#/texts/32", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [], + "orig": "Fig. 5 Leave-one-out plots for the causal association between circulating inflammatory proteins and TAO. TAO, thromboangiitis obliterans.", + "text": "Fig. 5 Leave-one-out plots for the causal association between circulating inflammatory proteins and TAO. TAO, thromboangiitis obliterans." + }, + { + "self_ref": "#/texts/33", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [], + "orig": "Fig. 6 Results from multivariable Mendelian randomization analysis on the impact of circulating inflammatory proteins on TAO, after adjusting for genetically predicted smoking. IVW, inverse variance weighting; TAO, thromboangiitis obliterans.", + "text": "Fig. 6 Results from multivariable Mendelian randomization analysis on the impact of circulating inflammatory proteins on TAO, after adjusting for genetically predicted smoking. IVW, inverse variance weighting; TAO, thromboangiitis obliterans." + }, + { + "self_ref": "#/texts/34", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "section_header", + "prov": [], + "orig": "References", + "text": "References", + "level": 1 + }, + { + "self_ref": "#/texts/35", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "J W Olin. Thromboangiitis obliterans (Buerger's disease). N Engl J Med (2000)", + "text": "J W Olin. Thromboangiitis obliterans (Buerger's disease). N Engl J Med (2000)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/36", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "X L Sun; B Y Law; I R de Seabra Rodrigues Dias; S WF Mok; Y Z He; V K Wong. Pathogenesis of thromboangiitis obliterans: gene polymorphism and immunoregulation of human vascular endothelial cells. Atherosclerosis (2017)", + "text": "X L Sun; B Y Law; I R de Seabra Rodrigues Dias; S WF Mok; Y Z He; V K Wong. Pathogenesis of thromboangiitis obliterans: gene polymorphism and immunoregulation of human vascular endothelial cells. Atherosclerosis (2017)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/37", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "J W Olin. Thromboangiitis obliterans: 110 years old and little progress made. J Am Heart Assoc (2018)", + "text": "J W Olin. Thromboangiitis obliterans: 110 years old and little progress made. J Am Heart Assoc (2018)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/38", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "A Le Joncour; S Soudet; A Dupont. Long-term outcome and prognostic factors of complications in thromboangiitis obliterans (Buerger's Disease): a multicenter study of 224 patients. J Am Heart Assoc (2018)", + "text": "A Le Joncour; S Soudet; A Dupont. Long-term outcome and prognostic factors of complications in thromboangiitis obliterans (Buerger's Disease): a multicenter study of 224 patients. J Am Heart Assoc (2018)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/39", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "S S Ketha; L T Cooper. The role of autoimmunity in thromboangiitis obliterans (Buerger's disease). Ann N Y Acad Sci (2013)", + "text": "S S Ketha; L T Cooper. The role of autoimmunity in thromboangiitis obliterans (Buerger's disease). Ann N Y Acad Sci (2013)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/40", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "M Kobayashi; M Ito; A Nakagawa; N Nishikimi; Y Nimura. Immunohistochemical analysis of arterial wall cellular infiltration in Buerger's disease (endarteritis obliterans). J Vasc Surg (1999)", + "text": "M Kobayashi; M Ito; A Nakagawa; N Nishikimi; Y Nimura. Immunohistochemical analysis of arterial wall cellular infiltration in Buerger's disease (endarteritis obliterans). J Vasc Surg (1999)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/41", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "R Dellalibera-Joviliano; E E Joviliano; J S Silva; P R Evora. Activation of cytokines corroborate with development of inflammation and autoimmunity in thromboangiitis obliterans patients. Clin Exp Immunol (2012)", + "text": "R Dellalibera-Joviliano; E E Joviliano; J S Silva; P R Evora. Activation of cytokines corroborate with development of inflammation and autoimmunity in thromboangiitis obliterans patients. Clin Exp Immunol (2012)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/42", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "G Davey Smith; G Hemani. Mendelian randomization: genetic anchors for causal inference in epidemiological studies. Hum Mol Genet (2014)", + "text": "G Davey Smith; G Hemani. Mendelian randomization: genetic anchors for causal inference in epidemiological studies. Hum Mol Genet (2014)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/43", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "C A Emdin; A V Khera; S Kathiresan. Mendelian randomization. JAMA (2017)", + "text": "C A Emdin; A V Khera; S Kathiresan. Mendelian randomization. JAMA (2017)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/44", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "S C Larsson; A S Butterworth; S Burgess. Mendelian randomization for cardiovascular diseases: principles and applications. Eur Heart J (2023)", + "text": "S C Larsson; A S Butterworth; S Burgess. Mendelian randomization for cardiovascular diseases: principles and applications. Eur Heart J (2023)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/45", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "V W Skrivankova; R C Richmond; B AR Woolf. Strengthening the reporting of observational studies in epidemiology using mendelian randomisation (STROBE-MR): explanation and elaboration. BMJ (2021)", + "text": "V W Skrivankova; R C Richmond; B AR Woolf. Strengthening the reporting of observational studies in epidemiology using mendelian randomisation (STROBE-MR): explanation and elaboration. BMJ (2021)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/46", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "J H Zhao; D Stacey; N Eriksson. Genetics of circulating inflammatory proteins identifies drivers of immune-mediated disease risk and therapeutic targets. Nat Immunol (2023)", + "text": "J H Zhao; D Stacey; N Eriksson. Genetics of circulating inflammatory proteins identifies drivers of immune-mediated disease risk and therapeutic targets. Nat Immunol (2023)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/47", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "M I Kurki; J Karjalainen; P Palta. FinnGen provides genetic insights from a well-phenotyped isolated population. Nature (2023)", + "text": "M I Kurki; J Karjalainen; P Palta. FinnGen provides genetic insights from a well-phenotyped isolated population. Nature (2023)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/48", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "M A Kamat; J A Blackshaw; R Young. PhenoScanner V2: an expanded tool for searching human genotype-phenotype associations. Bioinformatics (2019)", + "text": "M A Kamat; J A Blackshaw; R Young. PhenoScanner V2: an expanded tool for searching human genotype-phenotype associations. Bioinformatics (2019)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/49", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "S Burgess; F Dudbridge; S G Thompson. Combining information on multiple instrumental variables in Mendelian randomization: comparison of allele score and summarized data methods. Stat Med (2016)", + "text": "S Burgess; F Dudbridge; S G Thompson. Combining information on multiple instrumental variables in Mendelian randomization: comparison of allele score and summarized data methods. Stat Med (2016)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/50", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "O O Yavorska; S Burgess. MendelianRandomization: an R package for performing Mendelian randomization analyses using summarized data. Int J Epidemiol (2017)", + "text": "O O Yavorska; S Burgess. MendelianRandomization: an R package for performing Mendelian randomization analyses using summarized data. Int J Epidemiol (2017)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/51", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "J Bowden; G Davey Smith; S Burgess. Mendelian randomization with invalid instruments: effect estimation and bias detection through Egger regression. Int J Epidemiol (2015)", + "text": "J Bowden; G Davey Smith; S Burgess. Mendelian randomization with invalid instruments: effect estimation and bias detection through Egger regression. Int J Epidemiol (2015)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/52", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "J Bowden; G Davey Smith; P C Haycock; S Burgess. Consistent estimation in mendelian randomization with some invalid instruments using a weighted median estimator. Genet Epidemiol (2016)", + "text": "J Bowden; G Davey Smith; P C Haycock; S Burgess. Consistent estimation in mendelian randomization with some invalid instruments using a weighted median estimator. Genet Epidemiol (2016)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/53", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "M Verbanck; C Y Chen; B Neale; R Do. Detection of widespread horizontal pleiotropy in causal relationships inferred from Mendelian randomization between complex traits and diseases. Nat Genet (2018)", + "text": "M Verbanck; C Y Chen; B Neale; R Do. Detection of widespread horizontal pleiotropy in causal relationships inferred from Mendelian randomization between complex traits and diseases. Nat Genet (2018)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/54", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "P R Loh; G Kichaev; S Gazal; A P Schoech; A L Price. Mixed-model association for biobank-scale datasets. Nat Genet (2018)", + "text": "P R Loh; G Kichaev; S Gazal; A P Schoech; A L Price. Mixed-model association for biobank-scale datasets. Nat Genet (2018)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/55", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "D Staiger; H James. Stock. 1997.\u201cinstrumental variables with weak instruments.\u201d. Econometrica (1997)", + "text": "D Staiger; H James. Stock. 1997.\u201cinstrumental variables with weak instruments.\u201d. Econometrica (1997)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/56", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "C E Hughes; R JB Nibbs. A guide to chemokines and their receptors. FEBS J (2018)", + "text": "C E Hughes; R JB Nibbs. A guide to chemokines and their receptors. FEBS J (2018)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/57", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "T T Chang; J W Chen. Emerging role of chemokine CC motif ligand 4 related mechanisms in diabetes mellitus and cardiovascular disease: friends or foes?. Cardiovasc Diabetol (2016)", + "text": "T T Chang; J W Chen. Emerging role of chemokine CC motif ligand 4 related mechanisms in diabetes mellitus and cardiovascular disease: friends or foes?. Cardiovasc Diabetol (2016)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/58", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "S G Irving; P F Zipfel; J Balke. Two inflammatory mediator cytokine genes are closely linked and variably amplified on chromosome 17q. Nucleic Acids Res (1990)", + "text": "S G Irving; P F Zipfel; J Balke. Two inflammatory mediator cytokine genes are closely linked and variably amplified on chromosome 17q. Nucleic Acids Res (1990)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/59", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "W Lim; H Bae; F W Bazer; G Song. Characterization of C-C motif chemokine ligand 4 in the porcine endometrium during the presence of the maternal-fetal interface. Dev Biol (2018)", + "text": "W Lim; H Bae; F W Bazer; G Song. Characterization of C-C motif chemokine ligand 4 in the porcine endometrium during the presence of the maternal-fetal interface. Dev Biol (2018)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/60", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "C H Shih; S F van Eeden; Y Goto; J C Hogg. CCL23/myeloid progenitor inhibitory factor-1 inhibits production and release of polymorphonuclear leukocytes and monocytes from the bone marrow. Exp Hematol (2005)", + "text": "C H Shih; S F van Eeden; Y Goto; J C Hogg. CCL23/myeloid progenitor inhibitory factor-1 inhibits production and release of polymorphonuclear leukocytes and monocytes from the bone marrow. Exp Hematol (2005)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/61", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "D Karan. CCL23 in balancing the act of endoplasmic reticulum stress and antitumor immunity in hepatocellular carcinoma. Front Oncol (2021)", + "text": "D Karan. CCL23 in balancing the act of endoplasmic reticulum stress and antitumor immunity in hepatocellular carcinoma. Front Oncol (2021)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/62", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "A Simats; T Garc\u00eda-Berrocoso; A Penalba. CCL23: a new CC chemokine involved in human brain damage. J Intern Med (2018)", + "text": "A Simats; T Garc\u00eda-Berrocoso; A Penalba. CCL23: a new CC chemokine involved in human brain damage. J Intern Med (2018)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/63", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "M Brink; E Berglin; A J Mohammad. Protein profiling in presymptomatic individuals separates myeloperoxidase-antineutrophil cytoplasmic antibody and proteinase 3-antineutrophil cytoplasmic antibody vasculitides. Arthritis Rheumatol (2023)", + "text": "M Brink; E Berglin; A J Mohammad. Protein profiling in presymptomatic individuals separates myeloperoxidase-antineutrophil cytoplasmic antibody and proteinase 3-antineutrophil cytoplasmic antibody vasculitides. Arthritis Rheumatol (2023)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/64", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "C S Kim; J H Kang; H R Cho. Potential involvement of CCL23 in atherosclerotic lesion formation/progression by the enhancement of chemotaxis, adhesion molecule expression, and MMP-2 release from monocytes. Inflamm Res (2011)", + "text": "C S Kim; J H Kang; H R Cho. Potential involvement of CCL23 in atherosclerotic lesion formation/progression by the enhancement of chemotaxis, adhesion molecule expression, and MMP-2 release from monocytes. Inflamm Res (2011)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/65", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "M Saarma; H Sariola. Other neurotrophic factors: glial cell line-derived neurotrophic factor (GDNF). Microsc Res Tech (1999)", + "text": "M Saarma; H Sariola. Other neurotrophic factors: glial cell line-derived neurotrophic factor (GDNF). Microsc Res Tech (1999)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/66", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "Z Zhang; G Y Sun; S Ding. Glial cell line-derived neurotrophic factor and focal ischemic stroke. Neurochem Res (2021)", + "text": "Z Zhang; G Y Sun; S Ding. Glial cell line-derived neurotrophic factor and focal ischemic stroke. Neurochem Res (2021)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/67", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "H Chen; T Han; L Gao; D Zhang. The involvement of glial cell-derived neurotrophic factor in inflammatory bowel disease. J Interferon Cytokine Res (2022)", + "text": "H Chen; T Han; L Gao; D Zhang. The involvement of glial cell-derived neurotrophic factor in inflammatory bowel disease. J Interferon Cytokine Res (2022)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/68", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "M Meir; S Flemming; N Burkard; J Wagner; C T Germer; N Schlegel. The glial cell-line derived neurotrophic factor: a novel regulator of intestinal barrier function in health and disease. Am J Physiol Gastrointest Liver Physiol (2016)", + "text": "M Meir; S Flemming; N Burkard; J Wagner; C T Germer; N Schlegel. The glial cell-line derived neurotrophic factor: a novel regulator of intestinal barrier function in health and disease. Am J Physiol Gastrointest Liver Physiol (2016)", + "enumerated": false, + "marker": "-" + } + ], + "pictures": [ + { + "self_ref": "#/pictures/0", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "picture", + "prov": [], + "captions": [ + { + "$ref": "#/texts/28" + } + ], + "references": [], + "footnotes": [], + "annotations": [] + }, + { + "self_ref": "#/pictures/1", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "picture", + "prov": [], + "captions": [ + { + "$ref": "#/texts/29" + } + ], + "references": [], + "footnotes": [], + "annotations": [] + }, + { + "self_ref": "#/pictures/2", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "picture", + "prov": [], + "captions": [ + { + "$ref": "#/texts/30" + } + ], + "references": [], + "footnotes": [], + "annotations": [] + }, + { + "self_ref": "#/pictures/3", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "picture", + "prov": [], + "captions": [ + { + "$ref": "#/texts/31" + } + ], + "references": [], + "footnotes": [], + "annotations": [] + }, + { + "self_ref": "#/pictures/4", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "picture", + "prov": [], + "captions": [ + { + "$ref": "#/texts/32" + } + ], + "references": [], + "footnotes": [], + "annotations": [] + }, + { + "self_ref": "#/pictures/5", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "picture", + "prov": [], + "captions": [ + { + "$ref": "#/texts/33" + } + ], + "references": [], + "footnotes": [], + "annotations": [] + } + ], + "tables": [], + "key_value_items": [], + "pages": {} +} \ No newline at end of file diff --git a/tests/data/groundtruth/docling_v2/10-1055-s-0044-1786809.nxml.md b/tests/data/groundtruth/docling_v2/10-1055-s-0044-1786809.nxml.md new file mode 100644 index 00000000..1caa596b --- /dev/null +++ b/tests/data/groundtruth/docling_v2/10-1055-s-0044-1786809.nxml.md @@ -0,0 +1,116 @@ +# Exploring Causal Relationships between Circulating Inflammatory Proteins and Thromboangiitis Obliterans: A Mendelian Randomization Study + +Bihui Zhang; Department of Interventional Radiology and Vascular Surgery, Peking University First Hospital, Beijing, China; Rui He; Department of Plastic Surgery and Burn, Peking University First Hospital, Beijing, China; Ziping Yao; Department of Interventional Radiology and Vascular Surgery, Peking University First Hospital, Beijing, China; Pengyu Li; Department of Interventional Radiology and Vascular Surgery, Peking University First Hospital, Beijing, China; Guochen Niu; Department of Interventional Radiology and Vascular Surgery, Peking University First Hospital, Beijing, China; Ziguang Yan; Department of Interventional Radiology and Vascular Surgery, Peking University First Hospital, Beijing, China; Yinghua Zou; Department of Interventional Radiology and Vascular Surgery, Peking University First Hospital, Beijing, China; Xiaoqiang Tong; Department of Interventional Radiology and Vascular Surgery, Peking University First Hospital, Beijing, China; Min Yang; Department of Interventional Radiology and Vascular Surgery, Peking University First Hospital, Beijing, China + +Background Thromboangiitis obliterans (TAO) is a vascular condition characterized by poor prognosis and an unclear etiology. This study employs Mendelian randomization (MR) to investigate the causal impact of circulating inflammatory proteins on TAO. Methods In this MR analysis, summary statistics from a genome-wide association study meta-analysis of 91 inflammation-related proteins were integrated with independently sourced TAO data from the FinnGen consortium's R10 release. Methods such as inverse variance weighting, MR–Egger regression, weighted median approaches, MR-PRESSO, and multivariable MR (MVMR) analysis were utilized. Results The analysis indicated an association between higher levels of C–C motif chemokine 4 and a reduced risk of TAO, with an odds ratio (OR) of 0.44 (95% confidence interval [CI]: 0.29–0.67; p = 1.4 × 10 −4 ; adjusted p = 0.013). Similarly, glial cell line-derived neurotrophic factor exhibited a suggestively protective effect against TAO (OR: 0.43, 95% CI: 0.22–0.81; p = 0.010; adjusted p = 0.218). Conversely, higher levels of C–C motif chemokine 23 were suggestively linked to an increased risk of TAO (OR: 1.88, 95% CI: 1.21–2.93; p = 0.005; adjusted p = 0.218). The sensitivity analysis and MVMR revealed no evidence of heterogeneity or pleiotropy. Conclusion This study identifies C–C motif chemokine 4 and glial cell line-derived neurotrophic factor as potential protective biomarkers for TAO, whereas C–C motif chemokine 23 emerges as a suggestive risk marker. These findings elucidate potential causal relationships and highlight the significance of these proteins in the pathogenesis and prospective therapeutic strategies for TAO. + +## Introduction + +Thromboangiitis obliterans (TAO), commonly referred to as Buerger's disease, is a distinct nonatherosclerotic, segmental inflammatory disorder that predominantly affects small- and medium-sized arteries and veins in both the upper and lower extremities. 1 TAO, with an annual incidence of 12.6 per 100,000 in the United States, is observed worldwide but is more prevalent in the Middle East and Far East. 1 The disease typically presents in patients <45 years of age. Despite over a century of recognition, advancements in comprehending its etiology, pathophysiology, and optimal treatment strategies have been limited. 2 3 Vascular event-free survival and amputation-free survival rates at 5, 10, and 15 years are reported at 41 and 85%, 23 and 74%, and 19 and 66%, respectively. 4 + +An immune-mediated response is implicated in TAO pathogenesis. 5 Recent studies have identified a balanced presence of CD4+ and CD8+ T cells near the internal lamina. Additionally, macrophages and S100+ dendritic cells are present in thrombi and intimal layers. 5 6 Elevated levels of diverse cytokines in TAO patients highlight the critical importance of inflammatory and autoimmune mechanisms. 2 7 Nonetheless, the clinical significance of these cytokines is yet to be fully understood, due to the scarcity of comprehensive experimental and clinical studies. Investigating circulating inflammatory proteins could shed light on the biological underpinnings of TAO, offering new diagnostic and therapeutic avenues. + +Mendelian randomization (MR) is an approach that leverages genetic variants associated with specific exposures to infer causal relationships between risk factors and disease outcomes. 8 This method, which relies on the random distribution of genetic variants during meiosis, helps minimize confounding factors and biases inherent in environmental or behavioral influences. 9 It is particularly useful in addressing limitations of conventional observational studies and randomized controlled trials, especially for rare diseases like TAO. 10 For a robust MR analysis, three critical assumptions must be met: the genetic variants should be strongly associated with the risk factor, not linked to confounding variables, and affect the outcome solely through the risk factor, excluding any direct causal pathways. 10 In the present study, a MR was employed to evaluate the impact of genetically proxied inflammatory protein levels on the risk of developing TAO. + +## Study Design + +The current research represents a MR analysis conducted in accordance with STROBE-MR guidelines. 11 Genetic variants associated with circulating inflammatory proteins were identified from a comprehensive genome-wide meta-analysis, which analyzed 91 plasma proteins in a sample of 14,824 individuals of European descent, spanning 11 distinct cohorts. 12 This study utilized the Olink Target-96 Inflammation immunoassay panel to focus on 92 inflammation-related proteins. However, due to assay issues, brain-derived neurotrophic factor was subsequently removed from the panel by Olink, resulting in the inclusion of 91 proteins in the analysis. Protein quantitative trait locus (pQTL) mapping was employed to determine genetic impacts on these inflammation-related proteins. The data on these 91 plasma inflammatory proteins, including the pQTL findings, are accessible in the EBI GWAS Catalog (accession numbers GCST90274758 to GCST90274848). + +Flowchart of the study is shown in Fig. 1 . Summary statistics for TAO in the genome-wide association study (GWAS) were derived from the FinnGen consortium R10 release (finngen\_R10\_I9\_THROMBANG). Launched in 2017, the FinnGen study is a comprehensive nationwide effort combining genetic information from Finnish biobanks with digital health records from national registries. 13 The GWAS included a substantial cohort of 412,181 Finnish participants, analyzing 21,311,942 variants, with TAO cases (114) and controls (381,977) identified according to International Classification of Diseases (ICD)-8 (44310), ICD-9 (4431A), and ICD-10 (I73.1) classifications. + +## Instrumental Variable Selection + +We employed comprehensive GWAS summary statistics for 91 inflammation-related proteins to select genetic instruments. The criteria for eligibility included: (1) single nucleotide polymorphisms (SNPs) must exhibit a genome-wide significant association with each protein ( p  < 5.0 × 10 −6 ); (2) SNPs should be independently associated with the exposure, meaning they must not be in linkage disequilibrium (defined as r 2  < 0.01, distance > 10,000 kb) with other SNPs for the same exposure; (3) the chosen genetic instruments must account for at least 0.1% of the exposure variance, ensuring sufficient strength for the genetic instrumental variables (IVs) to assess a causal effect. For each exposure, we harmonized IVs to ensure compatibility and consistency between different data sources and variables. Since smoking is a well-accepted risk factor for TAO, SNPs that were associated with smoking or thrombo-associated events were deleted for MR due to the PhenoScanner V2 database (http://www.phenoscanner.medschl.cam.ac.uk/), details are shown in Supplementary Table S1 (available in the online version). 14 + +## Statistical Analysis + +The random-effects inverse variance weighted (IVW) method was used as the primary MR method to estimate the causal relationships between circulating inflammatory proteins and TAO. The IVW method offers a consistent estimate of the causal effect of exposure on the outcome, under the assumption that each genetic variant meets the IV criteria. 15 16 For sensitivity analysis, multiple methods, including MR–Egger regression, MR pleiotropy Residual Sum and Outlier (MR-PRESSO), and weighted median approaches, were employed in this study to examine the robustness of results. An adaptation of MR–Egger regression is capable of identifying certain violations of standard IV assumptions, providing an adjusted estimate that is unaffected by these issues. This method also measures the extent of directional pleiotropy and serves as a robustness check. 17 The weighted median is consistent even when up to 50% of the information comes from invalid IVs. 18 For SNPs numbering more than three, MRPRESSO was employed to identify and adjust for horizontal pleiotropy. This method can pinpoint horizontal pleiotropic outliers among SNPs and deliver results matching those from IVW when outliers are absent. 19 Leave-one-out analysis was conducted to determine if significant findings were driven by a single SNP. To mitigate potential pleiotropic effects attributable to smoking, a multivariable MR (MVMR) analysis incorporating adjustments for genetically predicted smoking behaviors was conducted. The GWAS data pertaining to smoking were sourced from the EBI GWAS Catalog (GCST90029014), ensuring no sample overlap with the FinnGen database. 20 + +Heterogeneity among individual SNP-based estimates was assessed using Cochran's Q value. In instances with only one SNP for the exposure, the Wald ratio method was applied, dividing the SNP–outcome association estimate by the SNP–exposure association estimate to determine the causal link. The F-statistic was estimated to evaluate the strength of each instrument, with an F-statistic greater than 10 indicating a sufficiently strong instrument. 21 False discovery rate (FDR) correction was conducted by the Benjamini–Hochberg method, with a FDR of adjusted p  < 0.1. A suggestive association was considered when p  < 0.05 but adjusted p ≥ 0.1. All analyses were two-sided and performed using the TwoSampleMR (version 0.5.8), MendelianRandomization (version 0.9.0), and MRPRESSO (version 1.0) packages in R software version 4.3.2. + +## Selection of Instrumental Variables + +The association between 91 circulating inflammatory proteins and TAO through the IVW method is detailed in Supplementary Table S2 (available in the online version). After an extensive quality control review, 173 SNPs associated with six circulating inflammation-related proteins were identified as IVs for TAO. Notably, C–C motif chemokine 23 (CCL23) levels were linked to 30 SNPs, C–C motif chemokine 25 to 37 SNPs, C–C motif chemokine 28 to 21 SNPs, C–C motif chemokine 4 (CCL4) to 27 SNPs, glial cell line-derived neurotrophic factor (GDNF) to 22 SNPs, and stem cell factor to 36 SNPs. + +## The Causal Role of Inflammation-Related Proteins in TAO + +Elevated genetically predicted CCL4 levels were linked to a decreased TAO risk, as shown in Fig. 2 . Specifically, each unit increase in the genetically predicted level of CCL4 was associated with an odds ratio (OR) of 0.44 (95% confidence interval [CI]: 0.29–0.67; p  = 1.4 × 10 −4 ; adjusted p  = 0.013) for TAO. Similarly, levels of C–C motif chemokine 28 (OR: 0.33; 95% CI: 0.12–0.91; p  = 0.034; adjusted p  = 0.579), GDNF (OR: 0.43, 95% CI: 0.22–0.81; p  = 0.010; adjusted p  = 0.218), and stem cell factor (OR: 0.49, 95% CI: 0.29–0.84; p  = 0.009; adjusted p  = 0.218) also showed a suggestive inverse association with TAO, as depicted in Fig. 2 . Conversely, higher levels of genetically predicted CCL23 (OR: 1.88, 95% CI: 1.21–2.93; p  = 0.005; adjusted p  = 0.218) and C–C motif chemokine 25 (OR: 1.44, 95% CI: 1.01–2.06; p  = 0.046; adjusted p  = 0.579) suggested an increased risk of TAO. + +## Sensitivity Analysis + +MR–Egger regression intercepts were not significantly different from zero, suggesting no horizontal pleiotropy (all intercept p  > 0.05), as depicted in Fig. 2 . The MR-PRESSO test also found no pleiotropic outliers among these SNPs ( p  > 0.05), further corroborating the absence of pleiotropy. Consistency with these findings was confirmed by the weighted median approach. Scatter plots illustrating the genetic associations with circulating inflammatory proteins and TAO are presented in Fig. 3 . Cochran's Q test detected no heterogeneity among the genetic IVs for the measured levels (all p  > 0.1). Additionally, funnel plots showed no significant asymmetry, suggesting negligible publication bias and directional horizontal pleiotropy ( Fig. 4 ). The robustness of these causal estimates was further validated by a leave-one-out analysis, demonstrating that no single IV disproportionately influenced the observed causal relationships, as shown in Fig. 5 . + +## MVMR Analysis + +Fig. 6 reveals that, even after adjusting for genetically predicted smoking, the level of CCL4 still exerts a direct protective influence against TAO (IVW: OR= 0.54, p  = 0.009; MR–Egger: p  = 0.013, intercept p  = 0.843). The level of CCL23 is suggestively associated with an increased risk of TAO (IVW: OR = 2.24, p  = 0.011; MR–Egger: p  = 0.019, intercept p  = 0.978). GDNF levels show a suggestively protective effect against TAO (IVW: OR = 0.315, p  = 0.016; MR–Egger: p  = 0.020, intercept p  = 0.634). However, no significant direct impacts were observed for the levels of C–C motif chemokine 25 ( p  = 0.079), C–C motif chemokine 28 ( p  = 0.179), or stem cell factor ( p  = 0.159) on TAO. + +## Discussion + +C–C motif chemokines, a subfamily of small, secreted proteins, engage with G protein-coupled chemokine receptors on the cell surface, which are distinguished by directly juxtaposed cysteines. 22 Their renowned function is to orchestrate cell migration, particularly of leukocytes, playing crucial roles in both protective and destructive immune and inflammatory responses. 23 CCL4, also known as the macrophage inflammatory protein, is a significant member of the CC chemokine family. This protein, encoded by the CCL4 gene in humans, interacts with CCR5 and is identified as a pivotal human immunodeficiency virus-suppressive factor secreted by CD8+ T-cells. 24 Additionally, its involvement has been increasingly recognized in cardiovascular diseases. 23 While CCL4 exhibits a protective effect in Type 1 diabetes mellitus patients, it is also found to be elevated in conditions such as atherosclerosis and myocardial infarction. 23 CCL4's ability to activate PI3K and MAPK signaling pathways and inhibit the NF-κB pathway contributes to the enhanced proliferation of porcine uterine luminal epithelial cells. 25 This mechanism may elucidate CCL4's protective role in TAO, as demonstrated in this study (OR: 0.44; 95% CI: 0.29–0.67; p  = 1.4 × 10 −4 ; adjusted p  = 0.013), highlighting its potential as both a biomarker and a therapeutic target. + +CCL23, also known as myeloid progenitor inhibitory factor-1, represents another key member of the CC chemokine subfamily. It plays a role in the inflammatory process, capable of inhibiting the release of polymorphonuclear leukocytes from the bone marrow. 26 As a relatively novel chemokine, CCL23's biological significance remains partially unexplored. 27 Circulating CCL23 exhibited a continuous increase from baseline to 24 hours in ischemic stroke patients and could predict the clinical outcome after 3 months. 28 Elevated blood levels of CCL23 have been linked with antineutrophil cytoplasmic antibody-associated vasculitis. 29 Although its mechanisms are largely uncharted, CCL23 is known to facilitate the chemotaxis of human THP-1 monocytes, increase adhesion molecule CD11c expression, and stimulate MMP-2 release from THP-1 monocytes. 30 Moreover, CCL23 can enhance leucocyte trafficking and direct the migration of monocytes, macrophages, dendritic cells, and T lymphocytes. 27 This study posits CCL23 as a suggestive risk factor for TAO (OR: 1.88, 95% CI: 1.21–2.93; p  = 0.005; adjusted p  = 0.218), warranting further investigation into its precise role. + +GDNF was first discovered as a potent survival factor for midbrain dopaminergic neurons and has shown promise in preserving these neurons in animal models of Parkinson's disease. 31 Recent studies have further elucidated GDNF's significance in neuronal safeguarding and cerebral recuperation. 32 Additionally, GDNF has been implicated in inflammatory bowel disease (IBD), where it bolsters the integrity of the intestinal epithelial barrier and facilitates wound repair, while also exerting an immunomodulatory influence. 33 34 In our study, GDNF is identified as a potential protective agent against TAO, with an OR of 0.43 (95% CI: 0.22–0.81; p  = 0.010; adjusted p  = 0.218). It is postulated that GDNF's protective mechanism in TAO may involve the inhibition of apoptosis through the activation of MAPK and AKT pathways, akin to its action in IBD. 34 + +## Figures + +Fig. 1 The flowchart of the study. The whole workflow of MR analysis. GWAS, genome-wide association study; TAO, thromboangiitis obliterans; SNP, single nucleotide polymorphism; MR, Mendelian randomization. + + + +Fig. 2 Causal relationship between circulating inflammatory proteins and TAO. TAO, thromboangiitis obliterans. + + + +Fig. 3 Scatter plots for the causal association between circulating inflammatory proteins and TAO. TAO, thromboangiitis obliterans. + + + +Fig. 4 Funnel plots of circulating inflammatory proteins. + + + +Fig. 5 Leave-one-out plots for the causal association between circulating inflammatory proteins and TAO. TAO, thromboangiitis obliterans. + + + +Fig. 6 Results from multivariable Mendelian randomization analysis on the impact of circulating inflammatory proteins on TAO, after adjusting for genetically predicted smoking. IVW, inverse variance weighting; TAO, thromboangiitis obliterans. + + + +## References + +- J W Olin. Thromboangiitis obliterans (Buerger's disease). N Engl J Med (2000) +- X L Sun; B Y Law; I R de Seabra Rodrigues Dias; S WF Mok; Y Z He; V K Wong. Pathogenesis of thromboangiitis obliterans: gene polymorphism and immunoregulation of human vascular endothelial cells. Atherosclerosis (2017) +- J W Olin. Thromboangiitis obliterans: 110 years old and little progress made. J Am Heart Assoc (2018) +- A Le Joncour; S Soudet; A Dupont. Long-term outcome and prognostic factors of complications in thromboangiitis obliterans (Buerger's Disease): a multicenter study of 224 patients. J Am Heart Assoc (2018) +- S S Ketha; L T Cooper. The role of autoimmunity in thromboangiitis obliterans (Buerger's disease). Ann N Y Acad Sci (2013) +- M Kobayashi; M Ito; A Nakagawa; N Nishikimi; Y Nimura. Immunohistochemical analysis of arterial wall cellular infiltration in Buerger's disease (endarteritis obliterans). J Vasc Surg (1999) +- R Dellalibera-Joviliano; E E Joviliano; J S Silva; P R Evora. Activation of cytokines corroborate with development of inflammation and autoimmunity in thromboangiitis obliterans patients. Clin Exp Immunol (2012) +- G Davey Smith; G Hemani. Mendelian randomization: genetic anchors for causal inference in epidemiological studies. Hum Mol Genet (2014) +- C A Emdin; A V Khera; S Kathiresan. Mendelian randomization. JAMA (2017) +- S C Larsson; A S Butterworth; S Burgess. Mendelian randomization for cardiovascular diseases: principles and applications. Eur Heart J (2023) +- V W Skrivankova; R C Richmond; B AR Woolf. Strengthening the reporting of observational studies in epidemiology using mendelian randomisation (STROBE-MR): explanation and elaboration. BMJ (2021) +- J H Zhao; D Stacey; N Eriksson. Genetics of circulating inflammatory proteins identifies drivers of immune-mediated disease risk and therapeutic targets. Nat Immunol (2023) +- M I Kurki; J Karjalainen; P Palta. FinnGen provides genetic insights from a well-phenotyped isolated population. Nature (2023) +- M A Kamat; J A Blackshaw; R Young. PhenoScanner V2: an expanded tool for searching human genotype-phenotype associations. Bioinformatics (2019) +- S Burgess; F Dudbridge; S G Thompson. Combining information on multiple instrumental variables in Mendelian randomization: comparison of allele score and summarized data methods. Stat Med (2016) +- O O Yavorska; S Burgess. MendelianRandomization: an R package for performing Mendelian randomization analyses using summarized data. Int J Epidemiol (2017) +- J Bowden; G Davey Smith; S Burgess. Mendelian randomization with invalid instruments: effect estimation and bias detection through Egger regression. Int J Epidemiol (2015) +- J Bowden; G Davey Smith; P C Haycock; S Burgess. Consistent estimation in mendelian randomization with some invalid instruments using a weighted median estimator. Genet Epidemiol (2016) +- M Verbanck; C Y Chen; B Neale; R Do. Detection of widespread horizontal pleiotropy in causal relationships inferred from Mendelian randomization between complex traits and diseases. Nat Genet (2018) +- P R Loh; G Kichaev; S Gazal; A P Schoech; A L Price. Mixed-model association for biobank-scale datasets. Nat Genet (2018) +- D Staiger; H James. Stock. 1997.“instrumental variables with weak instruments.”. Econometrica (1997) +- C E Hughes; R JB Nibbs. A guide to chemokines and their receptors. FEBS J (2018) +- T T Chang; J W Chen. Emerging role of chemokine CC motif ligand 4 related mechanisms in diabetes mellitus and cardiovascular disease: friends or foes?. Cardiovasc Diabetol (2016) +- S G Irving; P F Zipfel; J Balke. Two inflammatory mediator cytokine genes are closely linked and variably amplified on chromosome 17q. Nucleic Acids Res (1990) +- W Lim; H Bae; F W Bazer; G Song. Characterization of C-C motif chemokine ligand 4 in the porcine endometrium during the presence of the maternal-fetal interface. Dev Biol (2018) +- C H Shih; S F van Eeden; Y Goto; J C Hogg. CCL23/myeloid progenitor inhibitory factor-1 inhibits production and release of polymorphonuclear leukocytes and monocytes from the bone marrow. Exp Hematol (2005) +- D Karan. CCL23 in balancing the act of endoplasmic reticulum stress and antitumor immunity in hepatocellular carcinoma. Front Oncol (2021) +- A Simats; T García-Berrocoso; A Penalba. CCL23: a new CC chemokine involved in human brain damage. J Intern Med (2018) +- M Brink; E Berglin; A J Mohammad. Protein profiling in presymptomatic individuals separates myeloperoxidase-antineutrophil cytoplasmic antibody and proteinase 3-antineutrophil cytoplasmic antibody vasculitides. Arthritis Rheumatol (2023) +- C S Kim; J H Kang; H R Cho. Potential involvement of CCL23 in atherosclerotic lesion formation/progression by the enhancement of chemotaxis, adhesion molecule expression, and MMP-2 release from monocytes. Inflamm Res (2011) +- M Saarma; H Sariola. Other neurotrophic factors: glial cell line-derived neurotrophic factor (GDNF). Microsc Res Tech (1999) +- Z Zhang; G Y Sun; S Ding. Glial cell line-derived neurotrophic factor and focal ischemic stroke. Neurochem Res (2021) +- H Chen; T Han; L Gao; D Zhang. The involvement of glial cell-derived neurotrophic factor in inflammatory bowel disease. J Interferon Cytokine Res (2022) +- M Meir; S Flemming; N Burkard; J Wagner; C T Germer; N Schlegel. The glial cell-line derived neurotrophic factor: a novel regulator of intestinal barrier function in health and disease. Am J Physiol Gastrointest Liver Physiol (2016) \ No newline at end of file diff --git a/tests/data/groundtruth/docling_v2/1349-7235-63-2593.nxml.itxt b/tests/data/groundtruth/docling_v2/1349-7235-63-2593.nxml.itxt new file mode 100644 index 00000000..fa2e202b --- /dev/null +++ b/tests/data/groundtruth/docling_v2/1349-7235-63-2593.nxml.itxt @@ -0,0 +1,13 @@ +item-0 at level 0: unspecified: group _root_ + item-1 at level 1: title: Bilateral External Ophthalmoplegia Induced by Herpes Zoster Ophthalmicus + item-2 at level 1: paragraph: Fumitaka Shimizu; Department of ... ity Graduate School of Medicine, Japan + item-3 at level 1: section_header: References + item-4 at level 1: list: group list + item-5 at level 2: list_item: T Shima; K Yamashita; K Furuta; ... hormone secretion.. Intern Med (2024) + item-6 at level 2: list_item: N Yuki. Infectious origins of, a ... r syndromes.. Lancet Infect Dis (2001) + item-7 at level 2: list_item: AC Rizzo; M Ulivi; N Brunelli; . ... ter ophthalmicus.. Muscle Nerve (2017) + item-8 at level 2: list_item: CC Wang; JC Shiang; JT Chen; SH ... ophthalmicus.. J Gen Intern Med (2011) + item-9 at level 2: list_item: S Fujiwara; Y Manabe; Y Nakano; ... retic hormone.. Case Rep Neurol (2021) + item-10 at level 2: list_item: A Benkirane; F London. Miller Fi ... case report.. Acta Neurol Belg (2022) + item-11 at level 2: list_item: T Murakami; A Yoshihara; S Kikuc ... n of SIADH.. Rinsho Shinkeigaku (2013) + item-12 at level 2: list_item: MN Seleh; MB Khazaeli; RH Wheele ... etastatic melanoma.. Cancer Res (1992) \ No newline at end of file diff --git a/tests/data/groundtruth/docling_v2/1349-7235-63-2593.nxml.json b/tests/data/groundtruth/docling_v2/1349-7235-63-2593.nxml.json new file mode 100644 index 00000000..4df363bb --- /dev/null +++ b/tests/data/groundtruth/docling_v2/1349-7235-63-2593.nxml.json @@ -0,0 +1,215 @@ +{ + "schema_name": "DoclingDocument", + "version": "1.0.0", + "name": "1349-7235-63-2593", + "origin": { + "mimetype": "text/xml", + "binary_hash": 4390066962600497473, + "filename": "1349-7235-63-2593.nxml" + }, + "furniture": { + "self_ref": "#/furniture", + "children": [], + "name": "_root_", + "label": "unspecified" + }, + "body": { + "self_ref": "#/body", + "children": [ + { + "$ref": "#/texts/0" + }, + { + "$ref": "#/texts/1" + }, + { + "$ref": "#/texts/2" + }, + { + "$ref": "#/groups/0" + } + ], + "name": "_root_", + "label": "unspecified" + }, + "groups": [ + { + "self_ref": "#/groups/0", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/3" + }, + { + "$ref": "#/texts/4" + }, + { + "$ref": "#/texts/5" + }, + { + "$ref": "#/texts/6" + }, + { + "$ref": "#/texts/7" + }, + { + "$ref": "#/texts/8" + }, + { + "$ref": "#/texts/9" + }, + { + "$ref": "#/texts/10" + } + ], + "name": "list", + "label": "list" + } + ], + "texts": [ + { + "self_ref": "#/texts/0", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "title", + "prov": [], + "orig": "Bilateral External Ophthalmoplegia Induced by Herpes Zoster Ophthalmicus", + "text": "Bilateral External Ophthalmoplegia Induced by Herpes Zoster Ophthalmicus" + }, + { + "self_ref": "#/texts/1", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "paragraph", + "prov": [], + "orig": "Fumitaka Shimizu; Department of Neurology and Clinical Neuroscience, Yamaguchi University Graduate School of Medicine, Japan", + "text": "Fumitaka Shimizu; Department of Neurology and Clinical Neuroscience, Yamaguchi University Graduate School of Medicine, Japan" + }, + { + "self_ref": "#/texts/2", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "section_header", + "prov": [], + "orig": "References", + "text": "References", + "level": 1 + }, + { + "self_ref": "#/texts/3", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "T Shima; K Yamashita; K Furuta; . Right-sided herpes zoster ophthalmicus complicated by bilateral third, fourth, and sixth cranial nerve palsies and syndrome of inappropriate antidiuretic hormone secretion.. Intern Med (2024)", + "text": "T Shima; K Yamashita; K Furuta; . Right-sided herpes zoster ophthalmicus complicated by bilateral third, fourth, and sixth cranial nerve palsies and syndrome of inappropriate antidiuretic hormone secretion.. Intern Med (2024)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/4", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "N Yuki. Infectious origins of, and molecular mimicry in, Guillain-Barr\u00e9 and Fisher syndromes.. Lancet Infect Dis (2001)", + "text": "N Yuki. Infectious origins of, and molecular mimicry in, Guillain-Barr\u00e9 and Fisher syndromes.. Lancet Infect Dis (2001)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/5", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "AC Rizzo; M Ulivi; N Brunelli; . A case of Miller Fisher syndrome associated with preceding herpes zoster ophthalmicus.. Muscle Nerve (2017)", + "text": "AC Rizzo; M Ulivi; N Brunelli; . A case of Miller Fisher syndrome associated with preceding herpes zoster ophthalmicus.. Muscle Nerve (2017)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/6", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "CC Wang; JC Shiang; JT Chen; SH Lin. Syndrome of inappropriate secretion of antidiuretic hormone associated with localized herpes zoster ophthalmicus.. J Gen Intern Med (2011)", + "text": "CC Wang; JC Shiang; JT Chen; SH Lin. Syndrome of inappropriate secretion of antidiuretic hormone associated with localized herpes zoster ophthalmicus.. J Gen Intern Med (2011)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/7", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "S Fujiwara; Y Manabe; Y Nakano; Y Omote; H Narai; K Abe. A case of Miller-Fisher syndrome with syndrome of inappropriate secretion of antidiuretic hormone.. Case Rep Neurol (2021)", + "text": "S Fujiwara; Y Manabe; Y Nakano; Y Omote; H Narai; K Abe. A case of Miller-Fisher syndrome with syndrome of inappropriate secretion of antidiuretic hormone.. Case Rep Neurol (2021)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/8", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "A Benkirane; F London. Miller Fisher syndrome complicated by inappropriate secretion of antidiuretic hormone: a case report.. Acta Neurol Belg (2022)", + "text": "A Benkirane; F London. Miller Fisher syndrome complicated by inappropriate secretion of antidiuretic hormone: a case report.. Acta Neurol Belg (2022)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/9", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "T Murakami; A Yoshihara; S Kikuchi; M Yasuda; A Hoshi; Y Ugawa. A patient with Fisher syndrome and pharyngeal-cervical-brachial variant of Guillain-Barr\u00e9 syndrome having a complication of SIADH.. Rinsho Shinkeigaku (2013)", + "text": "T Murakami; A Yoshihara; S Kikuchi; M Yasuda; A Hoshi; Y Ugawa. A patient with Fisher syndrome and pharyngeal-cervical-brachial variant of Guillain-Barr\u00e9 syndrome having a complication of SIADH.. Rinsho Shinkeigaku (2013)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/10", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "MN Seleh; MB Khazaeli; RH Wheeler; . Phase I trial of the murine monoclonal anti-GD2 antibody 14G2a in metastatic melanoma.. Cancer Res (1992)", + "text": "MN Seleh; MB Khazaeli; RH Wheeler; . Phase I trial of the murine monoclonal anti-GD2 antibody 14G2a in metastatic melanoma.. Cancer Res (1992)", + "enumerated": false, + "marker": "-" + } + ], + "pictures": [], + "tables": [], + "key_value_items": [], + "pages": {} +} \ No newline at end of file diff --git a/tests/data/groundtruth/docling_v2/1349-7235-63-2593.nxml.md b/tests/data/groundtruth/docling_v2/1349-7235-63-2593.nxml.md new file mode 100644 index 00000000..e77046ff --- /dev/null +++ b/tests/data/groundtruth/docling_v2/1349-7235-63-2593.nxml.md @@ -0,0 +1,14 @@ +# Bilateral External Ophthalmoplegia Induced by Herpes Zoster Ophthalmicus + +Fumitaka Shimizu; Department of Neurology and Clinical Neuroscience, Yamaguchi University Graduate School of Medicine, Japan + +## References + +- T Shima; K Yamashita; K Furuta; . Right-sided herpes zoster ophthalmicus complicated by bilateral third, fourth, and sixth cranial nerve palsies and syndrome of inappropriate antidiuretic hormone secretion.. Intern Med (2024) +- N Yuki. Infectious origins of, and molecular mimicry in, Guillain-Barré and Fisher syndromes.. Lancet Infect Dis (2001) +- AC Rizzo; M Ulivi; N Brunelli; . A case of Miller Fisher syndrome associated with preceding herpes zoster ophthalmicus.. Muscle Nerve (2017) +- CC Wang; JC Shiang; JT Chen; SH Lin. Syndrome of inappropriate secretion of antidiuretic hormone associated with localized herpes zoster ophthalmicus.. J Gen Intern Med (2011) +- S Fujiwara; Y Manabe; Y Nakano; Y Omote; H Narai; K Abe. A case of Miller-Fisher syndrome with syndrome of inappropriate secretion of antidiuretic hormone.. Case Rep Neurol (2021) +- A Benkirane; F London. Miller Fisher syndrome complicated by inappropriate secretion of antidiuretic hormone: a case report.. Acta Neurol Belg (2022) +- T Murakami; A Yoshihara; S Kikuchi; M Yasuda; A Hoshi; Y Ugawa. A patient with Fisher syndrome and pharyngeal-cervical-brachial variant of Guillain-Barré syndrome having a complication of SIADH.. Rinsho Shinkeigaku (2013) +- MN Seleh; MB Khazaeli; RH Wheeler; . Phase I trial of the murine monoclonal anti-GD2 antibody 14G2a in metastatic melanoma.. Cancer Res (1992) \ No newline at end of file diff --git a/tests/data/groundtruth/docling_v2/1349-7235-63-2595.nxml.itxt b/tests/data/groundtruth/docling_v2/1349-7235-63-2595.nxml.itxt new file mode 100644 index 00000000..349cc78e --- /dev/null +++ b/tests/data/groundtruth/docling_v2/1349-7235-63-2595.nxml.itxt @@ -0,0 +1,73 @@ +item-0 at level 0: unspecified: group _root_ + item-1 at level 1: title: An In-depth Single-center Retros ... ion Patients with and without Diabetes + item-2 at level 1: paragraph: Sho Hitomi; Division of Cardiolo ... icine, Iwate Medical University, Japan + item-3 at level 1: text: Objective This study examined va ... ial, particularly in patients with DM. + item-4 at level 1: section_header: Introduction + item-5 at level 2: text: Diabetes mellitus (DM) is widely ... also been employed in such cases (1). + item-6 at level 2: text: Acute myocardial infarction (AMI ... found to have DM as a comorbidity (2). + item-7 at level 2: text: With the widespread adoption of ... o be worse within this population (6). + item-8 at level 1: section_header: Study population + item-9 at level 2: text: The study population comprised p ... he 3rd universal definition of MI (7). + item-10 at level 2: text: AMI was diagnosed based on the e ... hen biomarker values were unavailable. + item-11 at level 1: section_header: Definition + item-12 at level 2: text: The definition of each parameter ... 73 m2 upon admission (12) or dialysis. + item-13 at level 1: section_header: Patient and clinical characteristics + item-14 at level 2: text: The participants were stratified ... s on admission between the two groups. + item-15 at level 1: section_header: Patient management and overall in-hospital outcomes + item-16 at level 2: text: A detailed comparison of the pat ... e frequently than in the non-DM group. + item-17 at level 2: text: Regarding mechanical support, pa ... fidence interval: 1.19-2.93, p=0.007). + item-18 at level 1: section_header: An in-depth analysis of the caus ... hospital deaths and predictive factors + item-19 at level 2: text: The in-hospital mortality rate o ... cal complications remained high (65%). + item-20 at level 2: text: Factors potentially associated w ... g the surviving and deceased patients. + item-21 at level 2: text: The predictors of in-hospital mo ... ” and “a history of stroke” (p=0.006). + item-22 at level 1: section_header: Discussion + item-23 at level 2: text: In Japan, there is a limited amo ... itable for in-depth research analyses. + item-24 at level 2: text: Although previous studies have d ... ion to further improve survival rates. + item-25 at level 2: text: In the DM group, we observed a h ... ures between the DM and non-DM groups. + item-26 at level 2: text: CS continues to be a significant ... outcomes of patients experiencing CS. + item-27 at level 1: section_header: Study limitations + item-28 at level 2: text: Several limitations associated w ... nclude this parameter in our analysis. + item-29 at level 1: section_header: Tables + item-31 at level 1: table with [31x9] + item-31 at level 2: caption: Table 1. A Comparison of Baseline Clinical Characteristics between the DM or Non-DM Groups. + item-33 at level 1: table with [13x9] + item-33 at level 2: caption: Table 2. A Comparison of Patient Management between the Two Groups. + item-35 at level 1: table with [20x13] + item-35 at level 2: caption: Table 3. Comparisons of Clinical Characteristics between AMI Patients Who Survived and Those Who Died from Both the DM and Non-DM Groups. + item-37 at level 1: table with [12x13] + item-37 at level 2: caption: Table 4. Univariate Analyses for In-hospital Death. + item-39 at level 1: table with [12x13] + item-39 at level 2: caption: Table 5. Multivariate Analyses for In-hospital Death. + item-40 at level 1: section_header: Figures + item-42 at level 1: picture + item-42 at level 2: caption: Figure 1. Thirty-day cumulative survival rates in patients with acute myocardial infarction, stratified by DM status. Patients with DM (shown in red) had a significantly lower survival rate than those without DM (shown in blue). + item-44 at level 1: picture + item-44 at level 2: caption: Figure 2. Pie charts illustrating the causes of death in each group reveal differences. In the DM group, a higher percentage of non-cardiac deaths, such as infections, malignancies, strokes, and multiple organ failures, was observed than in the non-DM group (32% vs. 14%, respectively), with a statistically significant difference (p=0.046). Among the six cases of mechanical complications in patients who died in the DM group, there were two cases of ventricular septal rupture (VSR) and four cases of free-wall rupture (FWR). In the non-DM group, out of the 12 cases of mechanical complications in deceased patients, there were 4 cases of VSR, 7 of FMR, and 1 of papillary muscle rupture (PMR). + item-45 at level 1: section_header: References + item-46 at level 1: list: group list + item-47 at level 2: list_item: R Iijima; G Ndrepepa; J Mehilli; ... -eluting stent era.. Am Heart J (2007) + item-48 at level 2: list_item: M Ishihara; M Fujino; H Ogawa; . ... Definition (J-MINUET).. Circ J (2015) + item-49 at level 2: list_item: Y Ozaki; H Hara; Y Onuma; . CVIT ... e 2022.. Cardiovasc Interv Ther (2022) + item-50 at level 2: list_item: VH Schmitt; L Hobohm; T Munzel; ... ial infarction.. Diabetes Metab (2021) + item-51 at level 2: list_item: MB Kahn; RM Cubbon; B Mercer; . ... mporary era.. Diab Vasc Dis Res (2012) + item-52 at level 2: list_item: T Sato; T Ono; Y Morimoto; . Fiv ... llitus.. Cardiovasc Interv Ther (2012) + item-53 at level 2: list_item: K Thygesen; JS Alpert; AS Jaffe; ... ardial infarction.. Circulation (2012) + item-54 at level 2: list_item: PK Whelton; RM Carey; WS Aronow; ... ctice Guidelines.. Hypertension (2018) + item-55 at level 2: list_item: . 2. Classification and diagnosi ... Diabetes - 2020.. Diabetes Care (2020) + item-56 at level 2: list_item: M Kinoshita; K Yokote; H Arai; . ... ses 2017.. J Atheroscler Thromb (2018) + item-57 at level 2: list_item: . Appropriate body-mass index fo ... ntervention strategies.. Lancet (2004) + item-58 at level 2: list_item: PE Stevens; A Levin. Evaluation ... tice guideline.. Ann Intern Med (2013) + item-59 at level 2: list_item: K Kanaoka; S Okayama; K Yoneyama ... -DPC registry analysis.. Circ J (2018) + item-60 at level 2: list_item: B Ahmed; HT Davis; WK Laskey. In ... e, 2000-2010.. J Am Heart Assoc (2014) + item-61 at level 2: list_item: DE Hofsten; BB Logstrup; JE Moll ... nosis.. JACC Cardiovasc Imaging (2009) + item-62 at level 2: list_item: S Rasoul; JP Ottervanger; JR Tim ... l infarction.. Eur J Intern Med (2011) + item-63 at level 2: list_item: RJ Goldberg; JM Gore; JS Alpert; ... ve, 1975 to 1988.. N Engl J Med (1991) + item-64 at level 2: list_item: R Vergara; R Valenti; A Migliori ... ous intervention.. Am J Cardiol (2017) + item-65 at level 2: list_item: U Zeymer; A Vogt; R Zahn; . Pred ... nhausärzte (ALKK).. Eur Heart J (2004) + item-66 at level 2: list_item: C Parco; J Trostler; M Brockmeye ... ure pilot study.. Int J Cardiol (2023) + item-67 at level 2: list_item: B Schrage; K Ibrahim; T Loehn; . ... cardiogenic shock.. Circulation (2019) + item-68 at level 2: list_item: H Singh; RH Mehta; W O'Neill; . ... ience with impella.. Am Heart J (2021) + item-69 at level 2: list_item: WW O'Neill; JL Martin; SR Dixon; ... ntervention.. J Am Coll Cardiol (2007) + item-70 at level 2: list_item: K Thygesen; JS Alpert; AS Jaffe; ... infarction (2018).. Circulation (2018) + item-71 at level 2: list_item: K Thygesen. What's new in the Fo ... ardial infarction?. Eur Heart J (2018) + item-72 at level 2: list_item: M Nakamura; M Yamagishi; T Ueno; ... gistry.. Cardiovasc Interv Ther (2013) \ No newline at end of file diff --git a/tests/data/groundtruth/docling_v2/1349-7235-63-2595.nxml.json b/tests/data/groundtruth/docling_v2/1349-7235-63-2595.nxml.json new file mode 100644 index 00000000..30a4dafc --- /dev/null +++ b/tests/data/groundtruth/docling_v2/1349-7235-63-2595.nxml.json @@ -0,0 +1,24200 @@ +{ + "schema_name": "DoclingDocument", + "version": "1.0.0", + "name": "1349-7235-63-2595", + "origin": { + "mimetype": "text/xml", + "binary_hash": 16307569177310241083, + "filename": "1349-7235-63-2595.nxml" + }, + "furniture": { + "self_ref": "#/furniture", + "children": [], + "name": "_root_", + "label": "unspecified" + }, + "body": { + "self_ref": "#/body", + "children": [ + { + "$ref": "#/texts/0" + }, + { + "$ref": "#/texts/1" + }, + { + "$ref": "#/texts/2" + }, + { + "$ref": "#/texts/3" + }, + { + "$ref": "#/texts/7" + }, + { + "$ref": "#/texts/10" + }, + { + "$ref": "#/texts/12" + }, + { + "$ref": "#/texts/14" + }, + { + "$ref": "#/texts/17" + }, + { + "$ref": "#/texts/21" + }, + { + "$ref": "#/texts/26" + }, + { + "$ref": "#/texts/28" + }, + { + "$ref": "#/texts/29" + }, + { + "$ref": "#/tables/0" + }, + { + "$ref": "#/texts/30" + }, + { + "$ref": "#/tables/1" + }, + { + "$ref": "#/texts/31" + }, + { + "$ref": "#/tables/2" + }, + { + "$ref": "#/texts/32" + }, + { + "$ref": "#/tables/3" + }, + { + "$ref": "#/texts/33" + }, + { + "$ref": "#/tables/4" + }, + { + "$ref": "#/texts/34" + }, + { + "$ref": "#/texts/35" + }, + { + "$ref": "#/pictures/0" + }, + { + "$ref": "#/texts/36" + }, + { + "$ref": "#/pictures/1" + }, + { + "$ref": "#/texts/37" + }, + { + "$ref": "#/groups/0" + } + ], + "name": "_root_", + "label": "unspecified" + }, + "groups": [ + { + "self_ref": "#/groups/0", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/38" + }, + { + "$ref": "#/texts/39" + }, + { + "$ref": "#/texts/40" + }, + { + "$ref": "#/texts/41" + }, + { + "$ref": "#/texts/42" + }, + { + "$ref": "#/texts/43" + }, + { + "$ref": "#/texts/44" + }, + { + "$ref": "#/texts/45" + }, + { + "$ref": "#/texts/46" + }, + { + "$ref": "#/texts/47" + }, + { + "$ref": "#/texts/48" + }, + { + "$ref": "#/texts/49" + }, + { + "$ref": "#/texts/50" + }, + { + "$ref": "#/texts/51" + }, + { + "$ref": "#/texts/52" + }, + { + "$ref": "#/texts/53" + }, + { + "$ref": "#/texts/54" + }, + { + "$ref": "#/texts/55" + }, + { + "$ref": "#/texts/56" + }, + { + "$ref": "#/texts/57" + }, + { + "$ref": "#/texts/58" + }, + { + "$ref": "#/texts/59" + }, + { + "$ref": "#/texts/60" + }, + { + "$ref": "#/texts/61" + }, + { + "$ref": "#/texts/62" + }, + { + "$ref": "#/texts/63" + } + ], + "name": "list", + "label": "list" + } + ], + "texts": [ + { + "self_ref": "#/texts/0", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "title", + "prov": [], + "orig": "An In-depth Single-center Retrospective Assessment of In-hospital Outcomes in Acute Myocardial Infarction Patients with and without Diabetes", + "text": "An In-depth Single-center Retrospective Assessment of In-hospital Outcomes in Acute Myocardial Infarction Patients with and without Diabetes" + }, + { + "self_ref": "#/texts/1", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "paragraph", + "prov": [], + "orig": "Sho Hitomi; Division of Cardiology, Department of Internal Medicine, Iwate Medical University, Japan; Yorihiko Koeda; Division of Cardiology, Department of Internal Medicine, Iwate Medical University, Japan; Kengo Tosaka; Division of Cardiology, Department of Internal Medicine, Iwate Medical University, Japan; Nozomu Kanehama; Division of Cardiology, Department of Internal Medicine, Iwate Medical University, Japan; Masanobu Niiyama; Department of Cardiology, Japanese Red Cross Hachinohe Hospital, Japan; Masaru Ishida; Division of Cardiology, Department of Internal Medicine, Iwate Medical University, Japan; Tomonori Itoh; Division of Cardiology, Department of Internal Medicine, Iwate Medical University, Japan; Yoshihiro Morino; Division of Cardiology, Department of Internal Medicine, Iwate Medical University, Japan", + "text": "Sho Hitomi; Division of Cardiology, Department of Internal Medicine, Iwate Medical University, Japan; Yorihiko Koeda; Division of Cardiology, Department of Internal Medicine, Iwate Medical University, Japan; Kengo Tosaka; Division of Cardiology, Department of Internal Medicine, Iwate Medical University, Japan; Nozomu Kanehama; Division of Cardiology, Department of Internal Medicine, Iwate Medical University, Japan; Masanobu Niiyama; Department of Cardiology, Japanese Red Cross Hachinohe Hospital, Japan; Masaru Ishida; Division of Cardiology, Department of Internal Medicine, Iwate Medical University, Japan; Tomonori Itoh; Division of Cardiology, Department of Internal Medicine, Iwate Medical University, Japan; Yoshihiro Morino; Division of Cardiology, Department of Internal Medicine, Iwate Medical University, Japan" + }, + { + "self_ref": "#/texts/2", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "Objective This study examined variations in in-hospital mortality causes and identified independent mortality predictors among patients with acute myocardial infarction (AMI) with and without diabetes mellitus (DM). Methods We examined factors influencing in-hospital mortality in a single-center retrospective observational study. Separate multivariate analyses were conducted for both groups to identify independent predictors of in-hospital mortality. Patients This study included consecutive patients admitted to Iwate Medical University Hospital between January 2012 and December 2017 with a diagnosis of AMI. Results Of 1,140 patients meeting the AMI criteria (average age: 68.2\u00b112.8 years old, 75% men), 408 (35.8%) had diabetes. The DM group had a 1.87-times higher 30-day mortality rate, a lower prevalence of ST-elevated MI (56.6% vs. 65.3% in non-DM, p=0.004), and more frequent non-cardiac causes of death (32% vs. 14% in non-DM, p=0.046) than the non-DM group. Independent predictors of in-hospital mortality in both groups were cardiogenic shock (CS) [DM: hazard ratio (HR) 6.59, 95% confidence interval (CI) 2.90-14.95; non-DM: HR 4.42, 95% CI 1.99-9.77] and renal dysfunction (DM: HR 5.64, 95% CI 1.59-20.04; non-DM: HR 5.92, 95% CI 1.79-19.53). Among patients with DM, a history of stroke was an additional independent predictor of in-hospital mortality (HR 2.59, 95% CI 1.07-6.31). Conclusion Notable disparities were identified in the causes of death and predictive factors of mortality between these two groups of patients with AMI. To further improve AMI outcomes, individualized management and prioritizing non-cardiac comorbidities during hospitalization may be crucial, particularly in patients with DM.", + "text": "Objective This study examined variations in in-hospital mortality causes and identified independent mortality predictors among patients with acute myocardial infarction (AMI) with and without diabetes mellitus (DM). Methods We examined factors influencing in-hospital mortality in a single-center retrospective observational study. Separate multivariate analyses were conducted for both groups to identify independent predictors of in-hospital mortality. Patients This study included consecutive patients admitted to Iwate Medical University Hospital between January 2012 and December 2017 with a diagnosis of AMI. Results Of 1,140 patients meeting the AMI criteria (average age: 68.2\u00b112.8 years old, 75% men), 408 (35.8%) had diabetes. The DM group had a 1.87-times higher 30-day mortality rate, a lower prevalence of ST-elevated MI (56.6% vs. 65.3% in non-DM, p=0.004), and more frequent non-cardiac causes of death (32% vs. 14% in non-DM, p=0.046) than the non-DM group. Independent predictors of in-hospital mortality in both groups were cardiogenic shock (CS) [DM: hazard ratio (HR) 6.59, 95% confidence interval (CI) 2.90-14.95; non-DM: HR 4.42, 95% CI 1.99-9.77] and renal dysfunction (DM: HR 5.64, 95% CI 1.59-20.04; non-DM: HR 5.92, 95% CI 1.79-19.53). Among patients with DM, a history of stroke was an additional independent predictor of in-hospital mortality (HR 2.59, 95% CI 1.07-6.31). Conclusion Notable disparities were identified in the causes of death and predictive factors of mortality between these two groups of patients with AMI. To further improve AMI outcomes, individualized management and prioritizing non-cardiac comorbidities during hospitalization may be crucial, particularly in patients with DM." + }, + { + "self_ref": "#/texts/3", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/4" + }, + { + "$ref": "#/texts/5" + }, + { + "$ref": "#/texts/6" + } + ], + "label": "section_header", + "prov": [], + "orig": "Introduction", + "text": "Introduction", + "level": 1 + }, + { + "self_ref": "#/texts/4", + "parent": { + "$ref": "#/texts/3" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "Diabetes mellitus (DM) is widely recognized as being associated with poor clinical scenarios across various facets of ischemic heart disease. Indeed, it is a significant risk factor for coronary disease. Furthermore, atherosclerotic changes in coronary arteries tend to exhibit a more extensive distribution in individuals with DM than in those without DM. Following revascularization, a higher occurrence of restenosis or major adverse clinical events is expected in patients with DM than in those without DM during the follow-up period. Drug-eluting stents have also been employed in such cases (1).", + "text": "Diabetes mellitus (DM) is widely recognized as being associated with poor clinical scenarios across various facets of ischemic heart disease. Indeed, it is a significant risk factor for coronary disease. Furthermore, atherosclerotic changes in coronary arteries tend to exhibit a more extensive distribution in individuals with DM than in those without DM. Following revascularization, a higher occurrence of restenosis or major adverse clinical events is expected in patients with DM than in those without DM during the follow-up period. Drug-eluting stents have also been employed in such cases (1)." + }, + { + "self_ref": "#/texts/5", + "parent": { + "$ref": "#/texts/3" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "Acute myocardial infarction (AMI) has remained a significant contributor to mortality worldwide. Based on an observational multicenter registry in Japan, 36.4% of AMI patients were found to have DM as a comorbidity (2).", + "text": "Acute myocardial infarction (AMI) has remained a significant contributor to mortality worldwide. Based on an observational multicenter registry in Japan, 36.4% of AMI patients were found to have DM as a comorbidity (2)." + }, + { + "self_ref": "#/texts/6", + "parent": { + "$ref": "#/texts/3" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "With the widespread adoption of primary coronary intervention (PCI), AMI mortality has substantially declined. The current nationwide registry database in Japan has indicated that the mortality rate could be reduced to less than 3% if AMI patients were to receive primary PCI (3). However, a German study that compared outcomes between 2005 and 2021 highlighted that the rates of in-hospital death remained significantly higher in myocardial infarction (MI) patients with DM than in those without DM, despite an overall reduction in in-hospital mortality (4). Even with the contemporary utilization of primary PCI, patients with DM still experience higher in-hospital mortality than those without DM (5), and the long-term prognosis has also been observed to be worse within this population (6).", + "text": "With the widespread adoption of primary coronary intervention (PCI), AMI mortality has substantially declined. The current nationwide registry database in Japan has indicated that the mortality rate could be reduced to less than 3% if AMI patients were to receive primary PCI (3). However, a German study that compared outcomes between 2005 and 2021 highlighted that the rates of in-hospital death remained significantly higher in myocardial infarction (MI) patients with DM than in those without DM, despite an overall reduction in in-hospital mortality (4). Even with the contemporary utilization of primary PCI, patients with DM still experience higher in-hospital mortality than those without DM (5), and the long-term prognosis has also been observed to be worse within this population (6)." + }, + { + "self_ref": "#/texts/7", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/8" + }, + { + "$ref": "#/texts/9" + } + ], + "label": "section_header", + "prov": [], + "orig": "Study population", + "text": "Study population", + "level": 1 + }, + { + "self_ref": "#/texts/8", + "parent": { + "$ref": "#/texts/7" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "The study population comprised patients admitted to Iwate Medical University Hospital between January 2012 and December 2017 due to AMI, specifically those who met the criteria outlined in the 3rd universal definition of MI (7).", + "text": "The study population comprised patients admitted to Iwate Medical University Hospital between January 2012 and December 2017 due to AMI, specifically those who met the criteria outlined in the 3rd universal definition of MI (7)." + }, + { + "self_ref": "#/texts/9", + "parent": { + "$ref": "#/texts/7" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "AMI was diagnosed based on the evidence of myocardial necrosis in patients with acute myocardial ischemia in a clinical setting. The criteria for detection included the presence of a rise and/or fall in cardiac biomarker values, with at least one value exceeding the 99th percentile upper reference limit. In addition, at least one of the following conditions had to be met: 1) symptoms of ischemia; 2) new or presumed new significant ST-segment-T wave changes or new left bundle branch block; 3) development of a pathological Q wave on an electrocardiogram (ECG); 4) imaging evidence of new loss of viable myocardium or new regional wall motion abnormality; and 5) identification of an intracoronary thrombus by angiography or autopsy. Furthermore, in accordance with the classification of MI (types 1 to 5) as defined by the 3rd universal definition (7), the patients were classified as either type 1, spontaneous MI; type 2, MI secondary to an ischemia imbalance; or MI resulting in death when biomarker values were unavailable.", + "text": "AMI was diagnosed based on the evidence of myocardial necrosis in patients with acute myocardial ischemia in a clinical setting. The criteria for detection included the presence of a rise and/or fall in cardiac biomarker values, with at least one value exceeding the 99th percentile upper reference limit. In addition, at least one of the following conditions had to be met: 1) symptoms of ischemia; 2) new or presumed new significant ST-segment-T wave changes or new left bundle branch block; 3) development of a pathological Q wave on an electrocardiogram (ECG); 4) imaging evidence of new loss of viable myocardium or new regional wall motion abnormality; and 5) identification of an intracoronary thrombus by angiography or autopsy. Furthermore, in accordance with the classification of MI (types 1 to 5) as defined by the 3rd universal definition (7), the patients were classified as either type 1, spontaneous MI; type 2, MI secondary to an ischemia imbalance; or MI resulting in death when biomarker values were unavailable." + }, + { + "self_ref": "#/texts/10", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/11" + } + ], + "label": "section_header", + "prov": [], + "orig": "Definition", + "text": "Definition", + "level": 1 + }, + { + "self_ref": "#/texts/11", + "parent": { + "$ref": "#/texts/10" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "The definition of each parameter used in this study was established by referring to previous studies that are widely regarded as representative in the field. Hypertension was defined (in accordance with the ACC/AHA Stage 2 hypertension guidelines) as a systolic blood pressure of \u2265140 mmHg, a diastolic blood pressure of \u226590 mmHg upon admission, or the use of antihypertensive medication (8). Diabetes was defined as a blood sugar level \u2265200 mg/dL upon admission, an HbA1c level of \u22656.5%, or the administration of diabetes medication (9). For cases that did not meet this definition, fasting blood sugar, daily blood sugar fluctuation, and glucose tolerance tests were not conducted. Dyslipidemia was defined in line with the guidelines in Japan as low-density lipoprotein (LDL)-cholesterol \u2265140 mg/dL or high-density lipoprotein (HDL)-cholesterol <40 mg/dL (10) and included a total cholesterol level of \u2265240 mg/dL or the administration of lipid-lowering drugs. A history of ischemic heart disease was defined as a history of AMI or revascularization (PCI or CABG). A current smoking habit was defined as smoking within the year prior to admission. A history of stroke was defined as any past stroke that required hospitalization, including cerebral infarction and intracranial hemorrhaging. Consequently, incidental asymptomatic lacunar infarctions identified on imaging were excluded. Atrial fibrillation was defined as any history of treatment, regardless of whether it was chronic or paroxysmal, or any evidence of atrial fibrillation found on previous Holter monitoring or a 12-lead ECG. Cases of transient paroxysmal atrial fibrillation observed during hospitalization without a previous record were not included. However, those with consistent atrial fibrillation waveforms upon admission, even without prior records, were included. Obesity was defined as a body mass index (BMI) \u226525.0 kg/m2 or higher upon admission (11). Renal dysfunction was defined as an estimated glomerular filtration rate (eGFR) of <60 mL/min/1.73 m2 upon admission (12) or dialysis.", + "text": "The definition of each parameter used in this study was established by referring to previous studies that are widely regarded as representative in the field. Hypertension was defined (in accordance with the ACC/AHA Stage 2 hypertension guidelines) as a systolic blood pressure of \u2265140 mmHg, a diastolic blood pressure of \u226590 mmHg upon admission, or the use of antihypertensive medication (8). Diabetes was defined as a blood sugar level \u2265200 mg/dL upon admission, an HbA1c level of \u22656.5%, or the administration of diabetes medication (9). For cases that did not meet this definition, fasting blood sugar, daily blood sugar fluctuation, and glucose tolerance tests were not conducted. Dyslipidemia was defined in line with the guidelines in Japan as low-density lipoprotein (LDL)-cholesterol \u2265140 mg/dL or high-density lipoprotein (HDL)-cholesterol <40 mg/dL (10) and included a total cholesterol level of \u2265240 mg/dL or the administration of lipid-lowering drugs. A history of ischemic heart disease was defined as a history of AMI or revascularization (PCI or CABG). A current smoking habit was defined as smoking within the year prior to admission. A history of stroke was defined as any past stroke that required hospitalization, including cerebral infarction and intracranial hemorrhaging. Consequently, incidental asymptomatic lacunar infarctions identified on imaging were excluded. Atrial fibrillation was defined as any history of treatment, regardless of whether it was chronic or paroxysmal, or any evidence of atrial fibrillation found on previous Holter monitoring or a 12-lead ECG. Cases of transient paroxysmal atrial fibrillation observed during hospitalization without a previous record were not included. However, those with consistent atrial fibrillation waveforms upon admission, even without prior records, were included. Obesity was defined as a body mass index (BMI) \u226525.0 kg/m2 or higher upon admission (11). Renal dysfunction was defined as an estimated glomerular filtration rate (eGFR) of <60 mL/min/1.73 m2 upon admission (12) or dialysis." + }, + { + "self_ref": "#/texts/12", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/13" + } + ], + "label": "section_header", + "prov": [], + "orig": "Patient and clinical characteristics", + "text": "Patient and clinical characteristics", + "level": 1 + }, + { + "self_ref": "#/texts/13", + "parent": { + "$ref": "#/texts/12" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "The participants were stratified into two groups based on the presence of DM. Table 1 shows a comparison of the baseline clinical characteristics between the DM and non-DM groups. The DM group had a significantly higher BMI and a higher prevalence of hyperlipidemia than the non-DM group. In contrast, a current smoking habit and hypertension were significantly more prevalent in the non-DM group than in the DM group. Regarding the history of major vascular diseases, a history of coronary artery disease or stroke was significantly more frequent in the DM group than in the non-DM group. Importantly, the frequency of cardiac arrest on admission was significantly higher in the DM group than in the non-DM group, despite no apparent differences in systolic and diastolic blood pressure values on admission between the two groups.", + "text": "The participants were stratified into two groups based on the presence of DM. Table 1 shows a comparison of the baseline clinical characteristics between the DM and non-DM groups. The DM group had a significantly higher BMI and a higher prevalence of hyperlipidemia than the non-DM group. In contrast, a current smoking habit and hypertension were significantly more prevalent in the non-DM group than in the DM group. Regarding the history of major vascular diseases, a history of coronary artery disease or stroke was significantly more frequent in the DM group than in the non-DM group. Importantly, the frequency of cardiac arrest on admission was significantly higher in the DM group than in the non-DM group, despite no apparent differences in systolic and diastolic blood pressure values on admission between the two groups." + }, + { + "self_ref": "#/texts/14", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/15" + }, + { + "$ref": "#/texts/16" + } + ], + "label": "section_header", + "prov": [], + "orig": "Patient management and overall in-hospital outcomes", + "text": "Patient management and overall in-hospital outcomes", + "level": 1 + }, + { + "self_ref": "#/texts/15", + "parent": { + "$ref": "#/texts/14" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "A detailed comparison of the patient management strategies is presented in Table 2. In the DM group, emergent coronary angiography and PCI were performed significantly less frequently than in the non-DM group. In addition, the prevalence of lesions involving the left main coronary artery was significantly higher in the DM group than in the non-DM group. Furthermore, patients in the DM group underwent CABG significantly more frequently than in the non-DM group.", + "text": "A detailed comparison of the patient management strategies is presented in Table 2. In the DM group, emergent coronary angiography and PCI were performed significantly less frequently than in the non-DM group. In addition, the prevalence of lesions involving the left main coronary artery was significantly higher in the DM group than in the non-DM group. Furthermore, patients in the DM group underwent CABG significantly more frequently than in the non-DM group." + }, + { + "self_ref": "#/texts/16", + "parent": { + "$ref": "#/texts/14" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "Regarding mechanical support, patients in the DM group received significantly more frequent treatments with mechanical ventilation, intra-aortic balloon pump, and veno-atrial extracorporeal membrane oxygenation than in the non-DM group. As a result, in-hospital mortality was significantly higher and the length of hospital stay significantly longer in the DM group than in the non-DM group. The Kaplan-Meier survival curve of in-hospital mortality (within 30 days after admission), illustrated in Fig. 1, shows a significant difference between the two groups. The HR for in-hospital mortality in the DM group was 1.87 (95% confidence interval: 1.19-2.93, p=0.007).", + "text": "Regarding mechanical support, patients in the DM group received significantly more frequent treatments with mechanical ventilation, intra-aortic balloon pump, and veno-atrial extracorporeal membrane oxygenation than in the non-DM group. As a result, in-hospital mortality was significantly higher and the length of hospital stay significantly longer in the DM group than in the non-DM group. The Kaplan-Meier survival curve of in-hospital mortality (within 30 days after admission), illustrated in Fig. 1, shows a significant difference between the two groups. The HR for in-hospital mortality in the DM group was 1.87 (95% confidence interval: 1.19-2.93, p=0.007)." + }, + { + "self_ref": "#/texts/17", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/18" + }, + { + "$ref": "#/texts/19" + }, + { + "$ref": "#/texts/20" + } + ], + "label": "section_header", + "prov": [], + "orig": "An in-depth analysis of the causes of in-hospital deaths and predictive factors", + "text": "An in-depth analysis of the causes of in-hospital deaths and predictive factors", + "level": 1 + }, + { + "self_ref": "#/texts/18", + "parent": { + "$ref": "#/texts/17" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "The in-hospital mortality rate of the 1,140 patients included in this study was 6.6%. A comparison of the causes of in-hospital death between the two groups is shown in Fig. 2. Nearly half of the causes were attributed to cardiogenic shock (CS) in both groups. However, the remaining causes of death appeared to differ between the two groups, particularly in terms of mechanical complications, infection, and malignant disease. When comparing the causes of death, a higher proportion of non-cardiac deaths (including infections, malignancies, strokes, and multiple organ failures) were observed in the DM group than in the non-DM group (32% vs. 14%, p=0.046, respectively). Deaths due to mechanical complications were more frequent in the non-DM group than in the DM group; however, the difference was not statistically significant (DM: 16% vs. non-DM: 32%, p=0.119). When examining the relationship between the timing of death and its causes, it was found that, for both groups, the majority of deaths until the third clinical day were predominantly due to CS or mechanical complications. However, regarding the causes of death after the tenth clinical day, in the DM group, the proportion of deaths attributed to CS or mechanical complications was <30%, with a greater number of patients dying from other causes, such as lethal arrhythmias, cerebral infarction, infections, and malignancies. In contrast, in the non-DM group, the proportion of patients dying from CS or mechanical complications remained high (65%).", + "text": "The in-hospital mortality rate of the 1,140 patients included in this study was 6.6%. A comparison of the causes of in-hospital death between the two groups is shown in Fig. 2. Nearly half of the causes were attributed to cardiogenic shock (CS) in both groups. However, the remaining causes of death appeared to differ between the two groups, particularly in terms of mechanical complications, infection, and malignant disease. When comparing the causes of death, a higher proportion of non-cardiac deaths (including infections, malignancies, strokes, and multiple organ failures) were observed in the DM group than in the non-DM group (32% vs. 14%, p=0.046, respectively). Deaths due to mechanical complications were more frequent in the non-DM group than in the DM group; however, the difference was not statistically significant (DM: 16% vs. non-DM: 32%, p=0.119). When examining the relationship between the timing of death and its causes, it was found that, for both groups, the majority of deaths until the third clinical day were predominantly due to CS or mechanical complications. However, regarding the causes of death after the tenth clinical day, in the DM group, the proportion of deaths attributed to CS or mechanical complications was <30%, with a greater number of patients dying from other causes, such as lethal arrhythmias, cerebral infarction, infections, and malignancies. In contrast, in the non-DM group, the proportion of patients dying from CS or mechanical complications remained high (65%)." + }, + { + "self_ref": "#/texts/19", + "parent": { + "$ref": "#/texts/17" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "Factors potentially associated with in-hospital mortality were individually compared between those who survived and those who died in both the DM and non-DM groups (Table 3). In the DM group, statistically significant differences were observed in the age, hypertension, current smoking habit, history of stroke, Killip status, ejection fraction on admission, renal dysfunction (eGFR <60 mL/min/1.73 m2), and serum BNP levels between the survival and in-hospital death subgroups. However, these factors showed slight variation in the non-DM group. Interestingly, the sex, history of atrial fibrillation, and ST elevation were also found to be significantly different factors in the non-DM group. Notably, in the non-DM group, a history of stroke no longer had a significant impact on in-hospital death when comparing the surviving and deceased patients.", + "text": "Factors potentially associated with in-hospital mortality were individually compared between those who survived and those who died in both the DM and non-DM groups (Table 3). In the DM group, statistically significant differences were observed in the age, hypertension, current smoking habit, history of stroke, Killip status, ejection fraction on admission, renal dysfunction (eGFR <60 mL/min/1.73 m2), and serum BNP levels between the survival and in-hospital death subgroups. However, these factors showed slight variation in the non-DM group. Interestingly, the sex, history of atrial fibrillation, and ST elevation were also found to be significantly different factors in the non-DM group. Notably, in the non-DM group, a history of stroke no longer had a significant impact on in-hospital death when comparing the surviving and deceased patients." + }, + { + "self_ref": "#/texts/20", + "parent": { + "$ref": "#/texts/17" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "The predictors of in-hospital mortality for both the DM and non-DM groups were analyzed separately using univariate analyses, and the results are shown in Table 4. Any factors found to be statistically significant in the univariate analyses in either group were included in the Cox's proportional hazards model to identify independent predictors of in-hospital death, as shown in Table 5. Consequently, CS, renal dysfunction, and a history of stroke independently predicted in-hospital mortality in the DM group. Conversely, CS and renal dysfunction were independent predictors of in-hospital mortality in the non-DM group. Furthermore, in the non-DM group, patients who underwent revascularization (emergency PCI or CABG) had a lower risk of in-hospital mortality than those who did not, but this difference was not statistically significant in the DM group. An interaction test for in-hospital death using a two-way analysis of variance showed that there was an interaction between \u201cDM\u201d and \u201ca history of stroke\u201d (p=0.006).", + "text": "The predictors of in-hospital mortality for both the DM and non-DM groups were analyzed separately using univariate analyses, and the results are shown in Table 4. Any factors found to be statistically significant in the univariate analyses in either group were included in the Cox's proportional hazards model to identify independent predictors of in-hospital death, as shown in Table 5. Consequently, CS, renal dysfunction, and a history of stroke independently predicted in-hospital mortality in the DM group. Conversely, CS and renal dysfunction were independent predictors of in-hospital mortality in the non-DM group. Furthermore, in the non-DM group, patients who underwent revascularization (emergency PCI or CABG) had a lower risk of in-hospital mortality than those who did not, but this difference was not statistically significant in the DM group. An interaction test for in-hospital death using a two-way analysis of variance showed that there was an interaction between \u201cDM\u201d and \u201ca history of stroke\u201d (p=0.006)." + }, + { + "self_ref": "#/texts/21", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/22" + }, + { + "$ref": "#/texts/23" + }, + { + "$ref": "#/texts/24" + }, + { + "$ref": "#/texts/25" + } + ], + "label": "section_header", + "prov": [], + "orig": "Discussion", + "text": "Discussion", + "level": 1 + }, + { + "self_ref": "#/texts/22", + "parent": { + "$ref": "#/texts/21" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "In Japan, there is a limited amount of research regarding predictors of in-hospital mortality for AMI based on the presence or absence of DM or differences in the specific causes of death. Although we have conducted large-scale studies related to AMI in Japan, such as the JROAD registry (13) and the J-PCI Registry (3), these registry surveys are limited in terms of available parameters, and it is speculated that they may not be suitable for in-depth research analyses.", + "text": "In Japan, there is a limited amount of research regarding predictors of in-hospital mortality for AMI based on the presence or absence of DM or differences in the specific causes of death. Although we have conducted large-scale studies related to AMI in Japan, such as the JROAD registry (13) and the J-PCI Registry (3), these registry surveys are limited in terms of available parameters, and it is speculated that they may not be suitable for in-depth research analyses." + }, + { + "self_ref": "#/texts/23", + "parent": { + "$ref": "#/texts/21" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "Although previous studies have documented an adverse prognosis in AMI patients with comorbid diabetes mellitus (5,14,15), our study adds clarity by demonstrating a substantial impact on mortality. Notably, we identified an HR of 1.87 for mortality, even in a cohort in which nearly 85% of the patients underwent invasive strategies. Cardiovascular deaths (including those due to CS, mechanical complications, and lethal arrhythmias) accounted for nearly 85% of in-hospital fatalities in the non-DM group. Conversely, they constituted only 68% of in-hospital deaths in the DM group, signifying a higher prevalence of noncardiovascular causes of mortality in this population. Infections, strokes, and malignancies have emerged as direct causes of death in this subgroup. Considering the systemic nature of disorders in patients with DM, these results are not surprising, but they underscore the importance of comprehensive care or systemic management for this population to further improve survival rates.", + "text": "Although previous studies have documented an adverse prognosis in AMI patients with comorbid diabetes mellitus (5,14,15), our study adds clarity by demonstrating a substantial impact on mortality. Notably, we identified an HR of 1.87 for mortality, even in a cohort in which nearly 85% of the patients underwent invasive strategies. Cardiovascular deaths (including those due to CS, mechanical complications, and lethal arrhythmias) accounted for nearly 85% of in-hospital fatalities in the non-DM group. Conversely, they constituted only 68% of in-hospital deaths in the DM group, signifying a higher prevalence of noncardiovascular causes of mortality in this population. Infections, strokes, and malignancies have emerged as direct causes of death in this subgroup. Considering the systemic nature of disorders in patients with DM, these results are not surprising, but they underscore the importance of comprehensive care or systemic management for this population to further improve survival rates." + }, + { + "self_ref": "#/texts/24", + "parent": { + "$ref": "#/texts/21" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "In the DM group, we observed a higher prevalence of an advanced Killip status upon admission and a greater frequency of mechanical cardiac support devices than in the non-DM group. Consequently, the patients' conditions tended to deteriorate further from the time of admission than in the non-DM group. Nevertheless, the DM group exhibited lower actual rates of both coronary angiography and revascularization than the non-DM group, similar to a previous report (16). The lower frequency of ST-elevation MI and an increased possibility of asymptomatic patients, concerns related to an impaired renal function, as well as the use of contrast agents may partially explain the lower rate of emergent angiography. The higher frequency of left main coronary artery involvement in the DM group than in the non-DM group led to the reduced use of PCI and increased use of CABG. These factors are hypothesized to not only influence the lower frequency of revascularization procedures but also explain the divergent prognostic outcomes of these procedures between the DM and non-DM groups.", + "text": "In the DM group, we observed a higher prevalence of an advanced Killip status upon admission and a greater frequency of mechanical cardiac support devices than in the non-DM group. Consequently, the patients' conditions tended to deteriorate further from the time of admission than in the non-DM group. Nevertheless, the DM group exhibited lower actual rates of both coronary angiography and revascularization than the non-DM group, similar to a previous report (16). The lower frequency of ST-elevation MI and an increased possibility of asymptomatic patients, concerns related to an impaired renal function, as well as the use of contrast agents may partially explain the lower rate of emergent angiography. The higher frequency of left main coronary artery involvement in the DM group than in the non-DM group led to the reduced use of PCI and increased use of CABG. These factors are hypothesized to not only influence the lower frequency of revascularization procedures but also explain the divergent prognostic outcomes of these procedures between the DM and non-DM groups." + }, + { + "self_ref": "#/texts/25", + "parent": { + "$ref": "#/texts/21" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "CS continues to be a significant factor influencing mortality in patients with AMI, as supported by numerous previous studies (17-19). However, our findings revealed that there was no marked difference in the in-hospital mortality between DM and non-DM patients with CS, consistent with a previous study (20). Because the management of CS remains a paramount concern in both groups, alternative approaches, such as the utilization of left ventricle unloading devices (21,22) or intracoronary supersaturated oxygen therapy (23), should be explored to enhance the outcomes of patients experiencing CS.", + "text": "CS continues to be a significant factor influencing mortality in patients with AMI, as supported by numerous previous studies (17-19). However, our findings revealed that there was no marked difference in the in-hospital mortality between DM and non-DM patients with CS, consistent with a previous study (20). Because the management of CS remains a paramount concern in both groups, alternative approaches, such as the utilization of left ventricle unloading devices (21,22) or intracoronary supersaturated oxygen therapy (23), should be explored to enhance the outcomes of patients experiencing CS." + }, + { + "self_ref": "#/texts/26", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/27" + } + ], + "label": "section_header", + "prov": [], + "orig": "Study limitations", + "text": "Study limitations", + "level": 1 + }, + { + "self_ref": "#/texts/27", + "parent": { + "$ref": "#/texts/26" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "Several limitations associated with the present study warrant mention. In this study, diabetes was defined according to criteria established from prior AMI research and existing literature. Intraday glucose variability and oral glucose tolerance tests were not performed, potentially leading to some cases of diabetes or impaired glucose tolerance being categorized as nondiabetic. This limitation was inherent to this study. Furthermore, despite the availability of the latest 4th version of the universal definition (24), we chose to apply the 3rd version of the universal definition (7) in this study. This decision was made because the 3rd definition was used during the recruitment period. However, it is important to acknowledge that the composition of the enrolled patient population may not have substantially differed; therefore, we employed the 3rd universal definition (25). Finally, the door-to-balloon time is a well-established mortality parameter in AMI patients (26). However, our study had a substantial proportion of NSTEMI patients (approximately 40%); therefore, we did not include this parameter in our analysis.", + "text": "Several limitations associated with the present study warrant mention. In this study, diabetes was defined according to criteria established from prior AMI research and existing literature. Intraday glucose variability and oral glucose tolerance tests were not performed, potentially leading to some cases of diabetes or impaired glucose tolerance being categorized as nondiabetic. This limitation was inherent to this study. Furthermore, despite the availability of the latest 4th version of the universal definition (24), we chose to apply the 3rd version of the universal definition (7) in this study. This decision was made because the 3rd definition was used during the recruitment period. However, it is important to acknowledge that the composition of the enrolled patient population may not have substantially differed; therefore, we employed the 3rd universal definition (25). Finally, the door-to-balloon time is a well-established mortality parameter in AMI patients (26). However, our study had a substantial proportion of NSTEMI patients (approximately 40%); therefore, we did not include this parameter in our analysis." + }, + { + "self_ref": "#/texts/28", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "section_header", + "prov": [], + "orig": "Tables", + "text": "Tables", + "level": 1 + }, + { + "self_ref": "#/texts/29", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [], + "orig": "Table 1. A Comparison of Baseline Clinical Characteristics between the DM or Non-DM Groups.", + "text": "Table 1. A Comparison of Baseline Clinical Characteristics between the DM or Non-DM Groups." + }, + { + "self_ref": "#/texts/30", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [], + "orig": "Table 2. A Comparison of Patient Management between the Two Groups.", + "text": "Table 2. A Comparison of Patient Management between the Two Groups." + }, + { + "self_ref": "#/texts/31", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [], + "orig": "Table 3. Comparisons of Clinical Characteristics between AMI Patients Who Survived and Those Who Died from Both the DM and Non-DM Groups.", + "text": "Table 3. Comparisons of Clinical Characteristics between AMI Patients Who Survived and Those Who Died from Both the DM and Non-DM Groups." + }, + { + "self_ref": "#/texts/32", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [], + "orig": "Table 4. Univariate Analyses for In-hospital Death.", + "text": "Table 4. Univariate Analyses for In-hospital Death." + }, + { + "self_ref": "#/texts/33", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [], + "orig": "Table 5. Multivariate Analyses for In-hospital Death.", + "text": "Table 5. Multivariate Analyses for In-hospital Death." + }, + { + "self_ref": "#/texts/34", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "section_header", + "prov": [], + "orig": "Figures", + "text": "Figures", + "level": 1 + }, + { + "self_ref": "#/texts/35", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [], + "orig": "Figure 1. Thirty-day cumulative survival rates in patients with acute myocardial infarction, stratified by DM status. Patients with DM (shown in red) had a significantly lower survival rate than those without DM (shown in blue).", + "text": "Figure 1. Thirty-day cumulative survival rates in patients with acute myocardial infarction, stratified by DM status. Patients with DM (shown in red) had a significantly lower survival rate than those without DM (shown in blue)." + }, + { + "self_ref": "#/texts/36", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [], + "orig": "Figure 2. Pie charts illustrating the causes of death in each group reveal differences. In the DM group, a higher percentage of non-cardiac deaths, such as infections, malignancies, strokes, and multiple organ failures, was observed than in the non-DM group (32% vs. 14%, respectively), with a statistically significant difference (p=0.046). Among the six cases of mechanical complications in patients who died in the DM group, there were two cases of ventricular septal rupture (VSR) and four cases of free-wall rupture (FWR). In the non-DM group, out of the 12 cases of mechanical complications in deceased patients, there were 4 cases of VSR, 7 of FMR, and 1 of papillary muscle rupture (PMR).", + "text": "Figure 2. Pie charts illustrating the causes of death in each group reveal differences. In the DM group, a higher percentage of non-cardiac deaths, such as infections, malignancies, strokes, and multiple organ failures, was observed than in the non-DM group (32% vs. 14%, respectively), with a statistically significant difference (p=0.046). Among the six cases of mechanical complications in patients who died in the DM group, there were two cases of ventricular septal rupture (VSR) and four cases of free-wall rupture (FWR). In the non-DM group, out of the 12 cases of mechanical complications in deceased patients, there were 4 cases of VSR, 7 of FMR, and 1 of papillary muscle rupture (PMR)." + }, + { + "self_ref": "#/texts/37", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "section_header", + "prov": [], + "orig": "References", + "text": "References", + "level": 1 + }, + { + "self_ref": "#/texts/38", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "R Iijima; G Ndrepepa; J Mehilli; . Impact of diabetes mellitus on long-term outcomes in the drug-eluting stent era.. Am Heart J (2007)", + "text": "R Iijima; G Ndrepepa; J Mehilli; . Impact of diabetes mellitus on long-term outcomes in the drug-eluting stent era.. Am Heart J (2007)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/39", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "M Ishihara; M Fujino; H Ogawa; . Clinical presentation, management and outcome of Japanese patients with acute myocardial infarction in the troponin era - Japanese Registry of Acute Myocardial Infarction Diagnosed by Universal Definition (J-MINUET).. Circ J (2015)", + "text": "M Ishihara; M Fujino; H Ogawa; . Clinical presentation, management and outcome of Japanese patients with acute myocardial infarction in the troponin era - Japanese Registry of Acute Myocardial Infarction Diagnosed by Universal Definition (J-MINUET).. Circ J (2015)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/40", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "Y Ozaki; H Hara; Y Onuma; . CVIT expert consensus document on primary percutaneous coronary intervention (PCI) for acute myocardial infarction (AMI) update 2022.. Cardiovasc Interv Ther (2022)", + "text": "Y Ozaki; H Hara; Y Onuma; . CVIT expert consensus document on primary percutaneous coronary intervention (PCI) for acute myocardial infarction (AMI) update 2022.. Cardiovasc Interv Ther (2022)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/41", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "VH Schmitt; L Hobohm; T Munzel; P Wenzel; T Gori; K Keller. Impact of diabetes mellitus on mortality rates and outcomes in myocardial infarction.. Diabetes Metab (2021)", + "text": "VH Schmitt; L Hobohm; T Munzel; P Wenzel; T Gori; K Keller. Impact of diabetes mellitus on mortality rates and outcomes in myocardial infarction.. Diabetes Metab (2021)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/42", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "MB Kahn; RM Cubbon; B Mercer; . Association of diabetes with increased all-cause mortality following primary percutaneous coronary intervention for ST-segment elevation myocardial infarction in the contemporary era.. Diab Vasc Dis Res (2012)", + "text": "MB Kahn; RM Cubbon; B Mercer; . Association of diabetes with increased all-cause mortality following primary percutaneous coronary intervention for ST-segment elevation myocardial infarction in the contemporary era.. Diab Vasc Dis Res (2012)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/43", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "T Sato; T Ono; Y Morimoto; . Five-year clinical outcomes after implantation of sirolimus-eluting stents in patients with and without diabetes mellitus.. Cardiovasc Interv Ther (2012)", + "text": "T Sato; T Ono; Y Morimoto; . Five-year clinical outcomes after implantation of sirolimus-eluting stents in patients with and without diabetes mellitus.. Cardiovasc Interv Ther (2012)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/44", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "K Thygesen; JS Alpert; AS Jaffe; . Third universal definition of myocardial infarction.. Circulation (2012)", + "text": "K Thygesen; JS Alpert; AS Jaffe; . Third universal definition of myocardial infarction.. Circulation (2012)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/45", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "PK Whelton; RM Carey; WS Aronow; . 2017 ACC/AHA/AAPA/ABC/ACPM/AGS/APhA/ASH/ASPC/NMA/PCNA guideline for the prevention, detection, evaluation, and management of high blood pressure in adults: executive summary: a report of the American College of Cardiology/American Heart Association Task Force on Clinical Practice Guidelines.. Hypertension (2018)", + "text": "PK Whelton; RM Carey; WS Aronow; . 2017 ACC/AHA/AAPA/ABC/ACPM/AGS/APhA/ASH/ASPC/NMA/PCNA guideline for the prevention, detection, evaluation, and management of high blood pressure in adults: executive summary: a report of the American College of Cardiology/American Heart Association Task Force on Clinical Practice Guidelines.. Hypertension (2018)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/46", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": ". 2. Classification and diagnosis of diabetes: Standards of Medical Care in Diabetes - 2020.. Diabetes Care (2020)", + "text": ". 2. Classification and diagnosis of diabetes: Standards of Medical Care in Diabetes - 2020.. Diabetes Care (2020)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/47", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "M Kinoshita; K Yokote; H Arai; . Japan Atherosclerosis Society (JAS) Guidelines for Prevention of Atherosclerotic Cardiovascular Diseases 2017.. J Atheroscler Thromb (2018)", + "text": "M Kinoshita; K Yokote; H Arai; . Japan Atherosclerosis Society (JAS) Guidelines for Prevention of Atherosclerotic Cardiovascular Diseases 2017.. J Atheroscler Thromb (2018)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/48", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": ". Appropriate body-mass index for Asian populations and its implications for policy and intervention strategies.. Lancet (2004)", + "text": ". Appropriate body-mass index for Asian populations and its implications for policy and intervention strategies.. Lancet (2004)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/49", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "PE Stevens; A Levin. Evaluation and management of chronic kidney disease: synopsis of the kidney disease: improving global outcomes 2012 clinical practice guideline.. Ann Intern Med (2013)", + "text": "PE Stevens; A Levin. Evaluation and management of chronic kidney disease: synopsis of the kidney disease: improving global outcomes 2012 clinical practice guideline.. Ann Intern Med (2013)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/50", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "K Kanaoka; S Okayama; K Yoneyama; . Number of board-certified cardiologists and acute myocardial infarction-related mortality in Japan - JROAD and JROAD-DPC registry analysis.. Circ J (2018)", + "text": "K Kanaoka; S Okayama; K Yoneyama; . Number of board-certified cardiologists and acute myocardial infarction-related mortality in Japan - JROAD and JROAD-DPC registry analysis.. Circ J (2018)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/51", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "B Ahmed; HT Davis; WK Laskey. In-hospital mortality among patients with type 2 diabetes mellitus and acute myocardial infarction: results from the national inpatient sample, 2000-2010.. J Am Heart Assoc (2014)", + "text": "B Ahmed; HT Davis; WK Laskey. In-hospital mortality among patients with type 2 diabetes mellitus and acute myocardial infarction: results from the national inpatient sample, 2000-2010.. J Am Heart Assoc (2014)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/52", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "DE Hofsten; BB Logstrup; JE Moller; PA Pellikka; K Egstrup. Abnormal glucose metabolism in acute myocardial infarction: influence on left ventricular function and prognosis.. JACC Cardiovasc Imaging (2009)", + "text": "DE Hofsten; BB Logstrup; JE Moller; PA Pellikka; K Egstrup. Abnormal glucose metabolism in acute myocardial infarction: influence on left ventricular function and prognosis.. JACC Cardiovasc Imaging (2009)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/53", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "S Rasoul; JP Ottervanger; JR Timmer; S Yokota; MJ de Boer; AW van't Hof. Impact of diabetes on outcome in patients with non-ST-elevation myocardial infarction.. Eur J Intern Med (2011)", + "text": "S Rasoul; JP Ottervanger; JR Timmer; S Yokota; MJ de Boer; AW van't Hof. Impact of diabetes on outcome in patients with non-ST-elevation myocardial infarction.. Eur J Intern Med (2011)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/54", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "RJ Goldberg; JM Gore; JS Alpert; . Cardiogenic shock after acute myocardial infarction. Incidence and mortality from a community-wide perspective, 1975 to 1988.. N Engl J Med (1991)", + "text": "RJ Goldberg; JM Gore; JS Alpert; . Cardiogenic shock after acute myocardial infarction. Incidence and mortality from a community-wide perspective, 1975 to 1988.. N Engl J Med (1991)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/55", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "R Vergara; R Valenti; A Migliorini; . A new risk score to predict long-term cardiac mortality in patients with acute myocardial infarction complicated by cardiogenic shock and treated with primary percutaneous intervention.. Am J Cardiol (2017)", + "text": "R Vergara; R Valenti; A Migliorini; . A new risk score to predict long-term cardiac mortality in patients with acute myocardial infarction complicated by cardiogenic shock and treated with primary percutaneous intervention.. Am J Cardiol (2017)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/56", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "U Zeymer; A Vogt; R Zahn; . Predictors of in-hospital mortality in 1333 patients with acute myocardial infarction complicated by cardiogenic shock treated with primary percutaneous coronary intervention (PCI); results of the primary PCI registry of the Arbeitsgemeinschaft Leitende Kardiologische Krankenhaus\u00e4rzte (ALKK).. Eur Heart J (2004)", + "text": "U Zeymer; A Vogt; R Zahn; . Predictors of in-hospital mortality in 1333 patients with acute myocardial infarction complicated by cardiogenic shock treated with primary percutaneous coronary intervention (PCI); results of the primary PCI registry of the Arbeitsgemeinschaft Leitende Kardiologische Krankenhaus\u00e4rzte (ALKK).. Eur Heart J (2004)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/57", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "C Parco; J Trostler; M Brockmeyer; . Risk-adjusted management in catheterization procedures for non-ST-segment elevation myocardial infarction: a standard operating procedure pilot study.. Int J Cardiol (2023)", + "text": "C Parco; J Trostler; M Brockmeyer; . Risk-adjusted management in catheterization procedures for non-ST-segment elevation myocardial infarction: a standard operating procedure pilot study.. Int J Cardiol (2023)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/58", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "B Schrage; K Ibrahim; T Loehn; . Impella support for acute myocardial infarction complicated by cardiogenic shock.. Circulation (2019)", + "text": "B Schrage; K Ibrahim; T Loehn; . Impella support for acute myocardial infarction complicated by cardiogenic shock.. Circulation (2019)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/59", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "H Singh; RH Mehta; W O'Neill; . Clinical features and outcomes in patients with cardiogenic shock complicating acute myocardial infarction: early vs recent experience with impella.. Am Heart J (2021)", + "text": "H Singh; RH Mehta; W O'Neill; . Clinical features and outcomes in patients with cardiogenic shock complicating acute myocardial infarction: early vs recent experience with impella.. Am Heart J (2021)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/60", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "WW O'Neill; JL Martin; SR Dixon; . Acute Myocardial Infarction with Hyperoxemic Therapy (AMIHOT): a prospective, randomized trial of intracoronary hyperoxemic reperfusion after percutaneous coronary intervention.. J Am Coll Cardiol (2007)", + "text": "WW O'Neill; JL Martin; SR Dixon; . Acute Myocardial Infarction with Hyperoxemic Therapy (AMIHOT): a prospective, randomized trial of intracoronary hyperoxemic reperfusion after percutaneous coronary intervention.. J Am Coll Cardiol (2007)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/61", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "K Thygesen; JS Alpert; AS Jaffe; . Fourth universal definition of myocardial infarction (2018).. Circulation (2018)", + "text": "K Thygesen; JS Alpert; AS Jaffe; . Fourth universal definition of myocardial infarction (2018).. Circulation (2018)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/62", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "K Thygesen. What's new in the Fourth Universal Definition of Myocardial infarction?. Eur Heart J (2018)", + "text": "K Thygesen. What's new in the Fourth Universal Definition of Myocardial infarction?. Eur Heart J (2018)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/63", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "M Nakamura; M Yamagishi; T Ueno; . Current treatment of ST elevation acute myocardial infarction in Japan: door-to-balloon time and total ischemic time from the J-AMI registry.. Cardiovasc Interv Ther (2013)", + "text": "M Nakamura; M Yamagishi; T Ueno; . Current treatment of ST elevation acute myocardial infarction in Japan: door-to-balloon time and total ischemic time from the J-AMI registry.. Cardiovasc Interv Ther (2013)", + "enumerated": false, + "marker": "-" + } + ], + "pictures": [ + { + "self_ref": "#/pictures/0", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "picture", + "prov": [], + "captions": [ + { + "$ref": "#/texts/35" + } + ], + "references": [], + "footnotes": [], + "annotations": [] + }, + { + "self_ref": "#/pictures/1", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "picture", + "prov": [], + "captions": [ + { + "$ref": "#/texts/36" + } + ], + "references": [], + "footnotes": [], + "annotations": [] + } + ], + "tables": [ + { + "self_ref": "#/tables/0", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "table", + "prov": [], + "captions": [ + { + "$ref": "#/texts/29" + } + ], + "references": [], + "footnotes": [], + "data": { + "table_cells": [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "Variables", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "Total (n=1140)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "DM (n=408)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "Non-DM (n=732)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "p value", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nAge (years)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "68.2\u00b112.8", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "68.3\u00b112.1", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "68.0\u00b113.1", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.977", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nSex (male)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "76.0%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "74.8%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "76.6%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.475", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nBMI (kg/m2)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "24.4\u00b14.0", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "25.0\u00b14.2", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "24.0\u00b13.8", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "<0.001", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nObesity (BMI\u226525)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "38.1%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "45.6%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "34.6%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "<0.001", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nDM\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "35.8%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "100%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nHypertension\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "69.9%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "78.7%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "64.9%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "<0.001", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nDyslipidemia\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "51.3%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "62.8%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "44.8%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "<0.001", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nCurrent smoker\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "34.9%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "34.4%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "35.2%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.784", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nHistory of CAD\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "13.5%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "21.4%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "9.0%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "<0.001", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nHistory of stroke\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "11.5%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "15.3%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "9.4%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.005", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nHistory of atrial fibrillation\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "7.9%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "9.1%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "7.2%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.266", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nCPA on admission\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "5.3%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "7.2%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "4.2%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.029", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nSystolic BP on admission (mmHg)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "145\u00b134", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "144\u00b134", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "145\u00b134", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.517", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nDiastolic BP on admission (mmHg)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "85\u00b121", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "83\u00b121", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "86\u00b122", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.027", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nHR on admission (bpm)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "81\u00b119", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "82\u00b120", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "81\u00b119", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.105", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nSTEMI\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "62.2%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "56.6%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "65.3%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.004", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nKillip I-IV (%)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "71.6/14.3/5.5/8.6", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "64.2/16.3/7.9/11.6", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "75.8/13.1/4.1/6.9", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "<0.001", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nLVEF (%)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "51.4\u00b119.7", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "49.6\u00b128.9", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "52.3\u00b111.6", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "<0.001", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nSerum creatinine (mg/dL)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "1.24\u00b11.65", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "1.57\u00b12.12", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "1.06\u00b11.29", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.008", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\neGFR (mL/min/1.73 m2)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "68.0\u00b128.5", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "64.3\u00b133.0", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "70.1\u00b125.5", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.003", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nRenal dysfuncti on (eGFR<60)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "36.9%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "44.4%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "32.8%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "<0.001", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nHemodialysis or CAPD\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "4.4%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "8.1%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "2.3%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "<0.001", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nBlood glucose (mg/dL)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "163\u00b178", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "207\u00b197", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "140\u00b150", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "<0.001", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nHemoglobin A1c (%)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "6.1\u00b11.5", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "7.1\u00b11.5", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "5.6\u00b10.5", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "<0.001", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nTriglyceride (mg/dL)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "127\u00b1111", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "138\u00b1146", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "120\u00b184", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.002", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nTotal cholesterol (mg/dL)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "186\u00b145", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "179\u00b149", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "189\u00b142", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "<0.001", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 27, + "end_row_offset_idx": 28, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nLDL-cholesterol (mg/dL)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 27, + "end_row_offset_idx": 28, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 27, + "end_row_offset_idx": 28, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "115\u00b137", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 27, + "end_row_offset_idx": 28, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 27, + "end_row_offset_idx": 28, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "109\u00b137", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 27, + "end_row_offset_idx": 28, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 27, + "end_row_offset_idx": 28, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "119\u00b137", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 27, + "end_row_offset_idx": 28, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 27, + "end_row_offset_idx": 28, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "<0.001", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 28, + "end_row_offset_idx": 29, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nHDL-cholesterol (mg/dL)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 28, + "end_row_offset_idx": 29, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 28, + "end_row_offset_idx": 29, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "47\u00b114", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 28, + "end_row_offset_idx": 29, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 28, + "end_row_offset_idx": 29, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "45\u00b115", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 28, + "end_row_offset_idx": 29, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 28, + "end_row_offset_idx": 29, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "48\u00b114", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 28, + "end_row_offset_idx": 29, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 28, + "end_row_offset_idx": 29, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "<0.001", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 29, + "end_row_offset_idx": 30, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nL/H ratio\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 29, + "end_row_offset_idx": 30, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 29, + "end_row_offset_idx": 30, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "2.6\u00b11.0", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 29, + "end_row_offset_idx": 30, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 29, + "end_row_offset_idx": 30, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "2.5\u00b11.0", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 29, + "end_row_offset_idx": 30, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 29, + "end_row_offset_idx": 30, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "2.6\u00b11.0", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 29, + "end_row_offset_idx": 30, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 29, + "end_row_offset_idx": 30, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.144", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 30, + "end_row_offset_idx": 31, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nBrain natriuretic peptide (pg/mL)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 30, + "end_row_offset_idx": 31, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 30, + "end_row_offset_idx": 31, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "381\u00b1800", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 30, + "end_row_offset_idx": 31, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 30, + "end_row_offset_idx": 31, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "511\u00b1975", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 30, + "end_row_offset_idx": 31, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 30, + "end_row_offset_idx": 31, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "308\u00b1673", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 30, + "end_row_offset_idx": 31, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 30, + "end_row_offset_idx": 31, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.001", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + "num_rows": 31, + "num_cols": 9, + "grid": [ + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "Variables", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "Total (n=1140)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "DM (n=408)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "Non-DM (n=732)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "p value", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nAge (years)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "68.2\u00b112.8", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "68.3\u00b112.1", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "68.0\u00b113.1", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.977", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nSex (male)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "76.0%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "74.8%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "76.6%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.475", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nBMI (kg/m2)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "24.4\u00b14.0", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "25.0\u00b14.2", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "24.0\u00b13.8", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "<0.001", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nObesity (BMI\u226525)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "38.1%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "45.6%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "34.6%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "<0.001", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nDM\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "35.8%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "100%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nHypertension\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "69.9%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "78.7%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "64.9%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "<0.001", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nDyslipidemia\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "51.3%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "62.8%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "44.8%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "<0.001", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nCurrent smoker\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "34.9%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "34.4%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "35.2%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.784", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nHistory of CAD\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "13.5%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "21.4%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "9.0%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "<0.001", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nHistory of stroke\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "11.5%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "15.3%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "9.4%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.005", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nHistory of atrial fibrillation\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "7.9%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "9.1%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "7.2%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.266", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nCPA on admission\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "5.3%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "7.2%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "4.2%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.029", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nSystolic BP on admission (mmHg)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "145\u00b134", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "144\u00b134", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "145\u00b134", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.517", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nDiastolic BP on admission (mmHg)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "85\u00b121", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "83\u00b121", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "86\u00b122", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.027", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nHR on admission (bpm)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "81\u00b119", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "82\u00b120", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "81\u00b119", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.105", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nSTEMI\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "62.2%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "56.6%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "65.3%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.004", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nKillip I-IV (%)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "71.6/14.3/5.5/8.6", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "64.2/16.3/7.9/11.6", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "75.8/13.1/4.1/6.9", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "<0.001", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nLVEF (%)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "51.4\u00b119.7", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "49.6\u00b128.9", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "52.3\u00b111.6", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "<0.001", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nSerum creatinine (mg/dL)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "1.24\u00b11.65", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "1.57\u00b12.12", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "1.06\u00b11.29", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.008", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\neGFR (mL/min/1.73 m2)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "68.0\u00b128.5", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "64.3\u00b133.0", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "70.1\u00b125.5", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 20, + "end_row_offset_idx": 21, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.003", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nRenal dysfuncti on (eGFR<60)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "36.9%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "44.4%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "32.8%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 21, + "end_row_offset_idx": 22, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "<0.001", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nHemodialysis or CAPD\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "4.4%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "8.1%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "2.3%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 22, + "end_row_offset_idx": 23, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "<0.001", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nBlood glucose (mg/dL)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "163\u00b178", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "207\u00b197", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "140\u00b150", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 23, + "end_row_offset_idx": 24, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "<0.001", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nHemoglobin A1c (%)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "6.1\u00b11.5", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "7.1\u00b11.5", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "5.6\u00b10.5", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 24, + "end_row_offset_idx": 25, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "<0.001", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nTriglyceride (mg/dL)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "127\u00b1111", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "138\u00b1146", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "120\u00b184", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 25, + "end_row_offset_idx": 26, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.002", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nTotal cholesterol (mg/dL)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "186\u00b145", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "179\u00b149", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "189\u00b142", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 26, + "end_row_offset_idx": 27, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "<0.001", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 27, + "end_row_offset_idx": 28, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nLDL-cholesterol (mg/dL)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 27, + "end_row_offset_idx": 28, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 27, + "end_row_offset_idx": 28, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "115\u00b137", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 27, + "end_row_offset_idx": 28, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 27, + "end_row_offset_idx": 28, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "109\u00b137", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 27, + "end_row_offset_idx": 28, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 27, + "end_row_offset_idx": 28, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "119\u00b137", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 27, + "end_row_offset_idx": 28, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 27, + "end_row_offset_idx": 28, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "<0.001", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 28, + "end_row_offset_idx": 29, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nHDL-cholesterol (mg/dL)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 28, + "end_row_offset_idx": 29, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 28, + "end_row_offset_idx": 29, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "47\u00b114", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 28, + "end_row_offset_idx": 29, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 28, + "end_row_offset_idx": 29, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "45\u00b115", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 28, + "end_row_offset_idx": 29, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 28, + "end_row_offset_idx": 29, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "48\u00b114", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 28, + "end_row_offset_idx": 29, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 28, + "end_row_offset_idx": 29, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "<0.001", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 29, + "end_row_offset_idx": 30, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nL/H ratio\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 29, + "end_row_offset_idx": 30, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 29, + "end_row_offset_idx": 30, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "2.6\u00b11.0", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 29, + "end_row_offset_idx": 30, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 29, + "end_row_offset_idx": 30, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "2.5\u00b11.0", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 29, + "end_row_offset_idx": 30, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 29, + "end_row_offset_idx": 30, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "2.6\u00b11.0", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 29, + "end_row_offset_idx": 30, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 29, + "end_row_offset_idx": 30, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.144", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 30, + "end_row_offset_idx": 31, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nBrain natriuretic peptide (pg/mL)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 30, + "end_row_offset_idx": 31, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 30, + "end_row_offset_idx": 31, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "381\u00b1800", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 30, + "end_row_offset_idx": 31, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 30, + "end_row_offset_idx": 31, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "511\u00b1975", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 30, + "end_row_offset_idx": 31, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 30, + "end_row_offset_idx": 31, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "308\u00b1673", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 30, + "end_row_offset_idx": 31, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 30, + "end_row_offset_idx": 31, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.001", + "column_header": false, + "row_header": false, + "row_section": false + } + ] + ] + } + }, + { + "self_ref": "#/tables/1", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "table", + "prov": [], + "captions": [ + { + "$ref": "#/texts/30" + } + ], + "references": [], + "footnotes": [], + "data": { + "table_cells": [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "Variables", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "Total (n=1,140)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "DM (n=408)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "Non-DM (n=732)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "p value", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nEmergency coronary angiography\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "87.8%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "84.2%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "89.7%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.007", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nLesion of left main trunk\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "9.7%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "13.9%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "7.3%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.001", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nMultivessel coronary artery disease\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "59.6%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "71.4%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "53.0%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "<0.001", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nEmergency PCI\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "78.4%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "73.8%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "81.0%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.004", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nSlow-flow or no-reflow post PCI\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "14.2%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "16.1%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "13.1%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.203", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nCoronary artery bypass grafting\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "9.2%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "12.3%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "7.5%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.008", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nRespirator\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "10.5%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "14.2%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "8.5%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.004", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nIntra-aortic balloon pumping\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "11.4%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "16.7%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "8.4%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "<0.001", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nVA-ECMO\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "2.0%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "3.3%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "1.3%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.023", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nPeak creatine kinase (IU/L)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "2,198\u00b12,758", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "2,073\u00b12,850", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "2,269\u00b12,705", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.003", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nHospitalization days\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "19\u00b148", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "20\u00b122", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "18\u00b157", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.002", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nIn-hospital mortality\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "6.6%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "9.3%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "5.1%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.005", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + "num_rows": 13, + "num_cols": 9, + "grid": [ + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "Variables", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "Total (n=1,140)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "DM (n=408)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "Non-DM (n=732)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "p value", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nEmergency coronary angiography\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "87.8%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "84.2%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "89.7%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.007", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nLesion of left main trunk\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "9.7%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "13.9%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "7.3%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.001", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nMultivessel coronary artery disease\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "59.6%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "71.4%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "53.0%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "<0.001", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nEmergency PCI\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "78.4%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "73.8%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "81.0%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.004", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nSlow-flow or no-reflow post PCI\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "14.2%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "16.1%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "13.1%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.203", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nCoronary artery bypass grafting\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "9.2%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "12.3%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "7.5%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.008", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nRespirator\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "10.5%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "14.2%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "8.5%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.004", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nIntra-aortic balloon pumping\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "11.4%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "16.7%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "8.4%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "<0.001", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nVA-ECMO\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "2.0%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "3.3%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "1.3%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.023", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nPeak creatine kinase (IU/L)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "2,198\u00b12,758", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "2,073\u00b12,850", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "2,269\u00b12,705", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.003", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nHospitalization days\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "19\u00b148", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "20\u00b122", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "18\u00b157", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.002", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nIn-hospital mortality\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "6.6%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "9.3%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "5.1%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.005", + "column_header": false, + "row_header": false, + "row_section": false + } + ] + ] + } + }, + { + "self_ref": "#/tables/2", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "table", + "prov": [], + "captions": [ + { + "$ref": "#/texts/31" + } + ], + "references": [], + "footnotes": [], + "data": { + "table_cells": [ + { + "row_span": 2, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 2, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "Variables", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 2, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 2, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 5, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 2, + "end_col_offset_idx": 7, + "text": "DM (n=408)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 2, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 2, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 5, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 8, + "end_col_offset_idx": 13, + "text": "Non-DM (n=732)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "Survivors (n=370)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "In-hospital death (n=38)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "p value", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "Survivors (n=695)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "In-hospital death (n=37)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "p value", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nAge (years)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "67.9\u00b112.3", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "72.8\u00b19.6", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.025", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "67.6\u00b113.0", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "75.7\u00b112.7", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "<0.001", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nSex (male)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "74.3%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "78.9%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.532", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "77.6%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "59.5%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.011", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nObesity (BMI\u226525)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "46.1%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "40.5%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.520", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "35.1%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "24.2%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.199", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nHypertension\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "80.3%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "63.2%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.014", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "64.0%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "82.9%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.022", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nDyslipidemia\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "63.3%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "57.9%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.510", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "45.1%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "40.0%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.556", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nCurrent smoker\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "35.9%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "14.3%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.020", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "36.1%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "14.3%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.018", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nHistory of CAD\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "21.9%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "16.2%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.422", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "8.7%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "14.3%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.263", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nHistory of stroke\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "13.8%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "28.6%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.022", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "9.7%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "3.2%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.227", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nHistory of atrial fibrillation\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "8.4%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "15.8%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.130", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "6.1%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "27.8%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "<0.001", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nCardiogenic shock (Killip IV)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "6.5%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "62.2%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "<0.001", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "4.5%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "52.8%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "<0.001", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nSTEMI\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "55.4%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "68.4%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.123", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "64.2%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "86.1%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.007", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nLVEF (%)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "49.5\u00b112.0", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "50.8\u00b189.3", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "<0.001", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "52.7\u00b111.4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "44.2\u00b113.8", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "<0.001", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nBlood glucose (mg/dL)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "200\u00b188", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "282\u00b1149", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.001", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "128\u00b127", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "133\u00b147", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.252", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nRenal dysfunction (eGFR<60)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "40.5%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "81.6%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "<0.001", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "39.6%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "84.8%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "<0.001", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nBrain natriuretic peptide (pg/mL)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "463.6\u00b1935.3", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "972.4\u00b11225.5", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "<0.001", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "279.8\u00b1625.9", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "834.9\u00b11146.0", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "<0.001", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "Revascularization\n(emergency PCI or CABG)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "82.7%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "73.7%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.169", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "86.3%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "62.2%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "<0.001", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\n- Emergency PCI\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "74.1%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "71.1%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.689", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "82.4%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "54.1%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "<0.001", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\n- CABG\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "13.2%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "2.6%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.057", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "7.3%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "10.8%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.435", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + "num_rows": 20, + "num_cols": 13, + "grid": [ + [ + { + "row_span": 2, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 2, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "Variables", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 2, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 2, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 5, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 2, + "end_col_offset_idx": 7, + "text": "DM (n=408)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 5, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 2, + "end_col_offset_idx": 7, + "text": "DM (n=408)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 5, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 2, + "end_col_offset_idx": 7, + "text": "DM (n=408)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 5, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 2, + "end_col_offset_idx": 7, + "text": "DM (n=408)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 5, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 2, + "end_col_offset_idx": 7, + "text": "DM (n=408)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 2, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 2, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 5, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 8, + "end_col_offset_idx": 13, + "text": "Non-DM (n=732)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 5, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 8, + "end_col_offset_idx": 13, + "text": "Non-DM (n=732)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 5, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 8, + "end_col_offset_idx": 13, + "text": "Non-DM (n=732)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 5, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 8, + "end_col_offset_idx": 13, + "text": "Non-DM (n=732)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 5, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 8, + "end_col_offset_idx": 13, + "text": "Non-DM (n=732)", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 2, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 2, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "Variables", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 2, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 2, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "Survivors (n=370)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "In-hospital death (n=38)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "p value", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 2, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 2, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "Survivors (n=695)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "In-hospital death (n=37)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "p value", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nAge (years)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "67.9\u00b112.3", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "72.8\u00b19.6", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.025", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "67.6\u00b113.0", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "75.7\u00b112.7", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "<0.001", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nSex (male)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "74.3%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "78.9%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.532", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "77.6%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "59.5%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.011", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nObesity (BMI\u226525)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "46.1%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "40.5%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.520", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "35.1%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "24.2%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.199", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nHypertension\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "80.3%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "63.2%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.014", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "64.0%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "82.9%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.022", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nDyslipidemia\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "63.3%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "57.9%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.510", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "45.1%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "40.0%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.556", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nCurrent smoker\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "35.9%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "14.3%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.020", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "36.1%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "14.3%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.018", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nHistory of CAD\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "21.9%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "16.2%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.422", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "8.7%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "14.3%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.263", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nHistory of stroke\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "13.8%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "28.6%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.022", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "9.7%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "3.2%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.227", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nHistory of atrial fibrillation\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "8.4%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "15.8%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.130", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "6.1%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "27.8%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "<0.001", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nCardiogenic shock (Killip IV)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "6.5%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "62.2%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "<0.001", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "4.5%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "52.8%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "<0.001", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nSTEMI\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "55.4%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "68.4%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.123", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "64.2%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "86.1%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.007", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nLVEF (%)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "49.5\u00b112.0", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "50.8\u00b189.3", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "<0.001", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "52.7\u00b111.4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "44.2\u00b113.8", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "<0.001", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nBlood glucose (mg/dL)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "200\u00b188", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "282\u00b1149", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.001", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "128\u00b127", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "133\u00b147", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.252", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nRenal dysfunction (eGFR<60)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "40.5%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "81.6%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "<0.001", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "39.6%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "84.8%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "<0.001", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nBrain natriuretic peptide (pg/mL)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "463.6\u00b1935.3", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "972.4\u00b11225.5", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "<0.001", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "279.8\u00b1625.9", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "834.9\u00b11146.0", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "<0.001", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "Revascularization\n(emergency PCI or CABG)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "82.7%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "73.7%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.169", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "86.3%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "62.2%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "<0.001", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\n- Emergency PCI\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "74.1%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "71.1%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.689", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "82.4%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "54.1%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "<0.001", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\n- CABG\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "13.2%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "2.6%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.057", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "7.3%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "10.8%", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 19, + "end_row_offset_idx": 20, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.435", + "column_header": false, + "row_header": false, + "row_section": false + } + ] + ] + } + }, + { + "self_ref": "#/tables/3", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "table", + "prov": [], + "captions": [ + { + "$ref": "#/texts/32" + } + ], + "references": [], + "footnotes": [], + "data": { + "table_cells": [ + { + "row_span": 2, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 2, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "Variables", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 2, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 2, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 5, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 2, + "end_col_offset_idx": 7, + "text": "DM (n=408)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 2, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 2, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 5, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 8, + "end_col_offset_idx": 13, + "text": "Non-DM (n=732)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "HR", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "95%CI", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "p value", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "HR", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "95%CI", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "p value", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nAge (years)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "1.03", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "(0.99-1.06)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.061", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "1.05", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "(1.02-1.08)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.002", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nSex (female)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.77", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "(0.35-1.69)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.517", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "2.10", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "(1.09-4.06)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.028", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nHypertension\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.45", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "(0.23-0.87)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.017", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "2.45", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "(1.02-5.91)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.046", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nHistory of stroke\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "1.90", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "(0.91-3.97)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.087", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.26", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "(0.36-1.93)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.263", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nHistory of atrial fibrillation\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "1.90", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "(0.79-4.58)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.15", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "4.07", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "(1.93-8.55)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "<0.001", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nCardiogenic shock (Killip IV)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "8.84", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "(4.49-17.41)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "<0.001", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "10.82", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "(5.48-21.38)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "<0.001", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nSTEMI\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "1.79", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "(0.90-3.57)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.098", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "2.96", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "(1.15-7.63)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.025", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nLVEF (%)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "1.00", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "(0.99-1.01)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.19", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.96", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "(0.94-0.99)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.002", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nRenal dysfunction (eGFR<60)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "4.30", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "(1.89-9.86)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "<0.001", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "11.32", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "(4.39-29.20)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "<0.001", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "Revascularization\n(emergency PCI or CABG)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.61", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "(0.30-1.25)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.178", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.23", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "(0.12-0.45)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "<0.001", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + "num_rows": 12, + "num_cols": 13, + "grid": [ + [ + { + "row_span": 2, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 2, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "Variables", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 2, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 2, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 5, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 2, + "end_col_offset_idx": 7, + "text": "DM (n=408)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 5, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 2, + "end_col_offset_idx": 7, + "text": "DM (n=408)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 5, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 2, + "end_col_offset_idx": 7, + "text": "DM (n=408)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 5, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 2, + "end_col_offset_idx": 7, + "text": "DM (n=408)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 5, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 2, + "end_col_offset_idx": 7, + "text": "DM (n=408)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 2, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 2, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 5, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 8, + "end_col_offset_idx": 13, + "text": "Non-DM (n=732)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 5, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 8, + "end_col_offset_idx": 13, + "text": "Non-DM (n=732)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 5, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 8, + "end_col_offset_idx": 13, + "text": "Non-DM (n=732)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 5, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 8, + "end_col_offset_idx": 13, + "text": "Non-DM (n=732)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 5, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 8, + "end_col_offset_idx": 13, + "text": "Non-DM (n=732)", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 2, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 2, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "Variables", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 2, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 2, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "HR", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "95%CI", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "p value", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 2, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 2, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "HR", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "95%CI", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "p value", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nAge (years)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "1.03", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "(0.99-1.06)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.061", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "1.05", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "(1.02-1.08)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.002", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nSex (female)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.77", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "(0.35-1.69)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.517", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "2.10", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "(1.09-4.06)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.028", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nHypertension\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.45", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "(0.23-0.87)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.017", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "2.45", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "(1.02-5.91)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.046", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nHistory of stroke\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "1.90", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "(0.91-3.97)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.087", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.26", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "(0.36-1.93)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.263", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nHistory of atrial fibrillation\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "1.90", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "(0.79-4.58)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.15", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "4.07", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "(1.93-8.55)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "<0.001", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nCardiogenic shock (Killip IV)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "8.84", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "(4.49-17.41)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "<0.001", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "10.82", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "(5.48-21.38)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "<0.001", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nSTEMI\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "1.79", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "(0.90-3.57)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.098", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "2.96", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "(1.15-7.63)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.025", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nLVEF (%)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "1.00", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "(0.99-1.01)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.19", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.96", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "(0.94-0.99)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.002", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nRenal dysfunction (eGFR<60)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "4.30", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "(1.89-9.86)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "<0.001", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "11.32", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "(4.39-29.20)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "<0.001", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "Revascularization\n(emergency PCI or CABG)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.61", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "(0.30-1.25)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.178", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.23", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "(0.12-0.45)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "<0.001", + "column_header": false, + "row_header": false, + "row_section": false + } + ] + ] + } + }, + { + "self_ref": "#/tables/4", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "table", + "prov": [], + "captions": [ + { + "$ref": "#/texts/33" + } + ], + "references": [], + "footnotes": [], + "data": { + "table_cells": [ + { + "row_span": 2, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 2, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "Variables", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 2, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 2, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 5, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 2, + "end_col_offset_idx": 7, + "text": "DM (n=408)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 2, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 2, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 5, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 8, + "end_col_offset_idx": 13, + "text": "Non-DM (n=732)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "HR", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "95%CI", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "p value", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "HR", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "95%CI", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "p value", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nAge (years)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.99", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "(0.95-1.03)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.497", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "1.01", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "(0.96-1.04)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.980", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nSex (female)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.78", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "(0.26-2.38)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.668", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "1.40", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "(0.63-3.01)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.406", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nHypertension\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.81", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "(0.34-1.93)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.634", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "1.38", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "(0.53-3.58)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.506", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nHistory of stroke\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "2.59", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "(1.07-6.31)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.036", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.34", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "(0.045-2.61)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.302", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nHistory of atrial fibrillation\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "1.60", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "(0.54-4.76)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.396", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "2.07", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "(0.83-5.19)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.119", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nCardiogenic shock (Killip IV)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "6.59", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "(2.90-14.95)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "<0.001", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "4.42", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "(1.99-9.77)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "<0.001", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nSTEMI\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "1.85", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "(0.71-4.80)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.206", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "2.46", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "(0.89-6.71)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.080", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nLVEF (%)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.98", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "(0.95-1.01)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.160", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.99", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "(0.96-1.02)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.354", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nRenal dysfunction (eGFR<60)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "5.64", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "(1.59-20.04)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.008", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "5.92", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "(1.79-19.53)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.004", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "Revascularization\n(emergency PCI or CABG)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.66", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "(0.28-1.58)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.350", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.24", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "(0.10-0.56)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "<0.001", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + "num_rows": 12, + "num_cols": 13, + "grid": [ + [ + { + "row_span": 2, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 2, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "Variables", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 2, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 2, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 5, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 2, + "end_col_offset_idx": 7, + "text": "DM (n=408)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 5, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 2, + "end_col_offset_idx": 7, + "text": "DM (n=408)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 5, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 2, + "end_col_offset_idx": 7, + "text": "DM (n=408)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 5, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 2, + "end_col_offset_idx": 7, + "text": "DM (n=408)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 5, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 2, + "end_col_offset_idx": 7, + "text": "DM (n=408)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 2, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 2, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 5, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 8, + "end_col_offset_idx": 13, + "text": "Non-DM (n=732)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 5, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 8, + "end_col_offset_idx": 13, + "text": "Non-DM (n=732)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 5, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 8, + "end_col_offset_idx": 13, + "text": "Non-DM (n=732)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 5, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 8, + "end_col_offset_idx": 13, + "text": "Non-DM (n=732)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 5, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 8, + "end_col_offset_idx": 13, + "text": "Non-DM (n=732)", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 2, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 2, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "Variables", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 2, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 2, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "HR", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "95%CI", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "p value", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 2, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 2, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "HR", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "95%CI", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "p value", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nAge (years)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.99", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "(0.95-1.03)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.497", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "1.01", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "(0.96-1.04)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.980", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nSex (female)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.78", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "(0.26-2.38)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.668", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "1.40", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "(0.63-3.01)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.406", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nHypertension\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.81", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "(0.34-1.93)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.634", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "1.38", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "(0.53-3.58)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.506", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nHistory of stroke\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "2.59", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "(1.07-6.31)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.036", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.34", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "(0.045-2.61)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.302", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nHistory of atrial fibrillation\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "1.60", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "(0.54-4.76)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.396", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "2.07", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "(0.83-5.19)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.119", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nCardiogenic shock (Killip IV)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "6.59", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "(2.90-14.95)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "<0.001", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "4.42", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "(1.99-9.77)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "<0.001", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nSTEMI\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "1.85", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "(0.71-4.80)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.206", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "2.46", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "(0.89-6.71)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.080", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nLVEF (%)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.98", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "(0.95-1.01)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.160", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.99", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "(0.96-1.02)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.354", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "\nRenal dysfunction (eGFR<60)\n", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "5.64", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "(1.59-20.04)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.008", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "5.92", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "(1.79-19.53)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0.004", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "Revascularization\n(emergency PCI or CABG)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.66", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "(0.28-1.58)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0.350", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.24", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "(0.10-0.56)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "<0.001", + "column_header": false, + "row_header": false, + "row_section": false + } + ] + ] + } + } + ], + "key_value_items": [], + "pages": {} +} \ No newline at end of file diff --git a/tests/data/groundtruth/docling_v2/1349-7235-63-2595.nxml.md b/tests/data/groundtruth/docling_v2/1349-7235-63-2595.nxml.md new file mode 100644 index 00000000..4a1cfc70 --- /dev/null +++ b/tests/data/groundtruth/docling_v2/1349-7235-63-2595.nxml.md @@ -0,0 +1,204 @@ +# An In-depth Single-center Retrospective Assessment of In-hospital Outcomes in Acute Myocardial Infarction Patients with and without Diabetes + +Sho Hitomi; Division of Cardiology, Department of Internal Medicine, Iwate Medical University, Japan; Yorihiko Koeda; Division of Cardiology, Department of Internal Medicine, Iwate Medical University, Japan; Kengo Tosaka; Division of Cardiology, Department of Internal Medicine, Iwate Medical University, Japan; Nozomu Kanehama; Division of Cardiology, Department of Internal Medicine, Iwate Medical University, Japan; Masanobu Niiyama; Department of Cardiology, Japanese Red Cross Hachinohe Hospital, Japan; Masaru Ishida; Division of Cardiology, Department of Internal Medicine, Iwate Medical University, Japan; Tomonori Itoh; Division of Cardiology, Department of Internal Medicine, Iwate Medical University, Japan; Yoshihiro Morino; Division of Cardiology, Department of Internal Medicine, Iwate Medical University, Japan + +Objective This study examined variations in in-hospital mortality causes and identified independent mortality predictors among patients with acute myocardial infarction (AMI) with and without diabetes mellitus (DM). Methods We examined factors influencing in-hospital mortality in a single-center retrospective observational study. Separate multivariate analyses were conducted for both groups to identify independent predictors of in-hospital mortality. Patients This study included consecutive patients admitted to Iwate Medical University Hospital between January 2012 and December 2017 with a diagnosis of AMI. Results Of 1,140 patients meeting the AMI criteria (average age: 68.2±12.8 years old, 75% men), 408 (35.8%) had diabetes. The DM group had a 1.87-times higher 30-day mortality rate, a lower prevalence of ST-elevated MI (56.6% vs. 65.3% in non-DM, p=0.004), and more frequent non-cardiac causes of death (32% vs. 14% in non-DM, p=0.046) than the non-DM group. Independent predictors of in-hospital mortality in both groups were cardiogenic shock (CS) [DM: hazard ratio (HR) 6.59, 95% confidence interval (CI) 2.90-14.95; non-DM: HR 4.42, 95% CI 1.99-9.77] and renal dysfunction (DM: HR 5.64, 95% CI 1.59-20.04; non-DM: HR 5.92, 95% CI 1.79-19.53). Among patients with DM, a history of stroke was an additional independent predictor of in-hospital mortality (HR 2.59, 95% CI 1.07-6.31). Conclusion Notable disparities were identified in the causes of death and predictive factors of mortality between these two groups of patients with AMI. To further improve AMI outcomes, individualized management and prioritizing non-cardiac comorbidities during hospitalization may be crucial, particularly in patients with DM. + +## Introduction + +Diabetes mellitus (DM) is widely recognized as being associated with poor clinical scenarios across various facets of ischemic heart disease. Indeed, it is a significant risk factor for coronary disease. Furthermore, atherosclerotic changes in coronary arteries tend to exhibit a more extensive distribution in individuals with DM than in those without DM. Following revascularization, a higher occurrence of restenosis or major adverse clinical events is expected in patients with DM than in those without DM during the follow-up period. Drug-eluting stents have also been employed in such cases (1). + +Acute myocardial infarction (AMI) has remained a significant contributor to mortality worldwide. Based on an observational multicenter registry in Japan, 36.4% of AMI patients were found to have DM as a comorbidity (2). + +With the widespread adoption of primary coronary intervention (PCI), AMI mortality has substantially declined. The current nationwide registry database in Japan has indicated that the mortality rate could be reduced to less than 3% if AMI patients were to receive primary PCI (3). However, a German study that compared outcomes between 2005 and 2021 highlighted that the rates of in-hospital death remained significantly higher in myocardial infarction (MI) patients with DM than in those without DM, despite an overall reduction in in-hospital mortality (4). Even with the contemporary utilization of primary PCI, patients with DM still experience higher in-hospital mortality than those without DM (5), and the long-term prognosis has also been observed to be worse within this population (6). + +## Study population + +The study population comprised patients admitted to Iwate Medical University Hospital between January 2012 and December 2017 due to AMI, specifically those who met the criteria outlined in the 3rd universal definition of MI (7). + +AMI was diagnosed based on the evidence of myocardial necrosis in patients with acute myocardial ischemia in a clinical setting. The criteria for detection included the presence of a rise and/or fall in cardiac biomarker values, with at least one value exceeding the 99th percentile upper reference limit. In addition, at least one of the following conditions had to be met: 1) symptoms of ischemia; 2) new or presumed new significant ST-segment-T wave changes or new left bundle branch block; 3) development of a pathological Q wave on an electrocardiogram (ECG); 4) imaging evidence of new loss of viable myocardium or new regional wall motion abnormality; and 5) identification of an intracoronary thrombus by angiography or autopsy. Furthermore, in accordance with the classification of MI (types 1 to 5) as defined by the 3rd universal definition (7), the patients were classified as either type 1, spontaneous MI; type 2, MI secondary to an ischemia imbalance; or MI resulting in death when biomarker values were unavailable. + +## Definition + +The definition of each parameter used in this study was established by referring to previous studies that are widely regarded as representative in the field. Hypertension was defined (in accordance with the ACC/AHA Stage 2 hypertension guidelines) as a systolic blood pressure of ≥140 mmHg, a diastolic blood pressure of ≥90 mmHg upon admission, or the use of antihypertensive medication (8). Diabetes was defined as a blood sugar level ≥200 mg/dL upon admission, an HbA1c level of ≥6.5%, or the administration of diabetes medication (9). For cases that did not meet this definition, fasting blood sugar, daily blood sugar fluctuation, and glucose tolerance tests were not conducted. Dyslipidemia was defined in line with the guidelines in Japan as low-density lipoprotein (LDL)-cholesterol ≥140 mg/dL or high-density lipoprotein (HDL)-cholesterol <40 mg/dL (10) and included a total cholesterol level of ≥240 mg/dL or the administration of lipid-lowering drugs. A history of ischemic heart disease was defined as a history of AMI or revascularization (PCI or CABG). A current smoking habit was defined as smoking within the year prior to admission. A history of stroke was defined as any past stroke that required hospitalization, including cerebral infarction and intracranial hemorrhaging. Consequently, incidental asymptomatic lacunar infarctions identified on imaging were excluded. Atrial fibrillation was defined as any history of treatment, regardless of whether it was chronic or paroxysmal, or any evidence of atrial fibrillation found on previous Holter monitoring or a 12-lead ECG. Cases of transient paroxysmal atrial fibrillation observed during hospitalization without a previous record were not included. However, those with consistent atrial fibrillation waveforms upon admission, even without prior records, were included. Obesity was defined as a body mass index (BMI) ≥25.0 kg/m2 or higher upon admission (11). Renal dysfunction was defined as an estimated glomerular filtration rate (eGFR) of <60 mL/min/1.73 m2 upon admission (12) or dialysis. + +## Patient and clinical characteristics + +The participants were stratified into two groups based on the presence of DM. Table 1 shows a comparison of the baseline clinical characteristics between the DM and non-DM groups. The DM group had a significantly higher BMI and a higher prevalence of hyperlipidemia than the non-DM group. In contrast, a current smoking habit and hypertension were significantly more prevalent in the non-DM group than in the DM group. Regarding the history of major vascular diseases, a history of coronary artery disease or stroke was significantly more frequent in the DM group than in the non-DM group. Importantly, the frequency of cardiac arrest on admission was significantly higher in the DM group than in the non-DM group, despite no apparent differences in systolic and diastolic blood pressure values on admission between the two groups. + +## Patient management and overall in-hospital outcomes + +A detailed comparison of the patient management strategies is presented in Table 2. In the DM group, emergent coronary angiography and PCI were performed significantly less frequently than in the non-DM group. In addition, the prevalence of lesions involving the left main coronary artery was significantly higher in the DM group than in the non-DM group. Furthermore, patients in the DM group underwent CABG significantly more frequently than in the non-DM group. + +Regarding mechanical support, patients in the DM group received significantly more frequent treatments with mechanical ventilation, intra-aortic balloon pump, and veno-atrial extracorporeal membrane oxygenation than in the non-DM group. As a result, in-hospital mortality was significantly higher and the length of hospital stay significantly longer in the DM group than in the non-DM group. The Kaplan-Meier survival curve of in-hospital mortality (within 30 days after admission), illustrated in Fig. 1, shows a significant difference between the two groups. The HR for in-hospital mortality in the DM group was 1.87 (95% confidence interval: 1.19-2.93, p=0.007). + +## An in-depth analysis of the causes of in-hospital deaths and predictive factors + +The in-hospital mortality rate of the 1,140 patients included in this study was 6.6%. A comparison of the causes of in-hospital death between the two groups is shown in Fig. 2. Nearly half of the causes were attributed to cardiogenic shock (CS) in both groups. However, the remaining causes of death appeared to differ between the two groups, particularly in terms of mechanical complications, infection, and malignant disease. When comparing the causes of death, a higher proportion of non-cardiac deaths (including infections, malignancies, strokes, and multiple organ failures) were observed in the DM group than in the non-DM group (32% vs. 14%, p=0.046, respectively). Deaths due to mechanical complications were more frequent in the non-DM group than in the DM group; however, the difference was not statistically significant (DM: 16% vs. non-DM: 32%, p=0.119). When examining the relationship between the timing of death and its causes, it was found that, for both groups, the majority of deaths until the third clinical day were predominantly due to CS or mechanical complications. However, regarding the causes of death after the tenth clinical day, in the DM group, the proportion of deaths attributed to CS or mechanical complications was <30%, with a greater number of patients dying from other causes, such as lethal arrhythmias, cerebral infarction, infections, and malignancies. In contrast, in the non-DM group, the proportion of patients dying from CS or mechanical complications remained high (65%). + +Factors potentially associated with in-hospital mortality were individually compared between those who survived and those who died in both the DM and non-DM groups (Table 3). In the DM group, statistically significant differences were observed in the age, hypertension, current smoking habit, history of stroke, Killip status, ejection fraction on admission, renal dysfunction (eGFR <60 mL/min/1.73 m2), and serum BNP levels between the survival and in-hospital death subgroups. However, these factors showed slight variation in the non-DM group. Interestingly, the sex, history of atrial fibrillation, and ST elevation were also found to be significantly different factors in the non-DM group. Notably, in the non-DM group, a history of stroke no longer had a significant impact on in-hospital death when comparing the surviving and deceased patients. + +The predictors of in-hospital mortality for both the DM and non-DM groups were analyzed separately using univariate analyses, and the results are shown in Table 4. Any factors found to be statistically significant in the univariate analyses in either group were included in the Cox's proportional hazards model to identify independent predictors of in-hospital death, as shown in Table 5. Consequently, CS, renal dysfunction, and a history of stroke independently predicted in-hospital mortality in the DM group. Conversely, CS and renal dysfunction were independent predictors of in-hospital mortality in the non-DM group. Furthermore, in the non-DM group, patients who underwent revascularization (emergency PCI or CABG) had a lower risk of in-hospital mortality than those who did not, but this difference was not statistically significant in the DM group. An interaction test for in-hospital death using a two-way analysis of variance showed that there was an interaction between “DM” and “a history of stroke” (p=0.006). + +## Discussion + +In Japan, there is a limited amount of research regarding predictors of in-hospital mortality for AMI based on the presence or absence of DM or differences in the specific causes of death. Although we have conducted large-scale studies related to AMI in Japan, such as the JROAD registry (13) and the J-PCI Registry (3), these registry surveys are limited in terms of available parameters, and it is speculated that they may not be suitable for in-depth research analyses. + +Although previous studies have documented an adverse prognosis in AMI patients with comorbid diabetes mellitus (5,14,15), our study adds clarity by demonstrating a substantial impact on mortality. Notably, we identified an HR of 1.87 for mortality, even in a cohort in which nearly 85% of the patients underwent invasive strategies. Cardiovascular deaths (including those due to CS, mechanical complications, and lethal arrhythmias) accounted for nearly 85% of in-hospital fatalities in the non-DM group. Conversely, they constituted only 68% of in-hospital deaths in the DM group, signifying a higher prevalence of noncardiovascular causes of mortality in this population. Infections, strokes, and malignancies have emerged as direct causes of death in this subgroup. Considering the systemic nature of disorders in patients with DM, these results are not surprising, but they underscore the importance of comprehensive care or systemic management for this population to further improve survival rates. + +In the DM group, we observed a higher prevalence of an advanced Killip status upon admission and a greater frequency of mechanical cardiac support devices than in the non-DM group. Consequently, the patients' conditions tended to deteriorate further from the time of admission than in the non-DM group. Nevertheless, the DM group exhibited lower actual rates of both coronary angiography and revascularization than the non-DM group, similar to a previous report (16). The lower frequency of ST-elevation MI and an increased possibility of asymptomatic patients, concerns related to an impaired renal function, as well as the use of contrast agents may partially explain the lower rate of emergent angiography. The higher frequency of left main coronary artery involvement in the DM group than in the non-DM group led to the reduced use of PCI and increased use of CABG. These factors are hypothesized to not only influence the lower frequency of revascularization procedures but also explain the divergent prognostic outcomes of these procedures between the DM and non-DM groups. + +CS continues to be a significant factor influencing mortality in patients with AMI, as supported by numerous previous studies (17-19). However, our findings revealed that there was no marked difference in the in-hospital mortality between DM and non-DM patients with CS, consistent with a previous study (20). Because the management of CS remains a paramount concern in both groups, alternative approaches, such as the utilization of left ventricle unloading devices (21,22) or intracoronary supersaturated oxygen therapy (23), should be explored to enhance the outcomes of patients experiencing CS. + +## Study limitations + +Several limitations associated with the present study warrant mention. In this study, diabetes was defined according to criteria established from prior AMI research and existing literature. Intraday glucose variability and oral glucose tolerance tests were not performed, potentially leading to some cases of diabetes or impaired glucose tolerance being categorized as nondiabetic. This limitation was inherent to this study. Furthermore, despite the availability of the latest 4th version of the universal definition (24), we chose to apply the 3rd version of the universal definition (7) in this study. This decision was made because the 3rd definition was used during the recruitment period. However, it is important to acknowledge that the composition of the enrolled patient population may not have substantially differed; therefore, we employed the 3rd universal definition (25). Finally, the door-to-balloon time is a well-established mortality parameter in AMI patients (26). However, our study had a substantial proportion of NSTEMI patients (approximately 40%); therefore, we did not include this parameter in our analysis. + +## Tables + +Table 1. A Comparison of Baseline Clinical Characteristics between the DM or Non-DM Groups. + +| Variables | | Total (n=1140) | | DM (n=408) | | Non-DM (n=732) | | p value | +|-----------------------------------|----|-------------------|----|--------------------|----|-------------------|----|-----------| +| Age (years) | | 68.2±12.8 | | 68.3±12.1 | | 68.0±13.1 | | 0.977 | +| Sex (male) | | 76.0% | | 74.8% | | 76.6% | | 0.475 | +| BMI (kg/m2) | | 24.4±4.0 | | 25.0±4.2 | | 24.0±3.8 | | <0.001 | +| Obesity (BMI≥25) | | 38.1% | | 45.6% | | 34.6% | | <0.001 | +| DM | | 35.8% | | 100% | | 0 | | | +| Hypertension | | 69.9% | | 78.7% | | 64.9% | | <0.001 | +| Dyslipidemia | | 51.3% | | 62.8% | | 44.8% | | <0.001 | +| Current smoker | | 34.9% | | 34.4% | | 35.2% | | 0.784 | +| History of CAD | | 13.5% | | 21.4% | | 9.0% | | <0.001 | +| History of stroke | | 11.5% | | 15.3% | | 9.4% | | 0.005 | +| History of atrial fibrillation | | 7.9% | | 9.1% | | 7.2% | | 0.266 | +| CPA on admission | | 5.3% | | 7.2% | | 4.2% | | 0.029 | +| Systolic BP on admission (mmHg) | | 145±34 | | 144±34 | | 145±34 | | 0.517 | +| Diastolic BP on admission (mmHg) | | 85±21 | | 83±21 | | 86±22 | | 0.027 | +| HR on admission (bpm) | | 81±19 | | 82±20 | | 81±19 | | 0.105 | +| STEMI | | 62.2% | | 56.6% | | 65.3% | | 0.004 | +| Killip I-IV (%) | | 71.6/14.3/5.5/8.6 | | 64.2/16.3/7.9/11.6 | | 75.8/13.1/4.1/6.9 | | <0.001 | +| LVEF (%) | | 51.4±19.7 | | 49.6±28.9 | | 52.3±11.6 | | <0.001 | +| Serum creatinine (mg/dL) | | 1.24±1.65 | | 1.57±2.12 | | 1.06±1.29 | | 0.008 | +| eGFR (mL/min/1.73 m2) | | 68.0±28.5 | | 64.3±33.0 | | 70.1±25.5 | | 0.003 | +| Renal dysfuncti on (eGFR<60) | | 36.9% | | 44.4% | | 32.8% | | <0.001 | +| Hemodialysis or CAPD | | 4.4% | | 8.1% | | 2.3% | | <0.001 | +| Blood glucose (mg/dL) | | 163±78 | | 207±97 | | 140±50 | | <0.001 | +| Hemoglobin A1c (%) | | 6.1±1.5 | | 7.1±1.5 | | 5.6±0.5 | | <0.001 | +| Triglyceride (mg/dL) | | 127±111 | | 138±146 | | 120±84 | | 0.002 | +| Total cholesterol (mg/dL) | | 186±45 | | 179±49 | | 189±42 | | <0.001 | +| LDL-cholesterol (mg/dL) | | 115±37 | | 109±37 | | 119±37 | | <0.001 | +| HDL-cholesterol (mg/dL) | | 47±14 | | 45±15 | | 48±14 | | <0.001 | +| L/H ratio | | 2.6±1.0 | | 2.5±1.0 | | 2.6±1.0 | | 0.144 | +| Brain natriuretic peptide (pg/mL) | | 381±800 | | 511±975 | | 308±673 | | 0.001 | + +Table 2. A Comparison of Patient Management between the Two Groups. + +| Variables | | Total (n=1,140) | | DM (n=408) | | Non-DM (n=732) | | p value | +|-------------------------------------|----|-------------------|----|--------------|----|------------------|----|-----------| +| Emergency coronary angiography | | 87.8% | | 84.2% | | 89.7% | | 0.007 | +| Lesion of left main trunk | | 9.7% | | 13.9% | | 7.3% | | 0.001 | +| Multivessel coronary artery disease | | 59.6% | | 71.4% | | 53.0% | | <0.001 | +| Emergency PCI | | 78.4% | | 73.8% | | 81.0% | | 0.004 | +| Slow-flow or no-reflow post PCI | | 14.2% | | 16.1% | | 13.1% | | 0.203 | +| Coronary artery bypass grafting | | 9.2% | | 12.3% | | 7.5% | | 0.008 | +| Respirator | | 10.5% | | 14.2% | | 8.5% | | 0.004 | +| Intra-aortic balloon pumping | | 11.4% | | 16.7% | | 8.4% | | <0.001 | +| VA-ECMO | | 2.0% | | 3.3% | | 1.3% | | 0.023 | +| Peak creatine kinase (IU/L) | | 2,198±2,758 | | 2,073±2,850 | | 2,269±2,705 | | 0.003 | +| Hospitalization days | | 19±48 | | 20±22 | | 18±57 | | 0.002 | +| In-hospital mortality | | 6.6% | | 9.3% | | 5.1% | | 0.005 | + +Table 3. Comparisons of Clinical Characteristics between AMI Patients Who Survived and Those Who Died from Both the DM and Non-DM Groups. + +| Variables | | DM (n=408) | DM (n=408) | DM (n=408) | DM (n=408) | DM (n=408) | | Non-DM (n=732) | Non-DM (n=732) | Non-DM (n=732) | Non-DM (n=732) | Non-DM (n=732) | +|-------------------------------------------|----|-------------------|--------------|--------------------------|--------------|--------------|----|-------------------|------------------|--------------------------|------------------|------------------| +| Variables | | Survivors (n=370) | | In-hospital death (n=38) | | p value | | Survivors (n=695) | | In-hospital death (n=37) | | p value | +| Age (years) | | 67.9±12.3 | | 72.8±9.6 | | 0.025 | | 67.6±13.0 | | 75.7±12.7 | | <0.001 | +| Sex (male) | | 74.3% | | 78.9% | | 0.532 | | 77.6% | | 59.5% | | 0.011 | +| Obesity (BMI≥25) | | 46.1% | | 40.5% | | 0.520 | | 35.1% | | 24.2% | | 0.199 | +| Hypertension | | 80.3% | | 63.2% | | 0.014 | | 64.0% | | 82.9% | | 0.022 | +| Dyslipidemia | | 63.3% | | 57.9% | | 0.510 | | 45.1% | | 40.0% | | 0.556 | +| Current smoker | | 35.9% | | 14.3% | | 0.020 | | 36.1% | | 14.3% | | 0.018 | +| History of CAD | | 21.9% | | 16.2% | | 0.422 | | 8.7% | | 14.3% | | 0.263 | +| History of stroke | | 13.8% | | 28.6% | | 0.022 | | 9.7% | | 3.2% | | 0.227 | +| History of atrial fibrillation | | 8.4% | | 15.8% | | 0.130 | | 6.1% | | 27.8% | | <0.001 | +| Cardiogenic shock (Killip IV) | | 6.5% | | 62.2% | | <0.001 | | 4.5% | | 52.8% | | <0.001 | +| STEMI | | 55.4% | | 68.4% | | 0.123 | | 64.2% | | 86.1% | | 0.007 | +| LVEF (%) | | 49.5±12.0 | | 50.8±89.3 | | <0.001 | | 52.7±11.4 | | 44.2±13.8 | | <0.001 | +| Blood glucose (mg/dL) | | 200±88 | | 282±149 | | 0.001 | | 128±27 | | 133±47 | | 0.252 | +| Renal dysfunction (eGFR<60) | | 40.5% | | 81.6% | | <0.001 | | 39.6% | | 84.8% | | <0.001 | +| Brain natriuretic peptide (pg/mL) | | 463.6±935.3 | | 972.4±1225.5 | | <0.001 | | 279.8±625.9 | | 834.9±1146.0 | | <0.001 | +| Revascularization (emergency PCI or CABG) | | 82.7% | | 73.7% | | 0.169 | | 86.3% | | 62.2% | | <0.001 | +| - Emergency PCI | | 74.1% | | 71.1% | | 0.689 | | 82.4% | | 54.1% | | <0.001 | +| - CABG | | 13.2% | | 2.6% | | 0.057 | | 7.3% | | 10.8% | | 0.435 | + +Table 4. Univariate Analyses for In-hospital Death. + +| Variables | | DM (n=408) | DM (n=408) | DM (n=408) | DM (n=408) | DM (n=408) | | Non-DM (n=732) | Non-DM (n=732) | Non-DM (n=732) | Non-DM (n=732) | Non-DM (n=732) | +|-------------------------------------------|----|--------------|--------------|--------------|--------------|--------------|----|------------------|------------------|------------------|------------------|------------------| +| Variables | | HR | | 95%CI | | p value | | HR | | 95%CI | | p value | +| Age (years) | | 1.03 | | (0.99-1.06) | | 0.061 | | 1.05 | | (1.02-1.08) | | 0.002 | +| Sex (female) | | 0.77 | | (0.35-1.69) | | 0.517 | | 2.10 | | (1.09-4.06) | | 0.028 | +| Hypertension | | 0.45 | | (0.23-0.87) | | 0.017 | | 2.45 | | (1.02-5.91) | | 0.046 | +| History of stroke | | 1.90 | | (0.91-3.97) | | 0.087 | | 0.26 | | (0.36-1.93) | | 0.263 | +| History of atrial fibrillation | | 1.90 | | (0.79-4.58) | | 0.15 | | 4.07 | | (1.93-8.55) | | <0.001 | +| Cardiogenic shock (Killip IV) | | 8.84 | | (4.49-17.41) | | <0.001 | | 10.82 | | (5.48-21.38) | | <0.001 | +| STEMI | | 1.79 | | (0.90-3.57) | | 0.098 | | 2.96 | | (1.15-7.63) | | 0.025 | +| LVEF (%) | | 1.00 | | (0.99-1.01) | | 0.19 | | 0.96 | | (0.94-0.99) | | 0.002 | +| Renal dysfunction (eGFR<60) | | 4.30 | | (1.89-9.86) | | <0.001 | | 11.32 | | (4.39-29.20) | | <0.001 | +| Revascularization (emergency PCI or CABG) | | 0.61 | | (0.30-1.25) | | 0.178 | | 0.23 | | (0.12-0.45) | | <0.001 | + +Table 5. Multivariate Analyses for In-hospital Death. + +| Variables | | DM (n=408) | DM (n=408) | DM (n=408) | DM (n=408) | DM (n=408) | | Non-DM (n=732) | Non-DM (n=732) | Non-DM (n=732) | Non-DM (n=732) | Non-DM (n=732) | +|-------------------------------------------|----|--------------|--------------|--------------|--------------|--------------|----|------------------|------------------|------------------|------------------|------------------| +| Variables | | HR | | 95%CI | | p value | | HR | | 95%CI | | p value | +| Age (years) | | 0.99 | | (0.95-1.03) | | 0.497 | | 1.01 | | (0.96-1.04) | | 0.980 | +| Sex (female) | | 0.78 | | (0.26-2.38) | | 0.668 | | 1.40 | | (0.63-3.01) | | 0.406 | +| Hypertension | | 0.81 | | (0.34-1.93) | | 0.634 | | 1.38 | | (0.53-3.58) | | 0.506 | +| History of stroke | | 2.59 | | (1.07-6.31) | | 0.036 | | 0.34 | | (0.045-2.61) | | 0.302 | +| History of atrial fibrillation | | 1.60 | | (0.54-4.76) | | 0.396 | | 2.07 | | (0.83-5.19) | | 0.119 | +| Cardiogenic shock (Killip IV) | | 6.59 | | (2.90-14.95) | | <0.001 | | 4.42 | | (1.99-9.77) | | <0.001 | +| STEMI | | 1.85 | | (0.71-4.80) | | 0.206 | | 2.46 | | (0.89-6.71) | | 0.080 | +| LVEF (%) | | 0.98 | | (0.95-1.01) | | 0.160 | | 0.99 | | (0.96-1.02) | | 0.354 | +| Renal dysfunction (eGFR<60) | | 5.64 | | (1.59-20.04) | | 0.008 | | 5.92 | | (1.79-19.53) | | 0.004 | +| Revascularization (emergency PCI or CABG) | | 0.66 | | (0.28-1.58) | | 0.350 | | 0.24 | | (0.10-0.56) | | <0.001 | + +## Figures + +Figure 1. Thirty-day cumulative survival rates in patients with acute myocardial infarction, stratified by DM status. Patients with DM (shown in red) had a significantly lower survival rate than those without DM (shown in blue). + + + +Figure 2. Pie charts illustrating the causes of death in each group reveal differences. In the DM group, a higher percentage of non-cardiac deaths, such as infections, malignancies, strokes, and multiple organ failures, was observed than in the non-DM group (32% vs. 14%, respectively), with a statistically significant difference (p=0.046). Among the six cases of mechanical complications in patients who died in the DM group, there were two cases of ventricular septal rupture (VSR) and four cases of free-wall rupture (FWR). In the non-DM group, out of the 12 cases of mechanical complications in deceased patients, there were 4 cases of VSR, 7 of FMR, and 1 of papillary muscle rupture (PMR). + + + +## References + +- R Iijima; G Ndrepepa; J Mehilli; . Impact of diabetes mellitus on long-term outcomes in the drug-eluting stent era.. Am Heart J (2007) +- M Ishihara; M Fujino; H Ogawa; . Clinical presentation, management and outcome of Japanese patients with acute myocardial infarction in the troponin era - Japanese Registry of Acute Myocardial Infarction Diagnosed by Universal Definition (J-MINUET).. Circ J (2015) +- Y Ozaki; H Hara; Y Onuma; . CVIT expert consensus document on primary percutaneous coronary intervention (PCI) for acute myocardial infarction (AMI) update 2022.. Cardiovasc Interv Ther (2022) +- VH Schmitt; L Hobohm; T Munzel; P Wenzel; T Gori; K Keller. Impact of diabetes mellitus on mortality rates and outcomes in myocardial infarction.. Diabetes Metab (2021) +- MB Kahn; RM Cubbon; B Mercer; . Association of diabetes with increased all-cause mortality following primary percutaneous coronary intervention for ST-segment elevation myocardial infarction in the contemporary era.. Diab Vasc Dis Res (2012) +- T Sato; T Ono; Y Morimoto; . Five-year clinical outcomes after implantation of sirolimus-eluting stents in patients with and without diabetes mellitus.. Cardiovasc Interv Ther (2012) +- K Thygesen; JS Alpert; AS Jaffe; . Third universal definition of myocardial infarction.. Circulation (2012) +- PK Whelton; RM Carey; WS Aronow; . 2017 ACC/AHA/AAPA/ABC/ACPM/AGS/APhA/ASH/ASPC/NMA/PCNA guideline for the prevention, detection, evaluation, and management of high blood pressure in adults: executive summary: a report of the American College of Cardiology/American Heart Association Task Force on Clinical Practice Guidelines.. Hypertension (2018) +- . 2. Classification and diagnosis of diabetes: Standards of Medical Care in Diabetes - 2020.. Diabetes Care (2020) +- M Kinoshita; K Yokote; H Arai; . Japan Atherosclerosis Society (JAS) Guidelines for Prevention of Atherosclerotic Cardiovascular Diseases 2017.. J Atheroscler Thromb (2018) +- . Appropriate body-mass index for Asian populations and its implications for policy and intervention strategies.. Lancet (2004) +- PE Stevens; A Levin. Evaluation and management of chronic kidney disease: synopsis of the kidney disease: improving global outcomes 2012 clinical practice guideline.. Ann Intern Med (2013) +- K Kanaoka; S Okayama; K Yoneyama; . Number of board-certified cardiologists and acute myocardial infarction-related mortality in Japan - JROAD and JROAD-DPC registry analysis.. Circ J (2018) +- B Ahmed; HT Davis; WK Laskey. In-hospital mortality among patients with type 2 diabetes mellitus and acute myocardial infarction: results from the national inpatient sample, 2000-2010.. J Am Heart Assoc (2014) +- DE Hofsten; BB Logstrup; JE Moller; PA Pellikka; K Egstrup. Abnormal glucose metabolism in acute myocardial infarction: influence on left ventricular function and prognosis.. JACC Cardiovasc Imaging (2009) +- S Rasoul; JP Ottervanger; JR Timmer; S Yokota; MJ de Boer; AW van't Hof. Impact of diabetes on outcome in patients with non-ST-elevation myocardial infarction.. Eur J Intern Med (2011) +- RJ Goldberg; JM Gore; JS Alpert; . Cardiogenic shock after acute myocardial infarction. Incidence and mortality from a community-wide perspective, 1975 to 1988.. N Engl J Med (1991) +- R Vergara; R Valenti; A Migliorini; . A new risk score to predict long-term cardiac mortality in patients with acute myocardial infarction complicated by cardiogenic shock and treated with primary percutaneous intervention.. Am J Cardiol (2017) +- U Zeymer; A Vogt; R Zahn; . Predictors of in-hospital mortality in 1333 patients with acute myocardial infarction complicated by cardiogenic shock treated with primary percutaneous coronary intervention (PCI); results of the primary PCI registry of the Arbeitsgemeinschaft Leitende Kardiologische Krankenhausärzte (ALKK).. Eur Heart J (2004) +- C Parco; J Trostler; M Brockmeyer; . Risk-adjusted management in catheterization procedures for non-ST-segment elevation myocardial infarction: a standard operating procedure pilot study.. Int J Cardiol (2023) +- B Schrage; K Ibrahim; T Loehn; . Impella support for acute myocardial infarction complicated by cardiogenic shock.. Circulation (2019) +- H Singh; RH Mehta; W O'Neill; . Clinical features and outcomes in patients with cardiogenic shock complicating acute myocardial infarction: early vs recent experience with impella.. Am Heart J (2021) +- WW O'Neill; JL Martin; SR Dixon; . Acute Myocardial Infarction with Hyperoxemic Therapy (AMIHOT): a prospective, randomized trial of intracoronary hyperoxemic reperfusion after percutaneous coronary intervention.. J Am Coll Cardiol (2007) +- K Thygesen; JS Alpert; AS Jaffe; . Fourth universal definition of myocardial infarction (2018).. Circulation (2018) +- K Thygesen. What's new in the Fourth Universal Definition of Myocardial infarction?. Eur Heart J (2018) +- M Nakamura; M Yamagishi; T Ueno; . Current treatment of ST elevation acute myocardial infarction in Japan: door-to-balloon time and total ischemic time from the J-AMI registry.. Cardiovasc Interv Ther (2013) \ No newline at end of file diff --git a/tests/data/groundtruth/docling_v2/1349-7235-63-2621.nxml.itxt b/tests/data/groundtruth/docling_v2/1349-7235-63-2621.nxml.itxt new file mode 100644 index 00000000..6298fdfc --- /dev/null +++ b/tests/data/groundtruth/docling_v2/1349-7235-63-2621.nxml.itxt @@ -0,0 +1,39 @@ +item-0 at level 0: unspecified: group _root_ + item-1 at level 1: title: The Diversity of Neurological Co ... trospective Case Series of 26 Patients + item-2 at level 1: paragraph: Joe Nemoto; Department of Neurol ... ity Graduate School of Medicine, Japan + item-3 at level 1: text: Objective This study clarified a ... to the distribution of herpes zoster. + item-4 at level 1: section_header: Introduction + item-5 at level 2: text: Varicella zoster virus (VZV) is ... to a single condition remains unclear. + item-6 at level 1: section_header: The diagnosis of herpes zoster + item-7 at level 2: text: The diagnosis of herpes zoster w ... ≥2 from the nadir period to discharge. + item-8 at level 1: section_header: Characteristics of neurological ... rbances in patients with herpes zoster + item-9 at level 2: text: Seventeen (65%) patients receive ... reated and non-steroid-treated groups. + item-10 at level 1: section_header: Relationship between neurological manifestations and herpes zoster + item-11 at level 2: text: The associations between neurolo ... ents with meningitis and encephalitis. + item-12 at level 1: section_header: Neurological disability at nadir + item-13 at level 2: text: Seventeen (65%) patients had sev ... ted to neurological severity (p=0.36). + item-14 at level 1: section_header: Recovery from severe neurological disability + item-15 at level 2: text: Of the 17 severely disabled pati ... e not associated with a good recovery. + item-16 at level 1: section_header: Discussion + item-17 at level 2: text: The proportion of patients with ... e, further investigation is warranted. + item-18 at level 2: text: Our study found that limb paraly ... tant spread across the nervous system. + item-19 at level 2: text: This study showed that increased ... ociated with the neurological outcome. + item-20 at level 2: text: Whether or not steroids are effe ... cal complications associated with VZV. + item-21 at level 1: section_header: Tables + item-23 at level 1: table with [8x13] + item-23 at level 2: caption: Table 1. Association of Location of Herpes Zoster with Neurological Phenotypes. + item-25 at level 1: table with [19x9] + item-25 at level 2: caption: Table 2. Clinical Characteristics of Patients with Severe Neurological Disability Subsequent to Herpes Zoster. + item-27 at level 1: table with [19x9] + item-27 at level 2: caption: Table 3. Comparison between the Clinical Characteristics of Patients with and without Good Recovery from Severely Disabled Condition at Nadir. + item-28 at level 1: section_header: References + item-29 at level 1: list: group list + item-30 at level 2: list_item: K Shiraki; N Toyama; T Daikoku; ... zoster.. Open Forum Infect Dis (2017) + item-31 at level 2: list_item: J Nemoto; T Kanda. Varicella-zos ... al nervous system.. Brain Nerve (2022) + item-32 at level 2: list_item: T Lenfant; AS L'Honneur; B Ranqu ... rebrospinal fluid.. Brain Behav (2022) + item-33 at level 2: list_item: A Mirouse; R Sonneville; K Razaz ... hort study.. Ann Intensive Care (2022) + item-34 at level 2: list_item: Y Ohtsu; Y Susaki; K Noguchi. Ab ... Eur J Drug Metab Pharmacokinet (2018) + item-35 at level 2: list_item: S Takeshima; Y Shiga; T Himeno; ... insho Shinkeigaku (Clin Neurol) (2017) + item-36 at level 2: list_item: L Martinez-Almoyna; T De Broucke ... t version).. Rev Neurol (Paris) (2019) + item-37 at level 2: list_item: T Solomon; BD Michael; PE Smith; ... National Guidelines.. J Infect (2012) + item-38 at level 2: list_item: MA Nagel; D Jones; A Wyborny. Va ... d pathogenesis.. J Neuroimmunol (2017) \ No newline at end of file diff --git a/tests/data/groundtruth/docling_v2/1349-7235-63-2621.nxml.json b/tests/data/groundtruth/docling_v2/1349-7235-63-2621.nxml.json new file mode 100644 index 00000000..973a89f7 --- /dev/null +++ b/tests/data/groundtruth/docling_v2/1349-7235-63-2621.nxml.json @@ -0,0 +1,10880 @@ +{ + "schema_name": "DoclingDocument", + "version": "1.0.0", + "name": "1349-7235-63-2621", + "origin": { + "mimetype": "text/xml", + "binary_hash": 5847949060540513944, + "filename": "1349-7235-63-2621.nxml" + }, + "furniture": { + "self_ref": "#/furniture", + "children": [], + "name": "_root_", + "label": "unspecified" + }, + "body": { + "self_ref": "#/body", + "children": [ + { + "$ref": "#/texts/0" + }, + { + "$ref": "#/texts/1" + }, + { + "$ref": "#/texts/2" + }, + { + "$ref": "#/texts/3" + }, + { + "$ref": "#/texts/5" + }, + { + "$ref": "#/texts/7" + }, + { + "$ref": "#/texts/9" + }, + { + "$ref": "#/texts/11" + }, + { + "$ref": "#/texts/13" + }, + { + "$ref": "#/texts/15" + }, + { + "$ref": "#/texts/20" + }, + { + "$ref": "#/texts/21" + }, + { + "$ref": "#/tables/0" + }, + { + "$ref": "#/texts/22" + }, + { + "$ref": "#/tables/1" + }, + { + "$ref": "#/texts/23" + }, + { + "$ref": "#/tables/2" + }, + { + "$ref": "#/texts/24" + }, + { + "$ref": "#/groups/0" + } + ], + "name": "_root_", + "label": "unspecified" + }, + "groups": [ + { + "self_ref": "#/groups/0", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/25" + }, + { + "$ref": "#/texts/26" + }, + { + "$ref": "#/texts/27" + }, + { + "$ref": "#/texts/28" + }, + { + "$ref": "#/texts/29" + }, + { + "$ref": "#/texts/30" + }, + { + "$ref": "#/texts/31" + }, + { + "$ref": "#/texts/32" + }, + { + "$ref": "#/texts/33" + } + ], + "name": "list", + "label": "list" + } + ], + "texts": [ + { + "self_ref": "#/texts/0", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "title", + "prov": [], + "orig": "The Diversity of Neurological Complications Associated with Herpes Zoster: A Retrospective Case Series of 26 Patients", + "text": "The Diversity of Neurological Complications Associated with Herpes Zoster: A Retrospective Case Series of 26 Patients" + }, + { + "self_ref": "#/texts/1", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "paragraph", + "prov": [], + "orig": "Joe Nemoto; Department of Neurology, Tokuyama Central Hospital, Japan; Department of Neurology and Clinical Neuroscience, Yamaguchi University Graduate School of Medicine, Japan; Jun-ichi Ogasawara; Department of Neurology, Tokuyama Central Hospital, Japan; Michiaki Koga; Department of Neurology and Clinical Neuroscience, Yamaguchi University Graduate School of Medicine, Japan", + "text": "Joe Nemoto; Department of Neurology, Tokuyama Central Hospital, Japan; Department of Neurology and Clinical Neuroscience, Yamaguchi University Graduate School of Medicine, Japan; Jun-ichi Ogasawara; Department of Neurology, Tokuyama Central Hospital, Japan; Michiaki Koga; Department of Neurology and Clinical Neuroscience, Yamaguchi University Graduate School of Medicine, Japan" + }, + { + "self_ref": "#/texts/2", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "Objective This study clarified a variety of neurological phenotypes associated with varicella-zoster virus (VZV) reactivation. Methods This retrospective single-center study included consecutive patients with herpes zoster accompanied by neurological disturbances from April 2016 to September 2022. A comparative analysis was performed to examine whether or not the neurological phenotype and severity were associated with the distribution of herpes zoster, clinical and laboratory findings, and treatments. Results Twenty-six patients with a median age of 74 years old were enrolled. None of the patients had been vaccinated against herpes zoster. Of the 26 patients, 14 (54%) developed monoparesis, 5 (19%) developed meningitis, 5 (19%) developed encephalitis, 1 (4%) developed paraplegia, and 1 (4%) developed bladder and rectal problems. Monoparesis of the upper limb is associated with herpes zoster involving the cervical and thoracic dermatomes, whereas meningitis and encephalitis often occur in patients with herpes zoster in the trigeminal and thoracic dermatomes. Neurological disability was generally severe [modified Rankin Scale (mRS) score \u22653] on admission [17 of 26 (65%) patients]. Good recovery after admission was associated with a lower mRS value before the onset of neurological disability, clinical meningitis, and elevated cell counts and protein levels in the cerebrospinal fluid. Good recoveries were observed in patients with herpes zoster in the trigeminal or thoracic dermatomes more frequently than in other dermatomes. Conclusion This study revealed that VZV-related neurological complications are heterogeneous, commonly leading to severe disability and poor outcomes, and that neurological phenotypes and outcomes are related to the distribution of herpes zoster.", + "text": "Objective This study clarified a variety of neurological phenotypes associated with varicella-zoster virus (VZV) reactivation. Methods This retrospective single-center study included consecutive patients with herpes zoster accompanied by neurological disturbances from April 2016 to September 2022. A comparative analysis was performed to examine whether or not the neurological phenotype and severity were associated with the distribution of herpes zoster, clinical and laboratory findings, and treatments. Results Twenty-six patients with a median age of 74 years old were enrolled. None of the patients had been vaccinated against herpes zoster. Of the 26 patients, 14 (54%) developed monoparesis, 5 (19%) developed meningitis, 5 (19%) developed encephalitis, 1 (4%) developed paraplegia, and 1 (4%) developed bladder and rectal problems. Monoparesis of the upper limb is associated with herpes zoster involving the cervical and thoracic dermatomes, whereas meningitis and encephalitis often occur in patients with herpes zoster in the trigeminal and thoracic dermatomes. Neurological disability was generally severe [modified Rankin Scale (mRS) score \u22653] on admission [17 of 26 (65%) patients]. Good recovery after admission was associated with a lower mRS value before the onset of neurological disability, clinical meningitis, and elevated cell counts and protein levels in the cerebrospinal fluid. Good recoveries were observed in patients with herpes zoster in the trigeminal or thoracic dermatomes more frequently than in other dermatomes. Conclusion This study revealed that VZV-related neurological complications are heterogeneous, commonly leading to severe disability and poor outcomes, and that neurological phenotypes and outcomes are related to the distribution of herpes zoster." + }, + { + "self_ref": "#/texts/3", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/4" + } + ], + "label": "section_header", + "prov": [], + "orig": "Introduction", + "text": "Introduction", + "level": 1 + }, + { + "self_ref": "#/texts/4", + "parent": { + "$ref": "#/texts/3" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "Varicella zoster virus (VZV) is a common pathogen that causes herpes zoster. Most Japanese people are thought to be in a state of latent VZV infection, and one-third of the Japanese population develops herpes zoster associated with reactivation of the virus by 80 years old (1). In addition to herpes zoster, reactivation of VZV is associated with various neurological disorders, including radiculitis, meningitis, and encephalitis (2). The extent of neurological disability varies from person to person; however, neurological recovery is generally incomplete in patients with neurological complications (3). Why neurological phenotypes and extent of neurological disability vary in relation to a single condition remains unclear.", + "text": "Varicella zoster virus (VZV) is a common pathogen that causes herpes zoster. Most Japanese people are thought to be in a state of latent VZV infection, and one-third of the Japanese population develops herpes zoster associated with reactivation of the virus by 80 years old (1). In addition to herpes zoster, reactivation of VZV is associated with various neurological disorders, including radiculitis, meningitis, and encephalitis (2). The extent of neurological disability varies from person to person; however, neurological recovery is generally incomplete in patients with neurological complications (3). Why neurological phenotypes and extent of neurological disability vary in relation to a single condition remains unclear." + }, + { + "self_ref": "#/texts/5", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/6" + } + ], + "label": "section_header", + "prov": [], + "orig": "The diagnosis of herpes zoster", + "text": "The diagnosis of herpes zoster", + "level": 1 + }, + { + "self_ref": "#/texts/6", + "parent": { + "$ref": "#/texts/5" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "The diagnosis of herpes zoster was performed by primary care physicians, dermatologists, or neurologists and was based on visual inspection of the skin rash with or without polymerase chain reaction (PCR) confirmation from swab specimens, although the reactivation of VZV was confirmed by PCR of CSF specimens in previous studies (3,4). Herpes zoster has been observed in the trigeminal, cervical, thoracic, lumbar, and sacral dermatomes. Patients taking immunosuppressant medications and those with a history of diabetes were considered immunocompromised. The following neurological complications were observed: monoparesis, meningitis, encephalitis, paraplegia, and bladder/rectal disturbance. Monoparesis was defined as monoparesis without meningeal irritation, ongoing disturbance of consciousness, or seizures (3). Meningitis was defined as meningeal irritation without ongoing disturbance of consciousness, seizures, or limb paresis (3). Encephalitis was defined as an ongoing disturbance of consciousness or seizures irrespective of meningeal irritation (3). Paraplegia was defined as paraplegia without upper limb paresis, meningeal irritation, ongoing disturbance of consciousness, or seizures. Bladder/rectal disturbances were defined as new-onset subjective bladder or defecation symptoms without paresis, meningeal irritation, ongoing disturbance of consciousness, and seizures. Severe neurological disability was defined as an mRS score \u22653. The nadir period was defined as the period of the most severe neurological symptoms assessed by a neurologist. Good neurological recovery was defined as a decrease in the mRS score of \u22652 from the nadir period to discharge.", + "text": "The diagnosis of herpes zoster was performed by primary care physicians, dermatologists, or neurologists and was based on visual inspection of the skin rash with or without polymerase chain reaction (PCR) confirmation from swab specimens, although the reactivation of VZV was confirmed by PCR of CSF specimens in previous studies (3,4). Herpes zoster has been observed in the trigeminal, cervical, thoracic, lumbar, and sacral dermatomes. Patients taking immunosuppressant medications and those with a history of diabetes were considered immunocompromised. The following neurological complications were observed: monoparesis, meningitis, encephalitis, paraplegia, and bladder/rectal disturbance. Monoparesis was defined as monoparesis without meningeal irritation, ongoing disturbance of consciousness, or seizures (3). Meningitis was defined as meningeal irritation without ongoing disturbance of consciousness, seizures, or limb paresis (3). Encephalitis was defined as an ongoing disturbance of consciousness or seizures irrespective of meningeal irritation (3). Paraplegia was defined as paraplegia without upper limb paresis, meningeal irritation, ongoing disturbance of consciousness, or seizures. Bladder/rectal disturbances were defined as new-onset subjective bladder or defecation symptoms without paresis, meningeal irritation, ongoing disturbance of consciousness, and seizures. Severe neurological disability was defined as an mRS score \u22653. The nadir period was defined as the period of the most severe neurological symptoms assessed by a neurologist. Good neurological recovery was defined as a decrease in the mRS score of \u22652 from the nadir period to discharge." + }, + { + "self_ref": "#/texts/7", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/8" + } + ], + "label": "section_header", + "prov": [], + "orig": "Characteristics of neurological disturbances in patients with herpes zoster", + "text": "Characteristics of neurological disturbances in patients with herpes zoster", + "level": 1 + }, + { + "self_ref": "#/texts/8", + "parent": { + "$ref": "#/texts/7" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "Seventeen (65%) patients received oral antiviral agents before their first visit to the Department of Neurology. Of these patients, eight received amenamevir, an oral antiviral agent that was thought to be unable to cross the blood-brain barrier (5). Every patient received intravenous acyclovir after admission, and intravenous methylprednisolone pulse therapy (1,000 mg/day for 3 days) or oral prednisolone (1 mg/kg body weight/day for 5 days) was administered to 18 (69%) patients. There were no significant differences in the age, sex, CSF findings, or mRS score at each point between the steroid-treated and non-steroid-treated groups.", + "text": "Seventeen (65%) patients received oral antiviral agents before their first visit to the Department of Neurology. Of these patients, eight received amenamevir, an oral antiviral agent that was thought to be unable to cross the blood-brain barrier (5). Every patient received intravenous acyclovir after admission, and intravenous methylprednisolone pulse therapy (1,000 mg/day for 3 days) or oral prednisolone (1 mg/kg body weight/day for 5 days) was administered to 18 (69%) patients. There were no significant differences in the age, sex, CSF findings, or mRS score at each point between the steroid-treated and non-steroid-treated groups." + }, + { + "self_ref": "#/texts/9", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/10" + } + ], + "label": "section_header", + "prov": [], + "orig": "Relationship between neurological manifestations and herpes zoster", + "text": "Relationship between neurological manifestations and herpes zoster", + "level": 1 + }, + { + "self_ref": "#/texts/10", + "parent": { + "$ref": "#/texts/9" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "The associations between neurological phenotypes and herpes zoster distribution are shown in Table 1. Of note, herpes zoster was detected in the cervical and thoracic dermatomes of all 12 patients with upper limb monoparesis, whereas it was detected in the lumbar and sacral dermatomes of all patients with lower limb monoparesis, paraplegia, or bladder/rectal disturbances. Furthermore, herpes zoster was confirmed in the trigeminal or thoracic dermatomes of all patients with meningitis and encephalitis.", + "text": "The associations between neurological phenotypes and herpes zoster distribution are shown in Table 1. Of note, herpes zoster was detected in the cervical and thoracic dermatomes of all 12 patients with upper limb monoparesis, whereas it was detected in the lumbar and sacral dermatomes of all patients with lower limb monoparesis, paraplegia, or bladder/rectal disturbances. Furthermore, herpes zoster was confirmed in the trigeminal or thoracic dermatomes of all patients with meningitis and encephalitis." + }, + { + "self_ref": "#/texts/11", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/12" + } + ], + "label": "section_header", + "prov": [], + "orig": "Neurological disability at nadir", + "text": "Neurological disability at nadir", + "level": 1 + }, + { + "self_ref": "#/texts/12", + "parent": { + "$ref": "#/texts/11" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "Seventeen (65%) patients had severe disability (mRS score \u22653) at the nadir. Patients with severe disabilities had longer hospitalization durations than those without severe disabilities (p=0.023). Other clinical characteristics, including the age, immunocompromised condition, mRS value before onset, CSF findings, and type of therapy, were not significantly associated with severe disability at nadir (Table 2). Extensive distribution of herpes zoster (\u22652 areas among 5) was identified in 6 (35%) severely disabled patients but was not significantly related to neurological severity (p=0.36).", + "text": "Seventeen (65%) patients had severe disability (mRS score \u22653) at the nadir. Patients with severe disabilities had longer hospitalization durations than those without severe disabilities (p=0.023). Other clinical characteristics, including the age, immunocompromised condition, mRS value before onset, CSF findings, and type of therapy, were not significantly associated with severe disability at nadir (Table 2). Extensive distribution of herpes zoster (\u22652 areas among 5) was identified in 6 (35%) severely disabled patients but was not significantly related to neurological severity (p=0.36)." + }, + { + "self_ref": "#/texts/13", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/14" + } + ], + "label": "section_header", + "prov": [], + "orig": "Recovery from severe neurological disability", + "text": "Recovery from severe neurological disability", + "level": 1 + }, + { + "self_ref": "#/texts/14", + "parent": { + "$ref": "#/texts/13" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "Of the 17 severely disabled patients, 8 (47%) showed a good neurological recovery by discharge (defined as a decrease in the mRS score of \u22652 from nadir to discharge) (Table 3). Elevated CSF cell counts and protein levels were significantly associated with a good recovery (p=0.038 and p=0.027, respectively). Furthermore, all 3 severely disabled patients with meningitis were determined to have obtained a good recovery, but the p value was not significant (p=0.082). More patients with herpes zoster located in the trigeminal or thoracic dermatomes showed a better recovery than those with herpes zoster in other dermatomes (70% vs. 14%; p=0.0498). None of the patients who had been treated with steroids showed a good recovery. The frequency of a good recovery was significantly lower in the steroid-treated group than in the non-steroid-treated group (p=0.029). Other clinical characteristics, including the age, immunocompromised status, and mRS before the onset, were not associated with a good recovery.", + "text": "Of the 17 severely disabled patients, 8 (47%) showed a good neurological recovery by discharge (defined as a decrease in the mRS score of \u22652 from nadir to discharge) (Table 3). Elevated CSF cell counts and protein levels were significantly associated with a good recovery (p=0.038 and p=0.027, respectively). Furthermore, all 3 severely disabled patients with meningitis were determined to have obtained a good recovery, but the p value was not significant (p=0.082). More patients with herpes zoster located in the trigeminal or thoracic dermatomes showed a better recovery than those with herpes zoster in other dermatomes (70% vs. 14%; p=0.0498). None of the patients who had been treated with steroids showed a good recovery. The frequency of a good recovery was significantly lower in the steroid-treated group than in the non-steroid-treated group (p=0.029). Other clinical characteristics, including the age, immunocompromised status, and mRS before the onset, were not associated with a good recovery." + }, + { + "self_ref": "#/texts/15", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/16" + }, + { + "$ref": "#/texts/17" + }, + { + "$ref": "#/texts/18" + }, + { + "$ref": "#/texts/19" + } + ], + "label": "section_header", + "prov": [], + "orig": "Discussion", + "text": "Discussion", + "level": 1 + }, + { + "self_ref": "#/texts/16", + "parent": { + "$ref": "#/texts/15" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "The proportion of patients with specific neurological phenotypes associated with VZV infections has been investigated in French populations, and investigators found that 23% of patients exhibited monoparesis and cranial nerve palsy, 38% exhibited meningitis, and 39% exhibited encephalitis (3). In contrast, we found that a smaller proportion of VZV-infected patients in the Japanese population had meningitis (19%) or encephalitis (19%). Although this discrepancy might reflect racial or geographic differences between populations, we believe that the discrepancy between the results might be accounted for by the differences between the study inclusion criteria for patients. The French investigators only included patients in whom VZV reactivation had been confirmed by PCR of CSF specimens, whereas our study also included patients in whom CSF specimens were not tested by PCR. The difference between the criteria may have biased the results regarding the proportions of neurological phenotypes. Patients with monoparesis might have been excluded from the French study by not conducting a CSF analysis, leading to a larger proportion of patients with encephalitis or meningitis. It is also possible that the proportions of neurological phenotypes differ depending on the characteristics of the VZV infecting the hosts. Therefore, further investigation is warranted.", + "text": "The proportion of patients with specific neurological phenotypes associated with VZV infections has been investigated in French populations, and investigators found that 23% of patients exhibited monoparesis and cranial nerve palsy, 38% exhibited meningitis, and 39% exhibited encephalitis (3). In contrast, we found that a smaller proportion of VZV-infected patients in the Japanese population had meningitis (19%) or encephalitis (19%). Although this discrepancy might reflect racial or geographic differences between populations, we believe that the discrepancy between the results might be accounted for by the differences between the study inclusion criteria for patients. The French investigators only included patients in whom VZV reactivation had been confirmed by PCR of CSF specimens, whereas our study also included patients in whom CSF specimens were not tested by PCR. The difference between the criteria may have biased the results regarding the proportions of neurological phenotypes. Patients with monoparesis might have been excluded from the French study by not conducting a CSF analysis, leading to a larger proportion of patients with encephalitis or meningitis. It is also possible that the proportions of neurological phenotypes differ depending on the characteristics of the VZV infecting the hosts. Therefore, further investigation is warranted." + }, + { + "self_ref": "#/texts/17", + "parent": { + "$ref": "#/texts/15" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "Our study found that limb paralysis was closely associated with the distribution of prior herpes zoster episodes in patients, which suggests that reactivation of VZV in the dorsal root ganglia affects the nearby motor neurons. In contrast, all patients with encephalitis and meningitis in our study had herpes zoster within the trigeminal, thoracic, or both dermatomes. This result is compatible with a previous report that herpes zoster is frequently located within the trigeminal or thoracic dermatomes in patients with VZV meningitis [6 of 9 (67%) patients] (6). Why inflammation can spread from the thoracic dorsal root ganglion to the distant cerebrum and meninges remains unclear. There may be a particular mechanism underlying distant spread across the nervous system.", + "text": "Our study found that limb paralysis was closely associated with the distribution of prior herpes zoster episodes in patients, which suggests that reactivation of VZV in the dorsal root ganglia affects the nearby motor neurons. In contrast, all patients with encephalitis and meningitis in our study had herpes zoster within the trigeminal, thoracic, or both dermatomes. This result is compatible with a previous report that herpes zoster is frequently located within the trigeminal or thoracic dermatomes in patients with VZV meningitis [6 of 9 (67%) patients] (6). Why inflammation can spread from the thoracic dorsal root ganglion to the distant cerebrum and meninges remains unclear. There may be a particular mechanism underlying distant spread across the nervous system." + }, + { + "self_ref": "#/texts/18", + "parent": { + "$ref": "#/texts/15" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "This study showed that increased cell counts and CSF protein levels, decreased mRS values before the onset, and no use of steroids were associated with a good neurological recovery in our study patients, which is partly consistent with previous findings (3,4). We also discovered a novel relationship between the neurological recovery and herpes zoster location, possibly due in part to the fact that patients with a meningitis phenotype often have herpes zoster in the trigeminal or thoracic dermatomes and also often show a good recovery. Further research involving a larger study population is needed to clarify whether or not the distribution of herpes zoster is associated with the neurological outcome.", + "text": "This study showed that increased cell counts and CSF protein levels, decreased mRS values before the onset, and no use of steroids were associated with a good neurological recovery in our study patients, which is partly consistent with previous findings (3,4). We also discovered a novel relationship between the neurological recovery and herpes zoster location, possibly due in part to the fact that patients with a meningitis phenotype often have herpes zoster in the trigeminal or thoracic dermatomes and also often show a good recovery. Further research involving a larger study population is needed to clarify whether or not the distribution of herpes zoster is associated with the neurological outcome." + }, + { + "self_ref": "#/texts/19", + "parent": { + "$ref": "#/texts/15" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "Whether or not steroids are effective in the treatment of neurological complications associated with VZV reactivation remains unclear. In our study, none of the steroid-treated patients showed a good recovery; however, steroids were often used in severe cases [13 of 18 patients (72%)], indicating that the effectiveness of steroids could not be adequately evaluated in our study. The Association of British Neurologists has recommended corticosteroids be used to treat VZV encephalitis in patients with concomitant vasculitis. However, the French Federation of Neurology does not recommend treatment with corticosteroids, irrespective of vasculitis (7,8). Steroids may have an effect on the treatment of VZV-associated vasculopathy (9). Randomized controlled trials should be conducted to determine the efficacy of steroids for neurological complications associated with VZV.", + "text": "Whether or not steroids are effective in the treatment of neurological complications associated with VZV reactivation remains unclear. In our study, none of the steroid-treated patients showed a good recovery; however, steroids were often used in severe cases [13 of 18 patients (72%)], indicating that the effectiveness of steroids could not be adequately evaluated in our study. The Association of British Neurologists has recommended corticosteroids be used to treat VZV encephalitis in patients with concomitant vasculitis. However, the French Federation of Neurology does not recommend treatment with corticosteroids, irrespective of vasculitis (7,8). Steroids may have an effect on the treatment of VZV-associated vasculopathy (9). Randomized controlled trials should be conducted to determine the efficacy of steroids for neurological complications associated with VZV." + }, + { + "self_ref": "#/texts/20", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "section_header", + "prov": [], + "orig": "Tables", + "text": "Tables", + "level": 1 + }, + { + "self_ref": "#/texts/21", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [], + "orig": "Table 1. Association of Location of Herpes Zoster with Neurological Phenotypes.", + "text": "Table 1. Association of Location of Herpes Zoster with Neurological Phenotypes." + }, + { + "self_ref": "#/texts/22", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [], + "orig": "Table 2. Clinical Characteristics of Patients with Severe Neurological Disability Subsequent to Herpes Zoster.", + "text": "Table 2. Clinical Characteristics of Patients with Severe Neurological Disability Subsequent to Herpes Zoster." + }, + { + "self_ref": "#/texts/23", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [], + "orig": "Table 3. Comparison between the Clinical Characteristics of Patients with and without Good Recovery from Severely Disabled Condition at Nadir.", + "text": "Table 3. Comparison between the Clinical Characteristics of Patients with and without Good Recovery from Severely Disabled Condition at Nadir." + }, + { + "self_ref": "#/texts/24", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "section_header", + "prov": [], + "orig": "References", + "text": "References", + "level": 1 + }, + { + "self_ref": "#/texts/25", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "K Shiraki; N Toyama; T Daikoku; M Yajima. Herpes zoster and recurrent herpes zoster.. Open Forum Infect Dis (2017)", + "text": "K Shiraki; N Toyama; T Daikoku; M Yajima. Herpes zoster and recurrent herpes zoster.. Open Forum Infect Dis (2017)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/26", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "J Nemoto; T Kanda. Varicella-zoster virus infection in the central nervous system.. Brain Nerve (2022)", + "text": "J Nemoto; T Kanda. Varicella-zoster virus infection in the central nervous system.. Brain Nerve (2022)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/27", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "T Lenfant; AS L'Honneur; B Ranque; . Neurological complications of varicella zoster virus reactivation: prognosis, diagnosis, and treatment of 72 patients with positive PCR in the cerebrospinal fluid.. Brain Behav (2022)", + "text": "T Lenfant; AS L'Honneur; B Ranque; . Neurological complications of varicella zoster virus reactivation: prognosis, diagnosis, and treatment of 72 patients with positive PCR in the cerebrospinal fluid.. Brain Behav (2022)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/28", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "A Mirouse; R Sonneville; K Razazi; . Neurologic outcome of VZV encephalitis one year after ICU admission: a multicenter cohort study.. Ann Intensive Care (2022)", + "text": "A Mirouse; R Sonneville; K Razazi; . Neurologic outcome of VZV encephalitis one year after ICU admission: a multicenter cohort study.. Ann Intensive Care (2022)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/29", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "Y Ohtsu; Y Susaki; K Noguchi. Absorption, distribution, metabolism, and excretion of the novel helicase-primase inhibitor, amenamevir (ASP2151), in rodents.. Eur J Drug Metab Pharmacokinet (2018)", + "text": "Y Ohtsu; Y Susaki; K Noguchi. Absorption, distribution, metabolism, and excretion of the novel helicase-primase inhibitor, amenamevir (ASP2151), in rodents.. Eur J Drug Metab Pharmacokinet (2018)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/30", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "S Takeshima; Y Shiga; T Himeno; . Clinical, epidemiological and etiological studies of adult aseptic meningitis: report of 11 cases with varicella zoster virus meningitis.. Rinsho Shinkeigaku (Clin Neurol) (2017)", + "text": "S Takeshima; Y Shiga; T Himeno; . Clinical, epidemiological and etiological studies of adult aseptic meningitis: report of 11 cases with varicella zoster virus meningitis.. Rinsho Shinkeigaku (Clin Neurol) (2017)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/31", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "L Martinez-Almoyna; T De Broucker; A Mailles; JP Stahl. Management of infectious encephalitis in adults: highlights from the French guidelines (short version).. Rev Neurol (Paris) (2019)", + "text": "L Martinez-Almoyna; T De Broucker; A Mailles; JP Stahl. Management of infectious encephalitis in adults: highlights from the French guidelines (short version).. Rev Neurol (Paris) (2019)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/32", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "T Solomon; BD Michael; PE Smith; . Management of suspected viral encephalitis in adults - Association of British Neurologists and British Infection Association National Guidelines.. J Infect (2012)", + "text": "T Solomon; BD Michael; PE Smith; . Management of suspected viral encephalitis in adults - Association of British Neurologists and British Infection Association National Guidelines.. J Infect (2012)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/33", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "MA Nagel; D Jones; A Wyborny. Varicella zoster virus vasculopathy: the expanding clinical spectrum and pathogenesis.. J Neuroimmunol (2017)", + "text": "MA Nagel; D Jones; A Wyborny. Varicella zoster virus vasculopathy: the expanding clinical spectrum and pathogenesis.. J Neuroimmunol (2017)", + "enumerated": false, + "marker": "-" + } + ], + "pictures": [], + "tables": [ + { + "self_ref": "#/tables/0", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "table", + "prov": [], + "captions": [ + { + "$ref": "#/texts/21" + } + ], + "references": [], + "footnotes": [], + "data": { + "table_cells": [ + { + "row_span": 2, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 2, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "Neurological phenotype", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 2, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 2, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 2, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 2, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 2, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 2, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 9, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 4, + "end_col_offset_idx": 13, + "text": "Herpes zoster", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "Trigeminal (n=3)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "Cervical (n=10)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "Thoracic (n=13)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "Lumbar (n=6)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "Sacral (n=2)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "Monoparesis", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "U/E (n=12)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "9", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "6", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "1", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "L/E (n=2)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "2", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "1", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "Meningitis", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "(n=5)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "1", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "Encephalitis", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "(n=5)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "2", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "1", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "3", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "1", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "Paraplegia", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "(n=1)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "1", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "1", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "Bladder/rectal disturbance", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "(n=1)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "1", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + "num_rows": 8, + "num_cols": 13, + "grid": [ + [ + { + "row_span": 2, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 2, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "Neurological phenotype", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 2, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 2, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 2, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 2, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 2, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 2, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 9, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 4, + "end_col_offset_idx": 13, + "text": "Herpes zoster", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 9, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 4, + "end_col_offset_idx": 13, + "text": "Herpes zoster", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 9, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 4, + "end_col_offset_idx": 13, + "text": "Herpes zoster", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 9, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 4, + "end_col_offset_idx": 13, + "text": "Herpes zoster", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 9, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 4, + "end_col_offset_idx": 13, + "text": "Herpes zoster", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 9, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 4, + "end_col_offset_idx": 13, + "text": "Herpes zoster", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 9, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 4, + "end_col_offset_idx": 13, + "text": "Herpes zoster", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 9, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 4, + "end_col_offset_idx": 13, + "text": "Herpes zoster", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 9, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 4, + "end_col_offset_idx": 13, + "text": "Herpes zoster", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 2, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 2, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "Neurological phenotype", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 2, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 2, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 2, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 2, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 2, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 2, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "Trigeminal (n=3)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "Cervical (n=10)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "Thoracic (n=13)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "Lumbar (n=6)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "Sacral (n=2)", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "Monoparesis", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "U/E (n=12)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "9", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "6", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "1", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "L/E (n=2)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "2", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "1", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "Meningitis", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "(n=5)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "1", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "0", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "Encephalitis", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "(n=5)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "2", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "1", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "3", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "1", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "Paraplegia", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "(n=1)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "1", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "1", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "Bladder/rectal disturbance", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "(n=1)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "1", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "0", + "column_header": false, + "row_header": false, + "row_section": false + } + ] + ] + } + }, + { + "self_ref": "#/tables/1", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "table", + "prov": [], + "captions": [ + { + "$ref": "#/texts/22" + } + ], + "references": [], + "footnotes": [], + "data": { + "table_cells": [ + { + "row_span": 2, + "col_span": 4, + "start_row_offset_idx": 0, + "end_row_offset_idx": 2, + "start_col_offset_idx": 0, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 3, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 4, + "end_col_offset_idx": 7, + "text": "Neurological disability at nadir", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 2, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 2, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 2, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 2, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "p value", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "Severe (n=17)a", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "Not severe (n=9)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "Median age (range)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "79 (23-84)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "68 (31-83)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "NS", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "Herpes zoster", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "Trigeminal, n (%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "3 (100%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0 (0%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "NS", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "Cervical, n (%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "7 (70%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "3 (30%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "NS", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "Thoracic, n (%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "7 (54%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "6 (46%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "NS", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "Lumbar, n (%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "5 (83%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "1 (17%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "NS", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "Sacral, n (%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "2 (100%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0 (0%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "NS", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 3, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 0, + "end_col_offset_idx": 3, + "text": "Immunocompromised condition, n (%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "6 (60%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "4 (40%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "NS", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 3, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 0, + "end_col_offset_idx": 3, + "text": "Median mRS before onset (range)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0 (0-4)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0 (0-0)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "NS", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 3, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 0, + "end_col_offset_idx": 3, + "text": "Median days from onset of neurological symptom to first visit (range)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "9 (0-38)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "6 (1-54)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "NS", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "Neurological phenotype", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "Monoparesis, n (%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "8 (57%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "6 (43%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "NS", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "Meningitis, n (%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "3 (60%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "2 (40%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "NS", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "Encephalitis, n (%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "5 (100%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0 (0%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "NS", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "CSF", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "Cell count (/\u03bcL), median (range)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "22 (0-371)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "10 (0-202)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "NS", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "Protein (mg/dL), median (range)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "75 (42-217)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "56 (38-173)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "NS", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "Therapy", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "Acyclovir, n (%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "17 (100%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "9 (100%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "NS", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "Steroid, n (%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "13 (76%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "5 (56%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "NS", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "Median hospitalization days (range)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "27 (6-77)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "18 (14-70)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.023", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + "num_rows": 19, + "num_cols": 9, + "grid": [ + [ + { + "row_span": 2, + "col_span": 4, + "start_row_offset_idx": 0, + "end_row_offset_idx": 2, + "start_col_offset_idx": 0, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 2, + "col_span": 4, + "start_row_offset_idx": 0, + "end_row_offset_idx": 2, + "start_col_offset_idx": 0, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 2, + "col_span": 4, + "start_row_offset_idx": 0, + "end_row_offset_idx": 2, + "start_col_offset_idx": 0, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 2, + "col_span": 4, + "start_row_offset_idx": 0, + "end_row_offset_idx": 2, + "start_col_offset_idx": 0, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 3, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 4, + "end_col_offset_idx": 7, + "text": "Neurological disability at nadir", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 3, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 4, + "end_col_offset_idx": 7, + "text": "Neurological disability at nadir", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 3, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 4, + "end_col_offset_idx": 7, + "text": "Neurological disability at nadir", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 2, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 2, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 2, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 2, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "p value", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 2, + "col_span": 4, + "start_row_offset_idx": 0, + "end_row_offset_idx": 2, + "start_col_offset_idx": 0, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 2, + "col_span": 4, + "start_row_offset_idx": 0, + "end_row_offset_idx": 2, + "start_col_offset_idx": 0, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 2, + "col_span": 4, + "start_row_offset_idx": 0, + "end_row_offset_idx": 2, + "start_col_offset_idx": 0, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 2, + "col_span": 4, + "start_row_offset_idx": 0, + "end_row_offset_idx": 2, + "start_col_offset_idx": 0, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "Severe (n=17)a", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "Not severe (n=9)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 2, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 2, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 2, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 2, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "p value", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "Median age (range)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "79 (23-84)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "68 (31-83)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "NS", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "Herpes zoster", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "Trigeminal, n (%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "3 (100%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0 (0%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "NS", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "Cervical, n (%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "7 (70%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "3 (30%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "NS", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "Thoracic, n (%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "7 (54%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "6 (46%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "NS", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "Lumbar, n (%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "5 (83%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "1 (17%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "NS", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "Sacral, n (%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "2 (100%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0 (0%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "NS", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 3, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 0, + "end_col_offset_idx": 3, + "text": "Immunocompromised condition, n (%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 3, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 0, + "end_col_offset_idx": 3, + "text": "Immunocompromised condition, n (%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 3, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 0, + "end_col_offset_idx": 3, + "text": "Immunocompromised condition, n (%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "6 (60%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "4 (40%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "NS", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 3, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 0, + "end_col_offset_idx": 3, + "text": "Median mRS before onset (range)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 3, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 0, + "end_col_offset_idx": 3, + "text": "Median mRS before onset (range)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 3, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 0, + "end_col_offset_idx": 3, + "text": "Median mRS before onset (range)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0 (0-4)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0 (0-0)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "NS", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 3, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 0, + "end_col_offset_idx": 3, + "text": "Median days from onset of neurological symptom to first visit (range)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 3, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 0, + "end_col_offset_idx": 3, + "text": "Median days from onset of neurological symptom to first visit (range)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 3, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 0, + "end_col_offset_idx": 3, + "text": "Median days from onset of neurological symptom to first visit (range)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "9 (0-38)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "6 (1-54)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "NS", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "Neurological phenotype", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "Monoparesis, n (%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "8 (57%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "6 (43%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "NS", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "Meningitis, n (%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "3 (60%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "2 (40%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "NS", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "Encephalitis, n (%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "5 (100%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0 (0%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "NS", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "CSF", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "Cell count (/\u03bcL), median (range)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "22 (0-371)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "10 (0-202)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "NS", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "Protein (mg/dL), median (range)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "75 (42-217)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "56 (38-173)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "NS", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "Therapy", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "Acyclovir, n (%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "17 (100%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "9 (100%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "NS", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "Steroid, n (%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "13 (76%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "5 (56%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "NS", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "Median hospitalization days (range)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "27 (6-77)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "18 (14-70)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.023", + "column_header": false, + "row_header": false, + "row_section": false + } + ] + ] + } + }, + { + "self_ref": "#/tables/2", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "table", + "prov": [], + "captions": [ + { + "$ref": "#/texts/23" + } + ], + "references": [], + "footnotes": [], + "data": { + "table_cells": [ + { + "row_span": 2, + "col_span": 4, + "start_row_offset_idx": 0, + "end_row_offset_idx": 2, + "start_col_offset_idx": 0, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 3, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 4, + "end_col_offset_idx": 7, + "text": "Neurological recovery", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 2, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 2, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 2, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 2, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "p value", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "Good (n=8)a", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "Poor (n=9)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "Median age (range)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "77 (23-84)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "79 (69-83)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "NS", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "Herpes zoster", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "Trigeminal, n (%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "2 (67%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "1 (33%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "NS", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "Cervical, n (%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "2 (29%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "5 (71%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "NS", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "Thoracic, n (%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "5 (71%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "2 (29%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "NS", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "Lumbar, n (%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "1 (20%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "4 (80%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "NS", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "Sacral, n (%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0 (0%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "2 (100%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "NS", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 3, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 0, + "end_col_offset_idx": 3, + "text": "Immunocompromised condition, n (%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "2 (33%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "4 (67%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "NS", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 3, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 0, + "end_col_offset_idx": 3, + "text": "Median mRS before onset (range)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0 (0-1)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0 (0-4)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "NS", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 3, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 0, + "end_col_offset_idx": 3, + "text": "Median days from onset of neurological symptom to first visit (range)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "4 (0-33)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "11 (0-38)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "NS", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "Neurological phenotype", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "Monoparesis, n (%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "2 (25%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "6 (75%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "NS", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "Meningitis, n (%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "3 (100%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0 (0%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "NS", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "Encephalitis, n (%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "3 (60%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "2 (40%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "NS", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "CSF", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "Cell count (/\u03bcL), median (range)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "51 (8-371)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "9 (0-328)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.038", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "Protein (mg/dL), median (range)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "116 (69-217)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "62 (42-205)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.027", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "Therapy", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "Acyclovir, n (%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "8 (100%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "9 (100%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "NS", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "Steroid, n (%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "4 (50%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "9 (100%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.029", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "Median hospitalization days (range)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "24 (15-49)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "39 (6-77)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "NS", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + "num_rows": 19, + "num_cols": 9, + "grid": [ + [ + { + "row_span": 2, + "col_span": 4, + "start_row_offset_idx": 0, + "end_row_offset_idx": 2, + "start_col_offset_idx": 0, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 2, + "col_span": 4, + "start_row_offset_idx": 0, + "end_row_offset_idx": 2, + "start_col_offset_idx": 0, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 2, + "col_span": 4, + "start_row_offset_idx": 0, + "end_row_offset_idx": 2, + "start_col_offset_idx": 0, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 2, + "col_span": 4, + "start_row_offset_idx": 0, + "end_row_offset_idx": 2, + "start_col_offset_idx": 0, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 3, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 4, + "end_col_offset_idx": 7, + "text": "Neurological recovery", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 3, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 4, + "end_col_offset_idx": 7, + "text": "Neurological recovery", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 3, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 4, + "end_col_offset_idx": 7, + "text": "Neurological recovery", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 2, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 2, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 2, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 2, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "p value", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 2, + "col_span": 4, + "start_row_offset_idx": 0, + "end_row_offset_idx": 2, + "start_col_offset_idx": 0, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 2, + "col_span": 4, + "start_row_offset_idx": 0, + "end_row_offset_idx": 2, + "start_col_offset_idx": 0, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 2, + "col_span": 4, + "start_row_offset_idx": 0, + "end_row_offset_idx": 2, + "start_col_offset_idx": 0, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 2, + "col_span": 4, + "start_row_offset_idx": 0, + "end_row_offset_idx": 2, + "start_col_offset_idx": 0, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "Good (n=8)a", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "Poor (n=9)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 2, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 2, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 2, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 2, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "p value", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "Median age (range)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "77 (23-84)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "79 (69-83)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "NS", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "Herpes zoster", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "Trigeminal, n (%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "2 (67%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "1 (33%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "NS", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "Cervical, n (%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "2 (29%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "5 (71%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "NS", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "Thoracic, n (%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "5 (71%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "2 (29%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "NS", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "Lumbar, n (%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "1 (20%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "4 (80%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "NS", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "Sacral, n (%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0 (0%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "2 (100%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "NS", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 3, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 0, + "end_col_offset_idx": 3, + "text": "Immunocompromised condition, n (%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 3, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 0, + "end_col_offset_idx": 3, + "text": "Immunocompromised condition, n (%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 3, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 0, + "end_col_offset_idx": 3, + "text": "Immunocompromised condition, n (%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "2 (33%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "4 (67%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "NS", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 3, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 0, + "end_col_offset_idx": 3, + "text": "Median mRS before onset (range)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 3, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 0, + "end_col_offset_idx": 3, + "text": "Median mRS before onset (range)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 3, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 0, + "end_col_offset_idx": 3, + "text": "Median mRS before onset (range)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0 (0-1)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0 (0-4)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "NS", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 3, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 0, + "end_col_offset_idx": 3, + "text": "Median days from onset of neurological symptom to first visit (range)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 3, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 0, + "end_col_offset_idx": 3, + "text": "Median days from onset of neurological symptom to first visit (range)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 3, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 0, + "end_col_offset_idx": 3, + "text": "Median days from onset of neurological symptom to first visit (range)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "4 (0-33)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "11 (0-38)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 10, + "end_row_offset_idx": 11, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "NS", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "Neurological phenotype", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "Monoparesis, n (%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "2 (25%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "6 (75%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 11, + "end_row_offset_idx": 12, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "NS", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "Meningitis, n (%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "3 (100%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "0 (0%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 12, + "end_row_offset_idx": 13, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "NS", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "Encephalitis, n (%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "3 (60%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "2 (40%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 13, + "end_row_offset_idx": 14, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "NS", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "CSF", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "Cell count (/\u03bcL), median (range)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "51 (8-371)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "9 (0-328)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 14, + "end_row_offset_idx": 15, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.038", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "Protein (mg/dL), median (range)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "116 (69-217)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "62 (42-205)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 15, + "end_row_offset_idx": 16, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.027", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "Therapy", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "Acyclovir, n (%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "8 (100%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "9 (100%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 16, + "end_row_offset_idx": 17, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "NS", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "Steroid, n (%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "4 (50%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "9 (100%)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 17, + "end_row_offset_idx": 18, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "0.029", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "Median hospitalization days (range)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "24 (15-49)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "39 (6-77)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 18, + "end_row_offset_idx": 19, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "NS", + "column_header": false, + "row_header": false, + "row_section": false + } + ] + ] + } + } + ], + "key_value_items": [], + "pages": {} +} \ No newline at end of file diff --git a/tests/data/groundtruth/docling_v2/1349-7235-63-2621.nxml.md b/tests/data/groundtruth/docling_v2/1349-7235-63-2621.nxml.md new file mode 100644 index 00000000..4fbb82ef --- /dev/null +++ b/tests/data/groundtruth/docling_v2/1349-7235-63-2621.nxml.md @@ -0,0 +1,111 @@ +# The Diversity of Neurological Complications Associated with Herpes Zoster: A Retrospective Case Series of 26 Patients + +Joe Nemoto; Department of Neurology, Tokuyama Central Hospital, Japan; Department of Neurology and Clinical Neuroscience, Yamaguchi University Graduate School of Medicine, Japan; Jun-ichi Ogasawara; Department of Neurology, Tokuyama Central Hospital, Japan; Michiaki Koga; Department of Neurology and Clinical Neuroscience, Yamaguchi University Graduate School of Medicine, Japan + +Objective This study clarified a variety of neurological phenotypes associated with varicella-zoster virus (VZV) reactivation. Methods This retrospective single-center study included consecutive patients with herpes zoster accompanied by neurological disturbances from April 2016 to September 2022. A comparative analysis was performed to examine whether or not the neurological phenotype and severity were associated with the distribution of herpes zoster, clinical and laboratory findings, and treatments. Results Twenty-six patients with a median age of 74 years old were enrolled. None of the patients had been vaccinated against herpes zoster. Of the 26 patients, 14 (54%) developed monoparesis, 5 (19%) developed meningitis, 5 (19%) developed encephalitis, 1 (4%) developed paraplegia, and 1 (4%) developed bladder and rectal problems. Monoparesis of the upper limb is associated with herpes zoster involving the cervical and thoracic dermatomes, whereas meningitis and encephalitis often occur in patients with herpes zoster in the trigeminal and thoracic dermatomes. Neurological disability was generally severe [modified Rankin Scale (mRS) score ≥3] on admission [17 of 26 (65%) patients]. Good recovery after admission was associated with a lower mRS value before the onset of neurological disability, clinical meningitis, and elevated cell counts and protein levels in the cerebrospinal fluid. Good recoveries were observed in patients with herpes zoster in the trigeminal or thoracic dermatomes more frequently than in other dermatomes. Conclusion This study revealed that VZV-related neurological complications are heterogeneous, commonly leading to severe disability and poor outcomes, and that neurological phenotypes and outcomes are related to the distribution of herpes zoster. + +## Introduction + +Varicella zoster virus (VZV) is a common pathogen that causes herpes zoster. Most Japanese people are thought to be in a state of latent VZV infection, and one-third of the Japanese population develops herpes zoster associated with reactivation of the virus by 80 years old (1). In addition to herpes zoster, reactivation of VZV is associated with various neurological disorders, including radiculitis, meningitis, and encephalitis (2). The extent of neurological disability varies from person to person; however, neurological recovery is generally incomplete in patients with neurological complications (3). Why neurological phenotypes and extent of neurological disability vary in relation to a single condition remains unclear. + +## The diagnosis of herpes zoster + +The diagnosis of herpes zoster was performed by primary care physicians, dermatologists, or neurologists and was based on visual inspection of the skin rash with or without polymerase chain reaction (PCR) confirmation from swab specimens, although the reactivation of VZV was confirmed by PCR of CSF specimens in previous studies (3,4). Herpes zoster has been observed in the trigeminal, cervical, thoracic, lumbar, and sacral dermatomes. Patients taking immunosuppressant medications and those with a history of diabetes were considered immunocompromised. The following neurological complications were observed: monoparesis, meningitis, encephalitis, paraplegia, and bladder/rectal disturbance. Monoparesis was defined as monoparesis without meningeal irritation, ongoing disturbance of consciousness, or seizures (3). Meningitis was defined as meningeal irritation without ongoing disturbance of consciousness, seizures, or limb paresis (3). Encephalitis was defined as an ongoing disturbance of consciousness or seizures irrespective of meningeal irritation (3). Paraplegia was defined as paraplegia without upper limb paresis, meningeal irritation, ongoing disturbance of consciousness, or seizures. Bladder/rectal disturbances were defined as new-onset subjective bladder or defecation symptoms without paresis, meningeal irritation, ongoing disturbance of consciousness, and seizures. Severe neurological disability was defined as an mRS score ≥3. The nadir period was defined as the period of the most severe neurological symptoms assessed by a neurologist. Good neurological recovery was defined as a decrease in the mRS score of ≥2 from the nadir period to discharge. + +## Characteristics of neurological disturbances in patients with herpes zoster + +Seventeen (65%) patients received oral antiviral agents before their first visit to the Department of Neurology. Of these patients, eight received amenamevir, an oral antiviral agent that was thought to be unable to cross the blood-brain barrier (5). Every patient received intravenous acyclovir after admission, and intravenous methylprednisolone pulse therapy (1,000 mg/day for 3 days) or oral prednisolone (1 mg/kg body weight/day for 5 days) was administered to 18 (69%) patients. There were no significant differences in the age, sex, CSF findings, or mRS score at each point between the steroid-treated and non-steroid-treated groups. + +## Relationship between neurological manifestations and herpes zoster + +The associations between neurological phenotypes and herpes zoster distribution are shown in Table 1. Of note, herpes zoster was detected in the cervical and thoracic dermatomes of all 12 patients with upper limb monoparesis, whereas it was detected in the lumbar and sacral dermatomes of all patients with lower limb monoparesis, paraplegia, or bladder/rectal disturbances. Furthermore, herpes zoster was confirmed in the trigeminal or thoracic dermatomes of all patients with meningitis and encephalitis. + +## Neurological disability at nadir + +Seventeen (65%) patients had severe disability (mRS score ≥3) at the nadir. Patients with severe disabilities had longer hospitalization durations than those without severe disabilities (p=0.023). Other clinical characteristics, including the age, immunocompromised condition, mRS value before onset, CSF findings, and type of therapy, were not significantly associated with severe disability at nadir (Table 2). Extensive distribution of herpes zoster (≥2 areas among 5) was identified in 6 (35%) severely disabled patients but was not significantly related to neurological severity (p=0.36). + +## Recovery from severe neurological disability + +Of the 17 severely disabled patients, 8 (47%) showed a good neurological recovery by discharge (defined as a decrease in the mRS score of ≥2 from nadir to discharge) (Table 3). Elevated CSF cell counts and protein levels were significantly associated with a good recovery (p=0.038 and p=0.027, respectively). Furthermore, all 3 severely disabled patients with meningitis were determined to have obtained a good recovery, but the p value was not significant (p=0.082). More patients with herpes zoster located in the trigeminal or thoracic dermatomes showed a better recovery than those with herpes zoster in other dermatomes (70% vs. 14%; p=0.0498). None of the patients who had been treated with steroids showed a good recovery. The frequency of a good recovery was significantly lower in the steroid-treated group than in the non-steroid-treated group (p=0.029). Other clinical characteristics, including the age, immunocompromised status, and mRS before the onset, were not associated with a good recovery. + +## Discussion + +The proportion of patients with specific neurological phenotypes associated with VZV infections has been investigated in French populations, and investigators found that 23% of patients exhibited monoparesis and cranial nerve palsy, 38% exhibited meningitis, and 39% exhibited encephalitis (3). In contrast, we found that a smaller proportion of VZV-infected patients in the Japanese population had meningitis (19%) or encephalitis (19%). Although this discrepancy might reflect racial or geographic differences between populations, we believe that the discrepancy between the results might be accounted for by the differences between the study inclusion criteria for patients. The French investigators only included patients in whom VZV reactivation had been confirmed by PCR of CSF specimens, whereas our study also included patients in whom CSF specimens were not tested by PCR. The difference between the criteria may have biased the results regarding the proportions of neurological phenotypes. Patients with monoparesis might have been excluded from the French study by not conducting a CSF analysis, leading to a larger proportion of patients with encephalitis or meningitis. It is also possible that the proportions of neurological phenotypes differ depending on the characteristics of the VZV infecting the hosts. Therefore, further investigation is warranted. + +Our study found that limb paralysis was closely associated with the distribution of prior herpes zoster episodes in patients, which suggests that reactivation of VZV in the dorsal root ganglia affects the nearby motor neurons. In contrast, all patients with encephalitis and meningitis in our study had herpes zoster within the trigeminal, thoracic, or both dermatomes. This result is compatible with a previous report that herpes zoster is frequently located within the trigeminal or thoracic dermatomes in patients with VZV meningitis [6 of 9 (67%) patients] (6). Why inflammation can spread from the thoracic dorsal root ganglion to the distant cerebrum and meninges remains unclear. There may be a particular mechanism underlying distant spread across the nervous system. + +This study showed that increased cell counts and CSF protein levels, decreased mRS values before the onset, and no use of steroids were associated with a good neurological recovery in our study patients, which is partly consistent with previous findings (3,4). We also discovered a novel relationship between the neurological recovery and herpes zoster location, possibly due in part to the fact that patients with a meningitis phenotype often have herpes zoster in the trigeminal or thoracic dermatomes and also often show a good recovery. Further research involving a larger study population is needed to clarify whether or not the distribution of herpes zoster is associated with the neurological outcome. + +Whether or not steroids are effective in the treatment of neurological complications associated with VZV reactivation remains unclear. In our study, none of the steroid-treated patients showed a good recovery; however, steroids were often used in severe cases [13 of 18 patients (72%)], indicating that the effectiveness of steroids could not be adequately evaluated in our study. The Association of British Neurologists has recommended corticosteroids be used to treat VZV encephalitis in patients with concomitant vasculitis. However, the French Federation of Neurology does not recommend treatment with corticosteroids, irrespective of vasculitis (7,8). Steroids may have an effect on the treatment of VZV-associated vasculopathy (9). Randomized controlled trials should be conducted to determine the efficacy of steroids for neurological complications associated with VZV. + +## Tables + +Table 1. Association of Location of Herpes Zoster with Neurological Phenotypes. + +| Neurological phenotype | | | | Herpes zoster | Herpes zoster | Herpes zoster | Herpes zoster | Herpes zoster | Herpes zoster | Herpes zoster | Herpes zoster | Herpes zoster | +|----------------------------|----|------------|----|------------------|-----------------|-----------------|-----------------|-----------------|-----------------|-----------------|-----------------|-----------------| +| Neurological phenotype | | | | Trigeminal (n=3) | | Cervical (n=10) | | Thoracic (n=13) | | Lumbar (n=6) | | Sacral (n=2) | +| Monoparesis | | U/E (n=12) | | 0 | | 9 | | 6 | | 1 | | 0 | +| | | L/E (n=2) | | 0 | | 0 | | 0 | | 2 | | 1 | +| Meningitis | | (n=5) | | 1 | | 0 | | 4 | | 0 | | 0 | +| Encephalitis | | (n=5) | | 2 | | 1 | | 3 | | 1 | | 0 | +| Paraplegia | | (n=1) | | 0 | | 0 | | 0 | | 1 | | 1 | +| Bladder/rectal disturbance | | (n=1) | | 0 | | 0 | | 0 | | 1 | | 0 | + +Table 2. Clinical Characteristics of Patients with Severe Neurological Disability Subsequent to Herpes Zoster. + +| | | | | Neurological disability at nadir | Neurological disability at nadir | Neurological disability at nadir | | p value | +|-----------------------------------------------------------------------|-----------------------------------------------------------------------|-----------------------------------------------------------------------|----|------------------------------------|------------------------------------|------------------------------------|----|-----------| +| | | | | Severe (n=17)a | | Not severe (n=9) | | p value | +| Median age (range) | | | | 79 (23-84) | | 68 (31-83) | | NS | +| Herpes zoster | | Trigeminal, n (%) | | 3 (100%) | | 0 (0%) | | NS | +| | | Cervical, n (%) | | 7 (70%) | | 3 (30%) | | NS | +| | | Thoracic, n (%) | | 7 (54%) | | 6 (46%) | | NS | +| | | Lumbar, n (%) | | 5 (83%) | | 1 (17%) | | NS | +| | | Sacral, n (%) | | 2 (100%) | | 0 (0%) | | NS | +| Immunocompromised condition, n (%) | Immunocompromised condition, n (%) | Immunocompromised condition, n (%) | | 6 (60%) | | 4 (40%) | | NS | +| Median mRS before onset (range) | Median mRS before onset (range) | Median mRS before onset (range) | | 0 (0-4) | | 0 (0-0) | | NS | +| Median days from onset of neurological symptom to first visit (range) | Median days from onset of neurological symptom to first visit (range) | Median days from onset of neurological symptom to first visit (range) | | 9 (0-38) | | 6 (1-54) | | NS | +| Neurological phenotype | | Monoparesis, n (%) | | 8 (57%) | | 6 (43%) | | NS | +| | | Meningitis, n (%) | | 3 (60%) | | 2 (40%) | | NS | +| | | Encephalitis, n (%) | | 5 (100%) | | 0 (0%) | | NS | +| CSF | | Cell count (/μL), median (range) | | 22 (0-371) | | 10 (0-202) | | NS | +| | | Protein (mg/dL), median (range) | | 75 (42-217) | | 56 (38-173) | | NS | +| Therapy | | Acyclovir, n (%) | | 17 (100%) | | 9 (100%) | | NS | +| | | Steroid, n (%) | | 13 (76%) | | 5 (56%) | | NS | +| Median hospitalization days (range) | | | | 27 (6-77) | | 18 (14-70) | | 0.023 | + +Table 3. Comparison between the Clinical Characteristics of Patients with and without Good Recovery from Severely Disabled Condition at Nadir. + +| | | | | Neurological recovery | Neurological recovery | Neurological recovery | | p value | +|-----------------------------------------------------------------------|-----------------------------------------------------------------------|-----------------------------------------------------------------------|----|-------------------------|-------------------------|-------------------------|----|-----------| +| | | | | Good (n=8)a | | Poor (n=9) | | p value | +| Median age (range) | | | | 77 (23-84) | | 79 (69-83) | | NS | +| Herpes zoster | | Trigeminal, n (%) | | 2 (67%) | | 1 (33%) | | NS | +| | | Cervical, n (%) | | 2 (29%) | | 5 (71%) | | NS | +| | | Thoracic, n (%) | | 5 (71%) | | 2 (29%) | | NS | +| | | Lumbar, n (%) | | 1 (20%) | | 4 (80%) | | NS | +| | | Sacral, n (%) | | 0 (0%) | | 2 (100%) | | NS | +| Immunocompromised condition, n (%) | Immunocompromised condition, n (%) | Immunocompromised condition, n (%) | | 2 (33%) | | 4 (67%) | | NS | +| Median mRS before onset (range) | Median mRS before onset (range) | Median mRS before onset (range) | | 0 (0-1) | | 0 (0-4) | | NS | +| Median days from onset of neurological symptom to first visit (range) | Median days from onset of neurological symptom to first visit (range) | Median days from onset of neurological symptom to first visit (range) | | 4 (0-33) | | 11 (0-38) | | NS | +| Neurological phenotype | | Monoparesis, n (%) | | 2 (25%) | | 6 (75%) | | NS | +| | | Meningitis, n (%) | | 3 (100%) | | 0 (0%) | | NS | +| | | Encephalitis, n (%) | | 3 (60%) | | 2 (40%) | | NS | +| CSF | | Cell count (/μL), median (range) | | 51 (8-371) | | 9 (0-328) | | 0.038 | +| | | Protein (mg/dL), median (range) | | 116 (69-217) | | 62 (42-205) | | 0.027 | +| Therapy | | Acyclovir, n (%) | | 8 (100%) | | 9 (100%) | | NS | +| | | Steroid, n (%) | | 4 (50%) | | 9 (100%) | | 0.029 | +| Median hospitalization days (range) | | | | 24 (15-49) | | 39 (6-77) | | NS | + +## References + +- K Shiraki; N Toyama; T Daikoku; M Yajima. Herpes zoster and recurrent herpes zoster.. Open Forum Infect Dis (2017) +- J Nemoto; T Kanda. Varicella-zoster virus infection in the central nervous system.. Brain Nerve (2022) +- T Lenfant; AS L'Honneur; B Ranque; . Neurological complications of varicella zoster virus reactivation: prognosis, diagnosis, and treatment of 72 patients with positive PCR in the cerebrospinal fluid.. Brain Behav (2022) +- A Mirouse; R Sonneville; K Razazi; . Neurologic outcome of VZV encephalitis one year after ICU admission: a multicenter cohort study.. Ann Intensive Care (2022) +- Y Ohtsu; Y Susaki; K Noguchi. Absorption, distribution, metabolism, and excretion of the novel helicase-primase inhibitor, amenamevir (ASP2151), in rodents.. Eur J Drug Metab Pharmacokinet (2018) +- S Takeshima; Y Shiga; T Himeno; . Clinical, epidemiological and etiological studies of adult aseptic meningitis: report of 11 cases with varicella zoster virus meningitis.. Rinsho Shinkeigaku (Clin Neurol) (2017) +- L Martinez-Almoyna; T De Broucker; A Mailles; JP Stahl. Management of infectious encephalitis in adults: highlights from the French guidelines (short version).. Rev Neurol (Paris) (2019) +- T Solomon; BD Michael; PE Smith; . Management of suspected viral encephalitis in adults - Association of British Neurologists and British Infection Association National Guidelines.. J Infect (2012) +- MA Nagel; D Jones; A Wyborny. Varicella zoster virus vasculopathy: the expanding clinical spectrum and pathogenesis.. J Neuroimmunol (2017) \ No newline at end of file diff --git a/tests/data/groundtruth/docling_v2/1349-7235-63-2651.nxml.itxt b/tests/data/groundtruth/docling_v2/1349-7235-63-2651.nxml.itxt new file mode 100644 index 00000000..57dc252e --- /dev/null +++ b/tests/data/groundtruth/docling_v2/1349-7235-63-2651.nxml.itxt @@ -0,0 +1,48 @@ +item-0 at level 0: unspecified: group _root_ + item-1 at level 1: title: Atypical Hemolytic Uremic Syndro ... ofactor Protein (CD46) Genetic Variant + item-2 at level 1: paragraph: Kosuke Mochizuki; Department of ... Kansai Electric Power Hospital, Japan + item-3 at level 1: text: Atypical hemolytic uremic syndro ... equired for the manifestation of aHUS. + item-4 at level 1: section_header: Introduction + item-5 at level 2: text: In the Kidney Disease: Improving ... f “secondary aHUS” have been excluded. + item-6 at level 2: text: Pathogenic genetic variants in a ... t abnormality could not be identified. + item-7 at level 1: section_header: Case Report + item-8 at level 2: text: The laboratory data are shown in ... 469 U/L, and haptoglobin was 23 mg/dL. + item-9 at level 2: text: The patient was found to have su ... he patient was discharged on day X+26. + item-10 at level 2: text: We outsourced next-generation se ... aHUS triggered by acute pancreatitis. + item-11 at level 1: section_header: Discussion + item-12 at level 2: text: In the present case, the patient ... idered a limitation of this case (14). + item-13 at level 2: text: Several triggers are thought to ... the manifestation of aHUS is unclear. + item-14 at level 2: text: In the present case, aHUS develo ... as CFH, CFI, C3, and THBD (13,17,22). + item-15 at level 2: text: The patient in this case respond ... US relapse is triggered by some event. + item-16 at level 1: section_header: Tables + item-18 at level 1: table with [10x15] + item-18 at level 2: caption: Table 1. Progress of Lab-date in This Case. + item-20 at level 1: table with [9x9] + item-20 at level 2: caption: Table 2. Profiles of the Patients with MCP P165S Variant. + item-21 at level 1: section_header: Figures + item-23 at level 1: picture + item-23 at level 2: caption: Figure. Abdominal computed tomography (CT) findings in this patient. (A) Day X+2 after performing endoscopic ultrasound-guided fine needle aspiration (EUS-FNA). The pancreatic body tail has a mildly reduced contrast effect in the arterial phase, consistent with the findings of acute pancreatitis. (B) Day X+7. CT indicates a low-absorption area suspected of being walled-off necrosis (WON) around the peripancreatic to the gastric body and gastric antrum. + item-24 at level 1: section_header: References + item-25 at level 1: list: group list + item-26 at level 2: list_item: TH Goodship; HT Cook; F Fakhouri ... versies Conference.. Kidney Int (2017) + item-27 at level 2: list_item: M Noris; G Remuzzi. Atypical hem ... -uremic syndrome.. N Engl J Med (2009) + item-28 at level 2: list_item: J Caprioli; M Noris; S Brioschi; ... treatment, and outcome.. Blood (2006) + item-29 at level 2: list_item: CJ Fang; V Fremeaux-Bacchi; MK L ... and the HELLP syndrome.. Blood (2008) + item-30 at level 2: list_item: V Fremeaux-Bacchi; EA Moulton; D ... mic syndrome.. J Am Soc Nephrol (2006) + item-31 at level 2: list_item: V Fremeaux-Bacchi; MA Dragon-Dur ... uraemic syndrome.. J Med Genet (2004) + item-32 at level 2: list_item: M Fujisawa; H Kato; Y Yoshida; . ... mic syndrome.. Clin Exp Nephrol (2018) + item-33 at level 2: list_item: Y Yoshida; T Miyata; M Matsumoto ... g mutations in Japan.. PLoS One (2015) + item-34 at level 2: list_item: J Esparza-Gordillo; EG Jorge; CA ... affected pedigree.. Mol Immunol (2006) + item-35 at level 2: list_item: A Richards; EJ Kemp; MK Liszewsk ... rome.. Proc Natl Acad Sci U S A (2003) + item-36 at level 2: list_item: S Richards; N Aziz; S Bale; . St ... Molecular Pathology.. Genet Med (2015) + item-37 at level 2: list_item: J Esparza-Gordillo; E Goicoechea ... cluster in 1q32.. Hum Mol Genet (2005) + item-38 at level 2: list_item: E Bresin; E Rurali; J Caprioli; ... al phenotype.. J Am Soc Nephrol (2013) + item-39 at level 2: list_item: Y Sugawara; H Kato; M Nagasaki; ... c uremic syndrome.. J Hum Genet (2023) + item-40 at level 2: list_item: M Riedl; F Fakhouri; Quintrec M ... pproaches.. Semin Thromb Hemost (2014) + item-41 at level 2: list_item: F Fakhouri; L Roumenina; F Provo ... ne mutations.. J Am Soc Nephrol (2010) + item-42 at level 2: list_item: JM Campistol; M Arias; G Ariceta ... consensus document.. Nefrologia (2015) + item-43 at level 2: list_item: Clech A Le; N Simon-Tillaux; F P ... netic risk factors.. Kidney Int (2019) + item-44 at level 2: list_item: J Barish; P Kopparthy; B Fletche ... que presentation.. BMJ Case Rep (2019) + item-45 at level 2: list_item: T Kajiyama; M Fukuda; Y Rikitake ... eatitis: a case report.. Cureus (2023) + item-46 at level 2: list_item: O Taton; M Delhaye; P Stordeur; ... zumab.. Acta Gastroenterol Belg (2016) + item-47 at level 2: list_item: M Noris; J Caprioli; E Bresin; . ... enotype.. Clin J Am Soc Nephrol (2010) \ No newline at end of file diff --git a/tests/data/groundtruth/docling_v2/1349-7235-63-2651.nxml.json b/tests/data/groundtruth/docling_v2/1349-7235-63-2651.nxml.json new file mode 100644 index 00000000..82781a51 --- /dev/null +++ b/tests/data/groundtruth/docling_v2/1349-7235-63-2651.nxml.json @@ -0,0 +1,6357 @@ +{ + "schema_name": "DoclingDocument", + "version": "1.0.0", + "name": "1349-7235-63-2651", + "origin": { + "mimetype": "text/xml", + "binary_hash": 6290118187319588444, + "filename": "1349-7235-63-2651.nxml" + }, + "furniture": { + "self_ref": "#/furniture", + "children": [], + "name": "_root_", + "label": "unspecified" + }, + "body": { + "self_ref": "#/body", + "children": [ + { + "$ref": "#/texts/0" + }, + { + "$ref": "#/texts/1" + }, + { + "$ref": "#/texts/2" + }, + { + "$ref": "#/texts/3" + }, + { + "$ref": "#/texts/6" + }, + { + "$ref": "#/texts/10" + }, + { + "$ref": "#/texts/15" + }, + { + "$ref": "#/texts/16" + }, + { + "$ref": "#/tables/0" + }, + { + "$ref": "#/texts/17" + }, + { + "$ref": "#/tables/1" + }, + { + "$ref": "#/texts/18" + }, + { + "$ref": "#/texts/19" + }, + { + "$ref": "#/pictures/0" + }, + { + "$ref": "#/texts/20" + }, + { + "$ref": "#/groups/0" + } + ], + "name": "_root_", + "label": "unspecified" + }, + "groups": [ + { + "self_ref": "#/groups/0", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/21" + }, + { + "$ref": "#/texts/22" + }, + { + "$ref": "#/texts/23" + }, + { + "$ref": "#/texts/24" + }, + { + "$ref": "#/texts/25" + }, + { + "$ref": "#/texts/26" + }, + { + "$ref": "#/texts/27" + }, + { + "$ref": "#/texts/28" + }, + { + "$ref": "#/texts/29" + }, + { + "$ref": "#/texts/30" + }, + { + "$ref": "#/texts/31" + }, + { + "$ref": "#/texts/32" + }, + { + "$ref": "#/texts/33" + }, + { + "$ref": "#/texts/34" + }, + { + "$ref": "#/texts/35" + }, + { + "$ref": "#/texts/36" + }, + { + "$ref": "#/texts/37" + }, + { + "$ref": "#/texts/38" + }, + { + "$ref": "#/texts/39" + }, + { + "$ref": "#/texts/40" + }, + { + "$ref": "#/texts/41" + }, + { + "$ref": "#/texts/42" + } + ], + "name": "list", + "label": "list" + } + ], + "texts": [ + { + "self_ref": "#/texts/0", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "title", + "prov": [], + "orig": "Atypical Hemolytic Uremic Syndrome Triggered by Acute Pancreatitis in a Patient with a Membrane Cofactor Protein (CD46) Genetic Variant", + "text": "Atypical Hemolytic Uremic Syndrome Triggered by Acute Pancreatitis in a Patient with a Membrane Cofactor Protein (CD46) Genetic Variant" + }, + { + "self_ref": "#/texts/1", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "paragraph", + "prov": [], + "orig": "Kosuke Mochizuki; Department of Nephrology, Kansai Electric Power Hospital, Japan; Naohiro Toda; Department of Nephrology, Kansai Electric Power Hospital, Japan; Masaaki Fujita; Department of Rheumatology, Kansai Electric Power Hospital, Japan; Satoshi Kurahashi; Department of Nephrology, Kansai Electric Power Hospital, Japan; Hisako Hirashima; Department of Nephrology, Kansai Electric Power Hospital, Japan; Kazuki Yoshioka; Department of Hematology, Kansai Electric Power Hospital, Japan; Tomoya Kitagawa; Department of Hematology, Kansai Electric Power Hospital, Japan; Akira Ishii; Department of Nephrology, Kansai Electric Power Hospital, Japan; Toshiyuki Komiya; Department of Nephrology, Kansai Electric Power Hospital, Japan", + "text": "Kosuke Mochizuki; Department of Nephrology, Kansai Electric Power Hospital, Japan; Naohiro Toda; Department of Nephrology, Kansai Electric Power Hospital, Japan; Masaaki Fujita; Department of Rheumatology, Kansai Electric Power Hospital, Japan; Satoshi Kurahashi; Department of Nephrology, Kansai Electric Power Hospital, Japan; Hisako Hirashima; Department of Nephrology, Kansai Electric Power Hospital, Japan; Kazuki Yoshioka; Department of Hematology, Kansai Electric Power Hospital, Japan; Tomoya Kitagawa; Department of Hematology, Kansai Electric Power Hospital, Japan; Akira Ishii; Department of Nephrology, Kansai Electric Power Hospital, Japan; Toshiyuki Komiya; Department of Nephrology, Kansai Electric Power Hospital, Japan" + }, + { + "self_ref": "#/texts/2", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "Atypical hemolytic uremic syndrome (aHUS) is a type of HUS. We herein report a case of aHUS triggered by pancreatitis in a patient with a heterozygous variant of membrane cofactor protein ( MCP ; P165S), a complement-related gene. Plasma exchange therapy and hemodialysis improved thrombocytopenia and anemia without leading to end-stage kidney disease. This MCP heterozygous variant was insufficient to cause aHUS on its own. Pancreatitis, in addition to a genetic background with a MCP heterozygous variant, led to the manifestation of aHUS. This case supports the \u201cmultiple hit theory\u201d that several factors are required for the manifestation of aHUS.", + "text": "Atypical hemolytic uremic syndrome (aHUS) is a type of HUS. We herein report a case of aHUS triggered by pancreatitis in a patient with a heterozygous variant of membrane cofactor protein ( MCP ; P165S), a complement-related gene. Plasma exchange therapy and hemodialysis improved thrombocytopenia and anemia without leading to end-stage kidney disease. This MCP heterozygous variant was insufficient to cause aHUS on its own. Pancreatitis, in addition to a genetic background with a MCP heterozygous variant, led to the manifestation of aHUS. This case supports the \u201cmultiple hit theory\u201d that several factors are required for the manifestation of aHUS." + }, + { + "self_ref": "#/texts/3", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/4" + }, + { + "$ref": "#/texts/5" + } + ], + "label": "section_header", + "prov": [], + "orig": "Introduction", + "text": "Introduction", + "level": 1 + }, + { + "self_ref": "#/texts/4", + "parent": { + "$ref": "#/texts/3" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "In the Kidney Disease: Improving Global Outcomes (KDIGO) classification, TMA is classified into four categories: STEC-HUS induced by Shiga toxin-producing Escherichia coli (STEC) infection, thrombotic thrombocytopenic purpura (TTP), \u201cprimary aHUS,\u201d and \u201csecondary aHUS.\u201d TTP is caused by a marked deficiency in a disintegrin-like and metalloproteinase with thrombospondin type 1 motifs 13 (ADAMTS-13) activity, either because of genetic abnormalities or acquired autoantibodies. Conversely, more than 90% of HUS cases are STEC-HUS, and the remaining 10% are aHUS, which does not involve STEC infection (1,2). The term \u201cprimary aHUS\u201d is used when an underlying abnormality of the alternative pathway of complement is strongly suspected, and other causes of \u201csecondary aHUS\u201d have been excluded.", + "text": "In the Kidney Disease: Improving Global Outcomes (KDIGO) classification, TMA is classified into four categories: STEC-HUS induced by Shiga toxin-producing Escherichia coli (STEC) infection, thrombotic thrombocytopenic purpura (TTP), \u201cprimary aHUS,\u201d and \u201csecondary aHUS.\u201d TTP is caused by a marked deficiency in a disintegrin-like and metalloproteinase with thrombospondin type 1 motifs 13 (ADAMTS-13) activity, either because of genetic abnormalities or acquired autoantibodies. Conversely, more than 90% of HUS cases are STEC-HUS, and the remaining 10% are aHUS, which does not involve STEC infection (1,2). The term \u201cprimary aHUS\u201d is used when an underlying abnormality of the alternative pathway of complement is strongly suspected, and other causes of \u201csecondary aHUS\u201d have been excluded." + }, + { + "self_ref": "#/texts/5", + "parent": { + "$ref": "#/texts/3" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "Pathogenic genetic variants in a patient with aHUS include complement factor H (CFH), membrane cofactor protein (MCP; CD46), complement factor I (CFI), complement 3 (C3), complement factor B (CFB), thrombomodulin (THBD), complement factor H related protein 1 (CFHR1), complement factor H related protein 5 (CFHR5), and diacylglycerol kinase epsilon (DGKE) (3-6). Fujisawa et al. reported that, in an analysis of 118 aHUS patients in Japan, the frequencies of C3, CFH, MCP and DGKE genetic abnormalities were 32 (27%), 10 (8%), 5 (4%), and 1 (0.8%), respectively, and the frequency of anti-CFH antibodies was 20 (17%). Unidentified genetic abnormalities were reported in 36 patients (30%) (7). However, even in some patients, a complement abnormality could not be identified.", + "text": "Pathogenic genetic variants in a patient with aHUS include complement factor H (CFH), membrane cofactor protein (MCP; CD46), complement factor I (CFI), complement 3 (C3), complement factor B (CFB), thrombomodulin (THBD), complement factor H related protein 1 (CFHR1), complement factor H related protein 5 (CFHR5), and diacylglycerol kinase epsilon (DGKE) (3-6). Fujisawa et al. reported that, in an analysis of 118 aHUS patients in Japan, the frequencies of C3, CFH, MCP and DGKE genetic abnormalities were 32 (27%), 10 (8%), 5 (4%), and 1 (0.8%), respectively, and the frequency of anti-CFH antibodies was 20 (17%). Unidentified genetic abnormalities were reported in 36 patients (30%) (7). However, even in some patients, a complement abnormality could not be identified." + }, + { + "self_ref": "#/texts/6", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/7" + }, + { + "$ref": "#/texts/8" + }, + { + "$ref": "#/texts/9" + } + ], + "label": "section_header", + "prov": [], + "orig": "Case Report", + "text": "Case Report", + "level": 1 + }, + { + "self_ref": "#/texts/7", + "parent": { + "$ref": "#/texts/6" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "The laboratory data are shown in Table 1. After EUS-FNA, the patient complained of left-sided abdominal pain, and the pancreatic amylase level was found to have increased to 1,547 U/L. The patient's vital signs were as follows: body temperature, 37.5\u00b0C; and blood pressure, 136/74 mmHg. Contrast-enhanced computed tomography (CT) revealed a contrast-impaired area of the pancreatic tail and increased peripancreatic fatty tissue density (Figure A). The patient was diagnosed with acute pancreatitis after EUS-FNA. Treatment was started with fasting, analgesia with acetaminophen, treatment with nafamostat-mesylate, and large extracellular fluid replacement of 4,000 mL/day. Serum creatinine increased from 0.75 to 1.33 mg/dL, and the estimated glomerular filtration rate (eGFR) decreased from 87 to 46.5, indicating acute kidney injury. The urinary protein excretion was 6.15 g/gCr, and hematuria (3+) was observed. Blood samples showed progression of anemia from Hb 15.5 to 12.4 mg/dL, and platelets decreased from 313,000 to 5,000/\u03bcL. Schistocytes were detected at a rate of 50-70/2,000 red blood cells (RBCs), lactate dehydrogenase (LDH) levels were elevated to 2,469 U/L, and haptoglobin was 23 mg/dL.", + "text": "The laboratory data are shown in Table 1. After EUS-FNA, the patient complained of left-sided abdominal pain, and the pancreatic amylase level was found to have increased to 1,547 U/L. The patient's vital signs were as follows: body temperature, 37.5\u00b0C; and blood pressure, 136/74 mmHg. Contrast-enhanced computed tomography (CT) revealed a contrast-impaired area of the pancreatic tail and increased peripancreatic fatty tissue density (Figure A). The patient was diagnosed with acute pancreatitis after EUS-FNA. Treatment was started with fasting, analgesia with acetaminophen, treatment with nafamostat-mesylate, and large extracellular fluid replacement of 4,000 mL/day. Serum creatinine increased from 0.75 to 1.33 mg/dL, and the estimated glomerular filtration rate (eGFR) decreased from 87 to 46.5, indicating acute kidney injury. The urinary protein excretion was 6.15 g/gCr, and hematuria (3+) was observed. Blood samples showed progression of anemia from Hb 15.5 to 12.4 mg/dL, and platelets decreased from 313,000 to 5,000/\u03bcL. Schistocytes were detected at a rate of 50-70/2,000 red blood cells (RBCs), lactate dehydrogenase (LDH) levels were elevated to 2,469 U/L, and haptoglobin was 23 mg/dL." + }, + { + "self_ref": "#/texts/8", + "parent": { + "$ref": "#/texts/6" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "The patient was found to have suffered a relapse of inflammation and showed elevated pancreatic enzymes on day X+7. CT showed pancreatic swelling and hypo-absorptive areas in the peripancreatic, gastric fold, and transverse colonic mesentery, suggesting the formation of walled-off necrosis (WON) (Figure B). The WON improved with antibiotic treatment. After confirming no recurrence of postprandial abdominal pain, the patient was discharged on day X+26.", + "text": "The patient was found to have suffered a relapse of inflammation and showed elevated pancreatic enzymes on day X+7. CT showed pancreatic swelling and hypo-absorptive areas in the peripancreatic, gastric fold, and transverse colonic mesentery, suggesting the formation of walled-off necrosis (WON) (Figure B). The WON improved with antibiotic treatment. After confirming no recurrence of postprandial abdominal pain, the patient was discharged on day X+26." + }, + { + "self_ref": "#/texts/9", + "parent": { + "$ref": "#/texts/6" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "We outsourced next-generation sequencing of complement-related genetic abnormalities to the KAZUSA DNA Research Institute. In the laboratory, CFH, CFI, MCP, C3, CFB, THBD, DGKE, and CFHR5 were analyzed using next-generation sequencing hybridization capture methods for rare single nucleotide substitutions and deletions with an allele frequency of <0.5%. In addition, complement function tests (sheep erythrocyte hemolysis test) and anti-CFH antibody tests were performed. The sheep erythrocyte hemolysis test was performed because it is useful for detecting genetic mutations in CFH and anti-CFH antibodies. The results showed the absence of anti-CFH antibodies (8). Genetic testing revealed a 493-base cytosine (C) to thymine (T) mutation in MCP (MCP P165S), a complement-related gene responsible for atypical HUS, resulting in a missense variant of proline-to-serine substitution and a heterozygous mutation in MCP. Based on the MCP findings, we considered this case to potentially be primary aHUS triggered by acute pancreatitis.", + "text": "We outsourced next-generation sequencing of complement-related genetic abnormalities to the KAZUSA DNA Research Institute. In the laboratory, CFH, CFI, MCP, C3, CFB, THBD, DGKE, and CFHR5 were analyzed using next-generation sequencing hybridization capture methods for rare single nucleotide substitutions and deletions with an allele frequency of <0.5%. In addition, complement function tests (sheep erythrocyte hemolysis test) and anti-CFH antibody tests were performed. The sheep erythrocyte hemolysis test was performed because it is useful for detecting genetic mutations in CFH and anti-CFH antibodies. The results showed the absence of anti-CFH antibodies (8). Genetic testing revealed a 493-base cytosine (C) to thymine (T) mutation in MCP (MCP P165S), a complement-related gene responsible for atypical HUS, resulting in a missense variant of proline-to-serine substitution and a heterozygous mutation in MCP. Based on the MCP findings, we considered this case to potentially be primary aHUS triggered by acute pancreatitis." + }, + { + "self_ref": "#/texts/10", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/11" + }, + { + "$ref": "#/texts/12" + }, + { + "$ref": "#/texts/13" + }, + { + "$ref": "#/texts/14" + } + ], + "label": "section_header", + "prov": [], + "orig": "Discussion", + "text": "Discussion", + "level": 1 + }, + { + "self_ref": "#/texts/11", + "parent": { + "$ref": "#/texts/10" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "In the present case, the patient had a missense variant of MCP (MCP P165S). A previous report indicated a 50% reduction in MCP expression in leukocytes in patients with the MCP P165S variant (9). Another study reported that a 50% reduction in MCP expression leads to a decrease in the binding ability of C3b to <50% compared to normal MCP expression (10). The MCP P165S variant is not registered in Clinvar but is categorized as \u201clikely pathogenic\u201d according to the The American College of Medical Genetics and Genomics guidelines (ACMG guidelines) (11). Esparaza-Gordillio et al. reported families with the same genetic variant as this case and found that patients with only the MCP variant did not manifest aHUS, whereas those with coexisting the CFI mutation and MCPggaac single-nucleotide variant haplotype block, another variant of MCP, did manifest aHUS (9,12,13). The clinical characteristics of the patients with the MCP P165S variant are summarized in Table 2. In the present case, only the protein-coding region exons of CFH, CFI, CD46, C3, CFB, THBD, and DGKE and their intron boundaries were searched using the next-generation sequencer, and the multiple ligation-dependent probe amplification (MLPA) method was not used to detect structural variants. The lack of a genetic analysis using MLPA is considered a limitation of this case (14).", + "text": "In the present case, the patient had a missense variant of MCP (MCP P165S). A previous report indicated a 50% reduction in MCP expression in leukocytes in patients with the MCP P165S variant (9). Another study reported that a 50% reduction in MCP expression leads to a decrease in the binding ability of C3b to <50% compared to normal MCP expression (10). The MCP P165S variant is not registered in Clinvar but is categorized as \u201clikely pathogenic\u201d according to the The American College of Medical Genetics and Genomics guidelines (ACMG guidelines) (11). Esparaza-Gordillio et al. reported families with the same genetic variant as this case and found that patients with only the MCP variant did not manifest aHUS, whereas those with coexisting the CFI mutation and MCPggaac single-nucleotide variant haplotype block, another variant of MCP, did manifest aHUS (9,12,13). The clinical characteristics of the patients with the MCP P165S variant are summarized in Table 2. In the present case, only the protein-coding region exons of CFH, CFI, CD46, C3, CFB, THBD, and DGKE and their intron boundaries were searched using the next-generation sequencer, and the multiple ligation-dependent probe amplification (MLPA) method was not used to detect structural variants. The lack of a genetic analysis using MLPA is considered a limitation of this case (14)." + }, + { + "self_ref": "#/texts/12", + "parent": { + "$ref": "#/texts/10" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "Several triggers are thought to be involved in the manifestation of aHUS, in addition to genetic mutations, including infection, pregnancy, transplantation, metabolic diseases, vasculitis, and pancreatitis, called the \u201cmultiple hit hypothesis\u201d (13,15-17). Among the reported triggers, cases of aHUS triggered by pancreatitis are rare, accounting for just 3% (4/110) of secondary aHUS cases (18-21). Previously reported cases of aHUS triggered by pancreatitis were not specifically investigated for complement-related gene mutations, so whether or not complement-related gene mutations other than pancreatitis have any effects on the manifestation of aHUS is unclear.", + "text": "Several triggers are thought to be involved in the manifestation of aHUS, in addition to genetic mutations, including infection, pregnancy, transplantation, metabolic diseases, vasculitis, and pancreatitis, called the \u201cmultiple hit hypothesis\u201d (13,15-17). Among the reported triggers, cases of aHUS triggered by pancreatitis are rare, accounting for just 3% (4/110) of secondary aHUS cases (18-21). Previously reported cases of aHUS triggered by pancreatitis were not specifically investigated for complement-related gene mutations, so whether or not complement-related gene mutations other than pancreatitis have any effects on the manifestation of aHUS is unclear." + }, + { + "self_ref": "#/texts/13", + "parent": { + "$ref": "#/texts/10" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "In the present case, aHUS developed in a patient with a genetic variant (MCP P165S) that originally did not meet the threshold for aHUS development due to pancreatitis after EUS-FNA. This shows that several triggers, not just genetic mutations, are involved in the development of aHUS, supporting the \u201cmultiple hit hypothesis.\u201d Patients with MCP variants have a better prognosis and lower probability of developing end-stage kidney disease (ESKD) and death than patients with other genetic mutations, such as CFH, CFI, C3, and THBD (13,17,22).", + "text": "In the present case, aHUS developed in a patient with a genetic variant (MCP P165S) that originally did not meet the threshold for aHUS development due to pancreatitis after EUS-FNA. This shows that several triggers, not just genetic mutations, are involved in the development of aHUS, supporting the \u201cmultiple hit hypothesis.\u201d Patients with MCP variants have a better prognosis and lower probability of developing end-stage kidney disease (ESKD) and death than patients with other genetic mutations, such as CFH, CFI, C3, and THBD (13,17,22)." + }, + { + "self_ref": "#/texts/14", + "parent": { + "$ref": "#/texts/10" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "The patient in this case responded well to plasma exchange therapy and PE. He recovered his kidney function, supporting the relatively good prognosis of patients with MCP mutations compared to other aHUS-related gene mutations. Although the efficacy of eculizumab as a treatment for aHUS has been described in recent years, eculizumab was not used in this case, as the patient had a good clinical course with plasma exchange therapy and HD (17,19,21). In addition, infection with WON after pancreatitis was suspected on day X+7; therefore, it was difficult to use eculizumab, which produces immunosuppressive effects. However, the use of eculizumab should be considered in the future if aHUS relapse is triggered by some event.", + "text": "The patient in this case responded well to plasma exchange therapy and PE. He recovered his kidney function, supporting the relatively good prognosis of patients with MCP mutations compared to other aHUS-related gene mutations. Although the efficacy of eculizumab as a treatment for aHUS has been described in recent years, eculizumab was not used in this case, as the patient had a good clinical course with plasma exchange therapy and HD (17,19,21). In addition, infection with WON after pancreatitis was suspected on day X+7; therefore, it was difficult to use eculizumab, which produces immunosuppressive effects. However, the use of eculizumab should be considered in the future if aHUS relapse is triggered by some event." + }, + { + "self_ref": "#/texts/15", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "section_header", + "prov": [], + "orig": "Tables", + "text": "Tables", + "level": 1 + }, + { + "self_ref": "#/texts/16", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [], + "orig": "Table 1. Progress of Lab-date in This Case.", + "text": "Table 1. Progress of Lab-date in This Case." + }, + { + "self_ref": "#/texts/17", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [], + "orig": "Table 2. Profiles of the Patients with MCP P165S Variant.", + "text": "Table 2. Profiles of the Patients with MCP P165S Variant." + }, + { + "self_ref": "#/texts/18", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "section_header", + "prov": [], + "orig": "Figures", + "text": "Figures", + "level": 1 + }, + { + "self_ref": "#/texts/19", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [], + "orig": "Figure. Abdominal computed tomography (CT) findings in this patient. (A) Day X+2 after performing endoscopic ultrasound-guided fine needle aspiration (EUS-FNA). The pancreatic body tail has a mildly reduced contrast effect in the arterial phase, consistent with the findings of acute pancreatitis. (B) Day X+7. CT indicates a low-absorption area suspected of being walled-off necrosis (WON) around the peripancreatic to the gastric body and gastric antrum.", + "text": "Figure. Abdominal computed tomography (CT) findings in this patient. (A) Day X+2 after performing endoscopic ultrasound-guided fine needle aspiration (EUS-FNA). The pancreatic body tail has a mildly reduced contrast effect in the arterial phase, consistent with the findings of acute pancreatitis. (B) Day X+7. CT indicates a low-absorption area suspected of being walled-off necrosis (WON) around the peripancreatic to the gastric body and gastric antrum." + }, + { + "self_ref": "#/texts/20", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "section_header", + "prov": [], + "orig": "References", + "text": "References", + "level": 1 + }, + { + "self_ref": "#/texts/21", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "TH Goodship; HT Cook; F Fakhouri; . Atypical hemolytic uremic syndrome and C3 glomerulopathy: conclusions from a \u201ckidney disease: improving global outcomes\u201d (KDIGO) Controversies Conference.. Kidney Int (2017)", + "text": "TH Goodship; HT Cook; F Fakhouri; . Atypical hemolytic uremic syndrome and C3 glomerulopathy: conclusions from a \u201ckidney disease: improving global outcomes\u201d (KDIGO) Controversies Conference.. Kidney Int (2017)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/22", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "M Noris; G Remuzzi. Atypical hemolytic-uremic syndrome.. N Engl J Med (2009)", + "text": "M Noris; G Remuzzi. Atypical hemolytic-uremic syndrome.. N Engl J Med (2009)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/23", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "J Caprioli; M Noris; S Brioschi; . Genetics of HUS: the impact of MCP, CFH, and IF mutations on clinical presentation, response to treatment, and outcome.. Blood (2006)", + "text": "J Caprioli; M Noris; S Brioschi; . Genetics of HUS: the impact of MCP, CFH, and IF mutations on clinical presentation, response to treatment, and outcome.. Blood (2006)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/24", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "CJ Fang; V Fremeaux-Bacchi; MK Liszewski; . Membrane cofactor protein mutations in atypical hemolytic uremic syndrome (aHUS), fatal Stx-HUS, C3 glomerulonephritis, and the HELLP syndrome.. Blood (2008)", + "text": "CJ Fang; V Fremeaux-Bacchi; MK Liszewski; . Membrane cofactor protein mutations in atypical hemolytic uremic syndrome (aHUS), fatal Stx-HUS, C3 glomerulonephritis, and the HELLP syndrome.. Blood (2008)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/25", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "V Fremeaux-Bacchi; EA Moulton; D Kavanagh; . Genetic and functional analyses of membrane cofactor protein (CD46) mutations in atypical hemolytic uremic syndrome.. J Am Soc Nephrol (2006)", + "text": "V Fremeaux-Bacchi; EA Moulton; D Kavanagh; . Genetic and functional analyses of membrane cofactor protein (CD46) mutations in atypical hemolytic uremic syndrome.. J Am Soc Nephrol (2006)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/26", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "V Fremeaux-Bacchi; MA Dragon-Durey; J Blouin; . Complement factor I: a susceptibility gene for atypical haemolytic uraemic syndrome.. J Med Genet (2004)", + "text": "V Fremeaux-Bacchi; MA Dragon-Durey; J Blouin; . Complement factor I: a susceptibility gene for atypical haemolytic uraemic syndrome.. J Med Genet (2004)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/27", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "M Fujisawa; H Kato; Y Yoshida; . Clinical characteristics and genetic backgrounds of Japanese patients with atypical hemolytic uremic syndrome.. Clin Exp Nephrol (2018)", + "text": "M Fujisawa; H Kato; Y Yoshida; . Clinical characteristics and genetic backgrounds of Japanese patients with atypical hemolytic uremic syndrome.. Clin Exp Nephrol (2018)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/28", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "Y Yoshida; T Miyata; M Matsumoto; . A novel quantitative hemolytic assay coupled with restriction fragment length polymorphisms analysis enabled early diagnosis of atypical hemolytic uremic syndrome and identified unique predisposing mutations in Japan.. PLoS One (2015)", + "text": "Y Yoshida; T Miyata; M Matsumoto; . A novel quantitative hemolytic assay coupled with restriction fragment length polymorphisms analysis enabled early diagnosis of atypical hemolytic uremic syndrome and identified unique predisposing mutations in Japan.. PLoS One (2015)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/29", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "J Esparza-Gordillo; EG Jorge; CA Garrido; . Insights into hemolytic uremic syndrome: segregation of three independent predisposition factors in a large, multiple affected pedigree.. Mol Immunol (2006)", + "text": "J Esparza-Gordillo; EG Jorge; CA Garrido; . Insights into hemolytic uremic syndrome: segregation of three independent predisposition factors in a large, multiple affected pedigree.. Mol Immunol (2006)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/30", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "A Richards; EJ Kemp; MK Liszewski; . Mutations in human complement regulator, membrane cofactor protein (CD46), predispose to development of familial hemolytic uremic syndrome.. Proc Natl Acad Sci U S A (2003)", + "text": "A Richards; EJ Kemp; MK Liszewski; . Mutations in human complement regulator, membrane cofactor protein (CD46), predispose to development of familial hemolytic uremic syndrome.. Proc Natl Acad Sci U S A (2003)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/31", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "S Richards; N Aziz; S Bale; . Standards and guidelines for the interpretation of sequence variants: a joint consensus recommendation of the American College of Medical Genetics and Genomics and the Association for Molecular Pathology.. Genet Med (2015)", + "text": "S Richards; N Aziz; S Bale; . Standards and guidelines for the interpretation of sequence variants: a joint consensus recommendation of the American College of Medical Genetics and Genomics and the Association for Molecular Pathology.. Genet Med (2015)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/32", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "J Esparza-Gordillo; E Goicoechea de Jorge; A Buil; . Predisposition to atypical hemolytic uremic syndrome involves the concurrence of different susceptibility alleles in the regulators of complement activation gene cluster in 1q32.. Hum Mol Genet (2005)", + "text": "J Esparza-Gordillo; E Goicoechea de Jorge; A Buil; . Predisposition to atypical hemolytic uremic syndrome involves the concurrence of different susceptibility alleles in the regulators of complement activation gene cluster in 1q32.. Hum Mol Genet (2005)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/33", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "E Bresin; E Rurali; J Caprioli; . Combined complement gene mutations in atypical hemolytic uremic syndrome influence clinical phenotype.. J Am Soc Nephrol (2013)", + "text": "E Bresin; E Rurali; J Caprioli; . Combined complement gene mutations in atypical hemolytic uremic syndrome influence clinical phenotype.. J Am Soc Nephrol (2013)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/34", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "Y Sugawara; H Kato; M Nagasaki; . CFH-CFHR1 hybrid genes in two cases of atypical hemolytic uremic syndrome.. J Hum Genet (2023)", + "text": "Y Sugawara; H Kato; M Nagasaki; . CFH-CFHR1 hybrid genes in two cases of atypical hemolytic uremic syndrome.. J Hum Genet (2023)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/35", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "M Riedl; F Fakhouri; Quintrec M Le; . Spectrum of complement-mediated thrombotic microangiopathies: pathogenetic insights identifying novel treatment approaches.. Semin Thromb Hemost (2014)", + "text": "M Riedl; F Fakhouri; Quintrec M Le; . Spectrum of complement-mediated thrombotic microangiopathies: pathogenetic insights identifying novel treatment approaches.. Semin Thromb Hemost (2014)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/36", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "F Fakhouri; L Roumenina; F Provot; . Pregnancy-associated hemolytic uremic syndrome revisited in the era of complement gene mutations.. J Am Soc Nephrol (2010)", + "text": "F Fakhouri; L Roumenina; F Provot; . Pregnancy-associated hemolytic uremic syndrome revisited in the era of complement gene mutations.. J Am Soc Nephrol (2010)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/37", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "JM Campistol; M Arias; G Ariceta; . An update for atypical haemolytic uraemic syndrome: diagnosis and treatment. A consensus document.. Nefrologia (2015)", + "text": "JM Campistol; M Arias; G Ariceta; . An update for atypical haemolytic uraemic syndrome: diagnosis and treatment. A consensus document.. Nefrologia (2015)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/38", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "Clech A Le; N Simon-Tillaux; F Prov\u00f4t; . Atypical and secondary hemolytic uremic syndromes have a distinct presentation and no common genetic risk factors.. Kidney Int (2019)", + "text": "Clech A Le; N Simon-Tillaux; F Prov\u00f4t; . Atypical and secondary hemolytic uremic syndromes have a distinct presentation and no common genetic risk factors.. Kidney Int (2019)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/39", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "J Barish; P Kopparthy; B Fletcher. Atypical haemolytic uremic syndrome secondary to acute pancreatitis: a unique presentation.. BMJ Case Rep (2019)", + "text": "J Barish; P Kopparthy; B Fletcher. Atypical haemolytic uremic syndrome secondary to acute pancreatitis: a unique presentation.. BMJ Case Rep (2019)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/40", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "T Kajiyama; M Fukuda; Y Rikitake; O Takasu. Atypical hemolytic uremic syndrome secondary to pancreatitis: a case report.. Cureus (2023)", + "text": "T Kajiyama; M Fukuda; Y Rikitake; O Takasu. Atypical hemolytic uremic syndrome secondary to pancreatitis: a case report.. Cureus (2023)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/41", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "O Taton; M Delhaye; P Stordeur; T Goodship; Moine A Le; A Massart. An unusual case of haemolytic uraemic syndrome following endoscopic retrograde cholangiopancreatography rapidly improved with eculizumab.. Acta Gastroenterol Belg (2016)", + "text": "O Taton; M Delhaye; P Stordeur; T Goodship; Moine A Le; A Massart. An unusual case of haemolytic uraemic syndrome following endoscopic retrograde cholangiopancreatography rapidly improved with eculizumab.. Acta Gastroenterol Belg (2016)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/42", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "M Noris; J Caprioli; E Bresin; . Relative role of genetic complement abnormalities in sporadic and familial aHUS and their impact on clinical phenotype.. Clin J Am Soc Nephrol (2010)", + "text": "M Noris; J Caprioli; E Bresin; . Relative role of genetic complement abnormalities in sporadic and familial aHUS and their impact on clinical phenotype.. Clin J Am Soc Nephrol (2010)", + "enumerated": false, + "marker": "-" + } + ], + "pictures": [ + { + "self_ref": "#/pictures/0", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "picture", + "prov": [], + "captions": [ + { + "$ref": "#/texts/19" + } + ], + "references": [], + "footnotes": [], + "annotations": [] + } + ], + "tables": [ + { + "self_ref": "#/tables/0", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "table", + "prov": [], + "captions": [ + { + "$ref": "#/texts/16" + } + ], + "references": [], + "footnotes": [], + "data": { + "table_cells": [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "Variable", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "DAY0", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "DAY2", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "DAY3", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "DAY4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "DAY7", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "DAY11", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "DAY14", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "WBC (\u00d7103/\u03bcL)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "54", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "112", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "105", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "107", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "210", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "171", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "77", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "Haemoglobin (g/dL)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "15.5", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "12.4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "10.5", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "8.8", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "7.2", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "7.9", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "8.3", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "Platelets (\u00d7104/\u03bcL)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "31.3", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.5", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "2.1", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "1.6", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "19.6", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "63.8", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "83", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "Cr (mg/dL)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.75", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "1.33", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "1.51", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "1.67", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "1.34", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "1", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "0.98", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "LDH (U/L)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "151", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "2,469", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "2,513", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "2,024", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "550", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "447", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "362", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "T-Bil (mg/dL)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.77", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "4.35", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "4.57", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "4.49", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "1.98", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "1", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "0.82", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "P-Amy (U/L)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "34", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "1,632", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "1,080", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "302", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "196", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "134", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "173", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "CRP (mg/dL)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.47", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "16.76", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "25.95", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "15.21", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "21.22", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "5.52", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "1.43", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "Haptoglobin (mg/dL)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "23", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "<10", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "88", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + "num_rows": 10, + "num_cols": 15, + "grid": [ + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "Variable", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "DAY0", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "DAY2", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "DAY3", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "DAY4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "DAY7", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "DAY11", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "DAY14", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "WBC (\u00d7103/\u03bcL)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "54", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "112", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "105", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "107", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "210", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "171", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "77", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "Haemoglobin (g/dL)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "15.5", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "12.4", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "10.5", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "8.8", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "7.2", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "7.9", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "8.3", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "Platelets (\u00d7104/\u03bcL)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "31.3", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "0.5", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "2.1", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "1.6", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "19.6", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "63.8", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "83", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "Cr (mg/dL)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.75", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "1.33", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "1.51", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "1.67", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "1.34", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "1", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "0.98", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "LDH (U/L)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "151", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "2,469", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "2,513", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "2,024", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "550", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "447", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "362", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "T-Bil (mg/dL)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.77", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "4.35", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "4.57", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "4.49", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "1.98", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "1", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "0.82", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "P-Amy (U/L)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "34", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "1,632", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "1,080", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "302", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "196", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "134", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "173", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "CRP (mg/dL)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "0.47", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "16.76", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "25.95", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "15.21", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "21.22", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "5.52", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "1.43", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "Haptoglobin (mg/dL)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "23", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "<10", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 9, + "end_col_offset_idx": 10, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 10, + "end_col_offset_idx": 11, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 11, + "end_col_offset_idx": 12, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 12, + "end_col_offset_idx": 13, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 13, + "end_col_offset_idx": 14, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 9, + "end_row_offset_idx": 10, + "start_col_offset_idx": 14, + "end_col_offset_idx": 15, + "text": "88", + "column_header": false, + "row_header": false, + "row_section": false + } + ] + ] + } + }, + { + "self_ref": "#/tables/1", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "table", + "prov": [], + "captions": [ + { + "$ref": "#/texts/17" + } + ], + "references": [], + "footnotes": [], + "data": { + "table_cells": [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "patient", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "MCP mutation", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "Other gene variant", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "sex", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "Age at onset (yr)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "Triggers", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "onset of aHUS", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "outcome at first episode", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "reference", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "This case", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "P165S", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "M", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "49", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "pancreatitis", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "+", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "Remission", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "HUS68", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "P165S", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "CFI(T538X) MCP ggaac", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "F", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "57", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "n.a.", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "+", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "Remission", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "(9)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "HUS84", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "P165S", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "CFI(T538X) MCP ggaac", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "F", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "41", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "No trigger", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "+", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "Remission", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "(9)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "III-10", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "P165S", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "M", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "52", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "(9)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "III-11", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "P165S", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "CFI(T538X)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "M", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "54", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "(9)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "IV-1", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "P165S", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "CFI(T538X)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "F", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "37", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "(9)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "IV-2", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "P165S", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "CFI(T538X)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "M", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "35", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "(9)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "IV-3", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "P165S", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "F", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "30", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "(9)", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + "num_rows": 9, + "num_cols": 9, + "grid": [ + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "patient", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "MCP mutation", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "Other gene variant", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "sex", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "Age at onset (yr)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "Triggers", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "onset of aHUS", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "outcome at first episode", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 0, + "end_row_offset_idx": 1, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "reference", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "This case", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "P165S", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "M", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "49", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "pancreatitis", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "+", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "Remission", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 1, + "end_row_offset_idx": 2, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "HUS68", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "P165S", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "CFI(T538X) MCP ggaac", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "F", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "57", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "n.a.", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "+", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "Remission", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 2, + "end_row_offset_idx": 3, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "(9)", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "HUS84", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "P165S", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "CFI(T538X) MCP ggaac", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "F", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "41", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "No trigger", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "+", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "Remission", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 3, + "end_row_offset_idx": 4, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "(9)", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "III-10", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "P165S", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "M", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "52", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 4, + "end_row_offset_idx": 5, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "(9)", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "III-11", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "P165S", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "CFI(T538X)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "M", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "54", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 5, + "end_row_offset_idx": 6, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "(9)", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "IV-1", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "P165S", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "CFI(T538X)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "F", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "37", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 6, + "end_row_offset_idx": 7, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "(9)", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "IV-2", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "P165S", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "CFI(T538X)", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "M", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "35", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 7, + "end_row_offset_idx": 8, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "(9)", + "column_header": false, + "row_header": false, + "row_section": false + } + ], + [ + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 0, + "end_col_offset_idx": 1, + "text": "IV-3", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 1, + "end_col_offset_idx": 2, + "text": "P165S", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 2, + "end_col_offset_idx": 3, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 3, + "end_col_offset_idx": 4, + "text": "F", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 4, + "end_col_offset_idx": 5, + "text": "30", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 5, + "end_col_offset_idx": 6, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 6, + "end_col_offset_idx": 7, + "text": "-", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 7, + "end_col_offset_idx": 8, + "text": "", + "column_header": false, + "row_header": false, + "row_section": false + }, + { + "row_span": 1, + "col_span": 1, + "start_row_offset_idx": 8, + "end_row_offset_idx": 9, + "start_col_offset_idx": 8, + "end_col_offset_idx": 9, + "text": "(9)", + "column_header": false, + "row_header": false, + "row_section": false + } + ] + ] + } + } + ], + "key_value_items": [], + "pages": {} +} \ No newline at end of file diff --git a/tests/data/groundtruth/docling_v2/1349-7235-63-2651.nxml.md b/tests/data/groundtruth/docling_v2/1349-7235-63-2651.nxml.md new file mode 100644 index 00000000..724d1f00 --- /dev/null +++ b/tests/data/groundtruth/docling_v2/1349-7235-63-2651.nxml.md @@ -0,0 +1,89 @@ +# Atypical Hemolytic Uremic Syndrome Triggered by Acute Pancreatitis in a Patient with a Membrane Cofactor Protein (CD46) Genetic Variant + +Kosuke Mochizuki; Department of Nephrology, Kansai Electric Power Hospital, Japan; Naohiro Toda; Department of Nephrology, Kansai Electric Power Hospital, Japan; Masaaki Fujita; Department of Rheumatology, Kansai Electric Power Hospital, Japan; Satoshi Kurahashi; Department of Nephrology, Kansai Electric Power Hospital, Japan; Hisako Hirashima; Department of Nephrology, Kansai Electric Power Hospital, Japan; Kazuki Yoshioka; Department of Hematology, Kansai Electric Power Hospital, Japan; Tomoya Kitagawa; Department of Hematology, Kansai Electric Power Hospital, Japan; Akira Ishii; Department of Nephrology, Kansai Electric Power Hospital, Japan; Toshiyuki Komiya; Department of Nephrology, Kansai Electric Power Hospital, Japan + +Atypical hemolytic uremic syndrome (aHUS) is a type of HUS. We herein report a case of aHUS triggered by pancreatitis in a patient with a heterozygous variant of membrane cofactor protein ( MCP ; P165S), a complement-related gene. Plasma exchange therapy and hemodialysis improved thrombocytopenia and anemia without leading to end-stage kidney disease. This MCP heterozygous variant was insufficient to cause aHUS on its own. Pancreatitis, in addition to a genetic background with a MCP heterozygous variant, led to the manifestation of aHUS. This case supports the “multiple hit theory” that several factors are required for the manifestation of aHUS. + +## Introduction + +In the Kidney Disease: Improving Global Outcomes (KDIGO) classification, TMA is classified into four categories: STEC-HUS induced by Shiga toxin-producing Escherichia coli (STEC) infection, thrombotic thrombocytopenic purpura (TTP), “primary aHUS,” and “secondary aHUS.” TTP is caused by a marked deficiency in a disintegrin-like and metalloproteinase with thrombospondin type 1 motifs 13 (ADAMTS-13) activity, either because of genetic abnormalities or acquired autoantibodies. Conversely, more than 90% of HUS cases are STEC-HUS, and the remaining 10% are aHUS, which does not involve STEC infection (1,2). The term “primary aHUS” is used when an underlying abnormality of the alternative pathway of complement is strongly suspected, and other causes of “secondary aHUS” have been excluded. + +Pathogenic genetic variants in a patient with aHUS include complement factor H (CFH), membrane cofactor protein (MCP; CD46), complement factor I (CFI), complement 3 (C3), complement factor B (CFB), thrombomodulin (THBD), complement factor H related protein 1 (CFHR1), complement factor H related protein 5 (CFHR5), and diacylglycerol kinase epsilon (DGKE) (3-6). Fujisawa et al. reported that, in an analysis of 118 aHUS patients in Japan, the frequencies of C3, CFH, MCP and DGKE genetic abnormalities were 32 (27%), 10 (8%), 5 (4%), and 1 (0.8%), respectively, and the frequency of anti-CFH antibodies was 20 (17%). Unidentified genetic abnormalities were reported in 36 patients (30%) (7). However, even in some patients, a complement abnormality could not be identified. + +## Case Report + +The laboratory data are shown in Table 1. After EUS-FNA, the patient complained of left-sided abdominal pain, and the pancreatic amylase level was found to have increased to 1,547 U/L. The patient's vital signs were as follows: body temperature, 37.5°C; and blood pressure, 136/74 mmHg. Contrast-enhanced computed tomography (CT) revealed a contrast-impaired area of the pancreatic tail and increased peripancreatic fatty tissue density (Figure A). The patient was diagnosed with acute pancreatitis after EUS-FNA. Treatment was started with fasting, analgesia with acetaminophen, treatment with nafamostat-mesylate, and large extracellular fluid replacement of 4,000 mL/day. Serum creatinine increased from 0.75 to 1.33 mg/dL, and the estimated glomerular filtration rate (eGFR) decreased from 87 to 46.5, indicating acute kidney injury. The urinary protein excretion was 6.15 g/gCr, and hematuria (3+) was observed. Blood samples showed progression of anemia from Hb 15.5 to 12.4 mg/dL, and platelets decreased from 313,000 to 5,000/μL. Schistocytes were detected at a rate of 50-70/2,000 red blood cells (RBCs), lactate dehydrogenase (LDH) levels were elevated to 2,469 U/L, and haptoglobin was 23 mg/dL. + +The patient was found to have suffered a relapse of inflammation and showed elevated pancreatic enzymes on day X+7. CT showed pancreatic swelling and hypo-absorptive areas in the peripancreatic, gastric fold, and transverse colonic mesentery, suggesting the formation of walled-off necrosis (WON) (Figure B). The WON improved with antibiotic treatment. After confirming no recurrence of postprandial abdominal pain, the patient was discharged on day X+26. + +We outsourced next-generation sequencing of complement-related genetic abnormalities to the KAZUSA DNA Research Institute. In the laboratory, CFH, CFI, MCP, C3, CFB, THBD, DGKE, and CFHR5 were analyzed using next-generation sequencing hybridization capture methods for rare single nucleotide substitutions and deletions with an allele frequency of <0.5%. In addition, complement function tests (sheep erythrocyte hemolysis test) and anti-CFH antibody tests were performed. The sheep erythrocyte hemolysis test was performed because it is useful for detecting genetic mutations in CFH and anti-CFH antibodies. The results showed the absence of anti-CFH antibodies (8). Genetic testing revealed a 493-base cytosine (C) to thymine (T) mutation in MCP (MCP P165S), a complement-related gene responsible for atypical HUS, resulting in a missense variant of proline-to-serine substitution and a heterozygous mutation in MCP. Based on the MCP findings, we considered this case to potentially be primary aHUS triggered by acute pancreatitis. + +## Discussion + +In the present case, the patient had a missense variant of MCP (MCP P165S). A previous report indicated a 50% reduction in MCP expression in leukocytes in patients with the MCP P165S variant (9). Another study reported that a 50% reduction in MCP expression leads to a decrease in the binding ability of C3b to <50% compared to normal MCP expression (10). The MCP P165S variant is not registered in Clinvar but is categorized as “likely pathogenic” according to the The American College of Medical Genetics and Genomics guidelines (ACMG guidelines) (11). Esparaza-Gordillio et al. reported families with the same genetic variant as this case and found that patients with only the MCP variant did not manifest aHUS, whereas those with coexisting the CFI mutation and MCPggaac single-nucleotide variant haplotype block, another variant of MCP, did manifest aHUS (9,12,13). The clinical characteristics of the patients with the MCP P165S variant are summarized in Table 2. In the present case, only the protein-coding region exons of CFH, CFI, CD46, C3, CFB, THBD, and DGKE and their intron boundaries were searched using the next-generation sequencer, and the multiple ligation-dependent probe amplification (MLPA) method was not used to detect structural variants. The lack of a genetic analysis using MLPA is considered a limitation of this case (14). + +Several triggers are thought to be involved in the manifestation of aHUS, in addition to genetic mutations, including infection, pregnancy, transplantation, metabolic diseases, vasculitis, and pancreatitis, called the “multiple hit hypothesis” (13,15-17). Among the reported triggers, cases of aHUS triggered by pancreatitis are rare, accounting for just 3% (4/110) of secondary aHUS cases (18-21). Previously reported cases of aHUS triggered by pancreatitis were not specifically investigated for complement-related gene mutations, so whether or not complement-related gene mutations other than pancreatitis have any effects on the manifestation of aHUS is unclear. + +In the present case, aHUS developed in a patient with a genetic variant (MCP P165S) that originally did not meet the threshold for aHUS development due to pancreatitis after EUS-FNA. This shows that several triggers, not just genetic mutations, are involved in the development of aHUS, supporting the “multiple hit hypothesis.” Patients with MCP variants have a better prognosis and lower probability of developing end-stage kidney disease (ESKD) and death than patients with other genetic mutations, such as CFH, CFI, C3, and THBD (13,17,22). + +The patient in this case responded well to plasma exchange therapy and PE. He recovered his kidney function, supporting the relatively good prognosis of patients with MCP mutations compared to other aHUS-related gene mutations. Although the efficacy of eculizumab as a treatment for aHUS has been described in recent years, eculizumab was not used in this case, as the patient had a good clinical course with plasma exchange therapy and HD (17,19,21). In addition, infection with WON after pancreatitis was suspected on day X+7; therefore, it was difficult to use eculizumab, which produces immunosuppressive effects. However, the use of eculizumab should be considered in the future if aHUS relapse is triggered by some event. + +## Tables + +Table 1. Progress of Lab-date in This Case. + +| Variable | | DAY0 | | DAY2 | | DAY3 | | DAY4 | | DAY7 | | DAY11 | | DAY14 | +|---------------------|----|--------|----|--------|----|--------|----|--------|----|--------|----|---------|----|---------| +| WBC (×103/μL) | | 54 | | 112 | | 105 | | 107 | | 210 | | 171 | | 77 | +| Haemoglobin (g/dL) | | 15.5 | | 12.4 | | 10.5 | | 8.8 | | 7.2 | | 7.9 | | 8.3 | +| Platelets (×104/μL) | | 31.3 | | 0.5 | | 2.1 | | 1.6 | | 19.6 | | 63.8 | | 83 | +| Cr (mg/dL) | | 0.75 | | 1.33 | | 1.51 | | 1.67 | | 1.34 | | 1 | | 0.98 | +| LDH (U/L) | | 151 | | 2,469 | | 2,513 | | 2,024 | | 550 | | 447 | | 362 | +| T-Bil (mg/dL) | | 0.77 | | 4.35 | | 4.57 | | 4.49 | | 1.98 | | 1 | | 0.82 | +| P-Amy (U/L) | | 34 | | 1,632 | | 1,080 | | 302 | | 196 | | 134 | | 173 | +| CRP (mg/dL) | | 0.47 | | 16.76 | | 25.95 | | 15.21 | | 21.22 | | 5.52 | | 1.43 | +| Haptoglobin (mg/dL) | | 23 | | | | | | <10 | | | | | | 88 | + +Table 2. Profiles of the Patients with MCP P165S Variant. + +| patient | MCP mutation | Other gene variant | sex | Age at onset (yr) | Triggers | onset of aHUS | outcome at first episode | reference | +|-----------|----------------|----------------------|-------|---------------------|--------------|-----------------|----------------------------|-------------| +| This case | P165S | | M | 49 | pancreatitis | + | Remission | | +| HUS68 | P165S | CFI(T538X) MCP ggaac | F | 57 | n.a. | + | Remission | (9) | +| HUS84 | P165S | CFI(T538X) MCP ggaac | F | 41 | No trigger | + | Remission | (9) | +| III-10 | P165S | | M | 52 | | - | | (9) | +| III-11 | P165S | CFI(T538X) | M | 54 | | - | | (9) | +| IV-1 | P165S | CFI(T538X) | F | 37 | | - | | (9) | +| IV-2 | P165S | CFI(T538X) | M | 35 | | - | | (9) | +| IV-3 | P165S | | F | 30 | | - | | (9) | + +## Figures + +Figure. Abdominal computed tomography (CT) findings in this patient. (A) Day X+2 after performing endoscopic ultrasound-guided fine needle aspiration (EUS-FNA). The pancreatic body tail has a mildly reduced contrast effect in the arterial phase, consistent with the findings of acute pancreatitis. (B) Day X+7. CT indicates a low-absorption area suspected of being walled-off necrosis (WON) around the peripancreatic to the gastric body and gastric antrum. + + + +## References + +- TH Goodship; HT Cook; F Fakhouri; . Atypical hemolytic uremic syndrome and C3 glomerulopathy: conclusions from a “kidney disease: improving global outcomes” (KDIGO) Controversies Conference.. Kidney Int (2017) +- M Noris; G Remuzzi. Atypical hemolytic-uremic syndrome.. N Engl J Med (2009) +- J Caprioli; M Noris; S Brioschi; . Genetics of HUS: the impact of MCP, CFH, and IF mutations on clinical presentation, response to treatment, and outcome.. Blood (2006) +- CJ Fang; V Fremeaux-Bacchi; MK Liszewski; . Membrane cofactor protein mutations in atypical hemolytic uremic syndrome (aHUS), fatal Stx-HUS, C3 glomerulonephritis, and the HELLP syndrome.. Blood (2008) +- V Fremeaux-Bacchi; EA Moulton; D Kavanagh; . Genetic and functional analyses of membrane cofactor protein (CD46) mutations in atypical hemolytic uremic syndrome.. J Am Soc Nephrol (2006) +- V Fremeaux-Bacchi; MA Dragon-Durey; J Blouin; . Complement factor I: a susceptibility gene for atypical haemolytic uraemic syndrome.. J Med Genet (2004) +- M Fujisawa; H Kato; Y Yoshida; . Clinical characteristics and genetic backgrounds of Japanese patients with atypical hemolytic uremic syndrome.. Clin Exp Nephrol (2018) +- Y Yoshida; T Miyata; M Matsumoto; . A novel quantitative hemolytic assay coupled with restriction fragment length polymorphisms analysis enabled early diagnosis of atypical hemolytic uremic syndrome and identified unique predisposing mutations in Japan.. PLoS One (2015) +- J Esparza-Gordillo; EG Jorge; CA Garrido; . Insights into hemolytic uremic syndrome: segregation of three independent predisposition factors in a large, multiple affected pedigree.. Mol Immunol (2006) +- A Richards; EJ Kemp; MK Liszewski; . Mutations in human complement regulator, membrane cofactor protein (CD46), predispose to development of familial hemolytic uremic syndrome.. Proc Natl Acad Sci U S A (2003) +- S Richards; N Aziz; S Bale; . Standards and guidelines for the interpretation of sequence variants: a joint consensus recommendation of the American College of Medical Genetics and Genomics and the Association for Molecular Pathology.. Genet Med (2015) +- J Esparza-Gordillo; E Goicoechea de Jorge; A Buil; . Predisposition to atypical hemolytic uremic syndrome involves the concurrence of different susceptibility alleles in the regulators of complement activation gene cluster in 1q32.. Hum Mol Genet (2005) +- E Bresin; E Rurali; J Caprioli; . Combined complement gene mutations in atypical hemolytic uremic syndrome influence clinical phenotype.. J Am Soc Nephrol (2013) +- Y Sugawara; H Kato; M Nagasaki; . CFH-CFHR1 hybrid genes in two cases of atypical hemolytic uremic syndrome.. J Hum Genet (2023) +- M Riedl; F Fakhouri; Quintrec M Le; . Spectrum of complement-mediated thrombotic microangiopathies: pathogenetic insights identifying novel treatment approaches.. Semin Thromb Hemost (2014) +- F Fakhouri; L Roumenina; F Provot; . Pregnancy-associated hemolytic uremic syndrome revisited in the era of complement gene mutations.. J Am Soc Nephrol (2010) +- JM Campistol; M Arias; G Ariceta; . An update for atypical haemolytic uraemic syndrome: diagnosis and treatment. A consensus document.. Nefrologia (2015) +- Clech A Le; N Simon-Tillaux; F Provôt; . Atypical and secondary hemolytic uremic syndromes have a distinct presentation and no common genetic risk factors.. Kidney Int (2019) +- J Barish; P Kopparthy; B Fletcher. Atypical haemolytic uremic syndrome secondary to acute pancreatitis: a unique presentation.. BMJ Case Rep (2019) +- T Kajiyama; M Fukuda; Y Rikitake; O Takasu. Atypical hemolytic uremic syndrome secondary to pancreatitis: a case report.. Cureus (2023) +- O Taton; M Delhaye; P Stordeur; T Goodship; Moine A Le; A Massart. An unusual case of haemolytic uraemic syndrome following endoscopic retrograde cholangiopancreatography rapidly improved with eculizumab.. Acta Gastroenterol Belg (2016) +- M Noris; J Caprioli; E Bresin; . Relative role of genetic complement abnormalities in sporadic and familial aHUS and their impact on clinical phenotype.. Clin J Am Soc Nephrol (2010) \ No newline at end of file diff --git a/tests/data/groundtruth/docling_v2/2305.03393v1-pg9.json b/tests/data/groundtruth/docling_v2/2305.03393v1-pg9.json index dca4d7f1..0ecd1bca 100644 --- a/tests/data/groundtruth/docling_v2/2305.03393v1-pg9.json +++ b/tests/data/groundtruth/docling_v2/2305.03393v1-pg9.json @@ -1 +1 @@ -{"schema_name": "DoclingDocument", "version": "1.0.0", "name": "2305.03393v1-pg9", "origin": {"mimetype": "application/pdf", "binary_hash": 3463920545297462180, "filename": "2305.03393v1-pg9.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"cref": "#/texts/0"}, {"cref": "#/texts/1"}, {"cref": "#/texts/2"}, {"cref": "#/texts/3"}, {"cref": "#/texts/4"}, {"cref": "#/texts/5"}, {"cref": "#/tables/0"}, {"cref": "#/texts/6"}, {"cref": "#/texts/7"}, {"cref": "#/texts/8"}], "name": "_root_", "label": "unspecified"}, "groups": [], "texts": [{"self_ref": "#/texts/0", "parent": {"cref": "#/body"}, "children": [], "label": "page_header", "prov": [{"page_no": 1, "bbox": {"l": 193.73236083984375, "t": 700.5064697265625, "r": 447.5447692871094, "b": 689.2177734375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 60]}], "orig": "Optimized Table Tokenization for Table Structure Recognition", "text": "Optimized Table Tokenization for Table Structure Recognition"}, {"self_ref": "#/texts/1", "parent": {"cref": "#/body"}, "children": [], "label": "page_header", "prov": [{"page_no": 1, "bbox": {"l": 475.14013671875, "t": 700.5064697265625, "r": 480.5931396484375, "b": 689.2177734375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "9", "text": "9"}, {"self_ref": "#/texts/2", "parent": {"cref": "#/body"}, "children": [], "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 133.96153259277344, "t": 675.5369873046875, "r": 480.61419677734375, "b": 639.093017578125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 163]}], "orig": "order to compute the TED score. Inference timing results for all experiments were obtained from the same machine on a single core with AMD EPYC 7763 CPU @2.45 GHz.", "text": "order to compute the TED score. Inference timing results for all experiments were obtained from the same machine on a single core with AMD EPYC 7763 CPU @2.45 GHz."}, {"self_ref": "#/texts/3", "parent": {"cref": "#/body"}, "children": [], "label": "section_header", "prov": [{"page_no": 1, "bbox": {"l": 134.31336975097656, "t": 625.2948608398438, "r": 318.4514465332031, "b": 612.7918090820312, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 32]}], "orig": "5.1 Hyper Parameter Optimization", "text": "5.1 Hyper Parameter Optimization", "level": 1}, {"self_ref": "#/texts/4", "parent": {"cref": "#/body"}, "children": [], "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 133.96913146972656, "t": 608.8849487304688, "r": 481.3177795410156, "b": 536.5759887695312, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 423]}], "orig": "We have chosen the PubTabNet data set to perform HPO, since it includes a highly diverse set of tables. Also we report TED scores separately for simple and complex tables (tables with cell spans). Results are presented in Table. 1. It is evident that with OTSL, our model achieves the same TED score and slightly better mAP scores in comparison to HTML. However OTSL yields a 2x speed up in the inference runtime over HTML.", "text": "We have chosen the PubTabNet data set to perform HPO, since it includes a highly diverse set of tables. Also we report TED scores separately for simple and complex tables (tables with cell spans). Results are presented in Table. 1. It is evident that with OTSL, our model achieves the same TED score and slightly better mAP scores in comparison to HTML. However OTSL yields a 2x speed up in the inference runtime over HTML."}, {"self_ref": "#/texts/5", "parent": {"cref": "#/body"}, "children": [], "label": "caption", "prov": [{"page_no": 1, "bbox": {"l": 134.0642852783203, "t": 519.2052612304688, "r": 480.5989074707031, "b": 464.017822265625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 398]}], "orig": "Table 1. HPO performed in OTSL and HTML representation on the same transformer-based TableFormer [9] architecture, trained only on PubTabNet [22]. Effects of reducing the # of layers in encoder and decoder stages of the model show that smaller models trained on OTSL perform better, especially in recognizing complex table structures, and maintain a much higher mAP score than the HTML counterpart.", "text": "Table 1. HPO performed in OTSL and HTML representation on the same transformer-based TableFormer [9] architecture, trained only on PubTabNet [22]. Effects of reducing the # of layers in encoder and decoder stages of the model show that smaller models trained on OTSL perform better, especially in recognizing complex table structures, and maintain a much higher mAP score than the HTML counterpart."}, {"self_ref": "#/texts/6", "parent": {"cref": "#/body"}, "children": [], "label": "section_header", "prov": [{"page_no": 1, "bbox": {"l": 134.38507080078125, "t": 286.3288879394531, "r": 264.4082946777344, "b": 273.8258056640625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 24]}], "orig": "5.2 Quantitative Results", "text": "5.2 Quantitative Results", "level": 1}, {"self_ref": "#/texts/7", "parent": {"cref": "#/body"}, "children": [], "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 133.9154052734375, "t": 269.9199523925781, "r": 480.72003173828125, "b": 173.6999969482422, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 555]}], "orig": "We picked the model parameter configuration that produced the best prediction quality (enc=6, dec=6, heads=8) with PubTabNet alone, then independently trained and evaluated it on three publicly available data sets: PubTabNet (395k samples), FinTabNet (113k samples) and PubTables-1M (about 1M samples). Performance results are presented in Table. 2. It is clearly evident that the model trained on OTSL outperforms HTML across the board, keeping high TEDs and mAP scores even on difficult financial tables (FinTabNet) that contain sparse and large tables.", "text": "We picked the model parameter configuration that produced the best prediction quality (enc=6, dec=6, heads=8) with PubTabNet alone, then independently trained and evaluated it on three publicly available data sets: PubTabNet (395k samples), FinTabNet (113k samples) and PubTables-1M (about 1M samples). Performance results are presented in Table. 2. It is clearly evident that the model trained on OTSL outperforms HTML across the board, keeping high TEDs and mAP scores even on difficult financial tables (FinTabNet) that contain sparse and large tables."}, {"self_ref": "#/texts/8", "parent": {"cref": "#/body"}, "children": [], "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 133.861083984375, "t": 174.2779541015625, "r": 480.78125, "b": 125.87999725341797, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 289]}], "orig": "Additionally, the results show that OTSL has an advantage over HTML when applied on a bigger data set like PubTables-1M and achieves significantly improved scores. Finally, OTSL achieves faster inference due to fewer decoding steps which is a result of the reduced sequence representation.", "text": "Additionally, the results show that OTSL has an advantage over HTML when applied on a bigger data set like PubTables-1M and achieves significantly improved scores. Finally, OTSL achieves faster inference due to fewer decoding steps which is a result of the reduced sequence representation."}], "pictures": [], "tables": [{"self_ref": "#/tables/0", "parent": {"cref": "#/body"}, "children": [], "label": "table", "prov": [{"page_no": 1, "bbox": {"l": 139.66741943359375, "t": 454.4546203613281, "r": 475.00927734375, "b": 322.5054626464844, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [{"cref": "#/texts/5"}], "references": [], "footnotes": [], "image": null, "data": {"table_cells": [{"bbox": {"l": 160.3699951171875, "t": 452.5425109863281, "r": 168.04522705078125, "b": 441.2538146972656, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "#", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 207.9739990234375, "t": 452.5425109863281, "r": 215.64923095703125, "b": 441.2538146972656, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "#", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 239.79800415039062, "t": 447.0635070800781, "r": 278.33380126953125, "b": 435.7748107910156, "coord_origin": "BOTTOMLEFT"}, "row_span": 2, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 2, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "Language", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 324.6700134277344, "t": 452.5425109863281, "r": 348.2641906738281, "b": 441.2538146972656, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 3, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 3, "end_col_offset_idx": 6, "text": "TEDs", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 396.27099609375, "t": 452.5425109863281, "r": 417.1259460449219, "b": 441.2538146972656, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 6, "end_col_offset_idx": 7, "text": "mAP", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 430.77099609375, "t": 452.5425109863281, "r": 467.14141845703125, "b": 441.2538146972656, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 7, "end_col_offset_idx": 8, "text": "Inference", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 144.5919952392578, "t": 439.5915222167969, "r": 183.82894897460938, "b": 428.3028259277344, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "enc-layers", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 192.19500732421875, "t": 439.5915222167969, "r": 231.42303466796875, "b": 428.3028259277344, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "dec-layers", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 286.6860046386719, "t": 439.5915222167969, "r": 312.328125, "b": 428.3028259277344, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "simple", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 320.7019958496094, "t": 439.5915222167969, "r": 353.71539306640625, "b": 428.3028259277344, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 4, "end_col_offset_idx": 5, "text": "complex", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 369.3059997558594, "t": 439.5915222167969, "r": 379.0291442871094, "b": 428.3028259277344, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 5, "end_col_offset_idx": 6, "text": "all", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 394.927001953125, "t": 441.5835266113281, "r": 418.4692077636719, "b": 430.2948303222656, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 6, "end_col_offset_idx": 7, "text": "(0.75)", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 427.14801025390625, "t": 441.5835266113281, "r": 470.7695617675781, "b": 430.2948303222656, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 7, "end_col_offset_idx": 8, "text": "time (secs)", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 161.906005859375, "t": 420.7615051269531, "r": 166.51473999023438, "b": 409.4728088378906, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "6", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 209.50900268554688, "t": 420.7615051269531, "r": 214.11773681640625, "b": 409.4728088378906, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "6", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 245.17599487304688, "t": 426.24151611328125, "r": 272.9449462890625, "b": 402.0008239746094, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "OTSL HTML", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 289.0169982910156, "t": 426.24151611328125, "r": 310.00732421875, "b": 402.0008239746094, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "0.965 0.969", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 326.7170104980469, "t": 426.24151611328125, "r": 347.70733642578125, "b": 402.0008239746094, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 4, "end_col_offset_idx": 5, "text": "0.934 0.927", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 363.6759948730469, "t": 426.24151611328125, "r": 384.66632080078125, "b": 402.0008239746094, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 5, "end_col_offset_idx": 6, "text": "0.955 0.955", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 396.20599365234375, "t": 426.3042907714844, "r": 417.1963195800781, "b": 402.0008239746094, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 6, "end_col_offset_idx": 7, "text": "0.88 0.857", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 439.5270080566406, "t": 426.3042907714844, "r": 458.38336181640625, "b": 402.0008239746094, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 7, "end_col_offset_idx": 8, "text": "2.73 5.39", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 161.906005859375, "t": 394.46051025390625, "r": 166.51473999023438, "b": 383.17181396484375, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "4", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 209.50900268554688, "t": 394.46051025390625, "r": 214.11773681640625, "b": 383.17181396484375, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "4", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 245.17599487304688, "t": 399.93951416015625, "r": 272.9449462890625, "b": 375.6998291015625, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "OTSL HTML", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 289.0169982910156, "t": 399.93951416015625, "r": 310.00732421875, "b": 388.65081787109375, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "0.938", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 326.7170104980469, "t": 399.93951416015625, "r": 347.70733642578125, "b": 388.65081787109375, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 4, "end_col_offset_idx": 5, "text": "0.904", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 363.6759948730469, "t": 399.93951416015625, "r": 384.66632080078125, "b": 388.65081787109375, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 5, "end_col_offset_idx": 6, "text": "0.927", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 394.6180114746094, "t": 400.0022888183594, "r": 418.7779846191406, "b": 388.5970153808594, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 6, "end_col_offset_idx": 7, "text": "0.853", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 439.5270080566406, "t": 400.0022888183594, "r": 458.38336181640625, "b": 388.5970153808594, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 7, "end_col_offset_idx": 8, "text": "1.97", "column_header": false, "row_header": false, "row_section": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "", "column_header": false, "row_header": false, "row_section": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 246.7100067138672, "t": 373.6385192871094, "r": 271.41064453125, "b": 362.3498229980469, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "OTSL", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 289.0169982910156, "t": 386.988525390625, "r": 310.00732421875, "b": 362.3498229980469, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "0.952 0.923", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 326.7170104980469, "t": 386.988525390625, "r": 347.70733642578125, "b": 375.6998291015625, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 4, "end_col_offset_idx": 5, "text": "0.909", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 362.0880126953125, "t": 387.0513000488281, "r": 386.24798583984375, "b": 375.6460266113281, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 5, "end_col_offset_idx": 6, "text": "0.938", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 396.20599365234375, "t": 386.988525390625, "r": 417.1963195800781, "b": 375.6998291015625, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 6, "end_col_offset_idx": 7, "text": "0.843", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 440.7669982910156, "t": 386.988525390625, "r": 457.150390625, "b": 375.6998291015625, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 7, "end_col_offset_idx": 8, "text": "3.77", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 161.906005859375, "t": 368.1595153808594, "r": 166.51473999023438, "b": 356.8708190917969, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "2", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 209.50900268554688, "t": 368.1595153808594, "r": 214.11773681640625, "b": 356.8708190917969, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "4", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 245.17599487304688, "t": 360.6875305175781, "r": 272.9449462890625, "b": 349.3988342285156, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "HTML", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 289.0169982910156, "t": 360.6875305175781, "r": 310.00732421875, "b": 349.3988342285156, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "0.945", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 326.7170104980469, "t": 373.6385192871094, "r": 347.70733642578125, "b": 349.3988342285156, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 4, "end_col_offset_idx": 5, "text": "0.897 0.901", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 362.0880126953125, "t": 373.6385192871094, "r": 386.24798583984375, "b": 349.34503173828125, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 5, "end_col_offset_idx": 6, "text": "0.915 0.931", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 394.6180114746094, "t": 373.7012939453125, "r": 418.7779846191406, "b": 349.3988342285156, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 6, "end_col_offset_idx": 7, "text": "0.859 0.834", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 439.5270080566406, "t": 373.7012939453125, "r": 458.38336181640625, "b": 349.3988342285156, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 7, "end_col_offset_idx": 8, "text": "1.91 3.81", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 161.906005859375, "t": 341.8575134277344, "r": 166.51473999023438, "b": 330.5688171386719, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "4", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 209.50900268554688, "t": 341.8575134277344, "r": 214.11773681640625, "b": 330.5688171386719, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "2", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 245.17599487304688, "t": 347.3375244140625, "r": 272.9449462890625, "b": 323.0968322753906, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "OTSL HTML", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 289.0169982910156, "t": 347.3375244140625, "r": 310.00732421875, "b": 323.0968322753906, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "0.952 0.944", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 326.7170104980469, "t": 347.3375244140625, "r": 347.70733642578125, "b": 323.0968322753906, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 4, "end_col_offset_idx": 5, "text": "0.92 0.903", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 362.0880126953125, "t": 347.4002990722656, "r": 386.24798583984375, "b": 323.0968322753906, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 5, "end_col_offset_idx": 6, "text": "0.942 0.931", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 394.6180114746094, "t": 347.4002990722656, "r": 418.7779846191406, "b": 323.0968322753906, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 6, "end_col_offset_idx": 7, "text": "0.857 0.824", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 439.5270080566406, "t": 347.4002990722656, "r": 458.38336181640625, "b": 323.0968322753906, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 7, "end_col_offset_idx": 8, "text": "1.22 2", "column_header": false, "row_header": false, "row_section": false}], "num_rows": 7, "num_cols": 8, "grid": [[{"bbox": {"l": 160.3699951171875, "t": 452.5425109863281, "r": 168.04522705078125, "b": 441.2538146972656, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "#", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 207.9739990234375, "t": 452.5425109863281, "r": 215.64923095703125, "b": 441.2538146972656, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "#", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 239.79800415039062, "t": 447.0635070800781, "r": 278.33380126953125, "b": 435.7748107910156, "coord_origin": "BOTTOMLEFT"}, "row_span": 2, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 2, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "Language", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 324.6700134277344, "t": 452.5425109863281, "r": 348.2641906738281, "b": 441.2538146972656, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 3, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 3, "end_col_offset_idx": 6, "text": "TEDs", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 324.6700134277344, "t": 452.5425109863281, "r": 348.2641906738281, "b": 441.2538146972656, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 3, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 3, "end_col_offset_idx": 6, "text": "TEDs", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 324.6700134277344, "t": 452.5425109863281, "r": 348.2641906738281, "b": 441.2538146972656, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 3, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 3, "end_col_offset_idx": 6, "text": "TEDs", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 396.27099609375, "t": 452.5425109863281, "r": 417.1259460449219, "b": 441.2538146972656, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 6, "end_col_offset_idx": 7, "text": "mAP", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 430.77099609375, "t": 452.5425109863281, "r": 467.14141845703125, "b": 441.2538146972656, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 7, "end_col_offset_idx": 8, "text": "Inference", "column_header": true, "row_header": false, "row_section": false}], [{"bbox": {"l": 144.5919952392578, "t": 439.5915222167969, "r": 183.82894897460938, "b": 428.3028259277344, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "enc-layers", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 192.19500732421875, "t": 439.5915222167969, "r": 231.42303466796875, "b": 428.3028259277344, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "dec-layers", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 239.79800415039062, "t": 447.0635070800781, "r": 278.33380126953125, "b": 435.7748107910156, "coord_origin": "BOTTOMLEFT"}, "row_span": 2, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 2, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "Language", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 286.6860046386719, "t": 439.5915222167969, "r": 312.328125, "b": 428.3028259277344, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "simple", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 320.7019958496094, "t": 439.5915222167969, "r": 353.71539306640625, "b": 428.3028259277344, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 4, "end_col_offset_idx": 5, "text": "complex", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 369.3059997558594, "t": 439.5915222167969, "r": 379.0291442871094, "b": 428.3028259277344, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 5, "end_col_offset_idx": 6, "text": "all", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 394.927001953125, "t": 441.5835266113281, "r": 418.4692077636719, "b": 430.2948303222656, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 6, "end_col_offset_idx": 7, "text": "(0.75)", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 427.14801025390625, "t": 441.5835266113281, "r": 470.7695617675781, "b": 430.2948303222656, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 7, "end_col_offset_idx": 8, "text": "time (secs)", "column_header": true, "row_header": false, "row_section": false}], [{"bbox": {"l": 161.906005859375, "t": 420.7615051269531, "r": 166.51473999023438, "b": 409.4728088378906, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "6", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 209.50900268554688, "t": 420.7615051269531, "r": 214.11773681640625, "b": 409.4728088378906, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "6", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 245.17599487304688, "t": 426.24151611328125, "r": 272.9449462890625, "b": 402.0008239746094, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "OTSL HTML", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 289.0169982910156, "t": 426.24151611328125, "r": 310.00732421875, "b": 402.0008239746094, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "0.965 0.969", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 326.7170104980469, "t": 426.24151611328125, "r": 347.70733642578125, "b": 402.0008239746094, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 4, "end_col_offset_idx": 5, "text": "0.934 0.927", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 363.6759948730469, "t": 426.24151611328125, "r": 384.66632080078125, "b": 402.0008239746094, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 5, "end_col_offset_idx": 6, "text": "0.955 0.955", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 396.20599365234375, "t": 426.3042907714844, "r": 417.1963195800781, "b": 402.0008239746094, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 6, "end_col_offset_idx": 7, "text": "0.88 0.857", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 439.5270080566406, "t": 426.3042907714844, "r": 458.38336181640625, "b": 402.0008239746094, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 7, "end_col_offset_idx": 8, "text": "2.73 5.39", "column_header": false, "row_header": false, "row_section": false}], [{"bbox": {"l": 161.906005859375, "t": 394.46051025390625, "r": 166.51473999023438, "b": 383.17181396484375, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "4", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 209.50900268554688, "t": 394.46051025390625, "r": 214.11773681640625, "b": 383.17181396484375, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "4", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 245.17599487304688, "t": 399.93951416015625, "r": 272.9449462890625, "b": 375.6998291015625, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "OTSL HTML", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 289.0169982910156, "t": 399.93951416015625, "r": 310.00732421875, "b": 388.65081787109375, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "0.938", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 326.7170104980469, "t": 399.93951416015625, "r": 347.70733642578125, "b": 388.65081787109375, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 4, "end_col_offset_idx": 5, "text": "0.904", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 363.6759948730469, "t": 399.93951416015625, "r": 384.66632080078125, "b": 388.65081787109375, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 5, "end_col_offset_idx": 6, "text": "0.927", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 394.6180114746094, "t": 400.0022888183594, "r": 418.7779846191406, "b": 388.5970153808594, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 6, "end_col_offset_idx": 7, "text": "0.853", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 439.5270080566406, "t": 400.0022888183594, "r": 458.38336181640625, "b": 388.5970153808594, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 7, "end_col_offset_idx": 8, "text": "1.97", "column_header": false, "row_header": false, "row_section": false}], [{"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "", "column_header": false, "row_header": false, "row_section": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 246.7100067138672, "t": 373.6385192871094, "r": 271.41064453125, "b": 362.3498229980469, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "OTSL", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 289.0169982910156, "t": 386.988525390625, "r": 310.00732421875, "b": 362.3498229980469, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "0.952 0.923", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 326.7170104980469, "t": 386.988525390625, "r": 347.70733642578125, "b": 375.6998291015625, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 4, "end_col_offset_idx": 5, "text": "0.909", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 362.0880126953125, "t": 387.0513000488281, "r": 386.24798583984375, "b": 375.6460266113281, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 5, "end_col_offset_idx": 6, "text": "0.938", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 396.20599365234375, "t": 386.988525390625, "r": 417.1963195800781, "b": 375.6998291015625, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 6, "end_col_offset_idx": 7, "text": "0.843", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 440.7669982910156, "t": 386.988525390625, "r": 457.150390625, "b": 375.6998291015625, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 7, "end_col_offset_idx": 8, "text": "3.77", "column_header": false, "row_header": false, "row_section": false}], [{"bbox": {"l": 161.906005859375, "t": 368.1595153808594, "r": 166.51473999023438, "b": 356.8708190917969, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "2", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 209.50900268554688, "t": 368.1595153808594, "r": 214.11773681640625, "b": 356.8708190917969, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "4", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 245.17599487304688, "t": 360.6875305175781, "r": 272.9449462890625, "b": 349.3988342285156, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "HTML", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 289.0169982910156, "t": 360.6875305175781, "r": 310.00732421875, "b": 349.3988342285156, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "0.945", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 326.7170104980469, "t": 373.6385192871094, "r": 347.70733642578125, "b": 349.3988342285156, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 4, "end_col_offset_idx": 5, "text": "0.897 0.901", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 362.0880126953125, "t": 373.6385192871094, "r": 386.24798583984375, "b": 349.34503173828125, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 5, "end_col_offset_idx": 6, "text": "0.915 0.931", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 394.6180114746094, "t": 373.7012939453125, "r": 418.7779846191406, "b": 349.3988342285156, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 6, "end_col_offset_idx": 7, "text": "0.859 0.834", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 439.5270080566406, "t": 373.7012939453125, "r": 458.38336181640625, "b": 349.3988342285156, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 7, "end_col_offset_idx": 8, "text": "1.91 3.81", "column_header": false, "row_header": false, "row_section": false}], [{"bbox": {"l": 161.906005859375, "t": 341.8575134277344, "r": 166.51473999023438, "b": 330.5688171386719, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "4", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 209.50900268554688, "t": 341.8575134277344, "r": 214.11773681640625, "b": 330.5688171386719, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "2", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 245.17599487304688, "t": 347.3375244140625, "r": 272.9449462890625, "b": 323.0968322753906, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "OTSL HTML", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 289.0169982910156, "t": 347.3375244140625, "r": 310.00732421875, "b": 323.0968322753906, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "0.952 0.944", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 326.7170104980469, "t": 347.3375244140625, "r": 347.70733642578125, "b": 323.0968322753906, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 4, "end_col_offset_idx": 5, "text": "0.92 0.903", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 362.0880126953125, "t": 347.4002990722656, "r": 386.24798583984375, "b": 323.0968322753906, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 5, "end_col_offset_idx": 6, "text": "0.942 0.931", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 394.6180114746094, "t": 347.4002990722656, "r": 418.7779846191406, "b": 323.0968322753906, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 6, "end_col_offset_idx": 7, "text": "0.857 0.824", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 439.5270080566406, "t": 347.4002990722656, "r": 458.38336181640625, "b": 323.0968322753906, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 7, "end_col_offset_idx": 8, "text": "1.22 2", "column_header": false, "row_header": false, "row_section": false}]]}}], "key_value_items": [], "pages": {"1": {"size": {"width": 612.0, "height": 792.0}, "image": null, "page_no": 1}}} \ No newline at end of file +{"schema_name": "DoclingDocument", "version": "1.0.0", "name": "2305.03393v1-pg9", "origin": {"mimetype": "application/pdf", "binary_hash": 3463920545297462180, "filename": "2305.03393v1-pg9.pdf", "uri": null}, "furniture": {"self_ref": "#/furniture", "parent": null, "children": [], "name": "_root_", "label": "unspecified"}, "body": {"self_ref": "#/body", "parent": null, "children": [{"cref": "#/texts/0"}, {"cref": "#/texts/1"}, {"cref": "#/texts/2"}, {"cref": "#/texts/3"}, {"cref": "#/texts/4"}, {"cref": "#/texts/5"}, {"cref": "#/tables/0"}, {"cref": "#/texts/6"}, {"cref": "#/texts/7"}, {"cref": "#/texts/8"}], "name": "_root_", "label": "unspecified"}, "groups": [], "texts": [{"self_ref": "#/texts/0", "parent": {"cref": "#/body"}, "children": [], "label": "page_header", "prov": [{"page_no": 1, "bbox": {"l": 193.7325897216797, "t": 700.5064697265625, "r": 447.5447692871094, "b": 689.2177734375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 60]}], "orig": "Optimized Table Tokenization for Table Structure Recognition", "text": "Optimized Table Tokenization for Table Structure Recognition"}, {"self_ref": "#/texts/1", "parent": {"cref": "#/body"}, "children": [], "label": "page_header", "prov": [{"page_no": 1, "bbox": {"l": 475.14013671875, "t": 700.5064697265625, "r": 480.5931396484375, "b": 689.2177734375, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 1]}], "orig": "9", "text": "9"}, {"self_ref": "#/texts/2", "parent": {"cref": "#/body"}, "children": [], "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 133.9616241455078, "t": 675.5369873046875, "r": 480.61419677734375, "b": 639.093017578125, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 163]}], "orig": "order to compute the TED score. Inference timing results for all experiments were obtained from the same machine on a single core with AMD EPYC 7763 CPU @2.45 GHz.", "text": "order to compute the TED score. Inference timing results for all experiments were obtained from the same machine on a single core with AMD EPYC 7763 CPU @2.45 GHz."}, {"self_ref": "#/texts/3", "parent": {"cref": "#/body"}, "children": [], "label": "section_header", "prov": [{"page_no": 1, "bbox": {"l": 134.31333923339844, "t": 625.2948608398438, "r": 318.4514465332031, "b": 612.7918090820312, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 32]}], "orig": "5.1 Hyper Parameter Optimization", "text": "5.1 Hyper Parameter Optimization", "level": 1}, {"self_ref": "#/texts/4", "parent": {"cref": "#/body"}, "children": [], "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 133.96910095214844, "t": 608.8849487304688, "r": 481.3177185058594, "b": 536.5759887695312, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 423]}], "orig": "We have chosen the PubTabNet data set to perform HPO, since it includes a highly diverse set of tables. Also we report TED scores separately for simple and complex tables (tables with cell spans). Results are presented in Table. 1. It is evident that with OTSL, our model achieves the same TED score and slightly better mAP scores in comparison to HTML. However OTSL yields a 2x speed up in the inference runtime over HTML.", "text": "We have chosen the PubTabNet data set to perform HPO, since it includes a highly diverse set of tables. Also we report TED scores separately for simple and complex tables (tables with cell spans). Results are presented in Table. 1. It is evident that with OTSL, our model achieves the same TED score and slightly better mAP scores in comparison to HTML. However OTSL yields a 2x speed up in the inference runtime over HTML."}, {"self_ref": "#/texts/5", "parent": {"cref": "#/body"}, "children": [], "label": "caption", "prov": [{"page_no": 1, "bbox": {"l": 134.0642547607422, "t": 519.2052612304688, "r": 480.5989074707031, "b": 464.017822265625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 398]}], "orig": "Table 1. HPO performed in OTSL and HTML representation on the same transformer-based TableFormer [9] architecture, trained only on PubTabNet [22]. Effects of reducing the # of layers in encoder and decoder stages of the model show that smaller models trained on OTSL perform better, especially in recognizing complex table structures, and maintain a much higher mAP score than the HTML counterpart.", "text": "Table 1. HPO performed in OTSL and HTML representation on the same transformer-based TableFormer [9] architecture, trained only on PubTabNet [22]. Effects of reducing the # of layers in encoder and decoder stages of the model show that smaller models trained on OTSL perform better, especially in recognizing complex table structures, and maintain a much higher mAP score than the HTML counterpart."}, {"self_ref": "#/texts/6", "parent": {"cref": "#/body"}, "children": [], "label": "section_header", "prov": [{"page_no": 1, "bbox": {"l": 134.38507080078125, "t": 286.3288879394531, "r": 264.4082946777344, "b": 273.8258056640625, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 24]}], "orig": "5.2 Quantitative Results", "text": "5.2 Quantitative Results", "level": 1}, {"self_ref": "#/texts/7", "parent": {"cref": "#/body"}, "children": [], "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 133.91534423828125, "t": 269.9199523925781, "r": 480.72003173828125, "b": 173.6999969482422, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 555]}], "orig": "We picked the model parameter configuration that produced the best prediction quality (enc=6, dec=6, heads=8) with PubTabNet alone, then independently trained and evaluated it on three publicly available data sets: PubTabNet (395k samples), FinTabNet (113k samples) and PubTables-1M (about 1M samples). Performance results are presented in Table. 2. It is clearly evident that the model trained on OTSL outperforms HTML across the board, keeping high TEDs and mAP scores even on difficult financial tables (FinTabNet) that contain sparse and large tables.", "text": "We picked the model parameter configuration that produced the best prediction quality (enc=6, dec=6, heads=8) with PubTabNet alone, then independently trained and evaluated it on three publicly available data sets: PubTabNet (395k samples), FinTabNet (113k samples) and PubTables-1M (about 1M samples). Performance results are presented in Table. 2. It is clearly evident that the model trained on OTSL outperforms HTML across the board, keeping high TEDs and mAP scores even on difficult financial tables (FinTabNet) that contain sparse and large tables."}, {"self_ref": "#/texts/8", "parent": {"cref": "#/body"}, "children": [], "label": "text", "prov": [{"page_no": 1, "bbox": {"l": 133.86117553710938, "t": 174.2779541015625, "r": 480.7812805175781, "b": 125.87999725341797, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 289]}], "orig": "Additionally, the results show that OTSL has an advantage over HTML when applied on a bigger data set like PubTables-1M and achieves significantly improved scores. Finally, OTSL achieves faster inference due to fewer decoding steps which is a result of the reduced sequence representation.", "text": "Additionally, the results show that OTSL has an advantage over HTML when applied on a bigger data set like PubTables-1M and achieves significantly improved scores. Finally, OTSL achieves faster inference due to fewer decoding steps which is a result of the reduced sequence representation."}], "pictures": [], "tables": [{"self_ref": "#/tables/0", "parent": {"cref": "#/body"}, "children": [], "label": "table", "prov": [{"page_no": 1, "bbox": {"l": 139.66741943359375, "t": 454.45458984375, "r": 475.00927734375, "b": 322.5054626464844, "coord_origin": "BOTTOMLEFT"}, "charspan": [0, 0]}], "captions": [{"cref": "#/texts/5"}], "references": [], "footnotes": [], "image": null, "data": {"table_cells": [{"bbox": {"l": 160.3699951171875, "t": 452.5425109863281, "r": 168.04522705078125, "b": 441.2538146972656, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "#", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 207.9739990234375, "t": 452.5425109863281, "r": 215.64923095703125, "b": 441.2538146972656, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "#", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 239.79800415039062, "t": 447.0635070800781, "r": 278.33380126953125, "b": 435.7748107910156, "coord_origin": "BOTTOMLEFT"}, "row_span": 2, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 2, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "Language", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 324.6700134277344, "t": 452.5425109863281, "r": 348.2641906738281, "b": 441.2538146972656, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 3, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 3, "end_col_offset_idx": 6, "text": "TEDs", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 396.27099609375, "t": 452.5425109863281, "r": 417.1259460449219, "b": 441.2538146972656, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 6, "end_col_offset_idx": 7, "text": "mAP", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 430.77099609375, "t": 452.5425109863281, "r": 467.14141845703125, "b": 441.2538146972656, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 7, "end_col_offset_idx": 8, "text": "Inference", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 144.5919952392578, "t": 439.5915222167969, "r": 183.82894897460938, "b": 428.3028259277344, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "enc-layers", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 192.19500732421875, "t": 439.5915222167969, "r": 231.42303466796875, "b": 428.3028259277344, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "dec-layers", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 286.6860046386719, "t": 439.5915222167969, "r": 312.328125, "b": 428.3028259277344, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "simple", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 320.7019958496094, "t": 439.5915222167969, "r": 353.71539306640625, "b": 428.3028259277344, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 4, "end_col_offset_idx": 5, "text": "complex", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 369.3059997558594, "t": 439.5915222167969, "r": 379.0291442871094, "b": 428.3028259277344, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 5, "end_col_offset_idx": 6, "text": "all", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 394.927001953125, "t": 441.5835266113281, "r": 418.4692077636719, "b": 430.2948303222656, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 6, "end_col_offset_idx": 7, "text": "(0.75)", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 427.14801025390625, "t": 441.5835266113281, "r": 470.7695617675781, "b": 430.2948303222656, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 7, "end_col_offset_idx": 8, "text": "time (secs)", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 161.906005859375, "t": 420.7615051269531, "r": 166.51473999023438, "b": 409.4728088378906, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "6", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 209.50900268554688, "t": 420.7615051269531, "r": 214.11773681640625, "b": 409.4728088378906, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "6", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 245.17599487304688, "t": 426.24151611328125, "r": 272.9449462890625, "b": 402.0008239746094, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "OTSL HTML", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 289.0169982910156, "t": 426.24151611328125, "r": 310.00732421875, "b": 402.0008239746094, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "0.965 0.969", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 326.7170104980469, "t": 426.24151611328125, "r": 347.70733642578125, "b": 402.0008239746094, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 4, "end_col_offset_idx": 5, "text": "0.934 0.927", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 363.6759948730469, "t": 426.24151611328125, "r": 384.66632080078125, "b": 402.0008239746094, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 5, "end_col_offset_idx": 6, "text": "0.955 0.955", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 396.20599365234375, "t": 426.3042907714844, "r": 417.1963195800781, "b": 402.0008239746094, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 6, "end_col_offset_idx": 7, "text": "0.88 0.857", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 439.5270080566406, "t": 426.3042907714844, "r": 458.38336181640625, "b": 402.0008239746094, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 7, "end_col_offset_idx": 8, "text": "2.73 5.39", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 161.906005859375, "t": 394.46051025390625, "r": 166.51473999023438, "b": 383.17181396484375, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "4", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 209.50900268554688, "t": 394.46051025390625, "r": 214.11773681640625, "b": 383.17181396484375, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "4", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 245.17599487304688, "t": 399.93951416015625, "r": 272.9449462890625, "b": 375.6998291015625, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "OTSL HTML", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 289.0169982910156, "t": 399.93951416015625, "r": 310.00732421875, "b": 388.65081787109375, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "0.938", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 326.7170104980469, "t": 399.93951416015625, "r": 347.70733642578125, "b": 388.65081787109375, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 4, "end_col_offset_idx": 5, "text": "0.904", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 363.6759948730469, "t": 399.93951416015625, "r": 384.66632080078125, "b": 388.65081787109375, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 5, "end_col_offset_idx": 6, "text": "0.927", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 394.6180114746094, "t": 400.0022888183594, "r": 418.7779846191406, "b": 388.5970153808594, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 6, "end_col_offset_idx": 7, "text": "0.853", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 439.5270080566406, "t": 400.0022888183594, "r": 458.38336181640625, "b": 388.5970153808594, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 7, "end_col_offset_idx": 8, "text": "1.97", "column_header": false, "row_header": false, "row_section": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "", "column_header": false, "row_header": false, "row_section": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 246.7100067138672, "t": 373.6385192871094, "r": 271.41064453125, "b": 362.3498229980469, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "OTSL", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 289.0169982910156, "t": 386.988525390625, "r": 310.00732421875, "b": 362.3498229980469, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "0.952 0.923", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 326.7170104980469, "t": 386.988525390625, "r": 347.70733642578125, "b": 375.6998291015625, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 4, "end_col_offset_idx": 5, "text": "0.909", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 362.0880126953125, "t": 387.0513000488281, "r": 386.24798583984375, "b": 375.6460266113281, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 5, "end_col_offset_idx": 6, "text": "0.938", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 396.20599365234375, "t": 386.988525390625, "r": 417.1963195800781, "b": 375.6998291015625, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 6, "end_col_offset_idx": 7, "text": "0.843", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 440.7669982910156, "t": 386.988525390625, "r": 457.150390625, "b": 375.6998291015625, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 7, "end_col_offset_idx": 8, "text": "3.77", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 161.906005859375, "t": 368.1595153808594, "r": 166.51473999023438, "b": 356.8708190917969, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "2", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 209.50900268554688, "t": 368.1595153808594, "r": 214.11773681640625, "b": 356.8708190917969, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "4", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 245.17599487304688, "t": 360.6875305175781, "r": 272.9449462890625, "b": 349.3988342285156, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "HTML", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 289.0169982910156, "t": 360.6875305175781, "r": 310.00732421875, "b": 349.3988342285156, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "0.945", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 326.7170104980469, "t": 373.6385192871094, "r": 347.70733642578125, "b": 349.3988342285156, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 4, "end_col_offset_idx": 5, "text": "0.897 0.901", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 362.0880126953125, "t": 373.6385192871094, "r": 386.24798583984375, "b": 349.34503173828125, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 5, "end_col_offset_idx": 6, "text": "0.915 0.931", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 394.6180114746094, "t": 373.7012939453125, "r": 418.7779846191406, "b": 349.3988342285156, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 6, "end_col_offset_idx": 7, "text": "0.859 0.834", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 439.5270080566406, "t": 373.7012939453125, "r": 458.38336181640625, "b": 349.3988342285156, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 7, "end_col_offset_idx": 8, "text": "1.91 3.81", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 161.906005859375, "t": 341.8575134277344, "r": 166.51473999023438, "b": 330.5688171386719, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "4", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 209.50900268554688, "t": 341.8575134277344, "r": 214.11773681640625, "b": 330.5688171386719, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "2", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 245.17599487304688, "t": 347.3375244140625, "r": 272.9449462890625, "b": 323.0968322753906, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "OTSL HTML", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 289.0169982910156, "t": 347.3375244140625, "r": 310.00732421875, "b": 323.0968322753906, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "0.952 0.944", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 326.7170104980469, "t": 347.3375244140625, "r": 347.70733642578125, "b": 323.0968322753906, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 4, "end_col_offset_idx": 5, "text": "0.92 0.903", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 362.0880126953125, "t": 347.4002990722656, "r": 386.24798583984375, "b": 323.0968322753906, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 5, "end_col_offset_idx": 6, "text": "0.942 0.931", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 394.6180114746094, "t": 347.4002990722656, "r": 418.7779846191406, "b": 323.0968322753906, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 6, "end_col_offset_idx": 7, "text": "0.857 0.824", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 439.5270080566406, "t": 347.4002990722656, "r": 458.38336181640625, "b": 323.0968322753906, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 7, "end_col_offset_idx": 8, "text": "1.22 2", "column_header": false, "row_header": false, "row_section": false}], "num_rows": 7, "num_cols": 8, "grid": [[{"bbox": {"l": 160.3699951171875, "t": 452.5425109863281, "r": 168.04522705078125, "b": 441.2538146972656, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "#", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 207.9739990234375, "t": 452.5425109863281, "r": 215.64923095703125, "b": 441.2538146972656, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "#", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 239.79800415039062, "t": 447.0635070800781, "r": 278.33380126953125, "b": 435.7748107910156, "coord_origin": "BOTTOMLEFT"}, "row_span": 2, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 2, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "Language", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 324.6700134277344, "t": 452.5425109863281, "r": 348.2641906738281, "b": 441.2538146972656, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 3, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 3, "end_col_offset_idx": 6, "text": "TEDs", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 324.6700134277344, "t": 452.5425109863281, "r": 348.2641906738281, "b": 441.2538146972656, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 3, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 3, "end_col_offset_idx": 6, "text": "TEDs", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 324.6700134277344, "t": 452.5425109863281, "r": 348.2641906738281, "b": 441.2538146972656, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 3, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 3, "end_col_offset_idx": 6, "text": "TEDs", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 396.27099609375, "t": 452.5425109863281, "r": 417.1259460449219, "b": 441.2538146972656, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 6, "end_col_offset_idx": 7, "text": "mAP", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 430.77099609375, "t": 452.5425109863281, "r": 467.14141845703125, "b": 441.2538146972656, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 7, "end_col_offset_idx": 8, "text": "Inference", "column_header": true, "row_header": false, "row_section": false}], [{"bbox": {"l": 144.5919952392578, "t": 439.5915222167969, "r": 183.82894897460938, "b": 428.3028259277344, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "enc-layers", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 192.19500732421875, "t": 439.5915222167969, "r": 231.42303466796875, "b": 428.3028259277344, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "dec-layers", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 239.79800415039062, "t": 447.0635070800781, "r": 278.33380126953125, "b": 435.7748107910156, "coord_origin": "BOTTOMLEFT"}, "row_span": 2, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 2, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "Language", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 286.6860046386719, "t": 439.5915222167969, "r": 312.328125, "b": 428.3028259277344, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "simple", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 320.7019958496094, "t": 439.5915222167969, "r": 353.71539306640625, "b": 428.3028259277344, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 4, "end_col_offset_idx": 5, "text": "complex", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 369.3059997558594, "t": 439.5915222167969, "r": 379.0291442871094, "b": 428.3028259277344, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 5, "end_col_offset_idx": 6, "text": "all", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 394.927001953125, "t": 441.5835266113281, "r": 418.4692077636719, "b": 430.2948303222656, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 6, "end_col_offset_idx": 7, "text": "(0.75)", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 427.14801025390625, "t": 441.5835266113281, "r": 470.7695617675781, "b": 430.2948303222656, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 7, "end_col_offset_idx": 8, "text": "time (secs)", "column_header": true, "row_header": false, "row_section": false}], [{"bbox": {"l": 161.906005859375, "t": 420.7615051269531, "r": 166.51473999023438, "b": 409.4728088378906, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "6", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 209.50900268554688, "t": 420.7615051269531, "r": 214.11773681640625, "b": 409.4728088378906, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "6", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 245.17599487304688, "t": 426.24151611328125, "r": 272.9449462890625, "b": 402.0008239746094, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "OTSL HTML", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 289.0169982910156, "t": 426.24151611328125, "r": 310.00732421875, "b": 402.0008239746094, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "0.965 0.969", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 326.7170104980469, "t": 426.24151611328125, "r": 347.70733642578125, "b": 402.0008239746094, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 4, "end_col_offset_idx": 5, "text": "0.934 0.927", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 363.6759948730469, "t": 426.24151611328125, "r": 384.66632080078125, "b": 402.0008239746094, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 5, "end_col_offset_idx": 6, "text": "0.955 0.955", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 396.20599365234375, "t": 426.3042907714844, "r": 417.1963195800781, "b": 402.0008239746094, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 6, "end_col_offset_idx": 7, "text": "0.88 0.857", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 439.5270080566406, "t": 426.3042907714844, "r": 458.38336181640625, "b": 402.0008239746094, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 7, "end_col_offset_idx": 8, "text": "2.73 5.39", "column_header": false, "row_header": false, "row_section": false}], [{"bbox": {"l": 161.906005859375, "t": 394.46051025390625, "r": 166.51473999023438, "b": 383.17181396484375, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "4", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 209.50900268554688, "t": 394.46051025390625, "r": 214.11773681640625, "b": 383.17181396484375, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "4", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 245.17599487304688, "t": 399.93951416015625, "r": 272.9449462890625, "b": 375.6998291015625, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "OTSL HTML", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 289.0169982910156, "t": 399.93951416015625, "r": 310.00732421875, "b": 388.65081787109375, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "0.938", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 326.7170104980469, "t": 399.93951416015625, "r": 347.70733642578125, "b": 388.65081787109375, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 4, "end_col_offset_idx": 5, "text": "0.904", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 363.6759948730469, "t": 399.93951416015625, "r": 384.66632080078125, "b": 388.65081787109375, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 5, "end_col_offset_idx": 6, "text": "0.927", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 394.6180114746094, "t": 400.0022888183594, "r": 418.7779846191406, "b": 388.5970153808594, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 6, "end_col_offset_idx": 7, "text": "0.853", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 439.5270080566406, "t": 400.0022888183594, "r": 458.38336181640625, "b": 388.5970153808594, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 7, "end_col_offset_idx": 8, "text": "1.97", "column_header": false, "row_header": false, "row_section": false}], [{"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "", "column_header": false, "row_header": false, "row_section": false}, {"bbox": null, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 246.7100067138672, "t": 373.6385192871094, "r": 271.41064453125, "b": 362.3498229980469, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "OTSL", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 289.0169982910156, "t": 386.988525390625, "r": 310.00732421875, "b": 362.3498229980469, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "0.952 0.923", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 326.7170104980469, "t": 386.988525390625, "r": 347.70733642578125, "b": 375.6998291015625, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 4, "end_col_offset_idx": 5, "text": "0.909", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 362.0880126953125, "t": 387.0513000488281, "r": 386.24798583984375, "b": 375.6460266113281, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 5, "end_col_offset_idx": 6, "text": "0.938", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 396.20599365234375, "t": 386.988525390625, "r": 417.1963195800781, "b": 375.6998291015625, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 6, "end_col_offset_idx": 7, "text": "0.843", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 440.7669982910156, "t": 386.988525390625, "r": 457.150390625, "b": 375.6998291015625, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 7, "end_col_offset_idx": 8, "text": "3.77", "column_header": false, "row_header": false, "row_section": false}], [{"bbox": {"l": 161.906005859375, "t": 368.1595153808594, "r": 166.51473999023438, "b": 356.8708190917969, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "2", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 209.50900268554688, "t": 368.1595153808594, "r": 214.11773681640625, "b": 356.8708190917969, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "4", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 245.17599487304688, "t": 360.6875305175781, "r": 272.9449462890625, "b": 349.3988342285156, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "HTML", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 289.0169982910156, "t": 360.6875305175781, "r": 310.00732421875, "b": 349.3988342285156, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "0.945", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 326.7170104980469, "t": 373.6385192871094, "r": 347.70733642578125, "b": 349.3988342285156, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 4, "end_col_offset_idx": 5, "text": "0.897 0.901", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 362.0880126953125, "t": 373.6385192871094, "r": 386.24798583984375, "b": 349.34503173828125, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 5, "end_col_offset_idx": 6, "text": "0.915 0.931", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 394.6180114746094, "t": 373.7012939453125, "r": 418.7779846191406, "b": 349.3988342285156, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 6, "end_col_offset_idx": 7, "text": "0.859 0.834", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 439.5270080566406, "t": 373.7012939453125, "r": 458.38336181640625, "b": 349.3988342285156, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 7, "end_col_offset_idx": 8, "text": "1.91 3.81", "column_header": false, "row_header": false, "row_section": false}], [{"bbox": {"l": 161.906005859375, "t": 341.8575134277344, "r": 166.51473999023438, "b": 330.5688171386719, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "4", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 209.50900268554688, "t": 341.8575134277344, "r": 214.11773681640625, "b": 330.5688171386719, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "2", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 245.17599487304688, "t": 347.3375244140625, "r": 272.9449462890625, "b": 323.0968322753906, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "OTSL HTML", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 289.0169982910156, "t": 347.3375244140625, "r": 310.00732421875, "b": 323.0968322753906, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "0.952 0.944", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 326.7170104980469, "t": 347.3375244140625, "r": 347.70733642578125, "b": 323.0968322753906, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 4, "end_col_offset_idx": 5, "text": "0.92 0.903", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 362.0880126953125, "t": 347.4002990722656, "r": 386.24798583984375, "b": 323.0968322753906, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 5, "end_col_offset_idx": 6, "text": "0.942 0.931", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 394.6180114746094, "t": 347.4002990722656, "r": 418.7779846191406, "b": 323.0968322753906, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 6, "end_col_offset_idx": 7, "text": "0.857 0.824", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 439.5270080566406, "t": 347.4002990722656, "r": 458.38336181640625, "b": 323.0968322753906, "coord_origin": "BOTTOMLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 7, "end_col_offset_idx": 8, "text": "1.22 2", "column_header": false, "row_header": false, "row_section": false}]]}}], "key_value_items": [], "pages": {"1": {"size": {"width": 612.0, "height": 792.0}, "image": null, "page_no": 1}}} \ No newline at end of file diff --git a/tests/data/groundtruth/docling_v2/2305.03393v1-pg9.pages.json b/tests/data/groundtruth/docling_v2/2305.03393v1-pg9.pages.json index 9f3728b2..11b50247 100644 --- a/tests/data/groundtruth/docling_v2/2305.03393v1-pg9.pages.json +++ b/tests/data/groundtruth/docling_v2/2305.03393v1-pg9.pages.json @@ -1 +1 @@ -[{"page_no": 0, "size": {"width": 612.0, "height": 792.0}, "cells": [{"id": 0, "text": "Optimized Table Tokenization for Table Structure Recognition", "bbox": {"l": 194.478, "t": 91.49352999999996, "r": 447.54476999999997, "b": 102.78223000000003, "coord_origin": "TOPLEFT"}}, {"id": 1, "text": "9", "bbox": {"l": 475.98441, "t": 91.49352999999996, "r": 480.59314, "b": 102.78223000000003, "coord_origin": "TOPLEFT"}}, {"id": 2, "text": "order to compute the TED score. Inference timing results for all experiments", "bbox": {"l": 134.765, "t": 116.46301000000005, "r": 480.59067, "b": 128.99597000000006, "coord_origin": "TOPLEFT"}}, {"id": 3, "text": "were obtained from the same machine on a single core with AMD EPYC 7763", "bbox": {"l": 134.765, "t": 128.41803000000004, "r": 480.59665, "b": 140.95099000000005, "coord_origin": "TOPLEFT"}}, {"id": 4, "text": "CPU @2.45 GHz.", "bbox": {"l": 134.765, "t": 140.37401999999997, "r": 210.78761, "b": 152.90697999999998, "coord_origin": "TOPLEFT"}}, {"id": 5, "text": "5.1", "bbox": {"l": 134.765, "t": 166.70514000000003, "r": 149.40306, "b": 179.20818999999995, "coord_origin": "TOPLEFT"}}, {"id": 6, "text": "Hyper Parameter Optimization", "bbox": {"l": 160.85905, "t": 166.70514000000003, "r": 318.45145, "b": 179.20818999999995, "coord_origin": "TOPLEFT"}}, {"id": 7, "text": "We have chosen the PubTabNet data set to perform HPO, since it includes a", "bbox": {"l": 134.765, "t": 183.11505, "r": 479.74982000000006, "b": 195.64801, "coord_origin": "TOPLEFT"}}, {"id": 8, "text": "highly diverse set of tables. Also we report TED scores separately for simple and", "bbox": {"l": 134.765, "t": 195.07007, "r": 480.58765, "b": 207.60303, "coord_origin": "TOPLEFT"}}, {"id": 9, "text": "complex tables (tables with cell spans). Results are presented in Table. 1. It is", "bbox": {"l": 134.765, "t": 207.02502000000004, "r": 480.58859000000007, "b": 219.55798000000004, "coord_origin": "TOPLEFT"}}, {"id": 10, "text": "evident that with OTSL, our model achieves the same TED score and slightly", "bbox": {"l": 134.765, "t": 218.98004000000003, "r": 480.59567, "b": 231.51300000000003, "coord_origin": "TOPLEFT"}}, {"id": 11, "text": "better mAP scores in comparison to HTML. However OTSL yields a", "bbox": {"l": 134.765, "t": 230.93506000000002, "r": 440.9425, "b": 243.46802000000002, "coord_origin": "TOPLEFT"}}, {"id": 12, "text": "2x speed", "bbox": {"l": 444.86800999999997, "t": 230.98486000000003, "r": 480.58792, "b": 243.46802000000002, "coord_origin": "TOPLEFT"}}, {"id": 13, "text": "up", "bbox": {"l": 134.765, "t": 242.94086000000004, "r": 145.19585, "b": 255.42400999999995, "coord_origin": "TOPLEFT"}}, {"id": 14, "text": "in the inference runtime over HTML.", "bbox": {"l": 149.149, "t": 242.89104999999995, "r": 311.22256, "b": 255.42400999999995, "coord_origin": "TOPLEFT"}}, {"id": 15, "text": "Table", "bbox": {"l": 134.765, "t": 272.79474000000005, "r": 159.22983, "b": 284.1999799999999, "coord_origin": "TOPLEFT"}}, {"id": 16, "text": "1.", "bbox": {"l": 167.34442, "t": 272.79474000000005, "r": 174.71301, "b": 284.1999799999999, "coord_origin": "TOPLEFT"}}, {"id": 17, "text": "HPO performed in OTSL and HTML representation on the same", "bbox": {"l": 188.133, "t": 272.85748, "r": 480.58101999999997, "b": 284.14618, "coord_origin": "TOPLEFT"}}, {"id": 18, "text": "transformer-based TableFormer [9] architecture, trained only on PubTabNet [22]. Ef-", "bbox": {"l": 134.765, "t": 283.81647, "r": 480.59890999999993, "b": 295.10516000000007, "coord_origin": "TOPLEFT"}}, {"id": 19, "text": "fects of reducing the # of layers in encoder and decoder stages of the model show that", "bbox": {"l": 134.765, "t": 294.77547999999996, "r": 480.59887999999995, "b": 306.06418, "coord_origin": "TOPLEFT"}}, {"id": 20, "text": "smaller models trained on OTSL perform better, especially in recognizing complex", "bbox": {"l": 134.765, "t": 305.73447, "r": 480.59180000000003, "b": 317.02316, "coord_origin": "TOPLEFT"}}, {"id": 21, "text": "table structures, and maintain a much higher mAP score than the HTML counterpart.", "bbox": {"l": 134.765, "t": 316.69348, "r": 480.58471999999995, "b": 327.98218, "coord_origin": "TOPLEFT"}}, {"id": 22, "text": "#", "bbox": {"l": 160.37, "t": 339.45749, "r": 168.04523, "b": 350.74619, "coord_origin": "TOPLEFT"}}, {"id": 23, "text": "enc-layers", "bbox": {"l": 144.592, "t": 352.40848, "r": 183.82895, "b": 363.69717, "coord_origin": "TOPLEFT"}}, {"id": 24, "text": "#", "bbox": {"l": 207.974, "t": 339.45749, "r": 215.64923000000002, "b": 350.74619, "coord_origin": "TOPLEFT"}}, {"id": 25, "text": "dec-layers", "bbox": {"l": 192.19501, "t": 352.40848, "r": 231.42303, "b": 363.69717, "coord_origin": "TOPLEFT"}}, {"id": 26, "text": "Language", "bbox": {"l": 239.79799999999997, "t": 344.93649, "r": 278.3338, "b": 356.22519000000005, "coord_origin": "TOPLEFT"}}, {"id": 27, "text": "TEDs", "bbox": {"l": 324.67001, "t": 339.45749, "r": 348.26419, "b": 350.74619, "coord_origin": "TOPLEFT"}}, {"id": 28, "text": "mAP", "bbox": {"l": 396.271, "t": 339.45749, "r": 417.12595, "b": 350.74619, "coord_origin": "TOPLEFT"}}, {"id": 29, "text": "(0.75)", "bbox": {"l": 394.927, "t": 350.41647, "r": 418.46921, "b": 361.70517, "coord_origin": "TOPLEFT"}}, {"id": 30, "text": "Inference", "bbox": {"l": 430.771, "t": 339.45749, "r": 467.14142000000004, "b": 350.74619, "coord_origin": "TOPLEFT"}}, {"id": 31, "text": "time (secs)", "bbox": {"l": 427.14801, "t": 350.41647, "r": 470.76955999999996, "b": 361.70517, "coord_origin": "TOPLEFT"}}, {"id": 32, "text": "simple", "bbox": {"l": 286.686, "t": 352.40848, "r": 312.32812, "b": 363.69717, "coord_origin": "TOPLEFT"}}, {"id": 33, "text": "complex", "bbox": {"l": 320.702, "t": 352.40848, "r": 353.71539, "b": 363.69717, "coord_origin": "TOPLEFT"}}, {"id": 34, "text": "all", "bbox": {"l": 369.306, "t": 352.40848, "r": 379.02914, "b": 363.69717, "coord_origin": "TOPLEFT"}}, {"id": 35, "text": "6", "bbox": {"l": 161.90601, "t": 371.23849, "r": 166.51474, "b": 382.52719, "coord_origin": "TOPLEFT"}}, {"id": 36, "text": "6", "bbox": {"l": 209.509, "t": 371.23849, "r": 214.11774, "b": 382.52719, "coord_origin": "TOPLEFT"}}, {"id": 37, "text": "OTSL", "bbox": {"l": 246.71000999999998, "t": 365.75848, "r": 271.41064, "b": 377.04717999999997, "coord_origin": "TOPLEFT"}}, {"id": 38, "text": "0.965", "bbox": {"l": 289.017, "t": 365.75848, "r": 310.00732, "b": 377.04717999999997, "coord_origin": "TOPLEFT"}}, {"id": 39, "text": "0.934", "bbox": {"l": 326.71701, "t": 365.75848, "r": 347.70734, "b": 377.04717999999997, "coord_origin": "TOPLEFT"}}, {"id": 40, "text": "0.955", "bbox": {"l": 363.67599, "t": 365.75848, "r": 384.66632, "b": 377.04717999999997, "coord_origin": "TOPLEFT"}}, {"id": 41, "text": "0.88", "bbox": {"l": 397.26999, "t": 365.69571, "r": 416.12634, "b": 377.10098000000005, "coord_origin": "TOPLEFT"}}, {"id": 42, "text": "2.73", "bbox": {"l": 439.52701, "t": 365.69571, "r": 458.38336, "b": 377.10098000000005, "coord_origin": "TOPLEFT"}}, {"id": 43, "text": "HTML", "bbox": {"l": 245.17598999999998, "t": 378.71048, "r": 272.94495, "b": 389.99917999999997, "coord_origin": "TOPLEFT"}}, {"id": 44, "text": "0.969", "bbox": {"l": 289.017, "t": 378.71048, "r": 310.00732, "b": 389.99917999999997, "coord_origin": "TOPLEFT"}}, {"id": 45, "text": "0.927", "bbox": {"l": 326.71701, "t": 378.71048, "r": 347.70734, "b": 389.99917999999997, "coord_origin": "TOPLEFT"}}, {"id": 46, "text": "0.955", "bbox": {"l": 363.67599, "t": 378.71048, "r": 384.66632, "b": 389.99917999999997, "coord_origin": "TOPLEFT"}}, {"id": 47, "text": "0.857", "bbox": {"l": 396.20599, "t": 378.71048, "r": 417.19632, "b": 389.99917999999997, "coord_origin": "TOPLEFT"}}, {"id": 48, "text": "5.39", "bbox": {"l": 440.767, "t": 378.71048, "r": 457.15039, "b": 389.99917999999997, "coord_origin": "TOPLEFT"}}, {"id": 49, "text": "4", "bbox": {"l": 161.90601, "t": 397.53949, "r": 166.51474, "b": 408.82819, "coord_origin": "TOPLEFT"}}, {"id": 50, "text": "4", "bbox": {"l": 209.509, "t": 397.53949, "r": 214.11774, "b": 408.82819, "coord_origin": "TOPLEFT"}}, {"id": 51, "text": "OTSL", "bbox": {"l": 246.71000999999998, "t": 392.06049, "r": 271.41064, "b": 403.34918, "coord_origin": "TOPLEFT"}}, {"id": 52, "text": "0.938", "bbox": {"l": 289.017, "t": 392.06049, "r": 310.00732, "b": 403.34918, "coord_origin": "TOPLEFT"}}, {"id": 53, "text": "0.904", "bbox": {"l": 326.71701, "t": 392.06049, "r": 347.70734, "b": 403.34918, "coord_origin": "TOPLEFT"}}, {"id": 54, "text": "0.927", "bbox": {"l": 363.67599, "t": 392.06049, "r": 384.66632, "b": 403.34918, "coord_origin": "TOPLEFT"}}, {"id": 55, "text": "0.853", "bbox": {"l": 394.61801, "t": 391.99771, "r": 418.77798, "b": 403.40298, "coord_origin": "TOPLEFT"}}, {"id": 56, "text": "1.97", "bbox": {"l": 439.52701, "t": 391.99771, "r": 458.38336, "b": 403.40298, "coord_origin": "TOPLEFT"}}, {"id": 57, "text": "HTML", "bbox": {"l": 245.17598999999998, "t": 405.01147, "r": 272.94495, "b": 416.30017, "coord_origin": "TOPLEFT"}}, {"id": 58, "text": "0.952", "bbox": {"l": 289.017, "t": 405.01147, "r": 310.00732, "b": 416.30017, "coord_origin": "TOPLEFT"}}, {"id": 59, "text": "0.909", "bbox": {"l": 326.71701, "t": 405.01147, "r": 347.70734, "b": 416.30017, "coord_origin": "TOPLEFT"}}, {"id": 60, "text": "0.938", "bbox": {"l": 362.08801, "t": 404.9486999999999, "r": 386.24799, "b": 416.35397, "coord_origin": "TOPLEFT"}}, {"id": 61, "text": "0.843", "bbox": {"l": 396.20599, "t": 405.01147, "r": 417.19632, "b": 416.30017, "coord_origin": "TOPLEFT"}}, {"id": 62, "text": "3.77", "bbox": {"l": 440.767, "t": 405.01147, "r": 457.15039, "b": 416.30017, "coord_origin": "TOPLEFT"}}, {"id": 63, "text": "2", "bbox": {"l": 161.90601, "t": 423.84048, "r": 166.51474, "b": 435.12918, "coord_origin": "TOPLEFT"}}, {"id": 64, "text": "4", "bbox": {"l": 209.509, "t": 423.84048, "r": 214.11774, "b": 435.12918, "coord_origin": "TOPLEFT"}}, {"id": 65, "text": "OTSL", "bbox": {"l": 246.71000999999998, "t": 418.3614799999999, "r": 271.41064, "b": 429.65018, "coord_origin": "TOPLEFT"}}, {"id": 66, "text": "0.923", "bbox": {"l": 289.017, "t": 418.3614799999999, "r": 310.00732, "b": 429.65018, "coord_origin": "TOPLEFT"}}, {"id": 67, "text": "0.897", "bbox": {"l": 326.71701, "t": 418.3614799999999, "r": 347.70734, "b": 429.65018, "coord_origin": "TOPLEFT"}}, {"id": 68, "text": "0.915", "bbox": {"l": 363.67599, "t": 418.3614799999999, "r": 384.66632, "b": 429.65018, "coord_origin": "TOPLEFT"}}, {"id": 69, "text": "0.859", "bbox": {"l": 394.61801, "t": 418.29871, "r": 418.77798, "b": 429.70398, "coord_origin": "TOPLEFT"}}, {"id": 70, "text": "1.91", "bbox": {"l": 439.52701, "t": 418.29871, "r": 458.38336, "b": 429.70398, "coord_origin": "TOPLEFT"}}, {"id": 71, "text": "HTML", "bbox": {"l": 245.17598999999998, "t": 431.31246999999996, "r": 272.94495, "b": 442.60117, "coord_origin": "TOPLEFT"}}, {"id": 72, "text": "0.945", "bbox": {"l": 289.017, "t": 431.31246999999996, "r": 310.00732, "b": 442.60117, "coord_origin": "TOPLEFT"}}, {"id": 73, "text": "0.901", "bbox": {"l": 326.71701, "t": 431.31246999999996, "r": 347.70734, "b": 442.60117, "coord_origin": "TOPLEFT"}}, {"id": 74, "text": "0.931", "bbox": {"l": 362.08801, "t": 431.24969, "r": 386.24799, "b": 442.65497, "coord_origin": "TOPLEFT"}}, {"id": 75, "text": "0.834", "bbox": {"l": 396.20599, "t": 431.31246999999996, "r": 417.19632, "b": 442.60117, "coord_origin": "TOPLEFT"}}, {"id": 76, "text": "3.81", "bbox": {"l": 440.767, "t": 431.31246999999996, "r": 457.15039, "b": 442.60117, "coord_origin": "TOPLEFT"}}, {"id": 77, "text": "4", "bbox": {"l": 161.90601, "t": 450.14248999999995, "r": 166.51474, "b": 461.43118, "coord_origin": "TOPLEFT"}}, {"id": 78, "text": "2", "bbox": {"l": 209.509, "t": 450.14248999999995, "r": 214.11774, "b": 461.43118, "coord_origin": "TOPLEFT"}}, {"id": 79, "text": "OTSL", "bbox": {"l": 246.71000999999998, "t": 444.66248, "r": 271.41064, "b": 455.95117, "coord_origin": "TOPLEFT"}}, {"id": 80, "text": "0.952", "bbox": {"l": 289.017, "t": 444.66248, "r": 310.00732, "b": 455.95117, "coord_origin": "TOPLEFT"}}, {"id": 81, "text": "0.92", "bbox": {"l": 329.021, "t": 444.66248, "r": 345.40439, "b": 455.95117, "coord_origin": "TOPLEFT"}}, {"id": 82, "text": "0.942", "bbox": {"l": 362.08801, "t": 444.5996999999999, "r": 386.24799, "b": 456.00497, "coord_origin": "TOPLEFT"}}, {"id": 83, "text": "0.857", "bbox": {"l": 394.61801, "t": 444.5996999999999, "r": 418.77798, "b": 456.00497, "coord_origin": "TOPLEFT"}}, {"id": 84, "text": "1.22", "bbox": {"l": 439.52701, "t": 444.5996999999999, "r": 458.38336, "b": 456.00497, "coord_origin": "TOPLEFT"}}, {"id": 85, "text": "HTML", "bbox": {"l": 245.17598999999998, "t": 457.61447, "r": 272.94495, "b": 468.90317, "coord_origin": "TOPLEFT"}}, {"id": 86, "text": "0.944", "bbox": {"l": 289.017, "t": 457.61447, "r": 310.00732, "b": 468.90317, "coord_origin": "TOPLEFT"}}, {"id": 87, "text": "0.903", "bbox": {"l": 326.71701, "t": 457.61447, "r": 347.70734, "b": 468.90317, "coord_origin": "TOPLEFT"}}, {"id": 88, "text": "0.931", "bbox": {"l": 363.67599, "t": 457.61447, "r": 384.66632, "b": 468.90317, "coord_origin": "TOPLEFT"}}, {"id": 89, "text": "0.824", "bbox": {"l": 396.20599, "t": 457.61447, "r": 417.19632, "b": 468.90317, "coord_origin": "TOPLEFT"}}, {"id": 90, "text": "2", "bbox": {"l": 446.65302, "t": 457.61447, "r": 451.26175, "b": 468.90317, "coord_origin": "TOPLEFT"}}, {"id": 91, "text": "5.2", "bbox": {"l": 134.765, "t": 505.67111, "r": 149.40306, "b": 518.17419, "coord_origin": "TOPLEFT"}}, {"id": 92, "text": "Quantitative Results", "bbox": {"l": 160.85905, "t": 505.67111, "r": 264.40829, "b": 518.17419, "coord_origin": "TOPLEFT"}}, {"id": 93, "text": "We picked the model parameter configuration that produced the best prediction", "bbox": {"l": 134.765, "t": 522.08005, "r": 479.72983, "b": 534.61301, "coord_origin": "TOPLEFT"}}, {"id": 94, "text": "quality (enc=6, dec=6, heads=8) with PubTabNet alone, then independently", "bbox": {"l": 134.765, "t": 534.03604, "r": 480.5897499999999, "b": 546.569, "coord_origin": "TOPLEFT"}}, {"id": 95, "text": "trained and evaluated it on three publicly available data sets: PubTabNet (395k", "bbox": {"l": 134.765, "t": 545.99104, "r": 480.72003, "b": 558.524, "coord_origin": "TOPLEFT"}}, {"id": 96, "text": "samples), FinTabNet (113k samples) and PubTables-1M (about 1M samples).", "bbox": {"l": 134.765, "t": 557.94604, "r": 480.60577, "b": 570.479, "coord_origin": "TOPLEFT"}}, {"id": 97, "text": "Performance results are presented in Table. 2. It is clearly evident that the model", "bbox": {"l": 134.765, "t": 569.90103, "r": 480.5936899999999, "b": 582.43399, "coord_origin": "TOPLEFT"}}, {"id": 98, "text": "trained on OTSL outperforms HTML across the board, keeping high TEDs and", "bbox": {"l": 134.765, "t": 581.85603, "r": 480.59158, "b": 594.38899, "coord_origin": "TOPLEFT"}}, {"id": 99, "text": "mAP scores even on difficult financial tables (FinTabNet) that contain sparse", "bbox": {"l": 134.765, "t": 593.81204, "r": 480.58080999999993, "b": 606.345, "coord_origin": "TOPLEFT"}}, {"id": 100, "text": "and large tables.", "bbox": {"l": 134.765, "t": 605.76704, "r": 206.79959, "b": 618.3, "coord_origin": "TOPLEFT"}}, {"id": 101, "text": "Additionally, the results show that OTSL has an advantage over HTML", "bbox": {"l": 149.709, "t": 617.72205, "r": 480.59479, "b": 630.255, "coord_origin": "TOPLEFT"}}, {"id": 102, "text": "when applied on a bigger data set like PubTables-1M and achieves significantly", "bbox": {"l": 134.765, "t": 629.6770300000001, "r": 480.59857000000005, "b": 642.2099900000001, "coord_origin": "TOPLEFT"}}, {"id": 103, "text": "improved scores. Finally, OTSL achieves faster inference due to fewer decoding", "bbox": {"l": 134.765, "t": 641.63203, "r": 480.59384000000006, "b": 654.16499, "coord_origin": "TOPLEFT"}}, {"id": 104, "text": "steps which is a result of the reduced sequence representation.", "bbox": {"l": 134.765, "t": 653.58704, "r": 405.7995, "b": 666.12, "coord_origin": "TOPLEFT"}}], "predictions": {"layout": {"clusters": [{"id": 0, "label": "page_header", "bbox": {"l": 193.73236083984375, "t": 91.49352999999996, "r": 447.54476999999997, "b": 102.78223000000003, "coord_origin": "TOPLEFT"}, "confidence": 0.9373533725738525, "cells": [{"id": 0, "text": "Optimized Table Tokenization for Table Structure Recognition", "bbox": {"l": 194.478, "t": 91.49352999999996, "r": 447.54476999999997, "b": 102.78223000000003, "coord_origin": "TOPLEFT"}}]}, {"id": 1, "label": "page_header", "bbox": {"l": 475.14013671875, "t": 91.49352999999996, "r": 480.59314, "b": 102.78223000000003, "coord_origin": "TOPLEFT"}, "confidence": 0.8858679533004761, "cells": [{"id": 1, "text": "9", "bbox": {"l": 475.98441, "t": 91.49352999999996, "r": 480.59314, "b": 102.78223000000003, "coord_origin": "TOPLEFT"}}]}, {"id": 2, "label": "text", "bbox": {"l": 133.96153259277344, "t": 116.46301000000005, "r": 480.61419677734375, "b": 152.90697999999998, "coord_origin": "TOPLEFT"}, "confidence": 0.9806433916091919, "cells": [{"id": 2, "text": "order to compute the TED score. Inference timing results for all experiments", "bbox": {"l": 134.765, "t": 116.46301000000005, "r": 480.59067, "b": 128.99597000000006, "coord_origin": "TOPLEFT"}}, {"id": 3, "text": "were obtained from the same machine on a single core with AMD EPYC 7763", "bbox": {"l": 134.765, "t": 128.41803000000004, "r": 480.59665, "b": 140.95099000000005, "coord_origin": "TOPLEFT"}}, {"id": 4, "text": "CPU @2.45 GHz.", "bbox": {"l": 134.765, "t": 140.37401999999997, "r": 210.78761, "b": 152.90697999999998, "coord_origin": "TOPLEFT"}}]}, {"id": 3, "label": "section_header", "bbox": {"l": 134.31336975097656, "t": 166.70514000000003, "r": 318.45145, "b": 179.20818999999995, "coord_origin": "TOPLEFT"}, "confidence": 0.9577404260635376, "cells": [{"id": 5, "text": "5.1", "bbox": {"l": 134.765, "t": 166.70514000000003, "r": 149.40306, "b": 179.20818999999995, "coord_origin": "TOPLEFT"}}, {"id": 6, "text": "Hyper Parameter Optimization", "bbox": {"l": 160.85905, "t": 166.70514000000003, "r": 318.45145, "b": 179.20818999999995, "coord_origin": "TOPLEFT"}}]}, {"id": 4, "label": "text", "bbox": {"l": 133.96913146972656, "t": 183.11505, "r": 481.3177795410156, "b": 255.42400999999995, "coord_origin": "TOPLEFT"}, "confidence": 0.98504239320755, "cells": [{"id": 7, "text": "We have chosen the PubTabNet data set to perform HPO, since it includes a", "bbox": {"l": 134.765, "t": 183.11505, "r": 479.74982000000006, "b": 195.64801, "coord_origin": "TOPLEFT"}}, {"id": 8, "text": "highly diverse set of tables. Also we report TED scores separately for simple and", "bbox": {"l": 134.765, "t": 195.07007, "r": 480.58765, "b": 207.60303, "coord_origin": "TOPLEFT"}}, {"id": 9, "text": "complex tables (tables with cell spans). Results are presented in Table. 1. It is", "bbox": {"l": 134.765, "t": 207.02502000000004, "r": 480.58859000000007, "b": 219.55798000000004, "coord_origin": "TOPLEFT"}}, {"id": 10, "text": "evident that with OTSL, our model achieves the same TED score and slightly", "bbox": {"l": 134.765, "t": 218.98004000000003, "r": 480.59567, "b": 231.51300000000003, "coord_origin": "TOPLEFT"}}, {"id": 11, "text": "better mAP scores in comparison to HTML. However OTSL yields a", "bbox": {"l": 134.765, "t": 230.93506000000002, "r": 440.9425, "b": 243.46802000000002, "coord_origin": "TOPLEFT"}}, {"id": 12, "text": "2x speed", "bbox": {"l": 444.86800999999997, "t": 230.98486000000003, "r": 480.58792, "b": 243.46802000000002, "coord_origin": "TOPLEFT"}}, {"id": 13, "text": "up", "bbox": {"l": 134.765, "t": 242.94086000000004, "r": 145.19585, "b": 255.42400999999995, "coord_origin": "TOPLEFT"}}, {"id": 14, "text": "in the inference runtime over HTML.", "bbox": {"l": 149.149, "t": 242.89104999999995, "r": 311.22256, "b": 255.42400999999995, "coord_origin": "TOPLEFT"}}]}, {"id": 5, "label": "caption", "bbox": {"l": 134.0642852783203, "t": 272.79474000000005, "r": 480.59890999999993, "b": 327.98218, "coord_origin": "TOPLEFT"}, "confidence": 0.9591907262802124, "cells": [{"id": 15, "text": "Table", "bbox": {"l": 134.765, "t": 272.79474000000005, "r": 159.22983, "b": 284.1999799999999, "coord_origin": "TOPLEFT"}}, {"id": 16, "text": "1.", "bbox": {"l": 167.34442, "t": 272.79474000000005, "r": 174.71301, "b": 284.1999799999999, "coord_origin": "TOPLEFT"}}, {"id": 17, "text": "HPO performed in OTSL and HTML representation on the same", "bbox": {"l": 188.133, "t": 272.85748, "r": 480.58101999999997, "b": 284.14618, "coord_origin": "TOPLEFT"}}, {"id": 18, "text": "transformer-based TableFormer [9] architecture, trained only on PubTabNet [22]. Ef-", "bbox": {"l": 134.765, "t": 283.81647, "r": 480.59890999999993, "b": 295.10516000000007, "coord_origin": "TOPLEFT"}}, {"id": 19, "text": "fects of reducing the # of layers in encoder and decoder stages of the model show that", "bbox": {"l": 134.765, "t": 294.77547999999996, "r": 480.59887999999995, "b": 306.06418, "coord_origin": "TOPLEFT"}}, {"id": 20, "text": "smaller models trained on OTSL perform better, especially in recognizing complex", "bbox": {"l": 134.765, "t": 305.73447, "r": 480.59180000000003, "b": 317.02316, "coord_origin": "TOPLEFT"}}, {"id": 21, "text": "table structures, and maintain a much higher mAP score than the HTML counterpart.", "bbox": {"l": 134.765, "t": 316.69348, "r": 480.58471999999995, "b": 327.98218, "coord_origin": "TOPLEFT"}}]}, {"id": 6, "label": "table", "bbox": {"l": 139.66741943359375, "t": 337.5453796386719, "r": 475.00927734375, "b": 469.4945373535156, "coord_origin": "TOPLEFT"}, "confidence": 0.9901031255722046, "cells": [{"id": 22, "text": "#", "bbox": {"l": 160.37, "t": 339.45749, "r": 168.04523, "b": 350.74619, "coord_origin": "TOPLEFT"}}, {"id": 23, "text": "enc-layers", "bbox": {"l": 144.592, "t": 352.40848, "r": 183.82895, "b": 363.69717, "coord_origin": "TOPLEFT"}}, {"id": 24, "text": "#", "bbox": {"l": 207.974, "t": 339.45749, "r": 215.64923000000002, "b": 350.74619, "coord_origin": "TOPLEFT"}}, {"id": 25, "text": "dec-layers", "bbox": {"l": 192.19501, "t": 352.40848, "r": 231.42303, "b": 363.69717, "coord_origin": "TOPLEFT"}}, {"id": 26, "text": "Language", "bbox": {"l": 239.79799999999997, "t": 344.93649, "r": 278.3338, "b": 356.22519000000005, "coord_origin": "TOPLEFT"}}, {"id": 27, "text": "TEDs", "bbox": {"l": 324.67001, "t": 339.45749, "r": 348.26419, "b": 350.74619, "coord_origin": "TOPLEFT"}}, {"id": 28, "text": "mAP", "bbox": {"l": 396.271, "t": 339.45749, "r": 417.12595, "b": 350.74619, "coord_origin": "TOPLEFT"}}, {"id": 29, "text": "(0.75)", "bbox": {"l": 394.927, "t": 350.41647, "r": 418.46921, "b": 361.70517, "coord_origin": "TOPLEFT"}}, {"id": 30, "text": "Inference", "bbox": {"l": 430.771, "t": 339.45749, "r": 467.14142000000004, "b": 350.74619, "coord_origin": "TOPLEFT"}}, {"id": 31, "text": "time (secs)", "bbox": {"l": 427.14801, "t": 350.41647, "r": 470.76955999999996, "b": 361.70517, "coord_origin": "TOPLEFT"}}, {"id": 32, "text": "simple", "bbox": {"l": 286.686, "t": 352.40848, "r": 312.32812, "b": 363.69717, "coord_origin": "TOPLEFT"}}, {"id": 33, "text": "complex", "bbox": {"l": 320.702, "t": 352.40848, "r": 353.71539, "b": 363.69717, "coord_origin": "TOPLEFT"}}, {"id": 34, "text": "all", "bbox": {"l": 369.306, "t": 352.40848, "r": 379.02914, "b": 363.69717, "coord_origin": "TOPLEFT"}}, {"id": 35, "text": "6", "bbox": {"l": 161.90601, "t": 371.23849, "r": 166.51474, "b": 382.52719, "coord_origin": "TOPLEFT"}}, {"id": 36, "text": "6", "bbox": {"l": 209.509, "t": 371.23849, "r": 214.11774, "b": 382.52719, "coord_origin": "TOPLEFT"}}, {"id": 37, "text": "OTSL", "bbox": {"l": 246.71000999999998, "t": 365.75848, "r": 271.41064, "b": 377.04717999999997, "coord_origin": "TOPLEFT"}}, {"id": 38, "text": "0.965", "bbox": {"l": 289.017, "t": 365.75848, "r": 310.00732, "b": 377.04717999999997, "coord_origin": "TOPLEFT"}}, {"id": 39, "text": "0.934", "bbox": {"l": 326.71701, "t": 365.75848, "r": 347.70734, "b": 377.04717999999997, "coord_origin": "TOPLEFT"}}, {"id": 40, "text": "0.955", "bbox": {"l": 363.67599, "t": 365.75848, "r": 384.66632, "b": 377.04717999999997, "coord_origin": "TOPLEFT"}}, {"id": 41, "text": "0.88", "bbox": {"l": 397.26999, "t": 365.69571, "r": 416.12634, "b": 377.10098000000005, "coord_origin": "TOPLEFT"}}, {"id": 42, "text": "2.73", "bbox": {"l": 439.52701, "t": 365.69571, "r": 458.38336, "b": 377.10098000000005, "coord_origin": "TOPLEFT"}}, {"id": 43, "text": "HTML", "bbox": {"l": 245.17598999999998, "t": 378.71048, "r": 272.94495, "b": 389.99917999999997, "coord_origin": "TOPLEFT"}}, {"id": 44, "text": "0.969", "bbox": {"l": 289.017, "t": 378.71048, "r": 310.00732, "b": 389.99917999999997, "coord_origin": "TOPLEFT"}}, {"id": 45, "text": "0.927", "bbox": {"l": 326.71701, "t": 378.71048, "r": 347.70734, "b": 389.99917999999997, "coord_origin": "TOPLEFT"}}, {"id": 46, "text": "0.955", "bbox": {"l": 363.67599, "t": 378.71048, "r": 384.66632, "b": 389.99917999999997, "coord_origin": "TOPLEFT"}}, {"id": 47, "text": "0.857", "bbox": {"l": 396.20599, "t": 378.71048, "r": 417.19632, "b": 389.99917999999997, "coord_origin": "TOPLEFT"}}, {"id": 48, "text": "5.39", "bbox": {"l": 440.767, "t": 378.71048, "r": 457.15039, "b": 389.99917999999997, "coord_origin": "TOPLEFT"}}, {"id": 49, "text": "4", "bbox": {"l": 161.90601, "t": 397.53949, "r": 166.51474, "b": 408.82819, "coord_origin": "TOPLEFT"}}, {"id": 50, "text": "4", "bbox": {"l": 209.509, "t": 397.53949, "r": 214.11774, "b": 408.82819, "coord_origin": "TOPLEFT"}}, {"id": 51, "text": "OTSL", "bbox": {"l": 246.71000999999998, "t": 392.06049, "r": 271.41064, "b": 403.34918, "coord_origin": "TOPLEFT"}}, {"id": 52, "text": "0.938", "bbox": {"l": 289.017, "t": 392.06049, "r": 310.00732, "b": 403.34918, "coord_origin": "TOPLEFT"}}, {"id": 53, "text": "0.904", "bbox": {"l": 326.71701, "t": 392.06049, "r": 347.70734, "b": 403.34918, "coord_origin": "TOPLEFT"}}, {"id": 54, "text": "0.927", "bbox": {"l": 363.67599, "t": 392.06049, "r": 384.66632, "b": 403.34918, "coord_origin": "TOPLEFT"}}, {"id": 55, "text": "0.853", "bbox": {"l": 394.61801, "t": 391.99771, "r": 418.77798, "b": 403.40298, "coord_origin": "TOPLEFT"}}, {"id": 56, "text": "1.97", "bbox": {"l": 439.52701, "t": 391.99771, "r": 458.38336, "b": 403.40298, "coord_origin": "TOPLEFT"}}, {"id": 57, "text": "HTML", "bbox": {"l": 245.17598999999998, "t": 405.01147, "r": 272.94495, "b": 416.30017, "coord_origin": "TOPLEFT"}}, {"id": 58, "text": "0.952", "bbox": {"l": 289.017, "t": 405.01147, "r": 310.00732, "b": 416.30017, "coord_origin": "TOPLEFT"}}, {"id": 59, "text": "0.909", "bbox": {"l": 326.71701, "t": 405.01147, "r": 347.70734, "b": 416.30017, "coord_origin": "TOPLEFT"}}, {"id": 60, "text": "0.938", "bbox": {"l": 362.08801, "t": 404.9486999999999, "r": 386.24799, "b": 416.35397, "coord_origin": "TOPLEFT"}}, {"id": 61, "text": "0.843", "bbox": {"l": 396.20599, "t": 405.01147, "r": 417.19632, "b": 416.30017, "coord_origin": "TOPLEFT"}}, {"id": 62, "text": "3.77", "bbox": {"l": 440.767, "t": 405.01147, "r": 457.15039, "b": 416.30017, "coord_origin": "TOPLEFT"}}, {"id": 63, "text": "2", "bbox": {"l": 161.90601, "t": 423.84048, "r": 166.51474, "b": 435.12918, "coord_origin": "TOPLEFT"}}, {"id": 64, "text": "4", "bbox": {"l": 209.509, "t": 423.84048, "r": 214.11774, "b": 435.12918, "coord_origin": "TOPLEFT"}}, {"id": 65, "text": "OTSL", "bbox": {"l": 246.71000999999998, "t": 418.3614799999999, "r": 271.41064, "b": 429.65018, "coord_origin": "TOPLEFT"}}, {"id": 66, "text": "0.923", "bbox": {"l": 289.017, "t": 418.3614799999999, "r": 310.00732, "b": 429.65018, "coord_origin": "TOPLEFT"}}, {"id": 67, "text": "0.897", "bbox": {"l": 326.71701, "t": 418.3614799999999, "r": 347.70734, "b": 429.65018, "coord_origin": "TOPLEFT"}}, {"id": 68, "text": "0.915", "bbox": {"l": 363.67599, "t": 418.3614799999999, "r": 384.66632, "b": 429.65018, "coord_origin": "TOPLEFT"}}, {"id": 69, "text": "0.859", "bbox": {"l": 394.61801, "t": 418.29871, "r": 418.77798, "b": 429.70398, "coord_origin": "TOPLEFT"}}, {"id": 70, "text": "1.91", "bbox": {"l": 439.52701, "t": 418.29871, "r": 458.38336, "b": 429.70398, "coord_origin": "TOPLEFT"}}, {"id": 71, "text": "HTML", "bbox": {"l": 245.17598999999998, "t": 431.31246999999996, "r": 272.94495, "b": 442.60117, "coord_origin": "TOPLEFT"}}, {"id": 72, "text": "0.945", "bbox": {"l": 289.017, "t": 431.31246999999996, "r": 310.00732, "b": 442.60117, "coord_origin": "TOPLEFT"}}, {"id": 73, "text": "0.901", "bbox": {"l": 326.71701, "t": 431.31246999999996, "r": 347.70734, "b": 442.60117, "coord_origin": "TOPLEFT"}}, {"id": 74, "text": "0.931", "bbox": {"l": 362.08801, "t": 431.24969, "r": 386.24799, "b": 442.65497, "coord_origin": "TOPLEFT"}}, {"id": 75, "text": "0.834", "bbox": {"l": 396.20599, "t": 431.31246999999996, "r": 417.19632, "b": 442.60117, "coord_origin": "TOPLEFT"}}, {"id": 76, "text": "3.81", "bbox": {"l": 440.767, "t": 431.31246999999996, "r": 457.15039, "b": 442.60117, "coord_origin": "TOPLEFT"}}, {"id": 77, "text": "4", "bbox": {"l": 161.90601, "t": 450.14248999999995, "r": 166.51474, "b": 461.43118, "coord_origin": "TOPLEFT"}}, {"id": 78, "text": "2", "bbox": {"l": 209.509, "t": 450.14248999999995, "r": 214.11774, "b": 461.43118, "coord_origin": "TOPLEFT"}}, {"id": 79, "text": "OTSL", "bbox": {"l": 246.71000999999998, "t": 444.66248, "r": 271.41064, "b": 455.95117, "coord_origin": "TOPLEFT"}}, {"id": 80, "text": "0.952", "bbox": {"l": 289.017, "t": 444.66248, "r": 310.00732, "b": 455.95117, "coord_origin": "TOPLEFT"}}, {"id": 81, "text": "0.92", "bbox": {"l": 329.021, "t": 444.66248, "r": 345.40439, "b": 455.95117, "coord_origin": "TOPLEFT"}}, {"id": 82, "text": "0.942", "bbox": {"l": 362.08801, "t": 444.5996999999999, "r": 386.24799, "b": 456.00497, "coord_origin": "TOPLEFT"}}, {"id": 83, "text": "0.857", "bbox": {"l": 394.61801, "t": 444.5996999999999, "r": 418.77798, "b": 456.00497, "coord_origin": "TOPLEFT"}}, {"id": 84, "text": "1.22", "bbox": {"l": 439.52701, "t": 444.5996999999999, "r": 458.38336, "b": 456.00497, "coord_origin": "TOPLEFT"}}, {"id": 85, "text": "HTML", "bbox": {"l": 245.17598999999998, "t": 457.61447, "r": 272.94495, "b": 468.90317, "coord_origin": "TOPLEFT"}}, {"id": 86, "text": "0.944", "bbox": {"l": 289.017, "t": 457.61447, "r": 310.00732, "b": 468.90317, "coord_origin": "TOPLEFT"}}, {"id": 87, "text": "0.903", "bbox": {"l": 326.71701, "t": 457.61447, "r": 347.70734, "b": 468.90317, "coord_origin": "TOPLEFT"}}, {"id": 88, "text": "0.931", "bbox": {"l": 363.67599, "t": 457.61447, "r": 384.66632, "b": 468.90317, "coord_origin": "TOPLEFT"}}, {"id": 89, "text": "0.824", "bbox": {"l": 396.20599, "t": 457.61447, "r": 417.19632, "b": 468.90317, "coord_origin": "TOPLEFT"}}, {"id": 90, "text": "2", "bbox": {"l": 446.65302, "t": 457.61447, "r": 451.26175, "b": 468.90317, "coord_origin": "TOPLEFT"}}]}, {"id": 7, "label": "section_header", "bbox": {"l": 134.38507080078125, "t": 505.67111, "r": 264.40829, "b": 518.17419, "coord_origin": "TOPLEFT"}, "confidence": 0.9589294195175171, "cells": [{"id": 91, "text": "5.2", "bbox": {"l": 134.765, "t": 505.67111, "r": 149.40306, "b": 518.17419, "coord_origin": "TOPLEFT"}}, {"id": 92, "text": "Quantitative Results", "bbox": {"l": 160.85905, "t": 505.67111, "r": 264.40829, "b": 518.17419, "coord_origin": "TOPLEFT"}}]}, {"id": 8, "label": "text", "bbox": {"l": 133.9154052734375, "t": 522.08005, "r": 480.72003, "b": 618.3, "coord_origin": "TOPLEFT"}, "confidence": 0.9849975109100342, "cells": [{"id": 93, "text": "We picked the model parameter configuration that produced the best prediction", "bbox": {"l": 134.765, "t": 522.08005, "r": 479.72983, "b": 534.61301, "coord_origin": "TOPLEFT"}}, {"id": 94, "text": "quality (enc=6, dec=6, heads=8) with PubTabNet alone, then independently", "bbox": {"l": 134.765, "t": 534.03604, "r": 480.5897499999999, "b": 546.569, "coord_origin": "TOPLEFT"}}, {"id": 95, "text": "trained and evaluated it on three publicly available data sets: PubTabNet (395k", "bbox": {"l": 134.765, "t": 545.99104, "r": 480.72003, "b": 558.524, "coord_origin": "TOPLEFT"}}, {"id": 96, "text": "samples), FinTabNet (113k samples) and PubTables-1M (about 1M samples).", "bbox": {"l": 134.765, "t": 557.94604, "r": 480.60577, "b": 570.479, "coord_origin": "TOPLEFT"}}, {"id": 97, "text": "Performance results are presented in Table. 2. It is clearly evident that the model", "bbox": {"l": 134.765, "t": 569.90103, "r": 480.5936899999999, "b": 582.43399, "coord_origin": "TOPLEFT"}}, {"id": 98, "text": "trained on OTSL outperforms HTML across the board, keeping high TEDs and", "bbox": {"l": 134.765, "t": 581.85603, "r": 480.59158, "b": 594.38899, "coord_origin": "TOPLEFT"}}, {"id": 99, "text": "mAP scores even on difficult financial tables (FinTabNet) that contain sparse", "bbox": {"l": 134.765, "t": 593.81204, "r": 480.58080999999993, "b": 606.345, "coord_origin": "TOPLEFT"}}, {"id": 100, "text": "and large tables.", "bbox": {"l": 134.765, "t": 605.76704, "r": 206.79959, "b": 618.3, "coord_origin": "TOPLEFT"}}]}, {"id": 9, "label": "text", "bbox": {"l": 133.861083984375, "t": 617.72205, "r": 480.78125, "b": 666.12, "coord_origin": "TOPLEFT"}, "confidence": 0.9850137829780579, "cells": [{"id": 101, "text": "Additionally, the results show that OTSL has an advantage over HTML", "bbox": {"l": 149.709, "t": 617.72205, "r": 480.59479, "b": 630.255, "coord_origin": "TOPLEFT"}}, {"id": 102, "text": "when applied on a bigger data set like PubTables-1M and achieves significantly", "bbox": {"l": 134.765, "t": 629.6770300000001, "r": 480.59857000000005, "b": 642.2099900000001, "coord_origin": "TOPLEFT"}}, {"id": 103, "text": "improved scores. Finally, OTSL achieves faster inference due to fewer decoding", "bbox": {"l": 134.765, "t": 641.63203, "r": 480.59384000000006, "b": 654.16499, "coord_origin": "TOPLEFT"}}, {"id": 104, "text": "steps which is a result of the reduced sequence representation.", "bbox": {"l": 134.765, "t": 653.58704, "r": 405.7995, "b": 666.12, "coord_origin": "TOPLEFT"}}]}]}, "tablestructure": {"table_map": {"6": {"label": "table", "id": 6, "page_no": 0, "cluster": {"id": 6, "label": "table", "bbox": {"l": 139.66741943359375, "t": 337.5453796386719, "r": 475.00927734375, "b": 469.4945373535156, "coord_origin": "TOPLEFT"}, "confidence": 0.9901031255722046, "cells": [{"id": 22, "text": "#", "bbox": {"l": 160.37, "t": 339.45749, "r": 168.04523, "b": 350.74619, "coord_origin": "TOPLEFT"}}, {"id": 23, "text": "enc-layers", "bbox": {"l": 144.592, "t": 352.40848, "r": 183.82895, "b": 363.69717, "coord_origin": "TOPLEFT"}}, {"id": 24, "text": "#", "bbox": {"l": 207.974, "t": 339.45749, "r": 215.64923000000002, "b": 350.74619, "coord_origin": "TOPLEFT"}}, {"id": 25, "text": "dec-layers", "bbox": {"l": 192.19501, "t": 352.40848, "r": 231.42303, "b": 363.69717, "coord_origin": "TOPLEFT"}}, {"id": 26, "text": "Language", "bbox": {"l": 239.79799999999997, "t": 344.93649, "r": 278.3338, "b": 356.22519000000005, "coord_origin": "TOPLEFT"}}, {"id": 27, "text": "TEDs", "bbox": {"l": 324.67001, "t": 339.45749, "r": 348.26419, "b": 350.74619, "coord_origin": "TOPLEFT"}}, {"id": 28, "text": "mAP", "bbox": {"l": 396.271, "t": 339.45749, "r": 417.12595, "b": 350.74619, "coord_origin": "TOPLEFT"}}, {"id": 29, "text": "(0.75)", "bbox": {"l": 394.927, "t": 350.41647, "r": 418.46921, "b": 361.70517, "coord_origin": "TOPLEFT"}}, {"id": 30, "text": "Inference", "bbox": {"l": 430.771, "t": 339.45749, "r": 467.14142000000004, "b": 350.74619, "coord_origin": "TOPLEFT"}}, {"id": 31, "text": "time (secs)", "bbox": {"l": 427.14801, "t": 350.41647, "r": 470.76955999999996, "b": 361.70517, "coord_origin": "TOPLEFT"}}, {"id": 32, "text": "simple", "bbox": {"l": 286.686, "t": 352.40848, "r": 312.32812, "b": 363.69717, "coord_origin": "TOPLEFT"}}, {"id": 33, "text": "complex", "bbox": {"l": 320.702, "t": 352.40848, "r": 353.71539, "b": 363.69717, "coord_origin": "TOPLEFT"}}, {"id": 34, "text": "all", "bbox": {"l": 369.306, "t": 352.40848, "r": 379.02914, "b": 363.69717, "coord_origin": "TOPLEFT"}}, {"id": 35, "text": "6", "bbox": {"l": 161.90601, "t": 371.23849, "r": 166.51474, "b": 382.52719, "coord_origin": "TOPLEFT"}}, {"id": 36, "text": "6", "bbox": {"l": 209.509, "t": 371.23849, "r": 214.11774, "b": 382.52719, "coord_origin": "TOPLEFT"}}, {"id": 37, "text": "OTSL", "bbox": {"l": 246.71000999999998, "t": 365.75848, "r": 271.41064, "b": 377.04717999999997, "coord_origin": "TOPLEFT"}}, {"id": 38, "text": "0.965", "bbox": {"l": 289.017, "t": 365.75848, "r": 310.00732, "b": 377.04717999999997, "coord_origin": "TOPLEFT"}}, {"id": 39, "text": "0.934", "bbox": {"l": 326.71701, "t": 365.75848, "r": 347.70734, "b": 377.04717999999997, "coord_origin": "TOPLEFT"}}, {"id": 40, "text": "0.955", "bbox": {"l": 363.67599, "t": 365.75848, "r": 384.66632, "b": 377.04717999999997, "coord_origin": "TOPLEFT"}}, {"id": 41, "text": "0.88", "bbox": {"l": 397.26999, "t": 365.69571, "r": 416.12634, "b": 377.10098000000005, "coord_origin": "TOPLEFT"}}, {"id": 42, "text": "2.73", "bbox": {"l": 439.52701, "t": 365.69571, "r": 458.38336, "b": 377.10098000000005, "coord_origin": "TOPLEFT"}}, {"id": 43, "text": "HTML", "bbox": {"l": 245.17598999999998, "t": 378.71048, "r": 272.94495, "b": 389.99917999999997, "coord_origin": "TOPLEFT"}}, {"id": 44, "text": "0.969", "bbox": {"l": 289.017, "t": 378.71048, "r": 310.00732, "b": 389.99917999999997, "coord_origin": "TOPLEFT"}}, {"id": 45, "text": "0.927", "bbox": {"l": 326.71701, "t": 378.71048, "r": 347.70734, "b": 389.99917999999997, "coord_origin": "TOPLEFT"}}, {"id": 46, "text": "0.955", "bbox": {"l": 363.67599, "t": 378.71048, "r": 384.66632, "b": 389.99917999999997, "coord_origin": "TOPLEFT"}}, {"id": 47, "text": "0.857", "bbox": {"l": 396.20599, "t": 378.71048, "r": 417.19632, "b": 389.99917999999997, "coord_origin": "TOPLEFT"}}, {"id": 48, "text": "5.39", "bbox": {"l": 440.767, "t": 378.71048, "r": 457.15039, "b": 389.99917999999997, "coord_origin": "TOPLEFT"}}, {"id": 49, "text": "4", "bbox": {"l": 161.90601, "t": 397.53949, "r": 166.51474, "b": 408.82819, "coord_origin": "TOPLEFT"}}, {"id": 50, "text": "4", "bbox": {"l": 209.509, "t": 397.53949, "r": 214.11774, "b": 408.82819, "coord_origin": "TOPLEFT"}}, {"id": 51, "text": "OTSL", "bbox": {"l": 246.71000999999998, "t": 392.06049, "r": 271.41064, "b": 403.34918, "coord_origin": "TOPLEFT"}}, {"id": 52, "text": "0.938", "bbox": {"l": 289.017, "t": 392.06049, "r": 310.00732, "b": 403.34918, "coord_origin": "TOPLEFT"}}, {"id": 53, "text": "0.904", "bbox": {"l": 326.71701, "t": 392.06049, "r": 347.70734, "b": 403.34918, "coord_origin": "TOPLEFT"}}, {"id": 54, "text": "0.927", "bbox": {"l": 363.67599, "t": 392.06049, "r": 384.66632, "b": 403.34918, "coord_origin": "TOPLEFT"}}, {"id": 55, "text": "0.853", "bbox": {"l": 394.61801, "t": 391.99771, "r": 418.77798, "b": 403.40298, "coord_origin": "TOPLEFT"}}, {"id": 56, "text": "1.97", "bbox": {"l": 439.52701, "t": 391.99771, "r": 458.38336, "b": 403.40298, "coord_origin": "TOPLEFT"}}, {"id": 57, "text": "HTML", "bbox": {"l": 245.17598999999998, "t": 405.01147, "r": 272.94495, "b": 416.30017, "coord_origin": "TOPLEFT"}}, {"id": 58, "text": "0.952", "bbox": {"l": 289.017, "t": 405.01147, "r": 310.00732, "b": 416.30017, "coord_origin": "TOPLEFT"}}, {"id": 59, "text": "0.909", "bbox": {"l": 326.71701, "t": 405.01147, "r": 347.70734, "b": 416.30017, "coord_origin": "TOPLEFT"}}, {"id": 60, "text": "0.938", "bbox": {"l": 362.08801, "t": 404.9486999999999, "r": 386.24799, "b": 416.35397, "coord_origin": "TOPLEFT"}}, {"id": 61, "text": "0.843", "bbox": {"l": 396.20599, "t": 405.01147, "r": 417.19632, "b": 416.30017, "coord_origin": "TOPLEFT"}}, {"id": 62, "text": "3.77", "bbox": {"l": 440.767, "t": 405.01147, "r": 457.15039, "b": 416.30017, "coord_origin": "TOPLEFT"}}, {"id": 63, "text": "2", "bbox": {"l": 161.90601, "t": 423.84048, "r": 166.51474, "b": 435.12918, "coord_origin": "TOPLEFT"}}, {"id": 64, "text": "4", "bbox": {"l": 209.509, "t": 423.84048, "r": 214.11774, "b": 435.12918, "coord_origin": "TOPLEFT"}}, {"id": 65, "text": "OTSL", "bbox": {"l": 246.71000999999998, "t": 418.3614799999999, "r": 271.41064, "b": 429.65018, "coord_origin": "TOPLEFT"}}, {"id": 66, "text": "0.923", "bbox": {"l": 289.017, "t": 418.3614799999999, "r": 310.00732, "b": 429.65018, "coord_origin": "TOPLEFT"}}, {"id": 67, "text": "0.897", "bbox": {"l": 326.71701, "t": 418.3614799999999, "r": 347.70734, "b": 429.65018, "coord_origin": "TOPLEFT"}}, {"id": 68, "text": "0.915", "bbox": {"l": 363.67599, "t": 418.3614799999999, "r": 384.66632, "b": 429.65018, "coord_origin": "TOPLEFT"}}, {"id": 69, "text": "0.859", "bbox": {"l": 394.61801, "t": 418.29871, "r": 418.77798, "b": 429.70398, "coord_origin": "TOPLEFT"}}, {"id": 70, "text": "1.91", "bbox": {"l": 439.52701, "t": 418.29871, "r": 458.38336, "b": 429.70398, "coord_origin": "TOPLEFT"}}, {"id": 71, "text": "HTML", "bbox": {"l": 245.17598999999998, "t": 431.31246999999996, "r": 272.94495, "b": 442.60117, "coord_origin": "TOPLEFT"}}, {"id": 72, "text": "0.945", "bbox": {"l": 289.017, "t": 431.31246999999996, "r": 310.00732, "b": 442.60117, "coord_origin": "TOPLEFT"}}, {"id": 73, "text": "0.901", "bbox": {"l": 326.71701, "t": 431.31246999999996, "r": 347.70734, "b": 442.60117, "coord_origin": "TOPLEFT"}}, {"id": 74, "text": "0.931", "bbox": {"l": 362.08801, "t": 431.24969, "r": 386.24799, "b": 442.65497, "coord_origin": "TOPLEFT"}}, {"id": 75, "text": "0.834", "bbox": {"l": 396.20599, "t": 431.31246999999996, "r": 417.19632, "b": 442.60117, "coord_origin": "TOPLEFT"}}, {"id": 76, "text": "3.81", "bbox": {"l": 440.767, "t": 431.31246999999996, "r": 457.15039, "b": 442.60117, "coord_origin": "TOPLEFT"}}, {"id": 77, "text": "4", "bbox": {"l": 161.90601, "t": 450.14248999999995, "r": 166.51474, "b": 461.43118, "coord_origin": "TOPLEFT"}}, {"id": 78, "text": "2", "bbox": {"l": 209.509, "t": 450.14248999999995, "r": 214.11774, "b": 461.43118, "coord_origin": "TOPLEFT"}}, {"id": 79, "text": "OTSL", "bbox": {"l": 246.71000999999998, "t": 444.66248, "r": 271.41064, "b": 455.95117, "coord_origin": "TOPLEFT"}}, {"id": 80, "text": "0.952", "bbox": {"l": 289.017, "t": 444.66248, "r": 310.00732, "b": 455.95117, "coord_origin": "TOPLEFT"}}, {"id": 81, "text": "0.92", "bbox": {"l": 329.021, "t": 444.66248, "r": 345.40439, "b": 455.95117, "coord_origin": "TOPLEFT"}}, {"id": 82, "text": "0.942", "bbox": {"l": 362.08801, "t": 444.5996999999999, "r": 386.24799, "b": 456.00497, "coord_origin": "TOPLEFT"}}, {"id": 83, "text": "0.857", "bbox": {"l": 394.61801, "t": 444.5996999999999, "r": 418.77798, "b": 456.00497, "coord_origin": "TOPLEFT"}}, {"id": 84, "text": "1.22", "bbox": {"l": 439.52701, "t": 444.5996999999999, "r": 458.38336, "b": 456.00497, "coord_origin": "TOPLEFT"}}, {"id": 85, "text": "HTML", "bbox": {"l": 245.17598999999998, "t": 457.61447, "r": 272.94495, "b": 468.90317, "coord_origin": "TOPLEFT"}}, {"id": 86, "text": "0.944", "bbox": {"l": 289.017, "t": 457.61447, "r": 310.00732, "b": 468.90317, "coord_origin": "TOPLEFT"}}, {"id": 87, "text": "0.903", "bbox": {"l": 326.71701, "t": 457.61447, "r": 347.70734, "b": 468.90317, "coord_origin": "TOPLEFT"}}, {"id": 88, "text": "0.931", "bbox": {"l": 363.67599, "t": 457.61447, "r": 384.66632, "b": 468.90317, "coord_origin": "TOPLEFT"}}, {"id": 89, "text": "0.824", "bbox": {"l": 396.20599, "t": 457.61447, "r": 417.19632, "b": 468.90317, "coord_origin": "TOPLEFT"}}, {"id": 90, "text": "2", "bbox": {"l": 446.65302, "t": 457.61447, "r": 451.26175, "b": 468.90317, "coord_origin": "TOPLEFT"}}]}, "text": null, "otsl_seq": ["ched", "ched", "ched", "ched", "lcel", "lcel", "ched", "ched", "nl", "ched", "ched", "ucel", "ched", "ched", "ched", "ched", "ched", "nl", "fcel", "fcel", "fcel", "fcel", "fcel", "fcel", "fcel", "fcel", "nl", "fcel", "fcel", "fcel", "fcel", "fcel", "fcel", "fcel", "fcel", "nl", "fcel", "fcel", "fcel", "fcel", "fcel", "fcel", "fcel", "fcel", "nl", "fcel", "fcel", "fcel", "fcel", "fcel", "fcel", "fcel", "fcel", "nl", "fcel", "fcel", "fcel", "fcel", "fcel", "fcel", "fcel", "fcel", "nl"], "num_rows": 7, "num_cols": 8, "table_cells": [{"bbox": {"l": 160.37, "t": 339.45749, "r": 168.04523, "b": 350.74619, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "#", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 144.592, "t": 352.40848, "r": 183.82895, "b": 363.69717, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "enc-layers", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 207.974, "t": 339.45749, "r": 215.64923000000002, "b": 350.74619, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "#", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 192.19501, "t": 352.40848, "r": 231.42303, "b": 363.69717, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "dec-layers", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 239.79799999999997, "t": 344.93649, "r": 278.3338, "b": 356.22519000000005, "coord_origin": "TOPLEFT"}, "row_span": 2, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 2, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "Language", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 324.67001, "t": 339.45749, "r": 348.26419, "b": 350.74619, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 3, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 3, "end_col_offset_idx": 6, "text": "TEDs", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 396.271, "t": 339.45749, "r": 417.12595, "b": 350.74619, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 6, "end_col_offset_idx": 7, "text": "mAP", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 394.927, "t": 350.41647, "r": 418.46921, "b": 361.70517, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 6, "end_col_offset_idx": 7, "text": "(0.75)", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 430.771, "t": 339.45749, "r": 467.14142000000004, "b": 350.74619, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 7, "end_col_offset_idx": 8, "text": "Inference", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 427.14801, "t": 350.41647, "r": 470.76955999999996, "b": 361.70517, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 7, "end_col_offset_idx": 8, "text": "time (secs)", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 286.686, "t": 352.40848, "r": 312.32812, "b": 363.69717, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "simple", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 320.702, "t": 352.40848, "r": 353.71539, "b": 363.69717, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 4, "end_col_offset_idx": 5, "text": "complex", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 369.306, "t": 352.40848, "r": 379.02914, "b": 363.69717, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 5, "end_col_offset_idx": 6, "text": "all", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 161.90601, "t": 371.23849, "r": 166.51474, "b": 382.52719, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "6", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 209.509, "t": 371.23849, "r": 214.11774, "b": 382.52719, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "6", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 245.17598999999998, "t": 365.75848, "r": 272.94495, "b": 389.99917999999997, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "OTSL HTML", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 289.017, "t": 365.75848, "r": 310.00732, "b": 389.99917999999997, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "0.965 0.969", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 326.71701, "t": 365.75848, "r": 347.70734, "b": 389.99917999999997, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 4, "end_col_offset_idx": 5, "text": "0.934 0.927", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 363.67599, "t": 365.75848, "r": 384.66632, "b": 389.99917999999997, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 5, "end_col_offset_idx": 6, "text": "0.955 0.955", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 396.20599, "t": 365.69571, "r": 417.19632, "b": 389.99917999999997, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 6, "end_col_offset_idx": 7, "text": "0.88 0.857", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 439.52701, "t": 365.69571, "r": 458.38336, "b": 389.99917999999997, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 7, "end_col_offset_idx": 8, "text": "2.73 5.39", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 161.90601, "t": 397.53949, "r": 166.51474, "b": 408.82819, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "4", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 209.509, "t": 397.53949, "r": 214.11774, "b": 408.82819, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "4", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 245.17598999999998, "t": 392.06049, "r": 272.94495, "b": 416.30017, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "OTSL HTML", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 289.017, "t": 392.06049, "r": 310.00732, "b": 403.34918, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "0.938", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 326.71701, "t": 392.06049, "r": 347.70734, "b": 403.34918, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 4, "end_col_offset_idx": 5, "text": "0.904", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 363.67599, "t": 392.06049, "r": 384.66632, "b": 403.34918, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 5, "end_col_offset_idx": 6, "text": "0.927", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 394.61801, "t": 391.99771, "r": 418.77798, "b": 403.40298, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 6, "end_col_offset_idx": 7, "text": "0.853", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 439.52701, "t": 391.99771, "r": 458.38336, "b": 403.40298, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 7, "end_col_offset_idx": 8, "text": "1.97", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 289.017, "t": 405.01147, "r": 310.00732, "b": 429.65018, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "0.952 0.923", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 326.71701, "t": 405.01147, "r": 347.70734, "b": 416.30017, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 4, "end_col_offset_idx": 5, "text": "0.909", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 362.08801, "t": 404.9486999999999, "r": 386.24799, "b": 416.35397, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 5, "end_col_offset_idx": 6, "text": "0.938", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 396.20599, "t": 405.01147, "r": 417.19632, "b": 416.30017, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 6, "end_col_offset_idx": 7, "text": "0.843", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 440.767, "t": 405.01147, "r": 457.15039, "b": 416.30017, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 7, "end_col_offset_idx": 8, "text": "3.77", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 161.90601, "t": 423.84048, "r": 166.51474, "b": 435.12918, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "2", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 209.509, "t": 423.84048, "r": 214.11774, "b": 435.12918, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "4", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 246.71000999999998, "t": 418.3614799999999, "r": 271.41064, "b": 429.65018, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "OTSL", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 326.71701, "t": 418.3614799999999, "r": 347.70734, "b": 442.60117, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 4, "end_col_offset_idx": 5, "text": "0.897 0.901", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 362.08801, "t": 418.3614799999999, "r": 386.24799, "b": 442.65497, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 5, "end_col_offset_idx": 6, "text": "0.915 0.931", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 394.61801, "t": 418.29871, "r": 418.77798, "b": 442.60117, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 6, "end_col_offset_idx": 7, "text": "0.859 0.834", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 439.52701, "t": 418.29871, "r": 458.38336, "b": 442.60117, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 7, "end_col_offset_idx": 8, "text": "1.91 3.81", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 245.17598999999998, "t": 431.31246999999996, "r": 272.94495, "b": 442.60117, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "HTML", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 289.017, "t": 431.31246999999996, "r": 310.00732, "b": 442.60117, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "0.945", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 161.90601, "t": 450.14248999999995, "r": 166.51474, "b": 461.43118, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "4", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 209.509, "t": 450.14248999999995, "r": 214.11774, "b": 461.43118, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "2", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 245.17598999999998, "t": 444.66248, "r": 272.94495, "b": 468.90317, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "OTSL HTML", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 289.017, "t": 444.66248, "r": 310.00732, "b": 468.90317, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "0.952 0.944", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 326.71701, "t": 444.66248, "r": 347.70734, "b": 468.90317, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 4, "end_col_offset_idx": 5, "text": "0.92 0.903", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 362.08801, "t": 444.5996999999999, "r": 386.24799, "b": 468.90317, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 5, "end_col_offset_idx": 6, "text": "0.942 0.931", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 394.61801, "t": 444.5996999999999, "r": 418.77798, "b": 468.90317, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 6, "end_col_offset_idx": 7, "text": "0.857 0.824", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 439.52701, "t": 444.5996999999999, "r": 458.38336, "b": 468.90317, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 7, "end_col_offset_idx": 8, "text": "1.22 2", "column_header": false, "row_header": false, "row_section": false}]}}}, "figures_classification": null, "equations_prediction": null}, "assembled": {"elements": [{"label": "page_header", "id": 0, "page_no": 0, "cluster": {"id": 0, "label": "page_header", "bbox": {"l": 193.73236083984375, "t": 91.49352999999996, "r": 447.54476999999997, "b": 102.78223000000003, "coord_origin": "TOPLEFT"}, "confidence": 0.9373533725738525, "cells": [{"id": 0, "text": "Optimized Table Tokenization for Table Structure Recognition", "bbox": {"l": 194.478, "t": 91.49352999999996, "r": 447.54476999999997, "b": 102.78223000000003, "coord_origin": "TOPLEFT"}}]}, "text": "Optimized Table Tokenization for Table Structure Recognition"}, {"label": "page_header", "id": 1, "page_no": 0, "cluster": {"id": 1, "label": "page_header", "bbox": {"l": 475.14013671875, "t": 91.49352999999996, "r": 480.59314, "b": 102.78223000000003, "coord_origin": "TOPLEFT"}, "confidence": 0.8858679533004761, "cells": [{"id": 1, "text": "9", "bbox": {"l": 475.98441, "t": 91.49352999999996, "r": 480.59314, "b": 102.78223000000003, "coord_origin": "TOPLEFT"}}]}, "text": "9"}, {"label": "text", "id": 2, "page_no": 0, "cluster": {"id": 2, "label": "text", "bbox": {"l": 133.96153259277344, "t": 116.46301000000005, "r": 480.61419677734375, "b": 152.90697999999998, "coord_origin": "TOPLEFT"}, "confidence": 0.9806433916091919, "cells": [{"id": 2, "text": "order to compute the TED score. Inference timing results for all experiments", "bbox": {"l": 134.765, "t": 116.46301000000005, "r": 480.59067, "b": 128.99597000000006, "coord_origin": "TOPLEFT"}}, {"id": 3, "text": "were obtained from the same machine on a single core with AMD EPYC 7763", "bbox": {"l": 134.765, "t": 128.41803000000004, "r": 480.59665, "b": 140.95099000000005, "coord_origin": "TOPLEFT"}}, {"id": 4, "text": "CPU @2.45 GHz.", "bbox": {"l": 134.765, "t": 140.37401999999997, "r": 210.78761, "b": 152.90697999999998, "coord_origin": "TOPLEFT"}}]}, "text": "order to compute the TED score. Inference timing results for all experiments were obtained from the same machine on a single core with AMD EPYC 7763 CPU @2.45 GHz."}, {"label": "section_header", "id": 3, "page_no": 0, "cluster": {"id": 3, "label": "section_header", "bbox": {"l": 134.31336975097656, "t": 166.70514000000003, "r": 318.45145, "b": 179.20818999999995, "coord_origin": "TOPLEFT"}, "confidence": 0.9577404260635376, "cells": [{"id": 5, "text": "5.1", "bbox": {"l": 134.765, "t": 166.70514000000003, "r": 149.40306, "b": 179.20818999999995, "coord_origin": "TOPLEFT"}}, {"id": 6, "text": "Hyper Parameter Optimization", "bbox": {"l": 160.85905, "t": 166.70514000000003, "r": 318.45145, "b": 179.20818999999995, "coord_origin": "TOPLEFT"}}]}, "text": "5.1 Hyper Parameter Optimization"}, {"label": "text", "id": 4, "page_no": 0, "cluster": {"id": 4, "label": "text", "bbox": {"l": 133.96913146972656, "t": 183.11505, "r": 481.3177795410156, "b": 255.42400999999995, "coord_origin": "TOPLEFT"}, "confidence": 0.98504239320755, "cells": [{"id": 7, "text": "We have chosen the PubTabNet data set to perform HPO, since it includes a", "bbox": {"l": 134.765, "t": 183.11505, "r": 479.74982000000006, "b": 195.64801, "coord_origin": "TOPLEFT"}}, {"id": 8, "text": "highly diverse set of tables. Also we report TED scores separately for simple and", "bbox": {"l": 134.765, "t": 195.07007, "r": 480.58765, "b": 207.60303, "coord_origin": "TOPLEFT"}}, {"id": 9, "text": "complex tables (tables with cell spans). Results are presented in Table. 1. It is", "bbox": {"l": 134.765, "t": 207.02502000000004, "r": 480.58859000000007, "b": 219.55798000000004, "coord_origin": "TOPLEFT"}}, {"id": 10, "text": "evident that with OTSL, our model achieves the same TED score and slightly", "bbox": {"l": 134.765, "t": 218.98004000000003, "r": 480.59567, "b": 231.51300000000003, "coord_origin": "TOPLEFT"}}, {"id": 11, "text": "better mAP scores in comparison to HTML. However OTSL yields a", "bbox": {"l": 134.765, "t": 230.93506000000002, "r": 440.9425, "b": 243.46802000000002, "coord_origin": "TOPLEFT"}}, {"id": 12, "text": "2x speed", "bbox": {"l": 444.86800999999997, "t": 230.98486000000003, "r": 480.58792, "b": 243.46802000000002, "coord_origin": "TOPLEFT"}}, {"id": 13, "text": "up", "bbox": {"l": 134.765, "t": 242.94086000000004, "r": 145.19585, "b": 255.42400999999995, "coord_origin": "TOPLEFT"}}, {"id": 14, "text": "in the inference runtime over HTML.", "bbox": {"l": 149.149, "t": 242.89104999999995, "r": 311.22256, "b": 255.42400999999995, "coord_origin": "TOPLEFT"}}]}, "text": "We have chosen the PubTabNet data set to perform HPO, since it includes a highly diverse set of tables. Also we report TED scores separately for simple and complex tables (tables with cell spans). Results are presented in Table. 1. It is evident that with OTSL, our model achieves the same TED score and slightly better mAP scores in comparison to HTML. However OTSL yields a 2x speed up in the inference runtime over HTML."}, {"label": "caption", "id": 5, "page_no": 0, "cluster": {"id": 5, "label": "caption", "bbox": {"l": 134.0642852783203, "t": 272.79474000000005, "r": 480.59890999999993, "b": 327.98218, "coord_origin": "TOPLEFT"}, "confidence": 0.9591907262802124, "cells": [{"id": 15, "text": "Table", "bbox": {"l": 134.765, "t": 272.79474000000005, "r": 159.22983, "b": 284.1999799999999, "coord_origin": "TOPLEFT"}}, {"id": 16, "text": "1.", "bbox": {"l": 167.34442, "t": 272.79474000000005, "r": 174.71301, "b": 284.1999799999999, "coord_origin": "TOPLEFT"}}, {"id": 17, "text": "HPO performed in OTSL and HTML representation on the same", "bbox": {"l": 188.133, "t": 272.85748, "r": 480.58101999999997, "b": 284.14618, "coord_origin": "TOPLEFT"}}, {"id": 18, "text": "transformer-based TableFormer [9] architecture, trained only on PubTabNet [22]. Ef-", "bbox": {"l": 134.765, "t": 283.81647, "r": 480.59890999999993, "b": 295.10516000000007, "coord_origin": "TOPLEFT"}}, {"id": 19, "text": "fects of reducing the # of layers in encoder and decoder stages of the model show that", "bbox": {"l": 134.765, "t": 294.77547999999996, "r": 480.59887999999995, "b": 306.06418, "coord_origin": "TOPLEFT"}}, {"id": 20, "text": "smaller models trained on OTSL perform better, especially in recognizing complex", "bbox": {"l": 134.765, "t": 305.73447, "r": 480.59180000000003, "b": 317.02316, "coord_origin": "TOPLEFT"}}, {"id": 21, "text": "table structures, and maintain a much higher mAP score than the HTML counterpart.", "bbox": {"l": 134.765, "t": 316.69348, "r": 480.58471999999995, "b": 327.98218, "coord_origin": "TOPLEFT"}}]}, "text": "Table 1. HPO performed in OTSL and HTML representation on the same transformer-based TableFormer [9] architecture, trained only on PubTabNet [22]. Effects of reducing the # of layers in encoder and decoder stages of the model show that smaller models trained on OTSL perform better, especially in recognizing complex table structures, and maintain a much higher mAP score than the HTML counterpart."}, {"label": "table", "id": 6, "page_no": 0, "cluster": {"id": 6, "label": "table", "bbox": {"l": 139.66741943359375, "t": 337.5453796386719, "r": 475.00927734375, "b": 469.4945373535156, "coord_origin": "TOPLEFT"}, "confidence": 0.9901031255722046, "cells": [{"id": 22, "text": "#", "bbox": {"l": 160.37, "t": 339.45749, "r": 168.04523, "b": 350.74619, "coord_origin": "TOPLEFT"}}, {"id": 23, "text": "enc-layers", "bbox": {"l": 144.592, "t": 352.40848, "r": 183.82895, "b": 363.69717, "coord_origin": "TOPLEFT"}}, {"id": 24, "text": "#", "bbox": {"l": 207.974, "t": 339.45749, "r": 215.64923000000002, "b": 350.74619, "coord_origin": "TOPLEFT"}}, {"id": 25, "text": "dec-layers", "bbox": {"l": 192.19501, "t": 352.40848, "r": 231.42303, "b": 363.69717, "coord_origin": "TOPLEFT"}}, {"id": 26, "text": "Language", "bbox": {"l": 239.79799999999997, "t": 344.93649, "r": 278.3338, "b": 356.22519000000005, "coord_origin": "TOPLEFT"}}, {"id": 27, "text": "TEDs", "bbox": {"l": 324.67001, "t": 339.45749, "r": 348.26419, "b": 350.74619, "coord_origin": "TOPLEFT"}}, {"id": 28, "text": "mAP", "bbox": {"l": 396.271, "t": 339.45749, "r": 417.12595, "b": 350.74619, "coord_origin": "TOPLEFT"}}, {"id": 29, "text": "(0.75)", "bbox": {"l": 394.927, "t": 350.41647, "r": 418.46921, "b": 361.70517, "coord_origin": "TOPLEFT"}}, {"id": 30, "text": "Inference", "bbox": {"l": 430.771, "t": 339.45749, "r": 467.14142000000004, "b": 350.74619, "coord_origin": "TOPLEFT"}}, {"id": 31, "text": "time (secs)", "bbox": {"l": 427.14801, "t": 350.41647, "r": 470.76955999999996, "b": 361.70517, "coord_origin": "TOPLEFT"}}, {"id": 32, "text": "simple", "bbox": {"l": 286.686, "t": 352.40848, "r": 312.32812, "b": 363.69717, "coord_origin": "TOPLEFT"}}, {"id": 33, "text": "complex", "bbox": {"l": 320.702, "t": 352.40848, "r": 353.71539, "b": 363.69717, "coord_origin": "TOPLEFT"}}, {"id": 34, "text": "all", "bbox": {"l": 369.306, "t": 352.40848, "r": 379.02914, "b": 363.69717, "coord_origin": "TOPLEFT"}}, {"id": 35, "text": "6", "bbox": {"l": 161.90601, "t": 371.23849, "r": 166.51474, "b": 382.52719, "coord_origin": "TOPLEFT"}}, {"id": 36, "text": "6", "bbox": {"l": 209.509, "t": 371.23849, "r": 214.11774, "b": 382.52719, "coord_origin": "TOPLEFT"}}, {"id": 37, "text": "OTSL", "bbox": {"l": 246.71000999999998, "t": 365.75848, "r": 271.41064, "b": 377.04717999999997, "coord_origin": "TOPLEFT"}}, {"id": 38, "text": "0.965", "bbox": {"l": 289.017, "t": 365.75848, "r": 310.00732, "b": 377.04717999999997, "coord_origin": "TOPLEFT"}}, {"id": 39, "text": "0.934", "bbox": {"l": 326.71701, "t": 365.75848, "r": 347.70734, "b": 377.04717999999997, "coord_origin": "TOPLEFT"}}, {"id": 40, "text": "0.955", "bbox": {"l": 363.67599, "t": 365.75848, "r": 384.66632, "b": 377.04717999999997, "coord_origin": "TOPLEFT"}}, {"id": 41, "text": "0.88", "bbox": {"l": 397.26999, "t": 365.69571, "r": 416.12634, "b": 377.10098000000005, "coord_origin": "TOPLEFT"}}, {"id": 42, "text": "2.73", "bbox": {"l": 439.52701, "t": 365.69571, "r": 458.38336, "b": 377.10098000000005, "coord_origin": "TOPLEFT"}}, {"id": 43, "text": "HTML", "bbox": {"l": 245.17598999999998, "t": 378.71048, "r": 272.94495, "b": 389.99917999999997, "coord_origin": "TOPLEFT"}}, {"id": 44, "text": "0.969", "bbox": {"l": 289.017, "t": 378.71048, "r": 310.00732, "b": 389.99917999999997, "coord_origin": "TOPLEFT"}}, {"id": 45, "text": "0.927", "bbox": {"l": 326.71701, "t": 378.71048, "r": 347.70734, "b": 389.99917999999997, "coord_origin": "TOPLEFT"}}, {"id": 46, "text": "0.955", "bbox": {"l": 363.67599, "t": 378.71048, "r": 384.66632, "b": 389.99917999999997, "coord_origin": "TOPLEFT"}}, {"id": 47, "text": "0.857", "bbox": {"l": 396.20599, "t": 378.71048, "r": 417.19632, "b": 389.99917999999997, "coord_origin": "TOPLEFT"}}, {"id": 48, "text": "5.39", "bbox": {"l": 440.767, "t": 378.71048, "r": 457.15039, "b": 389.99917999999997, "coord_origin": "TOPLEFT"}}, {"id": 49, "text": "4", "bbox": {"l": 161.90601, "t": 397.53949, "r": 166.51474, "b": 408.82819, "coord_origin": "TOPLEFT"}}, {"id": 50, "text": "4", "bbox": {"l": 209.509, "t": 397.53949, "r": 214.11774, "b": 408.82819, "coord_origin": "TOPLEFT"}}, {"id": 51, "text": "OTSL", "bbox": {"l": 246.71000999999998, "t": 392.06049, "r": 271.41064, "b": 403.34918, "coord_origin": "TOPLEFT"}}, {"id": 52, "text": "0.938", "bbox": {"l": 289.017, "t": 392.06049, "r": 310.00732, "b": 403.34918, "coord_origin": "TOPLEFT"}}, {"id": 53, "text": "0.904", "bbox": {"l": 326.71701, "t": 392.06049, "r": 347.70734, "b": 403.34918, "coord_origin": "TOPLEFT"}}, {"id": 54, "text": "0.927", "bbox": {"l": 363.67599, "t": 392.06049, "r": 384.66632, "b": 403.34918, "coord_origin": "TOPLEFT"}}, {"id": 55, "text": "0.853", "bbox": {"l": 394.61801, "t": 391.99771, "r": 418.77798, "b": 403.40298, "coord_origin": "TOPLEFT"}}, {"id": 56, "text": "1.97", "bbox": {"l": 439.52701, "t": 391.99771, "r": 458.38336, "b": 403.40298, "coord_origin": "TOPLEFT"}}, {"id": 57, "text": "HTML", "bbox": {"l": 245.17598999999998, "t": 405.01147, "r": 272.94495, "b": 416.30017, "coord_origin": "TOPLEFT"}}, {"id": 58, "text": "0.952", "bbox": {"l": 289.017, "t": 405.01147, "r": 310.00732, "b": 416.30017, "coord_origin": "TOPLEFT"}}, {"id": 59, "text": "0.909", "bbox": {"l": 326.71701, "t": 405.01147, "r": 347.70734, "b": 416.30017, "coord_origin": "TOPLEFT"}}, {"id": 60, "text": "0.938", "bbox": {"l": 362.08801, "t": 404.9486999999999, "r": 386.24799, "b": 416.35397, "coord_origin": "TOPLEFT"}}, {"id": 61, "text": "0.843", "bbox": {"l": 396.20599, "t": 405.01147, "r": 417.19632, "b": 416.30017, "coord_origin": "TOPLEFT"}}, {"id": 62, "text": "3.77", "bbox": {"l": 440.767, "t": 405.01147, "r": 457.15039, "b": 416.30017, "coord_origin": "TOPLEFT"}}, {"id": 63, "text": "2", "bbox": {"l": 161.90601, "t": 423.84048, "r": 166.51474, "b": 435.12918, "coord_origin": "TOPLEFT"}}, {"id": 64, "text": "4", "bbox": {"l": 209.509, "t": 423.84048, "r": 214.11774, "b": 435.12918, "coord_origin": "TOPLEFT"}}, {"id": 65, "text": "OTSL", "bbox": {"l": 246.71000999999998, "t": 418.3614799999999, "r": 271.41064, "b": 429.65018, "coord_origin": "TOPLEFT"}}, {"id": 66, "text": "0.923", "bbox": {"l": 289.017, "t": 418.3614799999999, "r": 310.00732, "b": 429.65018, "coord_origin": "TOPLEFT"}}, {"id": 67, "text": "0.897", "bbox": {"l": 326.71701, "t": 418.3614799999999, "r": 347.70734, "b": 429.65018, "coord_origin": "TOPLEFT"}}, {"id": 68, "text": "0.915", "bbox": {"l": 363.67599, "t": 418.3614799999999, "r": 384.66632, "b": 429.65018, "coord_origin": "TOPLEFT"}}, {"id": 69, "text": "0.859", "bbox": {"l": 394.61801, "t": 418.29871, "r": 418.77798, "b": 429.70398, "coord_origin": "TOPLEFT"}}, {"id": 70, "text": "1.91", "bbox": {"l": 439.52701, "t": 418.29871, "r": 458.38336, "b": 429.70398, "coord_origin": "TOPLEFT"}}, {"id": 71, "text": "HTML", "bbox": {"l": 245.17598999999998, "t": 431.31246999999996, "r": 272.94495, "b": 442.60117, "coord_origin": "TOPLEFT"}}, {"id": 72, "text": "0.945", "bbox": {"l": 289.017, "t": 431.31246999999996, "r": 310.00732, "b": 442.60117, "coord_origin": "TOPLEFT"}}, {"id": 73, "text": "0.901", "bbox": {"l": 326.71701, "t": 431.31246999999996, "r": 347.70734, "b": 442.60117, "coord_origin": "TOPLEFT"}}, {"id": 74, "text": "0.931", "bbox": {"l": 362.08801, "t": 431.24969, "r": 386.24799, "b": 442.65497, "coord_origin": "TOPLEFT"}}, {"id": 75, "text": "0.834", "bbox": {"l": 396.20599, "t": 431.31246999999996, "r": 417.19632, "b": 442.60117, "coord_origin": "TOPLEFT"}}, {"id": 76, "text": "3.81", "bbox": {"l": 440.767, "t": 431.31246999999996, "r": 457.15039, "b": 442.60117, "coord_origin": "TOPLEFT"}}, {"id": 77, "text": "4", "bbox": {"l": 161.90601, "t": 450.14248999999995, "r": 166.51474, "b": 461.43118, "coord_origin": "TOPLEFT"}}, {"id": 78, "text": "2", "bbox": {"l": 209.509, "t": 450.14248999999995, "r": 214.11774, "b": 461.43118, "coord_origin": "TOPLEFT"}}, {"id": 79, "text": "OTSL", "bbox": {"l": 246.71000999999998, "t": 444.66248, "r": 271.41064, "b": 455.95117, "coord_origin": "TOPLEFT"}}, {"id": 80, "text": "0.952", "bbox": {"l": 289.017, "t": 444.66248, "r": 310.00732, "b": 455.95117, "coord_origin": "TOPLEFT"}}, {"id": 81, "text": "0.92", "bbox": {"l": 329.021, "t": 444.66248, "r": 345.40439, "b": 455.95117, "coord_origin": "TOPLEFT"}}, {"id": 82, "text": "0.942", "bbox": {"l": 362.08801, "t": 444.5996999999999, "r": 386.24799, "b": 456.00497, "coord_origin": "TOPLEFT"}}, {"id": 83, "text": "0.857", "bbox": {"l": 394.61801, "t": 444.5996999999999, "r": 418.77798, "b": 456.00497, "coord_origin": "TOPLEFT"}}, {"id": 84, "text": "1.22", "bbox": {"l": 439.52701, "t": 444.5996999999999, "r": 458.38336, "b": 456.00497, "coord_origin": "TOPLEFT"}}, {"id": 85, "text": "HTML", "bbox": {"l": 245.17598999999998, "t": 457.61447, "r": 272.94495, "b": 468.90317, "coord_origin": "TOPLEFT"}}, {"id": 86, "text": "0.944", "bbox": {"l": 289.017, "t": 457.61447, "r": 310.00732, "b": 468.90317, "coord_origin": "TOPLEFT"}}, {"id": 87, "text": "0.903", "bbox": {"l": 326.71701, "t": 457.61447, "r": 347.70734, "b": 468.90317, "coord_origin": "TOPLEFT"}}, {"id": 88, "text": "0.931", "bbox": {"l": 363.67599, "t": 457.61447, "r": 384.66632, "b": 468.90317, "coord_origin": "TOPLEFT"}}, {"id": 89, "text": "0.824", "bbox": {"l": 396.20599, "t": 457.61447, "r": 417.19632, "b": 468.90317, "coord_origin": "TOPLEFT"}}, {"id": 90, "text": "2", "bbox": {"l": 446.65302, "t": 457.61447, "r": 451.26175, "b": 468.90317, "coord_origin": "TOPLEFT"}}]}, "text": null, "otsl_seq": ["ched", "ched", "ched", "ched", "lcel", "lcel", "ched", "ched", "nl", "ched", "ched", "ucel", "ched", "ched", "ched", "ched", "ched", "nl", "fcel", "fcel", "fcel", "fcel", "fcel", "fcel", "fcel", "fcel", "nl", "fcel", "fcel", "fcel", "fcel", "fcel", "fcel", "fcel", "fcel", "nl", "fcel", "fcel", "fcel", "fcel", "fcel", "fcel", "fcel", "fcel", "nl", "fcel", "fcel", "fcel", "fcel", "fcel", "fcel", "fcel", "fcel", "nl", "fcel", "fcel", "fcel", "fcel", "fcel", "fcel", "fcel", "fcel", "nl"], "num_rows": 7, "num_cols": 8, "table_cells": [{"bbox": {"l": 160.37, "t": 339.45749, "r": 168.04523, "b": 350.74619, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "#", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 144.592, "t": 352.40848, "r": 183.82895, "b": 363.69717, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "enc-layers", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 207.974, "t": 339.45749, "r": 215.64923000000002, "b": 350.74619, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "#", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 192.19501, "t": 352.40848, "r": 231.42303, "b": 363.69717, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "dec-layers", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 239.79799999999997, "t": 344.93649, "r": 278.3338, "b": 356.22519000000005, "coord_origin": "TOPLEFT"}, "row_span": 2, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 2, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "Language", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 324.67001, "t": 339.45749, "r": 348.26419, "b": 350.74619, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 3, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 3, "end_col_offset_idx": 6, "text": "TEDs", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 396.271, "t": 339.45749, "r": 417.12595, "b": 350.74619, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 6, "end_col_offset_idx": 7, "text": "mAP", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 394.927, "t": 350.41647, "r": 418.46921, "b": 361.70517, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 6, "end_col_offset_idx": 7, "text": "(0.75)", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 430.771, "t": 339.45749, "r": 467.14142000000004, "b": 350.74619, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 7, "end_col_offset_idx": 8, "text": "Inference", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 427.14801, "t": 350.41647, "r": 470.76955999999996, "b": 361.70517, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 7, "end_col_offset_idx": 8, "text": "time (secs)", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 286.686, "t": 352.40848, "r": 312.32812, "b": 363.69717, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "simple", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 320.702, "t": 352.40848, "r": 353.71539, "b": 363.69717, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 4, "end_col_offset_idx": 5, "text": "complex", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 369.306, "t": 352.40848, "r": 379.02914, "b": 363.69717, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 5, "end_col_offset_idx": 6, "text": "all", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 161.90601, "t": 371.23849, "r": 166.51474, "b": 382.52719, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "6", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 209.509, "t": 371.23849, "r": 214.11774, "b": 382.52719, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "6", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 245.17598999999998, "t": 365.75848, "r": 272.94495, "b": 389.99917999999997, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "OTSL HTML", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 289.017, "t": 365.75848, "r": 310.00732, "b": 389.99917999999997, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "0.965 0.969", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 326.71701, "t": 365.75848, "r": 347.70734, "b": 389.99917999999997, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 4, "end_col_offset_idx": 5, "text": "0.934 0.927", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 363.67599, "t": 365.75848, "r": 384.66632, "b": 389.99917999999997, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 5, "end_col_offset_idx": 6, "text": "0.955 0.955", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 396.20599, "t": 365.69571, "r": 417.19632, "b": 389.99917999999997, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 6, "end_col_offset_idx": 7, "text": "0.88 0.857", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 439.52701, "t": 365.69571, "r": 458.38336, "b": 389.99917999999997, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 7, "end_col_offset_idx": 8, "text": "2.73 5.39", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 161.90601, "t": 397.53949, "r": 166.51474, "b": 408.82819, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "4", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 209.509, "t": 397.53949, "r": 214.11774, "b": 408.82819, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "4", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 245.17598999999998, "t": 392.06049, "r": 272.94495, "b": 416.30017, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "OTSL HTML", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 289.017, "t": 392.06049, "r": 310.00732, "b": 403.34918, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "0.938", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 326.71701, "t": 392.06049, "r": 347.70734, "b": 403.34918, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 4, "end_col_offset_idx": 5, "text": "0.904", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 363.67599, "t": 392.06049, "r": 384.66632, "b": 403.34918, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 5, "end_col_offset_idx": 6, "text": "0.927", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 394.61801, "t": 391.99771, "r": 418.77798, "b": 403.40298, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 6, "end_col_offset_idx": 7, "text": "0.853", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 439.52701, "t": 391.99771, "r": 458.38336, "b": 403.40298, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 7, "end_col_offset_idx": 8, "text": "1.97", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 289.017, "t": 405.01147, "r": 310.00732, "b": 429.65018, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "0.952 0.923", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 326.71701, "t": 405.01147, "r": 347.70734, "b": 416.30017, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 4, "end_col_offset_idx": 5, "text": "0.909", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 362.08801, "t": 404.9486999999999, "r": 386.24799, "b": 416.35397, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 5, "end_col_offset_idx": 6, "text": "0.938", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 396.20599, "t": 405.01147, "r": 417.19632, "b": 416.30017, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 6, "end_col_offset_idx": 7, "text": "0.843", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 440.767, "t": 405.01147, "r": 457.15039, "b": 416.30017, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 7, "end_col_offset_idx": 8, "text": "3.77", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 161.90601, "t": 423.84048, "r": 166.51474, "b": 435.12918, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "2", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 209.509, "t": 423.84048, "r": 214.11774, "b": 435.12918, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "4", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 246.71000999999998, "t": 418.3614799999999, "r": 271.41064, "b": 429.65018, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "OTSL", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 326.71701, "t": 418.3614799999999, "r": 347.70734, "b": 442.60117, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 4, "end_col_offset_idx": 5, "text": "0.897 0.901", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 362.08801, "t": 418.3614799999999, "r": 386.24799, "b": 442.65497, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 5, "end_col_offset_idx": 6, "text": "0.915 0.931", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 394.61801, "t": 418.29871, "r": 418.77798, "b": 442.60117, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 6, "end_col_offset_idx": 7, "text": "0.859 0.834", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 439.52701, "t": 418.29871, "r": 458.38336, "b": 442.60117, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 7, "end_col_offset_idx": 8, "text": "1.91 3.81", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 245.17598999999998, "t": 431.31246999999996, "r": 272.94495, "b": 442.60117, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "HTML", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 289.017, "t": 431.31246999999996, "r": 310.00732, "b": 442.60117, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "0.945", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 161.90601, "t": 450.14248999999995, "r": 166.51474, "b": 461.43118, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "4", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 209.509, "t": 450.14248999999995, "r": 214.11774, "b": 461.43118, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "2", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 245.17598999999998, "t": 444.66248, "r": 272.94495, "b": 468.90317, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "OTSL HTML", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 289.017, "t": 444.66248, "r": 310.00732, "b": 468.90317, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "0.952 0.944", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 326.71701, "t": 444.66248, "r": 347.70734, "b": 468.90317, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 4, "end_col_offset_idx": 5, "text": "0.92 0.903", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 362.08801, "t": 444.5996999999999, "r": 386.24799, "b": 468.90317, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 5, "end_col_offset_idx": 6, "text": "0.942 0.931", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 394.61801, "t": 444.5996999999999, "r": 418.77798, "b": 468.90317, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 6, "end_col_offset_idx": 7, "text": "0.857 0.824", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 439.52701, "t": 444.5996999999999, "r": 458.38336, "b": 468.90317, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 7, "end_col_offset_idx": 8, "text": "1.22 2", "column_header": false, "row_header": false, "row_section": false}]}, {"label": "section_header", "id": 7, "page_no": 0, "cluster": {"id": 7, "label": "section_header", "bbox": {"l": 134.38507080078125, "t": 505.67111, "r": 264.40829, "b": 518.17419, "coord_origin": "TOPLEFT"}, "confidence": 0.9589294195175171, "cells": [{"id": 91, "text": "5.2", "bbox": {"l": 134.765, "t": 505.67111, "r": 149.40306, "b": 518.17419, "coord_origin": "TOPLEFT"}}, {"id": 92, "text": "Quantitative Results", "bbox": {"l": 160.85905, "t": 505.67111, "r": 264.40829, "b": 518.17419, "coord_origin": "TOPLEFT"}}]}, "text": "5.2 Quantitative Results"}, {"label": "text", "id": 8, "page_no": 0, "cluster": {"id": 8, "label": "text", "bbox": {"l": 133.9154052734375, "t": 522.08005, "r": 480.72003, "b": 618.3, "coord_origin": "TOPLEFT"}, "confidence": 0.9849975109100342, "cells": [{"id": 93, "text": "We picked the model parameter configuration that produced the best prediction", "bbox": {"l": 134.765, "t": 522.08005, "r": 479.72983, "b": 534.61301, "coord_origin": "TOPLEFT"}}, {"id": 94, "text": "quality (enc=6, dec=6, heads=8) with PubTabNet alone, then independently", "bbox": {"l": 134.765, "t": 534.03604, "r": 480.5897499999999, "b": 546.569, "coord_origin": "TOPLEFT"}}, {"id": 95, "text": "trained and evaluated it on three publicly available data sets: PubTabNet (395k", "bbox": {"l": 134.765, "t": 545.99104, "r": 480.72003, "b": 558.524, "coord_origin": "TOPLEFT"}}, {"id": 96, "text": "samples), FinTabNet (113k samples) and PubTables-1M (about 1M samples).", "bbox": {"l": 134.765, "t": 557.94604, "r": 480.60577, "b": 570.479, "coord_origin": "TOPLEFT"}}, {"id": 97, "text": "Performance results are presented in Table. 2. It is clearly evident that the model", "bbox": {"l": 134.765, "t": 569.90103, "r": 480.5936899999999, "b": 582.43399, "coord_origin": "TOPLEFT"}}, {"id": 98, "text": "trained on OTSL outperforms HTML across the board, keeping high TEDs and", "bbox": {"l": 134.765, "t": 581.85603, "r": 480.59158, "b": 594.38899, "coord_origin": "TOPLEFT"}}, {"id": 99, "text": "mAP scores even on difficult financial tables (FinTabNet) that contain sparse", "bbox": {"l": 134.765, "t": 593.81204, "r": 480.58080999999993, "b": 606.345, "coord_origin": "TOPLEFT"}}, {"id": 100, "text": "and large tables.", "bbox": {"l": 134.765, "t": 605.76704, "r": 206.79959, "b": 618.3, "coord_origin": "TOPLEFT"}}]}, "text": "We picked the model parameter configuration that produced the best prediction quality (enc=6, dec=6, heads=8) with PubTabNet alone, then independently trained and evaluated it on three publicly available data sets: PubTabNet (395k samples), FinTabNet (113k samples) and PubTables-1M (about 1M samples). Performance results are presented in Table. 2. It is clearly evident that the model trained on OTSL outperforms HTML across the board, keeping high TEDs and mAP scores even on difficult financial tables (FinTabNet) that contain sparse and large tables."}, {"label": "text", "id": 9, "page_no": 0, "cluster": {"id": 9, "label": "text", "bbox": {"l": 133.861083984375, "t": 617.72205, "r": 480.78125, "b": 666.12, "coord_origin": "TOPLEFT"}, "confidence": 0.9850137829780579, "cells": [{"id": 101, "text": "Additionally, the results show that OTSL has an advantage over HTML", "bbox": {"l": 149.709, "t": 617.72205, "r": 480.59479, "b": 630.255, "coord_origin": "TOPLEFT"}}, {"id": 102, "text": "when applied on a bigger data set like PubTables-1M and achieves significantly", "bbox": {"l": 134.765, "t": 629.6770300000001, "r": 480.59857000000005, "b": 642.2099900000001, "coord_origin": "TOPLEFT"}}, {"id": 103, "text": "improved scores. Finally, OTSL achieves faster inference due to fewer decoding", "bbox": {"l": 134.765, "t": 641.63203, "r": 480.59384000000006, "b": 654.16499, "coord_origin": "TOPLEFT"}}, {"id": 104, "text": "steps which is a result of the reduced sequence representation.", "bbox": {"l": 134.765, "t": 653.58704, "r": 405.7995, "b": 666.12, "coord_origin": "TOPLEFT"}}]}, "text": "Additionally, the results show that OTSL has an advantage over HTML when applied on a bigger data set like PubTables-1M and achieves significantly improved scores. Finally, OTSL achieves faster inference due to fewer decoding steps which is a result of the reduced sequence representation."}], "body": [{"label": "text", "id": 2, "page_no": 0, "cluster": {"id": 2, "label": "text", "bbox": {"l": 133.96153259277344, "t": 116.46301000000005, "r": 480.61419677734375, "b": 152.90697999999998, "coord_origin": "TOPLEFT"}, "confidence": 0.9806433916091919, "cells": [{"id": 2, "text": "order to compute the TED score. Inference timing results for all experiments", "bbox": {"l": 134.765, "t": 116.46301000000005, "r": 480.59067, "b": 128.99597000000006, "coord_origin": "TOPLEFT"}}, {"id": 3, "text": "were obtained from the same machine on a single core with AMD EPYC 7763", "bbox": {"l": 134.765, "t": 128.41803000000004, "r": 480.59665, "b": 140.95099000000005, "coord_origin": "TOPLEFT"}}, {"id": 4, "text": "CPU @2.45 GHz.", "bbox": {"l": 134.765, "t": 140.37401999999997, "r": 210.78761, "b": 152.90697999999998, "coord_origin": "TOPLEFT"}}]}, "text": "order to compute the TED score. Inference timing results for all experiments were obtained from the same machine on a single core with AMD EPYC 7763 CPU @2.45 GHz."}, {"label": "section_header", "id": 3, "page_no": 0, "cluster": {"id": 3, "label": "section_header", "bbox": {"l": 134.31336975097656, "t": 166.70514000000003, "r": 318.45145, "b": 179.20818999999995, "coord_origin": "TOPLEFT"}, "confidence": 0.9577404260635376, "cells": [{"id": 5, "text": "5.1", "bbox": {"l": 134.765, "t": 166.70514000000003, "r": 149.40306, "b": 179.20818999999995, "coord_origin": "TOPLEFT"}}, {"id": 6, "text": "Hyper Parameter Optimization", "bbox": {"l": 160.85905, "t": 166.70514000000003, "r": 318.45145, "b": 179.20818999999995, "coord_origin": "TOPLEFT"}}]}, "text": "5.1 Hyper Parameter Optimization"}, {"label": "text", "id": 4, "page_no": 0, "cluster": {"id": 4, "label": "text", "bbox": {"l": 133.96913146972656, "t": 183.11505, "r": 481.3177795410156, "b": 255.42400999999995, "coord_origin": "TOPLEFT"}, "confidence": 0.98504239320755, "cells": [{"id": 7, "text": "We have chosen the PubTabNet data set to perform HPO, since it includes a", "bbox": {"l": 134.765, "t": 183.11505, "r": 479.74982000000006, "b": 195.64801, "coord_origin": "TOPLEFT"}}, {"id": 8, "text": "highly diverse set of tables. Also we report TED scores separately for simple and", "bbox": {"l": 134.765, "t": 195.07007, "r": 480.58765, "b": 207.60303, "coord_origin": "TOPLEFT"}}, {"id": 9, "text": "complex tables (tables with cell spans). Results are presented in Table. 1. It is", "bbox": {"l": 134.765, "t": 207.02502000000004, "r": 480.58859000000007, "b": 219.55798000000004, "coord_origin": "TOPLEFT"}}, {"id": 10, "text": "evident that with OTSL, our model achieves the same TED score and slightly", "bbox": {"l": 134.765, "t": 218.98004000000003, "r": 480.59567, "b": 231.51300000000003, "coord_origin": "TOPLEFT"}}, {"id": 11, "text": "better mAP scores in comparison to HTML. However OTSL yields a", "bbox": {"l": 134.765, "t": 230.93506000000002, "r": 440.9425, "b": 243.46802000000002, "coord_origin": "TOPLEFT"}}, {"id": 12, "text": "2x speed", "bbox": {"l": 444.86800999999997, "t": 230.98486000000003, "r": 480.58792, "b": 243.46802000000002, "coord_origin": "TOPLEFT"}}, {"id": 13, "text": "up", "bbox": {"l": 134.765, "t": 242.94086000000004, "r": 145.19585, "b": 255.42400999999995, "coord_origin": "TOPLEFT"}}, {"id": 14, "text": "in the inference runtime over HTML.", "bbox": {"l": 149.149, "t": 242.89104999999995, "r": 311.22256, "b": 255.42400999999995, "coord_origin": "TOPLEFT"}}]}, "text": "We have chosen the PubTabNet data set to perform HPO, since it includes a highly diverse set of tables. Also we report TED scores separately for simple and complex tables (tables with cell spans). Results are presented in Table. 1. It is evident that with OTSL, our model achieves the same TED score and slightly better mAP scores in comparison to HTML. However OTSL yields a 2x speed up in the inference runtime over HTML."}, {"label": "caption", "id": 5, "page_no": 0, "cluster": {"id": 5, "label": "caption", "bbox": {"l": 134.0642852783203, "t": 272.79474000000005, "r": 480.59890999999993, "b": 327.98218, "coord_origin": "TOPLEFT"}, "confidence": 0.9591907262802124, "cells": [{"id": 15, "text": "Table", "bbox": {"l": 134.765, "t": 272.79474000000005, "r": 159.22983, "b": 284.1999799999999, "coord_origin": "TOPLEFT"}}, {"id": 16, "text": "1.", "bbox": {"l": 167.34442, "t": 272.79474000000005, "r": 174.71301, "b": 284.1999799999999, "coord_origin": "TOPLEFT"}}, {"id": 17, "text": "HPO performed in OTSL and HTML representation on the same", "bbox": {"l": 188.133, "t": 272.85748, "r": 480.58101999999997, "b": 284.14618, "coord_origin": "TOPLEFT"}}, {"id": 18, "text": "transformer-based TableFormer [9] architecture, trained only on PubTabNet [22]. Ef-", "bbox": {"l": 134.765, "t": 283.81647, "r": 480.59890999999993, "b": 295.10516000000007, "coord_origin": "TOPLEFT"}}, {"id": 19, "text": "fects of reducing the # of layers in encoder and decoder stages of the model show that", "bbox": {"l": 134.765, "t": 294.77547999999996, "r": 480.59887999999995, "b": 306.06418, "coord_origin": "TOPLEFT"}}, {"id": 20, "text": "smaller models trained on OTSL perform better, especially in recognizing complex", "bbox": {"l": 134.765, "t": 305.73447, "r": 480.59180000000003, "b": 317.02316, "coord_origin": "TOPLEFT"}}, {"id": 21, "text": "table structures, and maintain a much higher mAP score than the HTML counterpart.", "bbox": {"l": 134.765, "t": 316.69348, "r": 480.58471999999995, "b": 327.98218, "coord_origin": "TOPLEFT"}}]}, "text": "Table 1. HPO performed in OTSL and HTML representation on the same transformer-based TableFormer [9] architecture, trained only on PubTabNet [22]. Effects of reducing the # of layers in encoder and decoder stages of the model show that smaller models trained on OTSL perform better, especially in recognizing complex table structures, and maintain a much higher mAP score than the HTML counterpart."}, {"label": "table", "id": 6, "page_no": 0, "cluster": {"id": 6, "label": "table", "bbox": {"l": 139.66741943359375, "t": 337.5453796386719, "r": 475.00927734375, "b": 469.4945373535156, "coord_origin": "TOPLEFT"}, "confidence": 0.9901031255722046, "cells": [{"id": 22, "text": "#", "bbox": {"l": 160.37, "t": 339.45749, "r": 168.04523, "b": 350.74619, "coord_origin": "TOPLEFT"}}, {"id": 23, "text": "enc-layers", "bbox": {"l": 144.592, "t": 352.40848, "r": 183.82895, "b": 363.69717, "coord_origin": "TOPLEFT"}}, {"id": 24, "text": "#", "bbox": {"l": 207.974, "t": 339.45749, "r": 215.64923000000002, "b": 350.74619, "coord_origin": "TOPLEFT"}}, {"id": 25, "text": "dec-layers", "bbox": {"l": 192.19501, "t": 352.40848, "r": 231.42303, "b": 363.69717, "coord_origin": "TOPLEFT"}}, {"id": 26, "text": "Language", "bbox": {"l": 239.79799999999997, "t": 344.93649, "r": 278.3338, "b": 356.22519000000005, "coord_origin": "TOPLEFT"}}, {"id": 27, "text": "TEDs", "bbox": {"l": 324.67001, "t": 339.45749, "r": 348.26419, "b": 350.74619, "coord_origin": "TOPLEFT"}}, {"id": 28, "text": "mAP", "bbox": {"l": 396.271, "t": 339.45749, "r": 417.12595, "b": 350.74619, "coord_origin": "TOPLEFT"}}, {"id": 29, "text": "(0.75)", "bbox": {"l": 394.927, "t": 350.41647, "r": 418.46921, "b": 361.70517, "coord_origin": "TOPLEFT"}}, {"id": 30, "text": "Inference", "bbox": {"l": 430.771, "t": 339.45749, "r": 467.14142000000004, "b": 350.74619, "coord_origin": "TOPLEFT"}}, {"id": 31, "text": "time (secs)", "bbox": {"l": 427.14801, "t": 350.41647, "r": 470.76955999999996, "b": 361.70517, "coord_origin": "TOPLEFT"}}, {"id": 32, "text": "simple", "bbox": {"l": 286.686, "t": 352.40848, "r": 312.32812, "b": 363.69717, "coord_origin": "TOPLEFT"}}, {"id": 33, "text": "complex", "bbox": {"l": 320.702, "t": 352.40848, "r": 353.71539, "b": 363.69717, "coord_origin": "TOPLEFT"}}, {"id": 34, "text": "all", "bbox": {"l": 369.306, "t": 352.40848, "r": 379.02914, "b": 363.69717, "coord_origin": "TOPLEFT"}}, {"id": 35, "text": "6", "bbox": {"l": 161.90601, "t": 371.23849, "r": 166.51474, "b": 382.52719, "coord_origin": "TOPLEFT"}}, {"id": 36, "text": "6", "bbox": {"l": 209.509, "t": 371.23849, "r": 214.11774, "b": 382.52719, "coord_origin": "TOPLEFT"}}, {"id": 37, "text": "OTSL", "bbox": {"l": 246.71000999999998, "t": 365.75848, "r": 271.41064, "b": 377.04717999999997, "coord_origin": "TOPLEFT"}}, {"id": 38, "text": "0.965", "bbox": {"l": 289.017, "t": 365.75848, "r": 310.00732, "b": 377.04717999999997, "coord_origin": "TOPLEFT"}}, {"id": 39, "text": "0.934", "bbox": {"l": 326.71701, "t": 365.75848, "r": 347.70734, "b": 377.04717999999997, "coord_origin": "TOPLEFT"}}, {"id": 40, "text": "0.955", "bbox": {"l": 363.67599, "t": 365.75848, "r": 384.66632, "b": 377.04717999999997, "coord_origin": "TOPLEFT"}}, {"id": 41, "text": "0.88", "bbox": {"l": 397.26999, "t": 365.69571, "r": 416.12634, "b": 377.10098000000005, "coord_origin": "TOPLEFT"}}, {"id": 42, "text": "2.73", "bbox": {"l": 439.52701, "t": 365.69571, "r": 458.38336, "b": 377.10098000000005, "coord_origin": "TOPLEFT"}}, {"id": 43, "text": "HTML", "bbox": {"l": 245.17598999999998, "t": 378.71048, "r": 272.94495, "b": 389.99917999999997, "coord_origin": "TOPLEFT"}}, {"id": 44, "text": "0.969", "bbox": {"l": 289.017, "t": 378.71048, "r": 310.00732, "b": 389.99917999999997, "coord_origin": "TOPLEFT"}}, {"id": 45, "text": "0.927", "bbox": {"l": 326.71701, "t": 378.71048, "r": 347.70734, "b": 389.99917999999997, "coord_origin": "TOPLEFT"}}, {"id": 46, "text": "0.955", "bbox": {"l": 363.67599, "t": 378.71048, "r": 384.66632, "b": 389.99917999999997, "coord_origin": "TOPLEFT"}}, {"id": 47, "text": "0.857", "bbox": {"l": 396.20599, "t": 378.71048, "r": 417.19632, "b": 389.99917999999997, "coord_origin": "TOPLEFT"}}, {"id": 48, "text": "5.39", "bbox": {"l": 440.767, "t": 378.71048, "r": 457.15039, "b": 389.99917999999997, "coord_origin": "TOPLEFT"}}, {"id": 49, "text": "4", "bbox": {"l": 161.90601, "t": 397.53949, "r": 166.51474, "b": 408.82819, "coord_origin": "TOPLEFT"}}, {"id": 50, "text": "4", "bbox": {"l": 209.509, "t": 397.53949, "r": 214.11774, "b": 408.82819, "coord_origin": "TOPLEFT"}}, {"id": 51, "text": "OTSL", "bbox": {"l": 246.71000999999998, "t": 392.06049, "r": 271.41064, "b": 403.34918, "coord_origin": "TOPLEFT"}}, {"id": 52, "text": "0.938", "bbox": {"l": 289.017, "t": 392.06049, "r": 310.00732, "b": 403.34918, "coord_origin": "TOPLEFT"}}, {"id": 53, "text": "0.904", "bbox": {"l": 326.71701, "t": 392.06049, "r": 347.70734, "b": 403.34918, "coord_origin": "TOPLEFT"}}, {"id": 54, "text": "0.927", "bbox": {"l": 363.67599, "t": 392.06049, "r": 384.66632, "b": 403.34918, "coord_origin": "TOPLEFT"}}, {"id": 55, "text": "0.853", "bbox": {"l": 394.61801, "t": 391.99771, "r": 418.77798, "b": 403.40298, "coord_origin": "TOPLEFT"}}, {"id": 56, "text": "1.97", "bbox": {"l": 439.52701, "t": 391.99771, "r": 458.38336, "b": 403.40298, "coord_origin": "TOPLEFT"}}, {"id": 57, "text": "HTML", "bbox": {"l": 245.17598999999998, "t": 405.01147, "r": 272.94495, "b": 416.30017, "coord_origin": "TOPLEFT"}}, {"id": 58, "text": "0.952", "bbox": {"l": 289.017, "t": 405.01147, "r": 310.00732, "b": 416.30017, "coord_origin": "TOPLEFT"}}, {"id": 59, "text": "0.909", "bbox": {"l": 326.71701, "t": 405.01147, "r": 347.70734, "b": 416.30017, "coord_origin": "TOPLEFT"}}, {"id": 60, "text": "0.938", "bbox": {"l": 362.08801, "t": 404.9486999999999, "r": 386.24799, "b": 416.35397, "coord_origin": "TOPLEFT"}}, {"id": 61, "text": "0.843", "bbox": {"l": 396.20599, "t": 405.01147, "r": 417.19632, "b": 416.30017, "coord_origin": "TOPLEFT"}}, {"id": 62, "text": "3.77", "bbox": {"l": 440.767, "t": 405.01147, "r": 457.15039, "b": 416.30017, "coord_origin": "TOPLEFT"}}, {"id": 63, "text": "2", "bbox": {"l": 161.90601, "t": 423.84048, "r": 166.51474, "b": 435.12918, "coord_origin": "TOPLEFT"}}, {"id": 64, "text": "4", "bbox": {"l": 209.509, "t": 423.84048, "r": 214.11774, "b": 435.12918, "coord_origin": "TOPLEFT"}}, {"id": 65, "text": "OTSL", "bbox": {"l": 246.71000999999998, "t": 418.3614799999999, "r": 271.41064, "b": 429.65018, "coord_origin": "TOPLEFT"}}, {"id": 66, "text": "0.923", "bbox": {"l": 289.017, "t": 418.3614799999999, "r": 310.00732, "b": 429.65018, "coord_origin": "TOPLEFT"}}, {"id": 67, "text": "0.897", "bbox": {"l": 326.71701, "t": 418.3614799999999, "r": 347.70734, "b": 429.65018, "coord_origin": "TOPLEFT"}}, {"id": 68, "text": "0.915", "bbox": {"l": 363.67599, "t": 418.3614799999999, "r": 384.66632, "b": 429.65018, "coord_origin": "TOPLEFT"}}, {"id": 69, "text": "0.859", "bbox": {"l": 394.61801, "t": 418.29871, "r": 418.77798, "b": 429.70398, "coord_origin": "TOPLEFT"}}, {"id": 70, "text": "1.91", "bbox": {"l": 439.52701, "t": 418.29871, "r": 458.38336, "b": 429.70398, "coord_origin": "TOPLEFT"}}, {"id": 71, "text": "HTML", "bbox": {"l": 245.17598999999998, "t": 431.31246999999996, "r": 272.94495, "b": 442.60117, "coord_origin": "TOPLEFT"}}, {"id": 72, "text": "0.945", "bbox": {"l": 289.017, "t": 431.31246999999996, "r": 310.00732, "b": 442.60117, "coord_origin": "TOPLEFT"}}, {"id": 73, "text": "0.901", "bbox": {"l": 326.71701, "t": 431.31246999999996, "r": 347.70734, "b": 442.60117, "coord_origin": "TOPLEFT"}}, {"id": 74, "text": "0.931", "bbox": {"l": 362.08801, "t": 431.24969, "r": 386.24799, "b": 442.65497, "coord_origin": "TOPLEFT"}}, {"id": 75, "text": "0.834", "bbox": {"l": 396.20599, "t": 431.31246999999996, "r": 417.19632, "b": 442.60117, "coord_origin": "TOPLEFT"}}, {"id": 76, "text": "3.81", "bbox": {"l": 440.767, "t": 431.31246999999996, "r": 457.15039, "b": 442.60117, "coord_origin": "TOPLEFT"}}, {"id": 77, "text": "4", "bbox": {"l": 161.90601, "t": 450.14248999999995, "r": 166.51474, "b": 461.43118, "coord_origin": "TOPLEFT"}}, {"id": 78, "text": "2", "bbox": {"l": 209.509, "t": 450.14248999999995, "r": 214.11774, "b": 461.43118, "coord_origin": "TOPLEFT"}}, {"id": 79, "text": "OTSL", "bbox": {"l": 246.71000999999998, "t": 444.66248, "r": 271.41064, "b": 455.95117, "coord_origin": "TOPLEFT"}}, {"id": 80, "text": "0.952", "bbox": {"l": 289.017, "t": 444.66248, "r": 310.00732, "b": 455.95117, "coord_origin": "TOPLEFT"}}, {"id": 81, "text": "0.92", "bbox": {"l": 329.021, "t": 444.66248, "r": 345.40439, "b": 455.95117, "coord_origin": "TOPLEFT"}}, {"id": 82, "text": "0.942", "bbox": {"l": 362.08801, "t": 444.5996999999999, "r": 386.24799, "b": 456.00497, "coord_origin": "TOPLEFT"}}, {"id": 83, "text": "0.857", "bbox": {"l": 394.61801, "t": 444.5996999999999, "r": 418.77798, "b": 456.00497, "coord_origin": "TOPLEFT"}}, {"id": 84, "text": "1.22", "bbox": {"l": 439.52701, "t": 444.5996999999999, "r": 458.38336, "b": 456.00497, "coord_origin": "TOPLEFT"}}, {"id": 85, "text": "HTML", "bbox": {"l": 245.17598999999998, "t": 457.61447, "r": 272.94495, "b": 468.90317, "coord_origin": "TOPLEFT"}}, {"id": 86, "text": "0.944", "bbox": {"l": 289.017, "t": 457.61447, "r": 310.00732, "b": 468.90317, "coord_origin": "TOPLEFT"}}, {"id": 87, "text": "0.903", "bbox": {"l": 326.71701, "t": 457.61447, "r": 347.70734, "b": 468.90317, "coord_origin": "TOPLEFT"}}, {"id": 88, "text": "0.931", "bbox": {"l": 363.67599, "t": 457.61447, "r": 384.66632, "b": 468.90317, "coord_origin": "TOPLEFT"}}, {"id": 89, "text": "0.824", "bbox": {"l": 396.20599, "t": 457.61447, "r": 417.19632, "b": 468.90317, "coord_origin": "TOPLEFT"}}, {"id": 90, "text": "2", "bbox": {"l": 446.65302, "t": 457.61447, "r": 451.26175, "b": 468.90317, "coord_origin": "TOPLEFT"}}]}, "text": null, "otsl_seq": ["ched", "ched", "ched", "ched", "lcel", "lcel", "ched", "ched", "nl", "ched", "ched", "ucel", "ched", "ched", "ched", "ched", "ched", "nl", "fcel", "fcel", "fcel", "fcel", "fcel", "fcel", "fcel", "fcel", "nl", "fcel", "fcel", "fcel", "fcel", "fcel", "fcel", "fcel", "fcel", "nl", "fcel", "fcel", "fcel", "fcel", "fcel", "fcel", "fcel", "fcel", "nl", "fcel", "fcel", "fcel", "fcel", "fcel", "fcel", "fcel", "fcel", "nl", "fcel", "fcel", "fcel", "fcel", "fcel", "fcel", "fcel", "fcel", "nl"], "num_rows": 7, "num_cols": 8, "table_cells": [{"bbox": {"l": 160.37, "t": 339.45749, "r": 168.04523, "b": 350.74619, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "#", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 144.592, "t": 352.40848, "r": 183.82895, "b": 363.69717, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "enc-layers", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 207.974, "t": 339.45749, "r": 215.64923000000002, "b": 350.74619, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "#", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 192.19501, "t": 352.40848, "r": 231.42303, "b": 363.69717, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "dec-layers", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 239.79799999999997, "t": 344.93649, "r": 278.3338, "b": 356.22519000000005, "coord_origin": "TOPLEFT"}, "row_span": 2, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 2, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "Language", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 324.67001, "t": 339.45749, "r": 348.26419, "b": 350.74619, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 3, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 3, "end_col_offset_idx": 6, "text": "TEDs", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 396.271, "t": 339.45749, "r": 417.12595, "b": 350.74619, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 6, "end_col_offset_idx": 7, "text": "mAP", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 394.927, "t": 350.41647, "r": 418.46921, "b": 361.70517, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 6, "end_col_offset_idx": 7, "text": "(0.75)", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 430.771, "t": 339.45749, "r": 467.14142000000004, "b": 350.74619, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 7, "end_col_offset_idx": 8, "text": "Inference", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 427.14801, "t": 350.41647, "r": 470.76955999999996, "b": 361.70517, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 7, "end_col_offset_idx": 8, "text": "time (secs)", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 286.686, "t": 352.40848, "r": 312.32812, "b": 363.69717, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "simple", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 320.702, "t": 352.40848, "r": 353.71539, "b": 363.69717, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 4, "end_col_offset_idx": 5, "text": "complex", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 369.306, "t": 352.40848, "r": 379.02914, "b": 363.69717, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 5, "end_col_offset_idx": 6, "text": "all", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 161.90601, "t": 371.23849, "r": 166.51474, "b": 382.52719, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "6", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 209.509, "t": 371.23849, "r": 214.11774, "b": 382.52719, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "6", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 245.17598999999998, "t": 365.75848, "r": 272.94495, "b": 389.99917999999997, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "OTSL HTML", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 289.017, "t": 365.75848, "r": 310.00732, "b": 389.99917999999997, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "0.965 0.969", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 326.71701, "t": 365.75848, "r": 347.70734, "b": 389.99917999999997, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 4, "end_col_offset_idx": 5, "text": "0.934 0.927", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 363.67599, "t": 365.75848, "r": 384.66632, "b": 389.99917999999997, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 5, "end_col_offset_idx": 6, "text": "0.955 0.955", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 396.20599, "t": 365.69571, "r": 417.19632, "b": 389.99917999999997, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 6, "end_col_offset_idx": 7, "text": "0.88 0.857", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 439.52701, "t": 365.69571, "r": 458.38336, "b": 389.99917999999997, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 7, "end_col_offset_idx": 8, "text": "2.73 5.39", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 161.90601, "t": 397.53949, "r": 166.51474, "b": 408.82819, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "4", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 209.509, "t": 397.53949, "r": 214.11774, "b": 408.82819, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "4", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 245.17598999999998, "t": 392.06049, "r": 272.94495, "b": 416.30017, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "OTSL HTML", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 289.017, "t": 392.06049, "r": 310.00732, "b": 403.34918, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "0.938", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 326.71701, "t": 392.06049, "r": 347.70734, "b": 403.34918, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 4, "end_col_offset_idx": 5, "text": "0.904", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 363.67599, "t": 392.06049, "r": 384.66632, "b": 403.34918, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 5, "end_col_offset_idx": 6, "text": "0.927", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 394.61801, "t": 391.99771, "r": 418.77798, "b": 403.40298, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 6, "end_col_offset_idx": 7, "text": "0.853", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 439.52701, "t": 391.99771, "r": 458.38336, "b": 403.40298, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 7, "end_col_offset_idx": 8, "text": "1.97", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 289.017, "t": 405.01147, "r": 310.00732, "b": 429.65018, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "0.952 0.923", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 326.71701, "t": 405.01147, "r": 347.70734, "b": 416.30017, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 4, "end_col_offset_idx": 5, "text": "0.909", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 362.08801, "t": 404.9486999999999, "r": 386.24799, "b": 416.35397, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 5, "end_col_offset_idx": 6, "text": "0.938", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 396.20599, "t": 405.01147, "r": 417.19632, "b": 416.30017, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 6, "end_col_offset_idx": 7, "text": "0.843", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 440.767, "t": 405.01147, "r": 457.15039, "b": 416.30017, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 7, "end_col_offset_idx": 8, "text": "3.77", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 161.90601, "t": 423.84048, "r": 166.51474, "b": 435.12918, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "2", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 209.509, "t": 423.84048, "r": 214.11774, "b": 435.12918, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "4", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 246.71000999999998, "t": 418.3614799999999, "r": 271.41064, "b": 429.65018, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "OTSL", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 326.71701, "t": 418.3614799999999, "r": 347.70734, "b": 442.60117, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 4, "end_col_offset_idx": 5, "text": "0.897 0.901", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 362.08801, "t": 418.3614799999999, "r": 386.24799, "b": 442.65497, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 5, "end_col_offset_idx": 6, "text": "0.915 0.931", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 394.61801, "t": 418.29871, "r": 418.77798, "b": 442.60117, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 6, "end_col_offset_idx": 7, "text": "0.859 0.834", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 439.52701, "t": 418.29871, "r": 458.38336, "b": 442.60117, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 7, "end_col_offset_idx": 8, "text": "1.91 3.81", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 245.17598999999998, "t": 431.31246999999996, "r": 272.94495, "b": 442.60117, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "HTML", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 289.017, "t": 431.31246999999996, "r": 310.00732, "b": 442.60117, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "0.945", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 161.90601, "t": 450.14248999999995, "r": 166.51474, "b": 461.43118, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "4", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 209.509, "t": 450.14248999999995, "r": 214.11774, "b": 461.43118, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "2", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 245.17598999999998, "t": 444.66248, "r": 272.94495, "b": 468.90317, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "OTSL HTML", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 289.017, "t": 444.66248, "r": 310.00732, "b": 468.90317, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "0.952 0.944", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 326.71701, "t": 444.66248, "r": 347.70734, "b": 468.90317, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 4, "end_col_offset_idx": 5, "text": "0.92 0.903", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 362.08801, "t": 444.5996999999999, "r": 386.24799, "b": 468.90317, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 5, "end_col_offset_idx": 6, "text": "0.942 0.931", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 394.61801, "t": 444.5996999999999, "r": 418.77798, "b": 468.90317, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 6, "end_col_offset_idx": 7, "text": "0.857 0.824", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 439.52701, "t": 444.5996999999999, "r": 458.38336, "b": 468.90317, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 7, "end_col_offset_idx": 8, "text": "1.22 2", "column_header": false, "row_header": false, "row_section": false}]}, {"label": "section_header", "id": 7, "page_no": 0, "cluster": {"id": 7, "label": "section_header", "bbox": {"l": 134.38507080078125, "t": 505.67111, "r": 264.40829, "b": 518.17419, "coord_origin": "TOPLEFT"}, "confidence": 0.9589294195175171, "cells": [{"id": 91, "text": "5.2", "bbox": {"l": 134.765, "t": 505.67111, "r": 149.40306, "b": 518.17419, "coord_origin": "TOPLEFT"}}, {"id": 92, "text": "Quantitative Results", "bbox": {"l": 160.85905, "t": 505.67111, "r": 264.40829, "b": 518.17419, "coord_origin": "TOPLEFT"}}]}, "text": "5.2 Quantitative Results"}, {"label": "text", "id": 8, "page_no": 0, "cluster": {"id": 8, "label": "text", "bbox": {"l": 133.9154052734375, "t": 522.08005, "r": 480.72003, "b": 618.3, "coord_origin": "TOPLEFT"}, "confidence": 0.9849975109100342, "cells": [{"id": 93, "text": "We picked the model parameter configuration that produced the best prediction", "bbox": {"l": 134.765, "t": 522.08005, "r": 479.72983, "b": 534.61301, "coord_origin": "TOPLEFT"}}, {"id": 94, "text": "quality (enc=6, dec=6, heads=8) with PubTabNet alone, then independently", "bbox": {"l": 134.765, "t": 534.03604, "r": 480.5897499999999, "b": 546.569, "coord_origin": "TOPLEFT"}}, {"id": 95, "text": "trained and evaluated it on three publicly available data sets: PubTabNet (395k", "bbox": {"l": 134.765, "t": 545.99104, "r": 480.72003, "b": 558.524, "coord_origin": "TOPLEFT"}}, {"id": 96, "text": "samples), FinTabNet (113k samples) and PubTables-1M (about 1M samples).", "bbox": {"l": 134.765, "t": 557.94604, "r": 480.60577, "b": 570.479, "coord_origin": "TOPLEFT"}}, {"id": 97, "text": "Performance results are presented in Table. 2. It is clearly evident that the model", "bbox": {"l": 134.765, "t": 569.90103, "r": 480.5936899999999, "b": 582.43399, "coord_origin": "TOPLEFT"}}, {"id": 98, "text": "trained on OTSL outperforms HTML across the board, keeping high TEDs and", "bbox": {"l": 134.765, "t": 581.85603, "r": 480.59158, "b": 594.38899, "coord_origin": "TOPLEFT"}}, {"id": 99, "text": "mAP scores even on difficult financial tables (FinTabNet) that contain sparse", "bbox": {"l": 134.765, "t": 593.81204, "r": 480.58080999999993, "b": 606.345, "coord_origin": "TOPLEFT"}}, {"id": 100, "text": "and large tables.", "bbox": {"l": 134.765, "t": 605.76704, "r": 206.79959, "b": 618.3, "coord_origin": "TOPLEFT"}}]}, "text": "We picked the model parameter configuration that produced the best prediction quality (enc=6, dec=6, heads=8) with PubTabNet alone, then independently trained and evaluated it on three publicly available data sets: PubTabNet (395k samples), FinTabNet (113k samples) and PubTables-1M (about 1M samples). Performance results are presented in Table. 2. It is clearly evident that the model trained on OTSL outperforms HTML across the board, keeping high TEDs and mAP scores even on difficult financial tables (FinTabNet) that contain sparse and large tables."}, {"label": "text", "id": 9, "page_no": 0, "cluster": {"id": 9, "label": "text", "bbox": {"l": 133.861083984375, "t": 617.72205, "r": 480.78125, "b": 666.12, "coord_origin": "TOPLEFT"}, "confidence": 0.9850137829780579, "cells": [{"id": 101, "text": "Additionally, the results show that OTSL has an advantage over HTML", "bbox": {"l": 149.709, "t": 617.72205, "r": 480.59479, "b": 630.255, "coord_origin": "TOPLEFT"}}, {"id": 102, "text": "when applied on a bigger data set like PubTables-1M and achieves significantly", "bbox": {"l": 134.765, "t": 629.6770300000001, "r": 480.59857000000005, "b": 642.2099900000001, "coord_origin": "TOPLEFT"}}, {"id": 103, "text": "improved scores. Finally, OTSL achieves faster inference due to fewer decoding", "bbox": {"l": 134.765, "t": 641.63203, "r": 480.59384000000006, "b": 654.16499, "coord_origin": "TOPLEFT"}}, {"id": 104, "text": "steps which is a result of the reduced sequence representation.", "bbox": {"l": 134.765, "t": 653.58704, "r": 405.7995, "b": 666.12, "coord_origin": "TOPLEFT"}}]}, "text": "Additionally, the results show that OTSL has an advantage over HTML when applied on a bigger data set like PubTables-1M and achieves significantly improved scores. Finally, OTSL achieves faster inference due to fewer decoding steps which is a result of the reduced sequence representation."}], "headers": [{"label": "page_header", "id": 0, "page_no": 0, "cluster": {"id": 0, "label": "page_header", "bbox": {"l": 193.73236083984375, "t": 91.49352999999996, "r": 447.54476999999997, "b": 102.78223000000003, "coord_origin": "TOPLEFT"}, "confidence": 0.9373533725738525, "cells": [{"id": 0, "text": "Optimized Table Tokenization for Table Structure Recognition", "bbox": {"l": 194.478, "t": 91.49352999999996, "r": 447.54476999999997, "b": 102.78223000000003, "coord_origin": "TOPLEFT"}}]}, "text": "Optimized Table Tokenization for Table Structure Recognition"}, {"label": "page_header", "id": 1, "page_no": 0, "cluster": {"id": 1, "label": "page_header", "bbox": {"l": 475.14013671875, "t": 91.49352999999996, "r": 480.59314, "b": 102.78223000000003, "coord_origin": "TOPLEFT"}, "confidence": 0.8858679533004761, "cells": [{"id": 1, "text": "9", "bbox": {"l": 475.98441, "t": 91.49352999999996, "r": 480.59314, "b": 102.78223000000003, "coord_origin": "TOPLEFT"}}]}, "text": "9"}]}}] \ No newline at end of file +[{"page_no": 0, "size": {"width": 612.0, "height": 792.0}, "cells": [{"id": 0, "text": "Optimized Table Tokenization for Table Structure Recognition", "bbox": {"l": 194.478, "t": 91.49352999999996, "r": 447.54476999999997, "b": 102.78223000000003, "coord_origin": "TOPLEFT"}}, {"id": 1, "text": "9", "bbox": {"l": 475.98441, "t": 91.49352999999996, "r": 480.59314, "b": 102.78223000000003, "coord_origin": "TOPLEFT"}}, {"id": 2, "text": "order to compute the TED score. Inference timing results for all experiments", "bbox": {"l": 134.765, "t": 116.46301000000005, "r": 480.59067, "b": 128.99597000000006, "coord_origin": "TOPLEFT"}}, {"id": 3, "text": "were obtained from the same machine on a single core with AMD EPYC 7763", "bbox": {"l": 134.765, "t": 128.41803000000004, "r": 480.59665, "b": 140.95099000000005, "coord_origin": "TOPLEFT"}}, {"id": 4, "text": "CPU @2.45 GHz.", "bbox": {"l": 134.765, "t": 140.37401999999997, "r": 210.78761, "b": 152.90697999999998, "coord_origin": "TOPLEFT"}}, {"id": 5, "text": "5.1", "bbox": {"l": 134.765, "t": 166.70514000000003, "r": 149.40306, "b": 179.20818999999995, "coord_origin": "TOPLEFT"}}, {"id": 6, "text": "Hyper Parameter Optimization", "bbox": {"l": 160.85905, "t": 166.70514000000003, "r": 318.45145, "b": 179.20818999999995, "coord_origin": "TOPLEFT"}}, {"id": 7, "text": "We have chosen the PubTabNet data set to perform HPO, since it includes a", "bbox": {"l": 134.765, "t": 183.11505, "r": 479.74982000000006, "b": 195.64801, "coord_origin": "TOPLEFT"}}, {"id": 8, "text": "highly diverse set of tables. Also we report TED scores separately for simple and", "bbox": {"l": 134.765, "t": 195.07007, "r": 480.58765, "b": 207.60303, "coord_origin": "TOPLEFT"}}, {"id": 9, "text": "complex tables (tables with cell spans). Results are presented in Table. 1. It is", "bbox": {"l": 134.765, "t": 207.02502000000004, "r": 480.58859000000007, "b": 219.55798000000004, "coord_origin": "TOPLEFT"}}, {"id": 10, "text": "evident that with OTSL, our model achieves the same TED score and slightly", "bbox": {"l": 134.765, "t": 218.98004000000003, "r": 480.59567, "b": 231.51300000000003, "coord_origin": "TOPLEFT"}}, {"id": 11, "text": "better mAP scores in comparison to HTML. However OTSL yields a", "bbox": {"l": 134.765, "t": 230.93506000000002, "r": 440.9425, "b": 243.46802000000002, "coord_origin": "TOPLEFT"}}, {"id": 12, "text": "2x speed", "bbox": {"l": 444.86800999999997, "t": 230.98486000000003, "r": 480.58792, "b": 243.46802000000002, "coord_origin": "TOPLEFT"}}, {"id": 13, "text": "up", "bbox": {"l": 134.765, "t": 242.94086000000004, "r": 145.19585, "b": 255.42400999999995, "coord_origin": "TOPLEFT"}}, {"id": 14, "text": "in the inference runtime over HTML.", "bbox": {"l": 149.149, "t": 242.89104999999995, "r": 311.22256, "b": 255.42400999999995, "coord_origin": "TOPLEFT"}}, {"id": 15, "text": "Table", "bbox": {"l": 134.765, "t": 272.79474000000005, "r": 159.22983, "b": 284.1999799999999, "coord_origin": "TOPLEFT"}}, {"id": 16, "text": "1.", "bbox": {"l": 167.34442, "t": 272.79474000000005, "r": 174.71301, "b": 284.1999799999999, "coord_origin": "TOPLEFT"}}, {"id": 17, "text": "HPO performed in OTSL and HTML representation on the same", "bbox": {"l": 188.133, "t": 272.85748, "r": 480.58101999999997, "b": 284.14618, "coord_origin": "TOPLEFT"}}, {"id": 18, "text": "transformer-based TableFormer [9] architecture, trained only on PubTabNet [22]. Ef-", "bbox": {"l": 134.765, "t": 283.81647, "r": 480.59890999999993, "b": 295.10516000000007, "coord_origin": "TOPLEFT"}}, {"id": 19, "text": "fects of reducing the # of layers in encoder and decoder stages of the model show that", "bbox": {"l": 134.765, "t": 294.77547999999996, "r": 480.59887999999995, "b": 306.06418, "coord_origin": "TOPLEFT"}}, {"id": 20, "text": "smaller models trained on OTSL perform better, especially in recognizing complex", "bbox": {"l": 134.765, "t": 305.73447, "r": 480.59180000000003, "b": 317.02316, "coord_origin": "TOPLEFT"}}, {"id": 21, "text": "table structures, and maintain a much higher mAP score than the HTML counterpart.", "bbox": {"l": 134.765, "t": 316.69348, "r": 480.58471999999995, "b": 327.98218, "coord_origin": "TOPLEFT"}}, {"id": 22, "text": "#", "bbox": {"l": 160.37, "t": 339.45749, "r": 168.04523, "b": 350.74619, "coord_origin": "TOPLEFT"}}, {"id": 23, "text": "enc-layers", "bbox": {"l": 144.592, "t": 352.40848, "r": 183.82895, "b": 363.69717, "coord_origin": "TOPLEFT"}}, {"id": 24, "text": "#", "bbox": {"l": 207.974, "t": 339.45749, "r": 215.64923000000002, "b": 350.74619, "coord_origin": "TOPLEFT"}}, {"id": 25, "text": "dec-layers", "bbox": {"l": 192.19501, "t": 352.40848, "r": 231.42303, "b": 363.69717, "coord_origin": "TOPLEFT"}}, {"id": 26, "text": "Language", "bbox": {"l": 239.79799999999997, "t": 344.93649, "r": 278.3338, "b": 356.22519000000005, "coord_origin": "TOPLEFT"}}, {"id": 27, "text": "TEDs", "bbox": {"l": 324.67001, "t": 339.45749, "r": 348.26419, "b": 350.74619, "coord_origin": "TOPLEFT"}}, {"id": 28, "text": "mAP", "bbox": {"l": 396.271, "t": 339.45749, "r": 417.12595, "b": 350.74619, "coord_origin": "TOPLEFT"}}, {"id": 29, "text": "(0.75)", "bbox": {"l": 394.927, "t": 350.41647, "r": 418.46921, "b": 361.70517, "coord_origin": "TOPLEFT"}}, {"id": 30, "text": "Inference", "bbox": {"l": 430.771, "t": 339.45749, "r": 467.14142000000004, "b": 350.74619, "coord_origin": "TOPLEFT"}}, {"id": 31, "text": "time (secs)", "bbox": {"l": 427.14801, "t": 350.41647, "r": 470.76955999999996, "b": 361.70517, "coord_origin": "TOPLEFT"}}, {"id": 32, "text": "simple", "bbox": {"l": 286.686, "t": 352.40848, "r": 312.32812, "b": 363.69717, "coord_origin": "TOPLEFT"}}, {"id": 33, "text": "complex", "bbox": {"l": 320.702, "t": 352.40848, "r": 353.71539, "b": 363.69717, "coord_origin": "TOPLEFT"}}, {"id": 34, "text": "all", "bbox": {"l": 369.306, "t": 352.40848, "r": 379.02914, "b": 363.69717, "coord_origin": "TOPLEFT"}}, {"id": 35, "text": "6", "bbox": {"l": 161.90601, "t": 371.23849, "r": 166.51474, "b": 382.52719, "coord_origin": "TOPLEFT"}}, {"id": 36, "text": "6", "bbox": {"l": 209.509, "t": 371.23849, "r": 214.11774, "b": 382.52719, "coord_origin": "TOPLEFT"}}, {"id": 37, "text": "OTSL", "bbox": {"l": 246.71000999999998, "t": 365.75848, "r": 271.41064, "b": 377.04717999999997, "coord_origin": "TOPLEFT"}}, {"id": 38, "text": "0.965", "bbox": {"l": 289.017, "t": 365.75848, "r": 310.00732, "b": 377.04717999999997, "coord_origin": "TOPLEFT"}}, {"id": 39, "text": "0.934", "bbox": {"l": 326.71701, "t": 365.75848, "r": 347.70734, "b": 377.04717999999997, "coord_origin": "TOPLEFT"}}, {"id": 40, "text": "0.955", "bbox": {"l": 363.67599, "t": 365.75848, "r": 384.66632, "b": 377.04717999999997, "coord_origin": "TOPLEFT"}}, {"id": 41, "text": "0.88", "bbox": {"l": 397.26999, "t": 365.69571, "r": 416.12634, "b": 377.10098000000005, "coord_origin": "TOPLEFT"}}, {"id": 42, "text": "2.73", "bbox": {"l": 439.52701, "t": 365.69571, "r": 458.38336, "b": 377.10098000000005, "coord_origin": "TOPLEFT"}}, {"id": 43, "text": "HTML", "bbox": {"l": 245.17598999999998, "t": 378.71048, "r": 272.94495, "b": 389.99917999999997, "coord_origin": "TOPLEFT"}}, {"id": 44, "text": "0.969", "bbox": {"l": 289.017, "t": 378.71048, "r": 310.00732, "b": 389.99917999999997, "coord_origin": "TOPLEFT"}}, {"id": 45, "text": "0.927", "bbox": {"l": 326.71701, "t": 378.71048, "r": 347.70734, "b": 389.99917999999997, "coord_origin": "TOPLEFT"}}, {"id": 46, "text": "0.955", "bbox": {"l": 363.67599, "t": 378.71048, "r": 384.66632, "b": 389.99917999999997, "coord_origin": "TOPLEFT"}}, {"id": 47, "text": "0.857", "bbox": {"l": 396.20599, "t": 378.71048, "r": 417.19632, "b": 389.99917999999997, "coord_origin": "TOPLEFT"}}, {"id": 48, "text": "5.39", "bbox": {"l": 440.767, "t": 378.71048, "r": 457.15039, "b": 389.99917999999997, "coord_origin": "TOPLEFT"}}, {"id": 49, "text": "4", "bbox": {"l": 161.90601, "t": 397.53949, "r": 166.51474, "b": 408.82819, "coord_origin": "TOPLEFT"}}, {"id": 50, "text": "4", "bbox": {"l": 209.509, "t": 397.53949, "r": 214.11774, "b": 408.82819, "coord_origin": "TOPLEFT"}}, {"id": 51, "text": "OTSL", "bbox": {"l": 246.71000999999998, "t": 392.06049, "r": 271.41064, "b": 403.34918, "coord_origin": "TOPLEFT"}}, {"id": 52, "text": "0.938", "bbox": {"l": 289.017, "t": 392.06049, "r": 310.00732, "b": 403.34918, "coord_origin": "TOPLEFT"}}, {"id": 53, "text": "0.904", "bbox": {"l": 326.71701, "t": 392.06049, "r": 347.70734, "b": 403.34918, "coord_origin": "TOPLEFT"}}, {"id": 54, "text": "0.927", "bbox": {"l": 363.67599, "t": 392.06049, "r": 384.66632, "b": 403.34918, "coord_origin": "TOPLEFT"}}, {"id": 55, "text": "0.853", "bbox": {"l": 394.61801, "t": 391.99771, "r": 418.77798, "b": 403.40298, "coord_origin": "TOPLEFT"}}, {"id": 56, "text": "1.97", "bbox": {"l": 439.52701, "t": 391.99771, "r": 458.38336, "b": 403.40298, "coord_origin": "TOPLEFT"}}, {"id": 57, "text": "HTML", "bbox": {"l": 245.17598999999998, "t": 405.01147, "r": 272.94495, "b": 416.30017, "coord_origin": "TOPLEFT"}}, {"id": 58, "text": "0.952", "bbox": {"l": 289.017, "t": 405.01147, "r": 310.00732, "b": 416.30017, "coord_origin": "TOPLEFT"}}, {"id": 59, "text": "0.909", "bbox": {"l": 326.71701, "t": 405.01147, "r": 347.70734, "b": 416.30017, "coord_origin": "TOPLEFT"}}, {"id": 60, "text": "0.938", "bbox": {"l": 362.08801, "t": 404.9486999999999, "r": 386.24799, "b": 416.35397, "coord_origin": "TOPLEFT"}}, {"id": 61, "text": "0.843", "bbox": {"l": 396.20599, "t": 405.01147, "r": 417.19632, "b": 416.30017, "coord_origin": "TOPLEFT"}}, {"id": 62, "text": "3.77", "bbox": {"l": 440.767, "t": 405.01147, "r": 457.15039, "b": 416.30017, "coord_origin": "TOPLEFT"}}, {"id": 63, "text": "2", "bbox": {"l": 161.90601, "t": 423.84048, "r": 166.51474, "b": 435.12918, "coord_origin": "TOPLEFT"}}, {"id": 64, "text": "4", "bbox": {"l": 209.509, "t": 423.84048, "r": 214.11774, "b": 435.12918, "coord_origin": "TOPLEFT"}}, {"id": 65, "text": "OTSL", "bbox": {"l": 246.71000999999998, "t": 418.3614799999999, "r": 271.41064, "b": 429.65018, "coord_origin": "TOPLEFT"}}, {"id": 66, "text": "0.923", "bbox": {"l": 289.017, "t": 418.3614799999999, "r": 310.00732, "b": 429.65018, "coord_origin": "TOPLEFT"}}, {"id": 67, "text": "0.897", "bbox": {"l": 326.71701, "t": 418.3614799999999, "r": 347.70734, "b": 429.65018, "coord_origin": "TOPLEFT"}}, {"id": 68, "text": "0.915", "bbox": {"l": 363.67599, "t": 418.3614799999999, "r": 384.66632, "b": 429.65018, "coord_origin": "TOPLEFT"}}, {"id": 69, "text": "0.859", "bbox": {"l": 394.61801, "t": 418.29871, "r": 418.77798, "b": 429.70398, "coord_origin": "TOPLEFT"}}, {"id": 70, "text": "1.91", "bbox": {"l": 439.52701, "t": 418.29871, "r": 458.38336, "b": 429.70398, "coord_origin": "TOPLEFT"}}, {"id": 71, "text": "HTML", "bbox": {"l": 245.17598999999998, "t": 431.31246999999996, "r": 272.94495, "b": 442.60117, "coord_origin": "TOPLEFT"}}, {"id": 72, "text": "0.945", "bbox": {"l": 289.017, "t": 431.31246999999996, "r": 310.00732, "b": 442.60117, "coord_origin": "TOPLEFT"}}, {"id": 73, "text": "0.901", "bbox": {"l": 326.71701, "t": 431.31246999999996, "r": 347.70734, "b": 442.60117, "coord_origin": "TOPLEFT"}}, {"id": 74, "text": "0.931", "bbox": {"l": 362.08801, "t": 431.24969, "r": 386.24799, "b": 442.65497, "coord_origin": "TOPLEFT"}}, {"id": 75, "text": "0.834", "bbox": {"l": 396.20599, "t": 431.31246999999996, "r": 417.19632, "b": 442.60117, "coord_origin": "TOPLEFT"}}, {"id": 76, "text": "3.81", "bbox": {"l": 440.767, "t": 431.31246999999996, "r": 457.15039, "b": 442.60117, "coord_origin": "TOPLEFT"}}, {"id": 77, "text": "4", "bbox": {"l": 161.90601, "t": 450.14248999999995, "r": 166.51474, "b": 461.43118, "coord_origin": "TOPLEFT"}}, {"id": 78, "text": "2", "bbox": {"l": 209.509, "t": 450.14248999999995, "r": 214.11774, "b": 461.43118, "coord_origin": "TOPLEFT"}}, {"id": 79, "text": "OTSL", "bbox": {"l": 246.71000999999998, "t": 444.66248, "r": 271.41064, "b": 455.95117, "coord_origin": "TOPLEFT"}}, {"id": 80, "text": "0.952", "bbox": {"l": 289.017, "t": 444.66248, "r": 310.00732, "b": 455.95117, "coord_origin": "TOPLEFT"}}, {"id": 81, "text": "0.92", "bbox": {"l": 329.021, "t": 444.66248, "r": 345.40439, "b": 455.95117, "coord_origin": "TOPLEFT"}}, {"id": 82, "text": "0.942", "bbox": {"l": 362.08801, "t": 444.5996999999999, "r": 386.24799, "b": 456.00497, "coord_origin": "TOPLEFT"}}, {"id": 83, "text": "0.857", "bbox": {"l": 394.61801, "t": 444.5996999999999, "r": 418.77798, "b": 456.00497, "coord_origin": "TOPLEFT"}}, {"id": 84, "text": "1.22", "bbox": {"l": 439.52701, "t": 444.5996999999999, "r": 458.38336, "b": 456.00497, "coord_origin": "TOPLEFT"}}, {"id": 85, "text": "HTML", "bbox": {"l": 245.17598999999998, "t": 457.61447, "r": 272.94495, "b": 468.90317, "coord_origin": "TOPLEFT"}}, {"id": 86, "text": "0.944", "bbox": {"l": 289.017, "t": 457.61447, "r": 310.00732, "b": 468.90317, "coord_origin": "TOPLEFT"}}, {"id": 87, "text": "0.903", "bbox": {"l": 326.71701, "t": 457.61447, "r": 347.70734, "b": 468.90317, "coord_origin": "TOPLEFT"}}, {"id": 88, "text": "0.931", "bbox": {"l": 363.67599, "t": 457.61447, "r": 384.66632, "b": 468.90317, "coord_origin": "TOPLEFT"}}, {"id": 89, "text": "0.824", "bbox": {"l": 396.20599, "t": 457.61447, "r": 417.19632, "b": 468.90317, "coord_origin": "TOPLEFT"}}, {"id": 90, "text": "2", "bbox": {"l": 446.65302, "t": 457.61447, "r": 451.26175, "b": 468.90317, "coord_origin": "TOPLEFT"}}, {"id": 91, "text": "5.2", "bbox": {"l": 134.765, "t": 505.67111, "r": 149.40306, "b": 518.17419, "coord_origin": "TOPLEFT"}}, {"id": 92, "text": "Quantitative Results", "bbox": {"l": 160.85905, "t": 505.67111, "r": 264.40829, "b": 518.17419, "coord_origin": "TOPLEFT"}}, {"id": 93, "text": "We picked the model parameter configuration that produced the best prediction", "bbox": {"l": 134.765, "t": 522.08005, "r": 479.72983, "b": 534.61301, "coord_origin": "TOPLEFT"}}, {"id": 94, "text": "quality (enc=6, dec=6, heads=8) with PubTabNet alone, then independently", "bbox": {"l": 134.765, "t": 534.03604, "r": 480.5897499999999, "b": 546.569, "coord_origin": "TOPLEFT"}}, {"id": 95, "text": "trained and evaluated it on three publicly available data sets: PubTabNet (395k", "bbox": {"l": 134.765, "t": 545.99104, "r": 480.72003, "b": 558.524, "coord_origin": "TOPLEFT"}}, {"id": 96, "text": "samples), FinTabNet (113k samples) and PubTables-1M (about 1M samples).", "bbox": {"l": 134.765, "t": 557.94604, "r": 480.60577, "b": 570.479, "coord_origin": "TOPLEFT"}}, {"id": 97, "text": "Performance results are presented in Table. 2. It is clearly evident that the model", "bbox": {"l": 134.765, "t": 569.90103, "r": 480.5936899999999, "b": 582.43399, "coord_origin": "TOPLEFT"}}, {"id": 98, "text": "trained on OTSL outperforms HTML across the board, keeping high TEDs and", "bbox": {"l": 134.765, "t": 581.85603, "r": 480.59158, "b": 594.38899, "coord_origin": "TOPLEFT"}}, {"id": 99, "text": "mAP scores even on difficult financial tables (FinTabNet) that contain sparse", "bbox": {"l": 134.765, "t": 593.81204, "r": 480.58080999999993, "b": 606.345, "coord_origin": "TOPLEFT"}}, {"id": 100, "text": "and large tables.", "bbox": {"l": 134.765, "t": 605.76704, "r": 206.79959, "b": 618.3, "coord_origin": "TOPLEFT"}}, {"id": 101, "text": "Additionally, the results show that OTSL has an advantage over HTML", "bbox": {"l": 149.709, "t": 617.72205, "r": 480.59479, "b": 630.255, "coord_origin": "TOPLEFT"}}, {"id": 102, "text": "when applied on a bigger data set like PubTables-1M and achieves significantly", "bbox": {"l": 134.765, "t": 629.6770300000001, "r": 480.59857000000005, "b": 642.2099900000001, "coord_origin": "TOPLEFT"}}, {"id": 103, "text": "improved scores. Finally, OTSL achieves faster inference due to fewer decoding", "bbox": {"l": 134.765, "t": 641.63203, "r": 480.59384000000006, "b": 654.16499, "coord_origin": "TOPLEFT"}}, {"id": 104, "text": "steps which is a result of the reduced sequence representation.", "bbox": {"l": 134.765, "t": 653.58704, "r": 405.7995, "b": 666.12, "coord_origin": "TOPLEFT"}}], "predictions": {"layout": {"clusters": [{"id": 0, "label": "page_header", "bbox": {"l": 193.7325897216797, "t": 91.49352999999996, "r": 447.54476999999997, "b": 102.78223000000003, "coord_origin": "TOPLEFT"}, "confidence": 0.9373533129692078, "cells": [{"id": 0, "text": "Optimized Table Tokenization for Table Structure Recognition", "bbox": {"l": 194.478, "t": 91.49352999999996, "r": 447.54476999999997, "b": 102.78223000000003, "coord_origin": "TOPLEFT"}}]}, {"id": 1, "label": "page_header", "bbox": {"l": 475.14013671875, "t": 91.49352999999996, "r": 480.59314, "b": 102.78223000000003, "coord_origin": "TOPLEFT"}, "confidence": 0.8858674764633179, "cells": [{"id": 1, "text": "9", "bbox": {"l": 475.98441, "t": 91.49352999999996, "r": 480.59314, "b": 102.78223000000003, "coord_origin": "TOPLEFT"}}]}, {"id": 2, "label": "text", "bbox": {"l": 133.9616241455078, "t": 116.46301000000005, "r": 480.61419677734375, "b": 152.90697999999998, "coord_origin": "TOPLEFT"}, "confidence": 0.9806433916091919, "cells": [{"id": 2, "text": "order to compute the TED score. Inference timing results for all experiments", "bbox": {"l": 134.765, "t": 116.46301000000005, "r": 480.59067, "b": 128.99597000000006, "coord_origin": "TOPLEFT"}}, {"id": 3, "text": "were obtained from the same machine on a single core with AMD EPYC 7763", "bbox": {"l": 134.765, "t": 128.41803000000004, "r": 480.59665, "b": 140.95099000000005, "coord_origin": "TOPLEFT"}}, {"id": 4, "text": "CPU @2.45 GHz.", "bbox": {"l": 134.765, "t": 140.37401999999997, "r": 210.78761, "b": 152.90697999999998, "coord_origin": "TOPLEFT"}}]}, {"id": 3, "label": "section_header", "bbox": {"l": 134.31333923339844, "t": 166.70514000000003, "r": 318.45145, "b": 179.20818999999995, "coord_origin": "TOPLEFT"}, "confidence": 0.9577404260635376, "cells": [{"id": 5, "text": "5.1", "bbox": {"l": 134.765, "t": 166.70514000000003, "r": 149.40306, "b": 179.20818999999995, "coord_origin": "TOPLEFT"}}, {"id": 6, "text": "Hyper Parameter Optimization", "bbox": {"l": 160.85905, "t": 166.70514000000003, "r": 318.45145, "b": 179.20818999999995, "coord_origin": "TOPLEFT"}}]}, {"id": 4, "label": "text", "bbox": {"l": 133.96910095214844, "t": 183.11505, "r": 481.3177185058594, "b": 255.42400999999995, "coord_origin": "TOPLEFT"}, "confidence": 0.98504239320755, "cells": [{"id": 7, "text": "We have chosen the PubTabNet data set to perform HPO, since it includes a", "bbox": {"l": 134.765, "t": 183.11505, "r": 479.74982000000006, "b": 195.64801, "coord_origin": "TOPLEFT"}}, {"id": 8, "text": "highly diverse set of tables. Also we report TED scores separately for simple and", "bbox": {"l": 134.765, "t": 195.07007, "r": 480.58765, "b": 207.60303, "coord_origin": "TOPLEFT"}}, {"id": 9, "text": "complex tables (tables with cell spans). Results are presented in Table. 1. It is", "bbox": {"l": 134.765, "t": 207.02502000000004, "r": 480.58859000000007, "b": 219.55798000000004, "coord_origin": "TOPLEFT"}}, {"id": 10, "text": "evident that with OTSL, our model achieves the same TED score and slightly", "bbox": {"l": 134.765, "t": 218.98004000000003, "r": 480.59567, "b": 231.51300000000003, "coord_origin": "TOPLEFT"}}, {"id": 11, "text": "better mAP scores in comparison to HTML. However OTSL yields a", "bbox": {"l": 134.765, "t": 230.93506000000002, "r": 440.9425, "b": 243.46802000000002, "coord_origin": "TOPLEFT"}}, {"id": 12, "text": "2x speed", "bbox": {"l": 444.86800999999997, "t": 230.98486000000003, "r": 480.58792, "b": 243.46802000000002, "coord_origin": "TOPLEFT"}}, {"id": 13, "text": "up", "bbox": {"l": 134.765, "t": 242.94086000000004, "r": 145.19585, "b": 255.42400999999995, "coord_origin": "TOPLEFT"}}, {"id": 14, "text": "in the inference runtime over HTML.", "bbox": {"l": 149.149, "t": 242.89104999999995, "r": 311.22256, "b": 255.42400999999995, "coord_origin": "TOPLEFT"}}]}, {"id": 5, "label": "caption", "bbox": {"l": 134.0642547607422, "t": 272.79474000000005, "r": 480.59890999999993, "b": 327.98218, "coord_origin": "TOPLEFT"}, "confidence": 0.9591909050941467, "cells": [{"id": 15, "text": "Table", "bbox": {"l": 134.765, "t": 272.79474000000005, "r": 159.22983, "b": 284.1999799999999, "coord_origin": "TOPLEFT"}}, {"id": 16, "text": "1.", "bbox": {"l": 167.34442, "t": 272.79474000000005, "r": 174.71301, "b": 284.1999799999999, "coord_origin": "TOPLEFT"}}, {"id": 17, "text": "HPO performed in OTSL and HTML representation on the same", "bbox": {"l": 188.133, "t": 272.85748, "r": 480.58101999999997, "b": 284.14618, "coord_origin": "TOPLEFT"}}, {"id": 18, "text": "transformer-based TableFormer [9] architecture, trained only on PubTabNet [22]. Ef-", "bbox": {"l": 134.765, "t": 283.81647, "r": 480.59890999999993, "b": 295.10516000000007, "coord_origin": "TOPLEFT"}}, {"id": 19, "text": "fects of reducing the # of layers in encoder and decoder stages of the model show that", "bbox": {"l": 134.765, "t": 294.77547999999996, "r": 480.59887999999995, "b": 306.06418, "coord_origin": "TOPLEFT"}}, {"id": 20, "text": "smaller models trained on OTSL perform better, especially in recognizing complex", "bbox": {"l": 134.765, "t": 305.73447, "r": 480.59180000000003, "b": 317.02316, "coord_origin": "TOPLEFT"}}, {"id": 21, "text": "table structures, and maintain a much higher mAP score than the HTML counterpart.", "bbox": {"l": 134.765, "t": 316.69348, "r": 480.58471999999995, "b": 327.98218, "coord_origin": "TOPLEFT"}}]}, {"id": 6, "label": "table", "bbox": {"l": 139.66741943359375, "t": 337.54541015625, "r": 475.00927734375, "b": 469.4945373535156, "coord_origin": "TOPLEFT"}, "confidence": 0.9901031255722046, "cells": [{"id": 22, "text": "#", "bbox": {"l": 160.37, "t": 339.45749, "r": 168.04523, "b": 350.74619, "coord_origin": "TOPLEFT"}}, {"id": 23, "text": "enc-layers", "bbox": {"l": 144.592, "t": 352.40848, "r": 183.82895, "b": 363.69717, "coord_origin": "TOPLEFT"}}, {"id": 24, "text": "#", "bbox": {"l": 207.974, "t": 339.45749, "r": 215.64923000000002, "b": 350.74619, "coord_origin": "TOPLEFT"}}, {"id": 25, "text": "dec-layers", "bbox": {"l": 192.19501, "t": 352.40848, "r": 231.42303, "b": 363.69717, "coord_origin": "TOPLEFT"}}, {"id": 26, "text": "Language", "bbox": {"l": 239.79799999999997, "t": 344.93649, "r": 278.3338, "b": 356.22519000000005, "coord_origin": "TOPLEFT"}}, {"id": 27, "text": "TEDs", "bbox": {"l": 324.67001, "t": 339.45749, "r": 348.26419, "b": 350.74619, "coord_origin": "TOPLEFT"}}, {"id": 28, "text": "mAP", "bbox": {"l": 396.271, "t": 339.45749, "r": 417.12595, "b": 350.74619, "coord_origin": "TOPLEFT"}}, {"id": 29, "text": "(0.75)", "bbox": {"l": 394.927, "t": 350.41647, "r": 418.46921, "b": 361.70517, "coord_origin": "TOPLEFT"}}, {"id": 30, "text": "Inference", "bbox": {"l": 430.771, "t": 339.45749, "r": 467.14142000000004, "b": 350.74619, "coord_origin": "TOPLEFT"}}, {"id": 31, "text": "time (secs)", "bbox": {"l": 427.14801, "t": 350.41647, "r": 470.76955999999996, "b": 361.70517, "coord_origin": "TOPLEFT"}}, {"id": 32, "text": "simple", "bbox": {"l": 286.686, "t": 352.40848, "r": 312.32812, "b": 363.69717, "coord_origin": "TOPLEFT"}}, {"id": 33, "text": "complex", "bbox": {"l": 320.702, "t": 352.40848, "r": 353.71539, "b": 363.69717, "coord_origin": "TOPLEFT"}}, {"id": 34, "text": "all", "bbox": {"l": 369.306, "t": 352.40848, "r": 379.02914, "b": 363.69717, "coord_origin": "TOPLEFT"}}, {"id": 35, "text": "6", "bbox": {"l": 161.90601, "t": 371.23849, "r": 166.51474, "b": 382.52719, "coord_origin": "TOPLEFT"}}, {"id": 36, "text": "6", "bbox": {"l": 209.509, "t": 371.23849, "r": 214.11774, "b": 382.52719, "coord_origin": "TOPLEFT"}}, {"id": 37, "text": "OTSL", "bbox": {"l": 246.71000999999998, "t": 365.75848, "r": 271.41064, "b": 377.04717999999997, "coord_origin": "TOPLEFT"}}, {"id": 38, "text": "0.965", "bbox": {"l": 289.017, "t": 365.75848, "r": 310.00732, "b": 377.04717999999997, "coord_origin": "TOPLEFT"}}, {"id": 39, "text": "0.934", "bbox": {"l": 326.71701, "t": 365.75848, "r": 347.70734, "b": 377.04717999999997, "coord_origin": "TOPLEFT"}}, {"id": 40, "text": "0.955", "bbox": {"l": 363.67599, "t": 365.75848, "r": 384.66632, "b": 377.04717999999997, "coord_origin": "TOPLEFT"}}, {"id": 41, "text": "0.88", "bbox": {"l": 397.26999, "t": 365.69571, "r": 416.12634, "b": 377.10098000000005, "coord_origin": "TOPLEFT"}}, {"id": 42, "text": "2.73", "bbox": {"l": 439.52701, "t": 365.69571, "r": 458.38336, "b": 377.10098000000005, "coord_origin": "TOPLEFT"}}, {"id": 43, "text": "HTML", "bbox": {"l": 245.17598999999998, "t": 378.71048, "r": 272.94495, "b": 389.99917999999997, "coord_origin": "TOPLEFT"}}, {"id": 44, "text": "0.969", "bbox": {"l": 289.017, "t": 378.71048, "r": 310.00732, "b": 389.99917999999997, "coord_origin": "TOPLEFT"}}, {"id": 45, "text": "0.927", "bbox": {"l": 326.71701, "t": 378.71048, "r": 347.70734, "b": 389.99917999999997, "coord_origin": "TOPLEFT"}}, {"id": 46, "text": "0.955", "bbox": {"l": 363.67599, "t": 378.71048, "r": 384.66632, "b": 389.99917999999997, "coord_origin": "TOPLEFT"}}, {"id": 47, "text": "0.857", "bbox": {"l": 396.20599, "t": 378.71048, "r": 417.19632, "b": 389.99917999999997, "coord_origin": "TOPLEFT"}}, {"id": 48, "text": "5.39", "bbox": {"l": 440.767, "t": 378.71048, "r": 457.15039, "b": 389.99917999999997, "coord_origin": "TOPLEFT"}}, {"id": 49, "text": "4", "bbox": {"l": 161.90601, "t": 397.53949, "r": 166.51474, "b": 408.82819, "coord_origin": "TOPLEFT"}}, {"id": 50, "text": "4", "bbox": {"l": 209.509, "t": 397.53949, "r": 214.11774, "b": 408.82819, "coord_origin": "TOPLEFT"}}, {"id": 51, "text": "OTSL", "bbox": {"l": 246.71000999999998, "t": 392.06049, "r": 271.41064, "b": 403.34918, "coord_origin": "TOPLEFT"}}, {"id": 52, "text": "0.938", "bbox": {"l": 289.017, "t": 392.06049, "r": 310.00732, "b": 403.34918, "coord_origin": "TOPLEFT"}}, {"id": 53, "text": "0.904", "bbox": {"l": 326.71701, "t": 392.06049, "r": 347.70734, "b": 403.34918, "coord_origin": "TOPLEFT"}}, {"id": 54, "text": "0.927", "bbox": {"l": 363.67599, "t": 392.06049, "r": 384.66632, "b": 403.34918, "coord_origin": "TOPLEFT"}}, {"id": 55, "text": "0.853", "bbox": {"l": 394.61801, "t": 391.99771, "r": 418.77798, "b": 403.40298, "coord_origin": "TOPLEFT"}}, {"id": 56, "text": "1.97", "bbox": {"l": 439.52701, "t": 391.99771, "r": 458.38336, "b": 403.40298, "coord_origin": "TOPLEFT"}}, {"id": 57, "text": "HTML", "bbox": {"l": 245.17598999999998, "t": 405.01147, "r": 272.94495, "b": 416.30017, "coord_origin": "TOPLEFT"}}, {"id": 58, "text": "0.952", "bbox": {"l": 289.017, "t": 405.01147, "r": 310.00732, "b": 416.30017, "coord_origin": "TOPLEFT"}}, {"id": 59, "text": "0.909", "bbox": {"l": 326.71701, "t": 405.01147, "r": 347.70734, "b": 416.30017, "coord_origin": "TOPLEFT"}}, {"id": 60, "text": "0.938", "bbox": {"l": 362.08801, "t": 404.9486999999999, "r": 386.24799, "b": 416.35397, "coord_origin": "TOPLEFT"}}, {"id": 61, "text": "0.843", "bbox": {"l": 396.20599, "t": 405.01147, "r": 417.19632, "b": 416.30017, "coord_origin": "TOPLEFT"}}, {"id": 62, "text": "3.77", "bbox": {"l": 440.767, "t": 405.01147, "r": 457.15039, "b": 416.30017, "coord_origin": "TOPLEFT"}}, {"id": 63, "text": "2", "bbox": {"l": 161.90601, "t": 423.84048, "r": 166.51474, "b": 435.12918, "coord_origin": "TOPLEFT"}}, {"id": 64, "text": "4", "bbox": {"l": 209.509, "t": 423.84048, "r": 214.11774, "b": 435.12918, "coord_origin": "TOPLEFT"}}, {"id": 65, "text": "OTSL", "bbox": {"l": 246.71000999999998, "t": 418.3614799999999, "r": 271.41064, "b": 429.65018, "coord_origin": "TOPLEFT"}}, {"id": 66, "text": "0.923", "bbox": {"l": 289.017, "t": 418.3614799999999, "r": 310.00732, "b": 429.65018, "coord_origin": "TOPLEFT"}}, {"id": 67, "text": "0.897", "bbox": {"l": 326.71701, "t": 418.3614799999999, "r": 347.70734, "b": 429.65018, "coord_origin": "TOPLEFT"}}, {"id": 68, "text": "0.915", "bbox": {"l": 363.67599, "t": 418.3614799999999, "r": 384.66632, "b": 429.65018, "coord_origin": "TOPLEFT"}}, {"id": 69, "text": "0.859", "bbox": {"l": 394.61801, "t": 418.29871, "r": 418.77798, "b": 429.70398, "coord_origin": "TOPLEFT"}}, {"id": 70, "text": "1.91", "bbox": {"l": 439.52701, "t": 418.29871, "r": 458.38336, "b": 429.70398, "coord_origin": "TOPLEFT"}}, {"id": 71, "text": "HTML", "bbox": {"l": 245.17598999999998, "t": 431.31246999999996, "r": 272.94495, "b": 442.60117, "coord_origin": "TOPLEFT"}}, {"id": 72, "text": "0.945", "bbox": {"l": 289.017, "t": 431.31246999999996, "r": 310.00732, "b": 442.60117, "coord_origin": "TOPLEFT"}}, {"id": 73, "text": "0.901", "bbox": {"l": 326.71701, "t": 431.31246999999996, "r": 347.70734, "b": 442.60117, "coord_origin": "TOPLEFT"}}, {"id": 74, "text": "0.931", "bbox": {"l": 362.08801, "t": 431.24969, "r": 386.24799, "b": 442.65497, "coord_origin": "TOPLEFT"}}, {"id": 75, "text": "0.834", "bbox": {"l": 396.20599, "t": 431.31246999999996, "r": 417.19632, "b": 442.60117, "coord_origin": "TOPLEFT"}}, {"id": 76, "text": "3.81", "bbox": {"l": 440.767, "t": 431.31246999999996, "r": 457.15039, "b": 442.60117, "coord_origin": "TOPLEFT"}}, {"id": 77, "text": "4", "bbox": {"l": 161.90601, "t": 450.14248999999995, "r": 166.51474, "b": 461.43118, "coord_origin": "TOPLEFT"}}, {"id": 78, "text": "2", "bbox": {"l": 209.509, "t": 450.14248999999995, "r": 214.11774, "b": 461.43118, "coord_origin": "TOPLEFT"}}, {"id": 79, "text": "OTSL", "bbox": {"l": 246.71000999999998, "t": 444.66248, "r": 271.41064, "b": 455.95117, "coord_origin": "TOPLEFT"}}, {"id": 80, "text": "0.952", "bbox": {"l": 289.017, "t": 444.66248, "r": 310.00732, "b": 455.95117, "coord_origin": "TOPLEFT"}}, {"id": 81, "text": "0.92", "bbox": {"l": 329.021, "t": 444.66248, "r": 345.40439, "b": 455.95117, "coord_origin": "TOPLEFT"}}, {"id": 82, "text": "0.942", "bbox": {"l": 362.08801, "t": 444.5996999999999, "r": 386.24799, "b": 456.00497, "coord_origin": "TOPLEFT"}}, {"id": 83, "text": "0.857", "bbox": {"l": 394.61801, "t": 444.5996999999999, "r": 418.77798, "b": 456.00497, "coord_origin": "TOPLEFT"}}, {"id": 84, "text": "1.22", "bbox": {"l": 439.52701, "t": 444.5996999999999, "r": 458.38336, "b": 456.00497, "coord_origin": "TOPLEFT"}}, {"id": 85, "text": "HTML", "bbox": {"l": 245.17598999999998, "t": 457.61447, "r": 272.94495, "b": 468.90317, "coord_origin": "TOPLEFT"}}, {"id": 86, "text": "0.944", "bbox": {"l": 289.017, "t": 457.61447, "r": 310.00732, "b": 468.90317, "coord_origin": "TOPLEFT"}}, {"id": 87, "text": "0.903", "bbox": {"l": 326.71701, "t": 457.61447, "r": 347.70734, "b": 468.90317, "coord_origin": "TOPLEFT"}}, {"id": 88, "text": "0.931", "bbox": {"l": 363.67599, "t": 457.61447, "r": 384.66632, "b": 468.90317, "coord_origin": "TOPLEFT"}}, {"id": 89, "text": "0.824", "bbox": {"l": 396.20599, "t": 457.61447, "r": 417.19632, "b": 468.90317, "coord_origin": "TOPLEFT"}}, {"id": 90, "text": "2", "bbox": {"l": 446.65302, "t": 457.61447, "r": 451.26175, "b": 468.90317, "coord_origin": "TOPLEFT"}}]}, {"id": 7, "label": "section_header", "bbox": {"l": 134.38507080078125, "t": 505.67111, "r": 264.40829, "b": 518.17419, "coord_origin": "TOPLEFT"}, "confidence": 0.9589295387268066, "cells": [{"id": 91, "text": "5.2", "bbox": {"l": 134.765, "t": 505.67111, "r": 149.40306, "b": 518.17419, "coord_origin": "TOPLEFT"}}, {"id": 92, "text": "Quantitative Results", "bbox": {"l": 160.85905, "t": 505.67111, "r": 264.40829, "b": 518.17419, "coord_origin": "TOPLEFT"}}]}, {"id": 8, "label": "text", "bbox": {"l": 133.91534423828125, "t": 522.08005, "r": 480.72003, "b": 618.3, "coord_origin": "TOPLEFT"}, "confidence": 0.9849976301193237, "cells": [{"id": 93, "text": "We picked the model parameter configuration that produced the best prediction", "bbox": {"l": 134.765, "t": 522.08005, "r": 479.72983, "b": 534.61301, "coord_origin": "TOPLEFT"}}, {"id": 94, "text": "quality (enc=6, dec=6, heads=8) with PubTabNet alone, then independently", "bbox": {"l": 134.765, "t": 534.03604, "r": 480.5897499999999, "b": 546.569, "coord_origin": "TOPLEFT"}}, {"id": 95, "text": "trained and evaluated it on three publicly available data sets: PubTabNet (395k", "bbox": {"l": 134.765, "t": 545.99104, "r": 480.72003, "b": 558.524, "coord_origin": "TOPLEFT"}}, {"id": 96, "text": "samples), FinTabNet (113k samples) and PubTables-1M (about 1M samples).", "bbox": {"l": 134.765, "t": 557.94604, "r": 480.60577, "b": 570.479, "coord_origin": "TOPLEFT"}}, {"id": 97, "text": "Performance results are presented in Table. 2. It is clearly evident that the model", "bbox": {"l": 134.765, "t": 569.90103, "r": 480.5936899999999, "b": 582.43399, "coord_origin": "TOPLEFT"}}, {"id": 98, "text": "trained on OTSL outperforms HTML across the board, keeping high TEDs and", "bbox": {"l": 134.765, "t": 581.85603, "r": 480.59158, "b": 594.38899, "coord_origin": "TOPLEFT"}}, {"id": 99, "text": "mAP scores even on difficult financial tables (FinTabNet) that contain sparse", "bbox": {"l": 134.765, "t": 593.81204, "r": 480.58080999999993, "b": 606.345, "coord_origin": "TOPLEFT"}}, {"id": 100, "text": "and large tables.", "bbox": {"l": 134.765, "t": 605.76704, "r": 206.79959, "b": 618.3, "coord_origin": "TOPLEFT"}}]}, {"id": 9, "label": "text", "bbox": {"l": 133.86117553710938, "t": 617.72205, "r": 480.7812805175781, "b": 666.12, "coord_origin": "TOPLEFT"}, "confidence": 0.9850137829780579, "cells": [{"id": 101, "text": "Additionally, the results show that OTSL has an advantage over HTML", "bbox": {"l": 149.709, "t": 617.72205, "r": 480.59479, "b": 630.255, "coord_origin": "TOPLEFT"}}, {"id": 102, "text": "when applied on a bigger data set like PubTables-1M and achieves significantly", "bbox": {"l": 134.765, "t": 629.6770300000001, "r": 480.59857000000005, "b": 642.2099900000001, "coord_origin": "TOPLEFT"}}, {"id": 103, "text": "improved scores. Finally, OTSL achieves faster inference due to fewer decoding", "bbox": {"l": 134.765, "t": 641.63203, "r": 480.59384000000006, "b": 654.16499, "coord_origin": "TOPLEFT"}}, {"id": 104, "text": "steps which is a result of the reduced sequence representation.", "bbox": {"l": 134.765, "t": 653.58704, "r": 405.7995, "b": 666.12, "coord_origin": "TOPLEFT"}}]}]}, "tablestructure": {"table_map": {"6": {"label": "table", "id": 6, "page_no": 0, "cluster": {"id": 6, "label": "table", "bbox": {"l": 139.66741943359375, "t": 337.54541015625, "r": 475.00927734375, "b": 469.4945373535156, "coord_origin": "TOPLEFT"}, "confidence": 0.9901031255722046, "cells": [{"id": 22, "text": "#", "bbox": {"l": 160.37, "t": 339.45749, "r": 168.04523, "b": 350.74619, "coord_origin": "TOPLEFT"}}, {"id": 23, "text": "enc-layers", "bbox": {"l": 144.592, "t": 352.40848, "r": 183.82895, "b": 363.69717, "coord_origin": "TOPLEFT"}}, {"id": 24, "text": "#", "bbox": {"l": 207.974, "t": 339.45749, "r": 215.64923000000002, "b": 350.74619, "coord_origin": "TOPLEFT"}}, {"id": 25, "text": "dec-layers", "bbox": {"l": 192.19501, "t": 352.40848, "r": 231.42303, "b": 363.69717, "coord_origin": "TOPLEFT"}}, {"id": 26, "text": "Language", "bbox": {"l": 239.79799999999997, "t": 344.93649, "r": 278.3338, "b": 356.22519000000005, "coord_origin": "TOPLEFT"}}, {"id": 27, "text": "TEDs", "bbox": {"l": 324.67001, "t": 339.45749, "r": 348.26419, "b": 350.74619, "coord_origin": "TOPLEFT"}}, {"id": 28, "text": "mAP", "bbox": {"l": 396.271, "t": 339.45749, "r": 417.12595, "b": 350.74619, "coord_origin": "TOPLEFT"}}, {"id": 29, "text": "(0.75)", "bbox": {"l": 394.927, "t": 350.41647, "r": 418.46921, "b": 361.70517, "coord_origin": "TOPLEFT"}}, {"id": 30, "text": "Inference", "bbox": {"l": 430.771, "t": 339.45749, "r": 467.14142000000004, "b": 350.74619, "coord_origin": "TOPLEFT"}}, {"id": 31, "text": "time (secs)", "bbox": {"l": 427.14801, "t": 350.41647, "r": 470.76955999999996, "b": 361.70517, "coord_origin": "TOPLEFT"}}, {"id": 32, "text": "simple", "bbox": {"l": 286.686, "t": 352.40848, "r": 312.32812, "b": 363.69717, "coord_origin": "TOPLEFT"}}, {"id": 33, "text": "complex", "bbox": {"l": 320.702, "t": 352.40848, "r": 353.71539, "b": 363.69717, "coord_origin": "TOPLEFT"}}, {"id": 34, "text": "all", "bbox": {"l": 369.306, "t": 352.40848, "r": 379.02914, "b": 363.69717, "coord_origin": "TOPLEFT"}}, {"id": 35, "text": "6", "bbox": {"l": 161.90601, "t": 371.23849, "r": 166.51474, "b": 382.52719, "coord_origin": "TOPLEFT"}}, {"id": 36, "text": "6", "bbox": {"l": 209.509, "t": 371.23849, "r": 214.11774, "b": 382.52719, "coord_origin": "TOPLEFT"}}, {"id": 37, "text": "OTSL", "bbox": {"l": 246.71000999999998, "t": 365.75848, "r": 271.41064, "b": 377.04717999999997, "coord_origin": "TOPLEFT"}}, {"id": 38, "text": "0.965", "bbox": {"l": 289.017, "t": 365.75848, "r": 310.00732, "b": 377.04717999999997, "coord_origin": "TOPLEFT"}}, {"id": 39, "text": "0.934", "bbox": {"l": 326.71701, "t": 365.75848, "r": 347.70734, "b": 377.04717999999997, "coord_origin": "TOPLEFT"}}, {"id": 40, "text": "0.955", "bbox": {"l": 363.67599, "t": 365.75848, "r": 384.66632, "b": 377.04717999999997, "coord_origin": "TOPLEFT"}}, {"id": 41, "text": "0.88", "bbox": {"l": 397.26999, "t": 365.69571, "r": 416.12634, "b": 377.10098000000005, "coord_origin": "TOPLEFT"}}, {"id": 42, "text": "2.73", "bbox": {"l": 439.52701, "t": 365.69571, "r": 458.38336, "b": 377.10098000000005, "coord_origin": "TOPLEFT"}}, {"id": 43, "text": "HTML", "bbox": {"l": 245.17598999999998, "t": 378.71048, "r": 272.94495, "b": 389.99917999999997, "coord_origin": "TOPLEFT"}}, {"id": 44, "text": "0.969", "bbox": {"l": 289.017, "t": 378.71048, "r": 310.00732, "b": 389.99917999999997, "coord_origin": "TOPLEFT"}}, {"id": 45, "text": "0.927", "bbox": {"l": 326.71701, "t": 378.71048, "r": 347.70734, "b": 389.99917999999997, "coord_origin": "TOPLEFT"}}, {"id": 46, "text": "0.955", "bbox": {"l": 363.67599, "t": 378.71048, "r": 384.66632, "b": 389.99917999999997, "coord_origin": "TOPLEFT"}}, {"id": 47, "text": "0.857", "bbox": {"l": 396.20599, "t": 378.71048, "r": 417.19632, "b": 389.99917999999997, "coord_origin": "TOPLEFT"}}, {"id": 48, "text": "5.39", "bbox": {"l": 440.767, "t": 378.71048, "r": 457.15039, "b": 389.99917999999997, "coord_origin": "TOPLEFT"}}, {"id": 49, "text": "4", "bbox": {"l": 161.90601, "t": 397.53949, "r": 166.51474, "b": 408.82819, "coord_origin": "TOPLEFT"}}, {"id": 50, "text": "4", "bbox": {"l": 209.509, "t": 397.53949, "r": 214.11774, "b": 408.82819, "coord_origin": "TOPLEFT"}}, {"id": 51, "text": "OTSL", "bbox": {"l": 246.71000999999998, "t": 392.06049, "r": 271.41064, "b": 403.34918, "coord_origin": "TOPLEFT"}}, {"id": 52, "text": "0.938", "bbox": {"l": 289.017, "t": 392.06049, "r": 310.00732, "b": 403.34918, "coord_origin": "TOPLEFT"}}, {"id": 53, "text": "0.904", "bbox": {"l": 326.71701, "t": 392.06049, "r": 347.70734, "b": 403.34918, "coord_origin": "TOPLEFT"}}, {"id": 54, "text": "0.927", "bbox": {"l": 363.67599, "t": 392.06049, "r": 384.66632, "b": 403.34918, "coord_origin": "TOPLEFT"}}, {"id": 55, "text": "0.853", "bbox": {"l": 394.61801, "t": 391.99771, "r": 418.77798, "b": 403.40298, "coord_origin": "TOPLEFT"}}, {"id": 56, "text": "1.97", "bbox": {"l": 439.52701, "t": 391.99771, "r": 458.38336, "b": 403.40298, "coord_origin": "TOPLEFT"}}, {"id": 57, "text": "HTML", "bbox": {"l": 245.17598999999998, "t": 405.01147, "r": 272.94495, "b": 416.30017, "coord_origin": "TOPLEFT"}}, {"id": 58, "text": "0.952", "bbox": {"l": 289.017, "t": 405.01147, "r": 310.00732, "b": 416.30017, "coord_origin": "TOPLEFT"}}, {"id": 59, "text": "0.909", "bbox": {"l": 326.71701, "t": 405.01147, "r": 347.70734, "b": 416.30017, "coord_origin": "TOPLEFT"}}, {"id": 60, "text": "0.938", "bbox": {"l": 362.08801, "t": 404.9486999999999, "r": 386.24799, "b": 416.35397, "coord_origin": "TOPLEFT"}}, {"id": 61, "text": "0.843", "bbox": {"l": 396.20599, "t": 405.01147, "r": 417.19632, "b": 416.30017, "coord_origin": "TOPLEFT"}}, {"id": 62, "text": "3.77", "bbox": {"l": 440.767, "t": 405.01147, "r": 457.15039, "b": 416.30017, "coord_origin": "TOPLEFT"}}, {"id": 63, "text": "2", "bbox": {"l": 161.90601, "t": 423.84048, "r": 166.51474, "b": 435.12918, "coord_origin": "TOPLEFT"}}, {"id": 64, "text": "4", "bbox": {"l": 209.509, "t": 423.84048, "r": 214.11774, "b": 435.12918, "coord_origin": "TOPLEFT"}}, {"id": 65, "text": "OTSL", "bbox": {"l": 246.71000999999998, "t": 418.3614799999999, "r": 271.41064, "b": 429.65018, "coord_origin": "TOPLEFT"}}, {"id": 66, "text": "0.923", "bbox": {"l": 289.017, "t": 418.3614799999999, "r": 310.00732, "b": 429.65018, "coord_origin": "TOPLEFT"}}, {"id": 67, "text": "0.897", "bbox": {"l": 326.71701, "t": 418.3614799999999, "r": 347.70734, "b": 429.65018, "coord_origin": "TOPLEFT"}}, {"id": 68, "text": "0.915", "bbox": {"l": 363.67599, "t": 418.3614799999999, "r": 384.66632, "b": 429.65018, "coord_origin": "TOPLEFT"}}, {"id": 69, "text": "0.859", "bbox": {"l": 394.61801, "t": 418.29871, "r": 418.77798, "b": 429.70398, "coord_origin": "TOPLEFT"}}, {"id": 70, "text": "1.91", "bbox": {"l": 439.52701, "t": 418.29871, "r": 458.38336, "b": 429.70398, "coord_origin": "TOPLEFT"}}, {"id": 71, "text": "HTML", "bbox": {"l": 245.17598999999998, "t": 431.31246999999996, "r": 272.94495, "b": 442.60117, "coord_origin": "TOPLEFT"}}, {"id": 72, "text": "0.945", "bbox": {"l": 289.017, "t": 431.31246999999996, "r": 310.00732, "b": 442.60117, "coord_origin": "TOPLEFT"}}, {"id": 73, "text": "0.901", "bbox": {"l": 326.71701, "t": 431.31246999999996, "r": 347.70734, "b": 442.60117, "coord_origin": "TOPLEFT"}}, {"id": 74, "text": "0.931", "bbox": {"l": 362.08801, "t": 431.24969, "r": 386.24799, "b": 442.65497, "coord_origin": "TOPLEFT"}}, {"id": 75, "text": "0.834", "bbox": {"l": 396.20599, "t": 431.31246999999996, "r": 417.19632, "b": 442.60117, "coord_origin": "TOPLEFT"}}, {"id": 76, "text": "3.81", "bbox": {"l": 440.767, "t": 431.31246999999996, "r": 457.15039, "b": 442.60117, "coord_origin": "TOPLEFT"}}, {"id": 77, "text": "4", "bbox": {"l": 161.90601, "t": 450.14248999999995, "r": 166.51474, "b": 461.43118, "coord_origin": "TOPLEFT"}}, {"id": 78, "text": "2", "bbox": {"l": 209.509, "t": 450.14248999999995, "r": 214.11774, "b": 461.43118, "coord_origin": "TOPLEFT"}}, {"id": 79, "text": "OTSL", "bbox": {"l": 246.71000999999998, "t": 444.66248, "r": 271.41064, "b": 455.95117, "coord_origin": "TOPLEFT"}}, {"id": 80, "text": "0.952", "bbox": {"l": 289.017, "t": 444.66248, "r": 310.00732, "b": 455.95117, "coord_origin": "TOPLEFT"}}, {"id": 81, "text": "0.92", "bbox": {"l": 329.021, "t": 444.66248, "r": 345.40439, "b": 455.95117, "coord_origin": "TOPLEFT"}}, {"id": 82, "text": "0.942", "bbox": {"l": 362.08801, "t": 444.5996999999999, "r": 386.24799, "b": 456.00497, "coord_origin": "TOPLEFT"}}, {"id": 83, "text": "0.857", "bbox": {"l": 394.61801, "t": 444.5996999999999, "r": 418.77798, "b": 456.00497, "coord_origin": "TOPLEFT"}}, {"id": 84, "text": "1.22", "bbox": {"l": 439.52701, "t": 444.5996999999999, "r": 458.38336, "b": 456.00497, "coord_origin": "TOPLEFT"}}, {"id": 85, "text": "HTML", "bbox": {"l": 245.17598999999998, "t": 457.61447, "r": 272.94495, "b": 468.90317, "coord_origin": "TOPLEFT"}}, {"id": 86, "text": "0.944", "bbox": {"l": 289.017, "t": 457.61447, "r": 310.00732, "b": 468.90317, "coord_origin": "TOPLEFT"}}, {"id": 87, "text": "0.903", "bbox": {"l": 326.71701, "t": 457.61447, "r": 347.70734, "b": 468.90317, "coord_origin": "TOPLEFT"}}, {"id": 88, "text": "0.931", "bbox": {"l": 363.67599, "t": 457.61447, "r": 384.66632, "b": 468.90317, "coord_origin": "TOPLEFT"}}, {"id": 89, "text": "0.824", "bbox": {"l": 396.20599, "t": 457.61447, "r": 417.19632, "b": 468.90317, "coord_origin": "TOPLEFT"}}, {"id": 90, "text": "2", "bbox": {"l": 446.65302, "t": 457.61447, "r": 451.26175, "b": 468.90317, "coord_origin": "TOPLEFT"}}]}, "text": null, "otsl_seq": ["ched", "ched", "ched", "ched", "lcel", "lcel", "ched", "ched", "nl", "ched", "ched", "ucel", "ched", "ched", "ched", "ched", "ched", "nl", "fcel", "fcel", "fcel", "fcel", "fcel", "fcel", "fcel", "fcel", "nl", "fcel", "fcel", "fcel", "fcel", "fcel", "fcel", "fcel", "fcel", "nl", "fcel", "fcel", "fcel", "fcel", "fcel", "fcel", "fcel", "fcel", "nl", "fcel", "fcel", "fcel", "fcel", "fcel", "fcel", "fcel", "fcel", "nl", "fcel", "fcel", "fcel", "fcel", "fcel", "fcel", "fcel", "fcel", "nl"], "num_rows": 7, "num_cols": 8, "table_cells": [{"bbox": {"l": 160.37, "t": 339.45749, "r": 168.04523, "b": 350.74619, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "#", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 144.592, "t": 352.40848, "r": 183.82895, "b": 363.69717, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "enc-layers", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 207.974, "t": 339.45749, "r": 215.64923000000002, "b": 350.74619, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "#", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 192.19501, "t": 352.40848, "r": 231.42303, "b": 363.69717, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "dec-layers", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 239.79799999999997, "t": 344.93649, "r": 278.3338, "b": 356.22519000000005, "coord_origin": "TOPLEFT"}, "row_span": 2, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 2, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "Language", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 324.67001, "t": 339.45749, "r": 348.26419, "b": 350.74619, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 3, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 3, "end_col_offset_idx": 6, "text": "TEDs", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 396.271, "t": 339.45749, "r": 417.12595, "b": 350.74619, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 6, "end_col_offset_idx": 7, "text": "mAP", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 394.927, "t": 350.41647, "r": 418.46921, "b": 361.70517, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 6, "end_col_offset_idx": 7, "text": "(0.75)", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 430.771, "t": 339.45749, "r": 467.14142000000004, "b": 350.74619, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 7, "end_col_offset_idx": 8, "text": "Inference", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 427.14801, "t": 350.41647, "r": 470.76955999999996, "b": 361.70517, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 7, "end_col_offset_idx": 8, "text": "time (secs)", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 286.686, "t": 352.40848, "r": 312.32812, "b": 363.69717, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "simple", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 320.702, "t": 352.40848, "r": 353.71539, "b": 363.69717, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 4, "end_col_offset_idx": 5, "text": "complex", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 369.306, "t": 352.40848, "r": 379.02914, "b": 363.69717, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 5, "end_col_offset_idx": 6, "text": "all", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 161.90601, "t": 371.23849, "r": 166.51474, "b": 382.52719, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "6", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 209.509, "t": 371.23849, "r": 214.11774, "b": 382.52719, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "6", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 245.17598999999998, "t": 365.75848, "r": 272.94495, "b": 389.99917999999997, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "OTSL HTML", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 289.017, "t": 365.75848, "r": 310.00732, "b": 389.99917999999997, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "0.965 0.969", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 326.71701, "t": 365.75848, "r": 347.70734, "b": 389.99917999999997, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 4, "end_col_offset_idx": 5, "text": "0.934 0.927", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 363.67599, "t": 365.75848, "r": 384.66632, "b": 389.99917999999997, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 5, "end_col_offset_idx": 6, "text": "0.955 0.955", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 396.20599, "t": 365.69571, "r": 417.19632, "b": 389.99917999999997, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 6, "end_col_offset_idx": 7, "text": "0.88 0.857", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 439.52701, "t": 365.69571, "r": 458.38336, "b": 389.99917999999997, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 7, "end_col_offset_idx": 8, "text": "2.73 5.39", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 161.90601, "t": 397.53949, "r": 166.51474, "b": 408.82819, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "4", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 209.509, "t": 397.53949, "r": 214.11774, "b": 408.82819, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "4", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 245.17598999999998, "t": 392.06049, "r": 272.94495, "b": 416.30017, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "OTSL HTML", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 289.017, "t": 392.06049, "r": 310.00732, "b": 403.34918, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "0.938", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 326.71701, "t": 392.06049, "r": 347.70734, "b": 403.34918, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 4, "end_col_offset_idx": 5, "text": "0.904", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 363.67599, "t": 392.06049, "r": 384.66632, "b": 403.34918, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 5, "end_col_offset_idx": 6, "text": "0.927", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 394.61801, "t": 391.99771, "r": 418.77798, "b": 403.40298, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 6, "end_col_offset_idx": 7, "text": "0.853", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 439.52701, "t": 391.99771, "r": 458.38336, "b": 403.40298, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 7, "end_col_offset_idx": 8, "text": "1.97", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 289.017, "t": 405.01147, "r": 310.00732, "b": 429.65018, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "0.952 0.923", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 326.71701, "t": 405.01147, "r": 347.70734, "b": 416.30017, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 4, "end_col_offset_idx": 5, "text": "0.909", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 362.08801, "t": 404.9486999999999, "r": 386.24799, "b": 416.35397, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 5, "end_col_offset_idx": 6, "text": "0.938", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 396.20599, "t": 405.01147, "r": 417.19632, "b": 416.30017, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 6, "end_col_offset_idx": 7, "text": "0.843", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 440.767, "t": 405.01147, "r": 457.15039, "b": 416.30017, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 7, "end_col_offset_idx": 8, "text": "3.77", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 161.90601, "t": 423.84048, "r": 166.51474, "b": 435.12918, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "2", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 209.509, "t": 423.84048, "r": 214.11774, "b": 435.12918, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "4", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 246.71000999999998, "t": 418.3614799999999, "r": 271.41064, "b": 429.65018, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "OTSL", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 326.71701, "t": 418.3614799999999, "r": 347.70734, "b": 442.60117, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 4, "end_col_offset_idx": 5, "text": "0.897 0.901", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 362.08801, "t": 418.3614799999999, "r": 386.24799, "b": 442.65497, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 5, "end_col_offset_idx": 6, "text": "0.915 0.931", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 394.61801, "t": 418.29871, "r": 418.77798, "b": 442.60117, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 6, "end_col_offset_idx": 7, "text": "0.859 0.834", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 439.52701, "t": 418.29871, "r": 458.38336, "b": 442.60117, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 7, "end_col_offset_idx": 8, "text": "1.91 3.81", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 245.17598999999998, "t": 431.31246999999996, "r": 272.94495, "b": 442.60117, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "HTML", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 289.017, "t": 431.31246999999996, "r": 310.00732, "b": 442.60117, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "0.945", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 161.90601, "t": 450.14248999999995, "r": 166.51474, "b": 461.43118, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "4", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 209.509, "t": 450.14248999999995, "r": 214.11774, "b": 461.43118, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "2", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 245.17598999999998, "t": 444.66248, "r": 272.94495, "b": 468.90317, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "OTSL HTML", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 289.017, "t": 444.66248, "r": 310.00732, "b": 468.90317, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "0.952 0.944", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 326.71701, "t": 444.66248, "r": 347.70734, "b": 468.90317, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 4, "end_col_offset_idx": 5, "text": "0.92 0.903", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 362.08801, "t": 444.5996999999999, "r": 386.24799, "b": 468.90317, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 5, "end_col_offset_idx": 6, "text": "0.942 0.931", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 394.61801, "t": 444.5996999999999, "r": 418.77798, "b": 468.90317, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 6, "end_col_offset_idx": 7, "text": "0.857 0.824", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 439.52701, "t": 444.5996999999999, "r": 458.38336, "b": 468.90317, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 7, "end_col_offset_idx": 8, "text": "1.22 2", "column_header": false, "row_header": false, "row_section": false}]}}}, "figures_classification": null, "equations_prediction": null}, "assembled": {"elements": [{"label": "page_header", "id": 0, "page_no": 0, "cluster": {"id": 0, "label": "page_header", "bbox": {"l": 193.7325897216797, "t": 91.49352999999996, "r": 447.54476999999997, "b": 102.78223000000003, "coord_origin": "TOPLEFT"}, "confidence": 0.9373533129692078, "cells": [{"id": 0, "text": "Optimized Table Tokenization for Table Structure Recognition", "bbox": {"l": 194.478, "t": 91.49352999999996, "r": 447.54476999999997, "b": 102.78223000000003, "coord_origin": "TOPLEFT"}}]}, "text": "Optimized Table Tokenization for Table Structure Recognition"}, {"label": "page_header", "id": 1, "page_no": 0, "cluster": {"id": 1, "label": "page_header", "bbox": {"l": 475.14013671875, "t": 91.49352999999996, "r": 480.59314, "b": 102.78223000000003, "coord_origin": "TOPLEFT"}, "confidence": 0.8858674764633179, "cells": [{"id": 1, "text": "9", "bbox": {"l": 475.98441, "t": 91.49352999999996, "r": 480.59314, "b": 102.78223000000003, "coord_origin": "TOPLEFT"}}]}, "text": "9"}, {"label": "text", "id": 2, "page_no": 0, "cluster": {"id": 2, "label": "text", "bbox": {"l": 133.9616241455078, "t": 116.46301000000005, "r": 480.61419677734375, "b": 152.90697999999998, "coord_origin": "TOPLEFT"}, "confidence": 0.9806433916091919, "cells": [{"id": 2, "text": "order to compute the TED score. Inference timing results for all experiments", "bbox": {"l": 134.765, "t": 116.46301000000005, "r": 480.59067, "b": 128.99597000000006, "coord_origin": "TOPLEFT"}}, {"id": 3, "text": "were obtained from the same machine on a single core with AMD EPYC 7763", "bbox": {"l": 134.765, "t": 128.41803000000004, "r": 480.59665, "b": 140.95099000000005, "coord_origin": "TOPLEFT"}}, {"id": 4, "text": "CPU @2.45 GHz.", "bbox": {"l": 134.765, "t": 140.37401999999997, "r": 210.78761, "b": 152.90697999999998, "coord_origin": "TOPLEFT"}}]}, "text": "order to compute the TED score. Inference timing results for all experiments were obtained from the same machine on a single core with AMD EPYC 7763 CPU @2.45 GHz."}, {"label": "section_header", "id": 3, "page_no": 0, "cluster": {"id": 3, "label": "section_header", "bbox": {"l": 134.31333923339844, "t": 166.70514000000003, "r": 318.45145, "b": 179.20818999999995, "coord_origin": "TOPLEFT"}, "confidence": 0.9577404260635376, "cells": [{"id": 5, "text": "5.1", "bbox": {"l": 134.765, "t": 166.70514000000003, "r": 149.40306, "b": 179.20818999999995, "coord_origin": "TOPLEFT"}}, {"id": 6, "text": "Hyper Parameter Optimization", "bbox": {"l": 160.85905, "t": 166.70514000000003, "r": 318.45145, "b": 179.20818999999995, "coord_origin": "TOPLEFT"}}]}, "text": "5.1 Hyper Parameter Optimization"}, {"label": "text", "id": 4, "page_no": 0, "cluster": {"id": 4, "label": "text", "bbox": {"l": 133.96910095214844, "t": 183.11505, "r": 481.3177185058594, "b": 255.42400999999995, "coord_origin": "TOPLEFT"}, "confidence": 0.98504239320755, "cells": [{"id": 7, "text": "We have chosen the PubTabNet data set to perform HPO, since it includes a", "bbox": {"l": 134.765, "t": 183.11505, "r": 479.74982000000006, "b": 195.64801, "coord_origin": "TOPLEFT"}}, {"id": 8, "text": "highly diverse set of tables. Also we report TED scores separately for simple and", "bbox": {"l": 134.765, "t": 195.07007, "r": 480.58765, "b": 207.60303, "coord_origin": "TOPLEFT"}}, {"id": 9, "text": "complex tables (tables with cell spans). Results are presented in Table. 1. It is", "bbox": {"l": 134.765, "t": 207.02502000000004, "r": 480.58859000000007, "b": 219.55798000000004, "coord_origin": "TOPLEFT"}}, {"id": 10, "text": "evident that with OTSL, our model achieves the same TED score and slightly", "bbox": {"l": 134.765, "t": 218.98004000000003, "r": 480.59567, "b": 231.51300000000003, "coord_origin": "TOPLEFT"}}, {"id": 11, "text": "better mAP scores in comparison to HTML. However OTSL yields a", "bbox": {"l": 134.765, "t": 230.93506000000002, "r": 440.9425, "b": 243.46802000000002, "coord_origin": "TOPLEFT"}}, {"id": 12, "text": "2x speed", "bbox": {"l": 444.86800999999997, "t": 230.98486000000003, "r": 480.58792, "b": 243.46802000000002, "coord_origin": "TOPLEFT"}}, {"id": 13, "text": "up", "bbox": {"l": 134.765, "t": 242.94086000000004, "r": 145.19585, "b": 255.42400999999995, "coord_origin": "TOPLEFT"}}, {"id": 14, "text": "in the inference runtime over HTML.", "bbox": {"l": 149.149, "t": 242.89104999999995, "r": 311.22256, "b": 255.42400999999995, "coord_origin": "TOPLEFT"}}]}, "text": "We have chosen the PubTabNet data set to perform HPO, since it includes a highly diverse set of tables. Also we report TED scores separately for simple and complex tables (tables with cell spans). Results are presented in Table. 1. It is evident that with OTSL, our model achieves the same TED score and slightly better mAP scores in comparison to HTML. However OTSL yields a 2x speed up in the inference runtime over HTML."}, {"label": "caption", "id": 5, "page_no": 0, "cluster": {"id": 5, "label": "caption", "bbox": {"l": 134.0642547607422, "t": 272.79474000000005, "r": 480.59890999999993, "b": 327.98218, "coord_origin": "TOPLEFT"}, "confidence": 0.9591909050941467, "cells": [{"id": 15, "text": "Table", "bbox": {"l": 134.765, "t": 272.79474000000005, "r": 159.22983, "b": 284.1999799999999, "coord_origin": "TOPLEFT"}}, {"id": 16, "text": "1.", "bbox": {"l": 167.34442, "t": 272.79474000000005, "r": 174.71301, "b": 284.1999799999999, "coord_origin": "TOPLEFT"}}, {"id": 17, "text": "HPO performed in OTSL and HTML representation on the same", "bbox": {"l": 188.133, "t": 272.85748, "r": 480.58101999999997, "b": 284.14618, "coord_origin": "TOPLEFT"}}, {"id": 18, "text": "transformer-based TableFormer [9] architecture, trained only on PubTabNet [22]. Ef-", "bbox": {"l": 134.765, "t": 283.81647, "r": 480.59890999999993, "b": 295.10516000000007, "coord_origin": "TOPLEFT"}}, {"id": 19, "text": "fects of reducing the # of layers in encoder and decoder stages of the model show that", "bbox": {"l": 134.765, "t": 294.77547999999996, "r": 480.59887999999995, "b": 306.06418, "coord_origin": "TOPLEFT"}}, {"id": 20, "text": "smaller models trained on OTSL perform better, especially in recognizing complex", "bbox": {"l": 134.765, "t": 305.73447, "r": 480.59180000000003, "b": 317.02316, "coord_origin": "TOPLEFT"}}, {"id": 21, "text": "table structures, and maintain a much higher mAP score than the HTML counterpart.", "bbox": {"l": 134.765, "t": 316.69348, "r": 480.58471999999995, "b": 327.98218, "coord_origin": "TOPLEFT"}}]}, "text": "Table 1. HPO performed in OTSL and HTML representation on the same transformer-based TableFormer [9] architecture, trained only on PubTabNet [22]. Effects of reducing the # of layers in encoder and decoder stages of the model show that smaller models trained on OTSL perform better, especially in recognizing complex table structures, and maintain a much higher mAP score than the HTML counterpart."}, {"label": "table", "id": 6, "page_no": 0, "cluster": {"id": 6, "label": "table", "bbox": {"l": 139.66741943359375, "t": 337.54541015625, "r": 475.00927734375, "b": 469.4945373535156, "coord_origin": "TOPLEFT"}, "confidence": 0.9901031255722046, "cells": [{"id": 22, "text": "#", "bbox": {"l": 160.37, "t": 339.45749, "r": 168.04523, "b": 350.74619, "coord_origin": "TOPLEFT"}}, {"id": 23, "text": "enc-layers", "bbox": {"l": 144.592, "t": 352.40848, "r": 183.82895, "b": 363.69717, "coord_origin": "TOPLEFT"}}, {"id": 24, "text": "#", "bbox": {"l": 207.974, "t": 339.45749, "r": 215.64923000000002, "b": 350.74619, "coord_origin": "TOPLEFT"}}, {"id": 25, "text": "dec-layers", "bbox": {"l": 192.19501, "t": 352.40848, "r": 231.42303, "b": 363.69717, "coord_origin": "TOPLEFT"}}, {"id": 26, "text": "Language", "bbox": {"l": 239.79799999999997, "t": 344.93649, "r": 278.3338, "b": 356.22519000000005, "coord_origin": "TOPLEFT"}}, {"id": 27, "text": "TEDs", "bbox": {"l": 324.67001, "t": 339.45749, "r": 348.26419, "b": 350.74619, "coord_origin": "TOPLEFT"}}, {"id": 28, "text": "mAP", "bbox": {"l": 396.271, "t": 339.45749, "r": 417.12595, "b": 350.74619, "coord_origin": "TOPLEFT"}}, {"id": 29, "text": "(0.75)", "bbox": {"l": 394.927, "t": 350.41647, "r": 418.46921, "b": 361.70517, "coord_origin": "TOPLEFT"}}, {"id": 30, "text": "Inference", "bbox": {"l": 430.771, "t": 339.45749, "r": 467.14142000000004, "b": 350.74619, "coord_origin": "TOPLEFT"}}, {"id": 31, "text": "time (secs)", "bbox": {"l": 427.14801, "t": 350.41647, "r": 470.76955999999996, "b": 361.70517, "coord_origin": "TOPLEFT"}}, {"id": 32, "text": "simple", "bbox": {"l": 286.686, "t": 352.40848, "r": 312.32812, "b": 363.69717, "coord_origin": "TOPLEFT"}}, {"id": 33, "text": "complex", "bbox": {"l": 320.702, "t": 352.40848, "r": 353.71539, "b": 363.69717, "coord_origin": "TOPLEFT"}}, {"id": 34, "text": "all", "bbox": {"l": 369.306, "t": 352.40848, "r": 379.02914, "b": 363.69717, "coord_origin": "TOPLEFT"}}, {"id": 35, "text": "6", "bbox": {"l": 161.90601, "t": 371.23849, "r": 166.51474, "b": 382.52719, "coord_origin": "TOPLEFT"}}, {"id": 36, "text": "6", "bbox": {"l": 209.509, "t": 371.23849, "r": 214.11774, "b": 382.52719, "coord_origin": "TOPLEFT"}}, {"id": 37, "text": "OTSL", "bbox": {"l": 246.71000999999998, "t": 365.75848, "r": 271.41064, "b": 377.04717999999997, "coord_origin": "TOPLEFT"}}, {"id": 38, "text": "0.965", "bbox": {"l": 289.017, "t": 365.75848, "r": 310.00732, "b": 377.04717999999997, "coord_origin": "TOPLEFT"}}, {"id": 39, "text": "0.934", "bbox": {"l": 326.71701, "t": 365.75848, "r": 347.70734, "b": 377.04717999999997, "coord_origin": "TOPLEFT"}}, {"id": 40, "text": "0.955", "bbox": {"l": 363.67599, "t": 365.75848, "r": 384.66632, "b": 377.04717999999997, "coord_origin": "TOPLEFT"}}, {"id": 41, "text": "0.88", "bbox": {"l": 397.26999, "t": 365.69571, "r": 416.12634, "b": 377.10098000000005, "coord_origin": "TOPLEFT"}}, {"id": 42, "text": "2.73", "bbox": {"l": 439.52701, "t": 365.69571, "r": 458.38336, "b": 377.10098000000005, "coord_origin": "TOPLEFT"}}, {"id": 43, "text": "HTML", "bbox": {"l": 245.17598999999998, "t": 378.71048, "r": 272.94495, "b": 389.99917999999997, "coord_origin": "TOPLEFT"}}, {"id": 44, "text": "0.969", "bbox": {"l": 289.017, "t": 378.71048, "r": 310.00732, "b": 389.99917999999997, "coord_origin": "TOPLEFT"}}, {"id": 45, "text": "0.927", "bbox": {"l": 326.71701, "t": 378.71048, "r": 347.70734, "b": 389.99917999999997, "coord_origin": "TOPLEFT"}}, {"id": 46, "text": "0.955", "bbox": {"l": 363.67599, "t": 378.71048, "r": 384.66632, "b": 389.99917999999997, "coord_origin": "TOPLEFT"}}, {"id": 47, "text": "0.857", "bbox": {"l": 396.20599, "t": 378.71048, "r": 417.19632, "b": 389.99917999999997, "coord_origin": "TOPLEFT"}}, {"id": 48, "text": "5.39", "bbox": {"l": 440.767, "t": 378.71048, "r": 457.15039, "b": 389.99917999999997, "coord_origin": "TOPLEFT"}}, {"id": 49, "text": "4", "bbox": {"l": 161.90601, "t": 397.53949, "r": 166.51474, "b": 408.82819, "coord_origin": "TOPLEFT"}}, {"id": 50, "text": "4", "bbox": {"l": 209.509, "t": 397.53949, "r": 214.11774, "b": 408.82819, "coord_origin": "TOPLEFT"}}, {"id": 51, "text": "OTSL", "bbox": {"l": 246.71000999999998, "t": 392.06049, "r": 271.41064, "b": 403.34918, "coord_origin": "TOPLEFT"}}, {"id": 52, "text": "0.938", "bbox": {"l": 289.017, "t": 392.06049, "r": 310.00732, "b": 403.34918, "coord_origin": "TOPLEFT"}}, {"id": 53, "text": "0.904", "bbox": {"l": 326.71701, "t": 392.06049, "r": 347.70734, "b": 403.34918, "coord_origin": "TOPLEFT"}}, {"id": 54, "text": "0.927", "bbox": {"l": 363.67599, "t": 392.06049, "r": 384.66632, "b": 403.34918, "coord_origin": "TOPLEFT"}}, {"id": 55, "text": "0.853", "bbox": {"l": 394.61801, "t": 391.99771, "r": 418.77798, "b": 403.40298, "coord_origin": "TOPLEFT"}}, {"id": 56, "text": "1.97", "bbox": {"l": 439.52701, "t": 391.99771, "r": 458.38336, "b": 403.40298, "coord_origin": "TOPLEFT"}}, {"id": 57, "text": "HTML", "bbox": {"l": 245.17598999999998, "t": 405.01147, "r": 272.94495, "b": 416.30017, "coord_origin": "TOPLEFT"}}, {"id": 58, "text": "0.952", "bbox": {"l": 289.017, "t": 405.01147, "r": 310.00732, "b": 416.30017, "coord_origin": "TOPLEFT"}}, {"id": 59, "text": "0.909", "bbox": {"l": 326.71701, "t": 405.01147, "r": 347.70734, "b": 416.30017, "coord_origin": "TOPLEFT"}}, {"id": 60, "text": "0.938", "bbox": {"l": 362.08801, "t": 404.9486999999999, "r": 386.24799, "b": 416.35397, "coord_origin": "TOPLEFT"}}, {"id": 61, "text": "0.843", "bbox": {"l": 396.20599, "t": 405.01147, "r": 417.19632, "b": 416.30017, "coord_origin": "TOPLEFT"}}, {"id": 62, "text": "3.77", "bbox": {"l": 440.767, "t": 405.01147, "r": 457.15039, "b": 416.30017, "coord_origin": "TOPLEFT"}}, {"id": 63, "text": "2", "bbox": {"l": 161.90601, "t": 423.84048, "r": 166.51474, "b": 435.12918, "coord_origin": "TOPLEFT"}}, {"id": 64, "text": "4", "bbox": {"l": 209.509, "t": 423.84048, "r": 214.11774, "b": 435.12918, "coord_origin": "TOPLEFT"}}, {"id": 65, "text": "OTSL", "bbox": {"l": 246.71000999999998, "t": 418.3614799999999, "r": 271.41064, "b": 429.65018, "coord_origin": "TOPLEFT"}}, {"id": 66, "text": "0.923", "bbox": {"l": 289.017, "t": 418.3614799999999, "r": 310.00732, "b": 429.65018, "coord_origin": "TOPLEFT"}}, {"id": 67, "text": "0.897", "bbox": {"l": 326.71701, "t": 418.3614799999999, "r": 347.70734, "b": 429.65018, "coord_origin": "TOPLEFT"}}, {"id": 68, "text": "0.915", "bbox": {"l": 363.67599, "t": 418.3614799999999, "r": 384.66632, "b": 429.65018, "coord_origin": "TOPLEFT"}}, {"id": 69, "text": "0.859", "bbox": {"l": 394.61801, "t": 418.29871, "r": 418.77798, "b": 429.70398, "coord_origin": "TOPLEFT"}}, {"id": 70, "text": "1.91", "bbox": {"l": 439.52701, "t": 418.29871, "r": 458.38336, "b": 429.70398, "coord_origin": "TOPLEFT"}}, {"id": 71, "text": "HTML", "bbox": {"l": 245.17598999999998, "t": 431.31246999999996, "r": 272.94495, "b": 442.60117, "coord_origin": "TOPLEFT"}}, {"id": 72, "text": "0.945", "bbox": {"l": 289.017, "t": 431.31246999999996, "r": 310.00732, "b": 442.60117, "coord_origin": "TOPLEFT"}}, {"id": 73, "text": "0.901", "bbox": {"l": 326.71701, "t": 431.31246999999996, "r": 347.70734, "b": 442.60117, "coord_origin": "TOPLEFT"}}, {"id": 74, "text": "0.931", "bbox": {"l": 362.08801, "t": 431.24969, "r": 386.24799, "b": 442.65497, "coord_origin": "TOPLEFT"}}, {"id": 75, "text": "0.834", "bbox": {"l": 396.20599, "t": 431.31246999999996, "r": 417.19632, "b": 442.60117, "coord_origin": "TOPLEFT"}}, {"id": 76, "text": "3.81", "bbox": {"l": 440.767, "t": 431.31246999999996, "r": 457.15039, "b": 442.60117, "coord_origin": "TOPLEFT"}}, {"id": 77, "text": "4", "bbox": {"l": 161.90601, "t": 450.14248999999995, "r": 166.51474, "b": 461.43118, "coord_origin": "TOPLEFT"}}, {"id": 78, "text": "2", "bbox": {"l": 209.509, "t": 450.14248999999995, "r": 214.11774, "b": 461.43118, "coord_origin": "TOPLEFT"}}, {"id": 79, "text": "OTSL", "bbox": {"l": 246.71000999999998, "t": 444.66248, "r": 271.41064, "b": 455.95117, "coord_origin": "TOPLEFT"}}, {"id": 80, "text": "0.952", "bbox": {"l": 289.017, "t": 444.66248, "r": 310.00732, "b": 455.95117, "coord_origin": "TOPLEFT"}}, {"id": 81, "text": "0.92", "bbox": {"l": 329.021, "t": 444.66248, "r": 345.40439, "b": 455.95117, "coord_origin": "TOPLEFT"}}, {"id": 82, "text": "0.942", "bbox": {"l": 362.08801, "t": 444.5996999999999, "r": 386.24799, "b": 456.00497, "coord_origin": "TOPLEFT"}}, {"id": 83, "text": "0.857", "bbox": {"l": 394.61801, "t": 444.5996999999999, "r": 418.77798, "b": 456.00497, "coord_origin": "TOPLEFT"}}, {"id": 84, "text": "1.22", "bbox": {"l": 439.52701, "t": 444.5996999999999, "r": 458.38336, "b": 456.00497, "coord_origin": "TOPLEFT"}}, {"id": 85, "text": "HTML", "bbox": {"l": 245.17598999999998, "t": 457.61447, "r": 272.94495, "b": 468.90317, "coord_origin": "TOPLEFT"}}, {"id": 86, "text": "0.944", "bbox": {"l": 289.017, "t": 457.61447, "r": 310.00732, "b": 468.90317, "coord_origin": "TOPLEFT"}}, {"id": 87, "text": "0.903", "bbox": {"l": 326.71701, "t": 457.61447, "r": 347.70734, "b": 468.90317, "coord_origin": "TOPLEFT"}}, {"id": 88, "text": "0.931", "bbox": {"l": 363.67599, "t": 457.61447, "r": 384.66632, "b": 468.90317, "coord_origin": "TOPLEFT"}}, {"id": 89, "text": "0.824", "bbox": {"l": 396.20599, "t": 457.61447, "r": 417.19632, "b": 468.90317, "coord_origin": "TOPLEFT"}}, {"id": 90, "text": "2", "bbox": {"l": 446.65302, "t": 457.61447, "r": 451.26175, "b": 468.90317, "coord_origin": "TOPLEFT"}}]}, "text": null, "otsl_seq": ["ched", "ched", "ched", "ched", "lcel", "lcel", "ched", "ched", "nl", "ched", "ched", "ucel", "ched", "ched", "ched", "ched", "ched", "nl", "fcel", "fcel", "fcel", "fcel", "fcel", "fcel", "fcel", "fcel", "nl", "fcel", "fcel", "fcel", "fcel", "fcel", "fcel", "fcel", "fcel", "nl", "fcel", "fcel", "fcel", "fcel", "fcel", "fcel", "fcel", "fcel", "nl", "fcel", "fcel", "fcel", "fcel", "fcel", "fcel", "fcel", "fcel", "nl", "fcel", "fcel", "fcel", "fcel", "fcel", "fcel", "fcel", "fcel", "nl"], "num_rows": 7, "num_cols": 8, "table_cells": [{"bbox": {"l": 160.37, "t": 339.45749, "r": 168.04523, "b": 350.74619, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "#", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 144.592, "t": 352.40848, "r": 183.82895, "b": 363.69717, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "enc-layers", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 207.974, "t": 339.45749, "r": 215.64923000000002, "b": 350.74619, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "#", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 192.19501, "t": 352.40848, "r": 231.42303, "b": 363.69717, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "dec-layers", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 239.79799999999997, "t": 344.93649, "r": 278.3338, "b": 356.22519000000005, "coord_origin": "TOPLEFT"}, "row_span": 2, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 2, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "Language", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 324.67001, "t": 339.45749, "r": 348.26419, "b": 350.74619, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 3, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 3, "end_col_offset_idx": 6, "text": "TEDs", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 396.271, "t": 339.45749, "r": 417.12595, "b": 350.74619, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 6, "end_col_offset_idx": 7, "text": "mAP", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 394.927, "t": 350.41647, "r": 418.46921, "b": 361.70517, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 6, "end_col_offset_idx": 7, "text": "(0.75)", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 430.771, "t": 339.45749, "r": 467.14142000000004, "b": 350.74619, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 7, "end_col_offset_idx": 8, "text": "Inference", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 427.14801, "t": 350.41647, "r": 470.76955999999996, "b": 361.70517, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 7, "end_col_offset_idx": 8, "text": "time (secs)", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 286.686, "t": 352.40848, "r": 312.32812, "b": 363.69717, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "simple", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 320.702, "t": 352.40848, "r": 353.71539, "b": 363.69717, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 4, "end_col_offset_idx": 5, "text": "complex", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 369.306, "t": 352.40848, "r": 379.02914, "b": 363.69717, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 5, "end_col_offset_idx": 6, "text": "all", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 161.90601, "t": 371.23849, "r": 166.51474, "b": 382.52719, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "6", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 209.509, "t": 371.23849, "r": 214.11774, "b": 382.52719, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "6", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 245.17598999999998, "t": 365.75848, "r": 272.94495, "b": 389.99917999999997, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "OTSL HTML", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 289.017, "t": 365.75848, "r": 310.00732, "b": 389.99917999999997, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "0.965 0.969", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 326.71701, "t": 365.75848, "r": 347.70734, "b": 389.99917999999997, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 4, "end_col_offset_idx": 5, "text": "0.934 0.927", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 363.67599, "t": 365.75848, "r": 384.66632, "b": 389.99917999999997, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 5, "end_col_offset_idx": 6, "text": "0.955 0.955", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 396.20599, "t": 365.69571, "r": 417.19632, "b": 389.99917999999997, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 6, "end_col_offset_idx": 7, "text": "0.88 0.857", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 439.52701, "t": 365.69571, "r": 458.38336, "b": 389.99917999999997, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 7, "end_col_offset_idx": 8, "text": "2.73 5.39", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 161.90601, "t": 397.53949, "r": 166.51474, "b": 408.82819, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "4", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 209.509, "t": 397.53949, "r": 214.11774, "b": 408.82819, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "4", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 245.17598999999998, "t": 392.06049, "r": 272.94495, "b": 416.30017, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "OTSL HTML", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 289.017, "t": 392.06049, "r": 310.00732, "b": 403.34918, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "0.938", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 326.71701, "t": 392.06049, "r": 347.70734, "b": 403.34918, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 4, "end_col_offset_idx": 5, "text": "0.904", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 363.67599, "t": 392.06049, "r": 384.66632, "b": 403.34918, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 5, "end_col_offset_idx": 6, "text": "0.927", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 394.61801, "t": 391.99771, "r": 418.77798, "b": 403.40298, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 6, "end_col_offset_idx": 7, "text": "0.853", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 439.52701, "t": 391.99771, "r": 458.38336, "b": 403.40298, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 7, "end_col_offset_idx": 8, "text": "1.97", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 289.017, "t": 405.01147, "r": 310.00732, "b": 429.65018, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "0.952 0.923", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 326.71701, "t": 405.01147, "r": 347.70734, "b": 416.30017, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 4, "end_col_offset_idx": 5, "text": "0.909", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 362.08801, "t": 404.9486999999999, "r": 386.24799, "b": 416.35397, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 5, "end_col_offset_idx": 6, "text": "0.938", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 396.20599, "t": 405.01147, "r": 417.19632, "b": 416.30017, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 6, "end_col_offset_idx": 7, "text": "0.843", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 440.767, "t": 405.01147, "r": 457.15039, "b": 416.30017, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 7, "end_col_offset_idx": 8, "text": "3.77", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 161.90601, "t": 423.84048, "r": 166.51474, "b": 435.12918, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "2", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 209.509, "t": 423.84048, "r": 214.11774, "b": 435.12918, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "4", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 246.71000999999998, "t": 418.3614799999999, "r": 271.41064, "b": 429.65018, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "OTSL", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 326.71701, "t": 418.3614799999999, "r": 347.70734, "b": 442.60117, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 4, "end_col_offset_idx": 5, "text": "0.897 0.901", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 362.08801, "t": 418.3614799999999, "r": 386.24799, "b": 442.65497, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 5, "end_col_offset_idx": 6, "text": "0.915 0.931", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 394.61801, "t": 418.29871, "r": 418.77798, "b": 442.60117, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 6, "end_col_offset_idx": 7, "text": "0.859 0.834", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 439.52701, "t": 418.29871, "r": 458.38336, "b": 442.60117, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 7, "end_col_offset_idx": 8, "text": "1.91 3.81", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 245.17598999999998, "t": 431.31246999999996, "r": 272.94495, "b": 442.60117, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "HTML", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 289.017, "t": 431.31246999999996, "r": 310.00732, "b": 442.60117, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "0.945", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 161.90601, "t": 450.14248999999995, "r": 166.51474, "b": 461.43118, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "4", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 209.509, "t": 450.14248999999995, "r": 214.11774, "b": 461.43118, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "2", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 245.17598999999998, "t": 444.66248, "r": 272.94495, "b": 468.90317, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "OTSL HTML", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 289.017, "t": 444.66248, "r": 310.00732, "b": 468.90317, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "0.952 0.944", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 326.71701, "t": 444.66248, "r": 347.70734, "b": 468.90317, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 4, "end_col_offset_idx": 5, "text": "0.92 0.903", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 362.08801, "t": 444.5996999999999, "r": 386.24799, "b": 468.90317, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 5, "end_col_offset_idx": 6, "text": "0.942 0.931", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 394.61801, "t": 444.5996999999999, "r": 418.77798, "b": 468.90317, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 6, "end_col_offset_idx": 7, "text": "0.857 0.824", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 439.52701, "t": 444.5996999999999, "r": 458.38336, "b": 468.90317, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 7, "end_col_offset_idx": 8, "text": "1.22 2", "column_header": false, "row_header": false, "row_section": false}]}, {"label": "section_header", "id": 7, "page_no": 0, "cluster": {"id": 7, "label": "section_header", "bbox": {"l": 134.38507080078125, "t": 505.67111, "r": 264.40829, "b": 518.17419, "coord_origin": "TOPLEFT"}, "confidence": 0.9589295387268066, "cells": [{"id": 91, "text": "5.2", "bbox": {"l": 134.765, "t": 505.67111, "r": 149.40306, "b": 518.17419, "coord_origin": "TOPLEFT"}}, {"id": 92, "text": "Quantitative Results", "bbox": {"l": 160.85905, "t": 505.67111, "r": 264.40829, "b": 518.17419, "coord_origin": "TOPLEFT"}}]}, "text": "5.2 Quantitative Results"}, {"label": "text", "id": 8, "page_no": 0, "cluster": {"id": 8, "label": "text", "bbox": {"l": 133.91534423828125, "t": 522.08005, "r": 480.72003, "b": 618.3, "coord_origin": "TOPLEFT"}, "confidence": 0.9849976301193237, "cells": [{"id": 93, "text": "We picked the model parameter configuration that produced the best prediction", "bbox": {"l": 134.765, "t": 522.08005, "r": 479.72983, "b": 534.61301, "coord_origin": "TOPLEFT"}}, {"id": 94, "text": "quality (enc=6, dec=6, heads=8) with PubTabNet alone, then independently", "bbox": {"l": 134.765, "t": 534.03604, "r": 480.5897499999999, "b": 546.569, "coord_origin": "TOPLEFT"}}, {"id": 95, "text": "trained and evaluated it on three publicly available data sets: PubTabNet (395k", "bbox": {"l": 134.765, "t": 545.99104, "r": 480.72003, "b": 558.524, "coord_origin": "TOPLEFT"}}, {"id": 96, "text": "samples), FinTabNet (113k samples) and PubTables-1M (about 1M samples).", "bbox": {"l": 134.765, "t": 557.94604, "r": 480.60577, "b": 570.479, "coord_origin": "TOPLEFT"}}, {"id": 97, "text": "Performance results are presented in Table. 2. It is clearly evident that the model", "bbox": {"l": 134.765, "t": 569.90103, "r": 480.5936899999999, "b": 582.43399, "coord_origin": "TOPLEFT"}}, {"id": 98, "text": "trained on OTSL outperforms HTML across the board, keeping high TEDs and", "bbox": {"l": 134.765, "t": 581.85603, "r": 480.59158, "b": 594.38899, "coord_origin": "TOPLEFT"}}, {"id": 99, "text": "mAP scores even on difficult financial tables (FinTabNet) that contain sparse", "bbox": {"l": 134.765, "t": 593.81204, "r": 480.58080999999993, "b": 606.345, "coord_origin": "TOPLEFT"}}, {"id": 100, "text": "and large tables.", "bbox": {"l": 134.765, "t": 605.76704, "r": 206.79959, "b": 618.3, "coord_origin": "TOPLEFT"}}]}, "text": "We picked the model parameter configuration that produced the best prediction quality (enc=6, dec=6, heads=8) with PubTabNet alone, then independently trained and evaluated it on three publicly available data sets: PubTabNet (395k samples), FinTabNet (113k samples) and PubTables-1M (about 1M samples). Performance results are presented in Table. 2. It is clearly evident that the model trained on OTSL outperforms HTML across the board, keeping high TEDs and mAP scores even on difficult financial tables (FinTabNet) that contain sparse and large tables."}, {"label": "text", "id": 9, "page_no": 0, "cluster": {"id": 9, "label": "text", "bbox": {"l": 133.86117553710938, "t": 617.72205, "r": 480.7812805175781, "b": 666.12, "coord_origin": "TOPLEFT"}, "confidence": 0.9850137829780579, "cells": [{"id": 101, "text": "Additionally, the results show that OTSL has an advantage over HTML", "bbox": {"l": 149.709, "t": 617.72205, "r": 480.59479, "b": 630.255, "coord_origin": "TOPLEFT"}}, {"id": 102, "text": "when applied on a bigger data set like PubTables-1M and achieves significantly", "bbox": {"l": 134.765, "t": 629.6770300000001, "r": 480.59857000000005, "b": 642.2099900000001, "coord_origin": "TOPLEFT"}}, {"id": 103, "text": "improved scores. Finally, OTSL achieves faster inference due to fewer decoding", "bbox": {"l": 134.765, "t": 641.63203, "r": 480.59384000000006, "b": 654.16499, "coord_origin": "TOPLEFT"}}, {"id": 104, "text": "steps which is a result of the reduced sequence representation.", "bbox": {"l": 134.765, "t": 653.58704, "r": 405.7995, "b": 666.12, "coord_origin": "TOPLEFT"}}]}, "text": "Additionally, the results show that OTSL has an advantage over HTML when applied on a bigger data set like PubTables-1M and achieves significantly improved scores. Finally, OTSL achieves faster inference due to fewer decoding steps which is a result of the reduced sequence representation."}], "body": [{"label": "text", "id": 2, "page_no": 0, "cluster": {"id": 2, "label": "text", "bbox": {"l": 133.9616241455078, "t": 116.46301000000005, "r": 480.61419677734375, "b": 152.90697999999998, "coord_origin": "TOPLEFT"}, "confidence": 0.9806433916091919, "cells": [{"id": 2, "text": "order to compute the TED score. Inference timing results for all experiments", "bbox": {"l": 134.765, "t": 116.46301000000005, "r": 480.59067, "b": 128.99597000000006, "coord_origin": "TOPLEFT"}}, {"id": 3, "text": "were obtained from the same machine on a single core with AMD EPYC 7763", "bbox": {"l": 134.765, "t": 128.41803000000004, "r": 480.59665, "b": 140.95099000000005, "coord_origin": "TOPLEFT"}}, {"id": 4, "text": "CPU @2.45 GHz.", "bbox": {"l": 134.765, "t": 140.37401999999997, "r": 210.78761, "b": 152.90697999999998, "coord_origin": "TOPLEFT"}}]}, "text": "order to compute the TED score. Inference timing results for all experiments were obtained from the same machine on a single core with AMD EPYC 7763 CPU @2.45 GHz."}, {"label": "section_header", "id": 3, "page_no": 0, "cluster": {"id": 3, "label": "section_header", "bbox": {"l": 134.31333923339844, "t": 166.70514000000003, "r": 318.45145, "b": 179.20818999999995, "coord_origin": "TOPLEFT"}, "confidence": 0.9577404260635376, "cells": [{"id": 5, "text": "5.1", "bbox": {"l": 134.765, "t": 166.70514000000003, "r": 149.40306, "b": 179.20818999999995, "coord_origin": "TOPLEFT"}}, {"id": 6, "text": "Hyper Parameter Optimization", "bbox": {"l": 160.85905, "t": 166.70514000000003, "r": 318.45145, "b": 179.20818999999995, "coord_origin": "TOPLEFT"}}]}, "text": "5.1 Hyper Parameter Optimization"}, {"label": "text", "id": 4, "page_no": 0, "cluster": {"id": 4, "label": "text", "bbox": {"l": 133.96910095214844, "t": 183.11505, "r": 481.3177185058594, "b": 255.42400999999995, "coord_origin": "TOPLEFT"}, "confidence": 0.98504239320755, "cells": [{"id": 7, "text": "We have chosen the PubTabNet data set to perform HPO, since it includes a", "bbox": {"l": 134.765, "t": 183.11505, "r": 479.74982000000006, "b": 195.64801, "coord_origin": "TOPLEFT"}}, {"id": 8, "text": "highly diverse set of tables. Also we report TED scores separately for simple and", "bbox": {"l": 134.765, "t": 195.07007, "r": 480.58765, "b": 207.60303, "coord_origin": "TOPLEFT"}}, {"id": 9, "text": "complex tables (tables with cell spans). Results are presented in Table. 1. It is", "bbox": {"l": 134.765, "t": 207.02502000000004, "r": 480.58859000000007, "b": 219.55798000000004, "coord_origin": "TOPLEFT"}}, {"id": 10, "text": "evident that with OTSL, our model achieves the same TED score and slightly", "bbox": {"l": 134.765, "t": 218.98004000000003, "r": 480.59567, "b": 231.51300000000003, "coord_origin": "TOPLEFT"}}, {"id": 11, "text": "better mAP scores in comparison to HTML. However OTSL yields a", "bbox": {"l": 134.765, "t": 230.93506000000002, "r": 440.9425, "b": 243.46802000000002, "coord_origin": "TOPLEFT"}}, {"id": 12, "text": "2x speed", "bbox": {"l": 444.86800999999997, "t": 230.98486000000003, "r": 480.58792, "b": 243.46802000000002, "coord_origin": "TOPLEFT"}}, {"id": 13, "text": "up", "bbox": {"l": 134.765, "t": 242.94086000000004, "r": 145.19585, "b": 255.42400999999995, "coord_origin": "TOPLEFT"}}, {"id": 14, "text": "in the inference runtime over HTML.", "bbox": {"l": 149.149, "t": 242.89104999999995, "r": 311.22256, "b": 255.42400999999995, "coord_origin": "TOPLEFT"}}]}, "text": "We have chosen the PubTabNet data set to perform HPO, since it includes a highly diverse set of tables. Also we report TED scores separately for simple and complex tables (tables with cell spans). Results are presented in Table. 1. It is evident that with OTSL, our model achieves the same TED score and slightly better mAP scores in comparison to HTML. However OTSL yields a 2x speed up in the inference runtime over HTML."}, {"label": "caption", "id": 5, "page_no": 0, "cluster": {"id": 5, "label": "caption", "bbox": {"l": 134.0642547607422, "t": 272.79474000000005, "r": 480.59890999999993, "b": 327.98218, "coord_origin": "TOPLEFT"}, "confidence": 0.9591909050941467, "cells": [{"id": 15, "text": "Table", "bbox": {"l": 134.765, "t": 272.79474000000005, "r": 159.22983, "b": 284.1999799999999, "coord_origin": "TOPLEFT"}}, {"id": 16, "text": "1.", "bbox": {"l": 167.34442, "t": 272.79474000000005, "r": 174.71301, "b": 284.1999799999999, "coord_origin": "TOPLEFT"}}, {"id": 17, "text": "HPO performed in OTSL and HTML representation on the same", "bbox": {"l": 188.133, "t": 272.85748, "r": 480.58101999999997, "b": 284.14618, "coord_origin": "TOPLEFT"}}, {"id": 18, "text": "transformer-based TableFormer [9] architecture, trained only on PubTabNet [22]. Ef-", "bbox": {"l": 134.765, "t": 283.81647, "r": 480.59890999999993, "b": 295.10516000000007, "coord_origin": "TOPLEFT"}}, {"id": 19, "text": "fects of reducing the # of layers in encoder and decoder stages of the model show that", "bbox": {"l": 134.765, "t": 294.77547999999996, "r": 480.59887999999995, "b": 306.06418, "coord_origin": "TOPLEFT"}}, {"id": 20, "text": "smaller models trained on OTSL perform better, especially in recognizing complex", "bbox": {"l": 134.765, "t": 305.73447, "r": 480.59180000000003, "b": 317.02316, "coord_origin": "TOPLEFT"}}, {"id": 21, "text": "table structures, and maintain a much higher mAP score than the HTML counterpart.", "bbox": {"l": 134.765, "t": 316.69348, "r": 480.58471999999995, "b": 327.98218, "coord_origin": "TOPLEFT"}}]}, "text": "Table 1. HPO performed in OTSL and HTML representation on the same transformer-based TableFormer [9] architecture, trained only on PubTabNet [22]. Effects of reducing the # of layers in encoder and decoder stages of the model show that smaller models trained on OTSL perform better, especially in recognizing complex table structures, and maintain a much higher mAP score than the HTML counterpart."}, {"label": "table", "id": 6, "page_no": 0, "cluster": {"id": 6, "label": "table", "bbox": {"l": 139.66741943359375, "t": 337.54541015625, "r": 475.00927734375, "b": 469.4945373535156, "coord_origin": "TOPLEFT"}, "confidence": 0.9901031255722046, "cells": [{"id": 22, "text": "#", "bbox": {"l": 160.37, "t": 339.45749, "r": 168.04523, "b": 350.74619, "coord_origin": "TOPLEFT"}}, {"id": 23, "text": "enc-layers", "bbox": {"l": 144.592, "t": 352.40848, "r": 183.82895, "b": 363.69717, "coord_origin": "TOPLEFT"}}, {"id": 24, "text": "#", "bbox": {"l": 207.974, "t": 339.45749, "r": 215.64923000000002, "b": 350.74619, "coord_origin": "TOPLEFT"}}, {"id": 25, "text": "dec-layers", "bbox": {"l": 192.19501, "t": 352.40848, "r": 231.42303, "b": 363.69717, "coord_origin": "TOPLEFT"}}, {"id": 26, "text": "Language", "bbox": {"l": 239.79799999999997, "t": 344.93649, "r": 278.3338, "b": 356.22519000000005, "coord_origin": "TOPLEFT"}}, {"id": 27, "text": "TEDs", "bbox": {"l": 324.67001, "t": 339.45749, "r": 348.26419, "b": 350.74619, "coord_origin": "TOPLEFT"}}, {"id": 28, "text": "mAP", "bbox": {"l": 396.271, "t": 339.45749, "r": 417.12595, "b": 350.74619, "coord_origin": "TOPLEFT"}}, {"id": 29, "text": "(0.75)", "bbox": {"l": 394.927, "t": 350.41647, "r": 418.46921, "b": 361.70517, "coord_origin": "TOPLEFT"}}, {"id": 30, "text": "Inference", "bbox": {"l": 430.771, "t": 339.45749, "r": 467.14142000000004, "b": 350.74619, "coord_origin": "TOPLEFT"}}, {"id": 31, "text": "time (secs)", "bbox": {"l": 427.14801, "t": 350.41647, "r": 470.76955999999996, "b": 361.70517, "coord_origin": "TOPLEFT"}}, {"id": 32, "text": "simple", "bbox": {"l": 286.686, "t": 352.40848, "r": 312.32812, "b": 363.69717, "coord_origin": "TOPLEFT"}}, {"id": 33, "text": "complex", "bbox": {"l": 320.702, "t": 352.40848, "r": 353.71539, "b": 363.69717, "coord_origin": "TOPLEFT"}}, {"id": 34, "text": "all", "bbox": {"l": 369.306, "t": 352.40848, "r": 379.02914, "b": 363.69717, "coord_origin": "TOPLEFT"}}, {"id": 35, "text": "6", "bbox": {"l": 161.90601, "t": 371.23849, "r": 166.51474, "b": 382.52719, "coord_origin": "TOPLEFT"}}, {"id": 36, "text": "6", "bbox": {"l": 209.509, "t": 371.23849, "r": 214.11774, "b": 382.52719, "coord_origin": "TOPLEFT"}}, {"id": 37, "text": "OTSL", "bbox": {"l": 246.71000999999998, "t": 365.75848, "r": 271.41064, "b": 377.04717999999997, "coord_origin": "TOPLEFT"}}, {"id": 38, "text": "0.965", "bbox": {"l": 289.017, "t": 365.75848, "r": 310.00732, "b": 377.04717999999997, "coord_origin": "TOPLEFT"}}, {"id": 39, "text": "0.934", "bbox": {"l": 326.71701, "t": 365.75848, "r": 347.70734, "b": 377.04717999999997, "coord_origin": "TOPLEFT"}}, {"id": 40, "text": "0.955", "bbox": {"l": 363.67599, "t": 365.75848, "r": 384.66632, "b": 377.04717999999997, "coord_origin": "TOPLEFT"}}, {"id": 41, "text": "0.88", "bbox": {"l": 397.26999, "t": 365.69571, "r": 416.12634, "b": 377.10098000000005, "coord_origin": "TOPLEFT"}}, {"id": 42, "text": "2.73", "bbox": {"l": 439.52701, "t": 365.69571, "r": 458.38336, "b": 377.10098000000005, "coord_origin": "TOPLEFT"}}, {"id": 43, "text": "HTML", "bbox": {"l": 245.17598999999998, "t": 378.71048, "r": 272.94495, "b": 389.99917999999997, "coord_origin": "TOPLEFT"}}, {"id": 44, "text": "0.969", "bbox": {"l": 289.017, "t": 378.71048, "r": 310.00732, "b": 389.99917999999997, "coord_origin": "TOPLEFT"}}, {"id": 45, "text": "0.927", "bbox": {"l": 326.71701, "t": 378.71048, "r": 347.70734, "b": 389.99917999999997, "coord_origin": "TOPLEFT"}}, {"id": 46, "text": "0.955", "bbox": {"l": 363.67599, "t": 378.71048, "r": 384.66632, "b": 389.99917999999997, "coord_origin": "TOPLEFT"}}, {"id": 47, "text": "0.857", "bbox": {"l": 396.20599, "t": 378.71048, "r": 417.19632, "b": 389.99917999999997, "coord_origin": "TOPLEFT"}}, {"id": 48, "text": "5.39", "bbox": {"l": 440.767, "t": 378.71048, "r": 457.15039, "b": 389.99917999999997, "coord_origin": "TOPLEFT"}}, {"id": 49, "text": "4", "bbox": {"l": 161.90601, "t": 397.53949, "r": 166.51474, "b": 408.82819, "coord_origin": "TOPLEFT"}}, {"id": 50, "text": "4", "bbox": {"l": 209.509, "t": 397.53949, "r": 214.11774, "b": 408.82819, "coord_origin": "TOPLEFT"}}, {"id": 51, "text": "OTSL", "bbox": {"l": 246.71000999999998, "t": 392.06049, "r": 271.41064, "b": 403.34918, "coord_origin": "TOPLEFT"}}, {"id": 52, "text": "0.938", "bbox": {"l": 289.017, "t": 392.06049, "r": 310.00732, "b": 403.34918, "coord_origin": "TOPLEFT"}}, {"id": 53, "text": "0.904", "bbox": {"l": 326.71701, "t": 392.06049, "r": 347.70734, "b": 403.34918, "coord_origin": "TOPLEFT"}}, {"id": 54, "text": "0.927", "bbox": {"l": 363.67599, "t": 392.06049, "r": 384.66632, "b": 403.34918, "coord_origin": "TOPLEFT"}}, {"id": 55, "text": "0.853", "bbox": {"l": 394.61801, "t": 391.99771, "r": 418.77798, "b": 403.40298, "coord_origin": "TOPLEFT"}}, {"id": 56, "text": "1.97", "bbox": {"l": 439.52701, "t": 391.99771, "r": 458.38336, "b": 403.40298, "coord_origin": "TOPLEFT"}}, {"id": 57, "text": "HTML", "bbox": {"l": 245.17598999999998, "t": 405.01147, "r": 272.94495, "b": 416.30017, "coord_origin": "TOPLEFT"}}, {"id": 58, "text": "0.952", "bbox": {"l": 289.017, "t": 405.01147, "r": 310.00732, "b": 416.30017, "coord_origin": "TOPLEFT"}}, {"id": 59, "text": "0.909", "bbox": {"l": 326.71701, "t": 405.01147, "r": 347.70734, "b": 416.30017, "coord_origin": "TOPLEFT"}}, {"id": 60, "text": "0.938", "bbox": {"l": 362.08801, "t": 404.9486999999999, "r": 386.24799, "b": 416.35397, "coord_origin": "TOPLEFT"}}, {"id": 61, "text": "0.843", "bbox": {"l": 396.20599, "t": 405.01147, "r": 417.19632, "b": 416.30017, "coord_origin": "TOPLEFT"}}, {"id": 62, "text": "3.77", "bbox": {"l": 440.767, "t": 405.01147, "r": 457.15039, "b": 416.30017, "coord_origin": "TOPLEFT"}}, {"id": 63, "text": "2", "bbox": {"l": 161.90601, "t": 423.84048, "r": 166.51474, "b": 435.12918, "coord_origin": "TOPLEFT"}}, {"id": 64, "text": "4", "bbox": {"l": 209.509, "t": 423.84048, "r": 214.11774, "b": 435.12918, "coord_origin": "TOPLEFT"}}, {"id": 65, "text": "OTSL", "bbox": {"l": 246.71000999999998, "t": 418.3614799999999, "r": 271.41064, "b": 429.65018, "coord_origin": "TOPLEFT"}}, {"id": 66, "text": "0.923", "bbox": {"l": 289.017, "t": 418.3614799999999, "r": 310.00732, "b": 429.65018, "coord_origin": "TOPLEFT"}}, {"id": 67, "text": "0.897", "bbox": {"l": 326.71701, "t": 418.3614799999999, "r": 347.70734, "b": 429.65018, "coord_origin": "TOPLEFT"}}, {"id": 68, "text": "0.915", "bbox": {"l": 363.67599, "t": 418.3614799999999, "r": 384.66632, "b": 429.65018, "coord_origin": "TOPLEFT"}}, {"id": 69, "text": "0.859", "bbox": {"l": 394.61801, "t": 418.29871, "r": 418.77798, "b": 429.70398, "coord_origin": "TOPLEFT"}}, {"id": 70, "text": "1.91", "bbox": {"l": 439.52701, "t": 418.29871, "r": 458.38336, "b": 429.70398, "coord_origin": "TOPLEFT"}}, {"id": 71, "text": "HTML", "bbox": {"l": 245.17598999999998, "t": 431.31246999999996, "r": 272.94495, "b": 442.60117, "coord_origin": "TOPLEFT"}}, {"id": 72, "text": "0.945", "bbox": {"l": 289.017, "t": 431.31246999999996, "r": 310.00732, "b": 442.60117, "coord_origin": "TOPLEFT"}}, {"id": 73, "text": "0.901", "bbox": {"l": 326.71701, "t": 431.31246999999996, "r": 347.70734, "b": 442.60117, "coord_origin": "TOPLEFT"}}, {"id": 74, "text": "0.931", "bbox": {"l": 362.08801, "t": 431.24969, "r": 386.24799, "b": 442.65497, "coord_origin": "TOPLEFT"}}, {"id": 75, "text": "0.834", "bbox": {"l": 396.20599, "t": 431.31246999999996, "r": 417.19632, "b": 442.60117, "coord_origin": "TOPLEFT"}}, {"id": 76, "text": "3.81", "bbox": {"l": 440.767, "t": 431.31246999999996, "r": 457.15039, "b": 442.60117, "coord_origin": "TOPLEFT"}}, {"id": 77, "text": "4", "bbox": {"l": 161.90601, "t": 450.14248999999995, "r": 166.51474, "b": 461.43118, "coord_origin": "TOPLEFT"}}, {"id": 78, "text": "2", "bbox": {"l": 209.509, "t": 450.14248999999995, "r": 214.11774, "b": 461.43118, "coord_origin": "TOPLEFT"}}, {"id": 79, "text": "OTSL", "bbox": {"l": 246.71000999999998, "t": 444.66248, "r": 271.41064, "b": 455.95117, "coord_origin": "TOPLEFT"}}, {"id": 80, "text": "0.952", "bbox": {"l": 289.017, "t": 444.66248, "r": 310.00732, "b": 455.95117, "coord_origin": "TOPLEFT"}}, {"id": 81, "text": "0.92", "bbox": {"l": 329.021, "t": 444.66248, "r": 345.40439, "b": 455.95117, "coord_origin": "TOPLEFT"}}, {"id": 82, "text": "0.942", "bbox": {"l": 362.08801, "t": 444.5996999999999, "r": 386.24799, "b": 456.00497, "coord_origin": "TOPLEFT"}}, {"id": 83, "text": "0.857", "bbox": {"l": 394.61801, "t": 444.5996999999999, "r": 418.77798, "b": 456.00497, "coord_origin": "TOPLEFT"}}, {"id": 84, "text": "1.22", "bbox": {"l": 439.52701, "t": 444.5996999999999, "r": 458.38336, "b": 456.00497, "coord_origin": "TOPLEFT"}}, {"id": 85, "text": "HTML", "bbox": {"l": 245.17598999999998, "t": 457.61447, "r": 272.94495, "b": 468.90317, "coord_origin": "TOPLEFT"}}, {"id": 86, "text": "0.944", "bbox": {"l": 289.017, "t": 457.61447, "r": 310.00732, "b": 468.90317, "coord_origin": "TOPLEFT"}}, {"id": 87, "text": "0.903", "bbox": {"l": 326.71701, "t": 457.61447, "r": 347.70734, "b": 468.90317, "coord_origin": "TOPLEFT"}}, {"id": 88, "text": "0.931", "bbox": {"l": 363.67599, "t": 457.61447, "r": 384.66632, "b": 468.90317, "coord_origin": "TOPLEFT"}}, {"id": 89, "text": "0.824", "bbox": {"l": 396.20599, "t": 457.61447, "r": 417.19632, "b": 468.90317, "coord_origin": "TOPLEFT"}}, {"id": 90, "text": "2", "bbox": {"l": 446.65302, "t": 457.61447, "r": 451.26175, "b": 468.90317, "coord_origin": "TOPLEFT"}}]}, "text": null, "otsl_seq": ["ched", "ched", "ched", "ched", "lcel", "lcel", "ched", "ched", "nl", "ched", "ched", "ucel", "ched", "ched", "ched", "ched", "ched", "nl", "fcel", "fcel", "fcel", "fcel", "fcel", "fcel", "fcel", "fcel", "nl", "fcel", "fcel", "fcel", "fcel", "fcel", "fcel", "fcel", "fcel", "nl", "fcel", "fcel", "fcel", "fcel", "fcel", "fcel", "fcel", "fcel", "nl", "fcel", "fcel", "fcel", "fcel", "fcel", "fcel", "fcel", "fcel", "nl", "fcel", "fcel", "fcel", "fcel", "fcel", "fcel", "fcel", "fcel", "nl"], "num_rows": 7, "num_cols": 8, "table_cells": [{"bbox": {"l": 160.37, "t": 339.45749, "r": 168.04523, "b": 350.74619, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "#", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 144.592, "t": 352.40848, "r": 183.82895, "b": 363.69717, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "enc-layers", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 207.974, "t": 339.45749, "r": 215.64923000000002, "b": 350.74619, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "#", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 192.19501, "t": 352.40848, "r": 231.42303, "b": 363.69717, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "dec-layers", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 239.79799999999997, "t": 344.93649, "r": 278.3338, "b": 356.22519000000005, "coord_origin": "TOPLEFT"}, "row_span": 2, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 2, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "Language", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 324.67001, "t": 339.45749, "r": 348.26419, "b": 350.74619, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 3, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 3, "end_col_offset_idx": 6, "text": "TEDs", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 396.271, "t": 339.45749, "r": 417.12595, "b": 350.74619, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 6, "end_col_offset_idx": 7, "text": "mAP", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 394.927, "t": 350.41647, "r": 418.46921, "b": 361.70517, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 6, "end_col_offset_idx": 7, "text": "(0.75)", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 430.771, "t": 339.45749, "r": 467.14142000000004, "b": 350.74619, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 0, "end_row_offset_idx": 1, "start_col_offset_idx": 7, "end_col_offset_idx": 8, "text": "Inference", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 427.14801, "t": 350.41647, "r": 470.76955999999996, "b": 361.70517, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 7, "end_col_offset_idx": 8, "text": "time (secs)", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 286.686, "t": 352.40848, "r": 312.32812, "b": 363.69717, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "simple", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 320.702, "t": 352.40848, "r": 353.71539, "b": 363.69717, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 4, "end_col_offset_idx": 5, "text": "complex", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 369.306, "t": 352.40848, "r": 379.02914, "b": 363.69717, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 1, "end_row_offset_idx": 2, "start_col_offset_idx": 5, "end_col_offset_idx": 6, "text": "all", "column_header": true, "row_header": false, "row_section": false}, {"bbox": {"l": 161.90601, "t": 371.23849, "r": 166.51474, "b": 382.52719, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "6", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 209.509, "t": 371.23849, "r": 214.11774, "b": 382.52719, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "6", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 245.17598999999998, "t": 365.75848, "r": 272.94495, "b": 389.99917999999997, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "OTSL HTML", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 289.017, "t": 365.75848, "r": 310.00732, "b": 389.99917999999997, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "0.965 0.969", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 326.71701, "t": 365.75848, "r": 347.70734, "b": 389.99917999999997, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 4, "end_col_offset_idx": 5, "text": "0.934 0.927", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 363.67599, "t": 365.75848, "r": 384.66632, "b": 389.99917999999997, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 5, "end_col_offset_idx": 6, "text": "0.955 0.955", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 396.20599, "t": 365.69571, "r": 417.19632, "b": 389.99917999999997, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 6, "end_col_offset_idx": 7, "text": "0.88 0.857", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 439.52701, "t": 365.69571, "r": 458.38336, "b": 389.99917999999997, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 2, "end_row_offset_idx": 3, "start_col_offset_idx": 7, "end_col_offset_idx": 8, "text": "2.73 5.39", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 161.90601, "t": 397.53949, "r": 166.51474, "b": 408.82819, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "4", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 209.509, "t": 397.53949, "r": 214.11774, "b": 408.82819, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "4", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 245.17598999999998, "t": 392.06049, "r": 272.94495, "b": 416.30017, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "OTSL HTML", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 289.017, "t": 392.06049, "r": 310.00732, "b": 403.34918, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "0.938", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 326.71701, "t": 392.06049, "r": 347.70734, "b": 403.34918, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 4, "end_col_offset_idx": 5, "text": "0.904", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 363.67599, "t": 392.06049, "r": 384.66632, "b": 403.34918, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 5, "end_col_offset_idx": 6, "text": "0.927", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 394.61801, "t": 391.99771, "r": 418.77798, "b": 403.40298, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 6, "end_col_offset_idx": 7, "text": "0.853", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 439.52701, "t": 391.99771, "r": 458.38336, "b": 403.40298, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 3, "end_row_offset_idx": 4, "start_col_offset_idx": 7, "end_col_offset_idx": 8, "text": "1.97", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 289.017, "t": 405.01147, "r": 310.00732, "b": 429.65018, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "0.952 0.923", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 326.71701, "t": 405.01147, "r": 347.70734, "b": 416.30017, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 4, "end_col_offset_idx": 5, "text": "0.909", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 362.08801, "t": 404.9486999999999, "r": 386.24799, "b": 416.35397, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 5, "end_col_offset_idx": 6, "text": "0.938", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 396.20599, "t": 405.01147, "r": 417.19632, "b": 416.30017, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 6, "end_col_offset_idx": 7, "text": "0.843", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 440.767, "t": 405.01147, "r": 457.15039, "b": 416.30017, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 7, "end_col_offset_idx": 8, "text": "3.77", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 161.90601, "t": 423.84048, "r": 166.51474, "b": 435.12918, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "2", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 209.509, "t": 423.84048, "r": 214.11774, "b": 435.12918, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "4", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 246.71000999999998, "t": 418.3614799999999, "r": 271.41064, "b": 429.65018, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 4, "end_row_offset_idx": 5, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "OTSL", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 326.71701, "t": 418.3614799999999, "r": 347.70734, "b": 442.60117, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 4, "end_col_offset_idx": 5, "text": "0.897 0.901", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 362.08801, "t": 418.3614799999999, "r": 386.24799, "b": 442.65497, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 5, "end_col_offset_idx": 6, "text": "0.915 0.931", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 394.61801, "t": 418.29871, "r": 418.77798, "b": 442.60117, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 6, "end_col_offset_idx": 7, "text": "0.859 0.834", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 439.52701, "t": 418.29871, "r": 458.38336, "b": 442.60117, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 7, "end_col_offset_idx": 8, "text": "1.91 3.81", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 245.17598999999998, "t": 431.31246999999996, "r": 272.94495, "b": 442.60117, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "HTML", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 289.017, "t": 431.31246999999996, "r": 310.00732, "b": 442.60117, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 5, "end_row_offset_idx": 6, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "0.945", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 161.90601, "t": 450.14248999999995, "r": 166.51474, "b": 461.43118, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 0, "end_col_offset_idx": 1, "text": "4", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 209.509, "t": 450.14248999999995, "r": 214.11774, "b": 461.43118, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 1, "end_col_offset_idx": 2, "text": "2", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 245.17598999999998, "t": 444.66248, "r": 272.94495, "b": 468.90317, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 2, "end_col_offset_idx": 3, "text": "OTSL HTML", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 289.017, "t": 444.66248, "r": 310.00732, "b": 468.90317, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 3, "end_col_offset_idx": 4, "text": "0.952 0.944", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 326.71701, "t": 444.66248, "r": 347.70734, "b": 468.90317, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 4, "end_col_offset_idx": 5, "text": "0.92 0.903", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 362.08801, "t": 444.5996999999999, "r": 386.24799, "b": 468.90317, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 5, "end_col_offset_idx": 6, "text": "0.942 0.931", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 394.61801, "t": 444.5996999999999, "r": 418.77798, "b": 468.90317, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 6, "end_col_offset_idx": 7, "text": "0.857 0.824", "column_header": false, "row_header": false, "row_section": false}, {"bbox": {"l": 439.52701, "t": 444.5996999999999, "r": 458.38336, "b": 468.90317, "coord_origin": "TOPLEFT"}, "row_span": 1, "col_span": 1, "start_row_offset_idx": 6, "end_row_offset_idx": 7, "start_col_offset_idx": 7, "end_col_offset_idx": 8, "text": "1.22 2", "column_header": false, "row_header": false, "row_section": false}]}, {"label": "section_header", "id": 7, "page_no": 0, "cluster": {"id": 7, "label": "section_header", "bbox": {"l": 134.38507080078125, "t": 505.67111, "r": 264.40829, "b": 518.17419, "coord_origin": "TOPLEFT"}, "confidence": 0.9589295387268066, "cells": [{"id": 91, "text": "5.2", "bbox": {"l": 134.765, "t": 505.67111, "r": 149.40306, "b": 518.17419, "coord_origin": "TOPLEFT"}}, {"id": 92, "text": "Quantitative Results", "bbox": {"l": 160.85905, "t": 505.67111, "r": 264.40829, "b": 518.17419, "coord_origin": "TOPLEFT"}}]}, "text": "5.2 Quantitative Results"}, {"label": "text", "id": 8, "page_no": 0, "cluster": {"id": 8, "label": "text", "bbox": {"l": 133.91534423828125, "t": 522.08005, "r": 480.72003, "b": 618.3, "coord_origin": "TOPLEFT"}, "confidence": 0.9849976301193237, "cells": [{"id": 93, "text": "We picked the model parameter configuration that produced the best prediction", "bbox": {"l": 134.765, "t": 522.08005, "r": 479.72983, "b": 534.61301, "coord_origin": "TOPLEFT"}}, {"id": 94, "text": "quality (enc=6, dec=6, heads=8) with PubTabNet alone, then independently", "bbox": {"l": 134.765, "t": 534.03604, "r": 480.5897499999999, "b": 546.569, "coord_origin": "TOPLEFT"}}, {"id": 95, "text": "trained and evaluated it on three publicly available data sets: PubTabNet (395k", "bbox": {"l": 134.765, "t": 545.99104, "r": 480.72003, "b": 558.524, "coord_origin": "TOPLEFT"}}, {"id": 96, "text": "samples), FinTabNet (113k samples) and PubTables-1M (about 1M samples).", "bbox": {"l": 134.765, "t": 557.94604, "r": 480.60577, "b": 570.479, "coord_origin": "TOPLEFT"}}, {"id": 97, "text": "Performance results are presented in Table. 2. It is clearly evident that the model", "bbox": {"l": 134.765, "t": 569.90103, "r": 480.5936899999999, "b": 582.43399, "coord_origin": "TOPLEFT"}}, {"id": 98, "text": "trained on OTSL outperforms HTML across the board, keeping high TEDs and", "bbox": {"l": 134.765, "t": 581.85603, "r": 480.59158, "b": 594.38899, "coord_origin": "TOPLEFT"}}, {"id": 99, "text": "mAP scores even on difficult financial tables (FinTabNet) that contain sparse", "bbox": {"l": 134.765, "t": 593.81204, "r": 480.58080999999993, "b": 606.345, "coord_origin": "TOPLEFT"}}, {"id": 100, "text": "and large tables.", "bbox": {"l": 134.765, "t": 605.76704, "r": 206.79959, "b": 618.3, "coord_origin": "TOPLEFT"}}]}, "text": "We picked the model parameter configuration that produced the best prediction quality (enc=6, dec=6, heads=8) with PubTabNet alone, then independently trained and evaluated it on three publicly available data sets: PubTabNet (395k samples), FinTabNet (113k samples) and PubTables-1M (about 1M samples). Performance results are presented in Table. 2. It is clearly evident that the model trained on OTSL outperforms HTML across the board, keeping high TEDs and mAP scores even on difficult financial tables (FinTabNet) that contain sparse and large tables."}, {"label": "text", "id": 9, "page_no": 0, "cluster": {"id": 9, "label": "text", "bbox": {"l": 133.86117553710938, "t": 617.72205, "r": 480.7812805175781, "b": 666.12, "coord_origin": "TOPLEFT"}, "confidence": 0.9850137829780579, "cells": [{"id": 101, "text": "Additionally, the results show that OTSL has an advantage over HTML", "bbox": {"l": 149.709, "t": 617.72205, "r": 480.59479, "b": 630.255, "coord_origin": "TOPLEFT"}}, {"id": 102, "text": "when applied on a bigger data set like PubTables-1M and achieves significantly", "bbox": {"l": 134.765, "t": 629.6770300000001, "r": 480.59857000000005, "b": 642.2099900000001, "coord_origin": "TOPLEFT"}}, {"id": 103, "text": "improved scores. Finally, OTSL achieves faster inference due to fewer decoding", "bbox": {"l": 134.765, "t": 641.63203, "r": 480.59384000000006, "b": 654.16499, "coord_origin": "TOPLEFT"}}, {"id": 104, "text": "steps which is a result of the reduced sequence representation.", "bbox": {"l": 134.765, "t": 653.58704, "r": 405.7995, "b": 666.12, "coord_origin": "TOPLEFT"}}]}, "text": "Additionally, the results show that OTSL has an advantage over HTML when applied on a bigger data set like PubTables-1M and achieves significantly improved scores. Finally, OTSL achieves faster inference due to fewer decoding steps which is a result of the reduced sequence representation."}], "headers": [{"label": "page_header", "id": 0, "page_no": 0, "cluster": {"id": 0, "label": "page_header", "bbox": {"l": 193.7325897216797, "t": 91.49352999999996, "r": 447.54476999999997, "b": 102.78223000000003, "coord_origin": "TOPLEFT"}, "confidence": 0.9373533129692078, "cells": [{"id": 0, "text": "Optimized Table Tokenization for Table Structure Recognition", "bbox": {"l": 194.478, "t": 91.49352999999996, "r": 447.54476999999997, "b": 102.78223000000003, "coord_origin": "TOPLEFT"}}]}, "text": "Optimized Table Tokenization for Table Structure Recognition"}, {"label": "page_header", "id": 1, "page_no": 0, "cluster": {"id": 1, "label": "page_header", "bbox": {"l": 475.14013671875, "t": 91.49352999999996, "r": 480.59314, "b": 102.78223000000003, "coord_origin": "TOPLEFT"}, "confidence": 0.8858674764633179, "cells": [{"id": 1, "text": "9", "bbox": {"l": 475.98441, "t": 91.49352999999996, "r": 480.59314, "b": 102.78223000000003, "coord_origin": "TOPLEFT"}}]}, "text": "9"}]}}] \ No newline at end of file diff --git a/tests/data/groundtruth/docling_v2/PMC4031984-elife-02866.nxml.itxt b/tests/data/groundtruth/docling_v2/PMC4031984-elife-02866.nxml.itxt new file mode 100644 index 00000000..732b66f0 --- /dev/null +++ b/tests/data/groundtruth/docling_v2/PMC4031984-elife-02866.nxml.itxt @@ -0,0 +1,164 @@ +item-0 at level 0: unspecified: group _root_ + item-1 at level 1: title: Characterization of TSET, an anc ... idespread membrane trafficking complex + item-2 at level 1: paragraph: Jennifer Hirst; Cambridge Instit ... mbridge , Cambridge , United Kingdom + item-3 at level 1: text: The heterotetrameric AP and F-CO ... p://dx.doi.org/10.7554/eLife.02866.002 + item-4 at level 1: section_header: Introduction + item-5 at level 2: text: The evolution of eukaryotes some ... mbers of the AP/COPI subunit families. + item-6 at level 1: section_header: Diagrams of APs and F-COPI. + item-7 at level 2: text: (A) Structures of the assembled ... ements 1–4, Figure 1—source data 1, 2. + item-8 at level 1: section_header: Summary table of all subunits identified using reverse HHpred. + item-9 at level 2: text: The lighter shading indicates wh ... GI). The new complex is called ‘TSET’. + item-10 at level 1: section_header: The search for novel AP-related complexes + item-11 at level 2: text: Because we were unable to find a ... -based searching (Hirst et al., 2011). + item-12 at level 2: text: In addition to known proteins, o ... ly members are only 14.63% identical). + item-13 at level 1: section_header: TSET: a new trafficking complex + item-14 at level 2: text: To determine whether the four ne ... xcess, probably due to overexpression. + item-15 at level 2: text: Interestingly, two of the other ... r the newly identified heterotetramer. + item-16 at level 2: text: The other three proteins in the ... embrane and/or endosomal compartments. + item-17 at level 1: section_header: Characterisation of the TSET complex in Dictyostelium. + item-18 at level 2: text: (A) Western blots of axenic D. d ... nts 1 and 2, Figure 2; Videos 1 and 2. + item-19 at level 1: section_header: Characterisation of the TSET complex in Dictyostelium + item-20 at level 2: text: One of the key properties of coa ... lasma membrane) from a cytosolic pool. + item-21 at level 2: text: Silencing TPLATE in Arabidopsis ... ive without a functional TSET complex. + item-22 at level 2: text: Very recently, the discoverers o ... stelium produce a very mild phenotype. + item-23 at level 1: section_header: TSET is ancient and widespread in eukaryotes + item-24 at level 2: text: When TPLATE was discovered in Ar ... complex was present prior to the LECA. + item-25 at level 2: text: Although TSET is clearly ancient ... stinct from the known heterotetramers. + item-26 at level 2: text: Phylogenetic analysis of the TTR ... a et al., 2010; Asensio et al., 2013). + item-27 at level 2: text: Although TSET is deduced to have ... sted in our pre-opisthokont ancestors. + item-28 at level 1: section_header: Distribution of TSET subunits. + item-29 at level 2: text: (A) Coulson plot showing the dis ... data 1, Figure 3—figure supplement 1. + item-30 at level 1: section_header: Evolution of TSET. + item-31 at level 2: text: (A) Simplified diagram of the co ... also Figure 4—figure supplements 1–10. + item-32 at level 1: section_header: Phylogenetic analysis of TPLATE, ... obustly excluded from the β-COP clade. + item-33 at level 2: text: In this and all other figure sup ... es are denoted by symbols (see inset). + item-34 at level 1: section_header: Conclusions + item-35 at level 2: text: TSET is the latest addition to a ... nts) adding lineage-specific function. + item-36 at level 2: text: Studies on the muniscins may hel ... sms as the clathrin pathway took over. + item-37 at level 2: text: Thus, our bioinformatics tool, r ... to the history of the eukaryotic cell. + item-38 at level 1: section_header: Construction of the ‘reverse HHpred’ database + item-39 at level 2: text: The proteomes of various organis ... able to find the entire TSET complex. + item-40 at level 1: section_header: Data assimilation + item-41 at level 2: text: The large adaptor subunits share ... ptin), a shared homology is suggested. + item-42 at level 1: section_header: Dictyostelium: the search for TSPOON and TCUP + item-43 at level 2: text: While searching for genes encodi ... . purpureum TCUP) (www.dictybase.org). + item-44 at level 1: section_header: Dictyostelium expression constructs + item-45 at level 2: text: The σ-like (TSPOON) coding seque ... omoter (pDT61 and pDT58 respectively). + item-46 at level 1: section_header: Dictyostelium cell culture and transformation + item-47 at level 2: text: All of the methods used for cell ... at Bio-protocol (Hirst et al., 2015). + item-48 at level 2: text: D. discoideum Ax2-derived strain ... medium containing 10 µg/ml blasicidin. + item-49 at level 1: section_header: Dictyostelium microscopy and fractionation + item-50 at level 2: text: Cells were transformed with GFP ... N-GFP and A15_TSPOON expressing cells. + item-51 at level 2: text: For fractionation, cells express ... ody against GFP (Seaman et al., 2009). + item-52 at level 1: section_header: Dictyostelium pulldowns and proteomics + item-53 at level 2: text: Pulldowns were performed using D ... tham, MA) (Antrobus and Borner, 2011). + item-54 at level 2: text: Proteins that came down in the n ... were then log-transformed and plotted. + item-55 at level 1: section_header: Dictyostelium gene disruption + item-56 at level 2: text: The TSPOON disruption plasmid wa ... nding sites in pLPBLP, yielding pDT70. + item-57 at level 2: text: Growth of control vs mutant stra ... ing the resultant plaques (Kay, 1982). + item-58 at level 1: section_header: Endocytosis assays + item-59 at level 2: text: Membrane uptake was measured in ... time is 1/slope of the initial phase. + item-60 at level 2: text: Fluid phase uptake was measured ... otein content (Traynor and Kay, 2007). + item-61 at level 1: section_header: Comparative genomics + item-62 at level 2: text: Sequences from Arabidopsis thali ... t generator v1.5 (Field et al., 2013). + item-63 at level 1: section_header: Phylogenetic analysis + item-64 at level 2: text: Identified sequences were combin ... are available in Supplementary file 1. + item-65 at level 1: section_header: Homology modeling + item-66 at level 2: text: The Phyre v2.0 web server (Kelle ... alized using MacPyMOL (www.pymol.org). + item-67 at level 1: section_header: Figures + item-69 at level 1: picture + item-69 at level 2: caption: Figure 1. Diagrams of APs and F-COPI. (A) Structures of the assembled complexes. All six complexes are heterotetramers; the individual subunits are called adaptins in the APs (e.g., γ-adaptin) and COPs in COPI (e.g., γ-COP). The two large subunits in each complex are structurally similar to each other. They are arranged with their N-terminal domains in the core of the complex, and these domains are usually (but not always) followed by a flexible linker and an appendage domain. The medium subunits consist of an N-terminal longin-related domain followed by a C-terminal μ homology domain (MHD). The small subunits consist of a longin-related domain only. (B) Jpred secondary structure predictions of some of the known subunits (all from Homo sapiens), together with new family members from Dictyostelium discoideum (Dd) and Arabidopsis thaliana (At). See also Figure 1—figure supplements 1–4, Figure 1—source data 1, 2. DOI:http://dx.doi.org/10.7554/eLife.02866.003 + item-71 at level 1: picture + item-71 at level 2: caption: Figure 1—figure supplement 1. PDB entries used to search for adaptor-related proteins. DOI:http://dx.doi.org/10.7554/eLife.02866.006 + item-73 at level 1: picture + item-73 at level 2: caption: Figure 1—figure supplement 2. Summary table of all subunits identified using reverse HHpred. The lighter shading indicates where an orthologue was found either below the arbitrary cut-off, by using NCBI BLAST (see Figure 1—figure supplement 3), or by searching a genomic database (e.g., AP-1 μ1 |Naegr1|35900|, JGI). The new complex is called ‘TSET’. DOI:http://dx.doi.org/10.7554/eLife.02866.007 + item-75 at level 1: picture + item-75 at level 2: caption: Figure 1—figure supplement 3. Subunits that failed to be identified using reverse HHpred, but were identified by homology searching using NCBI BLAST. DOI:http://dx.doi.org/10.7554/eLife.02866.008 + item-77 at level 1: picture + item-77 at level 2: caption: Figure 1—figure supplement 4. TSET orthologues in different species. The orthologues were identified by reverse HHpred, except for those in italics, which were found by BLAST searching (NCBI) using closely related organisms. TTRAY1 and TTRAY2 were initially identified by proteomics in a complex with TSET, but could also have been predicted by reverse HHpred as closely related to β′-COP using the PDB structure, 3mkq_A. In all other organisms TTRAY1 and TTRAY2 were identified by NCBI BLAST (italics). Note that orthologues of TSAUCER in P. patens, and TTRAY 2 in M. pusilla were identified in Phytozome, which is a genomic database hosted by Joint Genome Institute (JGI). Note orthologues of TCUP in D. purpureum and TSPOON in D. discoideum were identified by searching genomic sequences using closely related sequences, and have been manually appended in DictyBase. In these cases corresponding sequences are not at present found at NCBI. Whilst S. moellendorffii and V. vinifera were included in the reverse HHpred database, they were not included in the Coulson plot. DOI:http://dx.doi.org/10.7554/eLife.02866.009 + item-79 at level 1: picture + item-79 at level 2: caption: Figure 1—figure supplement 5. Identification of ENTH/ANTH domain proteins and the AP complexes with which they associate, using reverse HHpred. Reverse HHpred searches were initiated using the key words ‘epsin’ or ‘ENTH’. The PDB structures used were: 1eyh_A (Chain A, Crystal Structure Of The Epsin N-Terminal Homology (Enth) Domain At 1.56 Angstrom Resolution); 1inz_A (Chain A, Solution Structure Of The Epsin N-Terminal Homology (Enth) Domain Of Human Epsin); 1xgw_A (Chain A, The Crystal Structure Of Human Enthoprotin N-Terminal Domain); 3onk_A (Chain A, Yeast Ent3_enth Domain), and the output was assimilated in Excel as described for the adaptors. The identity of the hits was determined using NCBI BLAST searching. Note that all of the organisms that have lost AP-4 have also lost its binding partner, tepsin. DOI:http://dx.doi.org/10.7554/eLife.02866.010 + item-81 at level 1: picture + item-81 at level 2: caption: Figure 2. Characterisation of the TSET complex in Dictyostelium. (A) Western blots of axenic D. discoideum expressing either GFP-tagged small subunit (σ-like) or free GFP, under the control of the Actin15 promoter, labelled with anti-GFP. The Ax2 parental cell strain was included as a control, and an antibody against the AP-2α subunit was used to demonstrate that equivalent amounts of protein were loaded. (B) Coomassie blue-stained gel of GFP-tagged small subunit and associated proteins immunoprecipitated with anti-GFP. The GFP-tagged protein is indicated with a red asterix. (C) iBAQ ratios (an estimate of molar ratios) for the proteins that consistently coprecipitated with the GFP-tagged small subunit. All appear to be equimolar with each other, and the higher ratios for the small (σ-like/TSPOON) subunit and GFP are likely to be a consequence of their overexpression, which we also saw in a repeat experiment in which we used the small subunit's own promoter (Figure 2—figure supplement 1). (D) Predicted structure of the N-terminal portion of D. discoideum TTRAY1, shown as a ribbon diagram. (E) Stills from live cell imaging of cells expressing either TSPOON-GFP or free GFP, using TIRF microscopy. The punctate labelling in the TSPOON-GFP-expressing cells indicates that some of the construct is associated with the plasma membrane. See Videos 1 and 2. (F) Western blots of extracts from cells expressing either TSPOON-GFP or free GFP. The post-nuclear supernatants (PNS) were centrifuged at high speed to generate supernatant (cytosol) and pellet fractions. Equal protein loadings were probed with anti-GFP. Whereas the GFP was exclusively cytosolic, a substantial proportion of TSPOON-GFP fractionated into the membrane-containing pellet. (G) Mean generation time (MGT) for control (Ax2) and TSPOON knockout cells. The knockout cells grew slightly faster than the control. (H) Differentiation of the Ax2 control strain and two TSPOON knockout strains (1725 and 1727). All three strains produced fruiting bodies upon starvation. (I) Assay for fluid phase endocytosis. The control and knockout strains took up FITC-dextran at similar rates. (J) Assay for endocytosis of membrane, labelled with FM1-43, showing the time taken to internalise the entire surface area. The knockout strains took significantly longer than the control (*p<0.05; **p<0.01). See also Figure 2—figure supplements 1 and 2, Figure 2; Videos 1 and 2. DOI:http://dx.doi.org/10.7554/eLife.02866.011 + item-83 at level 1: picture + item-83 at level 2: caption: Figure 2—figure supplement 1. Further characterisation of Dictyostelium TSET. (A) iBAQ ratios for the proteins that coprecipitated with TSPOON-GFP, normalized to the median abundance of all proteins across five experiments. ND = not detected. (B) Fluorescence and phase contrast micrographs of cells expressing GFP-tagged TSPOON under the control of its own promoter (Prom-TSPOON-GFP). The construct appears mainly cytosolic. (C) Homology modeling of TTRAYs from A. thaliana, D. discoideum, and N. gruberi, revealing two β-propeller domains followed by an α-solenoid. (D) Disruption of the TSPOON gene. PCR was used to amplify either the wild-type TSPOON gene (in Ax2) or the disrupted TSPOON gene. The resulting products were either left uncut (U) or digested with SmaI (S), which should not cut the wild-type gene, but should cleave the disrupted gene into three bands. Several clones are shown, including HM1725 (200/1 A1). (E) Spore viability after detergent treatment was used to test for integrity of the cellulosic spore and the ability to hatch in a timely manner. The control (Ax2) strain and the knockout (HM1725) strain both showed good viability. (F) Expansion rate of plaques on bacterial lawns. The rates for control (Ax2) and knockout (HM1725, 1727, and 1728) strains were similar initially, but by 2 days the control plaques were larger. (G) Micrographs of plaques from control and knockout strains. DOI:http://dx.doi.org/10.7554/eLife.02866.012 + item-85 at level 1: picture + item-85 at level 2: caption: Figure 2—figure supplement 2. Distribution of secG. DOI:http://dx.doi.org/10.7554/eLife.02866.013 + item-87 at level 1: picture + item-87 at level 2: caption: Figure 2—figure supplement 3. Distribution of vacuolins. DOI:http://dx.doi.org/10.7554/eLife.02866.014 + item-89 at level 1: picture + item-89 at level 2: caption: Video 1. Related to Figure 2. TIRF microscopy of D. discoideum expressing TSPOON-GFP, expressed off its own promoter in TSPOON knockout cells. One frame was collected every second. Dynamic puncta can be seen, indicating that the construct forms patches at the plasma membrane. DOI:http://dx.doi.org/10.7554/eLife.02866.015 + item-91 at level 1: picture + item-91 at level 2: caption: Video 2. Related to Figure 2. TIRF microscopy of D. discoideum expressing free GFP, driven by the Actin15 promoter in TSPOON knockout cells. One frame was collected every second. The signal is diffuse and cytosolic. DOI:http://dx.doi.org/10.7554/eLife.02866.016 + item-93 at level 1: picture + item-93 at level 2: caption: Figure 3. Distribution of TSET subunits. (A) Coulson plot showing the distribution of TSET in a diverse set of representative eukaryotes. Presence of the entire complex in at least four supergroups suggests its presence in the last eukaryotic common ancestor (LECA) with frequent secondary loss. Solid sectors indicate sequences identified and classified using BLAST and HMMer. Empty sectors indicate taxa in which no significant orthologues were identified. Filled sectors in the Holozoa and Fungi represent F-BAR domain-containing FCHo and Syp1, respectively. Taxon name abbreviations are inset. Names in bold indicate taxa with all six components. (B) Deduced evolutionary history of TSET as present in the LECA but independently lost multiple times, either partially or completely. See also Figure 3—source data 1, Figure 3—figure supplement 1. DOI:http://dx.doi.org/10.7554/eLife.02866.017 + item-95 at level 1: picture + item-95 at level 2: caption: Figure 3—figure supplement 1. Models used for phylogenetic analyses. WC = with COPI; WOC = without COPI. DOI:http://dx.doi.org/10.7554/eLife.02866.019 + item-97 at level 1: picture + item-97 at level 2: caption: Figure 4. Evolution of TSET. (A) Simplified diagram of the concatenated tree for TSET, APs, and COPI, based on Figure 4—figure supplement 8. Numbers indicate posterior probabilities for MrBayes and PhyloBayes and maxium-likelihood bootstrap values for PhyML and RAxML, in that order. (B) Schematic diagram of TSET. (C) Possible evolution of the three families of heterotetramers: TSET, APs, and COPI. We propose that the earliest ancestral complex was a likely a heterotrimer or a heterohexamer formed from two identical heterotrimers, containing large (red), small (yellow), and scaffolding (blue) subunits. All three of these proteins were composed of known ancient building blocks of the membrane-trafficking system (Vedovato et al., 2009): α-solenoid domains in both the large and scaffolding subunits; two β-propellers in the scaffolding subunit; and a longin domain forming the small subunit. The gene encoding the large subunit then duplicated and mutated to generate the two distinct types of large subunits (red and magenta), and the gene encoding the small subunit also duplicated and mutated (yellow and orange), with one of the two proteins (orange) acquiring a μ homology domain (MHD) to form the ancestral heterotetramer, as proposed by Boehm and Bonifacino (12). However, the scaffolding subunit remained a homodimer. Upon diversification into three separate families, the scaffolding subunit duplicated independently in TSET and COPI, giving rise to TTRAY1 and TTRAY2 in TSET, and to α- and β′-COP in COPI. COPI also acquired a new subunit, ε-COP (purple). The scaffolding subunit may have been lost in the ancestral AP complex, as indicated in the diagram; however, AP-5 is tightly associated with two other proteins, SPG11 and SPG15, and the relationship of SPG11 and SPG15 to TTRAY/B-COPI remains unresolved, so it is possible that SPG11 and SPG15 are highly divergent descendants of the original scaffolding subunits. The other AP complexes are free heterotetramers when in the cytosol, but membrane-associated AP-1 and AP-2 interact with another scaffold, clathrin; and AP-3 has also been proposed to interact transiently with a protein with similar architecture, Vps41 (Rehling et al., 1999; Cabrera et al., 2010; Asensio et al., 2013). So far no scaffold has been proposed for AP-4. Although the order of emergence of TSET and COP relative to adaptins is unresolved, our most recent analyses indicate that, contrary to previous reports (Hirst et al., 2011), AP-5 diverged basally within the adaptin clade, followed by AP-3, AP-4, and APs 1 and 2, all prior to the LECA. This still suggests a primordial bridging of the secretory and phagocytic systems prior to emergence of a trans-Golgi network. The muniscins arose much later, in ancestral opisthokonts, from a translocation of the TSET MHD-encoding sequence to a position immediately downstream from an F-BAR domain-encoding sequence. Another translocation occurred in plants, where an SH3 domain-coding sequence was inserted at the 3′ end of the TSAUCER-coding sequence. See also Figure 4—figure supplements 1–10. DOI:http://dx.doi.org/10.7554/eLife.02866.020 + item-99 at level 1: picture + item-99 at level 2: caption: Figure 4—figure supplement 1. Phylogenetic analysis of TPLATE, β-COP, and β-adaptin, with TPLATE robustly excluded from the β-COP clade. In this and all other figure supplements to Figure 4, AP subunits are boxed in blue, F-COPI subunits are boxed in red, and subunits of TSET are boxed in yellow. Node support for critical nodes is shown. Numbers indicate Bayesian posterior probabilities (MrBayes) and bootstrap support from Maximum-likelihood analysis (RAxML). Support values for other nodes are denoted by symbols (see inset). DOI:http://dx.doi.org/10.7554/eLife.02866.021 + item-101 at level 1: picture + item-101 at level 2: caption: Figure 4—figure supplement 2. Phylogenetic analysis of TPLATE and β-adaptin subunits (β-COP removed) showing, with weak support, that TPLATE is excluded from the adaptin clade. DOI:http://dx.doi.org/10.7554/eLife.02866.022 + item-103 at level 1: picture + item-103 at level 2: caption: Figure 4—figure supplement 3. Phylogenetic analysis of TSAUCER, γ-COP, and γαδεζ-adaptin subunits, with TCUP robustly excluded from the γ-COP clade, and weakly excluded from the adaptin clade. DOI:http://dx.doi.org/10.7554/eLife.02866.023 + item-105 at level 1: picture + item-105 at level 2: caption: Figure 4—figure supplement 4. Phylogenetic analysis of TSAUCER and γαδεζ-adaptin subunits (γ-COP removed), showing weak support for the exclusion of TSAUCER from the adaptin clade. DOI:http://dx.doi.org/10.7554/eLife.02866.024 + item-107 at level 1: picture + item-107 at level 2: caption: Figure 4—figure supplement 5. Phylogenetic analysis of TCUP, δ-COP, and μ-adaptin subunits, with TSAUCER robustly excluded from the δ-COP clade and weakly excluded from the adaptin clade. DOI:http://dx.doi.org/10.7554/eLife.02866.025 + item-109 at level 1: picture + item-109 at level 2: caption: Figure 4—figure supplement 6. Phylogenetic analysis of TCUP and μ-adaptin subunits (δ-COP removed), showing weak support for the exclusion of TCUP from the adaptin clade. DOI:http://dx.doi.org/10.7554/eLife.02866.026 + item-111 at level 1: picture + item-111 at level 2: caption: Figure 4—figure supplement 7. Phylogenetic analysis of TSPOON with ζ-COP and σ–adaptin subunits with moderate support for the exclusion of TSPOON from both the COPI and adaptin clades, in addition to moderate support for the monophyly of the TSPOON clade. DOI:http://dx.doi.org/10.7554/eLife.02866.027 + item-113 at level 1: picture + item-113 at level 2: caption: Figure 4—figure supplement 8. TSET is a phylogenetically distinct lineage from F-COPI and the AP complexes. Phylogenetic analysis of the heterotetrameric complexes: F-COPI (orange), TSET (purple), and AP (magenta, blue, red, green, and yellow for 5, 3, 1, 2, and 4, respectively), shows strong, weak, and moderate support for clades of each complex, respectively. Node support for critical nodes is shown. Numbers indicate Bayesian posterior probabilities (MrBayes and PhyloBayes) and bootstrap support from Maximum-likelihood analysis (PhyML and RAXML). Support values for other nodes are denoted by symbols (see inset). DOI:http://dx.doi.org/10.7554/eLife.02866.028 + item-115 at level 1: picture + item-115 at level 2: caption: Figure 4—figure supplement 9. Phylogenetic analysis of TTRAY1, TTRAY2, α-COP, and β′-COP. TTRAYs 1 and 2, and COPI α and β′, arose from separate gene duplications, indicating that the ancestral complex had only one such protein, although possibly present as two identical copies. Phylogenetic analysis of α- and β′-COPI (red), and TTRAYs 1 and 2 (yellow), shows a well supported COPI clade excluding all of the TTRAY1 and 2 sequences, suggesting that the duplications giving rise to these proteins occurred independently, and the utilization of two different outer coat members occurred through convergent evolution. Node support for critical nodes is shown. Numbers indicate Bayesian posterior probabilities (MrBayes) and bootstrap support from Maximum-likelihood analysis (RAxML). Support values for other nodes are denoted by symbols (see inset). DOI:http://dx.doi.org/10.7554/eLife.02866.029 + item-117 at level 1: picture + item-117 at level 2: caption: Figure 4—figure supplement 10. Muniscin family members identified by reverse HHpred, using the following PDB structures. 2V0O_A (Chain A, Fcho2 F-Bar Domain); 3 G9H_A (Chain A, Crystal Structure Of The C-Terminal Mu Homology Domain Of Syp1); 3G9G_A (Chain A, Crystal Structure Of The N-Terminal EfcF-Bar Domain Of Syp1). DOI:http://dx.doi.org/10.7554/eLife.02866.030 + item-118 at level 1: section_header: References + item-119 at level 1: list: group list + item-120 at level 2: list_item: C Aguado-Velasco; MS Bretscher. ... . Molecular Biology of the Cell (1999) + item-121 at level 2: list_item: R Antrobus; GHH Borner. Improved ... o-immunoprecipitation. PLOS ONE (2011) + item-122 at level 2: list_item: CS Asensio; DW Sirkis; JW Maas; ... ory pathway. Developmental Cell (2013) + item-123 at level 2: list_item: M Boehm; JS Bonifacino. Genetic ... ion from yeast to mammals. Gene (2002) + item-124 at level 2: list_item: M Cabrera; L Langemeyer; M Mari; ... ane tethering. The EMBO Journal (2010) + item-125 at level 2: list_item: C Camacho; G Coulouris; V Avagya ... pplications. BMC Bioinformatics (2009) + item-126 at level 2: list_item: T Carver; SR Harris; M Berriman; ... perimental data. Bioinformatics (2012) + item-127 at level 2: list_item: E Cocucci; F Aguet; S Boulant; T ... of a clathrin-coated pit. Cell (2012) + item-128 at level 2: list_item: JB Dacks; PP Poon; MC Field. Phy ... of the United States of America (2008) + item-129 at level 2: list_item: D Devos; S Dokudovskaya; F Alber ... ular architecture. PLOS Biology (2004) + item-130 at level 2: list_item: RC Edgar. MUSCLE: a multiple seq ... complexity. BMC Bioinformatics (2004) + item-131 at level 2: list_item: J Faix; L Kreppel; G Shaulsky; M ... system. Nucleic Acids Research (2004) + item-132 at level 2: list_item: HI Field; RMR Coulson; MC Field. ... t generator. BMC Bioinformatics (2013) + item-133 at level 2: list_item: MC Field; JB Dacks. First and la ... Current Opinion in Cell Biology (2009) + item-134 at level 2: list_item: A Gadeyne; C Sanchez-Rodriguez; ... ted endocytosis in plants. Cell (2014) + item-135 at level 2: list_item: D Gotthardt; HJ Warnatz; O Hensc ... . Molecular Biology of the Cell (2002) + item-136 at level 2: list_item: WM Henne; E Boucrot; M Meinecke; ... n-mediated endocytosis. Science (2010) + item-137 at level 2: list_item: J Hirst; LD Barlow; GC Francisco ... r protein complex. PLOS Biology (2011) + item-138 at level 2: list_item: J Hirst; C Irving; GHH Borner. A ... ive spastic paraplegia. Traffic (2013) + item-139 at level 2: list_item: J Hirst; RR Kay; D Traynor. Dict ... and Fractionation. Bio-protocol (2015) + item-140 at level 2: list_item: N Jenne; R Rauchenberger; U Hack ... ytosis. Journal of Cell Science (1998) + item-141 at level 2: list_item: RR Kay. cAMP and spore different ... of the United States of America (1982) + item-142 at level 2: list_item: RR Kay. Cell differentiation in ... hogens. Methods in Cell Biology (1987) + item-143 at level 2: list_item: LA Kelley; MJE Sternberg. Protei ... Phyre server. Nature Protocols (2009) + item-144 at level 2: list_item: D Knecht; KM Pang. Electroporati ... m. Methods in Molecular Biology (1995) + item-145 at level 2: list_item: VL Koumandou; B Wickstead; ML Gi ... chemistry and Molecular Biology (2013) + item-146 at level 2: list_item: N Lartillot; T Lepage; S Blanqua ... olecular dating. Bioinformatics (2009) + item-147 at level 2: list_item: JR Mayers; L Wang; J Pramanik; A ... of the United States of America (2013) + item-148 at level 2: list_item: MA Miller; W Pfeiffer; T Schwart ... ting Environments Workshop. GCE (2010) + item-149 at level 2: list_item: R Rauchenberger; U Hacker; J Mur ... tyostelium. Current Biology: CB (1997) + item-150 at level 2: list_item: P Rehling; T Darsow; DJ Katzmann ... 1 function. Nature Cell Biology (1999) + item-151 at level 2: list_item: A Reider; SL Barker; SK Mishra; ... ne tubulation. The EMBO Journal (2009) + item-152 at level 2: list_item: F Ronquist; JP Huelsenbeck. MrBa ... er mixed models. Bioinformatics (2003) + item-153 at level 2: list_item: A Schlacht; EK Herman; MJ Klute; ... Harbor Perspectives in Biology (2014) + item-154 at level 2: list_item: B Schwanhäusser; D Busse; N Li; ... gene expression control. Nature (2011) + item-155 at level 2: list_item: MNJ Seaman; ME Harbour; D Tatter ... TBC1D5. Journal of Cell Science (2009) + item-156 at level 2: list_item: MC Shina; R Müller; R Blau-Wasse ... Dictyostelium amoebae. PLOS ONE (2010) + item-157 at level 2: list_item: A Stamatakis. RAxML-VI-HPC: maxi ... nd mixed models. Bioinformatics (2006) + item-158 at level 2: list_item: D Traynor; RR Kay. Possible role ... tility. Journal of Cell Science (2007) + item-159 at level 2: list_item: PK Umasankar; S Sanker; JR Thiem ... patterning. Nature Cell Biology (2012) + item-160 at level 2: list_item: D Van Damme; S Coutuer; R De Ryc ... o coat proteins. The Plant Cell (2006) + item-161 at level 2: list_item: D Van Damme; A Gadeyne; M Vanstr ... of the United States of America (2011) + item-162 at level 2: list_item: M Vedovato; V Rossi; JB Dacks; F ... in protein family. BMC Genomics (2009) + item-163 at level 2: list_item: DM Veltman; G Akar; L Bosgraaf; ... ctyostelium discoideum. Plasmid (2009) \ No newline at end of file diff --git a/tests/data/groundtruth/docling_v2/PMC4031984-elife-02866.nxml.json b/tests/data/groundtruth/docling_v2/PMC4031984-elife-02866.nxml.json new file mode 100644 index 00000000..998ad37d --- /dev/null +++ b/tests/data/groundtruth/docling_v2/PMC4031984-elife-02866.nxml.json @@ -0,0 +1,2601 @@ +{ + "schema_name": "DoclingDocument", + "version": "1.0.0", + "name": "PMC4031984-elife-02866", + "origin": { + "mimetype": "text/xml", + "binary_hash": 1810678828668724211, + "filename": "PMC4031984-elife-02866.nxml" + }, + "furniture": { + "self_ref": "#/furniture", + "children": [], + "name": "_root_", + "label": "unspecified" + }, + "body": { + "self_ref": "#/body", + "children": [ + { + "$ref": "#/texts/0" + }, + { + "$ref": "#/texts/1" + }, + { + "$ref": "#/texts/2" + }, + { + "$ref": "#/texts/3" + }, + { + "$ref": "#/texts/5" + }, + { + "$ref": "#/texts/7" + }, + { + "$ref": "#/texts/9" + }, + { + "$ref": "#/texts/12" + }, + { + "$ref": "#/texts/14" + }, + { + "$ref": "#/texts/18" + }, + { + "$ref": "#/texts/22" + }, + { + "$ref": "#/texts/24" + }, + { + "$ref": "#/texts/27" + }, + { + "$ref": "#/texts/29" + }, + { + "$ref": "#/texts/33" + }, + { + "$ref": "#/texts/37" + }, + { + "$ref": "#/texts/39" + }, + { + "$ref": "#/texts/41" + }, + { + "$ref": "#/texts/43" + }, + { + "$ref": "#/texts/45" + }, + { + "$ref": "#/texts/48" + }, + { + "$ref": "#/texts/51" + }, + { + "$ref": "#/texts/54" + }, + { + "$ref": "#/texts/57" + }, + { + "$ref": "#/texts/60" + }, + { + "$ref": "#/texts/62" + }, + { + "$ref": "#/texts/64" + }, + { + "$ref": "#/texts/66" + }, + { + "$ref": "#/texts/67" + }, + { + "$ref": "#/pictures/0" + }, + { + "$ref": "#/texts/68" + }, + { + "$ref": "#/pictures/1" + }, + { + "$ref": "#/texts/69" + }, + { + "$ref": "#/pictures/2" + }, + { + "$ref": "#/texts/70" + }, + { + "$ref": "#/pictures/3" + }, + { + "$ref": "#/texts/71" + }, + { + "$ref": "#/pictures/4" + }, + { + "$ref": "#/texts/72" + }, + { + "$ref": "#/pictures/5" + }, + { + "$ref": "#/texts/73" + }, + { + "$ref": "#/pictures/6" + }, + { + "$ref": "#/texts/74" + }, + { + "$ref": "#/pictures/7" + }, + { + "$ref": "#/texts/75" + }, + { + "$ref": "#/pictures/8" + }, + { + "$ref": "#/texts/76" + }, + { + "$ref": "#/pictures/9" + }, + { + "$ref": "#/texts/77" + }, + { + "$ref": "#/pictures/10" + }, + { + "$ref": "#/texts/78" + }, + { + "$ref": "#/pictures/11" + }, + { + "$ref": "#/texts/79" + }, + { + "$ref": "#/pictures/12" + }, + { + "$ref": "#/texts/80" + }, + { + "$ref": "#/pictures/13" + }, + { + "$ref": "#/texts/81" + }, + { + "$ref": "#/pictures/14" + }, + { + "$ref": "#/texts/82" + }, + { + "$ref": "#/pictures/15" + }, + { + "$ref": "#/texts/83" + }, + { + "$ref": "#/pictures/16" + }, + { + "$ref": "#/texts/84" + }, + { + "$ref": "#/pictures/17" + }, + { + "$ref": "#/texts/85" + }, + { + "$ref": "#/pictures/18" + }, + { + "$ref": "#/texts/86" + }, + { + "$ref": "#/pictures/19" + }, + { + "$ref": "#/texts/87" + }, + { + "$ref": "#/pictures/20" + }, + { + "$ref": "#/texts/88" + }, + { + "$ref": "#/pictures/21" + }, + { + "$ref": "#/texts/89" + }, + { + "$ref": "#/pictures/22" + }, + { + "$ref": "#/texts/90" + }, + { + "$ref": "#/pictures/23" + }, + { + "$ref": "#/texts/91" + }, + { + "$ref": "#/pictures/24" + }, + { + "$ref": "#/texts/92" + }, + { + "$ref": "#/groups/0" + } + ], + "name": "_root_", + "label": "unspecified" + }, + "groups": [ + { + "self_ref": "#/groups/0", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/93" + }, + { + "$ref": "#/texts/94" + }, + { + "$ref": "#/texts/95" + }, + { + "$ref": "#/texts/96" + }, + { + "$ref": "#/texts/97" + }, + { + "$ref": "#/texts/98" + }, + { + "$ref": "#/texts/99" + }, + { + "$ref": "#/texts/100" + }, + { + "$ref": "#/texts/101" + }, + { + "$ref": "#/texts/102" + }, + { + "$ref": "#/texts/103" + }, + { + "$ref": "#/texts/104" + }, + { + "$ref": "#/texts/105" + }, + { + "$ref": "#/texts/106" + }, + { + "$ref": "#/texts/107" + }, + { + "$ref": "#/texts/108" + }, + { + "$ref": "#/texts/109" + }, + { + "$ref": "#/texts/110" + }, + { + "$ref": "#/texts/111" + }, + { + "$ref": "#/texts/112" + }, + { + "$ref": "#/texts/113" + }, + { + "$ref": "#/texts/114" + }, + { + "$ref": "#/texts/115" + }, + { + "$ref": "#/texts/116" + }, + { + "$ref": "#/texts/117" + }, + { + "$ref": "#/texts/118" + }, + { + "$ref": "#/texts/119" + }, + { + "$ref": "#/texts/120" + }, + { + "$ref": "#/texts/121" + }, + { + "$ref": "#/texts/122" + }, + { + "$ref": "#/texts/123" + }, + { + "$ref": "#/texts/124" + }, + { + "$ref": "#/texts/125" + }, + { + "$ref": "#/texts/126" + }, + { + "$ref": "#/texts/127" + }, + { + "$ref": "#/texts/128" + }, + { + "$ref": "#/texts/129" + }, + { + "$ref": "#/texts/130" + }, + { + "$ref": "#/texts/131" + }, + { + "$ref": "#/texts/132" + }, + { + "$ref": "#/texts/133" + }, + { + "$ref": "#/texts/134" + }, + { + "$ref": "#/texts/135" + }, + { + "$ref": "#/texts/136" + } + ], + "name": "list", + "label": "list" + } + ], + "texts": [ + { + "self_ref": "#/texts/0", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "title", + "prov": [], + "orig": "Characterization of TSET, an ancient and widespread membrane trafficking complex", + "text": "Characterization of TSET, an ancient and widespread membrane trafficking complex" + }, + { + "self_ref": "#/texts/1", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "paragraph", + "prov": [], + "orig": "Jennifer Hirst; Cambridge Institute for Medical Research , University of Cambridge , Cambridge , United Kingdom; Alexander Schlacht; Department of Cell Biology , University of Alberta , Edmonton , Canada; John P Norcott; Department of Engineering , University of Cambridge , Cambridge , United Kingdom; David Traynor; Cell Biology , MRC Laboratory of Molecular Biology , Cambridge , United Kingdom; Gareth Bloomfield; Cell Biology , MRC Laboratory of Molecular Biology , Cambridge , United Kingdom; Robin Antrobus; Cambridge Institute for Medical Research , University of Cambridge , Cambridge , United Kingdom; Robert R Kay; Cell Biology , MRC Laboratory of Molecular Biology , Cambridge , United Kingdom; Joel B Dacks; Department of Cell Biology , University of Alberta , Edmonton , Canada; Margaret S Robinson; Cambridge Institute for Medical Research , University of Cambridge , Cambridge , United Kingdom", + "text": "Jennifer Hirst; Cambridge Institute for Medical Research , University of Cambridge , Cambridge , United Kingdom; Alexander Schlacht; Department of Cell Biology , University of Alberta , Edmonton , Canada; John P Norcott; Department of Engineering , University of Cambridge , Cambridge , United Kingdom; David Traynor; Cell Biology , MRC Laboratory of Molecular Biology , Cambridge , United Kingdom; Gareth Bloomfield; Cell Biology , MRC Laboratory of Molecular Biology , Cambridge , United Kingdom; Robin Antrobus; Cambridge Institute for Medical Research , University of Cambridge , Cambridge , United Kingdom; Robert R Kay; Cell Biology , MRC Laboratory of Molecular Biology , Cambridge , United Kingdom; Joel B Dacks; Department of Cell Biology , University of Alberta , Edmonton , Canada; Margaret S Robinson; Cambridge Institute for Medical Research , University of Cambridge , Cambridge , United Kingdom" + }, + { + "self_ref": "#/texts/2", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "The heterotetrameric AP and F-COPI complexes help to define the cellular map of modern eukaryotes. To search for related machinery, we developed a structure-based bioinformatics tool, and identified the core subunits of TSET, a 'missing link' between the APs and COPI. Studies in Dictyostelium indicate that TSET is a heterohexamer, with two associated scaffolding proteins. TSET is non-essential in Dictyostelium , but may act in plasma membrane turnover, and is essentially identical to the recently described TPLATE complex, TPC. However, whereas TPC was reported to be plant-specific, we can identify a full or partial complex in every eukaryotic supergroup. An evolutionary path can be deduced from the earliest origins of the heterotetramer/scaffold coat to its multiple manifestations in modern organisms, including the mammalian muniscins, descendants of the TSET medium subunits. Thus, we have uncovered the machinery for an ancient and widespread pathway, which provides new insights into early eukaryotic evolution. DOI: http://dx.doi.org/10.7554/eLife.02866.001 eLife digest Eukaryotes make up almost all of the life on Earth that we can see around us, and include organisms as diverse as animals, fungi, plants, slime moulds, and seaweeds. The defining feature of eukaryotes is that, unlike nearly all bacteria, they have membrane-bound compartments\u2014such as the nucleus\u2014within their cells. Moving molecules, such as proteins, between these compartments is essential for living eukaryotic cells, and these molecules are usually trafficked inside membrane-bound packages called vesicles. Two similar sets of protein complexes\u2014each containing four different subunits\u2014ensure that the molecules are packaged inside the correct vesicles. However, it is not clear how these two protein complexes (called the AP complexes and the COPI complex) are related to each other, and when and where they originated in the history of life. Now, Hirst, Schlacht et al. have discovered a new\u2014but very ancient\u2013protein complex that they refer to as the \u2018missing link\u2019 between the AP and COPI complexes. The four subunits inside this new complex were found by searching for proteins with shapes that were similar to those of the AP and COPI proteins, rather than just searching for proteins with similar sequences of amino acids. This approach identified related protein subunits in groups as diverse as plants and slime moulds, which suggests that this protein complex evolved in the earliest of the eukaryotes. The four subunits identified in a slime mould were confirmed to interact, and also shown to bind to the plasma membrane of living cells. One of the subunits had already been named TPLATE, so Hirst, Schlacht et al. decided to call the complex TSET; the other three subunits were named TSAUCER, TCUP and TSPOON, and two other proteins that interacted with the complex were both called TTRAY. While most of the TSET complex itself has been lost from humans and other animals, one of subunit appears to have evolved into a family of proteins that help molecules get into cells. The discovery of TSET reveals another major player in vesicle-trafficking that is not only important for our understanding of how modern eukaryotes work, but also how ancient eukaryotes evolved. DOI: http://dx.doi.org/10.7554/eLife.02866.002", + "text": "The heterotetrameric AP and F-COPI complexes help to define the cellular map of modern eukaryotes. To search for related machinery, we developed a structure-based bioinformatics tool, and identified the core subunits of TSET, a 'missing link' between the APs and COPI. Studies in Dictyostelium indicate that TSET is a heterohexamer, with two associated scaffolding proteins. TSET is non-essential in Dictyostelium , but may act in plasma membrane turnover, and is essentially identical to the recently described TPLATE complex, TPC. However, whereas TPC was reported to be plant-specific, we can identify a full or partial complex in every eukaryotic supergroup. An evolutionary path can be deduced from the earliest origins of the heterotetramer/scaffold coat to its multiple manifestations in modern organisms, including the mammalian muniscins, descendants of the TSET medium subunits. Thus, we have uncovered the machinery for an ancient and widespread pathway, which provides new insights into early eukaryotic evolution. DOI: http://dx.doi.org/10.7554/eLife.02866.001 eLife digest Eukaryotes make up almost all of the life on Earth that we can see around us, and include organisms as diverse as animals, fungi, plants, slime moulds, and seaweeds. The defining feature of eukaryotes is that, unlike nearly all bacteria, they have membrane-bound compartments\u2014such as the nucleus\u2014within their cells. Moving molecules, such as proteins, between these compartments is essential for living eukaryotic cells, and these molecules are usually trafficked inside membrane-bound packages called vesicles. Two similar sets of protein complexes\u2014each containing four different subunits\u2014ensure that the molecules are packaged inside the correct vesicles. However, it is not clear how these two protein complexes (called the AP complexes and the COPI complex) are related to each other, and when and where they originated in the history of life. Now, Hirst, Schlacht et al. have discovered a new\u2014but very ancient\u2013protein complex that they refer to as the \u2018missing link\u2019 between the AP and COPI complexes. The four subunits inside this new complex were found by searching for proteins with shapes that were similar to those of the AP and COPI proteins, rather than just searching for proteins with similar sequences of amino acids. This approach identified related protein subunits in groups as diverse as plants and slime moulds, which suggests that this protein complex evolved in the earliest of the eukaryotes. The four subunits identified in a slime mould were confirmed to interact, and also shown to bind to the plasma membrane of living cells. One of the subunits had already been named TPLATE, so Hirst, Schlacht et al. decided to call the complex TSET; the other three subunits were named TSAUCER, TCUP and TSPOON, and two other proteins that interacted with the complex were both called TTRAY. While most of the TSET complex itself has been lost from humans and other animals, one of subunit appears to have evolved into a family of proteins that help molecules get into cells. The discovery of TSET reveals another major player in vesicle-trafficking that is not only important for our understanding of how modern eukaryotes work, but also how ancient eukaryotes evolved. DOI: http://dx.doi.org/10.7554/eLife.02866.002" + }, + { + "self_ref": "#/texts/3", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/4" + } + ], + "label": "section_header", + "prov": [], + "orig": "Introduction", + "text": "Introduction", + "level": 1 + }, + { + "self_ref": "#/texts/4", + "parent": { + "$ref": "#/texts/3" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "The evolution of eukaryotes some 2 billion years ago radically changed the biosphere, giving rise to nearly all visible life on Earth. Key to this transition was the ability to generate intracellular membrane compartments and the trafficking pathways that interconnect them, mediated in part by the heterotetrameric adaptor complexes, APs 1\u20135 and COPI (Dacks et al., 2008; Field and Dacks, 2009; Hirst et al., 2011; Koumandou et al., 2013). In mammals, APs 1 and 2 and COPI are essential for viability, while mutations in the other APs cause severe genetic disorders (Boehm and Bonifacino, 2002; Hirst et al., 2013). The AP and COPI complexes share a similar architecture, due to common ancestry predating the last eukaryotic common ancestor (LECA). All six complexes consist of two large subunits of \u223c100 kD, a medium subunit of \u223c50 kD, and a small subunit of \u223c20 kD (Figure 1A). Their function is to select cargo for packaging into transport vesicles, and together with membrane-deforming scaffolding proteins such as clathrin and the COPI B-subcomplex, they facilitate the trafficking of proteins and lipids between membrane compartments in the secretory and endocytic pathways. The recent discovery of the evolutionarily ancient AP-5 complex, found on late endosomes and lysosomes, added a new dimension to models of the endomembrane system, and raised the possibility that other undetected membrane-trafficking complexes might exist (Hirst et al., 2011). Therefore, we set out in search of additional members of the AP/COPI subunit families.", + "text": "The evolution of eukaryotes some 2 billion years ago radically changed the biosphere, giving rise to nearly all visible life on Earth. Key to this transition was the ability to generate intracellular membrane compartments and the trafficking pathways that interconnect them, mediated in part by the heterotetrameric adaptor complexes, APs 1\u20135 and COPI (Dacks et al., 2008; Field and Dacks, 2009; Hirst et al., 2011; Koumandou et al., 2013). In mammals, APs 1 and 2 and COPI are essential for viability, while mutations in the other APs cause severe genetic disorders (Boehm and Bonifacino, 2002; Hirst et al., 2013). The AP and COPI complexes share a similar architecture, due to common ancestry predating the last eukaryotic common ancestor (LECA). All six complexes consist of two large subunits of \u223c100 kD, a medium subunit of \u223c50 kD, and a small subunit of \u223c20 kD (Figure 1A). Their function is to select cargo for packaging into transport vesicles, and together with membrane-deforming scaffolding proteins such as clathrin and the COPI B-subcomplex, they facilitate the trafficking of proteins and lipids between membrane compartments in the secretory and endocytic pathways. The recent discovery of the evolutionarily ancient AP-5 complex, found on late endosomes and lysosomes, added a new dimension to models of the endomembrane system, and raised the possibility that other undetected membrane-trafficking complexes might exist (Hirst et al., 2011). Therefore, we set out in search of additional members of the AP/COPI subunit families." + }, + { + "self_ref": "#/texts/5", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/6" + } + ], + "label": "section_header", + "prov": [], + "orig": "Diagrams of APs and F-COPI.", + "text": "Diagrams of APs and F-COPI.", + "level": 1 + }, + { + "self_ref": "#/texts/6", + "parent": { + "$ref": "#/texts/5" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "(A) Structures of the assembled complexes. All six complexes are heterotetramers; the individual subunits are called adaptins in the APs (e.g., \u03b3-adaptin) and COPs in COPI (e.g., \u03b3-COP). The two large subunits in each complex are structurally similar to each other. They are arranged with their N-terminal domains in the core of the complex, and these domains are usually (but not always) followed by a flexible linker and an appendage domain. The medium subunits consist of an N-terminal longin-related domain followed by a C-terminal \u03bc homology domain (MHD). The small subunits consist of a longin-related domain only. (B) Jpred secondary structure predictions of some of the known subunits (all from Homo sapiens), together with new family members from Dictyostelium discoideum (Dd) and Arabidopsis thaliana (At). See also Figure 1\u2014figure supplements 1\u20134, Figure 1\u2014source data 1, 2.", + "text": "(A) Structures of the assembled complexes. All six complexes are heterotetramers; the individual subunits are called adaptins in the APs (e.g., \u03b3-adaptin) and COPs in COPI (e.g., \u03b3-COP). The two large subunits in each complex are structurally similar to each other. They are arranged with their N-terminal domains in the core of the complex, and these domains are usually (but not always) followed by a flexible linker and an appendage domain. The medium subunits consist of an N-terminal longin-related domain followed by a C-terminal \u03bc homology domain (MHD). The small subunits consist of a longin-related domain only. (B) Jpred secondary structure predictions of some of the known subunits (all from Homo sapiens), together with new family members from Dictyostelium discoideum (Dd) and Arabidopsis thaliana (At). See also Figure 1\u2014figure supplements 1\u20134, Figure 1\u2014source data 1, 2." + }, + { + "self_ref": "#/texts/7", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/8" + } + ], + "label": "section_header", + "prov": [], + "orig": "Summary table of all subunits identified using reverse HHpred.", + "text": "Summary table of all subunits identified using reverse HHpred.", + "level": 1 + }, + { + "self_ref": "#/texts/8", + "parent": { + "$ref": "#/texts/7" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "The lighter shading indicates where an orthologue was found either below the arbitrary cut-off, by using NCBI BLAST (see Figure 1\u2014figure supplement 3), or by searching a genomic database (e.g., AP-1 \u03bc1 |Naegr1|35900|, JGI). The new complex is called \u2018TSET\u2019.", + "text": "The lighter shading indicates where an orthologue was found either below the arbitrary cut-off, by using NCBI BLAST (see Figure 1\u2014figure supplement 3), or by searching a genomic database (e.g., AP-1 \u03bc1 |Naegr1|35900|, JGI). The new complex is called \u2018TSET\u2019." + }, + { + "self_ref": "#/texts/9", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/10" + }, + { + "$ref": "#/texts/11" + } + ], + "label": "section_header", + "prov": [], + "orig": "The search for novel AP-related complexes", + "text": "The search for novel AP-related complexes", + "level": 1 + }, + { + "self_ref": "#/texts/10", + "parent": { + "$ref": "#/texts/9" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "Because we were unable to find any promising candidates for new AP/COPI-related machinery using sequence-based searches, we developed a more sensitive tool, designed to search for structural similarity rather than sequence similarity. Using HHpred to analyse every protein in the RefSeq database from 15 organisms, covering a broad span of eukaryotic diversity, we built a \u2018reverse HHpred\u2019 database. This database contains potential homologues for >300,000 different proteins (http://reversehhpred.cimr.cam.ac.uk), and can be searched with structures from the Protein Data Bank (PDB). As proof of principle, we used this database to identify all four subunits of the AP-5 complex (Figure 1\u2014figure supplements 1 and 2; Figure 1\u2014source data 1, 2), even though in our previous study only the medium subunit was initially detectable by bioinformatics-based searching (Hirst et al., 2011).", + "text": "Because we were unable to find any promising candidates for new AP/COPI-related machinery using sequence-based searches, we developed a more sensitive tool, designed to search for structural similarity rather than sequence similarity. Using HHpred to analyse every protein in the RefSeq database from 15 organisms, covering a broad span of eukaryotic diversity, we built a \u2018reverse HHpred\u2019 database. This database contains potential homologues for >300,000 different proteins (http://reversehhpred.cimr.cam.ac.uk), and can be searched with structures from the Protein Data Bank (PDB). As proof of principle, we used this database to identify all four subunits of the AP-5 complex (Figure 1\u2014figure supplements 1 and 2; Figure 1\u2014source data 1, 2), even though in our previous study only the medium subunit was initially detectable by bioinformatics-based searching (Hirst et al., 2011)." + }, + { + "self_ref": "#/texts/11", + "parent": { + "$ref": "#/texts/9" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "In addition to known proteins, our reverse HHpred database revealed novel candidates for each of the four subunit families, with orthologues present in diverse eukaryotes including plants and Dictyostelium (Figure 1\u2014figure supplements 2\u20134, Figure 1\u2014source data 1, 2). Secondary structure predictions confirmed that the new family members have similar folds to their counterparts in the AP complexes and COPI (Figure 1B). Only one of these proteins had been characterised functionally: TPLATE (NP_186827.2), an Arabidopsis protein related to the AP \u03b2 subunits and \u03b2-COP, found in a microscopy-based screen for proteins involved in mitosis and localised to the cell plate (Van Damme et al., 2006; Van Damme et al., 2011). There is some variability between orthologous subunits in different organisms: for instance, Arabidopsis has added an SH3 domain to the C-terminal end of its \u2018\u03b3\u03b1\u03b4\u03b5\u03b6\u2019 large subunit, while Dictyostelium has lost the \u03bc homology domain (MHD) at the end of its medium subunit; and in general there seems to be much less selective pressure on these genes than on those encoding other AP/COPI family members (e.g., the AP-1 \u03b21 subunits are 58.01% identical in Dictyostelium and Arabidopsis, while the new \u03b2 family members are only 14.63% identical).", + "text": "In addition to known proteins, our reverse HHpred database revealed novel candidates for each of the four subunit families, with orthologues present in diverse eukaryotes including plants and Dictyostelium (Figure 1\u2014figure supplements 2\u20134, Figure 1\u2014source data 1, 2). Secondary structure predictions confirmed that the new family members have similar folds to their counterparts in the AP complexes and COPI (Figure 1B). Only one of these proteins had been characterised functionally: TPLATE (NP_186827.2), an Arabidopsis protein related to the AP \u03b2 subunits and \u03b2-COP, found in a microscopy-based screen for proteins involved in mitosis and localised to the cell plate (Van Damme et al., 2006; Van Damme et al., 2011). There is some variability between orthologous subunits in different organisms: for instance, Arabidopsis has added an SH3 domain to the C-terminal end of its \u2018\u03b3\u03b1\u03b4\u03b5\u03b6\u2019 large subunit, while Dictyostelium has lost the \u03bc homology domain (MHD) at the end of its medium subunit; and in general there seems to be much less selective pressure on these genes than on those encoding other AP/COPI family members (e.g., the AP-1 \u03b21 subunits are 58.01% identical in Dictyostelium and Arabidopsis, while the new \u03b2 family members are only 14.63% identical)." + }, + { + "self_ref": "#/texts/12", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/13" + }, + { + "$ref": "#/texts/16" + }, + { + "$ref": "#/texts/17" + } + ], + "label": "section_header", + "prov": [], + "orig": "TSET: a new trafficking complex", + "text": "TSET: a new trafficking complex", + "level": 1 + }, + { + "self_ref": "#/texts/13", + "parent": { + "$ref": "#/texts/12" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "To determine whether the four new candidate subunits identified in our searches actually form a complex, we transformed D. discoideum with a GFP-tagged version of its small (\u03c3-like) subunit (Figure 2A), and then used anti-GFP to immunoprecipitate the construct and any associated proteins from cell extracts (Figure 2B). Precipitates were analysed by mass spectrometry, yielding ten proteins considered to be specifically immunoprecipitated (Figure 2\u2014figure supplement 1a). Two of these were the small subunit itself and its GFP tag. Three others were the remaining candidate subunits: XP_639969.1 (the \u03b2-like subunit), XP_640471.1 (the \u03b3\u03b1\u03b4\u03b5\u03b6-like subunit), and XP_629998.1 (the \u03bc-like subunit), confirming their presence in a complex. Quantification by iBAQ indicated that these three proteins were present in the immunoprecipitate at approximately equimolar levels (Figure 2C, Figure 2\u2014figure supplement 1A), while the small subunit and GFP tag were in \u223c15-fold molar excess, probably due to overexpression.", + "text": "To determine whether the four new candidate subunits identified in our searches actually form a complex, we transformed D. discoideum with a GFP-tagged version of its small (\u03c3-like) subunit (Figure 2A), and then used anti-GFP to immunoprecipitate the construct and any associated proteins from cell extracts (Figure 2B). Precipitates were analysed by mass spectrometry, yielding ten proteins considered to be specifically immunoprecipitated (Figure 2\u2014figure supplement 1a). Two of these were the small subunit itself and its GFP tag. Three others were the remaining candidate subunits: XP_639969.1 (the \u03b2-like subunit), XP_640471.1 (the \u03b3\u03b1\u03b4\u03b5\u03b6-like subunit), and XP_629998.1 (the \u03bc-like subunit), confirming their presence in a complex. Quantification by iBAQ indicated that these three proteins were present in the immunoprecipitate at approximately equimolar levels (Figure 2C, Figure 2\u2014figure supplement 1A), while the small subunit and GFP tag were in \u223c15-fold molar excess, probably due to overexpression." + }, + { + "self_ref": "#/texts/14", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/15" + } + ], + "label": "section_header", + "prov": [], + "orig": "Characterisation of the TSET complex in Dictyostelium.", + "text": "Characterisation of the TSET complex in Dictyostelium.", + "level": 1 + }, + { + "self_ref": "#/texts/15", + "parent": { + "$ref": "#/texts/14" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "(A) Western blots of axenic D. discoideum expressing either GFP-tagged small subunit (\u03c3-like) or free GFP, under the control of the Actin15 promoter, labelled with anti-GFP. The Ax2 parental cell strain was included as a control, and an antibody against the AP-2\u03b1 subunit was used to demonstrate that equivalent amounts of protein were loaded. (B) Coomassie blue-stained gel of GFP-tagged small subunit and associated proteins immunoprecipitated with anti-GFP. The GFP-tagged protein is indicated with a red asterix. (C) iBAQ ratios (an estimate of molar ratios) for the proteins that consistently coprecipitated with the GFP-tagged small subunit. All appear to be equimolar with each other, and the higher ratios for the small (\u03c3-like/TSPOON) subunit and GFP are likely to be a consequence of their overexpression, which we also saw in a repeat experiment in which we used the small subunit's own promoter (Figure 2\u2014figure supplement 1). (D) Predicted structure of the N-terminal portion of D. discoideum TTRAY1, shown as a ribbon diagram. (E) Stills from live cell imaging of cells expressing either TSPOON-GFP or free GFP, using TIRF microscopy. The punctate labelling in the TSPOON-GFP-expressing cells indicates that some of the construct is associated with the plasma membrane. See Videos 1 and 2. (F) Western blots of extracts from cells expressing either TSPOON-GFP or free GFP. The post-nuclear supernatants (PNS) were centrifuged at high speed to generate supernatant (cytosol) and pellet fractions. Equal protein loadings were probed with anti-GFP. Whereas the GFP was exclusively cytosolic, a substantial proportion of TSPOON-GFP fractionated into the membrane-containing pellet. (G) Mean generation time (MGT) for control (Ax2) and TSPOON knockout cells. The knockout cells grew slightly faster than the control. (H) Differentiation of the Ax2 control strain and two TSPOON knockout strains (1725 and 1727). All three strains produced fruiting bodies upon starvation. (I) Assay for fluid phase endocytosis. The control and knockout strains took up FITC-dextran at similar rates. (J) Assay for endocytosis of membrane, labelled with FM1-43, showing the time taken to internalise the entire surface area. The knockout strains took significantly longer than the control (*p<0.05; **p<0.01). See also Figure 2\u2014figure supplements 1 and 2, Figure 2; Videos 1 and 2.", + "text": "(A) Western blots of axenic D. discoideum expressing either GFP-tagged small subunit (\u03c3-like) or free GFP, under the control of the Actin15 promoter, labelled with anti-GFP. The Ax2 parental cell strain was included as a control, and an antibody against the AP-2\u03b1 subunit was used to demonstrate that equivalent amounts of protein were loaded. (B) Coomassie blue-stained gel of GFP-tagged small subunit and associated proteins immunoprecipitated with anti-GFP. The GFP-tagged protein is indicated with a red asterix. (C) iBAQ ratios (an estimate of molar ratios) for the proteins that consistently coprecipitated with the GFP-tagged small subunit. All appear to be equimolar with each other, and the higher ratios for the small (\u03c3-like/TSPOON) subunit and GFP are likely to be a consequence of their overexpression, which we also saw in a repeat experiment in which we used the small subunit's own promoter (Figure 2\u2014figure supplement 1). (D) Predicted structure of the N-terminal portion of D. discoideum TTRAY1, shown as a ribbon diagram. (E) Stills from live cell imaging of cells expressing either TSPOON-GFP or free GFP, using TIRF microscopy. The punctate labelling in the TSPOON-GFP-expressing cells indicates that some of the construct is associated with the plasma membrane. See Videos 1 and 2. (F) Western blots of extracts from cells expressing either TSPOON-GFP or free GFP. The post-nuclear supernatants (PNS) were centrifuged at high speed to generate supernatant (cytosol) and pellet fractions. Equal protein loadings were probed with anti-GFP. Whereas the GFP was exclusively cytosolic, a substantial proportion of TSPOON-GFP fractionated into the membrane-containing pellet. (G) Mean generation time (MGT) for control (Ax2) and TSPOON knockout cells. The knockout cells grew slightly faster than the control. (H) Differentiation of the Ax2 control strain and two TSPOON knockout strains (1725 and 1727). All three strains produced fruiting bodies upon starvation. (I) Assay for fluid phase endocytosis. The control and knockout strains took up FITC-dextran at similar rates. (J) Assay for endocytosis of membrane, labelled with FM1-43, showing the time taken to internalise the entire surface area. The knockout strains took significantly longer than the control (*p<0.05; **p<0.01). See also Figure 2\u2014figure supplements 1 and 2, Figure 2; Videos 1 and 2." + }, + { + "self_ref": "#/texts/16", + "parent": { + "$ref": "#/texts/12" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "Interestingly, two of the other proteins in the immunoprecipitate, also approximately equimolar to the three coprecipitating subunits, were XP_642289.1 and XP_637150.1. Both proteins are predicted to consist of two N-terminal \u03b2-propeller domains followed by an \u03b1-solenoid (Figure 2D, Figure 2\u2014figure supplement 1C). This type of architecture is found in several coat components, including clathrin heavy chain, SPG11 (associated with AP-5), the \u03b1-COP and \u03b2\u2032-COP subunits of the COPI coat (B-COPI), and the Sec31 subunit of the COPII coat (Devos et al., 2004). HHpred analyses show that the closest matches for both XP_642289.1 and XP_637150.1 are \u03b2'-COP, followed by \u03b1-COP. Probable orthologues of XP_642289.1 and XP_637150.1 can be found in other organisms that have the four core subunits (Figure 1\u2014figure supplement 4). Because proteins with this architecture often act as a coat for transport vesicles, we hypothesize that these proteins may provide a scaffold for the newly identified heterotetramer.", + "text": "Interestingly, two of the other proteins in the immunoprecipitate, also approximately equimolar to the three coprecipitating subunits, were XP_642289.1 and XP_637150.1. Both proteins are predicted to consist of two N-terminal \u03b2-propeller domains followed by an \u03b1-solenoid (Figure 2D, Figure 2\u2014figure supplement 1C). This type of architecture is found in several coat components, including clathrin heavy chain, SPG11 (associated with AP-5), the \u03b1-COP and \u03b2\u2032-COP subunits of the COPI coat (B-COPI), and the Sec31 subunit of the COPII coat (Devos et al., 2004). HHpred analyses show that the closest matches for both XP_642289.1 and XP_637150.1 are \u03b2'-COP, followed by \u03b1-COP. Probable orthologues of XP_642289.1 and XP_637150.1 can be found in other organisms that have the four core subunits (Figure 1\u2014figure supplement 4). Because proteins with this architecture often act as a coat for transport vesicles, we hypothesize that these proteins may provide a scaffold for the newly identified heterotetramer." + }, + { + "self_ref": "#/texts/17", + "parent": { + "$ref": "#/texts/12" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "The other three proteins in the immunoprecipitate, secG and vacuolins A and B, appear to be less widespread taxonomically (Figure 2\u2014figure supplement 2 and 3), but are nonetheless suggestive of function. SecG is related to the plasma membrane- and endosome-associated ARNO/cytohesin family of Arf GEFs in animal cells (Shina et al., 2010), and also appears to be equimolar with the core complex. Vacuolins are members of the SPFH (stomatin-prohibitin-flotillin-HflC/K) superfamily. They have been shown to associate with the late vacuole just before exocytosis and also with the plasma membrane (Rauchenberger et al., 1997; Gotthardt et al., 2002), and to contribute to vacuole function (Jenne et al., 1998). However, the amounts of coprecipitating vacuolins were more variable, suggesting that they are less tightly associated with the complex (Figure 2\u2014figure supplement 1A). Thus, like TPLATE, both SecG and the vacuolins have been implicated in membrane traffic, acting at the plasma membrane and/or endosomal compartments.", + "text": "The other three proteins in the immunoprecipitate, secG and vacuolins A and B, appear to be less widespread taxonomically (Figure 2\u2014figure supplement 2 and 3), but are nonetheless suggestive of function. SecG is related to the plasma membrane- and endosome-associated ARNO/cytohesin family of Arf GEFs in animal cells (Shina et al., 2010), and also appears to be equimolar with the core complex. Vacuolins are members of the SPFH (stomatin-prohibitin-flotillin-HflC/K) superfamily. They have been shown to associate with the late vacuole just before exocytosis and also with the plasma membrane (Rauchenberger et al., 1997; Gotthardt et al., 2002), and to contribute to vacuole function (Jenne et al., 1998). However, the amounts of coprecipitating vacuolins were more variable, suggesting that they are less tightly associated with the complex (Figure 2\u2014figure supplement 1A). Thus, like TPLATE, both SecG and the vacuolins have been implicated in membrane traffic, acting at the plasma membrane and/or endosomal compartments." + }, + { + "self_ref": "#/texts/18", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/19" + }, + { + "$ref": "#/texts/20" + }, + { + "$ref": "#/texts/21" + } + ], + "label": "section_header", + "prov": [], + "orig": "Characterisation of the TSET complex in Dictyostelium", + "text": "Characterisation of the TSET complex in Dictyostelium", + "level": 1 + }, + { + "self_ref": "#/texts/19", + "parent": { + "$ref": "#/texts/18" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "One of the key properties of coat proteins is their ability to cycle on and off membranes. Although by widefield fluorescence microscopy TSPOON-GFP looked diffuse and cytosolic (Figure 2\u2014figure supplement 1B), TIRF imaging showed a punctate pattern, especially in the cells with lower expression, indicating that some of the construct is associated with the plasma membrane (Figure 2E, Figure 2; Video 1). In contrast, free GFP appeared to be entirely cytosolic (Figure 2E, Figure 2; Video 2). In addition, high speed centrifugation of a post-nuclear supernatant showed a substantial amount of TSPOON-GFP coming down in the membrane-containing pellet, in contrast to free GFP, which was exclusively in the supernatant (Figure 2F). These findings indicate that like other coat proteins, the complex is transiently recruited onto a membrane (specifically, the plasma membrane) from a cytosolic pool.", + "text": "One of the key properties of coat proteins is their ability to cycle on and off membranes. Although by widefield fluorescence microscopy TSPOON-GFP looked diffuse and cytosolic (Figure 2\u2014figure supplement 1B), TIRF imaging showed a punctate pattern, especially in the cells with lower expression, indicating that some of the construct is associated with the plasma membrane (Figure 2E, Figure 2; Video 1). In contrast, free GFP appeared to be entirely cytosolic (Figure 2E, Figure 2; Video 2). In addition, high speed centrifugation of a post-nuclear supernatant showed a substantial amount of TSPOON-GFP coming down in the membrane-containing pellet, in contrast to free GFP, which was exclusively in the supernatant (Figure 2F). These findings indicate that like other coat proteins, the complex is transiently recruited onto a membrane (specifically, the plasma membrane) from a cytosolic pool." + }, + { + "self_ref": "#/texts/20", + "parent": { + "$ref": "#/texts/18" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "Silencing TPLATE in Arabidopsis produces a very severe phenotype, with impaired growth and differentiation, thought to be caused by defects in clathrin-mediated endocytosis (Van Damme et al., 2006; Van Damme et al., 2011). To investigate the function of TSET in Dictyostelium, we disrupted the TSPOON gene by replacing most of the coding sequence with a selectable marker (Figure 2\u2014figure supplement 1D). Surprisingly, the resulting knockout cells grew at least as fast a control axenic strain (Figure 2G shows the mean generation time); and differentiation also appeared normal, with fruiting bodies forming under appropriate stimuli (Figure 2H). Uptake of FITC-dextran, an assay for fluid phase endocytosis, was unimpaired in the TSPOON knockout cells (Figure 2I); however, uptake of FM1-43, a membrane marker, was slower than in the control (Figure 2J shows the time taken to internalise the entire surface area), indicating that TSET plays a role in plasma membrane turnover, consistent with studies on Arabidopsis. Nevertheless, it is clear that in contrast to Arabidopsis, Dictyostelium can thrive without a functional TSET complex.", + "text": "Silencing TPLATE in Arabidopsis produces a very severe phenotype, with impaired growth and differentiation, thought to be caused by defects in clathrin-mediated endocytosis (Van Damme et al., 2006; Van Damme et al., 2011). To investigate the function of TSET in Dictyostelium, we disrupted the TSPOON gene by replacing most of the coding sequence with a selectable marker (Figure 2\u2014figure supplement 1D). Surprisingly, the resulting knockout cells grew at least as fast a control axenic strain (Figure 2G shows the mean generation time); and differentiation also appeared normal, with fruiting bodies forming under appropriate stimuli (Figure 2H). Uptake of FITC-dextran, an assay for fluid phase endocytosis, was unimpaired in the TSPOON knockout cells (Figure 2I); however, uptake of FM1-43, a membrane marker, was slower than in the control (Figure 2J shows the time taken to internalise the entire surface area), indicating that TSET plays a role in plasma membrane turnover, consistent with studies on Arabidopsis. Nevertheless, it is clear that in contrast to Arabidopsis, Dictyostelium can thrive without a functional TSET complex." + }, + { + "self_ref": "#/texts/21", + "parent": { + "$ref": "#/texts/18" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "Very recently, the discoverers of TPLATE used tandem affinity purification to identify TPLATE binding partners, and found the Arabidopsis orthologues of the TSET components that we identified independently in the present study (Gadeyne et al., 2014). The Arabidopsis pulldowns did not contain any proteins resembling secG or the vacuolins, supporting our hypothesis that these proteins are add-ons to the core heterohexamer. However, Arabidopsis TSET is associated with two additional proteins containing EH domains, which we did not find in our Dictyostelium pulldowns. Some of the Arabidopsis pulldowns also brought down components of the machinery for clathrin-mediated endocytosis, including clathrin itself. Although we also found clathrin and associated proteins in our Dictyostelium immunoprecipitates, these proteins were equally abundant in control immunoprecipitates from non-GFP-expressing cells, indicating that they were contaminants. The differences in proteins that coprecipitate with TSET in the two organisms are probably a reflection of functional differences: TSET knockouts in Arabidopsis are lethal and knockdowns profoundly affect clathrin-mediated endocytosis, while TSET knockdowns in Dictyostelium produce a very mild phenotype.", + "text": "Very recently, the discoverers of TPLATE used tandem affinity purification to identify TPLATE binding partners, and found the Arabidopsis orthologues of the TSET components that we identified independently in the present study (Gadeyne et al., 2014). The Arabidopsis pulldowns did not contain any proteins resembling secG or the vacuolins, supporting our hypothesis that these proteins are add-ons to the core heterohexamer. However, Arabidopsis TSET is associated with two additional proteins containing EH domains, which we did not find in our Dictyostelium pulldowns. Some of the Arabidopsis pulldowns also brought down components of the machinery for clathrin-mediated endocytosis, including clathrin itself. Although we also found clathrin and associated proteins in our Dictyostelium immunoprecipitates, these proteins were equally abundant in control immunoprecipitates from non-GFP-expressing cells, indicating that they were contaminants. The differences in proteins that coprecipitate with TSET in the two organisms are probably a reflection of functional differences: TSET knockouts in Arabidopsis are lethal and knockdowns profoundly affect clathrin-mediated endocytosis, while TSET knockdowns in Dictyostelium produce a very mild phenotype." + }, + { + "self_ref": "#/texts/22", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/23" + }, + { + "$ref": "#/texts/26" + }, + { + "$ref": "#/texts/31" + }, + { + "$ref": "#/texts/32" + } + ], + "label": "section_header", + "prov": [], + "orig": "TSET is ancient and widespread in eukaryotes", + "text": "TSET is ancient and widespread in eukaryotes", + "level": 1 + }, + { + "self_ref": "#/texts/23", + "parent": { + "$ref": "#/texts/22" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "When TPLATE was discovered in Arabidopsis, it was reported to be unique to plant species (Van Damme et al., 2006; Van Damme et al., 2011). Similarly, in the more recent Arabidopsis study, the authors concluded that the complex was plant-specific (Gadeyne et al., 2014). However, these conclusions were based on analyses of plants, yeast, and humans only. Our identification and characterization of homologues of all six subunits in Dictyostelium discoideum, as well as their presence in the excavate Naegleria gruberi, suggested that the evolutionary distribution was much more extensive. In depth homology searching identified orthologues in genomes from across the broad diversity of eukaryotes (Figure 3, Figure 3\u2014source data 1, Figure 3\u2014figure supplement 1), strongly suggesting that the complex was present prior to the LECA.", + "text": "When TPLATE was discovered in Arabidopsis, it was reported to be unique to plant species (Van Damme et al., 2006; Van Damme et al., 2011). Similarly, in the more recent Arabidopsis study, the authors concluded that the complex was plant-specific (Gadeyne et al., 2014). However, these conclusions were based on analyses of plants, yeast, and humans only. Our identification and characterization of homologues of all six subunits in Dictyostelium discoideum, as well as their presence in the excavate Naegleria gruberi, suggested that the evolutionary distribution was much more extensive. In depth homology searching identified orthologues in genomes from across the broad diversity of eukaryotes (Figure 3, Figure 3\u2014source data 1, Figure 3\u2014figure supplement 1), strongly suggesting that the complex was present prior to the LECA." + }, + { + "self_ref": "#/texts/24", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/25" + } + ], + "label": "section_header", + "prov": [], + "orig": "Distribution of TSET subunits.", + "text": "Distribution of TSET subunits.", + "level": 1 + }, + { + "self_ref": "#/texts/25", + "parent": { + "$ref": "#/texts/24" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "(A) Coulson plot showing the distribution of TSET in a diverse set of representative eukaryotes. Presence of the entire complex in at least four supergroups suggests its presence in the last eukaryotic common ancestor (LECA) with frequent secondary loss. Solid sectors indicate sequences identified and classified using BLAST and HMMer. Empty sectors indicate taxa in which no significant orthologues were identified. Filled sectors in the Holozoa and Fungi represent F-BAR domain-containing FCHo and Syp1, respectively. Taxon name abbreviations are inset. Names in bold indicate taxa with all six components. (B) Deduced evolutionary history of TSET as present in the LECA but independently lost multiple times, either partially or completely. See also Figure 3\u2014source data 1, Figure 3\u2014figure supplement 1.", + "text": "(A) Coulson plot showing the distribution of TSET in a diverse set of representative eukaryotes. Presence of the entire complex in at least four supergroups suggests its presence in the last eukaryotic common ancestor (LECA) with frequent secondary loss. Solid sectors indicate sequences identified and classified using BLAST and HMMer. Empty sectors indicate taxa in which no significant orthologues were identified. Filled sectors in the Holozoa and Fungi represent F-BAR domain-containing FCHo and Syp1, respectively. Taxon name abbreviations are inset. Names in bold indicate taxa with all six components. (B) Deduced evolutionary history of TSET as present in the LECA but independently lost multiple times, either partially or completely. See also Figure 3\u2014source data 1, Figure 3\u2014figure supplement 1." + }, + { + "self_ref": "#/texts/26", + "parent": { + "$ref": "#/texts/22" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "Although TSET is clearly ancient, its relationship to the other heterotetrameric complexes was unclear from homology searching alone. Consequently, after analyses of the individual subunits (Figure 4\u2014figure supplements 1\u20137), we performed a phylogenetic analysis on the concatenated set of the four core subunits for direct comparison of TSET with the other AP and COPI complexes (Figure 4A, Figure 4\u2014figure supplement 8). This provided moderate support for TSET as a clade, but strong resolution excluding it from the APs and COPI, as well as backbone resolution between the heterotetramer clades. Thus, TSET is clearly an ancient component of the eukaryotic membrane-trafficking system, distinct from the known heterotetramers.", + "text": "Although TSET is clearly ancient, its relationship to the other heterotetrameric complexes was unclear from homology searching alone. Consequently, after analyses of the individual subunits (Figure 4\u2014figure supplements 1\u20137), we performed a phylogenetic analysis on the concatenated set of the four core subunits for direct comparison of TSET with the other AP and COPI complexes (Figure 4A, Figure 4\u2014figure supplement 8). This provided moderate support for TSET as a clade, but strong resolution excluding it from the APs and COPI, as well as backbone resolution between the heterotetramer clades. Thus, TSET is clearly an ancient component of the eukaryotic membrane-trafficking system, distinct from the known heterotetramers." + }, + { + "self_ref": "#/texts/27", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/28" + } + ], + "label": "section_header", + "prov": [], + "orig": "Evolution of TSET.", + "text": "Evolution of TSET.", + "level": 1 + }, + { + "self_ref": "#/texts/28", + "parent": { + "$ref": "#/texts/27" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "(A) Simplified diagram of the concatenated tree for TSET, APs, and COPI, based on Figure 4\u2014figure supplement 8. Numbers indicate posterior probabilities for MrBayes and PhyloBayes and maxium-likelihood bootstrap values for PhyML and RAxML, in that order. (B) Schematic diagram of TSET. (C) Possible evolution of the three families of heterotetramers: TSET, APs, and COPI. We propose that the earliest ancestral complex was a likely a heterotrimer or a heterohexamer formed from two identical heterotrimers, containing large (red), small (yellow), and scaffolding (blue) subunits. All three of these proteins were composed of known ancient building blocks of the membrane-trafficking system (Vedovato et al., 2009): \u03b1-solenoid domains in both the large and scaffolding subunits; two \u03b2-propellers in the scaffolding subunit; and a longin domain forming the small subunit. The gene encoding the large subunit then duplicated and mutated to generate the two distinct types of large subunits (red and magenta), and the gene encoding the small subunit also duplicated and mutated (yellow and orange), with one of the two proteins (orange) acquiring a \u03bc homology domain (MHD) to form the ancestral heterotetramer, as proposed by Boehm and Bonifacino (12). However, the scaffolding subunit remained a homodimer. Upon diversification into three separate families, the scaffolding subunit duplicated independently in TSET and COPI, giving rise to TTRAY1 and TTRAY2 in TSET, and to \u03b1- and \u03b2\u2032-COP in COPI. COPI also acquired a new subunit, \u03b5-COP (purple). The scaffolding subunit may have been lost in the ancestral AP complex, as indicated in the diagram; however, AP-5 is tightly associated with two other proteins, SPG11 and SPG15, and the relationship of SPG11 and SPG15 to TTRAY/B-COPI remains unresolved, so it is possible that SPG11 and SPG15 are highly divergent descendants of the original scaffolding subunits. The other AP complexes are free heterotetramers when in the cytosol, but membrane-associated AP-1 and AP-2 interact with another scaffold, clathrin; and AP-3 has also been proposed to interact transiently with a protein with similar architecture, Vps41 (Rehling et al., 1999; Cabrera et al., 2010; Asensio et al., 2013). So far no scaffold has been proposed for AP-4. Although the order of emergence of TSET and COP relative to adaptins is unresolved, our most recent analyses indicate that, contrary to previous reports (Hirst et al., 2011), AP-5 diverged basally within the adaptin clade, followed by AP-3, AP-4, and APs 1 and 2, all prior to the LECA. This still suggests a primordial bridging of the secretory and phagocytic systems prior to emergence of a trans-Golgi network. The muniscins arose much later, in ancestral opisthokonts, from a translocation of the TSET MHD-encoding sequence to a position immediately downstream from an F-BAR domain-encoding sequence. Another translocation occurred in plants, where an SH3 domain-coding sequence was inserted at the 3\u2032 end of the TSAUCER-coding sequence. See also Figure 4\u2014figure supplements 1\u201310.", + "text": "(A) Simplified diagram of the concatenated tree for TSET, APs, and COPI, based on Figure 4\u2014figure supplement 8. Numbers indicate posterior probabilities for MrBayes and PhyloBayes and maxium-likelihood bootstrap values for PhyML and RAxML, in that order. (B) Schematic diagram of TSET. (C) Possible evolution of the three families of heterotetramers: TSET, APs, and COPI. We propose that the earliest ancestral complex was a likely a heterotrimer or a heterohexamer formed from two identical heterotrimers, containing large (red), small (yellow), and scaffolding (blue) subunits. All three of these proteins were composed of known ancient building blocks of the membrane-trafficking system (Vedovato et al., 2009): \u03b1-solenoid domains in both the large and scaffolding subunits; two \u03b2-propellers in the scaffolding subunit; and a longin domain forming the small subunit. The gene encoding the large subunit then duplicated and mutated to generate the two distinct types of large subunits (red and magenta), and the gene encoding the small subunit also duplicated and mutated (yellow and orange), with one of the two proteins (orange) acquiring a \u03bc homology domain (MHD) to form the ancestral heterotetramer, as proposed by Boehm and Bonifacino (12). However, the scaffolding subunit remained a homodimer. Upon diversification into three separate families, the scaffolding subunit duplicated independently in TSET and COPI, giving rise to TTRAY1 and TTRAY2 in TSET, and to \u03b1- and \u03b2\u2032-COP in COPI. COPI also acquired a new subunit, \u03b5-COP (purple). The scaffolding subunit may have been lost in the ancestral AP complex, as indicated in the diagram; however, AP-5 is tightly associated with two other proteins, SPG11 and SPG15, and the relationship of SPG11 and SPG15 to TTRAY/B-COPI remains unresolved, so it is possible that SPG11 and SPG15 are highly divergent descendants of the original scaffolding subunits. The other AP complexes are free heterotetramers when in the cytosol, but membrane-associated AP-1 and AP-2 interact with another scaffold, clathrin; and AP-3 has also been proposed to interact transiently with a protein with similar architecture, Vps41 (Rehling et al., 1999; Cabrera et al., 2010; Asensio et al., 2013). So far no scaffold has been proposed for AP-4. Although the order of emergence of TSET and COP relative to adaptins is unresolved, our most recent analyses indicate that, contrary to previous reports (Hirst et al., 2011), AP-5 diverged basally within the adaptin clade, followed by AP-3, AP-4, and APs 1 and 2, all prior to the LECA. This still suggests a primordial bridging of the secretory and phagocytic systems prior to emergence of a trans-Golgi network. The muniscins arose much later, in ancestral opisthokonts, from a translocation of the TSET MHD-encoding sequence to a position immediately downstream from an F-BAR domain-encoding sequence. Another translocation occurred in plants, where an SH3 domain-coding sequence was inserted at the 3\u2032 end of the TSAUCER-coding sequence. See also Figure 4\u2014figure supplements 1\u201310." + }, + { + "self_ref": "#/texts/29", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/30" + } + ], + "label": "section_header", + "prov": [], + "orig": "Phylogenetic analysis of TPLATE, \u03b2-COP, and \u03b2-adaptin, with TPLATE robustly excluded from the \u03b2-COP clade.", + "text": "Phylogenetic analysis of TPLATE, \u03b2-COP, and \u03b2-adaptin, with TPLATE robustly excluded from the \u03b2-COP clade.", + "level": 1 + }, + { + "self_ref": "#/texts/30", + "parent": { + "$ref": "#/texts/29" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "In this and all other figure supplements to Figure 4, AP subunits are boxed in blue, F-COPI subunits are boxed in red, and subunits of TSET are boxed in yellow. Node support for critical nodes is shown. Numbers indicate Bayesian posterior probabilities (MrBayes) and bootstrap support from Maximum-likelihood analysis (RAxML). Support values for other nodes are denoted by symbols (see inset).", + "text": "In this and all other figure supplements to Figure 4, AP subunits are boxed in blue, F-COPI subunits are boxed in red, and subunits of TSET are boxed in yellow. Node support for critical nodes is shown. Numbers indicate Bayesian posterior probabilities (MrBayes) and bootstrap support from Maximum-likelihood analysis (RAxML). Support values for other nodes are denoted by symbols (see inset)." + }, + { + "self_ref": "#/texts/31", + "parent": { + "$ref": "#/texts/22" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "Phylogenetic analysis of the TTRAYs and their closest relatives, \u03b2\u2032-COP and \u03b1-COP (Figure 4\u2014figure supplement 9), showed that the paralogues are due to ancient duplications in the TSET and COPI families respectively, which occurred prior to the divergence of the LECA. Together, these findings imply that the ancestor of the TSET, COPI, and AP complexes was a heterohexamer rather than a heterotetramer, consisting of five different proteins, with the two scaffolding proteins present as two identical copies (Figure 4B,C). These scaffolding subunits then duplicated independently in COPI and TSET. The ancestral AP complex may have lost its original scaffolding subunits, although AP-5, the first AP to branch away, is closely associated with SPG11, a \u03b2-propeller + \u03b1-solenoid protein whose relationship to the TTRAYs and B-COPI is as yet unclear. None of the other APs has any closely associated proteins with this architecture, but AP-1 and AP-2 transiently interact with clathrin, and there may also be a transient association between AP-3 and another \u03b2-propeller + \u03b1-solenoid protein, Vps41 (Rehling et al., 1999; Cabrera et al., 2010; Asensio et al., 2013).", + "text": "Phylogenetic analysis of the TTRAYs and their closest relatives, \u03b2\u2032-COP and \u03b1-COP (Figure 4\u2014figure supplement 9), showed that the paralogues are due to ancient duplications in the TSET and COPI families respectively, which occurred prior to the divergence of the LECA. Together, these findings imply that the ancestor of the TSET, COPI, and AP complexes was a heterohexamer rather than a heterotetramer, consisting of five different proteins, with the two scaffolding proteins present as two identical copies (Figure 4B,C). These scaffolding subunits then duplicated independently in COPI and TSET. The ancestral AP complex may have lost its original scaffolding subunits, although AP-5, the first AP to branch away, is closely associated with SPG11, a \u03b2-propeller + \u03b1-solenoid protein whose relationship to the TTRAYs and B-COPI is as yet unclear. None of the other APs has any closely associated proteins with this architecture, but AP-1 and AP-2 transiently interact with clathrin, and there may also be a transient association between AP-3 and another \u03b2-propeller + \u03b1-solenoid protein, Vps41 (Rehling et al., 1999; Cabrera et al., 2010; Asensio et al., 2013)." + }, + { + "self_ref": "#/texts/32", + "parent": { + "$ref": "#/texts/22" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "Although TSET is deduced to have been present in LECA, the complex appears to have been entirely or partially lost in various lineages (Figure 3B). None of the subunits has a full orthologue in opisthokonts (animals and fungi), indicating secondary loss in the line leading to humans. However, the C-terminal domain of TCUP is homologous to the C-terminal domains of the muniscins, opisthokont-specific proteins (Gadeyne et al., 2014) (Figure 4\u2014figure supplement 10). This suggests that in opisthokonts, the TCUP gene retained its 3\u2032 end, which then combined with a new 5\u2032 end encoding an F-BAR domain to generate the muniscin family (Figure 4C). These include the vertebrate proteins FCHo1/2 and the yeast protein Syp1, important players in the endocytic pathway (Reider et al., 2009; Henne et al., 2010; Cocucci et al., 2012; Umasankar et al., 2012; Mayers et al., 2013). The muniscins constitute one of eight families of MHD proteins in humans, and the only family whose evolutionary origin was unexplained until now. The present study indicates not only that the muniscins are homologous to TCUP, but also that they are the sole surviving remnants of the full TSET complex that existed in our pre-opisthokont ancestors.", + "text": "Although TSET is deduced to have been present in LECA, the complex appears to have been entirely or partially lost in various lineages (Figure 3B). None of the subunits has a full orthologue in opisthokonts (animals and fungi), indicating secondary loss in the line leading to humans. However, the C-terminal domain of TCUP is homologous to the C-terminal domains of the muniscins, opisthokont-specific proteins (Gadeyne et al., 2014) (Figure 4\u2014figure supplement 10). This suggests that in opisthokonts, the TCUP gene retained its 3\u2032 end, which then combined with a new 5\u2032 end encoding an F-BAR domain to generate the muniscin family (Figure 4C). These include the vertebrate proteins FCHo1/2 and the yeast protein Syp1, important players in the endocytic pathway (Reider et al., 2009; Henne et al., 2010; Cocucci et al., 2012; Umasankar et al., 2012; Mayers et al., 2013). The muniscins constitute one of eight families of MHD proteins in humans, and the only family whose evolutionary origin was unexplained until now. The present study indicates not only that the muniscins are homologous to TCUP, but also that they are the sole surviving remnants of the full TSET complex that existed in our pre-opisthokont ancestors." + }, + { + "self_ref": "#/texts/33", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/34" + }, + { + "$ref": "#/texts/35" + }, + { + "$ref": "#/texts/36" + } + ], + "label": "section_header", + "prov": [], + "orig": "Conclusions", + "text": "Conclusions", + "level": 1 + }, + { + "self_ref": "#/texts/34", + "parent": { + "$ref": "#/texts/33" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "TSET is the latest addition to a growing set of trafficking proteins that have ancient distributions, but are frequently lost (Schlacht et al., 2014), or in the case of TSET reduced perhaps with neofunctionalization (Figure 3). This is consistent with the uneven distribution of the individual components (in contrast to the all-or-nothing distribution of AP-5), the additional apparently lineage-specific binding partners in Dictyostelium, and the acquisition of extra domains (e.g., F-BAR in opisthokonts and SH3 in plants) adding lineage-specific function.", + "text": "TSET is the latest addition to a growing set of trafficking proteins that have ancient distributions, but are frequently lost (Schlacht et al., 2014), or in the case of TSET reduced perhaps with neofunctionalization (Figure 3). This is consistent with the uneven distribution of the individual components (in contrast to the all-or-nothing distribution of AP-5), the additional apparently lineage-specific binding partners in Dictyostelium, and the acquisition of extra domains (e.g., F-BAR in opisthokonts and SH3 in plants) adding lineage-specific function." + }, + { + "self_ref": "#/texts/35", + "parent": { + "$ref": "#/texts/33" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "Studies on the muniscins may help to explain the different phenotypes of TSET knockouts in Dictyostelium and Arabidopsis. Like Arabidopsis TSET, the muniscins interact with EH domain-containing proteins and participate in clathrin-mediated endocytosis (Reider et al., 2009; Henne et al., 2010; Cocucci et al., 2012; Umasankar et al., 2012; Mayers et al., 2013). Dictyostelium has lost its TCUP MHD, and it seems likely that concomitant with this loss, it also lost some of TSET's binding partners and functions. Nevertheless, we suspect that TSET may predate clathrin-mediated endocytosis, for two reasons. First, AP-1 and AP-2, the two AP complexes that function together with clathrin, are the most recent additions to the AP family (Figure 4A); and second, TSET already has its own \u03b2-propeller + \u03b1-solenoid scaffold, so it is not clear why it would need clathrin as well. Thus, the interaction between TSET and the clathrin pathway may have evolved considerably later than TSET itself, although still pre-LECA. It is tempting to speculate that TSET was part of the original endocytic machinery, which then became redundant in some organisms as the clathrin pathway took over.", + "text": "Studies on the muniscins may help to explain the different phenotypes of TSET knockouts in Dictyostelium and Arabidopsis. Like Arabidopsis TSET, the muniscins interact with EH domain-containing proteins and participate in clathrin-mediated endocytosis (Reider et al., 2009; Henne et al., 2010; Cocucci et al., 2012; Umasankar et al., 2012; Mayers et al., 2013). Dictyostelium has lost its TCUP MHD, and it seems likely that concomitant with this loss, it also lost some of TSET's binding partners and functions. Nevertheless, we suspect that TSET may predate clathrin-mediated endocytosis, for two reasons. First, AP-1 and AP-2, the two AP complexes that function together with clathrin, are the most recent additions to the AP family (Figure 4A); and second, TSET already has its own \u03b2-propeller + \u03b1-solenoid scaffold, so it is not clear why it would need clathrin as well. Thus, the interaction between TSET and the clathrin pathway may have evolved considerably later than TSET itself, although still pre-LECA. It is tempting to speculate that TSET was part of the original endocytic machinery, which then became redundant in some organisms as the clathrin pathway took over." + }, + { + "self_ref": "#/texts/36", + "parent": { + "$ref": "#/texts/33" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "Thus, our bioinformatics tool, reverse HHpred, is able to find novel homologues of known proteins, and could potentially be used to identify new players both in membrane traffic and in other pathways (Figure 1\u2014figure supplement 5). Using this tool, we were able to find the four core subunits of an ancient complex belonging to the same family as the APs and COPI. This ancient complex, TSET, is therefore both the answer to the question of the origin of the last set of MHD proteins in humans, and a major new piece of the puzzle to be incorporated alongside the other membrane-trafficking machinery, as we delve into the history of the eukaryotic cell.", + "text": "Thus, our bioinformatics tool, reverse HHpred, is able to find novel homologues of known proteins, and could potentially be used to identify new players both in membrane traffic and in other pathways (Figure 1\u2014figure supplement 5). Using this tool, we were able to find the four core subunits of an ancient complex belonging to the same family as the APs and COPI. This ancient complex, TSET, is therefore both the answer to the question of the origin of the last set of MHD proteins in humans, and a major new piece of the puzzle to be incorporated alongside the other membrane-trafficking machinery, as we delve into the history of the eukaryotic cell." + }, + { + "self_ref": "#/texts/37", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/38" + } + ], + "label": "section_header", + "prov": [], + "orig": "Construction of the \u2018reverse HHpred\u2019 database", + "text": "Construction of the \u2018reverse HHpred\u2019 database", + "level": 1 + }, + { + "self_ref": "#/texts/38", + "parent": { + "$ref": "#/texts/37" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "The proteomes of various organisms (detailed in Figure 1\u2014figure supplement 2) were downloaded from the National Center for Biotechnology Information archives at ftp://ftp.ncbi.nih.gov/refseq/release/. The *.protein.faa.gz files obtained were then split into separate files, each containing one protein sequence. These were stored such that each directory contained information from only one species (the total number of protein \u2018faa\u2019 files searched for each organism were: Arabidopsis thaliana, 35270; Caenorhabditis elegans, 23903; Dictyostelium discoideum, 13262; Dictyostelium purpureum, 12399; Drosophila melanogaster, 22256; Giardia lamblia, 6502; Homo sapiens, 32977; Micromonas pusilla, 10269; Mus musculus, 29897; Naegleria gruberi , 15756; Physcomitrella patens, 35893; Saccharomyces cerevisiae, 5882; Schizosaccharomyces pombe, 5004; Selaginella moellendorffii, 31312; Vitis vinifera, 23492; Volvox carteri, 14429). The latest protein data bank (pdb70), which contains all publicly available 3D structures of proteins, was downloaded from the Gene Center Munich, Ludwig-Maximilians-Universit\u00e4t (LMU) Munich via their web site at: ftp://toolkit.lmb.uni-muenchen.de/pub/HHsearch/databases/hhsearch_dbs/. The linux rpm version 2.0.11 of the hhsuite software was downloaded from the same website at ftp://toolkit.lmb.uni-muenchen.de/pub/HH-suite/releases/. Each of the faa files was then compared to the pdb70 databank using the hhsearch program from the above suite. The files were tested using the default parameters. Once each protein sequence was tested, the output file was parsed and the hits were extracted and then inserted into a mysql database. The database is searchable by keywords in PDB entries, and therefore is limited to searches where the structure of a given domain structure has been solved. The database is accessible using the link http://reversehhpred.cimr.cam.ac.uk, and searches can be initiated using keywords. Should the link become unavailable, or if you are interested in hosting this yourself please email jpn25@cam.ac.uk for more information. A conceptually similar database, \u2018BackPhyre\u2019, has independently been generated, using Phyre (Kelley and Sternberg, 2009) rather than HHpred as a starting point to identify homologues of known proteins based on predicted structural similarities. Like reverse HHpred, BackPhyre is able to find three of the four TSET subunits in Arabidopsis; however, the only eukaryotes represented in BackPhyre are A. thaliana, D. melanogaster, H. sapiens, M. musculus, P. falciparum, and S. cerevisiae; and without additional organisms, such as D. discoideum and N. gruberi, we would not have been able to find the entire TSET complex.", + "text": "The proteomes of various organisms (detailed in Figure 1\u2014figure supplement 2) were downloaded from the National Center for Biotechnology Information archives at ftp://ftp.ncbi.nih.gov/refseq/release/. The *.protein.faa.gz files obtained were then split into separate files, each containing one protein sequence. These were stored such that each directory contained information from only one species (the total number of protein \u2018faa\u2019 files searched for each organism were: Arabidopsis thaliana, 35270; Caenorhabditis elegans, 23903; Dictyostelium discoideum, 13262; Dictyostelium purpureum, 12399; Drosophila melanogaster, 22256; Giardia lamblia, 6502; Homo sapiens, 32977; Micromonas pusilla, 10269; Mus musculus, 29897; Naegleria gruberi , 15756; Physcomitrella patens, 35893; Saccharomyces cerevisiae, 5882; Schizosaccharomyces pombe, 5004; Selaginella moellendorffii, 31312; Vitis vinifera, 23492; Volvox carteri, 14429). The latest protein data bank (pdb70), which contains all publicly available 3D structures of proteins, was downloaded from the Gene Center Munich, Ludwig-Maximilians-Universit\u00e4t (LMU) Munich via their web site at: ftp://toolkit.lmb.uni-muenchen.de/pub/HHsearch/databases/hhsearch_dbs/. The linux rpm version 2.0.11 of the hhsuite software was downloaded from the same website at ftp://toolkit.lmb.uni-muenchen.de/pub/HH-suite/releases/. Each of the faa files was then compared to the pdb70 databank using the hhsearch program from the above suite. The files were tested using the default parameters. Once each protein sequence was tested, the output file was parsed and the hits were extracted and then inserted into a mysql database. The database is searchable by keywords in PDB entries, and therefore is limited to searches where the structure of a given domain structure has been solved. The database is accessible using the link http://reversehhpred.cimr.cam.ac.uk, and searches can be initiated using keywords. Should the link become unavailable, or if you are interested in hosting this yourself please email jpn25@cam.ac.uk for more information. A conceptually similar database, \u2018BackPhyre\u2019, has independently been generated, using Phyre (Kelley and Sternberg, 2009) rather than HHpred as a starting point to identify homologues of known proteins based on predicted structural similarities. Like reverse HHpred, BackPhyre is able to find three of the four TSET subunits in Arabidopsis; however, the only eukaryotes represented in BackPhyre are A. thaliana, D. melanogaster, H. sapiens, M. musculus, P. falciparum, and S. cerevisiae; and without additional organisms, such as D. discoideum and N. gruberi, we would not have been able to find the entire TSET complex." + }, + { + "self_ref": "#/texts/39", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/40" + } + ], + "label": "section_header", + "prov": [], + "orig": "Data assimilation", + "text": "Data assimilation", + "level": 1 + }, + { + "self_ref": "#/texts/40", + "parent": { + "$ref": "#/texts/39" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "The large adaptor subunits share sequence and structure homology, as do the medium and small subunits. Therefore, we were able to combine searches for novel large subunits, or for medium/small subunits. Using the key words \u2018clathrin\u2019, \u2018adaptor\u2019, \u2018adapter\u2019, \u2018adaptin\u2019, \u2018AP1\u2019, \u2018AP2\u2019, \u2018AP3\u2019, \u2018AP4\u2019, we searched in PDB for solved structures of any large or medium/small subunit in a given organism (11 solved structures for the large subunits and six solved structures for the medium/small subunits were used to initiate searches [Figure 1\u2014figure supplement 1]). These structures span different domains found within the subunits. For each search, a list was output of any proteins found to contain structural homology. Included in this information are the precise amino acids encompassing the region of similarity, the probability score, and most importantly the \u2018result number\u2019. A protein with a \u2018result number\u2019 of \u20181\u2019 means that there was no other structure in the PDB database that it is more like. Since multiple structures for the various subunits were used, we could also factor in the number of times a particular protein was identified in a search (\u2018repeats\u2019). These parameters were used as key pieces of evidence to determine how likely a hit in these searches would be. Once the primary data were outputted, all other manipulations were performed in Excel. For the large subunits there were 11 data sets (the 11 structures used to search for homologues), and for the medium/small subunits there were six data sets. The data manipulation was standardised at this point, and the following steps performed to assimilate the data. The data sets were sorted by result number to preclude anything with a result number of >50 (this means that there are 49 other structures in the PDB database that this protein is more similar to). Duplicates, where a protein was identified in multiple searches, were removed with the highest ranking (in \u2018result\u2019 terms) kept, and the number of times it was identified recorded in a new column (\u2018repeats\u2019). The results were the ordered with the lowest \u2018Result number\u2019 and the highest \u2018Probability\u2019 to give a final list of proteins (Figure 1\u2014source data 1, 2). Generally only proteins with a \u2018Result number\u2019 <10, \u2018Probability\u2019 >50%, at least 100 amino acids of homology (\u2018thstt\u2019 to \u2018thend\u2019), and \u2018Repeats\u2019 at least two times were considered to be real hits. For ease of visualisation, only proteins with Result number <10 or \u2018Repeats\u2019 >2 are shown, and other proteins of interest (e.g., FCHo1, Syp1) with Result number <10 that did not fit the criteria listed above are greyed out. The \u2018IDs\u2019 have been deduced using NCBI BLAST searches, and have not been experimentally verified. Where the identity is ambiguous (such as the identity of a \u03b2-adaptin), a shared homology is suggested.", + "text": "The large adaptor subunits share sequence and structure homology, as do the medium and small subunits. Therefore, we were able to combine searches for novel large subunits, or for medium/small subunits. Using the key words \u2018clathrin\u2019, \u2018adaptor\u2019, \u2018adapter\u2019, \u2018adaptin\u2019, \u2018AP1\u2019, \u2018AP2\u2019, \u2018AP3\u2019, \u2018AP4\u2019, we searched in PDB for solved structures of any large or medium/small subunit in a given organism (11 solved structures for the large subunits and six solved structures for the medium/small subunits were used to initiate searches [Figure 1\u2014figure supplement 1]). These structures span different domains found within the subunits. For each search, a list was output of any proteins found to contain structural homology. Included in this information are the precise amino acids encompassing the region of similarity, the probability score, and most importantly the \u2018result number\u2019. A protein with a \u2018result number\u2019 of \u20181\u2019 means that there was no other structure in the PDB database that it is more like. Since multiple structures for the various subunits were used, we could also factor in the number of times a particular protein was identified in a search (\u2018repeats\u2019). These parameters were used as key pieces of evidence to determine how likely a hit in these searches would be. Once the primary data were outputted, all other manipulations were performed in Excel. For the large subunits there were 11 data sets (the 11 structures used to search for homologues), and for the medium/small subunits there were six data sets. The data manipulation was standardised at this point, and the following steps performed to assimilate the data. The data sets were sorted by result number to preclude anything with a result number of >50 (this means that there are 49 other structures in the PDB database that this protein is more similar to). Duplicates, where a protein was identified in multiple searches, were removed with the highest ranking (in \u2018result\u2019 terms) kept, and the number of times it was identified recorded in a new column (\u2018repeats\u2019). The results were the ordered with the lowest \u2018Result number\u2019 and the highest \u2018Probability\u2019 to give a final list of proteins (Figure 1\u2014source data 1, 2). Generally only proteins with a \u2018Result number\u2019 <10, \u2018Probability\u2019 >50%, at least 100 amino acids of homology (\u2018thstt\u2019 to \u2018thend\u2019), and \u2018Repeats\u2019 at least two times were considered to be real hits. For ease of visualisation, only proteins with Result number <10 or \u2018Repeats\u2019 >2 are shown, and other proteins of interest (e.g., FCHo1, Syp1) with Result number <10 that did not fit the criteria listed above are greyed out. The \u2018IDs\u2019 have been deduced using NCBI BLAST searches, and have not been experimentally verified. Where the identity is ambiguous (such as the identity of a \u03b2-adaptin), a shared homology is suggested." + }, + { + "self_ref": "#/texts/41", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/42" + } + ], + "label": "section_header", + "prov": [], + "orig": "Dictyostelium: the search for TSPOON and TCUP", + "text": "Dictyostelium: the search for TSPOON and TCUP", + "level": 1 + }, + { + "self_ref": "#/texts/42", + "parent": { + "$ref": "#/texts/41" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "While searching for genes encoding potential components of the complex in four dictyostelid genomes, we could find complete sets in Polysphondylium pallidum and Dictyostelium fasciculatum, but one component each was missing in the databases of predicted proteins of D. discoideum (\u03c3-like subunit) and D. purpureum (\u03bc-like subunit). We identified these genes by tblastn (Camacho et al., 2009), using the most closely related orthologous sequence as query and the chromosomal sequences as target. Gene models were created and refined using the Artemis tool (Carver et al., 2012). These two genes have been given the DictyBase IDs DDB_G0350235 (D. discoideum TSPOON) and DPU0040472 (D. purpureum TCUP) (www.dictybase.org).", + "text": "While searching for genes encoding potential components of the complex in four dictyostelid genomes, we could find complete sets in Polysphondylium pallidum and Dictyostelium fasciculatum, but one component each was missing in the databases of predicted proteins of D. discoideum (\u03c3-like subunit) and D. purpureum (\u03bc-like subunit). We identified these genes by tblastn (Camacho et al., 2009), using the most closely related orthologous sequence as query and the chromosomal sequences as target. Gene models were created and refined using the Artemis tool (Carver et al., 2012). These two genes have been given the DictyBase IDs DDB_G0350235 (D. discoideum TSPOON) and DPU0040472 (D. purpureum TCUP) (www.dictybase.org)." + }, + { + "self_ref": "#/texts/43", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/44" + } + ], + "label": "section_header", + "prov": [], + "orig": "Dictyostelium expression constructs", + "text": "Dictyostelium expression constructs", + "level": 1 + }, + { + "self_ref": "#/texts/44", + "parent": { + "$ref": "#/texts/43" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "The \u03c3-like (TSPOON) coding sequence (CDS) was synthesised (GeneCust) with a BglII restriction site inserted at its 5\u2032 end, its stop codon removed, and a SpeI site inserted at its 3' end, then cloned into pBluescript KSII and sequenced. The CDS was then transferred into a derivative of pDM1005 (Veltman et al., 2009) as a BglII/SpeI fragment, placing GFP at the C terminus, with expression driven from the constitutive actin15 promoter, to generate plasmid pJH101. In addition, the TSPOON promoter and the first 105 bases of the CDS were amplified from Ax2 gemonic DNA by PCR, using primers (5\u2032TATCTCGAGCGTCTTCATCTTCACTATCATTTAATG-3\u2032) and (5\u2032-TAAAAGCTTTTCATATTCACTCTGTTTCTCGTC-3\u2032). The product was cut with XhoI/HindIII, and the 536-bp fragment cloned into the pBluescript KSII plasmid already containing the TSPOON CDS, via the XhoI site in the vector and the silent HindIII site introduced at nucleotide +97 of the TSPOON CDS during its synthesis. The resulting promoter-driven TSPOON CDS was removed by digestion with XhoI/SpeI and inserted into the corresponding sites of pDM323 and pDM450, resulting in expression constructs containing the TSPOON CDS with GFP fused at its C terminus and driven by its own promoter (pDT61 and pDT58 respectively).", + "text": "The \u03c3-like (TSPOON) coding sequence (CDS) was synthesised (GeneCust) with a BglII restriction site inserted at its 5\u2032 end, its stop codon removed, and a SpeI site inserted at its 3' end, then cloned into pBluescript KSII and sequenced. The CDS was then transferred into a derivative of pDM1005 (Veltman et al., 2009) as a BglII/SpeI fragment, placing GFP at the C terminus, with expression driven from the constitutive actin15 promoter, to generate plasmid pJH101. In addition, the TSPOON promoter and the first 105 bases of the CDS were amplified from Ax2 gemonic DNA by PCR, using primers (5\u2032TATCTCGAGCGTCTTCATCTTCACTATCATTTAATG-3\u2032) and (5\u2032-TAAAAGCTTTTCATATTCACTCTGTTTCTCGTC-3\u2032). The product was cut with XhoI/HindIII, and the 536-bp fragment cloned into the pBluescript KSII plasmid already containing the TSPOON CDS, via the XhoI site in the vector and the silent HindIII site introduced at nucleotide +97 of the TSPOON CDS during its synthesis. The resulting promoter-driven TSPOON CDS was removed by digestion with XhoI/SpeI and inserted into the corresponding sites of pDM323 and pDM450, resulting in expression constructs containing the TSPOON CDS with GFP fused at its C terminus and driven by its own promoter (pDT61 and pDT58 respectively)." + }, + { + "self_ref": "#/texts/45", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/46" + }, + { + "$ref": "#/texts/47" + } + ], + "label": "section_header", + "prov": [], + "orig": "Dictyostelium cell culture and transformation", + "text": "Dictyostelium cell culture and transformation", + "level": 1 + }, + { + "self_ref": "#/texts/46", + "parent": { + "$ref": "#/texts/45" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "All of the methods used for cell biological studies on Dictyostelium are described in detail at Bio-protocol (Hirst et al., 2015).", + "text": "All of the methods used for cell biological studies on Dictyostelium are described in detail at Bio-protocol (Hirst et al., 2015)." + }, + { + "self_ref": "#/texts/47", + "parent": { + "$ref": "#/texts/45" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "D. discoideum Ax2-derived strains were grown and maintained in HL5 medium (Formedium) containing 200 \u00b5g/ml dihydrostreptomycin on tissue culture treated plastic dishes, or shaken at 180 rpm, at 22\u00b0C (Kay, 1987). Cells were transformed with expression constructs (30 \u00b5g/4 \u00d7 106 cells) by electroporation using previously described methods (Knecht and Pang, 1995). Transformants were selected and maintained in axenic medium supplemented with 60 \u00b5g/ml hygromycin (pDT58 and pJH101) and 20 \u00b5g/ml G418 (pDT61 and Actin15_GTP; Traynor and Kay, 2007). For the TSPOON knockout, 17.5 \u00b5g of the blasticidin disruption cassette, freed from pDT70 by digestion with ApaI and SacII, was added to 4 \u00d7 106 Ax2 cells before electroporation. Transformants were selected and maintained in HL5 medium containing 10 \u00b5g/ml blasicidin.", + "text": "D. discoideum Ax2-derived strains were grown and maintained in HL5 medium (Formedium) containing 200 \u00b5g/ml dihydrostreptomycin on tissue culture treated plastic dishes, or shaken at 180 rpm, at 22\u00b0C (Kay, 1987). Cells were transformed with expression constructs (30 \u00b5g/4 \u00d7 106 cells) by electroporation using previously described methods (Knecht and Pang, 1995). Transformants were selected and maintained in axenic medium supplemented with 60 \u00b5g/ml hygromycin (pDT58 and pJH101) and 20 \u00b5g/ml G418 (pDT61 and Actin15_GTP; Traynor and Kay, 2007). For the TSPOON knockout, 17.5 \u00b5g of the blasticidin disruption cassette, freed from pDT70 by digestion with ApaI and SacII, was added to 4 \u00d7 106 Ax2 cells before electroporation. Transformants were selected and maintained in HL5 medium containing 10 \u00b5g/ml blasicidin." + }, + { + "self_ref": "#/texts/48", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/49" + }, + { + "$ref": "#/texts/50" + } + ], + "label": "section_header", + "prov": [], + "orig": "Dictyostelium microscopy and fractionation", + "text": "Dictyostelium microscopy and fractionation", + "level": 1 + }, + { + "self_ref": "#/texts/49", + "parent": { + "$ref": "#/texts/48" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "Cells were transformed with GFP driven by the actin 15 promoter (A15_GFP; Traynor and Kay, 2007), or with TSPOON-GFP driven by either the actin 15 promoter (A15_TSPOON -GFP) or its own promoter (promoter_TSPOON-GFP). For microscopy, the cells were washed in KK2 (16.5 mM KH2PO4, 3.8 mM K2HPO4, 2 mM MgSO4) at 2 \u00d7 107/ml and then transferred into glass bottom dishes (MatTek, Ashland, MA) at 1 \u00d7 106/cm2. They were either imaged immediately (vegetative) or allowed to starve for a further 6\u20138 hr (developed) before imaging live on a Zeiss Axiovert 200 inverted microscope (Carl Zeiss, Jena, Germany) using a Zeiss Plan Achromat 63 \u00d7 oil immersion objective (numerical aperture 1.4), an OCRA-ER2 camera (Hamamatsu, Hamamatsu, Japan), and Improvision Openlab software (PerkinElmer, Waltham, MA). Various treatments including with or without starvation, fixation, pre-fixation saponin treatment did not reveal obvious membrane-associated labelling in cells expressing either promoter_TSPOON-GFP and A15_TSPOON expressing cells.", + "text": "Cells were transformed with GFP driven by the actin 15 promoter (A15_GFP; Traynor and Kay, 2007), or with TSPOON-GFP driven by either the actin 15 promoter (A15_TSPOON -GFP) or its own promoter (promoter_TSPOON-GFP). For microscopy, the cells were washed in KK2 (16.5 mM KH2PO4, 3.8 mM K2HPO4, 2 mM MgSO4) at 2 \u00d7 107/ml and then transferred into glass bottom dishes (MatTek, Ashland, MA) at 1 \u00d7 106/cm2. They were either imaged immediately (vegetative) or allowed to starve for a further 6\u20138 hr (developed) before imaging live on a Zeiss Axiovert 200 inverted microscope (Carl Zeiss, Jena, Germany) using a Zeiss Plan Achromat 63 \u00d7 oil immersion objective (numerical aperture 1.4), an OCRA-ER2 camera (Hamamatsu, Hamamatsu, Japan), and Improvision Openlab software (PerkinElmer, Waltham, MA). Various treatments including with or without starvation, fixation, pre-fixation saponin treatment did not reveal obvious membrane-associated labelling in cells expressing either promoter_TSPOON-GFP and A15_TSPOON expressing cells." + }, + { + "self_ref": "#/texts/50", + "parent": { + "$ref": "#/texts/48" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "For fractionation, cells expressing A15_GFP or promoter_TSPOON-GFP were grown until they reached a density of 2\u20134 \u00d7 106/ml in selective media, and by microscopy >50% of cells were expressing GFP. Starting with a maximum of 8 \u00d7 108 cells, the cells were washed in KK2 buffer and then pelleted at 600 \u00d7 g for 3 min. The cells were resuspended in PBS with a protease inhibitor cocktail (Roche), lysed by 8 strokes of a motorized Potter\u2013Elvehjem homogenizer followed by 5 strokes through a 21-g needle, and centrifuged at 4100 \u00d7 g for 32 min to get rid of nuclei and unbroken cells. The postnuclear supernatant was then centrifuged at 50,000 rpm (135,700 \u00d7 g RCFmax) for 30 min in a TLA-110 rotor (Beckman Coulter) to recover the membrane pellet. The cytosolic supernatant and pellet were run on pre-cast NUPAGE 4\u201312% BisTris Gels (Novex) at equal protein loadings, and Western blots were probed with an antibody against GFP (Seaman et al., 2009).", + "text": "For fractionation, cells expressing A15_GFP or promoter_TSPOON-GFP were grown until they reached a density of 2\u20134 \u00d7 106/ml in selective media, and by microscopy >50% of cells were expressing GFP. Starting with a maximum of 8 \u00d7 108 cells, the cells were washed in KK2 buffer and then pelleted at 600 \u00d7 g for 3 min. The cells were resuspended in PBS with a protease inhibitor cocktail (Roche), lysed by 8 strokes of a motorized Potter\u2013Elvehjem homogenizer followed by 5 strokes through a 21-g needle, and centrifuged at 4100 \u00d7 g for 32 min to get rid of nuclei and unbroken cells. The postnuclear supernatant was then centrifuged at 50,000 rpm (135,700 \u00d7 g RCFmax) for 30 min in a TLA-110 rotor (Beckman Coulter) to recover the membrane pellet. The cytosolic supernatant and pellet were run on pre-cast NUPAGE 4\u201312% BisTris Gels (Novex) at equal protein loadings, and Western blots were probed with an antibody against GFP (Seaman et al., 2009)." + }, + { + "self_ref": "#/texts/51", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/52" + }, + { + "$ref": "#/texts/53" + } + ], + "label": "section_header", + "prov": [], + "orig": "Dictyostelium pulldowns and proteomics", + "text": "Dictyostelium pulldowns and proteomics", + "level": 1 + }, + { + "self_ref": "#/texts/52", + "parent": { + "$ref": "#/texts/51" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "Pulldowns were performed using Dictyostelium discoideum stably expressing TSPOON-GFP under a constitutive (A15_ TSPOON-GFP) and its own promoter (prom_TSPOON-GFP). Similar results were found with both cell lines regardless of the promoter. Non-transformed cells were used as a control. Cells were grown until they reached a density of 2\u20134 \u00d7 106/ml in selective media, and by microscopy >50% of cells were expressing GFP. Starting with a maximum of 8 \u00d7 108 cells, they were pelleted by centrifugation (600\u00d7g for 2 min) and washed twice in KK2 buffer before being resuspended at 2 \u00d7 107 cells/ml in KK2 buffer and starved for 4\u20136 hr at 22\u00b0C by shaking at 180 rpm. The cells were then pelleted at 600\u00d7g for 3 min and then lysed in 4 ml PBS 1% TX100 plus protease inhibitor cocktail tablet (Roche) for 10 min on ice, and then spun 20,000\u00d7g 15 min to get rid of debris and insoluble material. By protein assay the resulting lysate contained 10\u201315 mg total protein. The lysates were pre-cleared using PA-sepharose 30 min, and then immunoprecipitated using anti-GFP overnight with rotation at 4\u00b0C. PA-sepharose was added for 60 min and then the antibody complexes washed with PBS 1%TX100 followed by PBS before elution from beads with 100 mM Tris, 2% SDS 60\u00b0C for 10 min. The eluted proteins were precipitated with acetone overnight at \u221220\u00b0C, recovered by spinning 15,000\u00d7g 5 min and then resuspending in sample buffer. The samples were run on pre-cast NUPAGE 4\u201312% BisTris Gels (Novex), stained with SimplyBlue Safe Stain (Invitrogen) and then cut into 8 gel slices. Each gel slice was processed by filter-aided sample preparation solution digest, and the sample was analyzed by liquid chromatography\u2013tandem mass spectrometry in an Orbitrap mass spectrometer (Thermo Scientific; Waltham, MA) (Antrobus and Borner, 2011).", + "text": "Pulldowns were performed using Dictyostelium discoideum stably expressing TSPOON-GFP under a constitutive (A15_ TSPOON-GFP) and its own promoter (prom_TSPOON-GFP). Similar results were found with both cell lines regardless of the promoter. Non-transformed cells were used as a control. Cells were grown until they reached a density of 2\u20134 \u00d7 106/ml in selective media, and by microscopy >50% of cells were expressing GFP. Starting with a maximum of 8 \u00d7 108 cells, they were pelleted by centrifugation (600\u00d7g for 2 min) and washed twice in KK2 buffer before being resuspended at 2 \u00d7 107 cells/ml in KK2 buffer and starved for 4\u20136 hr at 22\u00b0C by shaking at 180 rpm. The cells were then pelleted at 600\u00d7g for 3 min and then lysed in 4 ml PBS 1% TX100 plus protease inhibitor cocktail tablet (Roche) for 10 min on ice, and then spun 20,000\u00d7g 15 min to get rid of debris and insoluble material. By protein assay the resulting lysate contained 10\u201315 mg total protein. The lysates were pre-cleared using PA-sepharose 30 min, and then immunoprecipitated using anti-GFP overnight with rotation at 4\u00b0C. PA-sepharose was added for 60 min and then the antibody complexes washed with PBS 1%TX100 followed by PBS before elution from beads with 100 mM Tris, 2% SDS 60\u00b0C for 10 min. The eluted proteins were precipitated with acetone overnight at \u221220\u00b0C, recovered by spinning 15,000\u00d7g 5 min and then resuspending in sample buffer. The samples were run on pre-cast NUPAGE 4\u201312% BisTris Gels (Novex), stained with SimplyBlue Safe Stain (Invitrogen) and then cut into 8 gel slices. Each gel slice was processed by filter-aided sample preparation solution digest, and the sample was analyzed by liquid chromatography\u2013tandem mass spectrometry in an Orbitrap mass spectrometer (Thermo Scientific; Waltham, MA) (Antrobus and Borner, 2011)." + }, + { + "self_ref": "#/texts/53", + "parent": { + "$ref": "#/texts/51" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "Proteins that came down in the non-transformed control were eliminated, as were any proteins with less than 5 identified peptides, proteins that did not consistently coimmunoprecipitate in three independent experiments, or proteins of very low abundance compared with the bait (i.e., molar ratios of <0.002). The remaining ten proteins were considered to be specifically immunoprecipitated. Normalized peptide intensities were used to estimate the relative abundance of the specific interactors (iBAQ method; Schwanh\u00e4usser et al., 2011). For each protein, the values from all five repeats were plotted, including the bait protein and GFP which are clearly overrepresented by overexpression. The relative abundances of proteins were normalized to the median abundance of all proteins across each experiment (i.e., median set to 1.0) and values were then log-transformed and plotted.", + "text": "Proteins that came down in the non-transformed control were eliminated, as were any proteins with less than 5 identified peptides, proteins that did not consistently coimmunoprecipitate in three independent experiments, or proteins of very low abundance compared with the bait (i.e., molar ratios of <0.002). The remaining ten proteins were considered to be specifically immunoprecipitated. Normalized peptide intensities were used to estimate the relative abundance of the specific interactors (iBAQ method; Schwanh\u00e4usser et al., 2011). For each protein, the values from all five repeats were plotted, including the bait protein and GFP which are clearly overrepresented by overexpression. The relative abundances of proteins were normalized to the median abundance of all proteins across each experiment (i.e., median set to 1.0) and values were then log-transformed and plotted." + }, + { + "self_ref": "#/texts/54", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/55" + }, + { + "$ref": "#/texts/56" + } + ], + "label": "section_header", + "prov": [], + "orig": "Dictyostelium gene disruption", + "text": "Dictyostelium gene disruption", + "level": 1 + }, + { + "self_ref": "#/texts/55", + "parent": { + "$ref": "#/texts/54" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "The TSPOON disruption plasmid was constructed by inserting regions amplified by PCR from upstream and downstream of the TSPOON gene into both side of the blasticidin-resistance cassette in pLPBLP (Faix et al., 2004). The primer pair used to amplify the 5\u2032 region was TCP1 (5\u2032-ACTGGGCCCTGATGTTTACCTCTCTTTGGGTCATCCCATTCTATAC-3\u2032) with \u03c3-TCP2 (5\u2032-AAAAAGCTTTATTACCATTGTTATTGGTAATTAACAAACTATTGATC-3\u2032) and for the 3\u2032 homology TCP3 (5\u2032-A CCGCGGCCGCATAATTCAAAGAGGTCATTTAGATCAAGTTCAATTAG-3\u2032) with TCP4 (5\u2032-CCTCCGCGGCTTCAGGCATTGGTTCAACTTCTTGATTATTCTCAAC -3'). The PCR products were inserted as ApaI/HindIII and NotI/SacII fragments into the corresponding sites in pLPBLP, yielding pDT70.", + "text": "The TSPOON disruption plasmid was constructed by inserting regions amplified by PCR from upstream and downstream of the TSPOON gene into both side of the blasticidin-resistance cassette in pLPBLP (Faix et al., 2004). The primer pair used to amplify the 5\u2032 region was TCP1 (5\u2032-ACTGGGCCCTGATGTTTACCTCTCTTTGGGTCATCCCATTCTATAC-3\u2032) with \u03c3-TCP2 (5\u2032-AAAAAGCTTTATTACCATTGTTATTGGTAATTAACAAACTATTGATC-3\u2032) and for the 3\u2032 homology TCP3 (5\u2032-A CCGCGGCCGCATAATTCAAAGAGGTCATTTAGATCAAGTTCAATTAG-3\u2032) with TCP4 (5\u2032-CCTCCGCGGCTTCAGGCATTGGTTCAACTTCTTGATTATTCTCAAC -3'). The PCR products were inserted as ApaI/HindIII and NotI/SacII fragments into the corresponding sites in pLPBLP, yielding pDT70." + }, + { + "self_ref": "#/texts/56", + "parent": { + "$ref": "#/texts/54" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "Growth of control vs mutant strains was assayed in HL5 medium, by calculating the mean generation time, and on Klebsiella aerogenes bacterial lawns, by monitoring the expansion of a spot of 104 cells. Spore viability was also assayed, both with and without detergent treatment, by clonally diluting spores on bacterial lawns and counting the resultant plaques (Kay, 1982).", + "text": "Growth of control vs mutant strains was assayed in HL5 medium, by calculating the mean generation time, and on Klebsiella aerogenes bacterial lawns, by monitoring the expansion of a spot of 104 cells. Spore viability was also assayed, both with and without detergent treatment, by clonally diluting spores on bacterial lawns and counting the resultant plaques (Kay, 1982)." + }, + { + "self_ref": "#/texts/57", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/58" + }, + { + "$ref": "#/texts/59" + } + ], + "label": "section_header", + "prov": [], + "orig": "Endocytosis assays", + "text": "Endocytosis assays", + "level": 1 + }, + { + "self_ref": "#/texts/58", + "parent": { + "$ref": "#/texts/57" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "Membrane uptake was measured in real time at 22\u00b0C with 2 \u00d7 106 cells in 1 ml of KK2C containing 10 \u00b5M FM1-43 (Life Technologies). Briefly, a 2-ml fluorimeter cuvette containing 0.9 ml of KK2C plus 11 \u00b5M FM1-43 was placed in the fluorimeter (PerkinElmer LS50B) with stirring set on high. The uptake was initiated by the addition of 100 \u00b5l cells at 2 \u00d7 107/ml in KK2C and data collected every 1.2 s at an excitation of 470 nm (slit width 5 nm) and emission of 570 nm (slit width 10 nm) for up to 360 s. The uptake curves were biphasic and the data were normalized against the initial rise in fluorescence, when the cells were first added to the FM1-43, as this essentially corresponds to the dye incorporation into the plasma membrane only (Aguado-Velasco and Bretscher, 1999). The uptake rate was calculated from linear regression of the initial linear phase of the uptake using GraphPad Prism software. The surface area uptake time is 1/slope of the initial phase.", + "text": "Membrane uptake was measured in real time at 22\u00b0C with 2 \u00d7 106 cells in 1 ml of KK2C containing 10 \u00b5M FM1-43 (Life Technologies). Briefly, a 2-ml fluorimeter cuvette containing 0.9 ml of KK2C plus 11 \u00b5M FM1-43 was placed in the fluorimeter (PerkinElmer LS50B) with stirring set on high. The uptake was initiated by the addition of 100 \u00b5l cells at 2 \u00d7 107/ml in KK2C and data collected every 1.2 s at an excitation of 470 nm (slit width 5 nm) and emission of 570 nm (slit width 10 nm) for up to 360 s. The uptake curves were biphasic and the data were normalized against the initial rise in fluorescence, when the cells were first added to the FM1-43, as this essentially corresponds to the dye incorporation into the plasma membrane only (Aguado-Velasco and Bretscher, 1999). The uptake rate was calculated from linear regression of the initial linear phase of the uptake using GraphPad Prism software. The surface area uptake time is 1/slope of the initial phase." + }, + { + "self_ref": "#/texts/59", + "parent": { + "$ref": "#/texts/57" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "Fluid phase uptake was measured at 22\u00b0C using FITC-dextran 70 kDa (Sigma FD-70) by adding 2 mg/ml (final) to cells (1 \u00d7 107/ml) in filtered HL5 medium that was shaken at 180 rpm. Duplicate 0.5 ml samples were taken at each time point and diluted in 1 ml of ice-cold HL5 in a microcentrifuge tube held on iced water. Cells were pelleted, the supernatant aspirated, and the pellet washed twice by centrifugation in 1.5 ml ice-cold wash buffer (KK2C plus 0.5%wt/vol BSA) before being lysed in 1 ml of buffer [100 mM Tris\u2013HCl, 0.2% (vol/vol) Triton X-100, pH 8.6] and fluorescence then determined (excitation 490 nm, slit width 2.5 nm; emission 520 nm, slit width 10 nm). Data were normalized to protein content (Traynor and Kay, 2007).", + "text": "Fluid phase uptake was measured at 22\u00b0C using FITC-dextran 70 kDa (Sigma FD-70) by adding 2 mg/ml (final) to cells (1 \u00d7 107/ml) in filtered HL5 medium that was shaken at 180 rpm. Duplicate 0.5 ml samples were taken at each time point and diluted in 1 ml of ice-cold HL5 in a microcentrifuge tube held on iced water. Cells were pelleted, the supernatant aspirated, and the pellet washed twice by centrifugation in 1.5 ml ice-cold wash buffer (KK2C plus 0.5%wt/vol BSA) before being lysed in 1 ml of buffer [100 mM Tris\u2013HCl, 0.2% (vol/vol) Triton X-100, pH 8.6] and fluorescence then determined (excitation 490 nm, slit width 2.5 nm; emission 520 nm, slit width 10 nm). Data were normalized to protein content (Traynor and Kay, 2007)." + }, + { + "self_ref": "#/texts/60", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/61" + } + ], + "label": "section_header", + "prov": [], + "orig": "Comparative genomics", + "text": "Comparative genomics", + "level": 1 + }, + { + "self_ref": "#/texts/61", + "parent": { + "$ref": "#/texts/60" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "Sequences from Arabidopsis thaliana, Dictyostelium discoideum, and Naegleria gruberi were obtained with our new reverse HHpred tool. These sequences were used to build HMMs for each subunit using HMMer v3.1b1 (http://hmmer.org). HMMs were used to search the protein databases for the organisms in Figure 3A (see Figure 3\u2014source data 1 for the location of each genomic database). Sequences identified as potential homologues were verified through reciprocal BLAST into the genomes of each of the original three sequences. Sequences were considered homologues if they retrieved the correct orthologue as the reciprocal best hit in at least one of the reference genomes, with an e-value at least two orders of magnitude better than the next best hit. New sequences were incorporated into the HMM prior to searching a new genome in order to increase the sensitivity and specificity of the HMM. Genomic protein databases were also searched by BLAST using the closest related organism with an identified sequence as the reference genome. Nucleotide databases (scaffolds or contigs) were also searched using tblastn to ensure that no sequences were missed resulting from incomplete protein databases. The distribution of TSET components is displayed in Coulson plot format using the Coulson plot generator v1.5 (Field et al., 2013).", + "text": "Sequences from Arabidopsis thaliana, Dictyostelium discoideum, and Naegleria gruberi were obtained with our new reverse HHpred tool. These sequences were used to build HMMs for each subunit using HMMer v3.1b1 (http://hmmer.org). HMMs were used to search the protein databases for the organisms in Figure 3A (see Figure 3\u2014source data 1 for the location of each genomic database). Sequences identified as potential homologues were verified through reciprocal BLAST into the genomes of each of the original three sequences. Sequences were considered homologues if they retrieved the correct orthologue as the reciprocal best hit in at least one of the reference genomes, with an e-value at least two orders of magnitude better than the next best hit. New sequences were incorporated into the HMM prior to searching a new genome in order to increase the sensitivity and specificity of the HMM. Genomic protein databases were also searched by BLAST using the closest related organism with an identified sequence as the reference genome. Nucleotide databases (scaffolds or contigs) were also searched using tblastn to ensure that no sequences were missed resulting from incomplete protein databases. The distribution of TSET components is displayed in Coulson plot format using the Coulson plot generator v1.5 (Field et al., 2013)." + }, + { + "self_ref": "#/texts/62", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/63" + } + ], + "label": "section_header", + "prov": [], + "orig": "Phylogenetic analysis", + "text": "Phylogenetic analysis", + "level": 1 + }, + { + "self_ref": "#/texts/63", + "parent": { + "$ref": "#/texts/62" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "Identified sequences were combined with the adaptin and COPI sequences from Hirst et al. (2011) into subunit-specific data sets with the intention of concatenation. Data sets were aligned using MUSCLE v3.6 (Edgar, 2004) and masked and trimmed using Mesquite v2.75. Phylogenetic analysis was carried out using MrBayes v.3.2.2 (Ronquist and Huelsenbeck, 2003) and RAxML v7.6.3 (Stamatakis, 2006), hosted on the CIPRES web portal (Miller et al., 2010). MrBayes was run using a mixed model with the gamma parameter until convergence (splits frequencey of 0.1). RAxML was run under the LG + F + CAT model (Lartillot et al., 2009) and bootstrapped with 100 pseudoreplicates. The resulting trees were visualized using FigTree v1.4. Initial data sets were run and long branches were removed. Data sets were then re-aligned and re-run as above. Opisthokont adaptin and COPI sequences were also removed from all data sets except from the TCUP alignment. Data sets were realigned and new phylogenetic analyses were carried out. Remaining sequences were used for concatenation. Sequences were aligned and trimmed, as above, and concatenated using Geneious v7.0.6. Subsequent phylogenetic analysis was carried using PhyloBayes v3.3 (Lartillot et al., 2009) under the LG + CAT model until a splits frequency of 0.1 and 100 sampling points was achieved, and PhyML v3.0, with model testing carried out using ProtTest v3.3. MrBayes and RAxML were used as above. Raw phylogenetic trees were converted into figures using Adobe Illustrator CS4. The models of amino acid sequence evolution are provided in Figure 3\u2014figure supplement 1. The database identifiers of all sequences and their abbreviations and figure annotations are provided in Figure 3\u2014source data 1. All alignments are available in Supplementary file 1.", + "text": "Identified sequences were combined with the adaptin and COPI sequences from Hirst et al. (2011) into subunit-specific data sets with the intention of concatenation. Data sets were aligned using MUSCLE v3.6 (Edgar, 2004) and masked and trimmed using Mesquite v2.75. Phylogenetic analysis was carried out using MrBayes v.3.2.2 (Ronquist and Huelsenbeck, 2003) and RAxML v7.6.3 (Stamatakis, 2006), hosted on the CIPRES web portal (Miller et al., 2010). MrBayes was run using a mixed model with the gamma parameter until convergence (splits frequencey of 0.1). RAxML was run under the LG + F + CAT model (Lartillot et al., 2009) and bootstrapped with 100 pseudoreplicates. The resulting trees were visualized using FigTree v1.4. Initial data sets were run and long branches were removed. Data sets were then re-aligned and re-run as above. Opisthokont adaptin and COPI sequences were also removed from all data sets except from the TCUP alignment. Data sets were realigned and new phylogenetic analyses were carried out. Remaining sequences were used for concatenation. Sequences were aligned and trimmed, as above, and concatenated using Geneious v7.0.6. Subsequent phylogenetic analysis was carried using PhyloBayes v3.3 (Lartillot et al., 2009) under the LG + CAT model until a splits frequency of 0.1 and 100 sampling points was achieved, and PhyML v3.0, with model testing carried out using ProtTest v3.3. MrBayes and RAxML were used as above. Raw phylogenetic trees were converted into figures using Adobe Illustrator CS4. The models of amino acid sequence evolution are provided in Figure 3\u2014figure supplement 1. The database identifiers of all sequences and their abbreviations and figure annotations are provided in Figure 3\u2014source data 1. All alignments are available in Supplementary file 1." + }, + { + "self_ref": "#/texts/64", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/65" + } + ], + "label": "section_header", + "prov": [], + "orig": "Homology modeling", + "text": "Homology modeling", + "level": 1 + }, + { + "self_ref": "#/texts/65", + "parent": { + "$ref": "#/texts/64" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "The Phyre v2.0 web server (Kelley and Sternberg, 2009) was used to predict the 3D structures of each TTRAY from A. thaliana, D. discoideum, and N. gruberi. Default settings were used for structural predictions, and structures were visualized using MacPyMOL (www.pymol.org).", + "text": "The Phyre v2.0 web server (Kelley and Sternberg, 2009) was used to predict the 3D structures of each TTRAY from A. thaliana, D. discoideum, and N. gruberi. Default settings were used for structural predictions, and structures were visualized using MacPyMOL (www.pymol.org)." + }, + { + "self_ref": "#/texts/66", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "section_header", + "prov": [], + "orig": "Figures", + "text": "Figures", + "level": 1 + }, + { + "self_ref": "#/texts/67", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [], + "orig": "Figure 1. Diagrams of APs and F-COPI. (A) Structures of the assembled complexes. All six complexes are heterotetramers; the individual subunits are called adaptins in the APs (e.g., \u03b3-adaptin) and COPs in COPI (e.g., \u03b3-COP). The two large subunits in each complex are structurally similar to each other. They are arranged with their N-terminal domains in the core of the complex, and these domains are usually (but not always) followed by a flexible linker and an appendage domain. The medium subunits consist of an N-terminal longin-related domain followed by a C-terminal \u03bc homology domain (MHD). The small subunits consist of a longin-related domain only. (B) Jpred secondary structure predictions of some of the known subunits (all from Homo sapiens), together with new family members from Dictyostelium discoideum (Dd) and Arabidopsis thaliana (At). See also Figure 1\u2014figure supplements 1\u20134, Figure 1\u2014source data 1, 2. DOI:http://dx.doi.org/10.7554/eLife.02866.003 ", + "text": "Figure 1. Diagrams of APs and F-COPI. (A) Structures of the assembled complexes. All six complexes are heterotetramers; the individual subunits are called adaptins in the APs (e.g., \u03b3-adaptin) and COPs in COPI (e.g., \u03b3-COP). The two large subunits in each complex are structurally similar to each other. They are arranged with their N-terminal domains in the core of the complex, and these domains are usually (but not always) followed by a flexible linker and an appendage domain. The medium subunits consist of an N-terminal longin-related domain followed by a C-terminal \u03bc homology domain (MHD). The small subunits consist of a longin-related domain only. (B) Jpred secondary structure predictions of some of the known subunits (all from Homo sapiens), together with new family members from Dictyostelium discoideum (Dd) and Arabidopsis thaliana (At). See also Figure 1\u2014figure supplements 1\u20134, Figure 1\u2014source data 1, 2. DOI:http://dx.doi.org/10.7554/eLife.02866.003 " + }, + { + "self_ref": "#/texts/68", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [], + "orig": "Figure 1\u2014figure supplement 1. PDB entries used to search for adaptor-related proteins. DOI:http://dx.doi.org/10.7554/eLife.02866.006", + "text": "Figure 1\u2014figure supplement 1. PDB entries used to search for adaptor-related proteins. DOI:http://dx.doi.org/10.7554/eLife.02866.006" + }, + { + "self_ref": "#/texts/69", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [], + "orig": "Figure 1\u2014figure supplement 2. Summary table of all subunits identified using reverse HHpred. The lighter shading indicates where an orthologue was found either below the arbitrary cut-off, by using NCBI BLAST (see Figure 1\u2014figure supplement 3), or by searching a genomic database (e.g., AP-1 \u03bc1 |Naegr1|35900|, JGI). The new complex is called \u2018TSET\u2019. DOI:http://dx.doi.org/10.7554/eLife.02866.007", + "text": "Figure 1\u2014figure supplement 2. Summary table of all subunits identified using reverse HHpred. The lighter shading indicates where an orthologue was found either below the arbitrary cut-off, by using NCBI BLAST (see Figure 1\u2014figure supplement 3), or by searching a genomic database (e.g., AP-1 \u03bc1 |Naegr1|35900|, JGI). The new complex is called \u2018TSET\u2019. DOI:http://dx.doi.org/10.7554/eLife.02866.007" + }, + { + "self_ref": "#/texts/70", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [], + "orig": "Figure 1\u2014figure supplement 3. Subunits that failed to be identified using reverse HHpred, but were identified by homology searching using NCBI BLAST. DOI:http://dx.doi.org/10.7554/eLife.02866.008", + "text": "Figure 1\u2014figure supplement 3. Subunits that failed to be identified using reverse HHpred, but were identified by homology searching using NCBI BLAST. DOI:http://dx.doi.org/10.7554/eLife.02866.008" + }, + { + "self_ref": "#/texts/71", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [], + "orig": "Figure 1\u2014figure supplement 4. TSET orthologues in different species. The orthologues were identified by reverse HHpred, except for those in italics, which were found by BLAST searching (NCBI) using closely related organisms. TTRAY1 and TTRAY2 were initially identified by proteomics in a complex with TSET, but could also have been predicted by reverse HHpred as closely related to \u03b2\u2032-COP using the PDB structure, 3mkq_A. In all other organisms TTRAY1 and TTRAY2 were identified by NCBI BLAST (italics). Note that orthologues of TSAUCER in P. patens, and TTRAY 2 in M. pusilla were identified in Phytozome, which is a genomic database hosted by Joint Genome Institute (JGI). Note orthologues of TCUP in D. purpureum and TSPOON in D. discoideum were identified by searching genomic sequences using closely related sequences, and have been manually appended in DictyBase. In these cases corresponding sequences are not at present found at NCBI. Whilst S. moellendorffii and V. vinifera were included in the reverse HHpred database, they were not included in the Coulson plot. DOI:http://dx.doi.org/10.7554/eLife.02866.009", + "text": "Figure 1\u2014figure supplement 4. TSET orthologues in different species. The orthologues were identified by reverse HHpred, except for those in italics, which were found by BLAST searching (NCBI) using closely related organisms. TTRAY1 and TTRAY2 were initially identified by proteomics in a complex with TSET, but could also have been predicted by reverse HHpred as closely related to \u03b2\u2032-COP using the PDB structure, 3mkq_A. In all other organisms TTRAY1 and TTRAY2 were identified by NCBI BLAST (italics). Note that orthologues of TSAUCER in P. patens, and TTRAY 2 in M. pusilla were identified in Phytozome, which is a genomic database hosted by Joint Genome Institute (JGI). Note orthologues of TCUP in D. purpureum and TSPOON in D. discoideum were identified by searching genomic sequences using closely related sequences, and have been manually appended in DictyBase. In these cases corresponding sequences are not at present found at NCBI. Whilst S. moellendorffii and V. vinifera were included in the reverse HHpred database, they were not included in the Coulson plot. DOI:http://dx.doi.org/10.7554/eLife.02866.009" + }, + { + "self_ref": "#/texts/72", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [], + "orig": "Figure 1\u2014figure supplement 5. Identification of ENTH/ANTH domain proteins and the AP complexes with which they associate, using reverse HHpred. Reverse HHpred searches were initiated using the key words \u2018epsin\u2019 or \u2018ENTH\u2019. The PDB structures used were: 1eyh_A (Chain A, Crystal Structure Of The Epsin N-Terminal Homology (Enth) Domain At 1.56 Angstrom Resolution); 1inz_A (Chain A, Solution Structure Of The Epsin N-Terminal Homology (Enth) Domain Of Human Epsin); 1xgw_A (Chain A, The Crystal Structure Of Human Enthoprotin N-Terminal Domain); 3onk_A (Chain A, Yeast Ent3_enth Domain), and the output was assimilated in Excel as described for the adaptors. The identity of the hits was determined using NCBI BLAST searching. Note that all of the organisms that have lost AP-4 have also lost its binding partner, tepsin. DOI:http://dx.doi.org/10.7554/eLife.02866.010", + "text": "Figure 1\u2014figure supplement 5. Identification of ENTH/ANTH domain proteins and the AP complexes with which they associate, using reverse HHpred. Reverse HHpred searches were initiated using the key words \u2018epsin\u2019 or \u2018ENTH\u2019. The PDB structures used were: 1eyh_A (Chain A, Crystal Structure Of The Epsin N-Terminal Homology (Enth) Domain At 1.56 Angstrom Resolution); 1inz_A (Chain A, Solution Structure Of The Epsin N-Terminal Homology (Enth) Domain Of Human Epsin); 1xgw_A (Chain A, The Crystal Structure Of Human Enthoprotin N-Terminal Domain); 3onk_A (Chain A, Yeast Ent3_enth Domain), and the output was assimilated in Excel as described for the adaptors. The identity of the hits was determined using NCBI BLAST searching. Note that all of the organisms that have lost AP-4 have also lost its binding partner, tepsin. DOI:http://dx.doi.org/10.7554/eLife.02866.010" + }, + { + "self_ref": "#/texts/73", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [], + "orig": "Figure 2. Characterisation of the TSET complex in Dictyostelium. (A) Western blots of axenic D. discoideum expressing either GFP-tagged small subunit (\u03c3-like) or free GFP, under the control of the Actin15 promoter, labelled with anti-GFP. The Ax2 parental cell strain was included as a control, and an antibody against the AP-2\u03b1 subunit was used to demonstrate that equivalent amounts of protein were loaded. (B) Coomassie blue-stained gel of GFP-tagged small subunit and associated proteins immunoprecipitated with anti-GFP. The GFP-tagged protein is indicated with a red asterix. (C) iBAQ ratios (an estimate of molar ratios) for the proteins that consistently coprecipitated with the GFP-tagged small subunit. All appear to be equimolar with each other, and the higher ratios for the small (\u03c3-like/TSPOON) subunit and GFP are likely to be a consequence of their overexpression, which we also saw in a repeat experiment in which we used the small subunit's own promoter (Figure 2\u2014figure supplement 1). (D) Predicted structure of the N-terminal portion of D. discoideum TTRAY1, shown as a ribbon diagram. (E) Stills from live cell imaging of cells expressing either TSPOON-GFP or free GFP, using TIRF microscopy. The punctate labelling in the TSPOON-GFP-expressing cells indicates that some of the construct is associated with the plasma membrane. See Videos 1 and 2. (F) Western blots of extracts from cells expressing either TSPOON-GFP or free GFP. The post-nuclear supernatants (PNS) were centrifuged at high speed to generate supernatant (cytosol) and pellet fractions. Equal protein loadings were probed with anti-GFP. Whereas the GFP was exclusively cytosolic, a substantial proportion of TSPOON-GFP fractionated into the membrane-containing pellet. (G) Mean generation time (MGT) for control (Ax2) and TSPOON knockout cells. The knockout cells grew slightly faster than the control. (H) Differentiation of the Ax2 control strain and two TSPOON knockout strains (1725 and 1727). All three strains produced fruiting bodies upon starvation. (I) Assay for fluid phase endocytosis. The control and knockout strains took up FITC-dextran at similar rates. (J) Assay for endocytosis of membrane, labelled with FM1-43, showing the time taken to internalise the entire surface area. The knockout strains took significantly longer than the control (*p<0.05; **p<0.01). See also Figure 2\u2014figure supplements 1 and 2, Figure 2; Videos 1 and 2. DOI:http://dx.doi.org/10.7554/eLife.02866.011", + "text": "Figure 2. Characterisation of the TSET complex in Dictyostelium. (A) Western blots of axenic D. discoideum expressing either GFP-tagged small subunit (\u03c3-like) or free GFP, under the control of the Actin15 promoter, labelled with anti-GFP. The Ax2 parental cell strain was included as a control, and an antibody against the AP-2\u03b1 subunit was used to demonstrate that equivalent amounts of protein were loaded. (B) Coomassie blue-stained gel of GFP-tagged small subunit and associated proteins immunoprecipitated with anti-GFP. The GFP-tagged protein is indicated with a red asterix. (C) iBAQ ratios (an estimate of molar ratios) for the proteins that consistently coprecipitated with the GFP-tagged small subunit. All appear to be equimolar with each other, and the higher ratios for the small (\u03c3-like/TSPOON) subunit and GFP are likely to be a consequence of their overexpression, which we also saw in a repeat experiment in which we used the small subunit's own promoter (Figure 2\u2014figure supplement 1). (D) Predicted structure of the N-terminal portion of D. discoideum TTRAY1, shown as a ribbon diagram. (E) Stills from live cell imaging of cells expressing either TSPOON-GFP or free GFP, using TIRF microscopy. The punctate labelling in the TSPOON-GFP-expressing cells indicates that some of the construct is associated with the plasma membrane. See Videos 1 and 2. (F) Western blots of extracts from cells expressing either TSPOON-GFP or free GFP. The post-nuclear supernatants (PNS) were centrifuged at high speed to generate supernatant (cytosol) and pellet fractions. Equal protein loadings were probed with anti-GFP. Whereas the GFP was exclusively cytosolic, a substantial proportion of TSPOON-GFP fractionated into the membrane-containing pellet. (G) Mean generation time (MGT) for control (Ax2) and TSPOON knockout cells. The knockout cells grew slightly faster than the control. (H) Differentiation of the Ax2 control strain and two TSPOON knockout strains (1725 and 1727). All three strains produced fruiting bodies upon starvation. (I) Assay for fluid phase endocytosis. The control and knockout strains took up FITC-dextran at similar rates. (J) Assay for endocytosis of membrane, labelled with FM1-43, showing the time taken to internalise the entire surface area. The knockout strains took significantly longer than the control (*p<0.05; **p<0.01). See also Figure 2\u2014figure supplements 1 and 2, Figure 2; Videos 1 and 2. DOI:http://dx.doi.org/10.7554/eLife.02866.011" + }, + { + "self_ref": "#/texts/74", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [], + "orig": "Figure 2\u2014figure supplement 1. Further characterisation of Dictyostelium TSET. (A) iBAQ ratios for the proteins that coprecipitated with TSPOON-GFP, normalized to the median abundance of all proteins across five experiments. ND = not detected. (B) Fluorescence and phase contrast micrographs of cells expressing GFP-tagged TSPOON under the control of its own promoter (Prom-TSPOON-GFP). The construct appears mainly cytosolic. (C) Homology modeling of TTRAYs from A. thaliana, D. discoideum, and N. gruberi, revealing two \u03b2-propeller domains followed by an \u03b1-solenoid. (D) Disruption of the TSPOON gene. PCR was used to amplify either the wild-type TSPOON gene (in Ax2) or the disrupted TSPOON gene. The resulting products were either left uncut (U) or digested with SmaI (S), which should not cut the wild-type gene, but should cleave the disrupted gene into three bands. Several clones are shown, including HM1725 (200/1 A1). (E) Spore viability after detergent treatment was used to test for integrity of the cellulosic spore and the ability to hatch in a timely manner. The control (Ax2) strain and the knockout (HM1725) strain both showed good viability. (F) Expansion rate of plaques on bacterial lawns. The rates for control (Ax2) and knockout (HM1725, 1727, and 1728) strains were similar initially, but by 2 days the control plaques were larger. (G) Micrographs of plaques from control and knockout strains. DOI:http://dx.doi.org/10.7554/eLife.02866.012", + "text": "Figure 2\u2014figure supplement 1. Further characterisation of Dictyostelium TSET. (A) iBAQ ratios for the proteins that coprecipitated with TSPOON-GFP, normalized to the median abundance of all proteins across five experiments. ND = not detected. (B) Fluorescence and phase contrast micrographs of cells expressing GFP-tagged TSPOON under the control of its own promoter (Prom-TSPOON-GFP). The construct appears mainly cytosolic. (C) Homology modeling of TTRAYs from A. thaliana, D. discoideum, and N. gruberi, revealing two \u03b2-propeller domains followed by an \u03b1-solenoid. (D) Disruption of the TSPOON gene. PCR was used to amplify either the wild-type TSPOON gene (in Ax2) or the disrupted TSPOON gene. The resulting products were either left uncut (U) or digested with SmaI (S), which should not cut the wild-type gene, but should cleave the disrupted gene into three bands. Several clones are shown, including HM1725 (200/1 A1). (E) Spore viability after detergent treatment was used to test for integrity of the cellulosic spore and the ability to hatch in a timely manner. The control (Ax2) strain and the knockout (HM1725) strain both showed good viability. (F) Expansion rate of plaques on bacterial lawns. The rates for control (Ax2) and knockout (HM1725, 1727, and 1728) strains were similar initially, but by 2 days the control plaques were larger. (G) Micrographs of plaques from control and knockout strains. DOI:http://dx.doi.org/10.7554/eLife.02866.012" + }, + { + "self_ref": "#/texts/75", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [], + "orig": "Figure 2\u2014figure supplement 2. Distribution of secG. DOI:http://dx.doi.org/10.7554/eLife.02866.013", + "text": "Figure 2\u2014figure supplement 2. Distribution of secG. DOI:http://dx.doi.org/10.7554/eLife.02866.013" + }, + { + "self_ref": "#/texts/76", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [], + "orig": "Figure 2\u2014figure supplement 3. Distribution of vacuolins. DOI:http://dx.doi.org/10.7554/eLife.02866.014", + "text": "Figure 2\u2014figure supplement 3. Distribution of vacuolins. DOI:http://dx.doi.org/10.7554/eLife.02866.014" + }, + { + "self_ref": "#/texts/77", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [], + "orig": "Video 1. Related to Figure 2. TIRF microscopy of D. discoideum expressing TSPOON-GFP, expressed off its own promoter in TSPOON knockout cells. One frame was collected every second. Dynamic puncta can be seen, indicating that the construct forms patches at the plasma membrane. DOI:http://dx.doi.org/10.7554/eLife.02866.015", + "text": "Video 1. Related to Figure 2. TIRF microscopy of D. discoideum expressing TSPOON-GFP, expressed off its own promoter in TSPOON knockout cells. One frame was collected every second. Dynamic puncta can be seen, indicating that the construct forms patches at the plasma membrane. DOI:http://dx.doi.org/10.7554/eLife.02866.015" + }, + { + "self_ref": "#/texts/78", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [], + "orig": "Video 2. Related to Figure 2. TIRF microscopy of D. discoideum expressing free GFP, driven by the Actin15 promoter in TSPOON knockout cells. One frame was collected every second. The signal is diffuse and cytosolic. DOI:http://dx.doi.org/10.7554/eLife.02866.016", + "text": "Video 2. Related to Figure 2. TIRF microscopy of D. discoideum expressing free GFP, driven by the Actin15 promoter in TSPOON knockout cells. One frame was collected every second. The signal is diffuse and cytosolic. DOI:http://dx.doi.org/10.7554/eLife.02866.016" + }, + { + "self_ref": "#/texts/79", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [], + "orig": "Figure 3. Distribution of TSET subunits. (A) Coulson plot showing the distribution of TSET in a diverse set of representative eukaryotes. Presence of the entire complex in at least four supergroups suggests its presence in the last eukaryotic common ancestor (LECA) with frequent secondary loss. Solid sectors indicate sequences identified and classified using BLAST and HMMer. Empty sectors indicate taxa in which no significant orthologues were identified. Filled sectors in the Holozoa and Fungi represent F-BAR domain-containing FCHo and Syp1, respectively. Taxon name abbreviations are inset. Names in bold indicate taxa with all six components. (B) Deduced evolutionary history of TSET as present in the LECA but independently lost multiple times, either partially or completely. See also Figure 3\u2014source data 1, Figure 3\u2014figure supplement 1. DOI:http://dx.doi.org/10.7554/eLife.02866.017 ", + "text": "Figure 3. Distribution of TSET subunits. (A) Coulson plot showing the distribution of TSET in a diverse set of representative eukaryotes. Presence of the entire complex in at least four supergroups suggests its presence in the last eukaryotic common ancestor (LECA) with frequent secondary loss. Solid sectors indicate sequences identified and classified using BLAST and HMMer. Empty sectors indicate taxa in which no significant orthologues were identified. Filled sectors in the Holozoa and Fungi represent F-BAR domain-containing FCHo and Syp1, respectively. Taxon name abbreviations are inset. Names in bold indicate taxa with all six components. (B) Deduced evolutionary history of TSET as present in the LECA but independently lost multiple times, either partially or completely. See also Figure 3\u2014source data 1, Figure 3\u2014figure supplement 1. DOI:http://dx.doi.org/10.7554/eLife.02866.017 " + }, + { + "self_ref": "#/texts/80", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [], + "orig": "Figure 3\u2014figure supplement 1. Models used for phylogenetic analyses. WC = with COPI; WOC = without COPI. DOI:http://dx.doi.org/10.7554/eLife.02866.019", + "text": "Figure 3\u2014figure supplement 1. Models used for phylogenetic analyses. WC = with COPI; WOC = without COPI. DOI:http://dx.doi.org/10.7554/eLife.02866.019" + }, + { + "self_ref": "#/texts/81", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [], + "orig": "Figure 4. Evolution of TSET. (A) Simplified diagram of the concatenated tree for TSET, APs, and COPI, based on Figure 4\u2014figure supplement 8. Numbers indicate posterior probabilities for MrBayes and PhyloBayes and maxium-likelihood bootstrap values for PhyML and RAxML, in that order. (B) Schematic diagram of TSET. (C) Possible evolution of the three families of heterotetramers: TSET, APs, and COPI. We propose that the earliest ancestral complex was a likely a heterotrimer or a heterohexamer formed from two identical heterotrimers, containing large (red), small (yellow), and scaffolding (blue) subunits. All three of these proteins were composed of known ancient building blocks of the membrane-trafficking system (Vedovato et al., 2009): \u03b1-solenoid domains in both the large and scaffolding subunits; two \u03b2-propellers in the scaffolding subunit; and a longin domain forming the small subunit. The gene encoding the large subunit then duplicated and mutated to generate the two distinct types of large subunits (red and magenta), and the gene encoding the small subunit also duplicated and mutated (yellow and orange), with one of the two proteins (orange) acquiring a \u03bc homology domain (MHD) to form the ancestral heterotetramer, as proposed by Boehm and Bonifacino (12). However, the scaffolding subunit remained a homodimer. Upon diversification into three separate families, the scaffolding subunit duplicated independently in TSET and COPI, giving rise to TTRAY1 and TTRAY2 in TSET, and to \u03b1- and \u03b2\u2032-COP in COPI. COPI also acquired a new subunit, \u03b5-COP (purple). The scaffolding subunit may have been lost in the ancestral AP complex, as indicated in the diagram; however, AP-5 is tightly associated with two other proteins, SPG11 and SPG15, and the relationship of SPG11 and SPG15 to TTRAY/B-COPI remains unresolved, so it is possible that SPG11 and SPG15 are highly divergent descendants of the original scaffolding subunits. The other AP complexes are free heterotetramers when in the cytosol, but membrane-associated AP-1 and AP-2 interact with another scaffold, clathrin; and AP-3 has also been proposed to interact transiently with a protein with similar architecture, Vps41 (Rehling et al., 1999; Cabrera et al., 2010; Asensio et al., 2013). So far no scaffold has been proposed for AP-4. Although the order of emergence of TSET and COP relative to adaptins is unresolved, our most recent analyses indicate that, contrary to previous reports (Hirst et al., 2011), AP-5 diverged basally within the adaptin clade, followed by AP-3, AP-4, and APs 1 and 2, all prior to the LECA. This still suggests a primordial bridging of the secretory and phagocytic systems prior to emergence of a trans-Golgi network. The muniscins arose much later, in ancestral opisthokonts, from a translocation of the TSET MHD-encoding sequence to a position immediately downstream from an F-BAR domain-encoding sequence. Another translocation occurred in plants, where an SH3 domain-coding sequence was inserted at the 3\u2032 end of the TSAUCER-coding sequence. See also Figure 4\u2014figure supplements 1\u201310. DOI:http://dx.doi.org/10.7554/eLife.02866.020", + "text": "Figure 4. Evolution of TSET. (A) Simplified diagram of the concatenated tree for TSET, APs, and COPI, based on Figure 4\u2014figure supplement 8. Numbers indicate posterior probabilities for MrBayes and PhyloBayes and maxium-likelihood bootstrap values for PhyML and RAxML, in that order. (B) Schematic diagram of TSET. (C) Possible evolution of the three families of heterotetramers: TSET, APs, and COPI. We propose that the earliest ancestral complex was a likely a heterotrimer or a heterohexamer formed from two identical heterotrimers, containing large (red), small (yellow), and scaffolding (blue) subunits. All three of these proteins were composed of known ancient building blocks of the membrane-trafficking system (Vedovato et al., 2009): \u03b1-solenoid domains in both the large and scaffolding subunits; two \u03b2-propellers in the scaffolding subunit; and a longin domain forming the small subunit. The gene encoding the large subunit then duplicated and mutated to generate the two distinct types of large subunits (red and magenta), and the gene encoding the small subunit also duplicated and mutated (yellow and orange), with one of the two proteins (orange) acquiring a \u03bc homology domain (MHD) to form the ancestral heterotetramer, as proposed by Boehm and Bonifacino (12). However, the scaffolding subunit remained a homodimer. Upon diversification into three separate families, the scaffolding subunit duplicated independently in TSET and COPI, giving rise to TTRAY1 and TTRAY2 in TSET, and to \u03b1- and \u03b2\u2032-COP in COPI. COPI also acquired a new subunit, \u03b5-COP (purple). The scaffolding subunit may have been lost in the ancestral AP complex, as indicated in the diagram; however, AP-5 is tightly associated with two other proteins, SPG11 and SPG15, and the relationship of SPG11 and SPG15 to TTRAY/B-COPI remains unresolved, so it is possible that SPG11 and SPG15 are highly divergent descendants of the original scaffolding subunits. The other AP complexes are free heterotetramers when in the cytosol, but membrane-associated AP-1 and AP-2 interact with another scaffold, clathrin; and AP-3 has also been proposed to interact transiently with a protein with similar architecture, Vps41 (Rehling et al., 1999; Cabrera et al., 2010; Asensio et al., 2013). So far no scaffold has been proposed for AP-4. Although the order of emergence of TSET and COP relative to adaptins is unresolved, our most recent analyses indicate that, contrary to previous reports (Hirst et al., 2011), AP-5 diverged basally within the adaptin clade, followed by AP-3, AP-4, and APs 1 and 2, all prior to the LECA. This still suggests a primordial bridging of the secretory and phagocytic systems prior to emergence of a trans-Golgi network. The muniscins arose much later, in ancestral opisthokonts, from a translocation of the TSET MHD-encoding sequence to a position immediately downstream from an F-BAR domain-encoding sequence. Another translocation occurred in plants, where an SH3 domain-coding sequence was inserted at the 3\u2032 end of the TSAUCER-coding sequence. See also Figure 4\u2014figure supplements 1\u201310. DOI:http://dx.doi.org/10.7554/eLife.02866.020" + }, + { + "self_ref": "#/texts/82", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [], + "orig": "Figure 4\u2014figure supplement 1. Phylogenetic analysis of TPLATE, \u03b2-COP, and \u03b2-adaptin, with TPLATE robustly excluded from the \u03b2-COP clade. In this and all other figure supplements to Figure 4, AP subunits are boxed in blue, F-COPI subunits are boxed in red, and subunits of TSET are boxed in yellow. Node support for critical nodes is shown. Numbers indicate Bayesian posterior probabilities (MrBayes) and bootstrap support from Maximum-likelihood analysis (RAxML). Support values for other nodes are denoted by symbols (see inset). DOI:http://dx.doi.org/10.7554/eLife.02866.021", + "text": "Figure 4\u2014figure supplement 1. Phylogenetic analysis of TPLATE, \u03b2-COP, and \u03b2-adaptin, with TPLATE robustly excluded from the \u03b2-COP clade. In this and all other figure supplements to Figure 4, AP subunits are boxed in blue, F-COPI subunits are boxed in red, and subunits of TSET are boxed in yellow. Node support for critical nodes is shown. Numbers indicate Bayesian posterior probabilities (MrBayes) and bootstrap support from Maximum-likelihood analysis (RAxML). Support values for other nodes are denoted by symbols (see inset). DOI:http://dx.doi.org/10.7554/eLife.02866.021" + }, + { + "self_ref": "#/texts/83", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [], + "orig": "Figure 4\u2014figure supplement 2. Phylogenetic analysis of TPLATE and \u03b2-adaptin subunits (\u03b2-COP removed) showing, with weak support, that TPLATE is excluded from the adaptin clade. DOI:http://dx.doi.org/10.7554/eLife.02866.022", + "text": "Figure 4\u2014figure supplement 2. Phylogenetic analysis of TPLATE and \u03b2-adaptin subunits (\u03b2-COP removed) showing, with weak support, that TPLATE is excluded from the adaptin clade. DOI:http://dx.doi.org/10.7554/eLife.02866.022" + }, + { + "self_ref": "#/texts/84", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [], + "orig": "Figure 4\u2014figure supplement 3. Phylogenetic analysis of TSAUCER, \u03b3-COP, and \u03b3\u03b1\u03b4\u03b5\u03b6-adaptin subunits, with TCUP robustly excluded from the \u03b3-COP clade, and weakly excluded from the adaptin clade. DOI:http://dx.doi.org/10.7554/eLife.02866.023", + "text": "Figure 4\u2014figure supplement 3. Phylogenetic analysis of TSAUCER, \u03b3-COP, and \u03b3\u03b1\u03b4\u03b5\u03b6-adaptin subunits, with TCUP robustly excluded from the \u03b3-COP clade, and weakly excluded from the adaptin clade. DOI:http://dx.doi.org/10.7554/eLife.02866.023" + }, + { + "self_ref": "#/texts/85", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [], + "orig": "Figure 4\u2014figure supplement 4. Phylogenetic analysis of TSAUCER and \u03b3\u03b1\u03b4\u03b5\u03b6-adaptin subunits (\u03b3-COP removed), showing weak support for the exclusion of TSAUCER from the adaptin clade. DOI:http://dx.doi.org/10.7554/eLife.02866.024", + "text": "Figure 4\u2014figure supplement 4. Phylogenetic analysis of TSAUCER and \u03b3\u03b1\u03b4\u03b5\u03b6-adaptin subunits (\u03b3-COP removed), showing weak support for the exclusion of TSAUCER from the adaptin clade. DOI:http://dx.doi.org/10.7554/eLife.02866.024" + }, + { + "self_ref": "#/texts/86", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [], + "orig": "Figure 4\u2014figure supplement 5. Phylogenetic analysis of TCUP, \u03b4-COP, and \u03bc-adaptin subunits, with TSAUCER robustly excluded from the \u03b4-COP clade and weakly excluded from the adaptin clade. DOI:http://dx.doi.org/10.7554/eLife.02866.025", + "text": "Figure 4\u2014figure supplement 5. Phylogenetic analysis of TCUP, \u03b4-COP, and \u03bc-adaptin subunits, with TSAUCER robustly excluded from the \u03b4-COP clade and weakly excluded from the adaptin clade. DOI:http://dx.doi.org/10.7554/eLife.02866.025" + }, + { + "self_ref": "#/texts/87", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [], + "orig": "Figure 4\u2014figure supplement 6. Phylogenetic analysis of TCUP and \u03bc-adaptin subunits (\u03b4-COP removed), showing weak support for the exclusion of TCUP from the adaptin clade. DOI:http://dx.doi.org/10.7554/eLife.02866.026", + "text": "Figure 4\u2014figure supplement 6. Phylogenetic analysis of TCUP and \u03bc-adaptin subunits (\u03b4-COP removed), showing weak support for the exclusion of TCUP from the adaptin clade. DOI:http://dx.doi.org/10.7554/eLife.02866.026" + }, + { + "self_ref": "#/texts/88", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [], + "orig": "Figure 4\u2014figure supplement 7. Phylogenetic analysis of TSPOON with \u03b6-COP and \u03c3\u2013adaptin subunits with moderate support for the exclusion of TSPOON from both the COPI and adaptin clades, in addition to moderate support for the monophyly of the TSPOON clade. DOI:http://dx.doi.org/10.7554/eLife.02866.027", + "text": "Figure 4\u2014figure supplement 7. Phylogenetic analysis of TSPOON with \u03b6-COP and \u03c3\u2013adaptin subunits with moderate support for the exclusion of TSPOON from both the COPI and adaptin clades, in addition to moderate support for the monophyly of the TSPOON clade. DOI:http://dx.doi.org/10.7554/eLife.02866.027" + }, + { + "self_ref": "#/texts/89", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [], + "orig": "Figure 4\u2014figure supplement 8. TSET is a phylogenetically distinct lineage from F-COPI and the AP complexes. Phylogenetic analysis of the heterotetrameric complexes: F-COPI (orange), TSET (purple), and AP (magenta, blue, red, green, and yellow for 5, 3, 1, 2, and 4, respectively), shows strong, weak, and moderate support for clades of each complex, respectively. Node support for critical nodes is shown. Numbers indicate Bayesian posterior probabilities (MrBayes and PhyloBayes) and bootstrap support from Maximum-likelihood analysis (PhyML and RAXML). Support values for other nodes are denoted by symbols (see inset). DOI:http://dx.doi.org/10.7554/eLife.02866.028", + "text": "Figure 4\u2014figure supplement 8. TSET is a phylogenetically distinct lineage from F-COPI and the AP complexes. Phylogenetic analysis of the heterotetrameric complexes: F-COPI (orange), TSET (purple), and AP (magenta, blue, red, green, and yellow for 5, 3, 1, 2, and 4, respectively), shows strong, weak, and moderate support for clades of each complex, respectively. Node support for critical nodes is shown. Numbers indicate Bayesian posterior probabilities (MrBayes and PhyloBayes) and bootstrap support from Maximum-likelihood analysis (PhyML and RAXML). Support values for other nodes are denoted by symbols (see inset). DOI:http://dx.doi.org/10.7554/eLife.02866.028" + }, + { + "self_ref": "#/texts/90", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [], + "orig": "Figure 4\u2014figure supplement 9. Phylogenetic analysis of TTRAY1, TTRAY2, \u03b1-COP, and \u03b2\u2032-COP. TTRAYs 1 and 2, and COPI \u03b1 and \u03b2\u2032, arose from separate gene duplications, indicating that the ancestral complex had only one such protein, although possibly present as two identical copies. Phylogenetic analysis of \u03b1- and \u03b2\u2032-COPI (red), and TTRAYs 1 and 2 (yellow), shows a well supported COPI clade excluding all of the TTRAY1 and 2 sequences, suggesting that the duplications giving rise to these proteins occurred independently, and the utilization of two different outer coat members occurred through convergent evolution. Node support for critical nodes is shown. Numbers indicate Bayesian posterior probabilities (MrBayes) and bootstrap support from Maximum-likelihood analysis (RAxML). Support values for other nodes are denoted by symbols (see inset). DOI:http://dx.doi.org/10.7554/eLife.02866.029", + "text": "Figure 4\u2014figure supplement 9. Phylogenetic analysis of TTRAY1, TTRAY2, \u03b1-COP, and \u03b2\u2032-COP. TTRAYs 1 and 2, and COPI \u03b1 and \u03b2\u2032, arose from separate gene duplications, indicating that the ancestral complex had only one such protein, although possibly present as two identical copies. Phylogenetic analysis of \u03b1- and \u03b2\u2032-COPI (red), and TTRAYs 1 and 2 (yellow), shows a well supported COPI clade excluding all of the TTRAY1 and 2 sequences, suggesting that the duplications giving rise to these proteins occurred independently, and the utilization of two different outer coat members occurred through convergent evolution. Node support for critical nodes is shown. Numbers indicate Bayesian posterior probabilities (MrBayes) and bootstrap support from Maximum-likelihood analysis (RAxML). Support values for other nodes are denoted by symbols (see inset). DOI:http://dx.doi.org/10.7554/eLife.02866.029" + }, + { + "self_ref": "#/texts/91", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [], + "orig": "Figure 4\u2014figure supplement 10. Muniscin family members identified by reverse HHpred, using the following PDB structures. 2V0O_A (Chain A, Fcho2 F-Bar Domain); 3 G9H_A (Chain A, Crystal Structure Of The C-Terminal Mu Homology Domain Of Syp1); 3G9G_A (Chain A, Crystal Structure Of The N-Terminal EfcF-Bar Domain Of Syp1). DOI:http://dx.doi.org/10.7554/eLife.02866.030", + "text": "Figure 4\u2014figure supplement 10. Muniscin family members identified by reverse HHpred, using the following PDB structures. 2V0O_A (Chain A, Fcho2 F-Bar Domain); 3 G9H_A (Chain A, Crystal Structure Of The C-Terminal Mu Homology Domain Of Syp1); 3G9G_A (Chain A, Crystal Structure Of The N-Terminal EfcF-Bar Domain Of Syp1). DOI:http://dx.doi.org/10.7554/eLife.02866.030" + }, + { + "self_ref": "#/texts/92", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "section_header", + "prov": [], + "orig": "References", + "text": "References", + "level": 1 + }, + { + "self_ref": "#/texts/93", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "C Aguado-Velasco; MS Bretscher. Circulation of the plasma membrane in Dictyostelium. Molecular Biology of the Cell (1999)", + "text": "C Aguado-Velasco; MS Bretscher. Circulation of the plasma membrane in Dictyostelium. Molecular Biology of the Cell (1999)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/94", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "R Antrobus; GHH Borner. Improved elution conditions for native co-immunoprecipitation. PLOS ONE (2011)", + "text": "R Antrobus; GHH Borner. Improved elution conditions for native co-immunoprecipitation. PLOS ONE (2011)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/95", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "CS Asensio; DW Sirkis; JW Maas; K Egami; TL To; FM Brodsky; X Shu; Y Cheng; RH Edwards. Self-assembly of VPS41 promotes sorting required for biogenesis of the regulated secretory pathway. Developmental Cell (2013)", + "text": "CS Asensio; DW Sirkis; JW Maas; K Egami; TL To; FM Brodsky; X Shu; Y Cheng; RH Edwards. Self-assembly of VPS41 promotes sorting required for biogenesis of the regulated secretory pathway. Developmental Cell (2013)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/96", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "M Boehm; JS Bonifacino. Genetic analyses of adaptin function from yeast to mammals. Gene (2002)", + "text": "M Boehm; JS Bonifacino. Genetic analyses of adaptin function from yeast to mammals. Gene (2002)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/97", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "M Cabrera; L Langemeyer; M Mari; R Rethmeier; I Orban; A Perz; C Br\u00f6cker; J Griffith; D Klose; HJ Steinhoff; F Reggiori; S Engelbrecht-Vandr\u00e9; C Ungermann. Phosphorylation of a membrane curvature-sensing motif switches function of the HOPS subunit Vps41 in membrane tethering. The EMBO Journal (2010)", + "text": "M Cabrera; L Langemeyer; M Mari; R Rethmeier; I Orban; A Perz; C Br\u00f6cker; J Griffith; D Klose; HJ Steinhoff; F Reggiori; S Engelbrecht-Vandr\u00e9; C Ungermann. Phosphorylation of a membrane curvature-sensing motif switches function of the HOPS subunit Vps41 in membrane tethering. The EMBO Journal (2010)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/98", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "C Camacho; G Coulouris; V Avagyan; N Ma; J Papadopoulos; K Bealer; TL Madden. BLAST+: architecture and applications. BMC Bioinformatics (2009)", + "text": "C Camacho; G Coulouris; V Avagyan; N Ma; J Papadopoulos; K Bealer; TL Madden. BLAST+: architecture and applications. BMC Bioinformatics (2009)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/99", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "T Carver; SR Harris; M Berriman; J Parkhill; JA McQuillan. Artemis: an integrated platform for visualization and analysis of high-throughput sequence-based experimental data. Bioinformatics (2012)", + "text": "T Carver; SR Harris; M Berriman; J Parkhill; JA McQuillan. Artemis: an integrated platform for visualization and analysis of high-throughput sequence-based experimental data. Bioinformatics (2012)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/100", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "E Cocucci; F Aguet; S Boulant; T Kirchhausen. The first five seconds in the life of a clathrin-coated pit. Cell (2012)", + "text": "E Cocucci; F Aguet; S Boulant; T Kirchhausen. The first five seconds in the life of a clathrin-coated pit. Cell (2012)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/101", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "JB Dacks; PP Poon; MC Field. Phylogeny of endocytic components yields insight into the process of nonendosymbiotic organelle evolution. Proceedings of the National Academy of Sciences of the United States of America (2008)", + "text": "JB Dacks; PP Poon; MC Field. Phylogeny of endocytic components yields insight into the process of nonendosymbiotic organelle evolution. Proceedings of the National Academy of Sciences of the United States of America (2008)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/102", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "D Devos; S Dokudovskaya; F Alber; R Williams; BT Chait; A Sali; MP Rout. Components of coated vesicles and nuclear pore complexes share a common molecular architecture. PLOS Biology (2004)", + "text": "D Devos; S Dokudovskaya; F Alber; R Williams; BT Chait; A Sali; MP Rout. Components of coated vesicles and nuclear pore complexes share a common molecular architecture. PLOS Biology (2004)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/103", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "RC Edgar. MUSCLE: a multiple sequence alignment method with reduced time and space complexity. BMC Bioinformatics (2004)", + "text": "RC Edgar. MUSCLE: a multiple sequence alignment method with reduced time and space complexity. BMC Bioinformatics (2004)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/104", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "J Faix; L Kreppel; G Shaulsky; M Schleicher; AR Kimmel. A rapid and efficient method to generate multiple gene disruptions in Dictyostelium discoideum using a single selectable marker and the Cre-loxP system. Nucleic Acids Research (2004)", + "text": "J Faix; L Kreppel; G Shaulsky; M Schleicher; AR Kimmel. A rapid and efficient method to generate multiple gene disruptions in Dictyostelium discoideum using a single selectable marker and the Cre-loxP system. Nucleic Acids Research (2004)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/105", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "HI Field; RMR Coulson; MC Field. An automated graphics tool for comparative genomics: the Coulson plot generator. BMC Bioinformatics (2013)", + "text": "HI Field; RMR Coulson; MC Field. An automated graphics tool for comparative genomics: the Coulson plot generator. BMC Bioinformatics (2013)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/106", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "MC Field; JB Dacks. First and last ancestors: reconstructing evolution of the endomembrane system with ESCRTs, vesicle coat proteins, and nuclear pore complexes. Current Opinion in Cell Biology (2009)", + "text": "MC Field; JB Dacks. First and last ancestors: reconstructing evolution of the endomembrane system with ESCRTs, vesicle coat proteins, and nuclear pore complexes. Current Opinion in Cell Biology (2009)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/107", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "A Gadeyne; C Sanchez-Rodriguez; S Vanneste; S Di Rubbo; H Zauber; K Vanneste; J Van Leene; N De Winne; D Eeckhout; G Persiau; E Van De Slijke; B Cannoot; L Vercruysse; JR Mayers; M Adamowski; U Kania; M Ehrlich; A Schweighofer; T Ketelaar; S Maere; SY Bednarek; J Friml; K Gevaert; E Witters; E Russinova; S Persson; G De Jaeger; D Van Damme. The TPLATE adaptor complex drives clathrin-mediated endocytosis in plants. Cell (2014)", + "text": "A Gadeyne; C Sanchez-Rodriguez; S Vanneste; S Di Rubbo; H Zauber; K Vanneste; J Van Leene; N De Winne; D Eeckhout; G Persiau; E Van De Slijke; B Cannoot; L Vercruysse; JR Mayers; M Adamowski; U Kania; M Ehrlich; A Schweighofer; T Ketelaar; S Maere; SY Bednarek; J Friml; K Gevaert; E Witters; E Russinova; S Persson; G De Jaeger; D Van Damme. The TPLATE adaptor complex drives clathrin-mediated endocytosis in plants. Cell (2014)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/108", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "D Gotthardt; HJ Warnatz; O Henschel; F Br\u00fcckert; M Schleicher; T Soldati. High-resolution dissection of phagosome maturation reveals distinct membrane trafficking phases. Molecular Biology of the Cell (2002)", + "text": "D Gotthardt; HJ Warnatz; O Henschel; F Br\u00fcckert; M Schleicher; T Soldati. High-resolution dissection of phagosome maturation reveals distinct membrane trafficking phases. Molecular Biology of the Cell (2002)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/109", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "WM Henne; E Boucrot; M Meinecke; E Evergren; Y Vallis; R Mittal; HT McMahon. FCHO proteins are nucleators of clathrin-mediated endocytosis. Science (2010)", + "text": "WM Henne; E Boucrot; M Meinecke; E Evergren; Y Vallis; R Mittal; HT McMahon. FCHO proteins are nucleators of clathrin-mediated endocytosis. Science (2010)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/110", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "J Hirst; LD Barlow; GC Francisco; DA Sahlender; MNJ Seaman; JB Dacks; MS Robinson. The fifth adaptor protein complex. PLOS Biology (2011)", + "text": "J Hirst; LD Barlow; GC Francisco; DA Sahlender; MNJ Seaman; JB Dacks; MS Robinson. The fifth adaptor protein complex. PLOS Biology (2011)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/111", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "J Hirst; C Irving; GHH Borner. Adaptor protein complexes AP-4 and AP-5: new players in endosomal trafficking and progressive spastic paraplegia. Traffic (2013)", + "text": "J Hirst; C Irving; GHH Borner. Adaptor protein complexes AP-4 and AP-5: new players in endosomal trafficking and progressive spastic paraplegia. Traffic (2013)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/112", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "J Hirst; RR Kay; D Traynor. Dictyostelium Cultivation, Transfection, Microscopy and Fractionation. Bio-protocol (2015)", + "text": "J Hirst; RR Kay; D Traynor. Dictyostelium Cultivation, Transfection, Microscopy and Fractionation. Bio-protocol (2015)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/113", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "N Jenne; R Rauchenberger; U Hacker; T Kast; M Maniak. Targeted gene disruption reveals a role for vacuolin B in the late endocytic pathway and exocytosis. Journal of Cell Science (1998)", + "text": "N Jenne; R Rauchenberger; U Hacker; T Kast; M Maniak. Targeted gene disruption reveals a role for vacuolin B in the late endocytic pathway and exocytosis. Journal of Cell Science (1998)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/114", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "RR Kay. cAMP and spore differentiation in Dictyostelium discoideum. Proceedings of the National Academy of Sciences of the United States of America (1982)", + "text": "RR Kay. cAMP and spore differentiation in Dictyostelium discoideum. Proceedings of the National Academy of Sciences of the United States of America (1982)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/115", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "RR Kay. Cell differentiation in monolayers and the investigation of slime mold morphogens. Methods in Cell Biology (1987)", + "text": "RR Kay. Cell differentiation in monolayers and the investigation of slime mold morphogens. Methods in Cell Biology (1987)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/116", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "LA Kelley; MJE Sternberg. Protein structure prediction on the web: a case study using the Phyre server. Nature Protocols (2009)", + "text": "LA Kelley; MJE Sternberg. Protein structure prediction on the web: a case study using the Phyre server. Nature Protocols (2009)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/117", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "D Knecht; KM Pang. Electroporation of Dictyostelium discoideum. Methods in Molecular Biology (1995)", + "text": "D Knecht; KM Pang. Electroporation of Dictyostelium discoideum. Methods in Molecular Biology (1995)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/118", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "VL Koumandou; B Wickstead; ML Ginger; M van der Giezen; JB Dacks; MC Field. Molecular paleontology and complexity in the last eukaryotic common ancestor. Critical Reviews in Biochemistry and Molecular Biology (2013)", + "text": "VL Koumandou; B Wickstead; ML Ginger; M van der Giezen; JB Dacks; MC Field. Molecular paleontology and complexity in the last eukaryotic common ancestor. Critical Reviews in Biochemistry and Molecular Biology (2013)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/119", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "N Lartillot; T Lepage; S Blanquart. PhyloBayes 3: a Bayesian software package for phylogenetic reconstruction and molecular dating. Bioinformatics (2009)", + "text": "N Lartillot; T Lepage; S Blanquart. PhyloBayes 3: a Bayesian software package for phylogenetic reconstruction and molecular dating. Bioinformatics (2009)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/120", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "JR Mayers; L Wang; J Pramanik; A Johnson; A Sarkeshik; Y Wang; W Saengsawang; JR Yates; A Audhya. Regulation of ubiquitin-dependent cargo sorting by multiple endocytic adaptors at the plasma membrane. Proceedings of the National Academy of Sciences of the United States of America (2013)", + "text": "JR Mayers; L Wang; J Pramanik; A Johnson; A Sarkeshik; Y Wang; W Saengsawang; JR Yates; A Audhya. Regulation of ubiquitin-dependent cargo sorting by multiple endocytic adaptors at the plasma membrane. Proceedings of the National Academy of Sciences of the United States of America (2013)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/121", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "MA Miller; W Pfeiffer; T Schwartz. Creating the CIPRES Science Gateway for inference of large phylogenetic trees. in Proceedings of the Gateway Computing Environments Workshop. GCE (2010)", + "text": "MA Miller; W Pfeiffer; T Schwartz. Creating the CIPRES Science Gateway for inference of large phylogenetic trees. in Proceedings of the Gateway Computing Environments Workshop. GCE (2010)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/122", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "R Rauchenberger; U Hacker; J Murphy; J Niew\u00f6hner; M Maniak. Coronin and vacuolin identify consecutive stages of a late, actin-coated endocytic compartment in Dictyostelium. Current Biology: CB (1997)", + "text": "R Rauchenberger; U Hacker; J Murphy; J Niew\u00f6hner; M Maniak. Coronin and vacuolin identify consecutive stages of a late, actin-coated endocytic compartment in Dictyostelium. Current Biology: CB (1997)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/123", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "P Rehling; T Darsow; DJ Katzmann; SD Emr. Formation of AP-3 transport intermediates requires Vps41 function. Nature Cell Biology (1999)", + "text": "P Rehling; T Darsow; DJ Katzmann; SD Emr. Formation of AP-3 transport intermediates requires Vps41 function. Nature Cell Biology (1999)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/124", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "A Reider; SL Barker; SK Mishra; YJ Im; L Maldonado-Baez; JH Hurley; LM Traub; B Wendland. Syp1 is a conserved endocytic adaptor that contains domains involved in cargo selection and membrane tubulation. The EMBO Journal (2009)", + "text": "A Reider; SL Barker; SK Mishra; YJ Im; L Maldonado-Baez; JH Hurley; LM Traub; B Wendland. Syp1 is a conserved endocytic adaptor that contains domains involved in cargo selection and membrane tubulation. The EMBO Journal (2009)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/125", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "F Ronquist; JP Huelsenbeck. MrBayes 3: Bayesian phylogenetic inference under mixed models. Bioinformatics (2003)", + "text": "F Ronquist; JP Huelsenbeck. MrBayes 3: Bayesian phylogenetic inference under mixed models. Bioinformatics (2003)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/126", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "A Schlacht; EK Herman; MJ Klute; MC Field; JB Dacks. Missing pieces of an ancient puzzle: Evolution of the eukaryotic membrane-trafficking system. Cold Spring Harbor Perspectives in Biology (2014)", + "text": "A Schlacht; EK Herman; MJ Klute; MC Field; JB Dacks. Missing pieces of an ancient puzzle: Evolution of the eukaryotic membrane-trafficking system. Cold Spring Harbor Perspectives in Biology (2014)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/127", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "B Schwanh\u00e4usser; D Busse; N Li; G Dittmar; J Schuchhardt; J Wolf; W Chen; M Selbach. Global quantification of mammalian gene expression control. Nature (2011)", + "text": "B Schwanh\u00e4usser; D Busse; N Li; G Dittmar; J Schuchhardt; J Wolf; W Chen; M Selbach. Global quantification of mammalian gene expression control. Nature (2011)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/128", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "MNJ Seaman; ME Harbour; D Tattersall; E Read; N Bright. Membrane recruitment of the cargo-selective retromer subcomplex is catalysed by the small GTPase Rab7 and inhibited by the Rab-GAP TBC1D5. Journal of Cell Science (2009)", + "text": "MNJ Seaman; ME Harbour; D Tattersall; E Read; N Bright. Membrane recruitment of the cargo-selective retromer subcomplex is catalysed by the small GTPase Rab7 and inhibited by the Rab-GAP TBC1D5. Journal of Cell Science (2009)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/129", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "MC Shina; R M\u00fcller; R Blau-Wasser; G Gl\u00f6ckner; M Schleicher; L Eichinger; AA Noegel; W Kolanus. A cytohesin homolog in Dictyostelium amoebae. PLOS ONE (2010)", + "text": "MC Shina; R M\u00fcller; R Blau-Wasser; G Gl\u00f6ckner; M Schleicher; L Eichinger; AA Noegel; W Kolanus. A cytohesin homolog in Dictyostelium amoebae. PLOS ONE (2010)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/130", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "A Stamatakis. RAxML-VI-HPC: maximum likelihood-based phylogenetic analyses with thousands of taxa and mixed models. Bioinformatics (2006)", + "text": "A Stamatakis. RAxML-VI-HPC: maximum likelihood-based phylogenetic analyses with thousands of taxa and mixed models. Bioinformatics (2006)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/131", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "D Traynor; RR Kay. Possible roles of the endocytic cycle in cell motility. Journal of Cell Science (2007)", + "text": "D Traynor; RR Kay. Possible roles of the endocytic cycle in cell motility. Journal of Cell Science (2007)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/132", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "PK Umasankar; S Sanker; JR Thieman; S Chakraborty; B Wendland; M Tsang; LM Traub. Distinct and separable activities of the endocytic clathrin-coat components Fcho1/2 and AP-2 in developmental patterning. Nature Cell Biology (2012)", + "text": "PK Umasankar; S Sanker; JR Thieman; S Chakraborty; B Wendland; M Tsang; LM Traub. Distinct and separable activities of the endocytic clathrin-coat components Fcho1/2 and AP-2 in developmental patterning. Nature Cell Biology (2012)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/133", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "D Van Damme; S Coutuer; R De Rycke; FY Bouget; D Inz\u00e9; D Geelen. Somatic cytokinesis and pollen maturation in Arabidopsis depend on TPLATE, which has domains similar to coat proteins. The Plant Cell (2006)", + "text": "D Van Damme; S Coutuer; R De Rycke; FY Bouget; D Inz\u00e9; D Geelen. Somatic cytokinesis and pollen maturation in Arabidopsis depend on TPLATE, which has domains similar to coat proteins. The Plant Cell (2006)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/134", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "D Van Damme; A Gadeyne; M Vanstraelen; D Inz\u00e9; MC Van Montagu; G De Jaeger; E Russinova; D Geelen. Adaptin-like protein TPLATE and clathrin recruitment during plant somatic cytokinesis occurs via two distinct pathways. Proceedings of the National Academy of Sciences of the United States of America (2011)", + "text": "D Van Damme; A Gadeyne; M Vanstraelen; D Inz\u00e9; MC Van Montagu; G De Jaeger; E Russinova; D Geelen. Adaptin-like protein TPLATE and clathrin recruitment during plant somatic cytokinesis occurs via two distinct pathways. Proceedings of the National Academy of Sciences of the United States of America (2011)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/135", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "M Vedovato; V Rossi; JB Dacks; F Filippini. Comparative analysis of plant genomes allows the definition of the \u201cPhytolongins\u201d: a novel non-SNARE longin domain protein family. BMC Genomics (2009)", + "text": "M Vedovato; V Rossi; JB Dacks; F Filippini. Comparative analysis of plant genomes allows the definition of the \u201cPhytolongins\u201d: a novel non-SNARE longin domain protein family. BMC Genomics (2009)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/136", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "DM Veltman; G Akar; L Bosgraaf; PJ Van Haastert. A new set of small, extrachromosomal expression vectors for Dictyostelium discoideum. Plasmid (2009)", + "text": "DM Veltman; G Akar; L Bosgraaf; PJ Van Haastert. A new set of small, extrachromosomal expression vectors for Dictyostelium discoideum. Plasmid (2009)", + "enumerated": false, + "marker": "-" + } + ], + "pictures": [ + { + "self_ref": "#/pictures/0", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "picture", + "prov": [], + "captions": [ + { + "$ref": "#/texts/67" + } + ], + "references": [], + "footnotes": [], + "annotations": [] + }, + { + "self_ref": "#/pictures/1", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "picture", + "prov": [], + "captions": [ + { + "$ref": "#/texts/68" + } + ], + "references": [], + "footnotes": [], + "annotations": [] + }, + { + "self_ref": "#/pictures/2", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "picture", + "prov": [], + "captions": [ + { + "$ref": "#/texts/69" + } + ], + "references": [], + "footnotes": [], + "annotations": [] + }, + { + "self_ref": "#/pictures/3", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "picture", + "prov": [], + "captions": [ + { + "$ref": "#/texts/70" + } + ], + "references": [], + "footnotes": [], + "annotations": [] + }, + { + "self_ref": "#/pictures/4", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "picture", + "prov": [], + "captions": [ + { + "$ref": "#/texts/71" + } + ], + "references": [], + "footnotes": [], + "annotations": [] + }, + { + "self_ref": "#/pictures/5", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "picture", + "prov": [], + "captions": [ + { + "$ref": "#/texts/72" + } + ], + "references": [], + "footnotes": [], + "annotations": [] + }, + { + "self_ref": "#/pictures/6", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "picture", + "prov": [], + "captions": [ + { + "$ref": "#/texts/73" + } + ], + "references": [], + "footnotes": [], + "annotations": [] + }, + { + "self_ref": "#/pictures/7", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "picture", + "prov": [], + "captions": [ + { + "$ref": "#/texts/74" + } + ], + "references": [], + "footnotes": [], + "annotations": [] + }, + { + "self_ref": "#/pictures/8", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "picture", + "prov": [], + "captions": [ + { + "$ref": "#/texts/75" + } + ], + "references": [], + "footnotes": [], + "annotations": [] + }, + { + "self_ref": "#/pictures/9", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "picture", + "prov": [], + "captions": [ + { + "$ref": "#/texts/76" + } + ], + "references": [], + "footnotes": [], + "annotations": [] + }, + { + "self_ref": "#/pictures/10", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "picture", + "prov": [], + "captions": [ + { + "$ref": "#/texts/77" + } + ], + "references": [], + "footnotes": [], + "annotations": [] + }, + { + "self_ref": "#/pictures/11", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "picture", + "prov": [], + "captions": [ + { + "$ref": "#/texts/78" + } + ], + "references": [], + "footnotes": [], + "annotations": [] + }, + { + "self_ref": "#/pictures/12", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "picture", + "prov": [], + "captions": [ + { + "$ref": "#/texts/79" + } + ], + "references": [], + "footnotes": [], + "annotations": [] + }, + { + "self_ref": "#/pictures/13", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "picture", + "prov": [], + "captions": [ + { + "$ref": "#/texts/80" + } + ], + "references": [], + "footnotes": [], + "annotations": [] + }, + { + "self_ref": "#/pictures/14", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "picture", + "prov": [], + "captions": [ + { + "$ref": "#/texts/81" + } + ], + "references": [], + "footnotes": [], + "annotations": [] + }, + { + "self_ref": "#/pictures/15", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "picture", + "prov": [], + "captions": [ + { + "$ref": "#/texts/82" + } + ], + "references": [], + "footnotes": [], + "annotations": [] + }, + { + "self_ref": "#/pictures/16", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "picture", + "prov": [], + "captions": [ + { + "$ref": "#/texts/83" + } + ], + "references": [], + "footnotes": [], + "annotations": [] + }, + { + "self_ref": "#/pictures/17", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "picture", + "prov": [], + "captions": [ + { + "$ref": "#/texts/84" + } + ], + "references": [], + "footnotes": [], + "annotations": [] + }, + { + "self_ref": "#/pictures/18", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "picture", + "prov": [], + "captions": [ + { + "$ref": "#/texts/85" + } + ], + "references": [], + "footnotes": [], + "annotations": [] + }, + { + "self_ref": "#/pictures/19", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "picture", + "prov": [], + "captions": [ + { + "$ref": "#/texts/86" + } + ], + "references": [], + "footnotes": [], + "annotations": [] + }, + { + "self_ref": "#/pictures/20", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "picture", + "prov": [], + "captions": [ + { + "$ref": "#/texts/87" + } + ], + "references": [], + "footnotes": [], + "annotations": [] + }, + { + "self_ref": "#/pictures/21", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "picture", + "prov": [], + "captions": [ + { + "$ref": "#/texts/88" + } + ], + "references": [], + "footnotes": [], + "annotations": [] + }, + { + "self_ref": "#/pictures/22", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "picture", + "prov": [], + "captions": [ + { + "$ref": "#/texts/89" + } + ], + "references": [], + "footnotes": [], + "annotations": [] + }, + { + "self_ref": "#/pictures/23", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "picture", + "prov": [], + "captions": [ + { + "$ref": "#/texts/90" + } + ], + "references": [], + "footnotes": [], + "annotations": [] + }, + { + "self_ref": "#/pictures/24", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "picture", + "prov": [], + "captions": [ + { + "$ref": "#/texts/91" + } + ], + "references": [], + "footnotes": [], + "annotations": [] + } + ], + "tables": [], + "key_value_items": [], + "pages": {} +} \ No newline at end of file diff --git a/tests/data/groundtruth/docling_v2/PMC4031984-elife-02866.nxml.md b/tests/data/groundtruth/docling_v2/PMC4031984-elife-02866.nxml.md new file mode 100644 index 00000000..f4ff6fa5 --- /dev/null +++ b/tests/data/groundtruth/docling_v2/PMC4031984-elife-02866.nxml.md @@ -0,0 +1,280 @@ +# Characterization of TSET, an ancient and widespread membrane trafficking complex + +Jennifer Hirst; Cambridge Institute for Medical Research , University of Cambridge , Cambridge , United Kingdom; Alexander Schlacht; Department of Cell Biology , University of Alberta , Edmonton , Canada; John P Norcott; Department of Engineering , University of Cambridge , Cambridge , United Kingdom; David Traynor; Cell Biology , MRC Laboratory of Molecular Biology , Cambridge , United Kingdom; Gareth Bloomfield; Cell Biology , MRC Laboratory of Molecular Biology , Cambridge , United Kingdom; Robin Antrobus; Cambridge Institute for Medical Research , University of Cambridge , Cambridge , United Kingdom; Robert R Kay; Cell Biology , MRC Laboratory of Molecular Biology , Cambridge , United Kingdom; Joel B Dacks; Department of Cell Biology , University of Alberta , Edmonton , Canada; Margaret S Robinson; Cambridge Institute for Medical Research , University of Cambridge , Cambridge , United Kingdom + +The heterotetrameric AP and F-COPI complexes help to define the cellular map of modern eukaryotes. To search for related machinery, we developed a structure-based bioinformatics tool, and identified the core subunits of TSET, a 'missing link' between the APs and COPI. Studies in Dictyostelium indicate that TSET is a heterohexamer, with two associated scaffolding proteins. TSET is non-essential in Dictyostelium , but may act in plasma membrane turnover, and is essentially identical to the recently described TPLATE complex, TPC. However, whereas TPC was reported to be plant-specific, we can identify a full or partial complex in every eukaryotic supergroup. An evolutionary path can be deduced from the earliest origins of the heterotetramer/scaffold coat to its multiple manifestations in modern organisms, including the mammalian muniscins, descendants of the TSET medium subunits. Thus, we have uncovered the machinery for an ancient and widespread pathway, which provides new insights into early eukaryotic evolution. DOI: http://dx.doi.org/10.7554/eLife.02866.001 eLife digest Eukaryotes make up almost all of the life on Earth that we can see around us, and include organisms as diverse as animals, fungi, plants, slime moulds, and seaweeds. The defining feature of eukaryotes is that, unlike nearly all bacteria, they have membrane-bound compartments—such as the nucleus—within their cells. Moving molecules, such as proteins, between these compartments is essential for living eukaryotic cells, and these molecules are usually trafficked inside membrane-bound packages called vesicles. Two similar sets of protein complexes—each containing four different subunits—ensure that the molecules are packaged inside the correct vesicles. However, it is not clear how these two protein complexes (called the AP complexes and the COPI complex) are related to each other, and when and where they originated in the history of life. Now, Hirst, Schlacht et al. have discovered a new—but very ancient–protein complex that they refer to as the ‘missing link’ between the AP and COPI complexes. The four subunits inside this new complex were found by searching for proteins with shapes that were similar to those of the AP and COPI proteins, rather than just searching for proteins with similar sequences of amino acids. This approach identified related protein subunits in groups as diverse as plants and slime moulds, which suggests that this protein complex evolved in the earliest of the eukaryotes. The four subunits identified in a slime mould were confirmed to interact, and also shown to bind to the plasma membrane of living cells. One of the subunits had already been named TPLATE, so Hirst, Schlacht et al. decided to call the complex TSET; the other three subunits were named TSAUCER, TCUP and TSPOON, and two other proteins that interacted with the complex were both called TTRAY. While most of the TSET complex itself has been lost from humans and other animals, one of subunit appears to have evolved into a family of proteins that help molecules get into cells. The discovery of TSET reveals another major player in vesicle-trafficking that is not only important for our understanding of how modern eukaryotes work, but also how ancient eukaryotes evolved. DOI: http://dx.doi.org/10.7554/eLife.02866.002 + +## Introduction + +The evolution of eukaryotes some 2 billion years ago radically changed the biosphere, giving rise to nearly all visible life on Earth. Key to this transition was the ability to generate intracellular membrane compartments and the trafficking pathways that interconnect them, mediated in part by the heterotetrameric adaptor complexes, APs 1–5 and COPI (Dacks et al., 2008; Field and Dacks, 2009; Hirst et al., 2011; Koumandou et al., 2013). In mammals, APs 1 and 2 and COPI are essential for viability, while mutations in the other APs cause severe genetic disorders (Boehm and Bonifacino, 2002; Hirst et al., 2013). The AP and COPI complexes share a similar architecture, due to common ancestry predating the last eukaryotic common ancestor (LECA). All six complexes consist of two large subunits of ∼100 kD, a medium subunit of ∼50 kD, and a small subunit of ∼20 kD (Figure 1A). Their function is to select cargo for packaging into transport vesicles, and together with membrane-deforming scaffolding proteins such as clathrin and the COPI B-subcomplex, they facilitate the trafficking of proteins and lipids between membrane compartments in the secretory and endocytic pathways. The recent discovery of the evolutionarily ancient AP-5 complex, found on late endosomes and lysosomes, added a new dimension to models of the endomembrane system, and raised the possibility that other undetected membrane-trafficking complexes might exist (Hirst et al., 2011). Therefore, we set out in search of additional members of the AP/COPI subunit families. + +## Diagrams of APs and F-COPI. + +(A) Structures of the assembled complexes. All six complexes are heterotetramers; the individual subunits are called adaptins in the APs (e.g., γ-adaptin) and COPs in COPI (e.g., γ-COP). The two large subunits in each complex are structurally similar to each other. They are arranged with their N-terminal domains in the core of the complex, and these domains are usually (but not always) followed by a flexible linker and an appendage domain. The medium subunits consist of an N-terminal longin-related domain followed by a C-terminal μ homology domain (MHD). The small subunits consist of a longin-related domain only. (B) Jpred secondary structure predictions of some of the known subunits (all from Homo sapiens), together with new family members from Dictyostelium discoideum (Dd) and Arabidopsis thaliana (At). See also Figure 1—figure supplements 1–4, Figure 1—source data 1, 2. + +## Summary table of all subunits identified using reverse HHpred. + +The lighter shading indicates where an orthologue was found either below the arbitrary cut-off, by using NCBI BLAST (see Figure 1—figure supplement 3), or by searching a genomic database (e.g., AP-1 μ1 |Naegr1|35900|, JGI). The new complex is called ‘TSET’. + +## The search for novel AP-related complexes + +Because we were unable to find any promising candidates for new AP/COPI-related machinery using sequence-based searches, we developed a more sensitive tool, designed to search for structural similarity rather than sequence similarity. Using HHpred to analyse every protein in the RefSeq database from 15 organisms, covering a broad span of eukaryotic diversity, we built a ‘reverse HHpred’ database. This database contains potential homologues for >300,000 different proteins (http://reversehhpred.cimr.cam.ac.uk), and can be searched with structures from the Protein Data Bank (PDB). As proof of principle, we used this database to identify all four subunits of the AP-5 complex (Figure 1—figure supplements 1 and 2; Figure 1—source data 1, 2), even though in our previous study only the medium subunit was initially detectable by bioinformatics-based searching (Hirst et al., 2011). + +In addition to known proteins, our reverse HHpred database revealed novel candidates for each of the four subunit families, with orthologues present in diverse eukaryotes including plants and Dictyostelium (Figure 1—figure supplements 2–4, Figure 1—source data 1, 2). Secondary structure predictions confirmed that the new family members have similar folds to their counterparts in the AP complexes and COPI (Figure 1B). Only one of these proteins had been characterised functionally: TPLATE (NP\_186827.2), an Arabidopsis protein related to the AP β subunits and β-COP, found in a microscopy-based screen for proteins involved in mitosis and localised to the cell plate (Van Damme et al., 2006; Van Damme et al., 2011). There is some variability between orthologous subunits in different organisms: for instance, Arabidopsis has added an SH3 domain to the C-terminal end of its ‘γαδεζ’ large subunit, while Dictyostelium has lost the μ homology domain (MHD) at the end of its medium subunit; and in general there seems to be much less selective pressure on these genes than on those encoding other AP/COPI family members (e.g., the AP-1 β1 subunits are 58.01% identical in Dictyostelium and Arabidopsis, while the new β family members are only 14.63% identical). + +## TSET: a new trafficking complex + +To determine whether the four new candidate subunits identified in our searches actually form a complex, we transformed D. discoideum with a GFP-tagged version of its small (σ-like) subunit (Figure 2A), and then used anti-GFP to immunoprecipitate the construct and any associated proteins from cell extracts (Figure 2B). Precipitates were analysed by mass spectrometry, yielding ten proteins considered to be specifically immunoprecipitated (Figure 2—figure supplement 1a). Two of these were the small subunit itself and its GFP tag. Three others were the remaining candidate subunits: XP\_639969.1 (the β-like subunit), XP\_640471.1 (the γαδεζ-like subunit), and XP\_629998.1 (the μ-like subunit), confirming their presence in a complex. Quantification by iBAQ indicated that these three proteins were present in the immunoprecipitate at approximately equimolar levels (Figure 2C, Figure 2—figure supplement 1A), while the small subunit and GFP tag were in ∼15-fold molar excess, probably due to overexpression. + +Interestingly, two of the other proteins in the immunoprecipitate, also approximately equimolar to the three coprecipitating subunits, were XP\_642289.1 and XP\_637150.1. Both proteins are predicted to consist of two N-terminal β-propeller domains followed by an α-solenoid (Figure 2D, Figure 2—figure supplement 1C). This type of architecture is found in several coat components, including clathrin heavy chain, SPG11 (associated with AP-5), the α-COP and β′-COP subunits of the COPI coat (B-COPI), and the Sec31 subunit of the COPII coat (Devos et al., 2004). HHpred analyses show that the closest matches for both XP\_642289.1 and XP\_637150.1 are β'-COP, followed by α-COP. Probable orthologues of XP\_642289.1 and XP\_637150.1 can be found in other organisms that have the four core subunits (Figure 1—figure supplement 4). Because proteins with this architecture often act as a coat for transport vesicles, we hypothesize that these proteins may provide a scaffold for the newly identified heterotetramer. + +The other three proteins in the immunoprecipitate, secG and vacuolins A and B, appear to be less widespread taxonomically (Figure 2—figure supplement 2 and 3), but are nonetheless suggestive of function. SecG is related to the plasma membrane- and endosome-associated ARNO/cytohesin family of Arf GEFs in animal cells (Shina et al., 2010), and also appears to be equimolar with the core complex. Vacuolins are members of the SPFH (stomatin-prohibitin-flotillin-HflC/K) superfamily. They have been shown to associate with the late vacuole just before exocytosis and also with the plasma membrane (Rauchenberger et al., 1997; Gotthardt et al., 2002), and to contribute to vacuole function (Jenne et al., 1998). However, the amounts of coprecipitating vacuolins were more variable, suggesting that they are less tightly associated with the complex (Figure 2—figure supplement 1A). Thus, like TPLATE, both SecG and the vacuolins have been implicated in membrane traffic, acting at the plasma membrane and/or endosomal compartments. + +## Characterisation of the TSET complex in Dictyostelium. + +(A) Western blots of axenic D. discoideum expressing either GFP-tagged small subunit (σ-like) or free GFP, under the control of the Actin15 promoter, labelled with anti-GFP. The Ax2 parental cell strain was included as a control, and an antibody against the AP-2α subunit was used to demonstrate that equivalent amounts of protein were loaded. (B) Coomassie blue-stained gel of GFP-tagged small subunit and associated proteins immunoprecipitated with anti-GFP. The GFP-tagged protein is indicated with a red asterix. (C) iBAQ ratios (an estimate of molar ratios) for the proteins that consistently coprecipitated with the GFP-tagged small subunit. All appear to be equimolar with each other, and the higher ratios for the small (σ-like/TSPOON) subunit and GFP are likely to be a consequence of their overexpression, which we also saw in a repeat experiment in which we used the small subunit's own promoter (Figure 2—figure supplement 1). (D) Predicted structure of the N-terminal portion of D. discoideum TTRAY1, shown as a ribbon diagram. (E) Stills from live cell imaging of cells expressing either TSPOON-GFP or free GFP, using TIRF microscopy. The punctate labelling in the TSPOON-GFP-expressing cells indicates that some of the construct is associated with the plasma membrane. See Videos 1 and 2. (F) Western blots of extracts from cells expressing either TSPOON-GFP or free GFP. The post-nuclear supernatants (PNS) were centrifuged at high speed to generate supernatant (cytosol) and pellet fractions. Equal protein loadings were probed with anti-GFP. Whereas the GFP was exclusively cytosolic, a substantial proportion of TSPOON-GFP fractionated into the membrane-containing pellet. (G) Mean generation time (MGT) for control (Ax2) and TSPOON knockout cells. The knockout cells grew slightly faster than the control. (H) Differentiation of the Ax2 control strain and two TSPOON knockout strains (1725 and 1727). All three strains produced fruiting bodies upon starvation. (I) Assay for fluid phase endocytosis. The control and knockout strains took up FITC-dextran at similar rates. (J) Assay for endocytosis of membrane, labelled with FM1-43, showing the time taken to internalise the entire surface area. The knockout strains took significantly longer than the control (*p<0.05; **p<0.01). See also Figure 2—figure supplements 1 and 2, Figure 2; Videos 1 and 2. + +## Characterisation of the TSET complex in Dictyostelium + +One of the key properties of coat proteins is their ability to cycle on and off membranes. Although by widefield fluorescence microscopy TSPOON-GFP looked diffuse and cytosolic (Figure 2—figure supplement 1B), TIRF imaging showed a punctate pattern, especially in the cells with lower expression, indicating that some of the construct is associated with the plasma membrane (Figure 2E, Figure 2; Video 1). In contrast, free GFP appeared to be entirely cytosolic (Figure 2E, Figure 2; Video 2). In addition, high speed centrifugation of a post-nuclear supernatant showed a substantial amount of TSPOON-GFP coming down in the membrane-containing pellet, in contrast to free GFP, which was exclusively in the supernatant (Figure 2F). These findings indicate that like other coat proteins, the complex is transiently recruited onto a membrane (specifically, the plasma membrane) from a cytosolic pool. + +Silencing TPLATE in Arabidopsis produces a very severe phenotype, with impaired growth and differentiation, thought to be caused by defects in clathrin-mediated endocytosis (Van Damme et al., 2006; Van Damme et al., 2011). To investigate the function of TSET in Dictyostelium, we disrupted the TSPOON gene by replacing most of the coding sequence with a selectable marker (Figure 2—figure supplement 1D). Surprisingly, the resulting knockout cells grew at least as fast a control axenic strain (Figure 2G shows the mean generation time); and differentiation also appeared normal, with fruiting bodies forming under appropriate stimuli (Figure 2H). Uptake of FITC-dextran, an assay for fluid phase endocytosis, was unimpaired in the TSPOON knockout cells (Figure 2I); however, uptake of FM1-43, a membrane marker, was slower than in the control (Figure 2J shows the time taken to internalise the entire surface area), indicating that TSET plays a role in plasma membrane turnover, consistent with studies on Arabidopsis. Nevertheless, it is clear that in contrast to Arabidopsis, Dictyostelium can thrive without a functional TSET complex. + +Very recently, the discoverers of TPLATE used tandem affinity purification to identify TPLATE binding partners, and found the Arabidopsis orthologues of the TSET components that we identified independently in the present study (Gadeyne et al., 2014). The Arabidopsis pulldowns did not contain any proteins resembling secG or the vacuolins, supporting our hypothesis that these proteins are add-ons to the core heterohexamer. However, Arabidopsis TSET is associated with two additional proteins containing EH domains, which we did not find in our Dictyostelium pulldowns. Some of the Arabidopsis pulldowns also brought down components of the machinery for clathrin-mediated endocytosis, including clathrin itself. Although we also found clathrin and associated proteins in our Dictyostelium immunoprecipitates, these proteins were equally abundant in control immunoprecipitates from non-GFP-expressing cells, indicating that they were contaminants. The differences in proteins that coprecipitate with TSET in the two organisms are probably a reflection of functional differences: TSET knockouts in Arabidopsis are lethal and knockdowns profoundly affect clathrin-mediated endocytosis, while TSET knockdowns in Dictyostelium produce a very mild phenotype. + +## TSET is ancient and widespread in eukaryotes + +When TPLATE was discovered in Arabidopsis, it was reported to be unique to plant species (Van Damme et al., 2006; Van Damme et al., 2011). Similarly, in the more recent Arabidopsis study, the authors concluded that the complex was plant-specific (Gadeyne et al., 2014). However, these conclusions were based on analyses of plants, yeast, and humans only. Our identification and characterization of homologues of all six subunits in Dictyostelium discoideum, as well as their presence in the excavate Naegleria gruberi, suggested that the evolutionary distribution was much more extensive. In depth homology searching identified orthologues in genomes from across the broad diversity of eukaryotes (Figure 3, Figure 3—source data 1, Figure 3—figure supplement 1), strongly suggesting that the complex was present prior to the LECA. + +Although TSET is clearly ancient, its relationship to the other heterotetrameric complexes was unclear from homology searching alone. Consequently, after analyses of the individual subunits (Figure 4—figure supplements 1–7), we performed a phylogenetic analysis on the concatenated set of the four core subunits for direct comparison of TSET with the other AP and COPI complexes (Figure 4A, Figure 4—figure supplement 8). This provided moderate support for TSET as a clade, but strong resolution excluding it from the APs and COPI, as well as backbone resolution between the heterotetramer clades. Thus, TSET is clearly an ancient component of the eukaryotic membrane-trafficking system, distinct from the known heterotetramers. + +Phylogenetic analysis of the TTRAYs and their closest relatives, β′-COP and α-COP (Figure 4—figure supplement 9), showed that the paralogues are due to ancient duplications in the TSET and COPI families respectively, which occurred prior to the divergence of the LECA. Together, these findings imply that the ancestor of the TSET, COPI, and AP complexes was a heterohexamer rather than a heterotetramer, consisting of five different proteins, with the two scaffolding proteins present as two identical copies (Figure 4B,C). These scaffolding subunits then duplicated independently in COPI and TSET. The ancestral AP complex may have lost its original scaffolding subunits, although AP-5, the first AP to branch away, is closely associated with SPG11, a β-propeller + α-solenoid protein whose relationship to the TTRAYs and B-COPI is as yet unclear. None of the other APs has any closely associated proteins with this architecture, but AP-1 and AP-2 transiently interact with clathrin, and there may also be a transient association between AP-3 and another β-propeller + α-solenoid protein, Vps41 (Rehling et al., 1999; Cabrera et al., 2010; Asensio et al., 2013). + +Although TSET is deduced to have been present in LECA, the complex appears to have been entirely or partially lost in various lineages (Figure 3B). None of the subunits has a full orthologue in opisthokonts (animals and fungi), indicating secondary loss in the line leading to humans. However, the C-terminal domain of TCUP is homologous to the C-terminal domains of the muniscins, opisthokont-specific proteins (Gadeyne et al., 2014) (Figure 4—figure supplement 10). This suggests that in opisthokonts, the TCUP gene retained its 3′ end, which then combined with a new 5′ end encoding an F-BAR domain to generate the muniscin family (Figure 4C). These include the vertebrate proteins FCHo1/2 and the yeast protein Syp1, important players in the endocytic pathway (Reider et al., 2009; Henne et al., 2010; Cocucci et al., 2012; Umasankar et al., 2012; Mayers et al., 2013). The muniscins constitute one of eight families of MHD proteins in humans, and the only family whose evolutionary origin was unexplained until now. The present study indicates not only that the muniscins are homologous to TCUP, but also that they are the sole surviving remnants of the full TSET complex that existed in our pre-opisthokont ancestors. + +## Distribution of TSET subunits. + +(A) Coulson plot showing the distribution of TSET in a diverse set of representative eukaryotes. Presence of the entire complex in at least four supergroups suggests its presence in the last eukaryotic common ancestor (LECA) with frequent secondary loss. Solid sectors indicate sequences identified and classified using BLAST and HMMer. Empty sectors indicate taxa in which no significant orthologues were identified. Filled sectors in the Holozoa and Fungi represent F-BAR domain-containing FCHo and Syp1, respectively. Taxon name abbreviations are inset. Names in bold indicate taxa with all six components. (B) Deduced evolutionary history of TSET as present in the LECA but independently lost multiple times, either partially or completely. See also Figure 3—source data 1, Figure 3—figure supplement 1. + +## Evolution of TSET. + +(A) Simplified diagram of the concatenated tree for TSET, APs, and COPI, based on Figure 4—figure supplement 8. Numbers indicate posterior probabilities for MrBayes and PhyloBayes and maxium-likelihood bootstrap values for PhyML and RAxML, in that order. (B) Schematic diagram of TSET. (C) Possible evolution of the three families of heterotetramers: TSET, APs, and COPI. We propose that the earliest ancestral complex was a likely a heterotrimer or a heterohexamer formed from two identical heterotrimers, containing large (red), small (yellow), and scaffolding (blue) subunits. All three of these proteins were composed of known ancient building blocks of the membrane-trafficking system (Vedovato et al., 2009): α-solenoid domains in both the large and scaffolding subunits; two β-propellers in the scaffolding subunit; and a longin domain forming the small subunit. The gene encoding the large subunit then duplicated and mutated to generate the two distinct types of large subunits (red and magenta), and the gene encoding the small subunit also duplicated and mutated (yellow and orange), with one of the two proteins (orange) acquiring a μ homology domain (MHD) to form the ancestral heterotetramer, as proposed by Boehm and Bonifacino (12). However, the scaffolding subunit remained a homodimer. Upon diversification into three separate families, the scaffolding subunit duplicated independently in TSET and COPI, giving rise to TTRAY1 and TTRAY2 in TSET, and to α- and β′-COP in COPI. COPI also acquired a new subunit, ε-COP (purple). The scaffolding subunit may have been lost in the ancestral AP complex, as indicated in the diagram; however, AP-5 is tightly associated with two other proteins, SPG11 and SPG15, and the relationship of SPG11 and SPG15 to TTRAY/B-COPI remains unresolved, so it is possible that SPG11 and SPG15 are highly divergent descendants of the original scaffolding subunits. The other AP complexes are free heterotetramers when in the cytosol, but membrane-associated AP-1 and AP-2 interact with another scaffold, clathrin; and AP-3 has also been proposed to interact transiently with a protein with similar architecture, Vps41 (Rehling et al., 1999; Cabrera et al., 2010; Asensio et al., 2013). So far no scaffold has been proposed for AP-4. Although the order of emergence of TSET and COP relative to adaptins is unresolved, our most recent analyses indicate that, contrary to previous reports (Hirst et al., 2011), AP-5 diverged basally within the adaptin clade, followed by AP-3, AP-4, and APs 1 and 2, all prior to the LECA. This still suggests a primordial bridging of the secretory and phagocytic systems prior to emergence of a trans-Golgi network. The muniscins arose much later, in ancestral opisthokonts, from a translocation of the TSET MHD-encoding sequence to a position immediately downstream from an F-BAR domain-encoding sequence. Another translocation occurred in plants, where an SH3 domain-coding sequence was inserted at the 3′ end of the TSAUCER-coding sequence. See also Figure 4—figure supplements 1–10. + +## Phylogenetic analysis of TPLATE, β-COP, and β-adaptin, with TPLATE robustly excluded from the β-COP clade. + +In this and all other figure supplements to Figure 4, AP subunits are boxed in blue, F-COPI subunits are boxed in red, and subunits of TSET are boxed in yellow. Node support for critical nodes is shown. Numbers indicate Bayesian posterior probabilities (MrBayes) and bootstrap support from Maximum-likelihood analysis (RAxML). Support values for other nodes are denoted by symbols (see inset). + +## Conclusions + +TSET is the latest addition to a growing set of trafficking proteins that have ancient distributions, but are frequently lost (Schlacht et al., 2014), or in the case of TSET reduced perhaps with neofunctionalization (Figure 3). This is consistent with the uneven distribution of the individual components (in contrast to the all-or-nothing distribution of AP-5), the additional apparently lineage-specific binding partners in Dictyostelium, and the acquisition of extra domains (e.g., F-BAR in opisthokonts and SH3 in plants) adding lineage-specific function. + +Studies on the muniscins may help to explain the different phenotypes of TSET knockouts in Dictyostelium and Arabidopsis. Like Arabidopsis TSET, the muniscins interact with EH domain-containing proteins and participate in clathrin-mediated endocytosis (Reider et al., 2009; Henne et al., 2010; Cocucci et al., 2012; Umasankar et al., 2012; Mayers et al., 2013). Dictyostelium has lost its TCUP MHD, and it seems likely that concomitant with this loss, it also lost some of TSET's binding partners and functions. Nevertheless, we suspect that TSET may predate clathrin-mediated endocytosis, for two reasons. First, AP-1 and AP-2, the two AP complexes that function together with clathrin, are the most recent additions to the AP family (Figure 4A); and second, TSET already has its own β-propeller + α-solenoid scaffold, so it is not clear why it would need clathrin as well. Thus, the interaction between TSET and the clathrin pathway may have evolved considerably later than TSET itself, although still pre-LECA. It is tempting to speculate that TSET was part of the original endocytic machinery, which then became redundant in some organisms as the clathrin pathway took over. + +Thus, our bioinformatics tool, reverse HHpred, is able to find novel homologues of known proteins, and could potentially be used to identify new players both in membrane traffic and in other pathways (Figure 1—figure supplement 5). Using this tool, we were able to find the four core subunits of an ancient complex belonging to the same family as the APs and COPI. This ancient complex, TSET, is therefore both the answer to the question of the origin of the last set of MHD proteins in humans, and a major new piece of the puzzle to be incorporated alongside the other membrane-trafficking machinery, as we delve into the history of the eukaryotic cell. + +## Construction of the ‘reverse HHpred’ database + +The proteomes of various organisms (detailed in Figure 1—figure supplement 2) were downloaded from the National Center for Biotechnology Information archives at ftp://ftp.ncbi.nih.gov/refseq/release/. The *.protein.faa.gz files obtained were then split into separate files, each containing one protein sequence. These were stored such that each directory contained information from only one species (the total number of protein ‘faa’ files searched for each organism were: Arabidopsis thaliana, 35270; Caenorhabditis elegans, 23903; Dictyostelium discoideum, 13262; Dictyostelium purpureum, 12399; Drosophila melanogaster, 22256; Giardia lamblia, 6502; Homo sapiens, 32977; Micromonas pusilla, 10269; Mus musculus, 29897; Naegleria gruberi , 15756; Physcomitrella patens, 35893; Saccharomyces cerevisiae, 5882; Schizosaccharomyces pombe, 5004; Selaginella moellendorffii, 31312; Vitis vinifera, 23492; Volvox carteri, 14429). The latest protein data bank (pdb70), which contains all publicly available 3D structures of proteins, was downloaded from the Gene Center Munich, Ludwig-Maximilians-Universität (LMU) Munich via their web site at: ftp://toolkit.lmb.uni-muenchen.de/pub/HHsearch/databases/hhsearch\_dbs/. The linux rpm version 2.0.11 of the hhsuite software was downloaded from the same website at ftp://toolkit.lmb.uni-muenchen.de/pub/HH-suite/releases/. Each of the faa files was then compared to the pdb70 databank using the hhsearch program from the above suite. The files were tested using the default parameters. Once each protein sequence was tested, the output file was parsed and the hits were extracted and then inserted into a mysql database. The database is searchable by keywords in PDB entries, and therefore is limited to searches where the structure of a given domain structure has been solved. The database is accessible using the link http://reversehhpred.cimr.cam.ac.uk, and searches can be initiated using keywords. Should the link become unavailable, or if you are interested in hosting this yourself please email jpn25@cam.ac.uk for more information. A conceptually similar database, ‘BackPhyre’, has independently been generated, using Phyre (Kelley and Sternberg, 2009) rather than HHpred as a starting point to identify homologues of known proteins based on predicted structural similarities. Like reverse HHpred, BackPhyre is able to find three of the four TSET subunits in Arabidopsis; however, the only eukaryotes represented in BackPhyre are A. thaliana, D. melanogaster, H. sapiens, M. musculus, P. falciparum, and S. cerevisiae; and without additional organisms, such as D. discoideum and N. gruberi, we would not have been able to find the entire TSET complex. + +## Data assimilation + +The large adaptor subunits share sequence and structure homology, as do the medium and small subunits. Therefore, we were able to combine searches for novel large subunits, or for medium/small subunits. Using the key words ‘clathrin’, ‘adaptor’, ‘adapter’, ‘adaptin’, ‘AP1’, ‘AP2’, ‘AP3’, ‘AP4’, we searched in PDB for solved structures of any large or medium/small subunit in a given organism (11 solved structures for the large subunits and six solved structures for the medium/small subunits were used to initiate searches [Figure 1—figure supplement 1]). These structures span different domains found within the subunits. For each search, a list was output of any proteins found to contain structural homology. Included in this information are the precise amino acids encompassing the region of similarity, the probability score, and most importantly the ‘result number’. A protein with a ‘result number’ of ‘1’ means that there was no other structure in the PDB database that it is more like. Since multiple structures for the various subunits were used, we could also factor in the number of times a particular protein was identified in a search (‘repeats’). These parameters were used as key pieces of evidence to determine how likely a hit in these searches would be. Once the primary data were outputted, all other manipulations were performed in Excel. For the large subunits there were 11 data sets (the 11 structures used to search for homologues), and for the medium/small subunits there were six data sets. The data manipulation was standardised at this point, and the following steps performed to assimilate the data. The data sets were sorted by result number to preclude anything with a result number of >50 (this means that there are 49 other structures in the PDB database that this protein is more similar to). Duplicates, where a protein was identified in multiple searches, were removed with the highest ranking (in ‘result’ terms) kept, and the number of times it was identified recorded in a new column (‘repeats’). The results were the ordered with the lowest ‘Result number’ and the highest ‘Probability’ to give a final list of proteins (Figure 1—source data 1, 2). Generally only proteins with a ‘Result number’ <10, ‘Probability’ >50%, at least 100 amino acids of homology (‘thstt’ to ‘thend’), and ‘Repeats’ at least two times were considered to be real hits. For ease of visualisation, only proteins with Result number <10 or ‘Repeats’ >2 are shown, and other proteins of interest (e.g., FCHo1, Syp1) with Result number <10 that did not fit the criteria listed above are greyed out. The ‘IDs’ have been deduced using NCBI BLAST searches, and have not been experimentally verified. Where the identity is ambiguous (such as the identity of a β-adaptin), a shared homology is suggested. + +## Dictyostelium: the search for TSPOON and TCUP + +While searching for genes encoding potential components of the complex in four dictyostelid genomes, we could find complete sets in Polysphondylium pallidum and Dictyostelium fasciculatum, but one component each was missing in the databases of predicted proteins of D. discoideum (σ-like subunit) and D. purpureum (μ-like subunit). We identified these genes by tblastn (Camacho et al., 2009), using the most closely related orthologous sequence as query and the chromosomal sequences as target. Gene models were created and refined using the Artemis tool (Carver et al., 2012). These two genes have been given the DictyBase IDs DDB\_G0350235 (D. discoideum TSPOON) and DPU0040472 (D. purpureum TCUP) (www.dictybase.org). + +## Dictyostelium expression constructs + +The σ-like (TSPOON) coding sequence (CDS) was synthesised (GeneCust) with a BglII restriction site inserted at its 5′ end, its stop codon removed, and a SpeI site inserted at its 3' end, then cloned into pBluescript KSII and sequenced. The CDS was then transferred into a derivative of pDM1005 (Veltman et al., 2009) as a BglII/SpeI fragment, placing GFP at the C terminus, with expression driven from the constitutive actin15 promoter, to generate plasmid pJH101. In addition, the TSPOON promoter and the first 105 bases of the CDS were amplified from Ax2 gemonic DNA by PCR, using primers (5′TATCTCGAGCGTCTTCATCTTCACTATCATTTAATG-3′) and (5′-TAAAAGCTTTTCATATTCACTCTGTTTCTCGTC-3′). The product was cut with XhoI/HindIII, and the 536-bp fragment cloned into the pBluescript KSII plasmid already containing the TSPOON CDS, via the XhoI site in the vector and the silent HindIII site introduced at nucleotide +97 of the TSPOON CDS during its synthesis. The resulting promoter-driven TSPOON CDS was removed by digestion with XhoI/SpeI and inserted into the corresponding sites of pDM323 and pDM450, resulting in expression constructs containing the TSPOON CDS with GFP fused at its C terminus and driven by its own promoter (pDT61 and pDT58 respectively). + +## Dictyostelium cell culture and transformation + +All of the methods used for cell biological studies on Dictyostelium are described in detail at Bio-protocol (Hirst et al., 2015). + +D. discoideum Ax2-derived strains were grown and maintained in HL5 medium (Formedium) containing 200 µg/ml dihydrostreptomycin on tissue culture treated plastic dishes, or shaken at 180 rpm, at 22°C (Kay, 1987). Cells were transformed with expression constructs (30 µg/4 × 106 cells) by electroporation using previously described methods (Knecht and Pang, 1995). Transformants were selected and maintained in axenic medium supplemented with 60 µg/ml hygromycin (pDT58 and pJH101) and 20 µg/ml G418 (pDT61 and Actin15\_GTP; Traynor and Kay, 2007). For the TSPOON knockout, 17.5 µg of the blasticidin disruption cassette, freed from pDT70 by digestion with ApaI and SacII, was added to 4 × 106 Ax2 cells before electroporation. Transformants were selected and maintained in HL5 medium containing 10 µg/ml blasicidin. + +## Dictyostelium microscopy and fractionation + +Cells were transformed with GFP driven by the actin 15 promoter (A15\_GFP; Traynor and Kay, 2007), or with TSPOON-GFP driven by either the actin 15 promoter (A15\_TSPOON -GFP) or its own promoter (promoter\_TSPOON-GFP). For microscopy, the cells were washed in KK2 (16.5 mM KH2PO4, 3.8 mM K2HPO4, 2 mM MgSO4) at 2 × 107/ml and then transferred into glass bottom dishes (MatTek, Ashland, MA) at 1 × 106/cm2. They were either imaged immediately (vegetative) or allowed to starve for a further 6–8 hr (developed) before imaging live on a Zeiss Axiovert 200 inverted microscope (Carl Zeiss, Jena, Germany) using a Zeiss Plan Achromat 63 × oil immersion objective (numerical aperture 1.4), an OCRA-ER2 camera (Hamamatsu, Hamamatsu, Japan), and Improvision Openlab software (PerkinElmer, Waltham, MA). Various treatments including with or without starvation, fixation, pre-fixation saponin treatment did not reveal obvious membrane-associated labelling in cells expressing either promoter\_TSPOON-GFP and A15\_TSPOON expressing cells. + +For fractionation, cells expressing A15\_GFP or promoter\_TSPOON-GFP were grown until they reached a density of 2–4 × 106/ml in selective media, and by microscopy >50% of cells were expressing GFP. Starting with a maximum of 8 × 108 cells, the cells were washed in KK2 buffer and then pelleted at 600 × g for 3 min. The cells were resuspended in PBS with a protease inhibitor cocktail (Roche), lysed by 8 strokes of a motorized Potter–Elvehjem homogenizer followed by 5 strokes through a 21-g needle, and centrifuged at 4100 × g for 32 min to get rid of nuclei and unbroken cells. The postnuclear supernatant was then centrifuged at 50,000 rpm (135,700 × g RCFmax) for 30 min in a TLA-110 rotor (Beckman Coulter) to recover the membrane pellet. The cytosolic supernatant and pellet were run on pre-cast NUPAGE 4–12% BisTris Gels (Novex) at equal protein loadings, and Western blots were probed with an antibody against GFP (Seaman et al., 2009). + +## Dictyostelium pulldowns and proteomics + +Pulldowns were performed using Dictyostelium discoideum stably expressing TSPOON-GFP under a constitutive (A15\_ TSPOON-GFP) and its own promoter (prom\_TSPOON-GFP). Similar results were found with both cell lines regardless of the promoter. Non-transformed cells were used as a control. Cells were grown until they reached a density of 2–4 × 106/ml in selective media, and by microscopy >50% of cells were expressing GFP. Starting with a maximum of 8 × 108 cells, they were pelleted by centrifugation (600×g for 2 min) and washed twice in KK2 buffer before being resuspended at 2 × 107 cells/ml in KK2 buffer and starved for 4–6 hr at 22°C by shaking at 180 rpm. The cells were then pelleted at 600×g for 3 min and then lysed in 4 ml PBS 1% TX100 plus protease inhibitor cocktail tablet (Roche) for 10 min on ice, and then spun 20,000×g 15 min to get rid of debris and insoluble material. By protein assay the resulting lysate contained 10–15 mg total protein. The lysates were pre-cleared using PA-sepharose 30 min, and then immunoprecipitated using anti-GFP overnight with rotation at 4°C. PA-sepharose was added for 60 min and then the antibody complexes washed with PBS 1%TX100 followed by PBS before elution from beads with 100 mM Tris, 2% SDS 60°C for 10 min. The eluted proteins were precipitated with acetone overnight at −20°C, recovered by spinning 15,000×g 5 min and then resuspending in sample buffer. The samples were run on pre-cast NUPAGE 4–12% BisTris Gels (Novex), stained with SimplyBlue Safe Stain (Invitrogen) and then cut into 8 gel slices. Each gel slice was processed by filter-aided sample preparation solution digest, and the sample was analyzed by liquid chromatography–tandem mass spectrometry in an Orbitrap mass spectrometer (Thermo Scientific; Waltham, MA) (Antrobus and Borner, 2011). + +Proteins that came down in the non-transformed control were eliminated, as were any proteins with less than 5 identified peptides, proteins that did not consistently coimmunoprecipitate in three independent experiments, or proteins of very low abundance compared with the bait (i.e., molar ratios of <0.002). The remaining ten proteins were considered to be specifically immunoprecipitated. Normalized peptide intensities were used to estimate the relative abundance of the specific interactors (iBAQ method; Schwanhäusser et al., 2011). For each protein, the values from all five repeats were plotted, including the bait protein and GFP which are clearly overrepresented by overexpression. The relative abundances of proteins were normalized to the median abundance of all proteins across each experiment (i.e., median set to 1.0) and values were then log-transformed and plotted. + +## Dictyostelium gene disruption + +The TSPOON disruption plasmid was constructed by inserting regions amplified by PCR from upstream and downstream of the TSPOON gene into both side of the blasticidin-resistance cassette in pLPBLP (Faix et al., 2004). The primer pair used to amplify the 5′ region was TCP1 (5′-ACTGGGCCCTGATGTTTACCTCTCTTTGGGTCATCCCATTCTATAC-3′) with σ-TCP2 (5′-AAAAAGCTTTATTACCATTGTTATTGGTAATTAACAAACTATTGATC-3′) and for the 3′ homology TCP3 (5′-A CCGCGGCCGCATAATTCAAAGAGGTCATTTAGATCAAGTTCAATTAG-3′) with TCP4 (5′-CCTCCGCGGCTTCAGGCATTGGTTCAACTTCTTGATTATTCTCAAC -3'). The PCR products were inserted as ApaI/HindIII and NotI/SacII fragments into the corresponding sites in pLPBLP, yielding pDT70. + +Growth of control vs mutant strains was assayed in HL5 medium, by calculating the mean generation time, and on Klebsiella aerogenes bacterial lawns, by monitoring the expansion of a spot of 104 cells. Spore viability was also assayed, both with and without detergent treatment, by clonally diluting spores on bacterial lawns and counting the resultant plaques (Kay, 1982). + +## Endocytosis assays + +Membrane uptake was measured in real time at 22°C with 2 × 106 cells in 1 ml of KK2C containing 10 µM FM1-43 (Life Technologies). Briefly, a 2-ml fluorimeter cuvette containing 0.9 ml of KK2C plus 11 µM FM1-43 was placed in the fluorimeter (PerkinElmer LS50B) with stirring set on high. The uptake was initiated by the addition of 100 µl cells at 2 × 107/ml in KK2C and data collected every 1.2 s at an excitation of 470 nm (slit width 5 nm) and emission of 570 nm (slit width 10 nm) for up to 360 s. The uptake curves were biphasic and the data were normalized against the initial rise in fluorescence, when the cells were first added to the FM1-43, as this essentially corresponds to the dye incorporation into the plasma membrane only (Aguado-Velasco and Bretscher, 1999). The uptake rate was calculated from linear regression of the initial linear phase of the uptake using GraphPad Prism software. The surface area uptake time is 1/slope of the initial phase. + +Fluid phase uptake was measured at 22°C using FITC-dextran 70 kDa (Sigma FD-70) by adding 2 mg/ml (final) to cells (1 × 107/ml) in filtered HL5 medium that was shaken at 180 rpm. Duplicate 0.5 ml samples were taken at each time point and diluted in 1 ml of ice-cold HL5 in a microcentrifuge tube held on iced water. Cells were pelleted, the supernatant aspirated, and the pellet washed twice by centrifugation in 1.5 ml ice-cold wash buffer (KK2C plus 0.5%wt/vol BSA) before being lysed in 1 ml of buffer [100 mM Tris–HCl, 0.2% (vol/vol) Triton X-100, pH 8.6] and fluorescence then determined (excitation 490 nm, slit width 2.5 nm; emission 520 nm, slit width 10 nm). Data were normalized to protein content (Traynor and Kay, 2007). + +## Comparative genomics + +Sequences from Arabidopsis thaliana, Dictyostelium discoideum, and Naegleria gruberi were obtained with our new reverse HHpred tool. These sequences were used to build HMMs for each subunit using HMMer v3.1b1 (http://hmmer.org). HMMs were used to search the protein databases for the organisms in Figure 3A (see Figure 3—source data 1 for the location of each genomic database). Sequences identified as potential homologues were verified through reciprocal BLAST into the genomes of each of the original three sequences. Sequences were considered homologues if they retrieved the correct orthologue as the reciprocal best hit in at least one of the reference genomes, with an e-value at least two orders of magnitude better than the next best hit. New sequences were incorporated into the HMM prior to searching a new genome in order to increase the sensitivity and specificity of the HMM. Genomic protein databases were also searched by BLAST using the closest related organism with an identified sequence as the reference genome. Nucleotide databases (scaffolds or contigs) were also searched using tblastn to ensure that no sequences were missed resulting from incomplete protein databases. The distribution of TSET components is displayed in Coulson plot format using the Coulson plot generator v1.5 (Field et al., 2013). + +## Phylogenetic analysis + +Identified sequences were combined with the adaptin and COPI sequences from Hirst et al. (2011) into subunit-specific data sets with the intention of concatenation. Data sets were aligned using MUSCLE v3.6 (Edgar, 2004) and masked and trimmed using Mesquite v2.75. Phylogenetic analysis was carried out using MrBayes v.3.2.2 (Ronquist and Huelsenbeck, 2003) and RAxML v7.6.3 (Stamatakis, 2006), hosted on the CIPRES web portal (Miller et al., 2010). MrBayes was run using a mixed model with the gamma parameter until convergence (splits frequencey of 0.1). RAxML was run under the LG + F + CAT model (Lartillot et al., 2009) and bootstrapped with 100 pseudoreplicates. The resulting trees were visualized using FigTree v1.4. Initial data sets were run and long branches were removed. Data sets were then re-aligned and re-run as above. Opisthokont adaptin and COPI sequences were also removed from all data sets except from the TCUP alignment. Data sets were realigned and new phylogenetic analyses were carried out. Remaining sequences were used for concatenation. Sequences were aligned and trimmed, as above, and concatenated using Geneious v7.0.6. Subsequent phylogenetic analysis was carried using PhyloBayes v3.3 (Lartillot et al., 2009) under the LG + CAT model until a splits frequency of 0.1 and 100 sampling points was achieved, and PhyML v3.0, with model testing carried out using ProtTest v3.3. MrBayes and RAxML were used as above. Raw phylogenetic trees were converted into figures using Adobe Illustrator CS4. The models of amino acid sequence evolution are provided in Figure 3—figure supplement 1. The database identifiers of all sequences and their abbreviations and figure annotations are provided in Figure 3—source data 1. All alignments are available in Supplementary file 1. + +## Homology modeling + +The Phyre v2.0 web server (Kelley and Sternberg, 2009) was used to predict the 3D structures of each TTRAY from A. thaliana, D. discoideum, and N. gruberi. Default settings were used for structural predictions, and structures were visualized using MacPyMOL (www.pymol.org). + +## Figures + +Figure 1. Diagrams of APs and F-COPI. (A) Structures of the assembled complexes. All six complexes are heterotetramers; the individual subunits are called adaptins in the APs (e.g., γ-adaptin) and COPs in COPI (e.g., γ-COP). The two large subunits in each complex are structurally similar to each other. They are arranged with their N-terminal domains in the core of the complex, and these domains are usually (but not always) followed by a flexible linker and an appendage domain. The medium subunits consist of an N-terminal longin-related domain followed by a C-terminal μ homology domain (MHD). The small subunits consist of a longin-related domain only. (B) Jpred secondary structure predictions of some of the known subunits (all from Homo sapiens), together with new family members from Dictyostelium discoideum (Dd) and Arabidopsis thaliana (At). See also Figure 1—figure supplements 1–4, Figure 1—source data 1, 2. DOI:http://dx.doi.org/10.7554/eLife.02866.003 + + + +Figure 1—figure supplement 1. PDB entries used to search for adaptor-related proteins. DOI:http://dx.doi.org/10.7554/eLife.02866.006 + + + +Figure 1—figure supplement 2. Summary table of all subunits identified using reverse HHpred. The lighter shading indicates where an orthologue was found either below the arbitrary cut-off, by using NCBI BLAST (see Figure 1—figure supplement 3), or by searching a genomic database (e.g., AP-1 μ1 |Naegr1|35900|, JGI). The new complex is called ‘TSET’. DOI:http://dx.doi.org/10.7554/eLife.02866.007 + + + +Figure 1—figure supplement 3. Subunits that failed to be identified using reverse HHpred, but were identified by homology searching using NCBI BLAST. DOI:http://dx.doi.org/10.7554/eLife.02866.008 + + + +Figure 1—figure supplement 4. TSET orthologues in different species. The orthologues were identified by reverse HHpred, except for those in italics, which were found by BLAST searching (NCBI) using closely related organisms. TTRAY1 and TTRAY2 were initially identified by proteomics in a complex with TSET, but could also have been predicted by reverse HHpred as closely related to β′-COP using the PDB structure, 3mkq\_A. In all other organisms TTRAY1 and TTRAY2 were identified by NCBI BLAST (italics). Note that orthologues of TSAUCER in P. patens, and TTRAY 2 in M. pusilla were identified in Phytozome, which is a genomic database hosted by Joint Genome Institute (JGI). Note orthologues of TCUP in D. purpureum and TSPOON in D. discoideum were identified by searching genomic sequences using closely related sequences, and have been manually appended in DictyBase. In these cases corresponding sequences are not at present found at NCBI. Whilst S. moellendorffii and V. vinifera were included in the reverse HHpred database, they were not included in the Coulson plot. DOI:http://dx.doi.org/10.7554/eLife.02866.009 + + + +Figure 1—figure supplement 5. Identification of ENTH/ANTH domain proteins and the AP complexes with which they associate, using reverse HHpred. Reverse HHpred searches were initiated using the key words ‘epsin’ or ‘ENTH’. The PDB structures used were: 1eyh\_A (Chain A, Crystal Structure Of The Epsin N-Terminal Homology (Enth) Domain At 1.56 Angstrom Resolution); 1inz\_A (Chain A, Solution Structure Of The Epsin N-Terminal Homology (Enth) Domain Of Human Epsin); 1xgw\_A (Chain A, The Crystal Structure Of Human Enthoprotin N-Terminal Domain); 3onk\_A (Chain A, Yeast Ent3\_enth Domain), and the output was assimilated in Excel as described for the adaptors. The identity of the hits was determined using NCBI BLAST searching. Note that all of the organisms that have lost AP-4 have also lost its binding partner, tepsin. DOI:http://dx.doi.org/10.7554/eLife.02866.010 + + + +Figure 2. Characterisation of the TSET complex in Dictyostelium. (A) Western blots of axenic D. discoideum expressing either GFP-tagged small subunit (σ-like) or free GFP, under the control of the Actin15 promoter, labelled with anti-GFP. The Ax2 parental cell strain was included as a control, and an antibody against the AP-2α subunit was used to demonstrate that equivalent amounts of protein were loaded. (B) Coomassie blue-stained gel of GFP-tagged small subunit and associated proteins immunoprecipitated with anti-GFP. The GFP-tagged protein is indicated with a red asterix. (C) iBAQ ratios (an estimate of molar ratios) for the proteins that consistently coprecipitated with the GFP-tagged small subunit. All appear to be equimolar with each other, and the higher ratios for the small (σ-like/TSPOON) subunit and GFP are likely to be a consequence of their overexpression, which we also saw in a repeat experiment in which we used the small subunit's own promoter (Figure 2—figure supplement 1). (D) Predicted structure of the N-terminal portion of D. discoideum TTRAY1, shown as a ribbon diagram. (E) Stills from live cell imaging of cells expressing either TSPOON-GFP or free GFP, using TIRF microscopy. The punctate labelling in the TSPOON-GFP-expressing cells indicates that some of the construct is associated with the plasma membrane. See Videos 1 and 2. (F) Western blots of extracts from cells expressing either TSPOON-GFP or free GFP. The post-nuclear supernatants (PNS) were centrifuged at high speed to generate supernatant (cytosol) and pellet fractions. Equal protein loadings were probed with anti-GFP. Whereas the GFP was exclusively cytosolic, a substantial proportion of TSPOON-GFP fractionated into the membrane-containing pellet. (G) Mean generation time (MGT) for control (Ax2) and TSPOON knockout cells. The knockout cells grew slightly faster than the control. (H) Differentiation of the Ax2 control strain and two TSPOON knockout strains (1725 and 1727). All three strains produced fruiting bodies upon starvation. (I) Assay for fluid phase endocytosis. The control and knockout strains took up FITC-dextran at similar rates. (J) Assay for endocytosis of membrane, labelled with FM1-43, showing the time taken to internalise the entire surface area. The knockout strains took significantly longer than the control (*p<0.05; **p<0.01). See also Figure 2—figure supplements 1 and 2, Figure 2; Videos 1 and 2. DOI:http://dx.doi.org/10.7554/eLife.02866.011 + + + +Figure 2—figure supplement 1. Further characterisation of Dictyostelium TSET. (A) iBAQ ratios for the proteins that coprecipitated with TSPOON-GFP, normalized to the median abundance of all proteins across five experiments. ND = not detected. (B) Fluorescence and phase contrast micrographs of cells expressing GFP-tagged TSPOON under the control of its own promoter (Prom-TSPOON-GFP). The construct appears mainly cytosolic. (C) Homology modeling of TTRAYs from A. thaliana, D. discoideum, and N. gruberi, revealing two β-propeller domains followed by an α-solenoid. (D) Disruption of the TSPOON gene. PCR was used to amplify either the wild-type TSPOON gene (in Ax2) or the disrupted TSPOON gene. The resulting products were either left uncut (U) or digested with SmaI (S), which should not cut the wild-type gene, but should cleave the disrupted gene into three bands. Several clones are shown, including HM1725 (200/1 A1). (E) Spore viability after detergent treatment was used to test for integrity of the cellulosic spore and the ability to hatch in a timely manner. The control (Ax2) strain and the knockout (HM1725) strain both showed good viability. (F) Expansion rate of plaques on bacterial lawns. The rates for control (Ax2) and knockout (HM1725, 1727, and 1728) strains were similar initially, but by 2 days the control plaques were larger. (G) Micrographs of plaques from control and knockout strains. DOI:http://dx.doi.org/10.7554/eLife.02866.012 + + + +Figure 2—figure supplement 2. Distribution of secG. DOI:http://dx.doi.org/10.7554/eLife.02866.013 + + + +Figure 2—figure supplement 3. Distribution of vacuolins. DOI:http://dx.doi.org/10.7554/eLife.02866.014 + + + +Video 1. Related to Figure 2. TIRF microscopy of D. discoideum expressing TSPOON-GFP, expressed off its own promoter in TSPOON knockout cells. One frame was collected every second. Dynamic puncta can be seen, indicating that the construct forms patches at the plasma membrane. DOI:http://dx.doi.org/10.7554/eLife.02866.015 + + + +Video 2. Related to Figure 2. TIRF microscopy of D. discoideum expressing free GFP, driven by the Actin15 promoter in TSPOON knockout cells. One frame was collected every second. The signal is diffuse and cytosolic. DOI:http://dx.doi.org/10.7554/eLife.02866.016 + + + +Figure 3. Distribution of TSET subunits. (A) Coulson plot showing the distribution of TSET in a diverse set of representative eukaryotes. Presence of the entire complex in at least four supergroups suggests its presence in the last eukaryotic common ancestor (LECA) with frequent secondary loss. Solid sectors indicate sequences identified and classified using BLAST and HMMer. Empty sectors indicate taxa in which no significant orthologues were identified. Filled sectors in the Holozoa and Fungi represent F-BAR domain-containing FCHo and Syp1, respectively. Taxon name abbreviations are inset. Names in bold indicate taxa with all six components. (B) Deduced evolutionary history of TSET as present in the LECA but independently lost multiple times, either partially or completely. See also Figure 3—source data 1, Figure 3—figure supplement 1. DOI:http://dx.doi.org/10.7554/eLife.02866.017 + + + +Figure 3—figure supplement 1. Models used for phylogenetic analyses. WC = with COPI; WOC = without COPI. DOI:http://dx.doi.org/10.7554/eLife.02866.019 + + + +Figure 4. Evolution of TSET. (A) Simplified diagram of the concatenated tree for TSET, APs, and COPI, based on Figure 4—figure supplement 8. Numbers indicate posterior probabilities for MrBayes and PhyloBayes and maxium-likelihood bootstrap values for PhyML and RAxML, in that order. (B) Schematic diagram of TSET. (C) Possible evolution of the three families of heterotetramers: TSET, APs, and COPI. We propose that the earliest ancestral complex was a likely a heterotrimer or a heterohexamer formed from two identical heterotrimers, containing large (red), small (yellow), and scaffolding (blue) subunits. All three of these proteins were composed of known ancient building blocks of the membrane-trafficking system (Vedovato et al., 2009): α-solenoid domains in both the large and scaffolding subunits; two β-propellers in the scaffolding subunit; and a longin domain forming the small subunit. The gene encoding the large subunit then duplicated and mutated to generate the two distinct types of large subunits (red and magenta), and the gene encoding the small subunit also duplicated and mutated (yellow and orange), with one of the two proteins (orange) acquiring a μ homology domain (MHD) to form the ancestral heterotetramer, as proposed by Boehm and Bonifacino (12). However, the scaffolding subunit remained a homodimer. Upon diversification into three separate families, the scaffolding subunit duplicated independently in TSET and COPI, giving rise to TTRAY1 and TTRAY2 in TSET, and to α- and β′-COP in COPI. COPI also acquired a new subunit, ε-COP (purple). The scaffolding subunit may have been lost in the ancestral AP complex, as indicated in the diagram; however, AP-5 is tightly associated with two other proteins, SPG11 and SPG15, and the relationship of SPG11 and SPG15 to TTRAY/B-COPI remains unresolved, so it is possible that SPG11 and SPG15 are highly divergent descendants of the original scaffolding subunits. The other AP complexes are free heterotetramers when in the cytosol, but membrane-associated AP-1 and AP-2 interact with another scaffold, clathrin; and AP-3 has also been proposed to interact transiently with a protein with similar architecture, Vps41 (Rehling et al., 1999; Cabrera et al., 2010; Asensio et al., 2013). So far no scaffold has been proposed for AP-4. Although the order of emergence of TSET and COP relative to adaptins is unresolved, our most recent analyses indicate that, contrary to previous reports (Hirst et al., 2011), AP-5 diverged basally within the adaptin clade, followed by AP-3, AP-4, and APs 1 and 2, all prior to the LECA. This still suggests a primordial bridging of the secretory and phagocytic systems prior to emergence of a trans-Golgi network. The muniscins arose much later, in ancestral opisthokonts, from a translocation of the TSET MHD-encoding sequence to a position immediately downstream from an F-BAR domain-encoding sequence. Another translocation occurred in plants, where an SH3 domain-coding sequence was inserted at the 3′ end of the TSAUCER-coding sequence. See also Figure 4—figure supplements 1–10. DOI:http://dx.doi.org/10.7554/eLife.02866.020 + + + +Figure 4—figure supplement 1. Phylogenetic analysis of TPLATE, β-COP, and β-adaptin, with TPLATE robustly excluded from the β-COP clade. In this and all other figure supplements to Figure 4, AP subunits are boxed in blue, F-COPI subunits are boxed in red, and subunits of TSET are boxed in yellow. Node support for critical nodes is shown. Numbers indicate Bayesian posterior probabilities (MrBayes) and bootstrap support from Maximum-likelihood analysis (RAxML). Support values for other nodes are denoted by symbols (see inset). DOI:http://dx.doi.org/10.7554/eLife.02866.021 + + + +Figure 4—figure supplement 2. Phylogenetic analysis of TPLATE and β-adaptin subunits (β-COP removed) showing, with weak support, that TPLATE is excluded from the adaptin clade. DOI:http://dx.doi.org/10.7554/eLife.02866.022 + + + +Figure 4—figure supplement 3. Phylogenetic analysis of TSAUCER, γ-COP, and γαδεζ-adaptin subunits, with TCUP robustly excluded from the γ-COP clade, and weakly excluded from the adaptin clade. DOI:http://dx.doi.org/10.7554/eLife.02866.023 + + + +Figure 4—figure supplement 4. Phylogenetic analysis of TSAUCER and γαδεζ-adaptin subunits (γ-COP removed), showing weak support for the exclusion of TSAUCER from the adaptin clade. DOI:http://dx.doi.org/10.7554/eLife.02866.024 + + + +Figure 4—figure supplement 5. Phylogenetic analysis of TCUP, δ-COP, and μ-adaptin subunits, with TSAUCER robustly excluded from the δ-COP clade and weakly excluded from the adaptin clade. DOI:http://dx.doi.org/10.7554/eLife.02866.025 + + + +Figure 4—figure supplement 6. Phylogenetic analysis of TCUP and μ-adaptin subunits (δ-COP removed), showing weak support for the exclusion of TCUP from the adaptin clade. DOI:http://dx.doi.org/10.7554/eLife.02866.026 + + + +Figure 4—figure supplement 7. Phylogenetic analysis of TSPOON with ζ-COP and σ–adaptin subunits with moderate support for the exclusion of TSPOON from both the COPI and adaptin clades, in addition to moderate support for the monophyly of the TSPOON clade. DOI:http://dx.doi.org/10.7554/eLife.02866.027 + + + +Figure 4—figure supplement 8. TSET is a phylogenetically distinct lineage from F-COPI and the AP complexes. Phylogenetic analysis of the heterotetrameric complexes: F-COPI (orange), TSET (purple), and AP (magenta, blue, red, green, and yellow for 5, 3, 1, 2, and 4, respectively), shows strong, weak, and moderate support for clades of each complex, respectively. Node support for critical nodes is shown. Numbers indicate Bayesian posterior probabilities (MrBayes and PhyloBayes) and bootstrap support from Maximum-likelihood analysis (PhyML and RAXML). Support values for other nodes are denoted by symbols (see inset). DOI:http://dx.doi.org/10.7554/eLife.02866.028 + + + +Figure 4—figure supplement 9. Phylogenetic analysis of TTRAY1, TTRAY2, α-COP, and β′-COP. TTRAYs 1 and 2, and COPI α and β′, arose from separate gene duplications, indicating that the ancestral complex had only one such protein, although possibly present as two identical copies. Phylogenetic analysis of α- and β′-COPI (red), and TTRAYs 1 and 2 (yellow), shows a well supported COPI clade excluding all of the TTRAY1 and 2 sequences, suggesting that the duplications giving rise to these proteins occurred independently, and the utilization of two different outer coat members occurred through convergent evolution. Node support for critical nodes is shown. Numbers indicate Bayesian posterior probabilities (MrBayes) and bootstrap support from Maximum-likelihood analysis (RAxML). Support values for other nodes are denoted by symbols (see inset). DOI:http://dx.doi.org/10.7554/eLife.02866.029 + + + +Figure 4—figure supplement 10. Muniscin family members identified by reverse HHpred, using the following PDB structures. 2V0O\_A (Chain A, Fcho2 F-Bar Domain); 3 G9H\_A (Chain A, Crystal Structure Of The C-Terminal Mu Homology Domain Of Syp1); 3G9G\_A (Chain A, Crystal Structure Of The N-Terminal EfcF-Bar Domain Of Syp1). DOI:http://dx.doi.org/10.7554/eLife.02866.030 + + + +## References + +- C Aguado-Velasco; MS Bretscher. Circulation of the plasma membrane in Dictyostelium. Molecular Biology of the Cell (1999) +- R Antrobus; GHH Borner. Improved elution conditions for native co-immunoprecipitation. PLOS ONE (2011) +- CS Asensio; DW Sirkis; JW Maas; K Egami; TL To; FM Brodsky; X Shu; Y Cheng; RH Edwards. Self-assembly of VPS41 promotes sorting required for biogenesis of the regulated secretory pathway. Developmental Cell (2013) +- M Boehm; JS Bonifacino. Genetic analyses of adaptin function from yeast to mammals. Gene (2002) +- M Cabrera; L Langemeyer; M Mari; R Rethmeier; I Orban; A Perz; C Bröcker; J Griffith; D Klose; HJ Steinhoff; F Reggiori; S Engelbrecht-Vandré; C Ungermann. Phosphorylation of a membrane curvature-sensing motif switches function of the HOPS subunit Vps41 in membrane tethering. The EMBO Journal (2010) +- C Camacho; G Coulouris; V Avagyan; N Ma; J Papadopoulos; K Bealer; TL Madden. BLAST+: architecture and applications. BMC Bioinformatics (2009) +- T Carver; SR Harris; M Berriman; J Parkhill; JA McQuillan. Artemis: an integrated platform for visualization and analysis of high-throughput sequence-based experimental data. Bioinformatics (2012) +- E Cocucci; F Aguet; S Boulant; T Kirchhausen. The first five seconds in the life of a clathrin-coated pit. Cell (2012) +- JB Dacks; PP Poon; MC Field. Phylogeny of endocytic components yields insight into the process of nonendosymbiotic organelle evolution. Proceedings of the National Academy of Sciences of the United States of America (2008) +- D Devos; S Dokudovskaya; F Alber; R Williams; BT Chait; A Sali; MP Rout. Components of coated vesicles and nuclear pore complexes share a common molecular architecture. PLOS Biology (2004) +- RC Edgar. MUSCLE: a multiple sequence alignment method with reduced time and space complexity. BMC Bioinformatics (2004) +- J Faix; L Kreppel; G Shaulsky; M Schleicher; AR Kimmel. A rapid and efficient method to generate multiple gene disruptions in Dictyostelium discoideum using a single selectable marker and the Cre-loxP system. Nucleic Acids Research (2004) +- HI Field; RMR Coulson; MC Field. An automated graphics tool for comparative genomics: the Coulson plot generator. BMC Bioinformatics (2013) +- MC Field; JB Dacks. First and last ancestors: reconstructing evolution of the endomembrane system with ESCRTs, vesicle coat proteins, and nuclear pore complexes. Current Opinion in Cell Biology (2009) +- A Gadeyne; C Sanchez-Rodriguez; S Vanneste; S Di Rubbo; H Zauber; K Vanneste; J Van Leene; N De Winne; D Eeckhout; G Persiau; E Van De Slijke; B Cannoot; L Vercruysse; JR Mayers; M Adamowski; U Kania; M Ehrlich; A Schweighofer; T Ketelaar; S Maere; SY Bednarek; J Friml; K Gevaert; E Witters; E Russinova; S Persson; G De Jaeger; D Van Damme. The TPLATE adaptor complex drives clathrin-mediated endocytosis in plants. Cell (2014) +- D Gotthardt; HJ Warnatz; O Henschel; F Brückert; M Schleicher; T Soldati. High-resolution dissection of phagosome maturation reveals distinct membrane trafficking phases. Molecular Biology of the Cell (2002) +- WM Henne; E Boucrot; M Meinecke; E Evergren; Y Vallis; R Mittal; HT McMahon. FCHO proteins are nucleators of clathrin-mediated endocytosis. Science (2010) +- J Hirst; LD Barlow; GC Francisco; DA Sahlender; MNJ Seaman; JB Dacks; MS Robinson. The fifth adaptor protein complex. PLOS Biology (2011) +- J Hirst; C Irving; GHH Borner. Adaptor protein complexes AP-4 and AP-5: new players in endosomal trafficking and progressive spastic paraplegia. Traffic (2013) +- J Hirst; RR Kay; D Traynor. Dictyostelium Cultivation, Transfection, Microscopy and Fractionation. Bio-protocol (2015) +- N Jenne; R Rauchenberger; U Hacker; T Kast; M Maniak. Targeted gene disruption reveals a role for vacuolin B in the late endocytic pathway and exocytosis. Journal of Cell Science (1998) +- RR Kay. cAMP and spore differentiation in Dictyostelium discoideum. Proceedings of the National Academy of Sciences of the United States of America (1982) +- RR Kay. Cell differentiation in monolayers and the investigation of slime mold morphogens. Methods in Cell Biology (1987) +- LA Kelley; MJE Sternberg. Protein structure prediction on the web: a case study using the Phyre server. Nature Protocols (2009) +- D Knecht; KM Pang. Electroporation of Dictyostelium discoideum. Methods in Molecular Biology (1995) +- VL Koumandou; B Wickstead; ML Ginger; M van der Giezen; JB Dacks; MC Field. Molecular paleontology and complexity in the last eukaryotic common ancestor. Critical Reviews in Biochemistry and Molecular Biology (2013) +- N Lartillot; T Lepage; S Blanquart. PhyloBayes 3: a Bayesian software package for phylogenetic reconstruction and molecular dating. Bioinformatics (2009) +- JR Mayers; L Wang; J Pramanik; A Johnson; A Sarkeshik; Y Wang; W Saengsawang; JR Yates; A Audhya. Regulation of ubiquitin-dependent cargo sorting by multiple endocytic adaptors at the plasma membrane. Proceedings of the National Academy of Sciences of the United States of America (2013) +- MA Miller; W Pfeiffer; T Schwartz. Creating the CIPRES Science Gateway for inference of large phylogenetic trees. in Proceedings of the Gateway Computing Environments Workshop. GCE (2010) +- R Rauchenberger; U Hacker; J Murphy; J Niewöhner; M Maniak. Coronin and vacuolin identify consecutive stages of a late, actin-coated endocytic compartment in Dictyostelium. Current Biology: CB (1997) +- P Rehling; T Darsow; DJ Katzmann; SD Emr. Formation of AP-3 transport intermediates requires Vps41 function. Nature Cell Biology (1999) +- A Reider; SL Barker; SK Mishra; YJ Im; L Maldonado-Baez; JH Hurley; LM Traub; B Wendland. Syp1 is a conserved endocytic adaptor that contains domains involved in cargo selection and membrane tubulation. The EMBO Journal (2009) +- F Ronquist; JP Huelsenbeck. MrBayes 3: Bayesian phylogenetic inference under mixed models. Bioinformatics (2003) +- A Schlacht; EK Herman; MJ Klute; MC Field; JB Dacks. Missing pieces of an ancient puzzle: Evolution of the eukaryotic membrane-trafficking system. Cold Spring Harbor Perspectives in Biology (2014) +- B Schwanhäusser; D Busse; N Li; G Dittmar; J Schuchhardt; J Wolf; W Chen; M Selbach. Global quantification of mammalian gene expression control. Nature (2011) +- MNJ Seaman; ME Harbour; D Tattersall; E Read; N Bright. Membrane recruitment of the cargo-selective retromer subcomplex is catalysed by the small GTPase Rab7 and inhibited by the Rab-GAP TBC1D5. Journal of Cell Science (2009) +- MC Shina; R Müller; R Blau-Wasser; G Glöckner; M Schleicher; L Eichinger; AA Noegel; W Kolanus. A cytohesin homolog in Dictyostelium amoebae. PLOS ONE (2010) +- A Stamatakis. RAxML-VI-HPC: maximum likelihood-based phylogenetic analyses with thousands of taxa and mixed models. Bioinformatics (2006) +- D Traynor; RR Kay. Possible roles of the endocytic cycle in cell motility. Journal of Cell Science (2007) +- PK Umasankar; S Sanker; JR Thieman; S Chakraborty; B Wendland; M Tsang; LM Traub. Distinct and separable activities of the endocytic clathrin-coat components Fcho1/2 and AP-2 in developmental patterning. Nature Cell Biology (2012) +- D Van Damme; S Coutuer; R De Rycke; FY Bouget; D Inzé; D Geelen. Somatic cytokinesis and pollen maturation in Arabidopsis depend on TPLATE, which has domains similar to coat proteins. The Plant Cell (2006) +- D Van Damme; A Gadeyne; M Vanstraelen; D Inzé; MC Van Montagu; G De Jaeger; E Russinova; D Geelen. Adaptin-like protein TPLATE and clathrin recruitment during plant somatic cytokinesis occurs via two distinct pathways. Proceedings of the National Academy of Sciences of the United States of America (2011) +- M Vedovato; V Rossi; JB Dacks; F Filippini. Comparative analysis of plant genomes allows the definition of the “Phytolongins”: a novel non-SNARE longin domain protein family. BMC Genomics (2009) +- DM Veltman; G Akar; L Bosgraaf; PJ Van Haastert. A new set of small, extrachromosomal expression vectors for Dictyostelium discoideum. Plasmid (2009) \ No newline at end of file diff --git a/tests/data/groundtruth/docling_v2/pubmed-PMC13900.nxml.itxt b/tests/data/groundtruth/docling_v2/pubmed-PMC13900.nxml.itxt new file mode 100644 index 00000000..27129482 --- /dev/null +++ b/tests/data/groundtruth/docling_v2/pubmed-PMC13900.nxml.itxt @@ -0,0 +1,52 @@ +item-0 at level 0: unspecified: group _root_ + item-1 at level 1: title: Comparison of written reports of ... asis on magnetic resonance mammography + item-2 at level 1: paragraph: Sabine Malur; Department of Gyne ... ch-Schiller University, Jena, Germany. + item-3 at level 1: text: Patients with abnormal breast fi ... to that of MR mammography (ie 94.6%). + item-4 at level 1: section_header: Introduction + item-5 at level 2: text: Mammography and sonography are t ... aphy and mammography are combined [3]. + item-6 at level 2: text: It is generally accepted that MR ... cal and multicentric invasive disease. + item-7 at level 1: section_header: Results + item-8 at level 2: text: All patients underwent breast su ... ents was 58 years (range 19-85 years). + item-9 at level 2: text: The sensitivity of MR mammograph ... all three methods (P < 0.05; Table 3). + item-10 at level 2: text: Mammography was false-negative i ... aphy or mammography were nonsuspected. + item-11 at level 1: section_header: Discussion + item-12 at level 2: text: When the validity of individual ... %, respectively [6,7,8,9,10,15,16,17]. + item-13 at level 2: text: The performance of mammography, ... sensitivity of all imaging procedures. + item-14 at level 2: text: When combinations of all three t ... ammography alone (94.6% versus 94.6%). + item-15 at level 2: text: The majority of false-positive r ... and may mimic invasive cancer [16,18]. + item-16 at level 2: text: Ten out of 185 (5.4%) malignant ... cinomas had a low microvessel density. + item-17 at level 2: text: Multifocality of breast cancers ... was shown to be unifocal by histology. + item-18 at level 2: text: Kramer et al [24] reported that ... tric cancers were diagnosed correctly. + item-19 at level 2: text: Carcinoma in situ is identified ... es without early contrast enhancement. + item-20 at level 1: section_header: References + item-21 at level 1: list: group list + item-22 at level 2: list_item: SG Orel; RH Troupin. Nonmammogra ... re prospects.. Semin Roentgenol (1993) + item-23 at level 2: list_item: K Kerlikowske; D Grady; SM Rubin ... of screening mammography.. JAMA (1995) + item-24 at level 2: list_item: M Müller-Schimpfle; P Stoll; W S ... onography?. AJR Am J Roentgenol (1997) + item-25 at level 2: list_item: SH Heywang; D Hahn; H Schmidt; I ... m-DTPA.. J Comput Assist Tomogr (1986) + item-26 at level 2: list_item: WA Kaiser; E Zeitler. MR mammogr ... lts [in German].. Röntgenpraxis (1985) + item-27 at level 2: list_item: GM Kacl; P Liu; JF Debatin; E Ga ... nhanced MR imaging.. Eur Radiol (1998) + item-28 at level 2: list_item: B Bone; Z Pentek; L Perbeck; B V ... ed breast lesions.. Acta Radiol (1997) + item-29 at level 2: list_item: WA Kaiser. MR Mammographie.. Radiologe (1993) + item-30 at level 2: list_item: SH Heywang-Köbrunner. Contrast-e ... g of the breast.. Invest Radiol (1994) + item-31 at level 2: list_item: SE Harms; DP Flaming. MR imaging ... e breast.. J Magn Reson Imaging (1993) + item-32 at level 2: list_item: LD Buadu; J Murakami; S Murayama ... tumor angiogenesis.. Radiology (1996) + item-33 at level 2: list_item: SG Orel; MD Schnall; VA LiVolsi; ... hologic correlation.. Radiology (1994) + item-34 at level 2: list_item: S Ciatto; M Rosselli del Turco; ... is of breast cancer.. Neoplasma (1994) + item-35 at level 2: list_item: KK Oh; JH Cho; CS Yoon; WH Jung; ... J, Hackelöer BJ. Basel: Karger; (1994) + item-36 at level 2: list_item: SH Heywang. MRI in breast diseas ... ce in Medicine 1. Berkeley, CA. (1993) + item-37 at level 2: list_item: WA Kaiser. False-positive result ... agn Reson Imaging Clin North Am (1994) + item-38 at level 2: list_item: SH Heywang-Koebrunner; P Vieweg; ... rsies, solutions.. Eur J Radiol (1997) + item-39 at level 2: list_item: B Bone; P Aspelin; L Bronge; B I ... on in 250 breasts.. Acta Radiol (1996) + item-40 at level 2: list_item: CB Stelling. MR imaging of the b ... rections.. Radiol Clin North Am (1995) + item-41 at level 2: list_item: L Esserman; N Hylton; L Yassa; J ... perative staging.. J Clin Oncol (1999) + item-42 at level 2: list_item: WA Kaiser; K Diedrich; M Reiser; ... erman].. Geburtsh u Frauenheilk (1993) + item-43 at level 2: list_item: C Boetes; R Mus; R Holland; JO B ... emonstration extent.. Radiology (1995) + item-44 at level 2: list_item: U Fischer; R Vossheinrich; L Kop ... therapy [abstract].. Radiology (1994) + item-45 at level 2: list_item: S Kramer; R Schultz-Wendtland; K ... breast cancer.. Anticancer Res (1998) + item-46 at level 2: list_item: S Ciatto; M Rosselli del Turco; ... confirmed cases.. Eur J Cancer (1994) + item-47 at level 2: list_item: U Fischer; JP Westerhof; U Brinc ... n German].. Fortschr Röntgenstr (1996) + item-48 at level 2: list_item: H Sittek; M Kessler; AF Heuck; T ... n German].. Fortschr Röntgenstr (1997) + item-49 at level 2: list_item: R Gilles; B Zafrani; JM Guinebre ... hologic correlation.. Radiology (1995) + item-50 at level 2: list_item: W Buchberger; M Kapferer; A Stög ... n German; abstract].. Radiologe (1995) + item-51 at level 2: list_item: SH Heywang; A Wolf; E Pruss; T H ... use and limitations.. Radiology (1989) \ No newline at end of file diff --git a/tests/data/groundtruth/docling_v2/pubmed-PMC13900.nxml.json b/tests/data/groundtruth/docling_v2/pubmed-PMC13900.nxml.json new file mode 100644 index 00000000..c7149e51 --- /dev/null +++ b/tests/data/groundtruth/docling_v2/pubmed-PMC13900.nxml.json @@ -0,0 +1,811 @@ +{ + "schema_name": "DoclingDocument", + "version": "1.0.0", + "name": "pubmed-PMC13900", + "origin": { + "mimetype": "text/xml", + "binary_hash": 1006038906515573678, + "filename": "pubmed-PMC13900.nxml" + }, + "furniture": { + "self_ref": "#/furniture", + "children": [], + "name": "_root_", + "label": "unspecified" + }, + "body": { + "self_ref": "#/body", + "children": [ + { + "$ref": "#/texts/0" + }, + { + "$ref": "#/texts/1" + }, + { + "$ref": "#/texts/2" + }, + { + "$ref": "#/texts/3" + }, + { + "$ref": "#/texts/6" + }, + { + "$ref": "#/texts/10" + }, + { + "$ref": "#/texts/19" + }, + { + "$ref": "#/groups/0" + } + ], + "name": "_root_", + "label": "unspecified" + }, + "groups": [ + { + "self_ref": "#/groups/0", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/20" + }, + { + "$ref": "#/texts/21" + }, + { + "$ref": "#/texts/22" + }, + { + "$ref": "#/texts/23" + }, + { + "$ref": "#/texts/24" + }, + { + "$ref": "#/texts/25" + }, + { + "$ref": "#/texts/26" + }, + { + "$ref": "#/texts/27" + }, + { + "$ref": "#/texts/28" + }, + { + "$ref": "#/texts/29" + }, + { + "$ref": "#/texts/30" + }, + { + "$ref": "#/texts/31" + }, + { + "$ref": "#/texts/32" + }, + { + "$ref": "#/texts/33" + }, + { + "$ref": "#/texts/34" + }, + { + "$ref": "#/texts/35" + }, + { + "$ref": "#/texts/36" + }, + { + "$ref": "#/texts/37" + }, + { + "$ref": "#/texts/38" + }, + { + "$ref": "#/texts/39" + }, + { + "$ref": "#/texts/40" + }, + { + "$ref": "#/texts/41" + }, + { + "$ref": "#/texts/42" + }, + { + "$ref": "#/texts/43" + }, + { + "$ref": "#/texts/44" + }, + { + "$ref": "#/texts/45" + }, + { + "$ref": "#/texts/46" + }, + { + "$ref": "#/texts/47" + }, + { + "$ref": "#/texts/48" + }, + { + "$ref": "#/texts/49" + } + ], + "name": "list", + "label": "list" + } + ], + "texts": [ + { + "self_ref": "#/texts/0", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "title", + "prov": [], + "orig": "Comparison of written reports of mammography, sonography and magnetic resonance mammography for preoperative evaluation of breast lesions, with special emphasis on magnetic resonance mammography", + "text": "Comparison of written reports of mammography, sonography and magnetic resonance mammography for preoperative evaluation of breast lesions, with special emphasis on magnetic resonance mammography" + }, + { + "self_ref": "#/texts/1", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "paragraph", + "prov": [], + "orig": "Sabine Malur; Department of Gynecology, Friedrich-Schiller University, Jena, Germany.; Susanne Wurdinger; Institute for Diagnostic and Interventional Radiology, Friedrich-Schiller University, Jena, Germany.; Andreas Moritz; Department of Gynecology, Friedrich-Schiller University, Jena, Germany.; Wolfgang Michels; Department of Gynecology, Friedrich-Schiller University, Jena, Germany.; Achim Schneider; Department of Gynecology, Friedrich-Schiller University, Jena, Germany.", + "text": "Sabine Malur; Department of Gynecology, Friedrich-Schiller University, Jena, Germany.; Susanne Wurdinger; Institute for Diagnostic and Interventional Radiology, Friedrich-Schiller University, Jena, Germany.; Andreas Moritz; Department of Gynecology, Friedrich-Schiller University, Jena, Germany.; Wolfgang Michels; Department of Gynecology, Friedrich-Schiller University, Jena, Germany.; Achim Schneider; Department of Gynecology, Friedrich-Schiller University, Jena, Germany." + }, + { + "self_ref": "#/texts/2", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "Patients with abnormal breast findings ( n = 413) were examined by mammography, sonography and magnetic resonance (MR) mammography; 185 invasive cancers, 38 carcinoma in situ and 254 benign tumours were confirmed histologically. Sensitivity for mammography was 83.7%, for sonography it was 89.1% and for MR mammography it was 94.6% for invasive cancers. In 42 patients with multifocal invasive cancers, multifocality had been detected by mammography and sonography in 26.2%, and by MR mammography in 66.7%. In nine patients with multicentric cancers, detection rates were 55.5, 55.5 and 88.8%, respectively. Carcinoma in situ was diagnosed by mammography in 78.9% and by MR mammography in 68.4% of patients. Combination of all three diagnostic methods lead to the best results for detection of invasive cancer and multifocal disease. However, sensitivity of mammography and sonography combined was identical to that of MR mammography (ie 94.6%).", + "text": "Patients with abnormal breast findings ( n = 413) were examined by mammography, sonography and magnetic resonance (MR) mammography; 185 invasive cancers, 38 carcinoma in situ and 254 benign tumours were confirmed histologically. Sensitivity for mammography was 83.7%, for sonography it was 89.1% and for MR mammography it was 94.6% for invasive cancers. In 42 patients with multifocal invasive cancers, multifocality had been detected by mammography and sonography in 26.2%, and by MR mammography in 66.7%. In nine patients with multicentric cancers, detection rates were 55.5, 55.5 and 88.8%, respectively. Carcinoma in situ was diagnosed by mammography in 78.9% and by MR mammography in 68.4% of patients. Combination of all three diagnostic methods lead to the best results for detection of invasive cancer and multifocal disease. However, sensitivity of mammography and sonography combined was identical to that of MR mammography (ie 94.6%)." + }, + { + "self_ref": "#/texts/3", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/4" + }, + { + "$ref": "#/texts/5" + } + ], + "label": "section_header", + "prov": [], + "orig": "Introduction", + "text": "Introduction", + "level": 1 + }, + { + "self_ref": "#/texts/4", + "parent": { + "$ref": "#/texts/3" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "Mammography and sonography are the standard imaging techniques for detection and evaluation of breast disease [1]. Mammography is the most established screening modality [2]. Especially in young women and women with dense breasts, sonography appears superior to mammography, and differentiation between solid tumours and cysts is easier. Sensitivity and specificity of sonography or mammography are higher if sonography and mammography are combined [3].", + "text": "Mammography and sonography are the standard imaging techniques for detection and evaluation of breast disease [1]. Mammography is the most established screening modality [2]. Especially in young women and women with dense breasts, sonography appears superior to mammography, and differentiation between solid tumours and cysts is easier. Sensitivity and specificity of sonography or mammography are higher if sonography and mammography are combined [3]." + }, + { + "self_ref": "#/texts/5", + "parent": { + "$ref": "#/texts/3" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "It is generally accepted that MR mammography is the most sensitive technique for diagnosis of breast cancer, whereas the reported specificity of MR mammography varies [4,5,6,7,8,9,10,11,12]. In those studies, MR mammography was performed and evaluated by highly specialized radiologists in a research setting. It was therefore the purpose of the present prospective study to compare the validity of MR mammography with mammography and sonography in clinical routine practice. Findings for the three diagnostic methods documented on routine reports that were available to the surgeon preoperatively formed the basis of this comparison. Special emphasis was placed on the identification of multifocal and multicentric invasive disease.", + "text": "It is generally accepted that MR mammography is the most sensitive technique for diagnosis of breast cancer, whereas the reported specificity of MR mammography varies [4,5,6,7,8,9,10,11,12]. In those studies, MR mammography was performed and evaluated by highly specialized radiologists in a research setting. It was therefore the purpose of the present prospective study to compare the validity of MR mammography with mammography and sonography in clinical routine practice. Findings for the three diagnostic methods documented on routine reports that were available to the surgeon preoperatively formed the basis of this comparison. Special emphasis was placed on the identification of multifocal and multicentric invasive disease." + }, + { + "self_ref": "#/texts/6", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/7" + }, + { + "$ref": "#/texts/8" + }, + { + "$ref": "#/texts/9" + } + ], + "label": "section_header", + "prov": [], + "orig": "Results", + "text": "Results", + "level": 1 + }, + { + "self_ref": "#/texts/7", + "parent": { + "$ref": "#/texts/6" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "All patients underwent breast surgery and all abnormal lesions identified by mammography, sonography or MR mammography were surgically removed. A total of 477 breast lesions were examined histologically, revealing the presence of 185 invasive cancers, 38 carcinomata in situ and 254 benign lesions (fibroadenoma, papilloma, intraductal or adenoid ductal hyperplasia, cystic mastopathia). There were four patients with malignant lesions in both breasts. In 42 patients multifocal tumours and in nine patients multicentric tumors were found on histological examination. Among the 185 invasive lesions, 178 were primary cancers, five were recurrences, one was metastatic and one was an angiosarcoma. The majority of invasive breast cancers were staged as pT1c (44%). Six per cent of tumors were detected in stage pT1a, 18% in stage pT1b, 25% in stage pT2, 3% in stage pT3 and 4% in stage pT4. The distribution of histopathological tumour types is shown in Table 1. The mean age of patients was 58 years (range 19-85 years).", + "text": "All patients underwent breast surgery and all abnormal lesions identified by mammography, sonography or MR mammography were surgically removed. A total of 477 breast lesions were examined histologically, revealing the presence of 185 invasive cancers, 38 carcinomata in situ and 254 benign lesions (fibroadenoma, papilloma, intraductal or adenoid ductal hyperplasia, cystic mastopathia). There were four patients with malignant lesions in both breasts. In 42 patients multifocal tumours and in nine patients multicentric tumors were found on histological examination. Among the 185 invasive lesions, 178 were primary cancers, five were recurrences, one was metastatic and one was an angiosarcoma. The majority of invasive breast cancers were staged as pT1c (44%). Six per cent of tumors were detected in stage pT1a, 18% in stage pT1b, 25% in stage pT2, 3% in stage pT3 and 4% in stage pT4. The distribution of histopathological tumour types is shown in Table 1. The mean age of patients was 58 years (range 19-85 years)." + }, + { + "self_ref": "#/texts/8", + "parent": { + "$ref": "#/texts/6" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "The sensitivity of MR mammography was significantly higher than those of mammography and sonography (P < 0.005 and P < 0.05; Table 2). The specificity of sonography was significantly higher than those of mammography and MR mammography (P < 0.05 and P < 0.005; Table 2). The negative predictive values for sonography and MR mammography were significantly higher than that of mammography (P < 0.05 and P < 0.005; Table 2). With regard to accuracy, no significant difference between the three modalities was found (Table 2). Combining of all three diagnostic methods yielded the best results for detection of cancer (P < 0.005; Table 3). The sensitivity and negative predictive value for the combination of mammography and MR mammography, and the combination of sonography and MR mammography were significantly higher than those for the combination of mammograpy and sonography (P < 0.05; Table 3). The highest result for accuracy was seen for a combination of all three methods (P < 0.05; Table 3).", + "text": "The sensitivity of MR mammography was significantly higher than those of mammography and sonography (P < 0.005 and P < 0.05; Table 2). The specificity of sonography was significantly higher than those of mammography and MR mammography (P < 0.05 and P < 0.005; Table 2). The negative predictive values for sonography and MR mammography were significantly higher than that of mammography (P < 0.05 and P < 0.005; Table 2). With regard to accuracy, no significant difference between the three modalities was found (Table 2). Combining of all three diagnostic methods yielded the best results for detection of cancer (P < 0.005; Table 3). The sensitivity and negative predictive value for the combination of mammography and MR mammography, and the combination of sonography and MR mammography were significantly higher than those for the combination of mammograpy and sonography (P < 0.05; Table 3). The highest result for accuracy was seen for a combination of all three methods (P < 0.05; Table 3)." + }, + { + "self_ref": "#/texts/9", + "parent": { + "$ref": "#/texts/6" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "Mammography was false-negative in 30 out of 184 invasive cancers, sonography was false-negative in 20 out of 185 cancers, and 10 out of 185 invasive cancers were missed by MR mammography. The majority of false-negative findings was found in stage1 disease, ductal carcinoma and grade 3 tumors (Table 4). Of 10 invasive cancers missed by MR mammography, eight were found by mammography and sonography. By all three techniques, one invasive ductal carcinoma (pT1b) was misinterpreted as fibroadenoma. In another patient, a microinvasive lobular carcinoma of 5 mm diameter was not detected with mammography and MR mammography, whereas sonography detected a solid, benign tumour. MR mammography identified 10 invasive cancers (5.2%) that were missed by mammography and sonography, whereas one invasive cancer was found by mammography alone. By sonography alone, not a single case of invasive disease was detected when MR mammography or mammography were nonsuspected.", + "text": "Mammography was false-negative in 30 out of 184 invasive cancers, sonography was false-negative in 20 out of 185 cancers, and 10 out of 185 invasive cancers were missed by MR mammography. The majority of false-negative findings was found in stage1 disease, ductal carcinoma and grade 3 tumors (Table 4). Of 10 invasive cancers missed by MR mammography, eight were found by mammography and sonography. By all three techniques, one invasive ductal carcinoma (pT1b) was misinterpreted as fibroadenoma. In another patient, a microinvasive lobular carcinoma of 5 mm diameter was not detected with mammography and MR mammography, whereas sonography detected a solid, benign tumour. MR mammography identified 10 invasive cancers (5.2%) that were missed by mammography and sonography, whereas one invasive cancer was found by mammography alone. By sonography alone, not a single case of invasive disease was detected when MR mammography or mammography were nonsuspected." + }, + { + "self_ref": "#/texts/10", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/11" + }, + { + "$ref": "#/texts/12" + }, + { + "$ref": "#/texts/13" + }, + { + "$ref": "#/texts/14" + }, + { + "$ref": "#/texts/15" + }, + { + "$ref": "#/texts/16" + }, + { + "$ref": "#/texts/17" + }, + { + "$ref": "#/texts/18" + } + ], + "label": "section_header", + "prov": [], + "orig": "Discussion", + "text": "Discussion", + "level": 1 + }, + { + "self_ref": "#/texts/11", + "parent": { + "$ref": "#/texts/10" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "When the validity of individual diagnostic methods for detection of invasive breast cancer was analyzed, the sensitivity and specificity of mammography ranged from 79.9 to 89% and from 64 to 93.5%, respectively [6,7,13]; for sonography from 67.6 to 96% and from 93 to 97.7%, respectively [13,14]; and for MR mammography from 91 to 98.9 and from 20 to 97.4%, respectively [6,7,8,9,10,15,16,17].", + "text": "When the validity of individual diagnostic methods for detection of invasive breast cancer was analyzed, the sensitivity and specificity of mammography ranged from 79.9 to 89% and from 64 to 93.5%, respectively [6,7,13]; for sonography from 67.6 to 96% and from 93 to 97.7%, respectively [13,14]; and for MR mammography from 91 to 98.9 and from 20 to 97.4%, respectively [6,7,8,9,10,15,16,17]." + }, + { + "self_ref": "#/texts/12", + "parent": { + "$ref": "#/texts/10" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "The performance of mammography, sonography and MR mammography was compared in three large series (Table 5). The present results are similar with regard to sensitivity and specificity for the detection of malignant breast lesions, with MR mammography reaching the highest sensitivity of all imaging procedures.", + "text": "The performance of mammography, sonography and MR mammography was compared in three large series (Table 5). The present results are similar with regard to sensitivity and specificity for the detection of malignant breast lesions, with MR mammography reaching the highest sensitivity of all imaging procedures." + }, + { + "self_ref": "#/texts/13", + "parent": { + "$ref": "#/texts/10" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "When combinations of all three technique were analyzed, mammography and sonography (standard method) had a sensitivity of 83% and a specificity of 92% for detection of malignant disease [3]. A combination of mammography, sonography and MR mammography (combined method) showed a sensitivity of 95% and a specificity of 64% [3]. For nonpalpable lesions, sensitivity increased from 73% by the standard method to 82% for the combined method. Specificity for the standard method (89%) was higher than that for the combined method (71%). For palpable lesions a sensitivity of 85% for the standard and 98% for the combined method was achieved, whereas specificity for the standard method was 100% compared with 45% for the combined methods [3]. The positive predictive value was 94% for the standard and 80% for the combined methods, and the negative predictive values were 78 and 89%, respectively [3]. In the present study, we also found the highest sensitivity, specificity, and positive and negative predictive values for the combination of all three methods. Combination of mammography and sonography was as sensitive as MR mammography alone (94.6% versus 94.6%).", + "text": "When combinations of all three technique were analyzed, mammography and sonography (standard method) had a sensitivity of 83% and a specificity of 92% for detection of malignant disease [3]. A combination of mammography, sonography and MR mammography (combined method) showed a sensitivity of 95% and a specificity of 64% [3]. For nonpalpable lesions, sensitivity increased from 73% by the standard method to 82% for the combined method. Specificity for the standard method (89%) was higher than that for the combined method (71%). For palpable lesions a sensitivity of 85% for the standard and 98% for the combined method was achieved, whereas specificity for the standard method was 100% compared with 45% for the combined methods [3]. The positive predictive value was 94% for the standard and 80% for the combined methods, and the negative predictive values were 78 and 89%, respectively [3]. In the present study, we also found the highest sensitivity, specificity, and positive and negative predictive values for the combination of all three methods. Combination of mammography and sonography was as sensitive as MR mammography alone (94.6% versus 94.6%)." + }, + { + "self_ref": "#/texts/14", + "parent": { + "$ref": "#/texts/10" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "The majority of false-positive results for invasive cancer by MR mammography (80 out of 439) were caused by papillomas, intraductal hyperplasia grade 2 or 3, or fibroadenomas in the present series. These lesions have a good blood supply and may mimic invasive cancer [16,18].", + "text": "The majority of false-positive results for invasive cancer by MR mammography (80 out of 439) were caused by papillomas, intraductal hyperplasia grade 2 or 3, or fibroadenomas in the present series. These lesions have a good blood supply and may mimic invasive cancer [16,18]." + }, + { + "self_ref": "#/texts/15", + "parent": { + "$ref": "#/texts/10" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "Ten out of 185 (5.4%) malignant lesions were classified as false-negative by MR mammography. On histology, the majority of false-negative invasive cancers were lobular cancers (four out of 10). Bone et al [18] reported false-negative results in 11 out of 155 readings, with the majority being lobular cancers on histology. Lack of tumour-induced neovascularity may explain such findings. In particular, invasive lobular cancers infiltrate the normal tissue with columns of single cells, and receive adequate oxygenation without the requirement for increased vascularization [19]. Buadu et al [11] found that lobular and mucinous carcinomas had a low microvessel density.", + "text": "Ten out of 185 (5.4%) malignant lesions were classified as false-negative by MR mammography. On histology, the majority of false-negative invasive cancers were lobular cancers (four out of 10). Bone et al [18] reported false-negative results in 11 out of 155 readings, with the majority being lobular cancers on histology. Lack of tumour-induced neovascularity may explain such findings. In particular, invasive lobular cancers infiltrate the normal tissue with columns of single cells, and receive adequate oxygenation without the requirement for increased vascularization [19]. Buadu et al [11] found that lobular and mucinous carcinomas had a low microvessel density." + }, + { + "self_ref": "#/texts/16", + "parent": { + "$ref": "#/texts/10" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "Multifocality of breast cancers can be recognized adequately by MR mammography [20,21]. Boetes et al [22] reported that all 61 multifocal cancers were detected by MR mammography, compared with 31% by mammography and 38% by sonography. Esserman et al [20] detected multifocality by MR mammography in 100% (10 out of 10) versus 44% (four out of nine) by mammography. Relevant changes in therapy due to additional multicentric and contralateral tumour findings by MR mammography occur in 18% of patients as compared with conventional imaging [23]. We found a detection rate of multifocality of 66.7% by MR mammography, as compared with 26.2% by mammography and sonography. However, in 16 patients multifocal invasive disease as diagnosed by MR mammography was shown to be unifocal by histology.", + "text": "Multifocality of breast cancers can be recognized adequately by MR mammography [20,21]. Boetes et al [22] reported that all 61 multifocal cancers were detected by MR mammography, compared with 31% by mammography and 38% by sonography. Esserman et al [20] detected multifocality by MR mammography in 100% (10 out of 10) versus 44% (four out of nine) by mammography. Relevant changes in therapy due to additional multicentric and contralateral tumour findings by MR mammography occur in 18% of patients as compared with conventional imaging [23]. We found a detection rate of multifocality of 66.7% by MR mammography, as compared with 26.2% by mammography and sonography. However, in 16 patients multifocal invasive disease as diagnosed by MR mammography was shown to be unifocal by histology." + }, + { + "self_ref": "#/texts/17", + "parent": { + "$ref": "#/texts/10" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "Kramer et al [24] reported that MR mammography yielded the highest sensitivity for detection of multicentricity as compared with mammography and sonography (89, 66 and 79%, respectively) in 38 patients. These findings are comparable with the present results, in which eight out of nine multicentric cancers were diagnosed correctly.", + "text": "Kramer et al [24] reported that MR mammography yielded the highest sensitivity for detection of multicentricity as compared with mammography and sonography (89, 66 and 79%, respectively) in 38 patients. These findings are comparable with the present results, in which eight out of nine multicentric cancers were diagnosed correctly." + }, + { + "self_ref": "#/texts/18", + "parent": { + "$ref": "#/texts/10" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "Carcinoma in situ is identified by mammography through the presence of suspicious microcalcifications. Suspicious microcalcifications are more frequent in intraductal than in infiltrating cancers [25], which was also observed in the present series. Mammography showed a detection rate for carcinoma in situ of 78.9%, as compared with 65.8% by MR mammography; the combination of mammography and MR mammography lead to a detection rate of 86.4%. Fischer et al [26] reported that carcinoma in situ was identified by MR mammography in 25 out of 35 patients (72%); three ductal carcinomata in situ were detected by MR mammography exclusively. Sittek et al [27] reported that 14 out of 20 carcinomata in situ (70%) were correctly diagnosed by MR mammography on the basis of focal increase of signal intensity. Those authors concluded that carcinoma in situ is not reliably detected by MR mammography because of lack of a uniform pattern of enhancement. Esserman et al [20] reported a detection rate of 43% for ductal carcinoma in situ by MR mammography. Among 36 woman with carcinoma in situ, Gilles et al [28] demonstrated two cases without early contrast enhancement.", + "text": "Carcinoma in situ is identified by mammography through the presence of suspicious microcalcifications. Suspicious microcalcifications are more frequent in intraductal than in infiltrating cancers [25], which was also observed in the present series. Mammography showed a detection rate for carcinoma in situ of 78.9%, as compared with 65.8% by MR mammography; the combination of mammography and MR mammography lead to a detection rate of 86.4%. Fischer et al [26] reported that carcinoma in situ was identified by MR mammography in 25 out of 35 patients (72%); three ductal carcinomata in situ were detected by MR mammography exclusively. Sittek et al [27] reported that 14 out of 20 carcinomata in situ (70%) were correctly diagnosed by MR mammography on the basis of focal increase of signal intensity. Those authors concluded that carcinoma in situ is not reliably detected by MR mammography because of lack of a uniform pattern of enhancement. Esserman et al [20] reported a detection rate of 43% for ductal carcinoma in situ by MR mammography. Among 36 woman with carcinoma in situ, Gilles et al [28] demonstrated two cases without early contrast enhancement." + }, + { + "self_ref": "#/texts/19", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "section_header", + "prov": [], + "orig": "References", + "text": "References", + "level": 1 + }, + { + "self_ref": "#/texts/20", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "SG Orel; RH Troupin. Nonmammographic imaging of the breast: current issues and future prospects.. Semin Roentgenol (1993)", + "text": "SG Orel; RH Troupin. Nonmammographic imaging of the breast: current issues and future prospects.. Semin Roentgenol (1993)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/21", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "K Kerlikowske; D Grady; SM Rubin; C Sandrock; VL Ernster. Efficancy of screening mammography.. JAMA (1995)", + "text": "K Kerlikowske; D Grady; SM Rubin; C Sandrock; VL Ernster. Efficancy of screening mammography.. JAMA (1995)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/22", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "M M\u00fcller-Schimpfle; P Stoll; W Stern; S Kutz; F Dammann; CD Claussen. Do mammography, sonography and MR mammography have a diagnostic benefit compared with mammography and sonography?. AJR Am J Roentgenol (1997)", + "text": "M M\u00fcller-Schimpfle; P Stoll; W Stern; S Kutz; F Dammann; CD Claussen. Do mammography, sonography and MR mammography have a diagnostic benefit compared with mammography and sonography?. AJR Am J Roentgenol (1997)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/23", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "SH Heywang; D Hahn; H Schmidt; I Krischke; W Eiermann; R Bassermann; J Lissner. MR imaging of the breast using gadolinium-DTPA.. J Comput Assist Tomogr (1986)", + "text": "SH Heywang; D Hahn; H Schmidt; I Krischke; W Eiermann; R Bassermann; J Lissner. MR imaging of the breast using gadolinium-DTPA.. J Comput Assist Tomogr (1986)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/24", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "WA Kaiser; E Zeitler. MR mammography: first clinical results [in German].. R\u00f6ntgenpraxis (1985)", + "text": "WA Kaiser; E Zeitler. MR mammography: first clinical results [in German].. R\u00f6ntgenpraxis (1985)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/25", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "GM Kacl; P Liu; JF Debatin; E Garzoli; RF Caduff; GP Krestin. Detection of breast cancer with conventional mammography and contrast-enhanced MR imaging.. Eur Radiol (1998)", + "text": "GM Kacl; P Liu; JF Debatin; E Garzoli; RF Caduff; GP Krestin. Detection of breast cancer with conventional mammography and contrast-enhanced MR imaging.. Eur Radiol (1998)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/26", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "B Bone; Z Pentek; L Perbeck; B Veress. Diagnostic accuracy of mammography and contrast-enhanced MR imaging in 238 histologically verified breast lesions.. Acta Radiol (1997)", + "text": "B Bone; Z Pentek; L Perbeck; B Veress. Diagnostic accuracy of mammography and contrast-enhanced MR imaging in 238 histologically verified breast lesions.. Acta Radiol (1997)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/27", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "WA Kaiser. MR Mammographie.. Radiologe (1993)", + "text": "WA Kaiser. MR Mammographie.. Radiologe (1993)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/28", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "SH Heywang-K\u00f6brunner. Contrast-enhanced magnetic resonance imaging of the breast.. Invest Radiol (1994)", + "text": "SH Heywang-K\u00f6brunner. Contrast-enhanced magnetic resonance imaging of the breast.. Invest Radiol (1994)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/29", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "SE Harms; DP Flaming. MR imaging of the breast.. J Magn Reson Imaging (1993)", + "text": "SE Harms; DP Flaming. MR imaging of the breast.. J Magn Reson Imaging (1993)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/30", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "LD Buadu; J Murakami; S Murayama; N Hashiguchi; S Sakai; K Masuda; S Toyoshima. Breast lesions: correlation of contrast medium enhancement patterns on MR images with histopathologic findings and tumor angiogenesis.. Radiology (1996)", + "text": "LD Buadu; J Murakami; S Murayama; N Hashiguchi; S Sakai; K Masuda; S Toyoshima. Breast lesions: correlation of contrast medium enhancement patterns on MR images with histopathologic findings and tumor angiogenesis.. Radiology (1996)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/31", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "SG Orel; MD Schnall; VA LiVolsi; RH Troupin. Suspicious breast lesions: MR imaging with radiologic-pathologic correlation.. Radiology (1994)", + "text": "SG Orel; MD Schnall; VA LiVolsi; RH Troupin. Suspicious breast lesions: MR imaging with radiologic-pathologic correlation.. Radiology (1994)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/32", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "S Ciatto; M Rosselli del Turco; S Catarzi; D Morrone. The contribution of sonography to the differential diagnosis of breast cancer.. Neoplasma (1994)", + "text": "S Ciatto; M Rosselli del Turco; S Catarzi; D Morrone. The contribution of sonography to the differential diagnosis of breast cancer.. Neoplasma (1994)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/33", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "KK Oh; JH Cho; CS Yoon; WH Jung; HD Lee. Comparative studies of breast diseases by mammography, ultrasonography and contrast-enhanced dynamic magnetic resonance imaging.. Breast Ultrasound Update. Edited by Madjar H, Teubner J, Hackel\u00f6er BJ. Basel: Karger; (1994)", + "text": "KK Oh; JH Cho; CS Yoon; WH Jung; HD Lee. Comparative studies of breast diseases by mammography, ultrasonography and contrast-enhanced dynamic magnetic resonance imaging.. Breast Ultrasound Update. Edited by Madjar H, Teubner J, Hackel\u00f6er BJ. Basel: Karger; (1994)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/34", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "SH Heywang. MRI in breast disease.. Book of Abstracts: Society of Magnetic Resonance in Medicine 1. Berkeley, CA. (1993)", + "text": "SH Heywang. MRI in breast disease.. Book of Abstracts: Society of Magnetic Resonance in Medicine 1. Berkeley, CA. (1993)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/35", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "WA Kaiser. False-positive results in dynamic MR mammography. Causes, frequency and methods to avoid.. Magn Reson Imaging Clin North Am (1994)", + "text": "WA Kaiser. False-positive results in dynamic MR mammography. Causes, frequency and methods to avoid.. Magn Reson Imaging Clin North Am (1994)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/36", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "SH Heywang-Koebrunner; P Vieweg; A Heinig; C Kuchler. Contrast-enhanced MRI of the breast: accuracy, value, controversies, solutions.. Eur J Radiol (1997)", + "text": "SH Heywang-Koebrunner; P Vieweg; A Heinig; C Kuchler. Contrast-enhanced MRI of the breast: accuracy, value, controversies, solutions.. Eur J Radiol (1997)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/37", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "B Bone; P Aspelin; L Bronge; B Isberg; L Perbeck; B Veress. Sensitivity and specificity of MR mammography with histopathological correlation in 250 breasts.. Acta Radiol (1996)", + "text": "B Bone; P Aspelin; L Bronge; B Isberg; L Perbeck; B Veress. Sensitivity and specificity of MR mammography with histopathological correlation in 250 breasts.. Acta Radiol (1996)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/38", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "CB Stelling. MR imaging of the breast for cancer evaluation: current status and future directions.. Radiol Clin North Am (1995)", + "text": "CB Stelling. MR imaging of the breast for cancer evaluation: current status and future directions.. Radiol Clin North Am (1995)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/39", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "L Esserman; N Hylton; L Yassa; J Barclay; S Frankel; E Sickles. Utility of magnetic resonance imaging in the managment of breast cancer: evidence for improved preoperative staging.. J Clin Oncol (1999)", + "text": "L Esserman; N Hylton; L Yassa; J Barclay; S Frankel; E Sickles. Utility of magnetic resonance imaging in the managment of breast cancer: evidence for improved preoperative staging.. J Clin Oncol (1999)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/40", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "WA Kaiser; K Diedrich; M Reiser; D Krebs. Modern diagnostics of the breast [in German].. Geburtsh u Frauenheilk (1993)", + "text": "WA Kaiser; K Diedrich; M Reiser; D Krebs. Modern diagnostics of the breast [in German].. Geburtsh u Frauenheilk (1993)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/41", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "C Boetes; R Mus; R Holland; JO Barentsz; SP Strijk; T Wobbes; JH Hendriks; SH Ruys. Breast tumors: comparative accuracy of MR imaging relative to mammography and US for demonstration extent.. Radiology (1995)", + "text": "C Boetes; R Mus; R Holland; JO Barentsz; SP Strijk; T Wobbes; JH Hendriks; SH Ruys. Breast tumors: comparative accuracy of MR imaging relative to mammography and US for demonstration extent.. Radiology (1995)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/42", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "U Fischer; R Vossheinrich; L Kopka; D von Heyden; JW Oestmann; EH Grabbe. Preoperative MR mammography in patients with breast cancer: impact of therapy [abstract].. Radiology (1994)", + "text": "U Fischer; R Vossheinrich; L Kopka; D von Heyden; JW Oestmann; EH Grabbe. Preoperative MR mammography in patients with breast cancer: impact of therapy [abstract].. Radiology (1994)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/43", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "S Kramer; R Schultz-Wendtland; K Hagedorn; W Bautz; N Lang. Magnetic resonace imaging and its role in the diagnosis of multicentric breast cancer.. Anticancer Res (1998)", + "text": "S Kramer; R Schultz-Wendtland; K Hagedorn; W Bautz; N Lang. Magnetic resonace imaging and its role in the diagnosis of multicentric breast cancer.. Anticancer Res (1998)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/44", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "S Ciatto; M Rosselli del Turco; R Bonardi; L Cataliotta; V Distante; G Cardona; S Bianchi. Non-palpable lesions of the breast detected by mammography: review of 1182 consecutive histologically confirmed cases.. Eur J Cancer (1994)", + "text": "S Ciatto; M Rosselli del Turco; R Bonardi; L Cataliotta; V Distante; G Cardona; S Bianchi. Non-palpable lesions of the breast detected by mammography: review of 1182 consecutive histologically confirmed cases.. Eur J Cancer (1994)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/45", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "U Fischer; JP Westerhof; U Brinck; M Korabiowska; A Schauer; E Grabbe. Ductal carcinoma in situ in dynamic MR mammography at 1.5 T [in German].. Fortschr R\u00f6ntgenstr (1996)", + "text": "U Fischer; JP Westerhof; U Brinck; M Korabiowska; A Schauer; E Grabbe. Ductal carcinoma in situ in dynamic MR mammography at 1.5 T [in German].. Fortschr R\u00f6ntgenstr (1996)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/46", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "H Sittek; M Kessler; AF Heuck; T Bredl; C Perlet; I K\u00fcnzer; A Lebeau; M Untch; M Reiser. Morphology and contrast enhancement of ductal carcinoma in situ in dynamic 1.0 T MR mammography [in German].. Fortschr R\u00f6ntgenstr (1997)", + "text": "H Sittek; M Kessler; AF Heuck; T Bredl; C Perlet; I K\u00fcnzer; A Lebeau; M Untch; M Reiser. Morphology and contrast enhancement of ductal carcinoma in situ in dynamic 1.0 T MR mammography [in German].. Fortschr R\u00f6ntgenstr (1997)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/47", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "R Gilles; B Zafrani; JM Guinebretiere; M Meunier; O Lucidarme; AA Tardivon; F Rochard; D Vanel; S Neuenschwander; R Arriagada. Ductal carcinoma in situ: MR imaging-histopathologic correlation.. Radiology (1995)", + "text": "R Gilles; B Zafrani; JM Guinebretiere; M Meunier; O Lucidarme; AA Tardivon; F Rochard; D Vanel; S Neuenschwander; R Arriagada. Ductal carcinoma in situ: MR imaging-histopathologic correlation.. Radiology (1995)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/48", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "W Buchberger; M Kapferer; A St\u00f6ger; A Chemelli; W Judmaier; S Felber. Dignity evaluation of focal mamma lesions: a prospective comparison between mammography, sonography and dynamic MR mammography [in German; abstract].. Radiologe (1995)", + "text": "W Buchberger; M Kapferer; A St\u00f6ger; A Chemelli; W Judmaier; S Felber. Dignity evaluation of focal mamma lesions: a prospective comparison between mammography, sonography and dynamic MR mammography [in German; abstract].. Radiologe (1995)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/49", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "SH Heywang; A Wolf; E Pruss; T Hilbertz; W Eiermann; W Permanetter. MR imaging of the breast with Gd-DTPA: use and limitations.. Radiology (1989)", + "text": "SH Heywang; A Wolf; E Pruss; T Hilbertz; W Eiermann; W Permanetter. MR imaging of the breast with Gd-DTPA: use and limitations.. Radiology (1989)", + "enumerated": false, + "marker": "-" + } + ], + "pictures": [], + "tables": [], + "key_value_items": [], + "pages": {} +} \ No newline at end of file diff --git a/tests/data/groundtruth/docling_v2/pubmed-PMC13900.nxml.md b/tests/data/groundtruth/docling_v2/pubmed-PMC13900.nxml.md new file mode 100644 index 00000000..69678eb2 --- /dev/null +++ b/tests/data/groundtruth/docling_v2/pubmed-PMC13900.nxml.md @@ -0,0 +1,70 @@ +# Comparison of written reports of mammography, sonography and magnetic resonance mammography for preoperative evaluation of breast lesions, with special emphasis on magnetic resonance mammography + +Sabine Malur; Department of Gynecology, Friedrich-Schiller University, Jena, Germany.; Susanne Wurdinger; Institute for Diagnostic and Interventional Radiology, Friedrich-Schiller University, Jena, Germany.; Andreas Moritz; Department of Gynecology, Friedrich-Schiller University, Jena, Germany.; Wolfgang Michels; Department of Gynecology, Friedrich-Schiller University, Jena, Germany.; Achim Schneider; Department of Gynecology, Friedrich-Schiller University, Jena, Germany. + +Patients with abnormal breast findings ( n = 413) were examined by mammography, sonography and magnetic resonance (MR) mammography; 185 invasive cancers, 38 carcinoma in situ and 254 benign tumours were confirmed histologically. Sensitivity for mammography was 83.7%, for sonography it was 89.1% and for MR mammography it was 94.6% for invasive cancers. In 42 patients with multifocal invasive cancers, multifocality had been detected by mammography and sonography in 26.2%, and by MR mammography in 66.7%. In nine patients with multicentric cancers, detection rates were 55.5, 55.5 and 88.8%, respectively. Carcinoma in situ was diagnosed by mammography in 78.9% and by MR mammography in 68.4% of patients. Combination of all three diagnostic methods lead to the best results for detection of invasive cancer and multifocal disease. However, sensitivity of mammography and sonography combined was identical to that of MR mammography (ie 94.6%). + +## Introduction + +Mammography and sonography are the standard imaging techniques for detection and evaluation of breast disease [1]. Mammography is the most established screening modality [2]. Especially in young women and women with dense breasts, sonography appears superior to mammography, and differentiation between solid tumours and cysts is easier. Sensitivity and specificity of sonography or mammography are higher if sonography and mammography are combined [3]. + +It is generally accepted that MR mammography is the most sensitive technique for diagnosis of breast cancer, whereas the reported specificity of MR mammography varies [4,5,6,7,8,9,10,11,12]. In those studies, MR mammography was performed and evaluated by highly specialized radiologists in a research setting. It was therefore the purpose of the present prospective study to compare the validity of MR mammography with mammography and sonography in clinical routine practice. Findings for the three diagnostic methods documented on routine reports that were available to the surgeon preoperatively formed the basis of this comparison. Special emphasis was placed on the identification of multifocal and multicentric invasive disease. + +## Results + +All patients underwent breast surgery and all abnormal lesions identified by mammography, sonography or MR mammography were surgically removed. A total of 477 breast lesions were examined histologically, revealing the presence of 185 invasive cancers, 38 carcinomata in situ and 254 benign lesions (fibroadenoma, papilloma, intraductal or adenoid ductal hyperplasia, cystic mastopathia). There were four patients with malignant lesions in both breasts. In 42 patients multifocal tumours and in nine patients multicentric tumors were found on histological examination. Among the 185 invasive lesions, 178 were primary cancers, five were recurrences, one was metastatic and one was an angiosarcoma. The majority of invasive breast cancers were staged as pT1c (44%). Six per cent of tumors were detected in stage pT1a, 18% in stage pT1b, 25% in stage pT2, 3% in stage pT3 and 4% in stage pT4. The distribution of histopathological tumour types is shown in Table 1. The mean age of patients was 58 years (range 19-85 years). + +The sensitivity of MR mammography was significantly higher than those of mammography and sonography (P < 0.005 and P < 0.05; Table 2). The specificity of sonography was significantly higher than those of mammography and MR mammography (P < 0.05 and P < 0.005; Table 2). The negative predictive values for sonography and MR mammography were significantly higher than that of mammography (P < 0.05 and P < 0.005; Table 2). With regard to accuracy, no significant difference between the three modalities was found (Table 2). Combining of all three diagnostic methods yielded the best results for detection of cancer (P < 0.005; Table 3). The sensitivity and negative predictive value for the combination of mammography and MR mammography, and the combination of sonography and MR mammography were significantly higher than those for the combination of mammograpy and sonography (P < 0.05; Table 3). The highest result for accuracy was seen for a combination of all three methods (P < 0.05; Table 3). + +Mammography was false-negative in 30 out of 184 invasive cancers, sonography was false-negative in 20 out of 185 cancers, and 10 out of 185 invasive cancers were missed by MR mammography. The majority of false-negative findings was found in stage1 disease, ductal carcinoma and grade 3 tumors (Table 4). Of 10 invasive cancers missed by MR mammography, eight were found by mammography and sonography. By all three techniques, one invasive ductal carcinoma (pT1b) was misinterpreted as fibroadenoma. In another patient, a microinvasive lobular carcinoma of 5 mm diameter was not detected with mammography and MR mammography, whereas sonography detected a solid, benign tumour. MR mammography identified 10 invasive cancers (5.2%) that were missed by mammography and sonography, whereas one invasive cancer was found by mammography alone. By sonography alone, not a single case of invasive disease was detected when MR mammography or mammography were nonsuspected. + +## Discussion + +When the validity of individual diagnostic methods for detection of invasive breast cancer was analyzed, the sensitivity and specificity of mammography ranged from 79.9 to 89% and from 64 to 93.5%, respectively [6,7,13]; for sonography from 67.6 to 96% and from 93 to 97.7%, respectively [13,14]; and for MR mammography from 91 to 98.9 and from 20 to 97.4%, respectively [6,7,8,9,10,15,16,17]. + +The performance of mammography, sonography and MR mammography was compared in three large series (Table 5). The present results are similar with regard to sensitivity and specificity for the detection of malignant breast lesions, with MR mammography reaching the highest sensitivity of all imaging procedures. + +When combinations of all three technique were analyzed, mammography and sonography (standard method) had a sensitivity of 83% and a specificity of 92% for detection of malignant disease [3]. A combination of mammography, sonography and MR mammography (combined method) showed a sensitivity of 95% and a specificity of 64% [3]. For nonpalpable lesions, sensitivity increased from 73% by the standard method to 82% for the combined method. Specificity for the standard method (89%) was higher than that for the combined method (71%). For palpable lesions a sensitivity of 85% for the standard and 98% for the combined method was achieved, whereas specificity for the standard method was 100% compared with 45% for the combined methods [3]. The positive predictive value was 94% for the standard and 80% for the combined methods, and the negative predictive values were 78 and 89%, respectively [3]. In the present study, we also found the highest sensitivity, specificity, and positive and negative predictive values for the combination of all three methods. Combination of mammography and sonography was as sensitive as MR mammography alone (94.6% versus 94.6%). + +The majority of false-positive results for invasive cancer by MR mammography (80 out of 439) were caused by papillomas, intraductal hyperplasia grade 2 or 3, or fibroadenomas in the present series. These lesions have a good blood supply and may mimic invasive cancer [16,18]. + +Ten out of 185 (5.4%) malignant lesions were classified as false-negative by MR mammography. On histology, the majority of false-negative invasive cancers were lobular cancers (four out of 10). Bone et al [18] reported false-negative results in 11 out of 155 readings, with the majority being lobular cancers on histology. Lack of tumour-induced neovascularity may explain such findings. In particular, invasive lobular cancers infiltrate the normal tissue with columns of single cells, and receive adequate oxygenation without the requirement for increased vascularization [19]. Buadu et al [11] found that lobular and mucinous carcinomas had a low microvessel density. + +Multifocality of breast cancers can be recognized adequately by MR mammography [20,21]. Boetes et al [22] reported that all 61 multifocal cancers were detected by MR mammography, compared with 31% by mammography and 38% by sonography. Esserman et al [20] detected multifocality by MR mammography in 100% (10 out of 10) versus 44% (four out of nine) by mammography. Relevant changes in therapy due to additional multicentric and contralateral tumour findings by MR mammography occur in 18% of patients as compared with conventional imaging [23]. We found a detection rate of multifocality of 66.7% by MR mammography, as compared with 26.2% by mammography and sonography. However, in 16 patients multifocal invasive disease as diagnosed by MR mammography was shown to be unifocal by histology. + +Kramer et al [24] reported that MR mammography yielded the highest sensitivity for detection of multicentricity as compared with mammography and sonography (89, 66 and 79%, respectively) in 38 patients. These findings are comparable with the present results, in which eight out of nine multicentric cancers were diagnosed correctly. + +Carcinoma in situ is identified by mammography through the presence of suspicious microcalcifications. Suspicious microcalcifications are more frequent in intraductal than in infiltrating cancers [25], which was also observed in the present series. Mammography showed a detection rate for carcinoma in situ of 78.9%, as compared with 65.8% by MR mammography; the combination of mammography and MR mammography lead to a detection rate of 86.4%. Fischer et al [26] reported that carcinoma in situ was identified by MR mammography in 25 out of 35 patients (72%); three ductal carcinomata in situ were detected by MR mammography exclusively. Sittek et al [27] reported that 14 out of 20 carcinomata in situ (70%) were correctly diagnosed by MR mammography on the basis of focal increase of signal intensity. Those authors concluded that carcinoma in situ is not reliably detected by MR mammography because of lack of a uniform pattern of enhancement. Esserman et al [20] reported a detection rate of 43% for ductal carcinoma in situ by MR mammography. Among 36 woman with carcinoma in situ, Gilles et al [28] demonstrated two cases without early contrast enhancement. + +## References + +- SG Orel; RH Troupin. Nonmammographic imaging of the breast: current issues and future prospects.. Semin Roentgenol (1993) +- K Kerlikowske; D Grady; SM Rubin; C Sandrock; VL Ernster. Efficancy of screening mammography.. JAMA (1995) +- M Müller-Schimpfle; P Stoll; W Stern; S Kutz; F Dammann; CD Claussen. Do mammography, sonography and MR mammography have a diagnostic benefit compared with mammography and sonography?. AJR Am J Roentgenol (1997) +- SH Heywang; D Hahn; H Schmidt; I Krischke; W Eiermann; R Bassermann; J Lissner. MR imaging of the breast using gadolinium-DTPA.. J Comput Assist Tomogr (1986) +- WA Kaiser; E Zeitler. MR mammography: first clinical results [in German].. Röntgenpraxis (1985) +- GM Kacl; P Liu; JF Debatin; E Garzoli; RF Caduff; GP Krestin. Detection of breast cancer with conventional mammography and contrast-enhanced MR imaging.. Eur Radiol (1998) +- B Bone; Z Pentek; L Perbeck; B Veress. Diagnostic accuracy of mammography and contrast-enhanced MR imaging in 238 histologically verified breast lesions.. Acta Radiol (1997) +- WA Kaiser. MR Mammographie.. Radiologe (1993) +- SH Heywang-Köbrunner. Contrast-enhanced magnetic resonance imaging of the breast.. Invest Radiol (1994) +- SE Harms; DP Flaming. MR imaging of the breast.. J Magn Reson Imaging (1993) +- LD Buadu; J Murakami; S Murayama; N Hashiguchi; S Sakai; K Masuda; S Toyoshima. Breast lesions: correlation of contrast medium enhancement patterns on MR images with histopathologic findings and tumor angiogenesis.. Radiology (1996) +- SG Orel; MD Schnall; VA LiVolsi; RH Troupin. Suspicious breast lesions: MR imaging with radiologic-pathologic correlation.. Radiology (1994) +- S Ciatto; M Rosselli del Turco; S Catarzi; D Morrone. The contribution of sonography to the differential diagnosis of breast cancer.. Neoplasma (1994) +- KK Oh; JH Cho; CS Yoon; WH Jung; HD Lee. Comparative studies of breast diseases by mammography, ultrasonography and contrast-enhanced dynamic magnetic resonance imaging.. Breast Ultrasound Update. Edited by Madjar H, Teubner J, Hackelöer BJ. Basel: Karger; (1994) +- SH Heywang. MRI in breast disease.. Book of Abstracts: Society of Magnetic Resonance in Medicine 1. Berkeley, CA. (1993) +- WA Kaiser. False-positive results in dynamic MR mammography. Causes, frequency and methods to avoid.. Magn Reson Imaging Clin North Am (1994) +- SH Heywang-Koebrunner; P Vieweg; A Heinig; C Kuchler. Contrast-enhanced MRI of the breast: accuracy, value, controversies, solutions.. Eur J Radiol (1997) +- B Bone; P Aspelin; L Bronge; B Isberg; L Perbeck; B Veress. Sensitivity and specificity of MR mammography with histopathological correlation in 250 breasts.. Acta Radiol (1996) +- CB Stelling. MR imaging of the breast for cancer evaluation: current status and future directions.. Radiol Clin North Am (1995) +- L Esserman; N Hylton; L Yassa; J Barclay; S Frankel; E Sickles. Utility of magnetic resonance imaging in the managment of breast cancer: evidence for improved preoperative staging.. J Clin Oncol (1999) +- WA Kaiser; K Diedrich; M Reiser; D Krebs. Modern diagnostics of the breast [in German].. Geburtsh u Frauenheilk (1993) +- C Boetes; R Mus; R Holland; JO Barentsz; SP Strijk; T Wobbes; JH Hendriks; SH Ruys. Breast tumors: comparative accuracy of MR imaging relative to mammography and US for demonstration extent.. Radiology (1995) +- U Fischer; R Vossheinrich; L Kopka; D von Heyden; JW Oestmann; EH Grabbe. Preoperative MR mammography in patients with breast cancer: impact of therapy [abstract].. Radiology (1994) +- S Kramer; R Schultz-Wendtland; K Hagedorn; W Bautz; N Lang. Magnetic resonace imaging and its role in the diagnosis of multicentric breast cancer.. Anticancer Res (1998) +- S Ciatto; M Rosselli del Turco; R Bonardi; L Cataliotta; V Distante; G Cardona; S Bianchi. Non-palpable lesions of the breast detected by mammography: review of 1182 consecutive histologically confirmed cases.. Eur J Cancer (1994) +- U Fischer; JP Westerhof; U Brinck; M Korabiowska; A Schauer; E Grabbe. Ductal carcinoma in situ in dynamic MR mammography at 1.5 T [in German].. Fortschr Röntgenstr (1996) +- H Sittek; M Kessler; AF Heuck; T Bredl; C Perlet; I Künzer; A Lebeau; M Untch; M Reiser. Morphology and contrast enhancement of ductal carcinoma in situ in dynamic 1.0 T MR mammography [in German].. Fortschr Röntgenstr (1997) +- R Gilles; B Zafrani; JM Guinebretiere; M Meunier; O Lucidarme; AA Tardivon; F Rochard; D Vanel; S Neuenschwander; R Arriagada. Ductal carcinoma in situ: MR imaging-histopathologic correlation.. Radiology (1995) +- W Buchberger; M Kapferer; A Stöger; A Chemelli; W Judmaier; S Felber. Dignity evaluation of focal mamma lesions: a prospective comparison between mammography, sonography and dynamic MR mammography [in German; abstract].. Radiologe (1995) +- SH Heywang; A Wolf; E Pruss; T Hilbertz; W Eiermann; W Permanetter. MR imaging of the breast with Gd-DTPA: use and limitations.. Radiology (1989) \ No newline at end of file diff --git a/tests/data/groundtruth/docling_v2/research.0509.nxml.itxt b/tests/data/groundtruth/docling_v2/research.0509.nxml.itxt new file mode 100644 index 00000000..92de1f05 --- /dev/null +++ b/tests/data/groundtruth/docling_v2/research.0509.nxml.itxt @@ -0,0 +1,133 @@ +item-0 at level 0: unspecified: group _root_ + item-1 at level 1: section_header: Introduction + item-2 at level 2: text: Cancer therapeutics have made re ... eding risk resulting from its use [7]. + item-3 at level 2: text: Chemotherapy-induced cardiotoxic ... the onset and progression of AF [11]. + item-4 at level 2: text: The mitochondrial quality survei ... alance of mitochondrial dynamics [17]. + item-5 at level 2: text: A previous study found that PI3K ... pathogenesis of ibrutinib-mediated AF. + item-6 at level 1: section_header: Ibrutinib increases AF susceptib ... d promotes mitochondrial fragmentation + item-7 at level 2: text: To assess the proarrhythmic pote ... nce of atrial mitochondria (Fig. S1I). + item-8 at level 1: section_header: Ibrutinib induces AF by impairin ... ction and structure of atrial myocytes + item-9 at level 2: text: We investigated the molecular me ... mitochondrial structure and function. + item-10 at level 1: section_header: Ibrutinib disrupts mitochondrial ... own-regulating atrial AKAP1 expression + item-11 at level 2: text: As GO and KEGG enrichment analys ... ed expression of DRP1 (Fig. 2D and E). + item-12 at level 2: text: We computed the activity score o ... between ibrutinib and AKAP1 (Fig. 2J). + item-13 at level 1: section_header: AKAP1 down-regulation mediates DRP1 dephosphorylation in HL-1 myocytes + item-14 at level 2: text: We investigated the interaction ... ondrial fission marker (Fig. 3B to F). + item-15 at level 1: section_header: Ibrutinib-induced AKAP1 depletio ... olarization via DRP1 dephosphorylation + item-16 at level 2: text: Mitochondrial dynamic imbalance ... l morphology to normal (Fig. 4A to E). + item-17 at level 2: text: Western blot analysis showed tha ... AKAP1 overexpression (Fig. 4O and P). + item-18 at level 1: section_header: AKAP1 deficiency impairs mitocho ... tabolic reprogramming in HL-1 myocytes + item-19 at level 2: text: Mitochondrial bioenergetics and ... rial fission inhibitor (Fig. 5A to F). + item-20 at level 2: text: Impaired mitochondrial respirati ... -treated with Mdivi-1 (Fig. 5L and M). + item-21 at level 1: section_header: AKAP1 down-regulation is involve ... is, oxidative stress, and inflammation + item-22 at level 2: text: Insufficient energy production c ... r Mdivi-1 intervention (Fig. 6A to C). + item-23 at level 2: text: We next elucidated the regulator ... Mdivi-1 intervention (Fig. 6F and G). + item-24 at level 2: text: Mitochondrial dysfunction not on ... i-1 cotreatment groups (Fig. 6I to K). + item-25 at level 1: section_header: AKAP1 overexpression prevents ib ... S and restoring mitochondrial function + item-26 at level 2: text: To verify whether AKAP1 up-regul ... y AKAP1 overexpression (Fig. 7F to I). + item-27 at level 2: text: MitoSOX staining revealed that m ... inflammatory response (Fig. 7L to P). + item-28 at level 1: section_header: Discussion + item-29 at level 2: text: Mitochondrial damage serves as a ... t for exploring preventive approaches. + item-30 at level 2: text: AKAP1, a scaffolding protein, an ... sturbances through off-target effects. + item-31 at level 2: text: Recent studies have investigated ... pathogenesis of ibrutinib-induced AF. + item-32 at level 2: text: Our study utilized high-throughp ... xorubicin-induced cardiotoxicity [27]. + item-33 at level 2: text: Excessive fission depletes ATPs ... forms a pathological substrate for AF. + item-34 at level 2: text: In this study, we discovered tha ... oxicity of tyrosine kinase inhibitors. + item-35 at level 2: text: Increasing evidence suggests tha ... ators for AKAP1 are not yet available. + item-36 at level 1: section_header: Animal model + item-37 at level 2: text: C57BL/6J mice (8 to 10 weeks, we ... d libitum throughout the study period. + item-38 at level 1: section_header: Cell culture and lentivirus transfection + item-39 at level 2: text: For stable AKAP1 overexpression, ... ailed in the related prior study [53]. + item-40 at level 1: section_header: In vivo electrophysiology study + item-41 at level 2: text: Electrophysiological studies on ... pisodes of each animal was documented. + item-42 at level 1: section_header: Echocardiography + item-43 at level 2: text: The Vevo 2100 Imaging System (FU ... ted the echocardiographic examination. + item-44 at level 1: section_header: Transmission electron microscopy + item-45 at level 2: text: Retrograde aortic perfusion with ... s described in our previous study [21] + item-46 at level 1: section_header: Single-cell RNA-seq analysis + item-47 at level 2: text: The single-cell transcriptome da ... pathway activities of specific cells. + item-48 at level 1: section_header: Confocal imaging + item-49 at level 2: text: Fluorescent images were obtained ... ntibodies used for immunofluorescence. + item-50 at level 2: text: MitoTracker Red (0.5 μM, 30 min) ... he MitoSOX Red (5 μM, 20 min) Reagent. + item-51 at level 1: section_header: Isolation of primary atrial myocytes and atrial mitochondria + item-52 at level 2: text: Atrial myocytes were isolated us ... anual (Thermo Fisher Scientific, USA). + item-53 at level 1: section_header: Western blot analysis + item-54 at level 2: text: Atrial tissues or cultured cell ... the antibodies documented in Table S1. + item-55 at level 1: section_header: mtDNA copy number and quantitative PCR + item-56 at level 2: text: The mitochondrial DNA copy numbe ... analysis of the respective sequences. + item-57 at level 1: section_header: Figures + item-59 at level 1: picture + item-59 at level 2: caption: Fig. 1. Ibrutinib induces atrial fibrillation (AF) by impairing mitochondrial function and structures of atrial myocytes. (A and B) Expression heatmap and volcano map of differentially expressed atrial proteins, illustrating that 170 proteins were up-regulated and 208 were down-regulated in ibrutinib-treated mice compared with control mice. N = 3 independent mice per group. (C to H) Gene Ontology and KEGG enrichment analysis of the 378 differentially expressed proteins in atrial tissue. (I to L) GSEA of differentially expressed proteins following ibrutinib treatment. + item-61 at level 1: picture + item-61 at level 2: caption: Fig. 2. Ibrutinib disrupts mitochondrial homeostasis by down-regulating atrial AKAP1 expression. (A) Volcano plot labeled with the top mitochondria-related differentially expressed proteins. (B) Expression of marker genes for cell-type annotation is indicated on the DotPlot. (C) Uniform manifold approximation and projection representation of all single cells color-coded for their assigned major cell type. (D and E) Featureplots showing the expression patterns of AKAP1 and DRP1 in atrial tissues from AF and control groups. (F to H) Analysis of the correlation between AKAP1 expression and activity score of mitochondria-related pathways. (I) Atrial pan-subpopulation correlation analysis of AKAP1 expression and OXPHOS pathway activity. (J) Molecular docking analysis of the interaction between ibrutinib and AKAP1. + item-63 at level 1: picture + item-63 at level 2: caption: Fig. 3. AKAP1 binding mediates DRP1 phosphorylation in atrial myocytes. (A) Immunofluorescence imaging of AKAP1 and DRP1 in ibrutinib-treated atrial myocytes. (B to F) Proteins were isolated from atrial myocytes. Western blotting was used to assess AKAP1, DRP1, FIS1, and phosphorylated DRP1 expression levels. ***P < 0.001. ns, not significant. + item-65 at level 1: picture + item-65 at level 2: caption: Fig. 4. Ibrutinib-induced AKAP1 depletion promotes mitochondrial fission and membrane depolarization via DRP1 dephosphorylation. (A to E) MitoTracker staining for labeling mitochondria in atrial myocytes in vitro. Average mitochondrial length, ratio of fragmented/tubular mitochondria, and mitochondrial morphological parameters were determined. (F to N) Western blot analysis of mitochondrial DRP1 (mito-DRP1), total DRP1 (t-DRP1), phosphorylated DRP1, FIS1, MFN1, and OPA1 in HL-1 cells. VDAC1 was used as a loading control for mitochondrial proteins. (O) Red-to-green ratio of JC-1 fluorescence intensity. (P) Atrial myocytes loaded with JC-1 to analyze changes in mitochondrial membrane potential. N = 8 independent cell samples per group. **P < 0.01, ***P < 0.001. + item-67 at level 1: picture + item-67 at level 2: caption: Fig. 5. AKAP1 deficiency impairs mitochondrial respiratory function and promotes metabolic reprogramming in atrial myocytes. (A to F) Analysis of HL-1 mitochondrial bioenergetics using the Seahorse XFe96 Analyzer. OCR measurements were taken continuously from baseline and after the sequential addition of 2 mM oligomycin, 1 mM FCCP, and 0.5 mM R/A to measure basal respiration, maximal respiration, spare respiratory capacity, proton leak, and ATP-production levels. (G to J) Total and individual rates of ATP production as mediated by glycolysis or mitochondrial metabolism in HL-1 cells transduced with control and LV-Akap1. (K) Ratio between ATP produced by OXPHOS and that by glycolysis in HL-1 cells transduced with control and LV-Akap1. (L and M) ELISA analysis of mitochondrial respiration complex I/III activities. N = 8 independent cell samples per group. *P < 0.05, **P < 0.01, ***P < 0.001. + item-69 at level 1: picture + item-69 at level 2: caption: Fig. 6. AKAP1 down-regulation in impaired mitochondrial biogenesis, oxidative stress, and inflammation. (A to C) qPCR analysis of mitochondrial biogenesis parameters (mtDNA copy number, PGC-1α, and NRF1). (D and E) ELISA analysis of redox balance biomarkers, including MDA and GSH contents. (F and G) MitoSOX staining of mitochondrial ROS in HL-1 cells. (H) Visual GSEA of inflammation response pathway in ibrutinib-treated myocytes. (I to K) ELISA of atrial inflammatory biomarkers, including TNF-α, IL-6, and IL-18. N = 8 independent cell samples per group. *P < 0.05, **P < 0.01, ***P < 0.001. + item-71 at level 1: picture + item-71 at level 2: caption: Fig. 7. AKAP1 overexpression prevents ibrutinib-induced AF by improving MQS and restoring mitochondrial function. (A) Simultaneous recordings of surface ECG following intraesophageal burst pacing. (B) Quantification of AF time. (C) AF inducibility in control and ibrutinib-treated mice with and without AAV-Akap1 transfection. (D and E) Myocardial fibrosis was assessed in each group through Sirius Red staining. The proportion of fibrotic tissue to myocardial tissue was quantified for each group. (F to I) Western blot analysis of total DRP1 (t-DRP1), phosphorylated DRP1, MFN1, and NRF1 in atrial tissues. (J and K) Images and quantification of isolated atrial myocytes loaded with the mitochondrial ROS indicator MitoSox Red. (L to P) ELISA of MQS/redox/inflammation biomarkers, including complex I/III, MDA, GSH, and IL-18. N = 8 mice per group. *P < 0.05, **P < 0.01, ***P < 0.001. + item-73 at level 1: picture + item-73 at level 2: caption: Fig. 8. This schematic illustrates the proposed mechanism by which ibrutinib promotes atrial fibrillation (AF). Ibrutinib treatment leads to the downregulation of A-kinase anchoring protein 1 (AKAP1), triggering mitochondrial quality surveillance (MQS) impairment. This results in enhanced translocation of dynamin-related protein 1 (DRP1) to the mitochondria, driving mitochondrial fission. Concurrently, metabolic reprogramming is characterized by increased glycolysis and decreased oxidative phosphorylation (OXPHOS), alongside reduced mitochondrial biogenesis. These mitochondrial dysfunctions elevate oxidative stress and inflammatory responses, contributing to atrial metabolic and structural remodeling, ultimately leading to ibrutinib-induced AF. + item-74 at level 1: section_header: References + item-75 at level 1: list: group list + item-76 at level 2: list_item: AR Lyon; T López-Fernández; LS C ... y Society (IC-OS).. Eur Heart J (2022) + item-77 at level 2: list_item: JJ Moslehi. Cardio-oncology: A n ... lar investigation.. Circulation (2024) + item-78 at level 2: list_item: B Zhou; Z Wang; Q Dou; W Li; Y L ... cohort study.. J Transl Int Med (2023) + item-79 at level 2: list_item: JA Burger; A Tedeschi; PM Barr; ... hocytic leukemia.. N Engl J Med (2015) + item-80 at level 2: list_item: S O’Brien; RR Furman; S Coutre; ... ia: A 5-year experience.. Blood (2018) + item-81 at level 2: list_item: WJ Archibald; KG Rabe; BF Kabat; ... clinical outcomes.. Ann Hematol (2021) + item-82 at level 2: list_item: F Caron; DP Leong; C Hillis; G F ... w and meta-analysis.. Blood Adv (2017) + item-83 at level 2: list_item: S Gorini; A De Angelis; L Berrin ... nib.. Oxidative Med Cell Longev (2018) + item-84 at level 2: list_item: J Wu; N Liu; J Chen; Q Tao; Q Li ... cer: Friend or enemy.. Research (2024) + item-85 at level 2: list_item: JC Bikomeye; JD Terwoord; JH San ... Am J Physiol Heart Circ Physiol (2022) + item-86 at level 2: list_item: FE Mason; JRD Pronto; K Alhussin ... ibrillation.. Basic Res Cardiol (2020) + item-87 at level 2: list_item: Y Yang; MB Muisha; J Zhang; Y Su ... e remodeling.. J Transl Int Med (2022) + item-88 at level 2: list_item: Y Li; R Lin; X Peng; X Wang; X L ... ide.. Oxidative Med Cell Longev (2022) + item-89 at level 2: list_item: S Helling; S Vogt; A Rhiel; R Ra ... c oxidase.. Mol Cell Proteomics (2008) + item-90 at level 2: list_item: B Ludwig; E Bender; S Arnold; M ... e phosphorylation.. Chembiochem (2001) + item-91 at level 2: list_item: S Papa; D De Rasmo; S Scacco; A ... function.. Biochim Biophys Acta (2008) + item-92 at level 2: list_item: JT Cribbs; S Strack. Reversible ... ssion and cell death.. EMBO Rep (2007) + item-93 at level 2: list_item: JR McMullen; EJH Boey; JYY Ooi; ... diac PI3K-Akt signaling.. Blood (2014) + item-94 at level 2: list_item: L Xiao; J-E Salem; S Clauss; A H ... inhibition of CSK.. Circulation (2020) + item-95 at level 2: list_item: L Jiang; L Li; Y Ruan; S Zuo; X ... on in the atrium.. Heart Rhythm (2019) + item-96 at level 2: list_item: X Yang; N An; C Zhong; M Guan; Y ... trial fibrillation.. Redox Biol (2020) + item-97 at level 2: list_item: W Marin. A-kinase anchoring prot ... r diseases.. J Mol Cell Cardiol (2020) + item-98 at level 2: list_item: Y Liu; RA Merrill; S Strack. A-k ... n in health and disease.. Cells (2020) + item-99 at level 2: list_item: G Edwards; GA Perkins; K-Y Kim; ... ganglion cells.. Cell Death Dis (2020) + item-100 at level 2: list_item: B Qi; L He; Y Zhao; L Zhang; Y H ... on and apoptosis.. Diabetologia (2020) + item-101 at level 2: list_item: KH Flippo; A Gnanasekaran; GA Pe ... ochondrial fission.. J Neurosci (2018) + item-102 at level 2: list_item: MP Catanzaro; A Weiner; A Kamina ... fission and mitophagy.. FASEB J (2019) + item-103 at level 2: list_item: L Chen; Q Tian; Z Shi; Y Qiu; Q ... chondrial function.. Front Nutr (2021) + item-104 at level 2: list_item: H Zhang; J Liu; M Cui; H Chai; L ... adolescents.. J Transl Int Med (2023) + item-105 at level 2: list_item: L Dou; E Lu; D Tian; F Li; L Den ... e metabolism.. J Transl Int Med (2023) + item-106 at level 2: list_item: Y Peng; Y Wang; C Zhou; W Mei; C ... we making headway?. Front Oncol (2022) + item-107 at level 2: list_item: VL Damaraju; M Kuzma; CE Cass; C ... ed myotubes.. Biochem Pharmacol (2018) + item-108 at level 2: list_item: Y Xu; W Wan; H Zeng; Z Xiang; M ... d challenges.. J Transl Int Med (2023) + item-109 at level 2: list_item: W Yu; X Qin; Y Zhang; P Qiu; L W ... manner.. Cardiovasc Diagn Ther (2020) + item-110 at level 2: list_item: W Fakih; A Mroueh; D-S Gong; S K ... idases/SGLT1/2.. Cardiovasc Res (2024) + item-111 at level 2: list_item: Y Li; D Huang; L Jia; F Shanggua ... ulate heart function.. Research (2023) + item-112 at level 2: list_item: Y Li; X Peng; R Lin; X Wang; X L ... ization.. Cardiovasc Innov Appl (2023) + item-113 at level 2: list_item: TF Chu; MA Rupnick; R Kerkela; S ... se inhibitor sunitinib.. Lancet (2007) + item-114 at level 2: list_item: E Tolstik; MB Gongalsky; J Dierk ... cardiac cells.. Front Pharmacol (2023) + item-115 at level 2: list_item: Y Will; JA Dykens; S Nadanaciva; ... ia and H9c2 cells.. Toxicol Sci (2008) + item-116 at level 2: list_item: Y Li; J Yan; Q Zhao; Y Zhang; Y ... 11 expression.. Front Pharmacol (2022) + item-117 at level 2: list_item: Y Yu; Y Yan; F Niu; Y Wang; X Ch ... ar diseases.. Cell Death Discov (2023) + item-118 at level 2: list_item: Y-T Chen; AN Masbuchin; Y-H Fang ... pathways.. Biomed Pharmacother (2023) + item-119 at level 2: list_item: J Bouitbir; MV Panajatovic; S Kr ... H9c2 cell line.. Int J Mol Sci (2022) + item-120 at level 2: list_item: X Zhang; Z Zhang; Y Zhao; N Jian ... etic rabbits.. J Am Heart Assoc (2017) + item-121 at level 2: list_item: W Peng; D Rao; M Zhang; Y Shi; J ... c2 cells.. Arch Biochem Biophys (2020) + item-122 at level 2: list_item: V Okunrintemi; BM Mishriky; JR P ... me trials.. Diabetes Obes Metab (2021) + item-123 at level 2: list_item: H Zhou; S Wang; P Zhu; S Hu; Y C ... ochondrial fission.. Redox Biol (2018) + item-124 at level 2: list_item: V Avula; G Sharma; MN Kosiborod; ... c dysfunction.. JACC Heart Fail (2024) + item-125 at level 2: list_item: M Chen. Empagliflozin attenuates ... ndrial biogenesis.. Toxicol Res (2023) + item-126 at level 2: list_item: R Lin; X Peng; Y Li; X Wang; X L ... ted myocytes.. Mol Cell Biochem (2023) + item-127 at level 2: list_item: J Feng; Z Chen; Y Ma; X Yang; Z ... kidney disease.. Int J Biol Sci (2022) + item-128 at level 2: list_item: S Shafaattalab; E Lin; E Christi ... cardiomyocytes.. Stem Cell Rep (2019) + item-129 at level 2: list_item: H Lahm; M Jia; M Dreßen; F Wirth ... ropean patients.. J Clin Invest (2021) + item-130 at level 2: list_item: J Yang; H Tan; M Sun; R Chen; Z ... fibrillation.. Clin Transl Med (2023) + item-131 at level 2: list_item: A Chaudhry; R Shi; DS Luciani. A ... . Am J Physiol Endocrinol Metab (2020) + item-132 at level 2: list_item: K Wu; L-L Li; Y-K Li; X-D Peng; ... tes from adult mice.. J Vis Exp (2021) \ No newline at end of file diff --git a/tests/data/groundtruth/docling_v2/research.0509.nxml.json b/tests/data/groundtruth/docling_v2/research.0509.nxml.json new file mode 100644 index 00000000..78c5a410 --- /dev/null +++ b/tests/data/groundtruth/docling_v2/research.0509.nxml.json @@ -0,0 +1,2083 @@ +{ + "schema_name": "DoclingDocument", + "version": "1.0.0", + "name": "research.0509", + "origin": { + "mimetype": "text/xml", + "binary_hash": 814958787307922460, + "filename": "research.0509.nxml" + }, + "furniture": { + "self_ref": "#/furniture", + "children": [], + "name": "_root_", + "label": "unspecified" + }, + "body": { + "self_ref": "#/body", + "children": [ + { + "$ref": "#/texts/0" + }, + { + "$ref": "#/texts/5" + }, + { + "$ref": "#/texts/7" + }, + { + "$ref": "#/texts/9" + }, + { + "$ref": "#/texts/12" + }, + { + "$ref": "#/texts/14" + }, + { + "$ref": "#/texts/17" + }, + { + "$ref": "#/texts/20" + }, + { + "$ref": "#/texts/24" + }, + { + "$ref": "#/texts/27" + }, + { + "$ref": "#/texts/35" + }, + { + "$ref": "#/texts/37" + }, + { + "$ref": "#/texts/39" + }, + { + "$ref": "#/texts/41" + }, + { + "$ref": "#/texts/43" + }, + { + "$ref": "#/texts/45" + }, + { + "$ref": "#/texts/47" + }, + { + "$ref": "#/texts/50" + }, + { + "$ref": "#/texts/52" + }, + { + "$ref": "#/texts/54" + }, + { + "$ref": "#/texts/56" + }, + { + "$ref": "#/texts/57" + }, + { + "$ref": "#/pictures/0" + }, + { + "$ref": "#/texts/58" + }, + { + "$ref": "#/pictures/1" + }, + { + "$ref": "#/texts/59" + }, + { + "$ref": "#/pictures/2" + }, + { + "$ref": "#/texts/60" + }, + { + "$ref": "#/pictures/3" + }, + { + "$ref": "#/texts/61" + }, + { + "$ref": "#/pictures/4" + }, + { + "$ref": "#/texts/62" + }, + { + "$ref": "#/pictures/5" + }, + { + "$ref": "#/texts/63" + }, + { + "$ref": "#/pictures/6" + }, + { + "$ref": "#/texts/64" + }, + { + "$ref": "#/pictures/7" + }, + { + "$ref": "#/texts/65" + }, + { + "$ref": "#/groups/0" + } + ], + "name": "_root_", + "label": "unspecified" + }, + "groups": [ + { + "self_ref": "#/groups/0", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/66" + }, + { + "$ref": "#/texts/67" + }, + { + "$ref": "#/texts/68" + }, + { + "$ref": "#/texts/69" + }, + { + "$ref": "#/texts/70" + }, + { + "$ref": "#/texts/71" + }, + { + "$ref": "#/texts/72" + }, + { + "$ref": "#/texts/73" + }, + { + "$ref": "#/texts/74" + }, + { + "$ref": "#/texts/75" + }, + { + "$ref": "#/texts/76" + }, + { + "$ref": "#/texts/77" + }, + { + "$ref": "#/texts/78" + }, + { + "$ref": "#/texts/79" + }, + { + "$ref": "#/texts/80" + }, + { + "$ref": "#/texts/81" + }, + { + "$ref": "#/texts/82" + }, + { + "$ref": "#/texts/83" + }, + { + "$ref": "#/texts/84" + }, + { + "$ref": "#/texts/85" + }, + { + "$ref": "#/texts/86" + }, + { + "$ref": "#/texts/87" + }, + { + "$ref": "#/texts/88" + }, + { + "$ref": "#/texts/89" + }, + { + "$ref": "#/texts/90" + }, + { + "$ref": "#/texts/91" + }, + { + "$ref": "#/texts/92" + }, + { + "$ref": "#/texts/93" + }, + { + "$ref": "#/texts/94" + }, + { + "$ref": "#/texts/95" + }, + { + "$ref": "#/texts/96" + }, + { + "$ref": "#/texts/97" + }, + { + "$ref": "#/texts/98" + }, + { + "$ref": "#/texts/99" + }, + { + "$ref": "#/texts/100" + }, + { + "$ref": "#/texts/101" + }, + { + "$ref": "#/texts/102" + }, + { + "$ref": "#/texts/103" + }, + { + "$ref": "#/texts/104" + }, + { + "$ref": "#/texts/105" + }, + { + "$ref": "#/texts/106" + }, + { + "$ref": "#/texts/107" + }, + { + "$ref": "#/texts/108" + }, + { + "$ref": "#/texts/109" + }, + { + "$ref": "#/texts/110" + }, + { + "$ref": "#/texts/111" + }, + { + "$ref": "#/texts/112" + }, + { + "$ref": "#/texts/113" + }, + { + "$ref": "#/texts/114" + }, + { + "$ref": "#/texts/115" + }, + { + "$ref": "#/texts/116" + }, + { + "$ref": "#/texts/117" + }, + { + "$ref": "#/texts/118" + }, + { + "$ref": "#/texts/119" + }, + { + "$ref": "#/texts/120" + }, + { + "$ref": "#/texts/121" + }, + { + "$ref": "#/texts/122" + } + ], + "name": "list", + "label": "list" + } + ], + "texts": [ + { + "self_ref": "#/texts/0", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/1" + }, + { + "$ref": "#/texts/2" + }, + { + "$ref": "#/texts/3" + }, + { + "$ref": "#/texts/4" + } + ], + "label": "section_header", + "prov": [], + "orig": "Introduction", + "text": "Introduction", + "level": 1 + }, + { + "self_ref": "#/texts/1", + "parent": { + "$ref": "#/texts/0" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "Cancer therapeutics have made remarkable progress over time, significantly prolonging the survival period of cancer patients. However, the accompanying increased risk of cardiovascular diseases has emerged as a crucial factor affecting the prognosis of cancer survivors [1\u20133]. Anticancer drugs have exhibited considerable cardiotoxicity, which greatly limits their clinical applications. Consequently, cardio-oncology has become a field of common concern for both oncologists and cardiologists. Ibrutinib, an efficacious Bruton\u2019s tyrosine kinase (BTK) inhibitor endorsed by the US Food and Drug Administration for treating chronic lymphocytic leukemia, mantle cell lymphoma, and so on [4,5], is linked to elevated risks of atrial fibrillation (AF) and hemorrhagic complications. A 10-fold increase in the incidence of AF has been reported in the ibrutinib arm [4]. Long-term studies on the use of ibrutinib have revealed AF rates of up to 16% with an average observation period of 28 months [6]. Managing AF associated with ibrutinib use is complex, primarily due to the necessity of balancing the benefits of anticoagulation that it affords against the bleeding risk resulting from its use [7].", + "text": "Cancer therapeutics have made remarkable progress over time, significantly prolonging the survival period of cancer patients. However, the accompanying increased risk of cardiovascular diseases has emerged as a crucial factor affecting the prognosis of cancer survivors [1\u20133]. Anticancer drugs have exhibited considerable cardiotoxicity, which greatly limits their clinical applications. Consequently, cardio-oncology has become a field of common concern for both oncologists and cardiologists. Ibrutinib, an efficacious Bruton\u2019s tyrosine kinase (BTK) inhibitor endorsed by the US Food and Drug Administration for treating chronic lymphocytic leukemia, mantle cell lymphoma, and so on [4,5], is linked to elevated risks of atrial fibrillation (AF) and hemorrhagic complications. A 10-fold increase in the incidence of AF has been reported in the ibrutinib arm [4]. Long-term studies on the use of ibrutinib have revealed AF rates of up to 16% with an average observation period of 28 months [6]. Managing AF associated with ibrutinib use is complex, primarily due to the necessity of balancing the benefits of anticoagulation that it affords against the bleeding risk resulting from its use [7]." + }, + { + "self_ref": "#/texts/2", + "parent": { + "$ref": "#/texts/0" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "Chemotherapy-induced cardiotoxicity involves various mechanisms. Mitochondrial damage is a critical event in cardiotoxicity induced by chemotherapy drugs, such as doxorubicin and sunitinib [8,9]. This damage manifests as imbalanced mitochondrial dynamics, suppressed respiratory function, and so on [10]. Because AF is associated with rapid atrial activation rates that require a high energy supply from mitochondria, metabolic remodeling centered on mitochondrial dysfunction is identified as the chief factor driving the onset and progression of AF [11].", + "text": "Chemotherapy-induced cardiotoxicity involves various mechanisms. Mitochondrial damage is a critical event in cardiotoxicity induced by chemotherapy drugs, such as doxorubicin and sunitinib [8,9]. This damage manifests as imbalanced mitochondrial dynamics, suppressed respiratory function, and so on [10]. Because AF is associated with rapid atrial activation rates that require a high energy supply from mitochondria, metabolic remodeling centered on mitochondrial dysfunction is identified as the chief factor driving the onset and progression of AF [11]." + }, + { + "self_ref": "#/texts/3", + "parent": { + "$ref": "#/texts/0" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "The mitochondrial quality surveillance (MQS) system is closely linked to maintaining mitochondrial homeostasis and restoring any damage to the organelle. The optimal mitochondrial physiological function can be maintained by repairing or removing the damaged mitochondria using regulating MQS factors, such as mitochondrial fission/fusion balance, bioenergetics, and biogenesis. Although studies have explored the role of an impaired MQS system in both cardiovascular diseases and chemotherapy-induced cardiotoxicity like doxorubicin [11\u201313], the role of an altered MQS system and its upstream regulatory mechanisms in ibrutinib-induced AF have remained largely unexplored. A-kinase anchoring protein 1 (AKAP1) is regarded as a crucial regulator of MQS including mitochondrial metabolism and dynamics. By anchoring the related proteins on the mitochondrial outer membrane (MOM), AKAP1 integrates multiple key pathways to influence mitochondrial morphology, function, and cellular fate. On one hand, AKAP1 promotes mitochondrial respiration and increases the adenosine triphosphate (ATP) synthesis rate by facilitating the phosphorylation of essential mitochondrial proteins like NDUFS4 and cytochrome c oxidase [14\u201316]. Furthermore, AKAP1 modulates the phosphorylation and dephosphorylation-mediated activation of dynamin-related protein 1 (DRP1), a key protein in mitochondrial fission, through interactions with various binding partners on the MOM, thereby exerting regulatory effects on the balance of mitochondrial dynamics [17].", + "text": "The mitochondrial quality surveillance (MQS) system is closely linked to maintaining mitochondrial homeostasis and restoring any damage to the organelle. The optimal mitochondrial physiological function can be maintained by repairing or removing the damaged mitochondria using regulating MQS factors, such as mitochondrial fission/fusion balance, bioenergetics, and biogenesis. Although studies have explored the role of an impaired MQS system in both cardiovascular diseases and chemotherapy-induced cardiotoxicity like doxorubicin [11\u201313], the role of an altered MQS system and its upstream regulatory mechanisms in ibrutinib-induced AF have remained largely unexplored. A-kinase anchoring protein 1 (AKAP1) is regarded as a crucial regulator of MQS including mitochondrial metabolism and dynamics. By anchoring the related proteins on the mitochondrial outer membrane (MOM), AKAP1 integrates multiple key pathways to influence mitochondrial morphology, function, and cellular fate. On one hand, AKAP1 promotes mitochondrial respiration and increases the adenosine triphosphate (ATP) synthesis rate by facilitating the phosphorylation of essential mitochondrial proteins like NDUFS4 and cytochrome c oxidase [14\u201316]. Furthermore, AKAP1 modulates the phosphorylation and dephosphorylation-mediated activation of dynamin-related protein 1 (DRP1), a key protein in mitochondrial fission, through interactions with various binding partners on the MOM, thereby exerting regulatory effects on the balance of mitochondrial dynamics [17]." + }, + { + "self_ref": "#/texts/4", + "parent": { + "$ref": "#/texts/0" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "A previous study found that PI3K-Akt pathway inhibition could cause ibrutinib-induced AF [18]. Additionally, Xiao et\u00a0al. [19] proposed that the C-terminal Src kinase may be a regulatory target in ibrutinib-induced AF. We have previously identified the pathological phenotypes of calcium dysregulation and structural remodeling in the atrial tissue of mouse model with ibrutinib-induced AF [20]. We further reported excessive production of reactive oxygen species (ROS) and the resulting oxidative stress in atrial myocytes as a potential mechanism for ibrutinib-induced AF [21]. Damaged mitochondria markedly contribute to the generation of ROS, and the disruption of the MQS system is a common toxicological mechanism underlying the cardiotoxicity of anticancer drugs. We herein explore alterations in the atrial MQS system and the related regulatory targets in the pathogenesis of ibrutinib-mediated AF.", + "text": "A previous study found that PI3K-Akt pathway inhibition could cause ibrutinib-induced AF [18]. Additionally, Xiao et\u00a0al. [19] proposed that the C-terminal Src kinase may be a regulatory target in ibrutinib-induced AF. We have previously identified the pathological phenotypes of calcium dysregulation and structural remodeling in the atrial tissue of mouse model with ibrutinib-induced AF [20]. We further reported excessive production of reactive oxygen species (ROS) and the resulting oxidative stress in atrial myocytes as a potential mechanism for ibrutinib-induced AF [21]. Damaged mitochondria markedly contribute to the generation of ROS, and the disruption of the MQS system is a common toxicological mechanism underlying the cardiotoxicity of anticancer drugs. We herein explore alterations in the atrial MQS system and the related regulatory targets in the pathogenesis of ibrutinib-mediated AF." + }, + { + "self_ref": "#/texts/5", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/6" + } + ], + "label": "section_header", + "prov": [], + "orig": "Ibrutinib increases AF susceptibility and promotes mitochondrial fragmentation", + "text": "Ibrutinib increases AF susceptibility and promotes mitochondrial fragmentation", + "level": 1 + }, + { + "self_ref": "#/texts/6", + "parent": { + "$ref": "#/texts/5" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "To assess the proarrhythmic potential of ibrutinib, we conducted intraesophageal burst pacing and recorded electrocardiograms (ECGs) in both ibrutinib-treated and control groups. The former exhibited a significantly greater incidence of AF than that of the control group. The duration of burst-pacing-induced AF was longer in the ibrutinib-treated mice (Fig. S1A to C). Echocardiographic evaluation demonstrated that ibrutinib changed the atrial structure. The left atrium (LA) diameter and area of the ibrutinib group were larger than those of the control group (Fig. S1D to F). We further assessed pathological changes in the atria and observed a significant increase in atrial fibrosis in ibrutinib-treated mice (Fig. S1G and H). The ultrastructure of atrial myocytes was observed through transmission electron microscopy (TEM). The mitochondria in the atrial myocytes of the ibrutinib-treated group had a fragmented and punctuated appearance, with significantly shorter lengths than those in the control group, indicating that ibrutinib may disrupt the dynamic balance of atrial mitochondria (Fig. S1I).", + "text": "To assess the proarrhythmic potential of ibrutinib, we conducted intraesophageal burst pacing and recorded electrocardiograms (ECGs) in both ibrutinib-treated and control groups. The former exhibited a significantly greater incidence of AF than that of the control group. The duration of burst-pacing-induced AF was longer in the ibrutinib-treated mice (Fig. S1A to C). Echocardiographic evaluation demonstrated that ibrutinib changed the atrial structure. The left atrium (LA) diameter and area of the ibrutinib group were larger than those of the control group (Fig. S1D to F). We further assessed pathological changes in the atria and observed a significant increase in atrial fibrosis in ibrutinib-treated mice (Fig. S1G and H). The ultrastructure of atrial myocytes was observed through transmission electron microscopy (TEM). The mitochondria in the atrial myocytes of the ibrutinib-treated group had a fragmented and punctuated appearance, with significantly shorter lengths than those in the control group, indicating that ibrutinib may disrupt the dynamic balance of atrial mitochondria (Fig. S1I)." + }, + { + "self_ref": "#/texts/7", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/8" + } + ], + "label": "section_header", + "prov": [], + "orig": "Ibrutinib induces AF by impairing the mitochondrial function and structure of atrial myocytes", + "text": "Ibrutinib induces AF by impairing the mitochondrial function and structure of atrial myocytes", + "level": 1 + }, + { + "self_ref": "#/texts/8", + "parent": { + "$ref": "#/texts/7" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "We investigated the molecular mechanisms underlying the ibrutinib-induced increased risk of AF. A proteomic analysis was conducted to compare the atrial protein expressions of both the ibrutinib-treated and control groups. The ibrutinib treatment modified the expression of 378 proteins in the murine atrial tissue (|log2 fold change| > 1; P-adj < 0.05). Of these, 170 proteins were up-regulated and 208 were down-regulated in the ibrutinib group (Fig. 1A and B). A Kyoto Encyclopedia of Genes and Genomes (KEGG) enrichment analysis revealed that mitochondrial metabolic pathways, including oxidative phosphorylation (OXPHOS) and the tricarboxylic acid (TCA) cycle, were significantly altered by the ibrutinib treatment. A Gene Ontology (GO) biological process enrichment analysis showed that the ibrutinib treatment primarily affected proteins involved in the mitochondrial fission, mitochondrial organization, and cellular respiration. Similarly, a GO cellular component enrichment analysis indicated that ibrutinib mainly influenced the proteins located in mitochondrial respiratory chain, mitochondrial membrane, and matrix of mitochondria (Fig. 1C to F). The Gene Set Enrichment Analysis (GSEA) plot demonstrated that ibrutinib up-regulated mitochondrial fission and ROS pathway but impaired OXPHOS and mitochondrial biogenesis (Fig. 1I to L). Hence, ibrutinib intervention appeared to modify the expression of atrial proteins responsible for mitochondrial structure and function.", + "text": "We investigated the molecular mechanisms underlying the ibrutinib-induced increased risk of AF. A proteomic analysis was conducted to compare the atrial protein expressions of both the ibrutinib-treated and control groups. The ibrutinib treatment modified the expression of 378 proteins in the murine atrial tissue (|log2 fold change| > 1; P-adj < 0.05). Of these, 170 proteins were up-regulated and 208 were down-regulated in the ibrutinib group (Fig. 1A and B). A Kyoto Encyclopedia of Genes and Genomes (KEGG) enrichment analysis revealed that mitochondrial metabolic pathways, including oxidative phosphorylation (OXPHOS) and the tricarboxylic acid (TCA) cycle, were significantly altered by the ibrutinib treatment. A Gene Ontology (GO) biological process enrichment analysis showed that the ibrutinib treatment primarily affected proteins involved in the mitochondrial fission, mitochondrial organization, and cellular respiration. Similarly, a GO cellular component enrichment analysis indicated that ibrutinib mainly influenced the proteins located in mitochondrial respiratory chain, mitochondrial membrane, and matrix of mitochondria (Fig. 1C to F). The Gene Set Enrichment Analysis (GSEA) plot demonstrated that ibrutinib up-regulated mitochondrial fission and ROS pathway but impaired OXPHOS and mitochondrial biogenesis (Fig. 1I to L). Hence, ibrutinib intervention appeared to modify the expression of atrial proteins responsible for mitochondrial structure and function." + }, + { + "self_ref": "#/texts/9", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/10" + }, + { + "$ref": "#/texts/11" + } + ], + "label": "section_header", + "prov": [], + "orig": "Ibrutinib disrupts mitochondrial homeostasis by down-regulating atrial AKAP1 expression", + "text": "Ibrutinib disrupts mitochondrial homeostasis by down-regulating atrial AKAP1 expression", + "level": 1 + }, + { + "self_ref": "#/texts/10", + "parent": { + "$ref": "#/texts/9" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "As GO and KEGG enrichment analysis revealed that differentially expressed proteins were primarily associated with mitochondrial structural and functional changes, we annotated highly significant mitochondria-related differentially expressed proteins (\u2212(log10 P) > 3) in the volcano map. AKAP1 and DRP1 had markedly differential expressions in the ibrutinib group. AKAP1 is crucial for regulating the MQS system. It can maintain the mitochondrial dynamic equilibrium by maintaining DRP1 phosphorylation at Ser637. Hence, off-target effects on AKAP1 could be responsible for ibrutinib-induced AF. Next, we investigated the expression and molecular functions of the aforementioned candidate proteins using single-cell transcriptome data from atrial tissue of patients with AF and control patients. Employing uniform manifold approximation and projection, we performed a hierarchical clustering of cardiac cells from the atrial tissues of patients with the AF and control groups. Sorting the data based on the differential expression of established lineage markers revealed that the atrial tissues comprised 10 major cell types (Fig. 2A to C). The featureplots showed that, in contrast to control samples, atrial tissues from AF patients exhibited decreased expression of AKAP1, especially in the cardiomyocyte subset. Conversely, most cell subsets of the atrial tissue from AF patients displayed increased expression of DRP1 (Fig. 2D and E).", + "text": "As GO and KEGG enrichment analysis revealed that differentially expressed proteins were primarily associated with mitochondrial structural and functional changes, we annotated highly significant mitochondria-related differentially expressed proteins (\u2212(log10 P) > 3) in the volcano map. AKAP1 and DRP1 had markedly differential expressions in the ibrutinib group. AKAP1 is crucial for regulating the MQS system. It can maintain the mitochondrial dynamic equilibrium by maintaining DRP1 phosphorylation at Ser637. Hence, off-target effects on AKAP1 could be responsible for ibrutinib-induced AF. Next, we investigated the expression and molecular functions of the aforementioned candidate proteins using single-cell transcriptome data from atrial tissue of patients with AF and control patients. Employing uniform manifold approximation and projection, we performed a hierarchical clustering of cardiac cells from the atrial tissues of patients with the AF and control groups. Sorting the data based on the differential expression of established lineage markers revealed that the atrial tissues comprised 10 major cell types (Fig. 2A to C). The featureplots showed that, in contrast to control samples, atrial tissues from AF patients exhibited decreased expression of AKAP1, especially in the cardiomyocyte subset. Conversely, most cell subsets of the atrial tissue from AF patients displayed increased expression of DRP1 (Fig. 2D and E)." + }, + { + "self_ref": "#/texts/11", + "parent": { + "$ref": "#/texts/9" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "We computed the activity score of the mitochondria-related pathways in the cardiomyocyte subset of the AF group using the AUCell method. The AKAP1 expression was extracted from the AF scRNA-seq dataset, and correlation analysis was conducted with activity scores of mitochondria-related pathways (Fig. 2F to H). The AKAP1 expression was positively correlated with the activities of mitochondrial biogenesis and mitochondrial fusion and negatively with mitochondrial fission. Hence, AKAP1 deficiency could be responsible for excessive mitochondrial fission observed in ibrutinib-treated mice. A pan-subpopulation analysis of the correlation between AKAP1 expression and the OXPHOS activity score in the scRNA-seq dataset of AF patients showed that AKAP1 was significantly associated with mitochondrial metabolism in most atrial subpopulations (Fig. 2I). To further investigate this relationship, we stratified the cardiomyocytes in the subset based on AKAP1 expression. Using the median AKAP1 expression value as a threshold, we categorized the cardiomyocytes into high AKAP1 expression (hiAKAP1) and low AKAP1 expression (loAKAP1) groups (Fig. S2A). Differential expression analysis was performed between these groups, followed by GO and KEGG enrichment analyses. The results revealed that differentially expressed genes were predominantly enriched in biological process terms related to mitochondrial function. These included mitochondrial electron transport, OXPHOS, mitochondrial depolarization, and mitochondrial membrane organization. In terms of cellular process, the genes were enriched in categories such as mitochondrial respiratory chain complex and MOM. KEGG pathway analysis highlighted enrichment in OXPHOS and the TCA cycle (Fig. S2B to E). GSEA provided additional insights. Compared to the hiAKAP1 group, the loAKAP1 cardiomyocyte subgroup exhibited enhanced activation of mitochondrial fission events. Conversely, the OXPHOS pathway, representative of mitochondrial metabolism, was significantly suppressed in the loAKAP1 group (Fig. S2F and G). We performed molecular docking (MD) to elucidate the potential off-target binding interactions between AKAP1 and ibrutinib molecules. The results revealed a binding energy of \u22126.79 kcal/mol for the protein\u2013ligand complex, suggesting a strong binding effect between ibrutinib and AKAP1 (Fig. 2J).", + "text": "We computed the activity score of the mitochondria-related pathways in the cardiomyocyte subset of the AF group using the AUCell method. The AKAP1 expression was extracted from the AF scRNA-seq dataset, and correlation analysis was conducted with activity scores of mitochondria-related pathways (Fig. 2F to H). The AKAP1 expression was positively correlated with the activities of mitochondrial biogenesis and mitochondrial fusion and negatively with mitochondrial fission. Hence, AKAP1 deficiency could be responsible for excessive mitochondrial fission observed in ibrutinib-treated mice. A pan-subpopulation analysis of the correlation between AKAP1 expression and the OXPHOS activity score in the scRNA-seq dataset of AF patients showed that AKAP1 was significantly associated with mitochondrial metabolism in most atrial subpopulations (Fig. 2I). To further investigate this relationship, we stratified the cardiomyocytes in the subset based on AKAP1 expression. Using the median AKAP1 expression value as a threshold, we categorized the cardiomyocytes into high AKAP1 expression (hiAKAP1) and low AKAP1 expression (loAKAP1) groups (Fig. S2A). Differential expression analysis was performed between these groups, followed by GO and KEGG enrichment analyses. The results revealed that differentially expressed genes were predominantly enriched in biological process terms related to mitochondrial function. These included mitochondrial electron transport, OXPHOS, mitochondrial depolarization, and mitochondrial membrane organization. In terms of cellular process, the genes were enriched in categories such as mitochondrial respiratory chain complex and MOM. KEGG pathway analysis highlighted enrichment in OXPHOS and the TCA cycle (Fig. S2B to E). GSEA provided additional insights. Compared to the hiAKAP1 group, the loAKAP1 cardiomyocyte subgroup exhibited enhanced activation of mitochondrial fission events. Conversely, the OXPHOS pathway, representative of mitochondrial metabolism, was significantly suppressed in the loAKAP1 group (Fig. S2F and G). We performed molecular docking (MD) to elucidate the potential off-target binding interactions between AKAP1 and ibrutinib molecules. The results revealed a binding energy of \u22126.79 kcal/mol for the protein\u2013ligand complex, suggesting a strong binding effect between ibrutinib and AKAP1 (Fig. 2J)." + }, + { + "self_ref": "#/texts/12", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/13" + } + ], + "label": "section_header", + "prov": [], + "orig": "AKAP1 down-regulation mediates DRP1 dephosphorylation in HL-1 myocytes", + "text": "AKAP1 down-regulation mediates DRP1 dephosphorylation in HL-1 myocytes", + "level": 1 + }, + { + "self_ref": "#/texts/13", + "parent": { + "$ref": "#/texts/12" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "We investigated the interaction between AKAP1 and DRP1 and its impact on the mitochondrial dynamic to elucidate the mechanism underlying AKAP1-deficiency-mediated mitochondrial fragmentation. Confocal immunofluorescence imaging demonstrated that ibrutinib treatment decreased the AKAP1 expression (red) and increased the DRP1 expression (green) in HL-1 cells (Fig. 3A). DRP1 phosphorylation is a downstream consequence of the presence of AKAP1 on the outer mitochondrial membrane (OMM). DRP1 possesses an N-terminal guanosine triphosphatase (GTPase) domain. It hydrolyzes guanosine triphosphate to generate the energy necessary for fission. AKAP1, when anchored to protein kinase A, phosphorylates DRP1 at Ser637 within the GTPase effector domain, thus inhibiting its GTPase activity and attenuating mitochondrial fission. A reduction in AKAP1 expression enhances the dephosphorylation of DRP1 at Ser637, facilitating mitochondrial fission. Therefore, we wanted to know whether AKAP1 promotes mitochondrial fission by dephosphorylating DRP1. Western blot analysis revealed that ibrutinib dephosphorylated DRP1 at Ser637 in HL-1 cells, without affecting the phosphorylation levels at Ser616, and simultaneously increased the expression of FIS1, a mitochondrial fission marker (Fig. 3B to F).", + "text": "We investigated the interaction between AKAP1 and DRP1 and its impact on the mitochondrial dynamic to elucidate the mechanism underlying AKAP1-deficiency-mediated mitochondrial fragmentation. Confocal immunofluorescence imaging demonstrated that ibrutinib treatment decreased the AKAP1 expression (red) and increased the DRP1 expression (green) in HL-1 cells (Fig. 3A). DRP1 phosphorylation is a downstream consequence of the presence of AKAP1 on the outer mitochondrial membrane (OMM). DRP1 possesses an N-terminal guanosine triphosphatase (GTPase) domain. It hydrolyzes guanosine triphosphate to generate the energy necessary for fission. AKAP1, when anchored to protein kinase A, phosphorylates DRP1 at Ser637 within the GTPase effector domain, thus inhibiting its GTPase activity and attenuating mitochondrial fission. A reduction in AKAP1 expression enhances the dephosphorylation of DRP1 at Ser637, facilitating mitochondrial fission. Therefore, we wanted to know whether AKAP1 promotes mitochondrial fission by dephosphorylating DRP1. Western blot analysis revealed that ibrutinib dephosphorylated DRP1 at Ser637 in HL-1 cells, without affecting the phosphorylation levels at Ser616, and simultaneously increased the expression of FIS1, a mitochondrial fission marker (Fig. 3B to F)." + }, + { + "self_ref": "#/texts/14", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/15" + }, + { + "$ref": "#/texts/16" + } + ], + "label": "section_header", + "prov": [], + "orig": "Ibrutinib-induced AKAP1 depletion promotes mitochondrial fission and membrane depolarization via DRP1 dephosphorylation", + "text": "Ibrutinib-induced AKAP1 depletion promotes mitochondrial fission and membrane depolarization via DRP1 dephosphorylation", + "level": 1 + }, + { + "self_ref": "#/texts/15", + "parent": { + "$ref": "#/texts/14" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "Mitochondrial dynamic imbalance is regarded as both the initiator and facilitator of mitochondrial dysfunction. We quantitatively assessed ibrutinib-induced changes in mitochondrial morphology by considering the fragmented mitochondria in the atrial tissues of ibrutinib-treated mice and the proteomics enrichment analysis results. To further investigate the mechanism underlying AKAP1-deficiency-mediated mitochondrial fission, the HL-1 cardiomyocytes were infected with LV-Akap1 before ibrutinib treatment. MitoTracker staining demonstrated that ibrutinib exposure formed small, round, and fragmented mitochondria in atrial myocytes, indicating enhanced mitochondrial fission. To quantitatively evaluate alterations in atrial mitochondrial fragmentation, we measured the aspect ratio and form factor of mitochondria in both the ibrutinib and control groups. The former displayed a significant decrease in AR and FF parameters than that in the control group. However, transfection with LV-Akap1 partially restored the mitochondrial morphology to normal (Fig. 4A to E).", + "text": "Mitochondrial dynamic imbalance is regarded as both the initiator and facilitator of mitochondrial dysfunction. We quantitatively assessed ibrutinib-induced changes in mitochondrial morphology by considering the fragmented mitochondria in the atrial tissues of ibrutinib-treated mice and the proteomics enrichment analysis results. To further investigate the mechanism underlying AKAP1-deficiency-mediated mitochondrial fission, the HL-1 cardiomyocytes were infected with LV-Akap1 before ibrutinib treatment. MitoTracker staining demonstrated that ibrutinib exposure formed small, round, and fragmented mitochondria in atrial myocytes, indicating enhanced mitochondrial fission. To quantitatively evaluate alterations in atrial mitochondrial fragmentation, we measured the aspect ratio and form factor of mitochondria in both the ibrutinib and control groups. The former displayed a significant decrease in AR and FF parameters than that in the control group. However, transfection with LV-Akap1 partially restored the mitochondrial morphology to normal (Fig. 4A to E)." + }, + { + "self_ref": "#/texts/16", + "parent": { + "$ref": "#/texts/14" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "Western blot analysis showed that ibrutinib exposure led to a significant increase in mitochondrial fission-related proteins (DRP1 and FIS1) and a decrease in mitochondrial fusion-associated proteins (MFN1 and OPA1). Importantly, compared to the modest increase in total DRP1 (t-DRP1), the expression of mitochondria-localized DRP1 (mito-DRP1) was remarkably elevated in the ibrutinib-treated group, along with a significant dephosphorylation of DRP1 at Ser637. Transfecting HL-1 cells with LV-Akap1 considerably increased the phosphorylation level of DRP1 at Ser637. Furthermore, without significant changes in total DRP1, LV-Akap1 transfection diminished DRP1 translocation to mitochondria and enhanced the expressions of MFN1 and OPA1 (Fig. 4F to N). The mitochondrial membrane potential determines the mitochondrial function. Excessive mitochondrial fission can depolarize the mitochondrial membrane potential, which was restored to near-normal levels by AKAP1 overexpression (Fig. 4O and P).", + "text": "Western blot analysis showed that ibrutinib exposure led to a significant increase in mitochondrial fission-related proteins (DRP1 and FIS1) and a decrease in mitochondrial fusion-associated proteins (MFN1 and OPA1). Importantly, compared to the modest increase in total DRP1 (t-DRP1), the expression of mitochondria-localized DRP1 (mito-DRP1) was remarkably elevated in the ibrutinib-treated group, along with a significant dephosphorylation of DRP1 at Ser637. Transfecting HL-1 cells with LV-Akap1 considerably increased the phosphorylation level of DRP1 at Ser637. Furthermore, without significant changes in total DRP1, LV-Akap1 transfection diminished DRP1 translocation to mitochondria and enhanced the expressions of MFN1 and OPA1 (Fig. 4F to N). The mitochondrial membrane potential determines the mitochondrial function. Excessive mitochondrial fission can depolarize the mitochondrial membrane potential, which was restored to near-normal levels by AKAP1 overexpression (Fig. 4O and P)." + }, + { + "self_ref": "#/texts/17", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/18" + }, + { + "$ref": "#/texts/19" + } + ], + "label": "section_header", + "prov": [], + "orig": "AKAP1 deficiency impairs mitochondrial respiratory function and promotes metabolic reprogramming in HL-1 myocytes", + "text": "AKAP1 deficiency impairs mitochondrial respiratory function and promotes metabolic reprogramming in HL-1 myocytes", + "level": 1 + }, + { + "self_ref": "#/texts/18", + "parent": { + "$ref": "#/texts/17" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "Mitochondrial bioenergetics and dynamics are interconnected. A disruption in the balance between fusion and fission can impair mitochondrial bioenergetics, diminishing ATP production. We investigated whether ibrutinib disturbs mitochondrial bioenergetics homeostasis by interfering with AKAP1. We conducted a Seahorse Mito Stress test to assess mitochondrial respiration. The results demonstrated that ibrutinib stimulation significantly impaired basal respiration, maximal respiration, spare respiratory capacity, and ATP production, which were attenuated by transduction with LV-Akap1 or cotreatment with Mdivi-1, a mitochondrial fission inhibitor (Fig. 5A to F).", + "text": "Mitochondrial bioenergetics and dynamics are interconnected. A disruption in the balance between fusion and fission can impair mitochondrial bioenergetics, diminishing ATP production. We investigated whether ibrutinib disturbs mitochondrial bioenergetics homeostasis by interfering with AKAP1. We conducted a Seahorse Mito Stress test to assess mitochondrial respiration. The results demonstrated that ibrutinib stimulation significantly impaired basal respiration, maximal respiration, spare respiratory capacity, and ATP production, which were attenuated by transduction with LV-Akap1 or cotreatment with Mdivi-1, a mitochondrial fission inhibitor (Fig. 5A to F)." + }, + { + "self_ref": "#/texts/19", + "parent": { + "$ref": "#/texts/17" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "Impaired mitochondrial respiration is linked to metabolic reprogramming. As mitochondrial OXPHOS declines, the real-time ATP rate assay was utilized to assess whether the ibrutinib-treated cells displayed adaptive reprogramming toward the glycolytic pathway. The assay simultaneously measured the basal ATP-production rates from mitochondrial respiration (oxygen consumption rate [OCR]) and glycolysis (extracellular acidification rate). The ibrutinib-treated myocytes had a significantly reduced total ATP-production rate, primarily owing to the inability of the elevated glycoATP rate to compensate for the mitoATP rate deficiency. AKAP1 overexpression or Mdivi-1 cotreatment effectively reversed the metabolic reprogramming phenotype. The degree of this alteration can be determined by the extent of reduction in the ATP index ratio (mitoATP production rate/glycoATP production rate) in ibrutinib-treated myocytes. This reduction was partially restored by AKAP1 overexpression or Mdivi-1 intervention (Fig. 5G to K). These results are consistent with the finding that the activity of mitochondrial ETC complex I/III was compromised in the ibrutinib group but improved to near-normal levels in ibrutinib-treated cells transduced with LV-Akap1 or co-treated with Mdivi-1 (Fig. 5L and M).", + "text": "Impaired mitochondrial respiration is linked to metabolic reprogramming. As mitochondrial OXPHOS declines, the real-time ATP rate assay was utilized to assess whether the ibrutinib-treated cells displayed adaptive reprogramming toward the glycolytic pathway. The assay simultaneously measured the basal ATP-production rates from mitochondrial respiration (oxygen consumption rate [OCR]) and glycolysis (extracellular acidification rate). The ibrutinib-treated myocytes had a significantly reduced total ATP-production rate, primarily owing to the inability of the elevated glycoATP rate to compensate for the mitoATP rate deficiency. AKAP1 overexpression or Mdivi-1 cotreatment effectively reversed the metabolic reprogramming phenotype. The degree of this alteration can be determined by the extent of reduction in the ATP index ratio (mitoATP production rate/glycoATP production rate) in ibrutinib-treated myocytes. This reduction was partially restored by AKAP1 overexpression or Mdivi-1 intervention (Fig. 5G to K). These results are consistent with the finding that the activity of mitochondrial ETC complex I/III was compromised in the ibrutinib group but improved to near-normal levels in ibrutinib-treated cells transduced with LV-Akap1 or co-treated with Mdivi-1 (Fig. 5L and M)." + }, + { + "self_ref": "#/texts/20", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/21" + }, + { + "$ref": "#/texts/22" + }, + { + "$ref": "#/texts/23" + } + ], + "label": "section_header", + "prov": [], + "orig": "AKAP1 down-regulation is involved in impaired mitochondrial biogenesis, oxidative stress, and inflammation", + "text": "AKAP1 down-regulation is involved in impaired mitochondrial biogenesis, oxidative stress, and inflammation", + "level": 1 + }, + { + "self_ref": "#/texts/21", + "parent": { + "$ref": "#/texts/20" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "Insufficient energy production could be associated with defective mitochondrial biogenesis, a process crucial for replenishing number of healthy mitochondria. Ibrutinib treatment reduced the levels of PGC-1 and NRF1, 2 essential regulators of mitochondrial biogenesis. It also reduced the mtDNA copy number. However, this inhibitory effect of ibrutinib on mitochondrial biogenesis was ameliorated by AKAP1 overexpression or Mdivi-1 intervention (Fig. 6A to C).", + "text": "Insufficient energy production could be associated with defective mitochondrial biogenesis, a process crucial for replenishing number of healthy mitochondria. Ibrutinib treatment reduced the levels of PGC-1 and NRF1, 2 essential regulators of mitochondrial biogenesis. It also reduced the mtDNA copy number. However, this inhibitory effect of ibrutinib on mitochondrial biogenesis was ameliorated by AKAP1 overexpression or Mdivi-1 intervention (Fig. 6A to C)." + }, + { + "self_ref": "#/texts/22", + "parent": { + "$ref": "#/texts/20" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "We next elucidated the regulatory role of AKAP1 in the mitochondrial redox balance in ibrutinib-treated myocytes. Representative MitoSOX staining images showed that ibrutinib promotes excessive mitochondrial ROS production. AKAP1 overexpression significantly diminished the mitoROS level, also observed in the Mdivi-1 cotreatment group. Ibrutinib-treated myocytes exhibited reduced glutathione (GSH) and elevated malondialdehyde (MDA) levels, which were restored by LV-Akap1 transduction and Mdivi-1 intervention (Fig. 6F and G).", + "text": "We next elucidated the regulatory role of AKAP1 in the mitochondrial redox balance in ibrutinib-treated myocytes. Representative MitoSOX staining images showed that ibrutinib promotes excessive mitochondrial ROS production. AKAP1 overexpression significantly diminished the mitoROS level, also observed in the Mdivi-1 cotreatment group. Ibrutinib-treated myocytes exhibited reduced glutathione (GSH) and elevated malondialdehyde (MDA) levels, which were restored by LV-Akap1 transduction and Mdivi-1 intervention (Fig. 6F and G)." + }, + { + "self_ref": "#/texts/23", + "parent": { + "$ref": "#/texts/20" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "Mitochondrial dysfunction not only disturbs energy metabolism but also triggers inflammatory responses through an intricate immunometabolic crosstalk. Given the observed atrial fibrosis in animal models, GSEA of inflammatory response pathway indicated that inflammation activation is presented in ibrutinib-treated myocytes (Fig. 6H). We performed enzyme-linked immunosorbent assay (ELISA) to assess alterations in the levels of inflammatory factors. The ibrutinib group exhibited elevated levels of tumor necrosis factor-\u03b1 (TNF-\u03b1), interleukin-6 (IL-6), and IL-18. However, the AKAP1 overexpression significantly down-regulated these cytokines. IL-18 was reversed in both AKAP1 overexpression and Mdivi-1 cotreatment groups (Fig. 6I to K).", + "text": "Mitochondrial dysfunction not only disturbs energy metabolism but also triggers inflammatory responses through an intricate immunometabolic crosstalk. Given the observed atrial fibrosis in animal models, GSEA of inflammatory response pathway indicated that inflammation activation is presented in ibrutinib-treated myocytes (Fig. 6H). We performed enzyme-linked immunosorbent assay (ELISA) to assess alterations in the levels of inflammatory factors. The ibrutinib group exhibited elevated levels of tumor necrosis factor-\u03b1 (TNF-\u03b1), interleukin-6 (IL-6), and IL-18. However, the AKAP1 overexpression significantly down-regulated these cytokines. IL-18 was reversed in both AKAP1 overexpression and Mdivi-1 cotreatment groups (Fig. 6I to K)." + }, + { + "self_ref": "#/texts/24", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/25" + }, + { + "$ref": "#/texts/26" + } + ], + "label": "section_header", + "prov": [], + "orig": "AKAP1 overexpression prevents ibrutinib-induced AF by improving MQS and restoring mitochondrial function", + "text": "AKAP1 overexpression prevents ibrutinib-induced AF by improving MQS and restoring mitochondrial function", + "level": 1 + }, + { + "self_ref": "#/texts/25", + "parent": { + "$ref": "#/texts/24" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "To verify whether AKAP1 up-regulation could mitigate the AF risk and restore the MQS system in ibrutinib-treated mice models, we established an in\u00a0vivo AKAP1 overexpression model using adeno-associated virus (AAV), with AAV-GFP as the control group. The ibrutinib-treated mice exhibited a higher AF incidence and prolonged AF duration than those of control mice. ECG measurements revealed that the ibrutinib-treated group with AKAP1 overexpression had diminished AF duration and incidence (Fig. 7A to C). AKAP1 overexpression also ameliorated atrial fibrosis (Fig. 7D and E). We validated the ibrutinib-induced Drp1 Ser637 dephosphorylation and expression levels of mitochondrial fission/fusion markers. The ibrutinib treatment reduced DRP1 phosphorylation at Ser637 and simultaneously decreased the MFN1 (fusion marker) and NRF1 (biogenesis marker) levels. These effects were reversed by AKAP1 overexpression (Fig. 7F to I).", + "text": "To verify whether AKAP1 up-regulation could mitigate the AF risk and restore the MQS system in ibrutinib-treated mice models, we established an in\u00a0vivo AKAP1 overexpression model using adeno-associated virus (AAV), with AAV-GFP as the control group. The ibrutinib-treated mice exhibited a higher AF incidence and prolonged AF duration than those of control mice. ECG measurements revealed that the ibrutinib-treated group with AKAP1 overexpression had diminished AF duration and incidence (Fig. 7A to C). AKAP1 overexpression also ameliorated atrial fibrosis (Fig. 7D and E). We validated the ibrutinib-induced Drp1 Ser637 dephosphorylation and expression levels of mitochondrial fission/fusion markers. The ibrutinib treatment reduced DRP1 phosphorylation at Ser637 and simultaneously decreased the MFN1 (fusion marker) and NRF1 (biogenesis marker) levels. These effects were reversed by AKAP1 overexpression (Fig. 7F to I)." + }, + { + "self_ref": "#/texts/26", + "parent": { + "$ref": "#/texts/24" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "MitoSOX staining revealed that mitochondrial ROS production was significantly elevated in ibrutinib-treated mice, which normalized following AKAP1 overexpression (Fig. 7J and K). This finding was supported by the ibrutinib-induced reduction in GSH contents and an increase in MDA contents, which were also reversed by AKAP1 overexpression. Similar trends were observed for the activity of mitochondrial complex I/III. These data confirmed the regulatory role of AKAP1 in mitochondrial bioenergetics in ibrutinib-induced AF. Moreover, the IL-18 level was up-regulated in the ibrutinib-treated group. The AKAP1 overexpression could normalize the inflammatory response (Fig. 7L to P).", + "text": "MitoSOX staining revealed that mitochondrial ROS production was significantly elevated in ibrutinib-treated mice, which normalized following AKAP1 overexpression (Fig. 7J and K). This finding was supported by the ibrutinib-induced reduction in GSH contents and an increase in MDA contents, which were also reversed by AKAP1 overexpression. Similar trends were observed for the activity of mitochondrial complex I/III. These data confirmed the regulatory role of AKAP1 in mitochondrial bioenergetics in ibrutinib-induced AF. Moreover, the IL-18 level was up-regulated in the ibrutinib-treated group. The AKAP1 overexpression could normalize the inflammatory response (Fig. 7L to P)." + }, + { + "self_ref": "#/texts/27", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/28" + }, + { + "$ref": "#/texts/29" + }, + { + "$ref": "#/texts/30" + }, + { + "$ref": "#/texts/31" + }, + { + "$ref": "#/texts/32" + }, + { + "$ref": "#/texts/33" + }, + { + "$ref": "#/texts/34" + } + ], + "label": "section_header", + "prov": [], + "orig": "Discussion", + "text": "Discussion", + "level": 1 + }, + { + "self_ref": "#/texts/28", + "parent": { + "$ref": "#/texts/27" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "Mitochondrial damage serves as a major determinant in the pathogenesis of chemotherapeutic agents\u2019 cardiotoxic effects. We employed gene-editing technologies in animal models and HL-1 cells and showed that ibrutinib increases the AF risk by disrupting the AKAP1-regulated MQS. Our study has several key findings. First, ibrutinib-treated mice exhibited decreased AKAP1 expression, which was closely associated with an increased risk of AF. Second, down-regulated AKAP1 disturbs the MQS system in atrial myocytes, as evidenced by the increased mitochondrial fission caused by enhanced Drp1 Ser637 dephosphorylation and OMM translocation, which is accompanied by impaired mitochondrial biogenesis and mitochondrial metabolic reprogramming in bioenergetics. Third, AKAP1 deficiency in atrial cardiomyocytes dysregulates the MQS, which further promotes oxidative stress and inflammatory activation, resulting in increased atrial fibrosis. Importantly, the AKAP1 overexpression effectively restores mitochondrial homeostasis and alleviates oxidative stress and inflammation-induced fibrosis in the ibrutinib-treated mouse model (Fig. 8). Our results offer novel perspectives on the molecular mechanisms connecting impaired MQS with electrophysiological alterations in ibrutinib-induced AF, indicating that AKAP1 could be a promising target for exploring preventive approaches.", + "text": "Mitochondrial damage serves as a major determinant in the pathogenesis of chemotherapeutic agents\u2019 cardiotoxic effects. We employed gene-editing technologies in animal models and HL-1 cells and showed that ibrutinib increases the AF risk by disrupting the AKAP1-regulated MQS. Our study has several key findings. First, ibrutinib-treated mice exhibited decreased AKAP1 expression, which was closely associated with an increased risk of AF. Second, down-regulated AKAP1 disturbs the MQS system in atrial myocytes, as evidenced by the increased mitochondrial fission caused by enhanced Drp1 Ser637 dephosphorylation and OMM translocation, which is accompanied by impaired mitochondrial biogenesis and mitochondrial metabolic reprogramming in bioenergetics. Third, AKAP1 deficiency in atrial cardiomyocytes dysregulates the MQS, which further promotes oxidative stress and inflammatory activation, resulting in increased atrial fibrosis. Importantly, the AKAP1 overexpression effectively restores mitochondrial homeostasis and alleviates oxidative stress and inflammation-induced fibrosis in the ibrutinib-treated mouse model (Fig. 8). Our results offer novel perspectives on the molecular mechanisms connecting impaired MQS with electrophysiological alterations in ibrutinib-induced AF, indicating that AKAP1 could be a promising target for exploring preventive approaches." + }, + { + "self_ref": "#/texts/29", + "parent": { + "$ref": "#/texts/27" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "AKAP1, a scaffolding protein, anchors to the OMM with its inserted mitochondrial targeting sequence. By recruiting signaling proteins to the OMM, AKAP1 serves as a mitochondrial signaling hub regulating mitochondrial homeostasis [22,23]. AKAP1 deficiency in retinal ganglion cells causes mitochondrial fragmentation by promoting Drp1 Ser637 dephosphorylation [24]. Previous studies on diabetic cardiomyopathy have revealed that AKAP1 down-regulation can compromise mitochondrial respiration by impeding NDUFS1 translocation into mitochondria and promoting mitochondrial ROS generation [25]. We employed quantitative proteomics to investigate alterations in protein expression following ibrutinib treatment. Enrichment analysis revealed that mitochondria-related pathways were enriched with differentially expressed proteins. The volcano plot showed that AKAP1 was one of the most significantly down-regulated candidates among the mitochondria-related proteins. We validated atrial AKAP1 down-regulation based on AF single-cell transcriptome data. We observed a significant correlation between AKAP1 expression and the activity score of MQS-related pathways, including mitochondrial fission, biogenesis, and OXPHOS in cardiomyocyte subpopulations. Our study is the first to provide a comprehensive understanding of ibrutinib-mediated atrial MQS disturbances through off-target effects.", + "text": "AKAP1, a scaffolding protein, anchors to the OMM with its inserted mitochondrial targeting sequence. By recruiting signaling proteins to the OMM, AKAP1 serves as a mitochondrial signaling hub regulating mitochondrial homeostasis [22,23]. AKAP1 deficiency in retinal ganglion cells causes mitochondrial fragmentation by promoting Drp1 Ser637 dephosphorylation [24]. Previous studies on diabetic cardiomyopathy have revealed that AKAP1 down-regulation can compromise mitochondrial respiration by impeding NDUFS1 translocation into mitochondria and promoting mitochondrial ROS generation [25]. We employed quantitative proteomics to investigate alterations in protein expression following ibrutinib treatment. Enrichment analysis revealed that mitochondria-related pathways were enriched with differentially expressed proteins. The volcano plot showed that AKAP1 was one of the most significantly down-regulated candidates among the mitochondria-related proteins. We validated atrial AKAP1 down-regulation based on AF single-cell transcriptome data. We observed a significant correlation between AKAP1 expression and the activity score of MQS-related pathways, including mitochondrial fission, biogenesis, and OXPHOS in cardiomyocyte subpopulations. Our study is the first to provide a comprehensive understanding of ibrutinib-mediated atrial MQS disturbances through off-target effects." + }, + { + "self_ref": "#/texts/30", + "parent": { + "$ref": "#/texts/27" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "Recent studies have investigated ROS-related mechanisms in ibrutinib-induced AF. Jiang et\u00a0al. [20] reported ibrutinib-related atrial calcium handling disorders caused by increased RyR2 Ser2814 phosphorylation. Our recent research has further revealed that enhanced ibrutinib-mediated oxidative stress may increase the Ser2814 phosphorylation of RyR2. This observation is supported by the finding that antioxidant interventions effectively reduced calcium overload and inflammation-induced atrial fibrosis, thereby decreasing the ibrutinib-induced AF risk [21]. During mitochondrial electron transfer, electrons can leak and react with oxygen to create superoxide anions, making mitochondria a major source of ROS. Disruptions in electron transport in damaged mitochondria increase electron leakage, causing ROS bursts. However, as a crucial source of intracellular ROS, the role of mitochondrial damage in ibrutinib-induced AF has not been thoroughly investigated. Through GSEA of proteomics, we found that mitochondrial fission and ROS generation pathways were activated and OXPHOS and mitochondrial biogenesis processes were suppressed in the ibrutinib group. Hence, MQS impairment may be critical for the pathogenesis of ibrutinib-induced AF.", + "text": "Recent studies have investigated ROS-related mechanisms in ibrutinib-induced AF. Jiang et\u00a0al. [20] reported ibrutinib-related atrial calcium handling disorders caused by increased RyR2 Ser2814 phosphorylation. Our recent research has further revealed that enhanced ibrutinib-mediated oxidative stress may increase the Ser2814 phosphorylation of RyR2. This observation is supported by the finding that antioxidant interventions effectively reduced calcium overload and inflammation-induced atrial fibrosis, thereby decreasing the ibrutinib-induced AF risk [21]. During mitochondrial electron transfer, electrons can leak and react with oxygen to create superoxide anions, making mitochondria a major source of ROS. Disruptions in electron transport in damaged mitochondria increase electron leakage, causing ROS bursts. However, as a crucial source of intracellular ROS, the role of mitochondrial damage in ibrutinib-induced AF has not been thoroughly investigated. Through GSEA of proteomics, we found that mitochondrial fission and ROS generation pathways were activated and OXPHOS and mitochondrial biogenesis processes were suppressed in the ibrutinib group. Hence, MQS impairment may be critical for the pathogenesis of ibrutinib-induced AF." + }, + { + "self_ref": "#/texts/31", + "parent": { + "$ref": "#/texts/27" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "Our study utilized high-throughput sequencing along with genetic editing to investigate the mechanism of ibrutinib-induced mitochondrial damage leading to AF, with a focus on AKAP1-mediated MQS disturbance. The mitochondrial dynamic imbalance is crucial for cardio-oncology. As highly dynamic organelles, mitochondria continuously cycle between fission and fusion events to adapt to environmental demands. During mitochondrial fission, dephosphorylation of DRP1 at Ser637 promotes its recruitment to mitochondria [26]. The recruited DRP1 forms ring-like structures on OMM, constricting the organelle and producing 2 daughter mitochondria. Excessive mitochondrial fission from increased DRP1 Ser616 phosphorylation has also been found to be responsible for the pathogenesis of doxorubicin-induced cardiotoxicity [27].", + "text": "Our study utilized high-throughput sequencing along with genetic editing to investigate the mechanism of ibrutinib-induced mitochondrial damage leading to AF, with a focus on AKAP1-mediated MQS disturbance. The mitochondrial dynamic imbalance is crucial for cardio-oncology. As highly dynamic organelles, mitochondria continuously cycle between fission and fusion events to adapt to environmental demands. During mitochondrial fission, dephosphorylation of DRP1 at Ser637 promotes its recruitment to mitochondria [26]. The recruited DRP1 forms ring-like structures on OMM, constricting the organelle and producing 2 daughter mitochondria. Excessive mitochondrial fission from increased DRP1 Ser616 phosphorylation has also been found to be responsible for the pathogenesis of doxorubicin-induced cardiotoxicity [27]." + }, + { + "self_ref": "#/texts/32", + "parent": { + "$ref": "#/texts/27" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "Excessive fission depletes ATPs by regulating mitochondrial metabolic reprogramming, along with suppressed biogenesis, ultimately disrupting the MQS system. Metabolic reprogramming, a cellular self-regulatory mechanism in response to environmental changes, has been demonstrated to play a crucial role in the pathophysiology of both cardiometabolic and neoplastic diseases [28\u201331]. This adaptive process has gained increasing recognition and understanding in the field of cardio-oncology, highlighting its role in the complex interplay between cancer therapeutics and cardiovascular health. Sunitinib disturbs mitochondrial bioenergetics by reducing the complex I activities, accompanied by an increased generation of mitochondrial ROS and decreased uptake of substrates, such as nucleosides [32]. A down-regulation of mitochondrial biogenesis markers, including Nrf2, PPAR\u03b1, and PGC-1\u03b1 expression, has been reported in the animal models of doxorubicin-induced cardiotoxicity and some other cardiovascular disorders [13,33]. In the mechanism of cardiotoxicity induced by anticancer drugs, the suppression of mitochondrial biogenesis is accompanied by an increase in ROS generation [34]. Interestingly, this dual phenomenon has also been observed in the pathophysiology of AF [35]. This imbalance in mitochondrial homeostasis limits the capacity of atrial energy production and increases ROS generation because of a reduction in the electron transfer efficiency owing to excessive mitochondrial fission in naive daughter mitochondria [36]. The increased ROS levels can attack adjacent intact mitochondria, resulting in a self-perpetuating cycle of ROS-induced ROS production [37]. ROS overproduction and inflammation activation exhibit reciprocal stimulation, creating a vicious loop that forms a pathological substrate for AF.", + "text": "Excessive fission depletes ATPs by regulating mitochondrial metabolic reprogramming, along with suppressed biogenesis, ultimately disrupting the MQS system. Metabolic reprogramming, a cellular self-regulatory mechanism in response to environmental changes, has been demonstrated to play a crucial role in the pathophysiology of both cardiometabolic and neoplastic diseases [28\u201331]. This adaptive process has gained increasing recognition and understanding in the field of cardio-oncology, highlighting its role in the complex interplay between cancer therapeutics and cardiovascular health. Sunitinib disturbs mitochondrial bioenergetics by reducing the complex I activities, accompanied by an increased generation of mitochondrial ROS and decreased uptake of substrates, such as nucleosides [32]. A down-regulation of mitochondrial biogenesis markers, including Nrf2, PPAR\u03b1, and PGC-1\u03b1 expression, has been reported in the animal models of doxorubicin-induced cardiotoxicity and some other cardiovascular disorders [13,33]. In the mechanism of cardiotoxicity induced by anticancer drugs, the suppression of mitochondrial biogenesis is accompanied by an increase in ROS generation [34]. Interestingly, this dual phenomenon has also been observed in the pathophysiology of AF [35]. This imbalance in mitochondrial homeostasis limits the capacity of atrial energy production and increases ROS generation because of a reduction in the electron transfer efficiency owing to excessive mitochondrial fission in naive daughter mitochondria [36]. The increased ROS levels can attack adjacent intact mitochondria, resulting in a self-perpetuating cycle of ROS-induced ROS production [37]. ROS overproduction and inflammation activation exhibit reciprocal stimulation, creating a vicious loop that forms a pathological substrate for AF." + }, + { + "self_ref": "#/texts/33", + "parent": { + "$ref": "#/texts/27" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "In this study, we discovered that ibrutinib can disrupt the mitochondrial homeostasis in atrial cardiomyocytes. Indeed, the cardiotoxic side effects exhibited by a series of tyrosine kinase inhibitors are closely associated with the mitochondrial homeostasis disturbance. Sunitinib, a widely used vascular endothelial growth factor receptor tyrosine kinase inhibitor for the treatment of metastatic renal cell carcinoma, has been reported to have common cardiotoxicity with an incidence rate of 1% to 10% [1]. Mechanistic studies have revealed that sunitinib can induce myocardial apoptosis [38], which is manifested as the disruption of mitochondrial network structures [39], reduced efficiency of electron transfer, and the accompanying decrease in ATP production [8]. In H9c2 cardiac cell models exposed to sunitinib for 24 h and mouse models treated by gavage for 2 weeks, the collapse of mitochondrial membrane potential and elevated mitochondrial ROS can be observed. Intervention with mito-TEMPO can effectively alleviate mitochondrial dysfunction. Sorafenib, a multitargeted tyrosine kinase inhibitor, has emerged as a first-line treatment for patients with advanced hepatocellular carcinoma and renal cell carcinoma. Evidence suggests that at the therapeutically relevant doses, sorafenib can directly compromise the mitochondrial function of H9c2 cardiomyocytes [40]. The mechanism underlying this cardiotoxicity may be attributed to sorafenib\u2019s role as an effective ferroptosis inducer [41]. Ferroptosis is typically associated with substantial alterations in mitochondrial morphology, characterized by increased mitochondrial membrane density and reduced mitochondrial cristae [42]. Furthermore, sorafenib has been shown to activate the c-Jun N-terminal kinase downstream pathways, leading to disruption of mitochondrial respiration and induction of apoptosis [43]. Imatinib, which functions through inhibiting the activity of BCR-ABL tyrosine kinase, has become the standard treatment for Philadelphia chromosome-positive chronic myeloid leukemia. However, reports from both in\u00a0vivo and in\u00a0vitro studies have highlighted its potential cardiotoxicity. Ultrastructural analysis of cardiac tissue from patients undergoing imatinib therapy has revealed the presence of pleomorphic mitochondria with disrupted cristae. In\u00a0vitro experiments have provided further insights into the mechanisms of this cardiotoxicity. Cardiomyocytes exposed to imatinib for 24 h demonstrate activation of mitochondrial death pathways, triggered by PERK-eIF2\u03b1 signaling. This process is accompanied by accumulation of mitochondrial superoxide and disruption of mitochondrial membrane potential [44]. These findings suggest that mitochondrial homeostasis dysregulation may represent a shared pathophysiological mechanism underlying the cardiotoxicity associated with tyrosine kinase inhibitors. This insight opens up new avenues for therapeutic strategies aimed at mitigating the cardiac side effects of these drugs. Future research focusing on maintaining mitochondrial homeostasis could potentially yield promising interventions to reduce the cardiotoxicity of tyrosine kinase inhibitors.", + "text": "In this study, we discovered that ibrutinib can disrupt the mitochondrial homeostasis in atrial cardiomyocytes. Indeed, the cardiotoxic side effects exhibited by a series of tyrosine kinase inhibitors are closely associated with the mitochondrial homeostasis disturbance. Sunitinib, a widely used vascular endothelial growth factor receptor tyrosine kinase inhibitor for the treatment of metastatic renal cell carcinoma, has been reported to have common cardiotoxicity with an incidence rate of 1% to 10% [1]. Mechanistic studies have revealed that sunitinib can induce myocardial apoptosis [38], which is manifested as the disruption of mitochondrial network structures [39], reduced efficiency of electron transfer, and the accompanying decrease in ATP production [8]. In H9c2 cardiac cell models exposed to sunitinib for 24 h and mouse models treated by gavage for 2 weeks, the collapse of mitochondrial membrane potential and elevated mitochondrial ROS can be observed. Intervention with mito-TEMPO can effectively alleviate mitochondrial dysfunction. Sorafenib, a multitargeted tyrosine kinase inhibitor, has emerged as a first-line treatment for patients with advanced hepatocellular carcinoma and renal cell carcinoma. Evidence suggests that at the therapeutically relevant doses, sorafenib can directly compromise the mitochondrial function of H9c2 cardiomyocytes [40]. The mechanism underlying this cardiotoxicity may be attributed to sorafenib\u2019s role as an effective ferroptosis inducer [41]. Ferroptosis is typically associated with substantial alterations in mitochondrial morphology, characterized by increased mitochondrial membrane density and reduced mitochondrial cristae [42]. Furthermore, sorafenib has been shown to activate the c-Jun N-terminal kinase downstream pathways, leading to disruption of mitochondrial respiration and induction of apoptosis [43]. Imatinib, which functions through inhibiting the activity of BCR-ABL tyrosine kinase, has become the standard treatment for Philadelphia chromosome-positive chronic myeloid leukemia. However, reports from both in\u00a0vivo and in\u00a0vitro studies have highlighted its potential cardiotoxicity. Ultrastructural analysis of cardiac tissue from patients undergoing imatinib therapy has revealed the presence of pleomorphic mitochondria with disrupted cristae. In\u00a0vitro experiments have provided further insights into the mechanisms of this cardiotoxicity. Cardiomyocytes exposed to imatinib for 24 h demonstrate activation of mitochondrial death pathways, triggered by PERK-eIF2\u03b1 signaling. This process is accompanied by accumulation of mitochondrial superoxide and disruption of mitochondrial membrane potential [44]. These findings suggest that mitochondrial homeostasis dysregulation may represent a shared pathophysiological mechanism underlying the cardiotoxicity associated with tyrosine kinase inhibitors. This insight opens up new avenues for therapeutic strategies aimed at mitigating the cardiac side effects of these drugs. Future research focusing on maintaining mitochondrial homeostasis could potentially yield promising interventions to reduce the cardiotoxicity of tyrosine kinase inhibitors." + }, + { + "self_ref": "#/texts/34", + "parent": { + "$ref": "#/texts/27" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "Increasing evidence suggests that targeting mitochondrial homeostasis in the heart could help manage both AF and cardio-oncology. Dipeptidyl peptidase-4 (DPP-4) inhibitors demonstrate upstream preventive effects on AF by enhancing mitochondrial biogenesis [45]. A preclinical study showed that DPP-4 inhibitors can alleviate doxorubicin-induced myocyte deaths [46]. A reduced risk of AF can be observed in patients receiving sodium-glucose co-transporter 2 (SGLT2) inhibitors [47]. The electrophysiological protective actions of SGLT2 inhibitors may be associated with metabolic regulation via AMPK activation, resulting in decreased mitochondrial fission and suppressed ROS generation [48]. Recent research emphasizes the therapeutic promise of SGLT2 inhibitors in cardio-oncology. TriNetX data analysis demonstrated that SGLT2 inhibitors significantly lowered the risk of heart failure worsening and AF in patients with cancer treatment-related cardiac dysfunction [49], which is tied to pharmacological actions of attenuating oxidative stress and stimulating mitochondrial biogenesis [50,51]. AKAP1 overexpression in ibrutinib-treated mice can markedly enhance mitochondrial homeostasis and ultimately decrease the AF risk. Indeed, the AKAP1 overexpression strategy has demonstrated therapeutic benefits by restoring mitochondrial homeostasis in several diseases, including diabetic kidney disease, glaucoma, and diabetic cardiomyopathy [24,25,52]. However, specific pharmacological activators for AKAP1 are not yet available.", + "text": "Increasing evidence suggests that targeting mitochondrial homeostasis in the heart could help manage both AF and cardio-oncology. Dipeptidyl peptidase-4 (DPP-4) inhibitors demonstrate upstream preventive effects on AF by enhancing mitochondrial biogenesis [45]. A preclinical study showed that DPP-4 inhibitors can alleviate doxorubicin-induced myocyte deaths [46]. A reduced risk of AF can be observed in patients receiving sodium-glucose co-transporter 2 (SGLT2) inhibitors [47]. The electrophysiological protective actions of SGLT2 inhibitors may be associated with metabolic regulation via AMPK activation, resulting in decreased mitochondrial fission and suppressed ROS generation [48]. Recent research emphasizes the therapeutic promise of SGLT2 inhibitors in cardio-oncology. TriNetX data analysis demonstrated that SGLT2 inhibitors significantly lowered the risk of heart failure worsening and AF in patients with cancer treatment-related cardiac dysfunction [49], which is tied to pharmacological actions of attenuating oxidative stress and stimulating mitochondrial biogenesis [50,51]. AKAP1 overexpression in ibrutinib-treated mice can markedly enhance mitochondrial homeostasis and ultimately decrease the AF risk. Indeed, the AKAP1 overexpression strategy has demonstrated therapeutic benefits by restoring mitochondrial homeostasis in several diseases, including diabetic kidney disease, glaucoma, and diabetic cardiomyopathy [24,25,52]. However, specific pharmacological activators for AKAP1 are not yet available." + }, + { + "self_ref": "#/texts/35", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/36" + } + ], + "label": "section_header", + "prov": [], + "orig": "Animal model", + "text": "Animal model", + "level": 1 + }, + { + "self_ref": "#/texts/36", + "parent": { + "$ref": "#/texts/35" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "C57BL/6J mice (8 to 10 weeks, weighing 20 to 25 g) were acquired from the Animal Centre at Anzhen Hospital in Beijing, China. The protocols were sanctioned by the Committee for Animal Care and Use of Anzhen Hospital. Following a previously described method, the mice were given daily intraperitoneal doses of ibrutinib at a dose of 30 mg\u00b7kg\u22121\u00b7day\u22121 and were assessed after 14 days of treatment [21]. Mice that received intraperitoneal injections of phosphate-buffered saline (PBS) served as the vehicle control. The biological function of AKAP1 was investigated via checking the cardiac-specific overexpression of AKAP1 in mice transfected with adeno-associated virus 9 (AAV-9). Purified AAV-9 encoding Akap1 was provided by BrainVTA (Wuhan, China) Co. Ltd. The mice were allocated into 4 different groups: AAV9-cTNT-EGFP-Con, AAV9-cTNT-Akap1-Con, AAV9-cTNT-EGFP-Ibru, and AAV9-cTNT-Akap1-Ibru. Each mouse was intravenously injected with 100 \u03bcl of either 5.0 to 6.0 \u00d7 1013 GC/ml AAV9-cTNT-Akap1 or 5.0 to 6.0 \u00d7 1013 GC/ml AAV9-cTNT-EGFP in the tail. All mice were maintained in specific pathogen-free environments with a 12-h light/dark cycle, regulated temperature, and humidity. Food and water were available ad\u00a0libitum throughout the study period.", + "text": "C57BL/6J mice (8 to 10 weeks, weighing 20 to 25 g) were acquired from the Animal Centre at Anzhen Hospital in Beijing, China. The protocols were sanctioned by the Committee for Animal Care and Use of Anzhen Hospital. Following a previously described method, the mice were given daily intraperitoneal doses of ibrutinib at a dose of 30 mg\u00b7kg\u22121\u00b7day\u22121 and were assessed after 14 days of treatment [21]. Mice that received intraperitoneal injections of phosphate-buffered saline (PBS) served as the vehicle control. The biological function of AKAP1 was investigated via checking the cardiac-specific overexpression of AKAP1 in mice transfected with adeno-associated virus 9 (AAV-9). Purified AAV-9 encoding Akap1 was provided by BrainVTA (Wuhan, China) Co. Ltd. The mice were allocated into 4 different groups: AAV9-cTNT-EGFP-Con, AAV9-cTNT-Akap1-Con, AAV9-cTNT-EGFP-Ibru, and AAV9-cTNT-Akap1-Ibru. Each mouse was intravenously injected with 100 \u03bcl of either 5.0 to 6.0 \u00d7 1013 GC/ml AAV9-cTNT-Akap1 or 5.0 to 6.0 \u00d7 1013 GC/ml AAV9-cTNT-EGFP in the tail. All mice were maintained in specific pathogen-free environments with a 12-h light/dark cycle, regulated temperature, and humidity. Food and water were available ad\u00a0libitum throughout the study period." + }, + { + "self_ref": "#/texts/37", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/38" + } + ], + "label": "section_header", + "prov": [], + "orig": "Cell culture and lentivirus transfection", + "text": "Cell culture and lentivirus transfection", + "level": 1 + }, + { + "self_ref": "#/texts/38", + "parent": { + "$ref": "#/texts/37" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "For stable AKAP1 overexpression, HL-1 cells were transduced with either a negative control lentivirus (LV-NC) or an Akap1 overexpression lentivirus (LV-Akap1). The Akap1 overexpression lentivirus was designed, synthesized, and sequence-verified by Obio Technology Corp. (Shanghai, China). To mimic ibrutinib exposure on the atrial myocytes, the HL-1 cells were treated with 1 \u03bcM of ibrutinib for 24 h before experimental determinations, as detailed in the related prior study [53].", + "text": "For stable AKAP1 overexpression, HL-1 cells were transduced with either a negative control lentivirus (LV-NC) or an Akap1 overexpression lentivirus (LV-Akap1). The Akap1 overexpression lentivirus was designed, synthesized, and sequence-verified by Obio Technology Corp. (Shanghai, China). To mimic ibrutinib exposure on the atrial myocytes, the HL-1 cells were treated with 1 \u03bcM of ibrutinib for 24 h before experimental determinations, as detailed in the related prior study [53]." + }, + { + "self_ref": "#/texts/39", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/40" + } + ], + "label": "section_header", + "prov": [], + "orig": "In vivo electrophysiology study", + "text": "In vivo electrophysiology study", + "level": 1 + }, + { + "self_ref": "#/texts/40", + "parent": { + "$ref": "#/texts/39" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "Electrophysiological studies on the mice were conducted following previously described methods [21]. To be brief, mice were anesthetized via the intraperitoneal injection of 1% pentobarbital sodium. ECGs were recorded from surface limb leads. The electrode was introduced through the esophagus in close proximity to the LA, to capture ECGs with PowerLab and LabChart\u00a07 software. Rapid pacing (10 ms at 30 Hz) was employed to evaluate susceptibility to pacing-induced AF. The AF phenotype was identified by distinguishing it from sinus rhythm phenotype when the ECGs demonstrated an absence of distinct P waves. We used this characteristic to differentiate AF from sinus rhythm. The restoration of sinus rhythm was confirmed by observing the detectable P waves. Duration of AF episodes of each animal was documented.", + "text": "Electrophysiological studies on the mice were conducted following previously described methods [21]. To be brief, mice were anesthetized via the intraperitoneal injection of 1% pentobarbital sodium. ECGs were recorded from surface limb leads. The electrode was introduced through the esophagus in close proximity to the LA, to capture ECGs with PowerLab and LabChart\u00a07 software. Rapid pacing (10 ms at 30 Hz) was employed to evaluate susceptibility to pacing-induced AF. The AF phenotype was identified by distinguishing it from sinus rhythm phenotype when the ECGs demonstrated an absence of distinct P waves. We used this characteristic to differentiate AF from sinus rhythm. The restoration of sinus rhythm was confirmed by observing the detectable P waves. Duration of AF episodes of each animal was documented." + }, + { + "self_ref": "#/texts/41", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/42" + } + ], + "label": "section_header", + "prov": [], + "orig": "Echocardiography", + "text": "Echocardiography", + "level": 1 + }, + { + "self_ref": "#/texts/42", + "parent": { + "$ref": "#/texts/41" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "The Vevo 2100 Imaging System (FUJIFILM VisualSonics, Inc.) was employed to assess cardiac structural and functional parameters [21]. Initially, mice from each group were anesthetized using ether. Following effective sedation, the mice were laid in the supine position, their fur was trimmed, and their skin was cleansed before examining the atrial structural indicators. Ultrasound assessments were conducted to measure the LA diameter and area. A technician blinded to the grouping of the mice conducted the echocardiographic examination.", + "text": "The Vevo 2100 Imaging System (FUJIFILM VisualSonics, Inc.) was employed to assess cardiac structural and functional parameters [21]. Initially, mice from each group were anesthetized using ether. Following effective sedation, the mice were laid in the supine position, their fur was trimmed, and their skin was cleansed before examining the atrial structural indicators. Ultrasound assessments were conducted to measure the LA diameter and area. A technician blinded to the grouping of the mice conducted the echocardiographic examination." + }, + { + "self_ref": "#/texts/43", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/44" + } + ], + "label": "section_header", + "prov": [], + "orig": "Transmission electron microscopy", + "text": "Transmission electron microscopy", + "level": 1 + }, + { + "self_ref": "#/texts/44", + "parent": { + "$ref": "#/texts/43" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "Retrograde aortic perfusion with 2.5% glutaraldehyde was employed to fix left atrial tissue samples from each group. Subsequently, the myocardial tissues of the mice were processed according to standard protocols and examined using TEM as described in our previous study [21]", + "text": "Retrograde aortic perfusion with 2.5% glutaraldehyde was employed to fix left atrial tissue samples from each group. Subsequently, the myocardial tissues of the mice were processed according to standard protocols and examined using TEM as described in our previous study [21]" + }, + { + "self_ref": "#/texts/45", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/46" + } + ], + "label": "section_header", + "prov": [], + "orig": "Single-cell RNA-seq analysis", + "text": "Single-cell RNA-seq analysis", + "level": 1 + }, + { + "self_ref": "#/texts/46", + "parent": { + "$ref": "#/texts/45" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "The single-cell transcriptome dataset (GSE161016, PRJNA815461) from the Gene Expression Omnibus database, which includes data from the atrial tissue of healthy controls and patients with persistent AF, was utilized in this study [54,55]. Single-cell RNA-seq data of the atrial appendage tissue from the patients with AF were acquired from PRJNA815461, while that of the atrial tissue from the control group was obtained from 2 patients who had no prior history of coronary artery disease (GSE16101). The Seurat R package was employed to preprocess the raw data. Single cells were filtered (cells expressing a range of 500 to 4,000 unique genes and less than 10% mitochondrial transcripts were retained) for the subsequent analysis. Uniform manifold approximation and projection was used to group and visualize the cells, allowing for a clear differentiation and visualization of cell clusters. Statistically significant cell marker genes (adjusted P < 0.05) were identified and utilized to classify the clustered cells into their respective cell types. The FeaturePlot function was then used for gene expression distributions. Furthermore, the R package AUCell was utilized to assess the mitochondria-related pathway activities of specific cells.", + "text": "The single-cell transcriptome dataset (GSE161016, PRJNA815461) from the Gene Expression Omnibus database, which includes data from the atrial tissue of healthy controls and patients with persistent AF, was utilized in this study [54,55]. Single-cell RNA-seq data of the atrial appendage tissue from the patients with AF were acquired from PRJNA815461, while that of the atrial tissue from the control group was obtained from 2 patients who had no prior history of coronary artery disease (GSE16101). The Seurat R package was employed to preprocess the raw data. Single cells were filtered (cells expressing a range of 500 to 4,000 unique genes and less than 10% mitochondrial transcripts were retained) for the subsequent analysis. Uniform manifold approximation and projection was used to group and visualize the cells, allowing for a clear differentiation and visualization of cell clusters. Statistically significant cell marker genes (adjusted P < 0.05) were identified and utilized to classify the clustered cells into their respective cell types. The FeaturePlot function was then used for gene expression distributions. Furthermore, the R package AUCell was utilized to assess the mitochondria-related pathway activities of specific cells." + }, + { + "self_ref": "#/texts/47", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/48" + }, + { + "$ref": "#/texts/49" + } + ], + "label": "section_header", + "prov": [], + "orig": "Confocal imaging", + "text": "Confocal imaging", + "level": 1 + }, + { + "self_ref": "#/texts/48", + "parent": { + "$ref": "#/texts/47" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "Fluorescent images were obtained with a 40\u00d7 oil immersion objective on the laser scanning confocal microscope operating in line-scan mode (400 Hz). Cells were plated on gelatin-coated cytospin slides, allowed to air dry, and fixed with paraformaldehyde for 30 min at 20\u00b0C. Following a PBS wash, the cells were permeabilized for 15 min with 0.3% Triton X-100 and then blocked at room temperature with 10% bovine serum albumin for 1 h. Then, cells were incubated overnight at 4\u00b0C with primary antibodies, followed by the treatment with fluorescence-labeled secondary antibodies for 1 h. The nuclei were stained using 4\u2032,6-diamidino-2-phenylindole. Table S1 lists the antibodies used for immunofluorescence.", + "text": "Fluorescent images were obtained with a 40\u00d7 oil immersion objective on the laser scanning confocal microscope operating in line-scan mode (400 Hz). Cells were plated on gelatin-coated cytospin slides, allowed to air dry, and fixed with paraformaldehyde for 30 min at 20\u00b0C. Following a PBS wash, the cells were permeabilized for 15 min with 0.3% Triton X-100 and then blocked at room temperature with 10% bovine serum albumin for 1 h. Then, cells were incubated overnight at 4\u00b0C with primary antibodies, followed by the treatment with fluorescence-labeled secondary antibodies for 1 h. The nuclei were stained using 4\u2032,6-diamidino-2-phenylindole. Table S1 lists the antibodies used for immunofluorescence." + }, + { + "self_ref": "#/texts/49", + "parent": { + "$ref": "#/texts/47" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "MitoTracker Red (0.5 \u03bcM, 30 min) was employed to analyze mitochondrial morphology. The form factor and aspect ratio of mitochondria were quantified based on the number of branches, branch junctions, and the total branch length in the mitochondrial skeleton [56]. JC-1 dye (1 \u03bcM, 30 min) was employed to evaluate mitochondrial membrane potential, with the ratio of red fluorescence (aggregated) to green fluorescence (monomeric) indicating the mitochondrial membrane potential. Mitochondrial superoxide production was evaluated using the MitoSOX Red (5 \u03bcM, 20 min) Reagent.", + "text": "MitoTracker Red (0.5 \u03bcM, 30 min) was employed to analyze mitochondrial morphology. The form factor and aspect ratio of mitochondria were quantified based on the number of branches, branch junctions, and the total branch length in the mitochondrial skeleton [56]. JC-1 dye (1 \u03bcM, 30 min) was employed to evaluate mitochondrial membrane potential, with the ratio of red fluorescence (aggregated) to green fluorescence (monomeric) indicating the mitochondrial membrane potential. Mitochondrial superoxide production was evaluated using the MitoSOX Red (5 \u03bcM, 20 min) Reagent." + }, + { + "self_ref": "#/texts/50", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/51" + } + ], + "label": "section_header", + "prov": [], + "orig": "Isolation of primary atrial myocytes and atrial mitochondria", + "text": "Isolation of primary atrial myocytes and atrial mitochondria", + "level": 1 + }, + { + "self_ref": "#/texts/51", + "parent": { + "$ref": "#/texts/50" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "Atrial myocytes were isolated using the established enzyme digestion protocol utilizing the Langendorff retrograde perfusion technique [57]. To promote adherence, the isolated atrial myocytes were seeded onto a laminin-coated dish. More detailed methodological information of atrial myocytes isolation can be found in the Supplementary Materials. In this study, mitochondria were isolated from atrial myocytes using a mitochondrial isolation kit (Thermo Fisher Scientific, USA). The first step involved collecting the atrial myocytes and centrifuging them at 700 g for 5 min at 4 \u00b0C to remove the supernatant. The cell pellet was then washed twice with pre-chilled 1\u00d7PBS. Subsequently, the cells were resuspended in mitochondrial isolation buffer and subjected to gentle mechanical disruption on ice to lyse the cells. The lysed suspension underwent differential centrifugation: an initial low-speed spin to remove intact cells and larger debris, followed by a high-speed spin to pellet the mitochondria. The resulting mitochondrial samples were either used immediately or stored at \u221280 \u00b0C until further Western blot analysis. The entire procedure was carried out under cold conditions to ensure the integrity and functionality of the mitochondria. For more detailed information, please refer to the manufacturer\u2019s manual (Thermo Fisher Scientific, USA).", + "text": "Atrial myocytes were isolated using the established enzyme digestion protocol utilizing the Langendorff retrograde perfusion technique [57]. To promote adherence, the isolated atrial myocytes were seeded onto a laminin-coated dish. More detailed methodological information of atrial myocytes isolation can be found in the Supplementary Materials. In this study, mitochondria were isolated from atrial myocytes using a mitochondrial isolation kit (Thermo Fisher Scientific, USA). The first step involved collecting the atrial myocytes and centrifuging them at 700 g for 5 min at 4 \u00b0C to remove the supernatant. The cell pellet was then washed twice with pre-chilled 1\u00d7PBS. Subsequently, the cells were resuspended in mitochondrial isolation buffer and subjected to gentle mechanical disruption on ice to lyse the cells. The lysed suspension underwent differential centrifugation: an initial low-speed spin to remove intact cells and larger debris, followed by a high-speed spin to pellet the mitochondria. The resulting mitochondrial samples were either used immediately or stored at \u221280 \u00b0C until further Western blot analysis. The entire procedure was carried out under cold conditions to ensure the integrity and functionality of the mitochondria. For more detailed information, please refer to the manufacturer\u2019s manual (Thermo Fisher Scientific, USA)." + }, + { + "self_ref": "#/texts/52", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/53" + } + ], + "label": "section_header", + "prov": [], + "orig": "Western blot analysis", + "text": "Western blot analysis", + "level": 1 + }, + { + "self_ref": "#/texts/53", + "parent": { + "$ref": "#/texts/52" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "Atrial tissues or cultured cell specimens were analyzed using a previously described Western blot protocol. In brief, the samples were lysed in ice-cold RIPA lysis buffer containing 10 mM of Tris-Cl (pH 8.0), 1 mM of EDTA, 1% Triton X-100, 0.1% sodium deoxycholate, 0.1% SDS, 150 mM of NaCl, 1 mM of phenylmethylsulfonyl fluoride, and 0.02 mg/ml each of aprotinin, leupeptin, and pepstatin. The lysates were sonicated and clarified by centrifugation. Protein concentration was determined using a Bradford assay. Then, sodium dodecyl sulfate\u2013polyacrylamide gel electrophoresis was employed to separate 50 to 100 mg of proteins per lane. The resolved proteins were then transferred to a polyvinylidene difluoride membrane and subsequently incubated with the antibodies documented in Table S1.", + "text": "Atrial tissues or cultured cell specimens were analyzed using a previously described Western blot protocol. In brief, the samples were lysed in ice-cold RIPA lysis buffer containing 10 mM of Tris-Cl (pH 8.0), 1 mM of EDTA, 1% Triton X-100, 0.1% sodium deoxycholate, 0.1% SDS, 150 mM of NaCl, 1 mM of phenylmethylsulfonyl fluoride, and 0.02 mg/ml each of aprotinin, leupeptin, and pepstatin. The lysates were sonicated and clarified by centrifugation. Protein concentration was determined using a Bradford assay. Then, sodium dodecyl sulfate\u2013polyacrylamide gel electrophoresis was employed to separate 50 to 100 mg of proteins per lane. The resolved proteins were then transferred to a polyvinylidene difluoride membrane and subsequently incubated with the antibodies documented in Table S1." + }, + { + "self_ref": "#/texts/54", + "parent": { + "$ref": "#/body" + }, + "children": [ + { + "$ref": "#/texts/55" + } + ], + "label": "section_header", + "prov": [], + "orig": "mtDNA copy number and quantitative PCR", + "text": "mtDNA copy number and quantitative PCR", + "level": 1 + }, + { + "self_ref": "#/texts/55", + "parent": { + "$ref": "#/texts/54" + }, + "children": [], + "label": "text", + "prov": [], + "orig": "The mitochondrial DNA copy number was determined by comparing the cytochrome c oxidase subunit 3 (Cox3) mtDNA gene with the UCP2 nuclear gene using quantitative polymerase chain reaction (qPCR). To quantify mtDNA mRNA, Trizol reagent (Life Technologies Inc., Carlsbad, CA, USA) was used to extract total RNA, which was then reverse-transcribed using oligo (dT)-primed cDNA. Table S2 provides the primers utilized for qPCR analysis of the respective sequences.", + "text": "The mitochondrial DNA copy number was determined by comparing the cytochrome c oxidase subunit 3 (Cox3) mtDNA gene with the UCP2 nuclear gene using quantitative polymerase chain reaction (qPCR). To quantify mtDNA mRNA, Trizol reagent (Life Technologies Inc., Carlsbad, CA, USA) was used to extract total RNA, which was then reverse-transcribed using oligo (dT)-primed cDNA. Table S2 provides the primers utilized for qPCR analysis of the respective sequences." + }, + { + "self_ref": "#/texts/56", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "section_header", + "prov": [], + "orig": "Figures", + "text": "Figures", + "level": 1 + }, + { + "self_ref": "#/texts/57", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [], + "orig": "Fig.\u00a01. Ibrutinib induces atrial fibrillation (AF) by impairing mitochondrial function and structures of atrial myocytes. (A and B) Expression heatmap and volcano map of differentially expressed atrial proteins, illustrating that 170 proteins were up-regulated and 208 were down-regulated in ibrutinib-treated mice compared with control mice. N = 3 independent mice per group. (C to H) Gene Ontology and KEGG enrichment analysis of the 378 differentially expressed proteins in atrial tissue. (I to L) GSEA of differentially expressed proteins following ibrutinib treatment.", + "text": "Fig.\u00a01. Ibrutinib induces atrial fibrillation (AF) by impairing mitochondrial function and structures of atrial myocytes. (A and B) Expression heatmap and volcano map of differentially expressed atrial proteins, illustrating that 170 proteins were up-regulated and 208 were down-regulated in ibrutinib-treated mice compared with control mice. N = 3 independent mice per group. (C to H) Gene Ontology and KEGG enrichment analysis of the 378 differentially expressed proteins in atrial tissue. (I to L) GSEA of differentially expressed proteins following ibrutinib treatment." + }, + { + "self_ref": "#/texts/58", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [], + "orig": "Fig.\u00a02. Ibrutinib disrupts mitochondrial homeostasis by down-regulating atrial AKAP1 expression. (A) Volcano plot labeled with the top mitochondria-related differentially expressed proteins. (B) Expression of marker genes for cell-type annotation is indicated on the DotPlot. (C) Uniform manifold approximation and projection representation of all single cells color-coded for their assigned major cell type. (D and E) Featureplots showing the expression patterns of AKAP1 and DRP1 in atrial tissues from AF and control groups. (F to H) Analysis of the correlation between AKAP1 expression and activity score of mitochondria-related pathways. (I) Atrial pan-subpopulation correlation analysis of AKAP1 expression and OXPHOS pathway activity. (J) Molecular docking analysis of the interaction between ibrutinib and AKAP1.", + "text": "Fig.\u00a02. Ibrutinib disrupts mitochondrial homeostasis by down-regulating atrial AKAP1 expression. (A) Volcano plot labeled with the top mitochondria-related differentially expressed proteins. (B) Expression of marker genes for cell-type annotation is indicated on the DotPlot. (C) Uniform manifold approximation and projection representation of all single cells color-coded for their assigned major cell type. (D and E) Featureplots showing the expression patterns of AKAP1 and DRP1 in atrial tissues from AF and control groups. (F to H) Analysis of the correlation between AKAP1 expression and activity score of mitochondria-related pathways. (I) Atrial pan-subpopulation correlation analysis of AKAP1 expression and OXPHOS pathway activity. (J) Molecular docking analysis of the interaction between ibrutinib and AKAP1." + }, + { + "self_ref": "#/texts/59", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [], + "orig": "Fig.\u00a03. AKAP1 binding mediates DRP1 phosphorylation in atrial myocytes. (A) Immunofluorescence imaging of AKAP1 and DRP1 in ibrutinib-treated atrial myocytes. (B to F) Proteins were isolated from atrial myocytes. Western blotting was used to assess AKAP1, DRP1, FIS1, and phosphorylated DRP1 expression levels. ***P < 0.001. ns, not significant.", + "text": "Fig.\u00a03. AKAP1 binding mediates DRP1 phosphorylation in atrial myocytes. (A) Immunofluorescence imaging of AKAP1 and DRP1 in ibrutinib-treated atrial myocytes. (B to F) Proteins were isolated from atrial myocytes. Western blotting was used to assess AKAP1, DRP1, FIS1, and phosphorylated DRP1 expression levels. ***P < 0.001. ns, not significant." + }, + { + "self_ref": "#/texts/60", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [], + "orig": "Fig.\u00a04. Ibrutinib-induced AKAP1 depletion promotes mitochondrial fission and membrane depolarization via DRP1 dephosphorylation. (A to E) MitoTracker staining for labeling mitochondria in atrial myocytes in\u00a0vitro. Average mitochondrial length, ratio of fragmented/tubular mitochondria, and mitochondrial morphological parameters were determined. (F to N) Western blot analysis of mitochondrial DRP1 (mito-DRP1), total DRP1 (t-DRP1), phosphorylated DRP1, FIS1, MFN1, and OPA1 in HL-1 cells. VDAC1 was used as a loading control for mitochondrial proteins. (O) Red-to-green ratio of JC-1 fluorescence intensity. (P) Atrial myocytes loaded with JC-1 to analyze changes in mitochondrial membrane potential. N = 8 independent cell samples per group. **P < 0.01, ***P < 0.001.", + "text": "Fig.\u00a04. Ibrutinib-induced AKAP1 depletion promotes mitochondrial fission and membrane depolarization via DRP1 dephosphorylation. (A to E) MitoTracker staining for labeling mitochondria in atrial myocytes in\u00a0vitro. Average mitochondrial length, ratio of fragmented/tubular mitochondria, and mitochondrial morphological parameters were determined. (F to N) Western blot analysis of mitochondrial DRP1 (mito-DRP1), total DRP1 (t-DRP1), phosphorylated DRP1, FIS1, MFN1, and OPA1 in HL-1 cells. VDAC1 was used as a loading control for mitochondrial proteins. (O) Red-to-green ratio of JC-1 fluorescence intensity. (P) Atrial myocytes loaded with JC-1 to analyze changes in mitochondrial membrane potential. N = 8 independent cell samples per group. **P < 0.01, ***P < 0.001." + }, + { + "self_ref": "#/texts/61", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [], + "orig": "Fig.\u00a05. AKAP1 deficiency impairs mitochondrial respiratory function and promotes metabolic reprogramming in atrial myocytes. (A to F) Analysis of HL-1 mitochondrial bioenergetics using the Seahorse XFe96 Analyzer. OCR measurements were taken continuously from baseline and after the sequential addition of 2 mM oligomycin, 1 mM FCCP, and 0.5 mM R/A to measure basal respiration, maximal respiration, spare respiratory capacity, proton leak, and ATP-production levels. (G to J) Total and individual rates of ATP production as mediated by glycolysis or mitochondrial metabolism in HL-1 cells transduced with control and LV-Akap1. (K) Ratio between ATP produced by OXPHOS and that by glycolysis in HL-1 cells transduced with control and LV-Akap1. (L and M) ELISA analysis of mitochondrial respiration complex I/III activities. N = 8 independent cell samples per group. *P < 0.05, **P < 0.01, ***P < 0.001.", + "text": "Fig.\u00a05. AKAP1 deficiency impairs mitochondrial respiratory function and promotes metabolic reprogramming in atrial myocytes. (A to F) Analysis of HL-1 mitochondrial bioenergetics using the Seahorse XFe96 Analyzer. OCR measurements were taken continuously from baseline and after the sequential addition of 2 mM oligomycin, 1 mM FCCP, and 0.5 mM R/A to measure basal respiration, maximal respiration, spare respiratory capacity, proton leak, and ATP-production levels. (G to J) Total and individual rates of ATP production as mediated by glycolysis or mitochondrial metabolism in HL-1 cells transduced with control and LV-Akap1. (K) Ratio between ATP produced by OXPHOS and that by glycolysis in HL-1 cells transduced with control and LV-Akap1. (L and M) ELISA analysis of mitochondrial respiration complex I/III activities. N = 8 independent cell samples per group. *P < 0.05, **P < 0.01, ***P < 0.001." + }, + { + "self_ref": "#/texts/62", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [], + "orig": "Fig.\u00a06. AKAP1 down-regulation in impaired mitochondrial biogenesis, oxidative stress, and inflammation. (A to C) qPCR analysis of mitochondrial biogenesis parameters (mtDNA copy number, PGC-1\u03b1, and NRF1). (D and E) ELISA analysis of redox balance biomarkers, including MDA and GSH contents. (F and G) MitoSOX staining of mitochondrial ROS in HL-1 cells. (H) Visual GSEA of inflammation response pathway in ibrutinib-treated myocytes. (I to K) ELISA of atrial inflammatory biomarkers, including TNF-\u03b1, IL-6, and IL-18. N = 8 independent cell samples per group. *P < 0.05, **P < 0.01, ***P < 0.001.", + "text": "Fig.\u00a06. AKAP1 down-regulation in impaired mitochondrial biogenesis, oxidative stress, and inflammation. (A to C) qPCR analysis of mitochondrial biogenesis parameters (mtDNA copy number, PGC-1\u03b1, and NRF1). (D and E) ELISA analysis of redox balance biomarkers, including MDA and GSH contents. (F and G) MitoSOX staining of mitochondrial ROS in HL-1 cells. (H) Visual GSEA of inflammation response pathway in ibrutinib-treated myocytes. (I to K) ELISA of atrial inflammatory biomarkers, including TNF-\u03b1, IL-6, and IL-18. N = 8 independent cell samples per group. *P < 0.05, **P < 0.01, ***P < 0.001." + }, + { + "self_ref": "#/texts/63", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [], + "orig": "Fig.\u00a07. AKAP1 overexpression prevents ibrutinib-induced AF by improving MQS and restoring mitochondrial function. (A) Simultaneous recordings of surface ECG following intraesophageal burst pacing. (B) Quantification of AF time. (C) AF inducibility in control and ibrutinib-treated mice with and without AAV-Akap1 transfection. (D and E) Myocardial fibrosis was assessed in each group through Sirius Red staining. The proportion of fibrotic tissue to myocardial tissue was quantified for each group. (F to I) Western blot analysis of total DRP1 (t-DRP1), phosphorylated DRP1, MFN1, and NRF1 in atrial tissues. (J and K) Images and quantification of isolated atrial myocytes loaded with the mitochondrial ROS indicator MitoSox Red. (L to P) ELISA of MQS/redox/inflammation biomarkers, including complex I/III, MDA, GSH, and IL-18. N = 8 mice per group. *P < 0.05, **P < 0.01, ***P < 0.001.", + "text": "Fig.\u00a07. AKAP1 overexpression prevents ibrutinib-induced AF by improving MQS and restoring mitochondrial function. (A) Simultaneous recordings of surface ECG following intraesophageal burst pacing. (B) Quantification of AF time. (C) AF inducibility in control and ibrutinib-treated mice with and without AAV-Akap1 transfection. (D and E) Myocardial fibrosis was assessed in each group through Sirius Red staining. The proportion of fibrotic tissue to myocardial tissue was quantified for each group. (F to I) Western blot analysis of total DRP1 (t-DRP1), phosphorylated DRP1, MFN1, and NRF1 in atrial tissues. (J and K) Images and quantification of isolated atrial myocytes loaded with the mitochondrial ROS indicator MitoSox Red. (L to P) ELISA of MQS/redox/inflammation biomarkers, including complex I/III, MDA, GSH, and IL-18. N = 8 mice per group. *P < 0.05, **P < 0.01, ***P < 0.001." + }, + { + "self_ref": "#/texts/64", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "caption", + "prov": [], + "orig": "Fig.\u00a08. This schematic illustrates the proposed mechanism by which ibrutinib promotes atrial fibrillation (AF). Ibrutinib treatment leads to the downregulation of A-kinase anchoring protein 1 (AKAP1), triggering mitochondrial quality surveillance (MQS) impairment. This results in enhanced translocation of dynamin-related protein 1 (DRP1) to the mitochondria, driving mitochondrial fission. Concurrently, metabolic reprogramming is characterized by increased glycolysis and decreased oxidative phosphorylation (OXPHOS), alongside reduced mitochondrial biogenesis. These mitochondrial dysfunctions elevate oxidative stress and inflammatory responses, contributing to atrial metabolic and structural remodeling, ultimately leading to ibrutinib-induced AF.", + "text": "Fig.\u00a08. This schematic illustrates the proposed mechanism by which ibrutinib promotes atrial fibrillation (AF). Ibrutinib treatment leads to the downregulation of A-kinase anchoring protein 1 (AKAP1), triggering mitochondrial quality surveillance (MQS) impairment. This results in enhanced translocation of dynamin-related protein 1 (DRP1) to the mitochondria, driving mitochondrial fission. Concurrently, metabolic reprogramming is characterized by increased glycolysis and decreased oxidative phosphorylation (OXPHOS), alongside reduced mitochondrial biogenesis. These mitochondrial dysfunctions elevate oxidative stress and inflammatory responses, contributing to atrial metabolic and structural remodeling, ultimately leading to ibrutinib-induced AF." + }, + { + "self_ref": "#/texts/65", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "section_header", + "prov": [], + "orig": "References", + "text": "References", + "level": 1 + }, + { + "self_ref": "#/texts/66", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "AR Lyon; T L\u00f3pez-Fern\u00e1ndez; LS Couch; R Asteggiano; MC Aznar; J Bergler-Klein; G Boriani; D Cardinale; R Cordoba; B Cosyns; . ESC scientific document group, 2022 ESC guidelines on cardio-oncology developed in collaboration with the European Hematology Association (EHA), the European Society for Therapeutic Radiology and Oncology (ESTRO) and the International Cardio-Oncology Society (IC-OS).. Eur Heart J (2022)", + "text": "AR Lyon; T L\u00f3pez-Fern\u00e1ndez; LS Couch; R Asteggiano; MC Aznar; J Bergler-Klein; G Boriani; D Cardinale; R Cordoba; B Cosyns; . ESC scientific document group, 2022 ESC guidelines on cardio-oncology developed in collaboration with the European Hematology Association (EHA), the European Society for Therapeutic Radiology and Oncology (ESTRO) and the International Cardio-Oncology Society (IC-OS).. Eur Heart J (2022)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/67", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "JJ Moslehi. Cardio-oncology: A new clinical frontier and novel platform for cardiovascular investigation.. Circulation (2024)", + "text": "JJ Moslehi. Cardio-oncology: A new clinical frontier and novel platform for cardiovascular investigation.. Circulation (2024)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/68", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "B Zhou; Z Wang; Q Dou; W Li; Y Li; Z Yan; P Sun; B Zhao; X Li; F Shen; . Long-term outcomes of esophageal and gastric cancer patients with cardiovascular and metabolic diseases: A two-center propensity score-matched cohort study.. J Transl Int Med (2023)", + "text": "B Zhou; Z Wang; Q Dou; W Li; Y Li; Z Yan; P Sun; B Zhao; X Li; F Shen; . Long-term outcomes of esophageal and gastric cancer patients with cardiovascular and metabolic diseases: A two-center propensity score-matched cohort study.. J Transl Int Med (2023)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/69", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "JA Burger; A Tedeschi; PM Barr; T Robak; C Owen; P Ghia; O Bairey; P Hillmen; NL Bartlett; J Li; . Ibrutinib as initial therapy for patients with chronic lymphocytic leukemia.. N Engl J Med (2015)", + "text": "JA Burger; A Tedeschi; PM Barr; T Robak; C Owen; P Ghia; O Bairey; P Hillmen; NL Bartlett; J Li; . Ibrutinib as initial therapy for patients with chronic lymphocytic leukemia.. N Engl J Med (2015)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/70", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "S O\u2019Brien; RR Furman; S Coutre; IW Flinn; JA Burger; K Blum; J Sharman; W Wierda; J Jones; W Zhao; . Single-agent ibrutinib in treatment-na\u00efve and relapsed/refractory chronic lymphocytic leukemia: A 5-year experience.. Blood (2018)", + "text": "S O\u2019Brien; RR Furman; S Coutre; IW Flinn; JA Burger; K Blum; J Sharman; W Wierda; J Jones; W Zhao; . Single-agent ibrutinib in treatment-na\u00efve and relapsed/refractory chronic lymphocytic leukemia: A 5-year experience.. Blood (2018)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/71", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "WJ Archibald; KG Rabe; BF Kabat; J Herrmann; W Ding; NE Kay; SS Kenderian; E Muchtar; JF Leis; Y Wang; . Atrial fibrillation in patients with chronic lymphocytic leukemia (CLL) treated with ibrutinib: Risk prediction, management, and clinical outcomes.. Ann Hematol (2021)", + "text": "WJ Archibald; KG Rabe; BF Kabat; J Herrmann; W Ding; NE Kay; SS Kenderian; E Muchtar; JF Leis; Y Wang; . Atrial fibrillation in patients with chronic lymphocytic leukemia (CLL) treated with ibrutinib: Risk prediction, management, and clinical outcomes.. Ann Hematol (2021)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/72", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "F Caron; DP Leong; C Hillis; G Fraser; D Siegal. Current understanding of bleeding with ibrutinib use: A systematic review and meta-analysis.. Blood Adv (2017)", + "text": "F Caron; DP Leong; C Hillis; G Fraser; D Siegal. Current understanding of bleeding with ibrutinib use: A systematic review and meta-analysis.. Blood Adv (2017)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/73", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "S Gorini; A De Angelis; L Berrino; N Malara; G Rosano; E Ferraro. Chemotherapeutic drugs and mitochondrial dysfunction: Focus on doxorubicin, trastuzumab, and sunitinib.. Oxidative Med Cell Longev (2018)", + "text": "S Gorini; A De Angelis; L Berrino; N Malara; G Rosano; E Ferraro. Chemotherapeutic drugs and mitochondrial dysfunction: Focus on doxorubicin, trastuzumab, and sunitinib.. Oxidative Med Cell Longev (2018)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/74", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "J Wu; N Liu; J Chen; Q Tao; Q Li; J Li; X Chen; C Peng. The tricarboxylic acid cycle metabolites for cancer: Friend or enemy.. Research (2024)", + "text": "J Wu; N Liu; J Chen; Q Tao; Q Li; J Li; X Chen; C Peng. The tricarboxylic acid cycle metabolites for cancer: Friend or enemy.. Research (2024)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/75", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "JC Bikomeye; JD Terwoord; JH Santos; AM Beyer. Emerging mitochondrial signaling mechanisms in cardio-oncology: Beyond oxidative stress.. Am J Physiol Heart Circ Physiol (2022)", + "text": "JC Bikomeye; JD Terwoord; JH Santos; AM Beyer. Emerging mitochondrial signaling mechanisms in cardio-oncology: Beyond oxidative stress.. Am J Physiol Heart Circ Physiol (2022)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/76", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "FE Mason; JRD Pronto; K Alhussini; C Maack; N Voigt. Cellular and mitochondrial mechanisms of atrial fibrillation.. Basic Res Cardiol (2020)", + "text": "FE Mason; JRD Pronto; K Alhussini; C Maack; N Voigt. Cellular and mitochondrial mechanisms of atrial fibrillation.. Basic Res Cardiol (2020)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/77", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "Y Yang; MB Muisha; J Zhang; Y Sun; Z Li. Research progress on N6-adenosylate methylation RNA modification in heart failure remodeling.. J Transl Int Med (2022)", + "text": "Y Yang; MB Muisha; J Zhang; Y Sun; Z Li. Research progress on N6-adenosylate methylation RNA modification in heart failure remodeling.. J Transl Int Med (2022)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/78", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "Y Li; R Lin; X Peng; X Wang; X Liu; L Li; R Bai; S Wen; Y Ruan; X Chang; . The role of mitochondrial quality control in anthracycline-induced cardiotoxicity: From bench to bedside.. Oxidative Med Cell Longev (2022)", + "text": "Y Li; R Lin; X Peng; X Wang; X Liu; L Li; R Bai; S Wen; Y Ruan; X Chang; . The role of mitochondrial quality control in anthracycline-induced cardiotoxicity: From bench to bedside.. Oxidative Med Cell Longev (2022)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/79", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "S Helling; S Vogt; A Rhiel; R Ramzan; L Wen; K Marcus; B Kadenbach. Phosphorylation and kinetics of mammalian cytochrome c oxidase.. Mol Cell Proteomics (2008)", + "text": "S Helling; S Vogt; A Rhiel; R Ramzan; L Wen; K Marcus; B Kadenbach. Phosphorylation and kinetics of mammalian cytochrome c oxidase.. Mol Cell Proteomics (2008)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/80", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "B Ludwig; E Bender; S Arnold; M H\u00fcttemann; I Lee; B Kadenbach. Cytochrome C oxidase and the regulation of oxidative phosphorylation.. Chembiochem (2001)", + "text": "B Ludwig; E Bender; S Arnold; M H\u00fcttemann; I Lee; B Kadenbach. Cytochrome C oxidase and the regulation of oxidative phosphorylation.. Chembiochem (2001)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/81", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "S Papa; D De Rasmo; S Scacco; A Signorile; Z Technikova-Dobrova; G Palmisano; AM Sardanelli; F Papa; D Panelli; R Scaringi; . Mammalian complex I: A regulable and vulnerable pacemaker in mitochondrial respiratory function.. Biochim Biophys Acta (2008)", + "text": "S Papa; D De Rasmo; S Scacco; A Signorile; Z Technikova-Dobrova; G Palmisano; AM Sardanelli; F Papa; D Panelli; R Scaringi; . Mammalian complex I: A regulable and vulnerable pacemaker in mitochondrial respiratory function.. Biochim Biophys Acta (2008)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/82", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "JT Cribbs; S Strack. Reversible phosphorylation of Drp1 by cyclic AMP-dependent protein kinase and calcineurin regulates mitochondrial fission and cell death.. EMBO Rep (2007)", + "text": "JT Cribbs; S Strack. Reversible phosphorylation of Drp1 by cyclic AMP-dependent protein kinase and calcineurin regulates mitochondrial fission and cell death.. EMBO Rep (2007)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/83", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "JR McMullen; EJH Boey; JYY Ooi; JF Seymour; MJ Keating; CS Tam. Ibrutinib increases the risk of atrial fibrillation, potentially through inhibition of cardiac PI3K-Akt signaling.. Blood (2014)", + "text": "JR McMullen; EJH Boey; JYY Ooi; JF Seymour; MJ Keating; CS Tam. Ibrutinib increases the risk of atrial fibrillation, potentially through inhibition of cardiac PI3K-Akt signaling.. Blood (2014)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/84", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "L Xiao; J-E Salem; S Clauss; A Hanley; A Bapat; M Hulsmans; Y Iwamoto; G Wojtkiewicz; M Cetinbas; MJ Schloss; . Ibrutinib-mediated atrial fibrillation due to inhibition of CSK.. Circulation (2020)", + "text": "L Xiao; J-E Salem; S Clauss; A Hanley; A Bapat; M Hulsmans; Y Iwamoto; G Wojtkiewicz; M Cetinbas; MJ Schloss; . Ibrutinib-mediated atrial fibrillation due to inhibition of CSK.. Circulation (2020)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/85", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "L Jiang; L Li; Y Ruan; S Zuo; X Wu; Q Zhao; Y Xing; X Zhao; S Xia; R Bai; . Ibrutinib promotes atrial fibrillation by inducing structural remodeling and calcium dysregulation in the atrium.. Heart Rhythm (2019)", + "text": "L Jiang; L Li; Y Ruan; S Zuo; X Wu; Q Zhao; Y Xing; X Zhao; S Xia; R Bai; . Ibrutinib promotes atrial fibrillation by inducing structural remodeling and calcium dysregulation in the atrium.. Heart Rhythm (2019)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/86", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "X Yang; N An; C Zhong; M Guan; Y Jiang; X Li; H Zhang; L Wang; Y Ruan; Y Gao; . Enhanced cardiomyocyte reactive oxygen species signaling promotes ibrutinib-induced atrial fibrillation.. Redox Biol (2020)", + "text": "X Yang; N An; C Zhong; M Guan; Y Jiang; X Li; H Zhang; L Wang; Y Ruan; Y Gao; . Enhanced cardiomyocyte reactive oxygen species signaling promotes ibrutinib-induced atrial fibrillation.. Redox Biol (2020)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/87", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "W Marin. A-kinase anchoring protein 1 (AKAP1) and its role in some cardiovascular diseases.. J Mol Cell Cardiol (2020)", + "text": "W Marin. A-kinase anchoring protein 1 (AKAP1) and its role in some cardiovascular diseases.. J Mol Cell Cardiol (2020)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/88", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "Y Liu; RA Merrill; S Strack. A-kinase anchoring protein 1: Emerging roles in regulating mitochondrial form and function in health and disease.. Cells (2020)", + "text": "Y Liu; RA Merrill; S Strack. A-kinase anchoring protein 1: Emerging roles in regulating mitochondrial form and function in health and disease.. Cells (2020)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/89", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "G Edwards; GA Perkins; K-Y Kim; Y Kong; Y Lee; S-H Choi; Y Liu; D Skowronska-Krawczyk; RN Weinreb; L Zangwill; . Loss of AKAP1 triggers Drp1 dephosphorylation-mediated mitochondrial fission and loss in retinal ganglion cells.. Cell Death Dis (2020)", + "text": "G Edwards; GA Perkins; K-Y Kim; Y Kong; Y Lee; S-H Choi; Y Liu; D Skowronska-Krawczyk; RN Weinreb; L Zangwill; . Loss of AKAP1 triggers Drp1 dephosphorylation-mediated mitochondrial fission and loss in retinal ganglion cells.. Cell Death Dis (2020)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/90", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "B Qi; L He; Y Zhao; L Zhang; Y He; J Li; C Li; B Zhang; Q Huang; J Xing; . Akap1 deficiency exacerbates diabetic cardiomyopathy in mice by NDUFS1-mediated mitochondrial dysfunction and apoptosis.. Diabetologia (2020)", + "text": "B Qi; L He; Y Zhao; L Zhang; Y He; J Li; C Li; B Zhang; Q Huang; J Xing; . Akap1 deficiency exacerbates diabetic cardiomyopathy in mice by NDUFS1-mediated mitochondrial dysfunction and apoptosis.. Diabetologia (2020)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/91", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "KH Flippo; A Gnanasekaran; GA Perkins; A Ajmal; RA Merrill; AS Dickey; SS Taylor; GS McKnight; AK Chauhan; YM Usachev; . AKAP1 protects from cerebral ischemic stroke by inhibiting Drp1-dependent mitochondrial fission.. J Neurosci (2018)", + "text": "KH Flippo; A Gnanasekaran; GA Perkins; A Ajmal; RA Merrill; AS Dickey; SS Taylor; GS McKnight; AK Chauhan; YM Usachev; . AKAP1 protects from cerebral ischemic stroke by inhibiting Drp1-dependent mitochondrial fission.. J Neurosci (2018)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/92", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "MP Catanzaro; A Weiner; A Kaminaris; C Li; F Cai; F Zhao; S Kobayashi; T Kobayashi; Y Huang; H Sesaki; . Doxorubicin-induced cardiomyocyte death is mediated by unchecked mitochondrial fission and mitophagy.. FASEB J (2019)", + "text": "MP Catanzaro; A Weiner; A Kaminaris; C Li; F Cai; F Zhao; S Kobayashi; T Kobayashi; Y Huang; H Sesaki; . Doxorubicin-induced cardiomyocyte death is mediated by unchecked mitochondrial fission and mitophagy.. FASEB J (2019)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/93", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "L Chen; Q Tian; Z Shi; Y Qiu; Q Lu; C Liu. Melatonin alleviates cardiac function in sepsis-caused myocarditis via maintenance of mitochondrial function.. Front Nutr (2021)", + "text": "L Chen; Q Tian; Z Shi; Y Qiu; Q Lu; C Liu. Melatonin alleviates cardiac function in sepsis-caused myocarditis via maintenance of mitochondrial function.. Front Nutr (2021)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/94", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "H Zhang; J Liu; M Cui; H Chai; L Chen; T Zhang; J Mi; H Guan; L Zhao. Moderate-intensity continuous training has time-specific effects on the lipid metabolism of adolescents.. J Transl Int Med (2023)", + "text": "H Zhang; J Liu; M Cui; H Chai; L Chen; T Zhang; J Mi; H Guan; L Zhao. Moderate-intensity continuous training has time-specific effects on the lipid metabolism of adolescents.. J Transl Int Med (2023)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/95", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "L Dou; E Lu; D Tian; F Li; L Deng; Y Zhang. Adrenomedullin induces cisplatin chemoresistance in ovarian cancer through reprogramming of glucose metabolism.. J Transl Int Med (2023)", + "text": "L Dou; E Lu; D Tian; F Li; L Deng; Y Zhang. Adrenomedullin induces cisplatin chemoresistance in ovarian cancer through reprogramming of glucose metabolism.. J Transl Int Med (2023)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/96", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "Y Peng; Y Wang; C Zhou; W Mei; C Zeng. PI3K/Akt/mTOR pathway and its role in cancer therapeutics: Are we making headway?. Front Oncol (2022)", + "text": "Y Peng; Y Wang; C Zhou; W Mei; C Zeng. PI3K/Akt/mTOR pathway and its role in cancer therapeutics: Are we making headway?. Front Oncol (2022)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/97", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "VL Damaraju; M Kuzma; CE Cass; CT Putman; MB Sawyer. Multitargeted kinase inhibitors imatinib, sorafenib and sunitinib perturb energy metabolism and cause cytotoxicity to cultured C2C12 skeletal muscle derived myotubes.. Biochem Pharmacol (2018)", + "text": "VL Damaraju; M Kuzma; CE Cass; CT Putman; MB Sawyer. Multitargeted kinase inhibitors imatinib, sorafenib and sunitinib perturb energy metabolism and cause cytotoxicity to cultured C2C12 skeletal muscle derived myotubes.. Biochem Pharmacol (2018)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/98", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "Y Xu; W Wan; H Zeng; Z Xiang; M Li; Y Yao; Y Li; M Bortolanza; J Wu. Exosomes and their derivatives as biomarkers and therapeutic delivery agents for cardiovascular diseases: Situations and challenges.. J Transl Int Med (2023)", + "text": "Y Xu; W Wan; H Zeng; Z Xiang; M Li; Y Yao; Y Li; M Bortolanza; J Wu. Exosomes and their derivatives as biomarkers and therapeutic delivery agents for cardiovascular diseases: Situations and challenges.. J Transl Int Med (2023)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/99", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "W Yu; X Qin; Y Zhang; P Qiu; L Wang; W Zha; J Ren. Curcumin suppresses doxorubicin-induced cardiomyocyte pyroptosis via a PI3K/Akt/mTOR-dependent manner.. Cardiovasc Diagn Ther (2020)", + "text": "W Yu; X Qin; Y Zhang; P Qiu; L Wang; W Zha; J Ren. Curcumin suppresses doxorubicin-induced cardiomyocyte pyroptosis via a PI3K/Akt/mTOR-dependent manner.. Cardiovasc Diagn Ther (2020)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/100", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "W Fakih; A Mroueh; D-S Gong; S Kikuchi; MP Pieper; M Kindo; J-P Mazzucottelli; A Mommerot; M Kanso; P Ohlmann; . Activated factor X stimulates atrial endothelial cells and tissues to promote remodelling responses through AT1R/NADPH oxidases/SGLT1/2.. Cardiovasc Res (2024)", + "text": "W Fakih; A Mroueh; D-S Gong; S Kikuchi; MP Pieper; M Kindo; J-P Mazzucottelli; A Mommerot; M Kanso; P Ohlmann; . Activated factor X stimulates atrial endothelial cells and tissues to promote remodelling responses through AT1R/NADPH oxidases/SGLT1/2.. Cardiovasc Res (2024)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/101", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "Y Li; D Huang; L Jia; F Shangguan; S Gong; L Lan; Z Song; J Xu; C Yan; T Chen; . LonP1 links mitochondria\u2013ER interaction to regulate heart function.. Research (2023)", + "text": "Y Li; D Huang; L Jia; F Shangguan; S Gong; L Lan; Z Song; J Xu; C Yan; T Chen; . LonP1 links mitochondria\u2013ER interaction to regulate heart function.. Research (2023)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/102", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "Y Li; X Peng; R Lin; X Wang; X Liu; F Meng; Y Ruan; R Bai; R Tang; N Liu. Tyrosine kinase inhibitor antitumor therapy and atrial fibrillation: Potential off-target effects on mitochondrial function and cardiac substrate utilization.. Cardiovasc Innov Appl (2023)", + "text": "Y Li; X Peng; R Lin; X Wang; X Liu; F Meng; Y Ruan; R Bai; R Tang; N Liu. Tyrosine kinase inhibitor antitumor therapy and atrial fibrillation: Potential off-target effects on mitochondrial function and cardiac substrate utilization.. Cardiovasc Innov Appl (2023)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/103", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "TF Chu; MA Rupnick; R Kerkela; SM Dallabrida; D Zurakowski; L Nguyen; K Woulfe; E Pravda; F Cassiola; J Desai; . Cardiotoxicity associated with tyrosine kinase inhibitor sunitinib.. Lancet (2007)", + "text": "TF Chu; MA Rupnick; R Kerkela; SM Dallabrida; D Zurakowski; L Nguyen; K Woulfe; E Pravda; F Cassiola; J Desai; . Cardiotoxicity associated with tyrosine kinase inhibitor sunitinib.. Lancet (2007)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/104", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "E Tolstik; MB Gongalsky; J Dierks; T Brand; M Pernecker; NV Pervushin; DE Maksutova; KA Gonchar; JV Samsonova; G Kopeina; . Raman and fluorescence micro-spectroscopy applied for the monitoring of sunitinib-loaded porous silicon nanocontainers in cardiac cells.. Front Pharmacol (2023)", + "text": "E Tolstik; MB Gongalsky; J Dierks; T Brand; M Pernecker; NV Pervushin; DE Maksutova; KA Gonchar; JV Samsonova; G Kopeina; . Raman and fluorescence micro-spectroscopy applied for the monitoring of sunitinib-loaded porous silicon nanocontainers in cardiac cells.. Front Pharmacol (2023)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/105", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "Y Will; JA Dykens; S Nadanaciva; B Hirakawa; J Jamieson; LD Marroquin; J Hynes; S Patyna; BA Jessen. Effect of the multitargeted tyrosine kinase inhibitors imatinib, dasatinib, sunitinib, and sorafenib on mitochondrial function in isolated rat heart mitochondria and H9c2 cells.. Toxicol Sci (2008)", + "text": "Y Will; JA Dykens; S Nadanaciva; B Hirakawa; J Jamieson; LD Marroquin; J Hynes; S Patyna; BA Jessen. Effect of the multitargeted tyrosine kinase inhibitors imatinib, dasatinib, sunitinib, and sorafenib on mitochondrial function in isolated rat heart mitochondria and H9c2 cells.. Toxicol Sci (2008)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/106", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "Y Li; J Yan; Q Zhao; Y Zhang; Y Zhang. ATF3 promotes ferroptosis in sorafenib-induced cardiotoxicity by suppressing Slc7a11 expression.. Front Pharmacol (2022)", + "text": "Y Li; J Yan; Q Zhao; Y Zhang; Y Zhang. ATF3 promotes ferroptosis in sorafenib-induced cardiotoxicity by suppressing Slc7a11 expression.. Front Pharmacol (2022)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/107", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "Y Yu; Y Yan; F Niu; Y Wang; X Chen; G Su; Y Liu; X Zhao; L Qian; P Liu; . Ferroptosis: A cell death connecting oxidative stress, inflammation and cardiovascular diseases.. Cell Death Discov (2023)", + "text": "Y Yu; Y Yan; F Niu; Y Wang; X Chen; G Su; Y Liu; X Zhao; L Qian; P Liu; . Ferroptosis: A cell death connecting oxidative stress, inflammation and cardiovascular diseases.. Cell Death Discov (2023)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/108", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "Y-T Chen; AN Masbuchin; Y-H Fang; L-W Hsu; S-N Wu; C-J Yen; Y-W Liu; Y-W Hsiao; J-M Wang; MS Rohman; . Pentraxin 3 regulates tyrosine kinase inhibitor-associated cardiomyocyte contraction and mitochondrial dysfunction via ERK/JNK signalling pathways.. Biomed Pharmacother (2023)", + "text": "Y-T Chen; AN Masbuchin; Y-H Fang; L-W Hsu; S-N Wu; C-J Yen; Y-W Liu; Y-W Hsiao; J-M Wang; MS Rohman; . Pentraxin 3 regulates tyrosine kinase inhibitor-associated cardiomyocyte contraction and mitochondrial dysfunction via ERK/JNK signalling pathways.. Biomed Pharmacother (2023)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/109", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "J Bouitbir; MV Panajatovic; S Kr\u00e4henb\u00fchl. Mitochondrial toxicity associated with imatinib and sorafenib in isolated rat heart fibers and the cardiomyoblast H9c2 cell line.. Int J Mol Sci (2022)", + "text": "J Bouitbir; MV Panajatovic; S Kr\u00e4henb\u00fchl. Mitochondrial toxicity associated with imatinib and sorafenib in isolated rat heart fibers and the cardiomyoblast H9c2 cell line.. Int J Mol Sci (2022)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/110", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "X Zhang; Z Zhang; Y Zhao; N Jiang; J Qiu; Y Yang; J Li; X Liang; X Wang; G Tse; . Alogliptin, a dipeptidyl peptidase-4 inhibitor, alleviates atrial remodeling and improves mitochondrial function and biogenesis in diabetic rabbits.. J Am Heart Assoc (2017)", + "text": "X Zhang; Z Zhang; Y Zhao; N Jiang; J Qiu; Y Yang; J Li; X Liang; X Wang; G Tse; . Alogliptin, a dipeptidyl peptidase-4 inhibitor, alleviates atrial remodeling and improves mitochondrial function and biogenesis in diabetic rabbits.. J Am Heart Assoc (2017)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/111", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "W Peng; D Rao; M Zhang; Y Shi; J Wu; G Nie; Q Xia. Teneligliptin prevents doxorubicin-induced inflammation and apoptosis in H9c2 cells.. Arch Biochem Biophys (2020)", + "text": "W Peng; D Rao; M Zhang; Y Shi; J Wu; G Nie; Q Xia. Teneligliptin prevents doxorubicin-induced inflammation and apoptosis in H9c2 cells.. Arch Biochem Biophys (2020)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/112", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "V Okunrintemi; BM Mishriky; JR Powell; DM Cummings. Sodium-glucose co-transporter-2 inhibitors and atrial fibrillation in the cardiovascular and renal outcome trials.. Diabetes Obes Metab (2021)", + "text": "V Okunrintemi; BM Mishriky; JR Powell; DM Cummings. Sodium-glucose co-transporter-2 inhibitors and atrial fibrillation in the cardiovascular and renal outcome trials.. Diabetes Obes Metab (2021)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/113", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "H Zhou; S Wang; P Zhu; S Hu; Y Chen; J Ren. Empagliflozin rescues diabetic myocardial microvascular injury via AMPK-mediated inhibition of mitochondrial fission.. Redox Biol (2018)", + "text": "H Zhou; S Wang; P Zhu; S Hu; Y Chen; J Ren. Empagliflozin rescues diabetic myocardial microvascular injury via AMPK-mediated inhibition of mitochondrial fission.. Redox Biol (2018)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/114", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "V Avula; G Sharma; MN Kosiborod; M Vaduganathan; TG Neilan; T Lopez; S Dent; L Baldassarre; M Scherrer-Crosbie; A Barac; . SGLT2 inhibitor use and risk of clinical events in patients with cancer therapy-related cardiac dysfunction.. JACC Heart Fail (2024)", + "text": "V Avula; G Sharma; MN Kosiborod; M Vaduganathan; TG Neilan; T Lopez; S Dent; L Baldassarre; M Scherrer-Crosbie; A Barac; . SGLT2 inhibitor use and risk of clinical events in patients with cancer therapy-related cardiac dysfunction.. JACC Heart Fail (2024)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/115", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "M Chen. Empagliflozin attenuates doxorubicin-induced cardiotoxicity by activating AMPK/SIRT-1/PGC-1\u03b1-mediated mitochondrial biogenesis.. Toxicol Res (2023)", + "text": "M Chen. Empagliflozin attenuates doxorubicin-induced cardiotoxicity by activating AMPK/SIRT-1/PGC-1\u03b1-mediated mitochondrial biogenesis.. Toxicol Res (2023)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/116", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "R Lin; X Peng; Y Li; X Wang; X Liu; X Jia; C Zhang; N Liu; J Dong. Empagliflozin attenuates doxorubicin-impaired cardiac contractility by suppressing reactive oxygen species in isolated myocytes.. Mol Cell Biochem (2023)", + "text": "R Lin; X Peng; Y Li; X Wang; X Liu; X Jia; C Zhang; N Liu; J Dong. Empagliflozin attenuates doxorubicin-impaired cardiac contractility by suppressing reactive oxygen species in isolated myocytes.. Mol Cell Biochem (2023)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/117", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "J Feng; Z Chen; Y Ma; X Yang; Z Zhu; Z Zhang; J Hu; W Liang; G Ding. AKAP1 contributes to impaired mtDNA replication and mitochondrial dysfunction in podocytes of diabetic kidney disease.. Int J Biol Sci (2022)", + "text": "J Feng; Z Chen; Y Ma; X Yang; Z Zhu; Z Zhang; J Hu; W Liang; G Ding. AKAP1 contributes to impaired mtDNA replication and mitochondrial dysfunction in podocytes of diabetic kidney disease.. Int J Biol Sci (2022)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/118", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "S Shafaattalab; E Lin; E Christidi; H Huang; Y Nartiss; A Garcia; J Lee; S Protze; G Keller; L Brunham; . Ibrutinib displays atrial-specific toxicity in human stem cell-derived cardiomyocytes.. Stem Cell Rep (2019)", + "text": "S Shafaattalab; E Lin; E Christidi; H Huang; Y Nartiss; A Garcia; J Lee; S Protze; G Keller; L Brunham; . Ibrutinib displays atrial-specific toxicity in human stem cell-derived cardiomyocytes.. Stem Cell Rep (2019)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/119", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "H Lahm; M Jia; M Dre\u00dfen; F Wirth; N Puluca; R Gilsbach; BD Keavney; J Cleuziou; N Beck; O Bondareva; . Congenital heart disease risk loci identified by genome-wide association study in European patients.. J Clin Invest (2021)", + "text": "H Lahm; M Jia; M Dre\u00dfen; F Wirth; N Puluca; R Gilsbach; BD Keavney; J Cleuziou; N Beck; O Bondareva; . Congenital heart disease risk loci identified by genome-wide association study in European patients.. J Clin Invest (2021)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/120", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "J Yang; H Tan; M Sun; R Chen; Z Jian; Y Song; J Zhang; S Bian; B Zhang; Y Zhang; . Single-cell RNA sequencing reveals a mechanism underlying the susceptibility of the left atrial appendage to intracardiac thrombogenesis during atrial fibrillation.. Clin Transl Med (2023)", + "text": "J Yang; H Tan; M Sun; R Chen; Z Jian; Y Song; J Zhang; S Bian; B Zhang; Y Zhang; . Single-cell RNA sequencing reveals a mechanism underlying the susceptibility of the left atrial appendage to intracardiac thrombogenesis during atrial fibrillation.. Clin Transl Med (2023)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/121", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "A Chaudhry; R Shi; DS Luciani. A pipeline for multidimensional confocal analysis of mitochondrial morphology, function, and dynamics in pancreatic \u03b2-cells.. Am J Physiol Endocrinol Metab (2020)", + "text": "A Chaudhry; R Shi; DS Luciani. A pipeline for multidimensional confocal analysis of mitochondrial morphology, function, and dynamics in pancreatic \u03b2-cells.. Am J Physiol Endocrinol Metab (2020)", + "enumerated": false, + "marker": "-" + }, + { + "self_ref": "#/texts/122", + "parent": { + "$ref": "#/groups/0" + }, + "children": [], + "label": "list_item", + "prov": [], + "orig": "K Wu; L-L Li; Y-K Li; X-D Peng; M-X Zhang; K-S Liu; X-S Wang; J-X Yang; S-N Wen; Y-F Ruan; . Modifications of the Langendorff method for simultaneous isolation of atrial and ventricular myocytes from adult mice.. J Vis Exp (2021)", + "text": "K Wu; L-L Li; Y-K Li; X-D Peng; M-X Zhang; K-S Liu; X-S Wang; J-X Yang; S-N Wen; Y-F Ruan; . Modifications of the Langendorff method for simultaneous isolation of atrial and ventricular myocytes from adult mice.. J Vis Exp (2021)", + "enumerated": false, + "marker": "-" + } + ], + "pictures": [ + { + "self_ref": "#/pictures/0", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "picture", + "prov": [], + "captions": [ + { + "$ref": "#/texts/57" + } + ], + "references": [], + "footnotes": [], + "annotations": [] + }, + { + "self_ref": "#/pictures/1", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "picture", + "prov": [], + "captions": [ + { + "$ref": "#/texts/58" + } + ], + "references": [], + "footnotes": [], + "annotations": [] + }, + { + "self_ref": "#/pictures/2", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "picture", + "prov": [], + "captions": [ + { + "$ref": "#/texts/59" + } + ], + "references": [], + "footnotes": [], + "annotations": [] + }, + { + "self_ref": "#/pictures/3", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "picture", + "prov": [], + "captions": [ + { + "$ref": "#/texts/60" + } + ], + "references": [], + "footnotes": [], + "annotations": [] + }, + { + "self_ref": "#/pictures/4", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "picture", + "prov": [], + "captions": [ + { + "$ref": "#/texts/61" + } + ], + "references": [], + "footnotes": [], + "annotations": [] + }, + { + "self_ref": "#/pictures/5", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "picture", + "prov": [], + "captions": [ + { + "$ref": "#/texts/62" + } + ], + "references": [], + "footnotes": [], + "annotations": [] + }, + { + "self_ref": "#/pictures/6", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "picture", + "prov": [], + "captions": [ + { + "$ref": "#/texts/63" + } + ], + "references": [], + "footnotes": [], + "annotations": [] + }, + { + "self_ref": "#/pictures/7", + "parent": { + "$ref": "#/body" + }, + "children": [], + "label": "picture", + "prov": [], + "captions": [ + { + "$ref": "#/texts/64" + } + ], + "references": [], + "footnotes": [], + "annotations": [] + } + ], + "tables": [], + "key_value_items": [], + "pages": {} +} \ No newline at end of file diff --git a/tests/data/groundtruth/docling_v2/research.0509.nxml.md b/tests/data/groundtruth/docling_v2/research.0509.nxml.md new file mode 100644 index 00000000..12f98348 --- /dev/null +++ b/tests/data/groundtruth/docling_v2/research.0509.nxml.md @@ -0,0 +1,205 @@ +## Introduction + +Cancer therapeutics have made remarkable progress over time, significantly prolonging the survival period of cancer patients. However, the accompanying increased risk of cardiovascular diseases has emerged as a crucial factor affecting the prognosis of cancer survivors [1–3]. Anticancer drugs have exhibited considerable cardiotoxicity, which greatly limits their clinical applications. Consequently, cardio-oncology has become a field of common concern for both oncologists and cardiologists. Ibrutinib, an efficacious Bruton’s tyrosine kinase (BTK) inhibitor endorsed by the US Food and Drug Administration for treating chronic lymphocytic leukemia, mantle cell lymphoma, and so on [4,5], is linked to elevated risks of atrial fibrillation (AF) and hemorrhagic complications. A 10-fold increase in the incidence of AF has been reported in the ibrutinib arm [4]. Long-term studies on the use of ibrutinib have revealed AF rates of up to 16% with an average observation period of 28 months [6]. Managing AF associated with ibrutinib use is complex, primarily due to the necessity of balancing the benefits of anticoagulation that it affords against the bleeding risk resulting from its use [7]. + +Chemotherapy-induced cardiotoxicity involves various mechanisms. Mitochondrial damage is a critical event in cardiotoxicity induced by chemotherapy drugs, such as doxorubicin and sunitinib [8,9]. This damage manifests as imbalanced mitochondrial dynamics, suppressed respiratory function, and so on [10]. Because AF is associated with rapid atrial activation rates that require a high energy supply from mitochondria, metabolic remodeling centered on mitochondrial dysfunction is identified as the chief factor driving the onset and progression of AF [11]. + +The mitochondrial quality surveillance (MQS) system is closely linked to maintaining mitochondrial homeostasis and restoring any damage to the organelle. The optimal mitochondrial physiological function can be maintained by repairing or removing the damaged mitochondria using regulating MQS factors, such as mitochondrial fission/fusion balance, bioenergetics, and biogenesis. Although studies have explored the role of an impaired MQS system in both cardiovascular diseases and chemotherapy-induced cardiotoxicity like doxorubicin [11–13], the role of an altered MQS system and its upstream regulatory mechanisms in ibrutinib-induced AF have remained largely unexplored. A-kinase anchoring protein 1 (AKAP1) is regarded as a crucial regulator of MQS including mitochondrial metabolism and dynamics. By anchoring the related proteins on the mitochondrial outer membrane (MOM), AKAP1 integrates multiple key pathways to influence mitochondrial morphology, function, and cellular fate. On one hand, AKAP1 promotes mitochondrial respiration and increases the adenosine triphosphate (ATP) synthesis rate by facilitating the phosphorylation of essential mitochondrial proteins like NDUFS4 and cytochrome c oxidase [14–16]. Furthermore, AKAP1 modulates the phosphorylation and dephosphorylation-mediated activation of dynamin-related protein 1 (DRP1), a key protein in mitochondrial fission, through interactions with various binding partners on the MOM, thereby exerting regulatory effects on the balance of mitochondrial dynamics [17]. + +A previous study found that PI3K-Akt pathway inhibition could cause ibrutinib-induced AF [18]. Additionally, Xiao et al. [19] proposed that the C-terminal Src kinase may be a regulatory target in ibrutinib-induced AF. We have previously identified the pathological phenotypes of calcium dysregulation and structural remodeling in the atrial tissue of mouse model with ibrutinib-induced AF [20]. We further reported excessive production of reactive oxygen species (ROS) and the resulting oxidative stress in atrial myocytes as a potential mechanism for ibrutinib-induced AF [21]. Damaged mitochondria markedly contribute to the generation of ROS, and the disruption of the MQS system is a common toxicological mechanism underlying the cardiotoxicity of anticancer drugs. We herein explore alterations in the atrial MQS system and the related regulatory targets in the pathogenesis of ibrutinib-mediated AF. + +## Ibrutinib increases AF susceptibility and promotes mitochondrial fragmentation + +To assess the proarrhythmic potential of ibrutinib, we conducted intraesophageal burst pacing and recorded electrocardiograms (ECGs) in both ibrutinib-treated and control groups. The former exhibited a significantly greater incidence of AF than that of the control group. The duration of burst-pacing-induced AF was longer in the ibrutinib-treated mice (Fig. S1A to C). Echocardiographic evaluation demonstrated that ibrutinib changed the atrial structure. The left atrium (LA) diameter and area of the ibrutinib group were larger than those of the control group (Fig. S1D to F). We further assessed pathological changes in the atria and observed a significant increase in atrial fibrosis in ibrutinib-treated mice (Fig. S1G and H). The ultrastructure of atrial myocytes was observed through transmission electron microscopy (TEM). The mitochondria in the atrial myocytes of the ibrutinib-treated group had a fragmented and punctuated appearance, with significantly shorter lengths than those in the control group, indicating that ibrutinib may disrupt the dynamic balance of atrial mitochondria (Fig. S1I). + +## Ibrutinib induces AF by impairing the mitochondrial function and structure of atrial myocytes + +We investigated the molecular mechanisms underlying the ibrutinib-induced increased risk of AF. A proteomic analysis was conducted to compare the atrial protein expressions of both the ibrutinib-treated and control groups. The ibrutinib treatment modified the expression of 378 proteins in the murine atrial tissue (|log2 fold change| > 1; P-adj < 0.05). Of these, 170 proteins were up-regulated and 208 were down-regulated in the ibrutinib group (Fig. 1A and B). A Kyoto Encyclopedia of Genes and Genomes (KEGG) enrichment analysis revealed that mitochondrial metabolic pathways, including oxidative phosphorylation (OXPHOS) and the tricarboxylic acid (TCA) cycle, were significantly altered by the ibrutinib treatment. A Gene Ontology (GO) biological process enrichment analysis showed that the ibrutinib treatment primarily affected proteins involved in the mitochondrial fission, mitochondrial organization, and cellular respiration. Similarly, a GO cellular component enrichment analysis indicated that ibrutinib mainly influenced the proteins located in mitochondrial respiratory chain, mitochondrial membrane, and matrix of mitochondria (Fig. 1C to F). The Gene Set Enrichment Analysis (GSEA) plot demonstrated that ibrutinib up-regulated mitochondrial fission and ROS pathway but impaired OXPHOS and mitochondrial biogenesis (Fig. 1I to L). Hence, ibrutinib intervention appeared to modify the expression of atrial proteins responsible for mitochondrial structure and function. + +## Ibrutinib disrupts mitochondrial homeostasis by down-regulating atrial AKAP1 expression + +As GO and KEGG enrichment analysis revealed that differentially expressed proteins were primarily associated with mitochondrial structural and functional changes, we annotated highly significant mitochondria-related differentially expressed proteins (−(log10 P) > 3) in the volcano map. AKAP1 and DRP1 had markedly differential expressions in the ibrutinib group. AKAP1 is crucial for regulating the MQS system. It can maintain the mitochondrial dynamic equilibrium by maintaining DRP1 phosphorylation at Ser637. Hence, off-target effects on AKAP1 could be responsible for ibrutinib-induced AF. Next, we investigated the expression and molecular functions of the aforementioned candidate proteins using single-cell transcriptome data from atrial tissue of patients with AF and control patients. Employing uniform manifold approximation and projection, we performed a hierarchical clustering of cardiac cells from the atrial tissues of patients with the AF and control groups. Sorting the data based on the differential expression of established lineage markers revealed that the atrial tissues comprised 10 major cell types (Fig. 2A to C). The featureplots showed that, in contrast to control samples, atrial tissues from AF patients exhibited decreased expression of AKAP1, especially in the cardiomyocyte subset. Conversely, most cell subsets of the atrial tissue from AF patients displayed increased expression of DRP1 (Fig. 2D and E). + +We computed the activity score of the mitochondria-related pathways in the cardiomyocyte subset of the AF group using the AUCell method. The AKAP1 expression was extracted from the AF scRNA-seq dataset, and correlation analysis was conducted with activity scores of mitochondria-related pathways (Fig. 2F to H). The AKAP1 expression was positively correlated with the activities of mitochondrial biogenesis and mitochondrial fusion and negatively with mitochondrial fission. Hence, AKAP1 deficiency could be responsible for excessive mitochondrial fission observed in ibrutinib-treated mice. A pan-subpopulation analysis of the correlation between AKAP1 expression and the OXPHOS activity score in the scRNA-seq dataset of AF patients showed that AKAP1 was significantly associated with mitochondrial metabolism in most atrial subpopulations (Fig. 2I). To further investigate this relationship, we stratified the cardiomyocytes in the subset based on AKAP1 expression. Using the median AKAP1 expression value as a threshold, we categorized the cardiomyocytes into high AKAP1 expression (hiAKAP1) and low AKAP1 expression (loAKAP1) groups (Fig. S2A). Differential expression analysis was performed between these groups, followed by GO and KEGG enrichment analyses. The results revealed that differentially expressed genes were predominantly enriched in biological process terms related to mitochondrial function. These included mitochondrial electron transport, OXPHOS, mitochondrial depolarization, and mitochondrial membrane organization. In terms of cellular process, the genes were enriched in categories such as mitochondrial respiratory chain complex and MOM. KEGG pathway analysis highlighted enrichment in OXPHOS and the TCA cycle (Fig. S2B to E). GSEA provided additional insights. Compared to the hiAKAP1 group, the loAKAP1 cardiomyocyte subgroup exhibited enhanced activation of mitochondrial fission events. Conversely, the OXPHOS pathway, representative of mitochondrial metabolism, was significantly suppressed in the loAKAP1 group (Fig. S2F and G). We performed molecular docking (MD) to elucidate the potential off-target binding interactions between AKAP1 and ibrutinib molecules. The results revealed a binding energy of −6.79 kcal/mol for the protein–ligand complex, suggesting a strong binding effect between ibrutinib and AKAP1 (Fig. 2J). + +## AKAP1 down-regulation mediates DRP1 dephosphorylation in HL-1 myocytes + +We investigated the interaction between AKAP1 and DRP1 and its impact on the mitochondrial dynamic to elucidate the mechanism underlying AKAP1-deficiency-mediated mitochondrial fragmentation. Confocal immunofluorescence imaging demonstrated that ibrutinib treatment decreased the AKAP1 expression (red) and increased the DRP1 expression (green) in HL-1 cells (Fig. 3A). DRP1 phosphorylation is a downstream consequence of the presence of AKAP1 on the outer mitochondrial membrane (OMM). DRP1 possesses an N-terminal guanosine triphosphatase (GTPase) domain. It hydrolyzes guanosine triphosphate to generate the energy necessary for fission. AKAP1, when anchored to protein kinase A, phosphorylates DRP1 at Ser637 within the GTPase effector domain, thus inhibiting its GTPase activity and attenuating mitochondrial fission. A reduction in AKAP1 expression enhances the dephosphorylation of DRP1 at Ser637, facilitating mitochondrial fission. Therefore, we wanted to know whether AKAP1 promotes mitochondrial fission by dephosphorylating DRP1. Western blot analysis revealed that ibrutinib dephosphorylated DRP1 at Ser637 in HL-1 cells, without affecting the phosphorylation levels at Ser616, and simultaneously increased the expression of FIS1, a mitochondrial fission marker (Fig. 3B to F). + +## Ibrutinib-induced AKAP1 depletion promotes mitochondrial fission and membrane depolarization via DRP1 dephosphorylation + +Mitochondrial dynamic imbalance is regarded as both the initiator and facilitator of mitochondrial dysfunction. We quantitatively assessed ibrutinib-induced changes in mitochondrial morphology by considering the fragmented mitochondria in the atrial tissues of ibrutinib-treated mice and the proteomics enrichment analysis results. To further investigate the mechanism underlying AKAP1-deficiency-mediated mitochondrial fission, the HL-1 cardiomyocytes were infected with LV-Akap1 before ibrutinib treatment. MitoTracker staining demonstrated that ibrutinib exposure formed small, round, and fragmented mitochondria in atrial myocytes, indicating enhanced mitochondrial fission. To quantitatively evaluate alterations in atrial mitochondrial fragmentation, we measured the aspect ratio and form factor of mitochondria in both the ibrutinib and control groups. The former displayed a significant decrease in AR and FF parameters than that in the control group. However, transfection with LV-Akap1 partially restored the mitochondrial morphology to normal (Fig. 4A to E). + +Western blot analysis showed that ibrutinib exposure led to a significant increase in mitochondrial fission-related proteins (DRP1 and FIS1) and a decrease in mitochondrial fusion-associated proteins (MFN1 and OPA1). Importantly, compared to the modest increase in total DRP1 (t-DRP1), the expression of mitochondria-localized DRP1 (mito-DRP1) was remarkably elevated in the ibrutinib-treated group, along with a significant dephosphorylation of DRP1 at Ser637. Transfecting HL-1 cells with LV-Akap1 considerably increased the phosphorylation level of DRP1 at Ser637. Furthermore, without significant changes in total DRP1, LV-Akap1 transfection diminished DRP1 translocation to mitochondria and enhanced the expressions of MFN1 and OPA1 (Fig. 4F to N). The mitochondrial membrane potential determines the mitochondrial function. Excessive mitochondrial fission can depolarize the mitochondrial membrane potential, which was restored to near-normal levels by AKAP1 overexpression (Fig. 4O and P). + +## AKAP1 deficiency impairs mitochondrial respiratory function and promotes metabolic reprogramming in HL-1 myocytes + +Mitochondrial bioenergetics and dynamics are interconnected. A disruption in the balance between fusion and fission can impair mitochondrial bioenergetics, diminishing ATP production. We investigated whether ibrutinib disturbs mitochondrial bioenergetics homeostasis by interfering with AKAP1. We conducted a Seahorse Mito Stress test to assess mitochondrial respiration. The results demonstrated that ibrutinib stimulation significantly impaired basal respiration, maximal respiration, spare respiratory capacity, and ATP production, which were attenuated by transduction with LV-Akap1 or cotreatment with Mdivi-1, a mitochondrial fission inhibitor (Fig. 5A to F). + +Impaired mitochondrial respiration is linked to metabolic reprogramming. As mitochondrial OXPHOS declines, the real-time ATP rate assay was utilized to assess whether the ibrutinib-treated cells displayed adaptive reprogramming toward the glycolytic pathway. The assay simultaneously measured the basal ATP-production rates from mitochondrial respiration (oxygen consumption rate [OCR]) and glycolysis (extracellular acidification rate). The ibrutinib-treated myocytes had a significantly reduced total ATP-production rate, primarily owing to the inability of the elevated glycoATP rate to compensate for the mitoATP rate deficiency. AKAP1 overexpression or Mdivi-1 cotreatment effectively reversed the metabolic reprogramming phenotype. The degree of this alteration can be determined by the extent of reduction in the ATP index ratio (mitoATP production rate/glycoATP production rate) in ibrutinib-treated myocytes. This reduction was partially restored by AKAP1 overexpression or Mdivi-1 intervention (Fig. 5G to K). These results are consistent with the finding that the activity of mitochondrial ETC complex I/III was compromised in the ibrutinib group but improved to near-normal levels in ibrutinib-treated cells transduced with LV-Akap1 or co-treated with Mdivi-1 (Fig. 5L and M). + +## AKAP1 down-regulation is involved in impaired mitochondrial biogenesis, oxidative stress, and inflammation + +Insufficient energy production could be associated with defective mitochondrial biogenesis, a process crucial for replenishing number of healthy mitochondria. Ibrutinib treatment reduced the levels of PGC-1 and NRF1, 2 essential regulators of mitochondrial biogenesis. It also reduced the mtDNA copy number. However, this inhibitory effect of ibrutinib on mitochondrial biogenesis was ameliorated by AKAP1 overexpression or Mdivi-1 intervention (Fig. 6A to C). + +We next elucidated the regulatory role of AKAP1 in the mitochondrial redox balance in ibrutinib-treated myocytes. Representative MitoSOX staining images showed that ibrutinib promotes excessive mitochondrial ROS production. AKAP1 overexpression significantly diminished the mitoROS level, also observed in the Mdivi-1 cotreatment group. Ibrutinib-treated myocytes exhibited reduced glutathione (GSH) and elevated malondialdehyde (MDA) levels, which were restored by LV-Akap1 transduction and Mdivi-1 intervention (Fig. 6F and G). + +Mitochondrial dysfunction not only disturbs energy metabolism but also triggers inflammatory responses through an intricate immunometabolic crosstalk. Given the observed atrial fibrosis in animal models, GSEA of inflammatory response pathway indicated that inflammation activation is presented in ibrutinib-treated myocytes (Fig. 6H). We performed enzyme-linked immunosorbent assay (ELISA) to assess alterations in the levels of inflammatory factors. The ibrutinib group exhibited elevated levels of tumor necrosis factor-α (TNF-α), interleukin-6 (IL-6), and IL-18. However, the AKAP1 overexpression significantly down-regulated these cytokines. IL-18 was reversed in both AKAP1 overexpression and Mdivi-1 cotreatment groups (Fig. 6I to K). + +## AKAP1 overexpression prevents ibrutinib-induced AF by improving MQS and restoring mitochondrial function + +To verify whether AKAP1 up-regulation could mitigate the AF risk and restore the MQS system in ibrutinib-treated mice models, we established an in vivo AKAP1 overexpression model using adeno-associated virus (AAV), with AAV-GFP as the control group. The ibrutinib-treated mice exhibited a higher AF incidence and prolonged AF duration than those of control mice. ECG measurements revealed that the ibrutinib-treated group with AKAP1 overexpression had diminished AF duration and incidence (Fig. 7A to C). AKAP1 overexpression also ameliorated atrial fibrosis (Fig. 7D and E). We validated the ibrutinib-induced Drp1 Ser637 dephosphorylation and expression levels of mitochondrial fission/fusion markers. The ibrutinib treatment reduced DRP1 phosphorylation at Ser637 and simultaneously decreased the MFN1 (fusion marker) and NRF1 (biogenesis marker) levels. These effects were reversed by AKAP1 overexpression (Fig. 7F to I). + +MitoSOX staining revealed that mitochondrial ROS production was significantly elevated in ibrutinib-treated mice, which normalized following AKAP1 overexpression (Fig. 7J and K). This finding was supported by the ibrutinib-induced reduction in GSH contents and an increase in MDA contents, which were also reversed by AKAP1 overexpression. Similar trends were observed for the activity of mitochondrial complex I/III. These data confirmed the regulatory role of AKAP1 in mitochondrial bioenergetics in ibrutinib-induced AF. Moreover, the IL-18 level was up-regulated in the ibrutinib-treated group. The AKAP1 overexpression could normalize the inflammatory response (Fig. 7L to P). + +## Discussion + +Mitochondrial damage serves as a major determinant in the pathogenesis of chemotherapeutic agents’ cardiotoxic effects. We employed gene-editing technologies in animal models and HL-1 cells and showed that ibrutinib increases the AF risk by disrupting the AKAP1-regulated MQS. Our study has several key findings. First, ibrutinib-treated mice exhibited decreased AKAP1 expression, which was closely associated with an increased risk of AF. Second, down-regulated AKAP1 disturbs the MQS system in atrial myocytes, as evidenced by the increased mitochondrial fission caused by enhanced Drp1 Ser637 dephosphorylation and OMM translocation, which is accompanied by impaired mitochondrial biogenesis and mitochondrial metabolic reprogramming in bioenergetics. Third, AKAP1 deficiency in atrial cardiomyocytes dysregulates the MQS, which further promotes oxidative stress and inflammatory activation, resulting in increased atrial fibrosis. Importantly, the AKAP1 overexpression effectively restores mitochondrial homeostasis and alleviates oxidative stress and inflammation-induced fibrosis in the ibrutinib-treated mouse model (Fig. 8). Our results offer novel perspectives on the molecular mechanisms connecting impaired MQS with electrophysiological alterations in ibrutinib-induced AF, indicating that AKAP1 could be a promising target for exploring preventive approaches. + +AKAP1, a scaffolding protein, anchors to the OMM with its inserted mitochondrial targeting sequence. By recruiting signaling proteins to the OMM, AKAP1 serves as a mitochondrial signaling hub regulating mitochondrial homeostasis [22,23]. AKAP1 deficiency in retinal ganglion cells causes mitochondrial fragmentation by promoting Drp1 Ser637 dephosphorylation [24]. Previous studies on diabetic cardiomyopathy have revealed that AKAP1 down-regulation can compromise mitochondrial respiration by impeding NDUFS1 translocation into mitochondria and promoting mitochondrial ROS generation [25]. We employed quantitative proteomics to investigate alterations in protein expression following ibrutinib treatment. Enrichment analysis revealed that mitochondria-related pathways were enriched with differentially expressed proteins. The volcano plot showed that AKAP1 was one of the most significantly down-regulated candidates among the mitochondria-related proteins. We validated atrial AKAP1 down-regulation based on AF single-cell transcriptome data. We observed a significant correlation between AKAP1 expression and the activity score of MQS-related pathways, including mitochondrial fission, biogenesis, and OXPHOS in cardiomyocyte subpopulations. Our study is the first to provide a comprehensive understanding of ibrutinib-mediated atrial MQS disturbances through off-target effects. + +Recent studies have investigated ROS-related mechanisms in ibrutinib-induced AF. Jiang et al. [20] reported ibrutinib-related atrial calcium handling disorders caused by increased RyR2 Ser2814 phosphorylation. Our recent research has further revealed that enhanced ibrutinib-mediated oxidative stress may increase the Ser2814 phosphorylation of RyR2. This observation is supported by the finding that antioxidant interventions effectively reduced calcium overload and inflammation-induced atrial fibrosis, thereby decreasing the ibrutinib-induced AF risk [21]. During mitochondrial electron transfer, electrons can leak and react with oxygen to create superoxide anions, making mitochondria a major source of ROS. Disruptions in electron transport in damaged mitochondria increase electron leakage, causing ROS bursts. However, as a crucial source of intracellular ROS, the role of mitochondrial damage in ibrutinib-induced AF has not been thoroughly investigated. Through GSEA of proteomics, we found that mitochondrial fission and ROS generation pathways were activated and OXPHOS and mitochondrial biogenesis processes were suppressed in the ibrutinib group. Hence, MQS impairment may be critical for the pathogenesis of ibrutinib-induced AF. + +Our study utilized high-throughput sequencing along with genetic editing to investigate the mechanism of ibrutinib-induced mitochondrial damage leading to AF, with a focus on AKAP1-mediated MQS disturbance. The mitochondrial dynamic imbalance is crucial for cardio-oncology. As highly dynamic organelles, mitochondria continuously cycle between fission and fusion events to adapt to environmental demands. During mitochondrial fission, dephosphorylation of DRP1 at Ser637 promotes its recruitment to mitochondria [26]. The recruited DRP1 forms ring-like structures on OMM, constricting the organelle and producing 2 daughter mitochondria. Excessive mitochondrial fission from increased DRP1 Ser616 phosphorylation has also been found to be responsible for the pathogenesis of doxorubicin-induced cardiotoxicity [27]. + +Excessive fission depletes ATPs by regulating mitochondrial metabolic reprogramming, along with suppressed biogenesis, ultimately disrupting the MQS system. Metabolic reprogramming, a cellular self-regulatory mechanism in response to environmental changes, has been demonstrated to play a crucial role in the pathophysiology of both cardiometabolic and neoplastic diseases [28–31]. This adaptive process has gained increasing recognition and understanding in the field of cardio-oncology, highlighting its role in the complex interplay between cancer therapeutics and cardiovascular health. Sunitinib disturbs mitochondrial bioenergetics by reducing the complex I activities, accompanied by an increased generation of mitochondrial ROS and decreased uptake of substrates, such as nucleosides [32]. A down-regulation of mitochondrial biogenesis markers, including Nrf2, PPARα, and PGC-1α expression, has been reported in the animal models of doxorubicin-induced cardiotoxicity and some other cardiovascular disorders [13,33]. In the mechanism of cardiotoxicity induced by anticancer drugs, the suppression of mitochondrial biogenesis is accompanied by an increase in ROS generation [34]. Interestingly, this dual phenomenon has also been observed in the pathophysiology of AF [35]. This imbalance in mitochondrial homeostasis limits the capacity of atrial energy production and increases ROS generation because of a reduction in the electron transfer efficiency owing to excessive mitochondrial fission in naive daughter mitochondria [36]. The increased ROS levels can attack adjacent intact mitochondria, resulting in a self-perpetuating cycle of ROS-induced ROS production [37]. ROS overproduction and inflammation activation exhibit reciprocal stimulation, creating a vicious loop that forms a pathological substrate for AF. + +In this study, we discovered that ibrutinib can disrupt the mitochondrial homeostasis in atrial cardiomyocytes. Indeed, the cardiotoxic side effects exhibited by a series of tyrosine kinase inhibitors are closely associated with the mitochondrial homeostasis disturbance. Sunitinib, a widely used vascular endothelial growth factor receptor tyrosine kinase inhibitor for the treatment of metastatic renal cell carcinoma, has been reported to have common cardiotoxicity with an incidence rate of 1% to 10% [1]. Mechanistic studies have revealed that sunitinib can induce myocardial apoptosis [38], which is manifested as the disruption of mitochondrial network structures [39], reduced efficiency of electron transfer, and the accompanying decrease in ATP production [8]. In H9c2 cardiac cell models exposed to sunitinib for 24 h and mouse models treated by gavage for 2 weeks, the collapse of mitochondrial membrane potential and elevated mitochondrial ROS can be observed. Intervention with mito-TEMPO can effectively alleviate mitochondrial dysfunction. Sorafenib, a multitargeted tyrosine kinase inhibitor, has emerged as a first-line treatment for patients with advanced hepatocellular carcinoma and renal cell carcinoma. Evidence suggests that at the therapeutically relevant doses, sorafenib can directly compromise the mitochondrial function of H9c2 cardiomyocytes [40]. The mechanism underlying this cardiotoxicity may be attributed to sorafenib’s role as an effective ferroptosis inducer [41]. Ferroptosis is typically associated with substantial alterations in mitochondrial morphology, characterized by increased mitochondrial membrane density and reduced mitochondrial cristae [42]. Furthermore, sorafenib has been shown to activate the c-Jun N-terminal kinase downstream pathways, leading to disruption of mitochondrial respiration and induction of apoptosis [43]. Imatinib, which functions through inhibiting the activity of BCR-ABL tyrosine kinase, has become the standard treatment for Philadelphia chromosome-positive chronic myeloid leukemia. However, reports from both in vivo and in vitro studies have highlighted its potential cardiotoxicity. Ultrastructural analysis of cardiac tissue from patients undergoing imatinib therapy has revealed the presence of pleomorphic mitochondria with disrupted cristae. In vitro experiments have provided further insights into the mechanisms of this cardiotoxicity. Cardiomyocytes exposed to imatinib for 24 h demonstrate activation of mitochondrial death pathways, triggered by PERK-eIF2α signaling. This process is accompanied by accumulation of mitochondrial superoxide and disruption of mitochondrial membrane potential [44]. These findings suggest that mitochondrial homeostasis dysregulation may represent a shared pathophysiological mechanism underlying the cardiotoxicity associated with tyrosine kinase inhibitors. This insight opens up new avenues for therapeutic strategies aimed at mitigating the cardiac side effects of these drugs. Future research focusing on maintaining mitochondrial homeostasis could potentially yield promising interventions to reduce the cardiotoxicity of tyrosine kinase inhibitors. + +Increasing evidence suggests that targeting mitochondrial homeostasis in the heart could help manage both AF and cardio-oncology. Dipeptidyl peptidase-4 (DPP-4) inhibitors demonstrate upstream preventive effects on AF by enhancing mitochondrial biogenesis [45]. A preclinical study showed that DPP-4 inhibitors can alleviate doxorubicin-induced myocyte deaths [46]. A reduced risk of AF can be observed in patients receiving sodium-glucose co-transporter 2 (SGLT2) inhibitors [47]. The electrophysiological protective actions of SGLT2 inhibitors may be associated with metabolic regulation via AMPK activation, resulting in decreased mitochondrial fission and suppressed ROS generation [48]. Recent research emphasizes the therapeutic promise of SGLT2 inhibitors in cardio-oncology. TriNetX data analysis demonstrated that SGLT2 inhibitors significantly lowered the risk of heart failure worsening and AF in patients with cancer treatment-related cardiac dysfunction [49], which is tied to pharmacological actions of attenuating oxidative stress and stimulating mitochondrial biogenesis [50,51]. AKAP1 overexpression in ibrutinib-treated mice can markedly enhance mitochondrial homeostasis and ultimately decrease the AF risk. Indeed, the AKAP1 overexpression strategy has demonstrated therapeutic benefits by restoring mitochondrial homeostasis in several diseases, including diabetic kidney disease, glaucoma, and diabetic cardiomyopathy [24,25,52]. However, specific pharmacological activators for AKAP1 are not yet available. + +## Animal model + +C57BL/6J mice (8 to 10 weeks, weighing 20 to 25 g) were acquired from the Animal Centre at Anzhen Hospital in Beijing, China. The protocols were sanctioned by the Committee for Animal Care and Use of Anzhen Hospital. Following a previously described method, the mice were given daily intraperitoneal doses of ibrutinib at a dose of 30 mg·kg−1·day−1 and were assessed after 14 days of treatment [21]. Mice that received intraperitoneal injections of phosphate-buffered saline (PBS) served as the vehicle control. The biological function of AKAP1 was investigated via checking the cardiac-specific overexpression of AKAP1 in mice transfected with adeno-associated virus 9 (AAV-9). Purified AAV-9 encoding Akap1 was provided by BrainVTA (Wuhan, China) Co. Ltd. The mice were allocated into 4 different groups: AAV9-cTNT-EGFP-Con, AAV9-cTNT-Akap1-Con, AAV9-cTNT-EGFP-Ibru, and AAV9-cTNT-Akap1-Ibru. Each mouse was intravenously injected with 100 μl of either 5.0 to 6.0 × 1013 GC/ml AAV9-cTNT-Akap1 or 5.0 to 6.0 × 1013 GC/ml AAV9-cTNT-EGFP in the tail. All mice were maintained in specific pathogen-free environments with a 12-h light/dark cycle, regulated temperature, and humidity. Food and water were available ad libitum throughout the study period. + +## Cell culture and lentivirus transfection + +For stable AKAP1 overexpression, HL-1 cells were transduced with either a negative control lentivirus (LV-NC) or an Akap1 overexpression lentivirus (LV-Akap1). The Akap1 overexpression lentivirus was designed, synthesized, and sequence-verified by Obio Technology Corp. (Shanghai, China). To mimic ibrutinib exposure on the atrial myocytes, the HL-1 cells were treated with 1 μM of ibrutinib for 24 h before experimental determinations, as detailed in the related prior study [53]. + +## In vivo electrophysiology study + +Electrophysiological studies on the mice were conducted following previously described methods [21]. To be brief, mice were anesthetized via the intraperitoneal injection of 1% pentobarbital sodium. ECGs were recorded from surface limb leads. The electrode was introduced through the esophagus in close proximity to the LA, to capture ECGs with PowerLab and LabChart 7 software. Rapid pacing (10 ms at 30 Hz) was employed to evaluate susceptibility to pacing-induced AF. The AF phenotype was identified by distinguishing it from sinus rhythm phenotype when the ECGs demonstrated an absence of distinct P waves. We used this characteristic to differentiate AF from sinus rhythm. The restoration of sinus rhythm was confirmed by observing the detectable P waves. Duration of AF episodes of each animal was documented. + +## Echocardiography + +The Vevo 2100 Imaging System (FUJIFILM VisualSonics, Inc.) was employed to assess cardiac structural and functional parameters [21]. Initially, mice from each group were anesthetized using ether. Following effective sedation, the mice were laid in the supine position, their fur was trimmed, and their skin was cleansed before examining the atrial structural indicators. Ultrasound assessments were conducted to measure the LA diameter and area. A technician blinded to the grouping of the mice conducted the echocardiographic examination. + +## Transmission electron microscopy + +Retrograde aortic perfusion with 2.5% glutaraldehyde was employed to fix left atrial tissue samples from each group. Subsequently, the myocardial tissues of the mice were processed according to standard protocols and examined using TEM as described in our previous study [21] + +## Single-cell RNA-seq analysis + +The single-cell transcriptome dataset (GSE161016, PRJNA815461) from the Gene Expression Omnibus database, which includes data from the atrial tissue of healthy controls and patients with persistent AF, was utilized in this study [54,55]. Single-cell RNA-seq data of the atrial appendage tissue from the patients with AF were acquired from PRJNA815461, while that of the atrial tissue from the control group was obtained from 2 patients who had no prior history of coronary artery disease (GSE16101). The Seurat R package was employed to preprocess the raw data. Single cells were filtered (cells expressing a range of 500 to 4,000 unique genes and less than 10% mitochondrial transcripts were retained) for the subsequent analysis. Uniform manifold approximation and projection was used to group and visualize the cells, allowing for a clear differentiation and visualization of cell clusters. Statistically significant cell marker genes (adjusted P < 0.05) were identified and utilized to classify the clustered cells into their respective cell types. The FeaturePlot function was then used for gene expression distributions. Furthermore, the R package AUCell was utilized to assess the mitochondria-related pathway activities of specific cells. + +## Confocal imaging + +Fluorescent images were obtained with a 40× oil immersion objective on the laser scanning confocal microscope operating in line-scan mode (400 Hz). Cells were plated on gelatin-coated cytospin slides, allowed to air dry, and fixed with paraformaldehyde for 30 min at 20°C. Following a PBS wash, the cells were permeabilized for 15 min with 0.3% Triton X-100 and then blocked at room temperature with 10% bovine serum albumin for 1 h. Then, cells were incubated overnight at 4°C with primary antibodies, followed by the treatment with fluorescence-labeled secondary antibodies for 1 h. The nuclei were stained using 4′,6-diamidino-2-phenylindole. Table S1 lists the antibodies used for immunofluorescence. + +MitoTracker Red (0.5 μM, 30 min) was employed to analyze mitochondrial morphology. The form factor and aspect ratio of mitochondria were quantified based on the number of branches, branch junctions, and the total branch length in the mitochondrial skeleton [56]. JC-1 dye (1 μM, 30 min) was employed to evaluate mitochondrial membrane potential, with the ratio of red fluorescence (aggregated) to green fluorescence (monomeric) indicating the mitochondrial membrane potential. Mitochondrial superoxide production was evaluated using the MitoSOX Red (5 μM, 20 min) Reagent. + +## Isolation of primary atrial myocytes and atrial mitochondria + +Atrial myocytes were isolated using the established enzyme digestion protocol utilizing the Langendorff retrograde perfusion technique [57]. To promote adherence, the isolated atrial myocytes were seeded onto a laminin-coated dish. More detailed methodological information of atrial myocytes isolation can be found in the Supplementary Materials. In this study, mitochondria were isolated from atrial myocytes using a mitochondrial isolation kit (Thermo Fisher Scientific, USA). The first step involved collecting the atrial myocytes and centrifuging them at 700 g for 5 min at 4 °C to remove the supernatant. The cell pellet was then washed twice with pre-chilled 1×PBS. Subsequently, the cells were resuspended in mitochondrial isolation buffer and subjected to gentle mechanical disruption on ice to lyse the cells. The lysed suspension underwent differential centrifugation: an initial low-speed spin to remove intact cells and larger debris, followed by a high-speed spin to pellet the mitochondria. The resulting mitochondrial samples were either used immediately or stored at −80 °C until further Western blot analysis. The entire procedure was carried out under cold conditions to ensure the integrity and functionality of the mitochondria. For more detailed information, please refer to the manufacturer’s manual (Thermo Fisher Scientific, USA). + +## Western blot analysis + +Atrial tissues or cultured cell specimens were analyzed using a previously described Western blot protocol. In brief, the samples were lysed in ice-cold RIPA lysis buffer containing 10 mM of Tris-Cl (pH 8.0), 1 mM of EDTA, 1% Triton X-100, 0.1% sodium deoxycholate, 0.1% SDS, 150 mM of NaCl, 1 mM of phenylmethylsulfonyl fluoride, and 0.02 mg/ml each of aprotinin, leupeptin, and pepstatin. The lysates were sonicated and clarified by centrifugation. Protein concentration was determined using a Bradford assay. Then, sodium dodecyl sulfate–polyacrylamide gel electrophoresis was employed to separate 50 to 100 mg of proteins per lane. The resolved proteins were then transferred to a polyvinylidene difluoride membrane and subsequently incubated with the antibodies documented in Table S1. + +## mtDNA copy number and quantitative PCR + +The mitochondrial DNA copy number was determined by comparing the cytochrome c oxidase subunit 3 (Cox3) mtDNA gene with the UCP2 nuclear gene using quantitative polymerase chain reaction (qPCR). To quantify mtDNA mRNA, Trizol reagent (Life Technologies Inc., Carlsbad, CA, USA) was used to extract total RNA, which was then reverse-transcribed using oligo (dT)-primed cDNA. Table S2 provides the primers utilized for qPCR analysis of the respective sequences. + +## Figures + +Fig. 1. Ibrutinib induces atrial fibrillation (AF) by impairing mitochondrial function and structures of atrial myocytes. (A and B) Expression heatmap and volcano map of differentially expressed atrial proteins, illustrating that 170 proteins were up-regulated and 208 were down-regulated in ibrutinib-treated mice compared with control mice. N = 3 independent mice per group. (C to H) Gene Ontology and KEGG enrichment analysis of the 378 differentially expressed proteins in atrial tissue. (I to L) GSEA of differentially expressed proteins following ibrutinib treatment. + + + +Fig. 2. Ibrutinib disrupts mitochondrial homeostasis by down-regulating atrial AKAP1 expression. (A) Volcano plot labeled with the top mitochondria-related differentially expressed proteins. (B) Expression of marker genes for cell-type annotation is indicated on the DotPlot. (C) Uniform manifold approximation and projection representation of all single cells color-coded for their assigned major cell type. (D and E) Featureplots showing the expression patterns of AKAP1 and DRP1 in atrial tissues from AF and control groups. (F to H) Analysis of the correlation between AKAP1 expression and activity score of mitochondria-related pathways. (I) Atrial pan-subpopulation correlation analysis of AKAP1 expression and OXPHOS pathway activity. (J) Molecular docking analysis of the interaction between ibrutinib and AKAP1. + + + +Fig. 3. AKAP1 binding mediates DRP1 phosphorylation in atrial myocytes. (A) Immunofluorescence imaging of AKAP1 and DRP1 in ibrutinib-treated atrial myocytes. (B to F) Proteins were isolated from atrial myocytes. Western blotting was used to assess AKAP1, DRP1, FIS1, and phosphorylated DRP1 expression levels. ***P < 0.001. ns, not significant. + + + +Fig. 4. Ibrutinib-induced AKAP1 depletion promotes mitochondrial fission and membrane depolarization via DRP1 dephosphorylation. (A to E) MitoTracker staining for labeling mitochondria in atrial myocytes in vitro. Average mitochondrial length, ratio of fragmented/tubular mitochondria, and mitochondrial morphological parameters were determined. (F to N) Western blot analysis of mitochondrial DRP1 (mito-DRP1), total DRP1 (t-DRP1), phosphorylated DRP1, FIS1, MFN1, and OPA1 in HL-1 cells. VDAC1 was used as a loading control for mitochondrial proteins. (O) Red-to-green ratio of JC-1 fluorescence intensity. (P) Atrial myocytes loaded with JC-1 to analyze changes in mitochondrial membrane potential. N = 8 independent cell samples per group. **P < 0.01, ***P < 0.001. + + + +Fig. 5. AKAP1 deficiency impairs mitochondrial respiratory function and promotes metabolic reprogramming in atrial myocytes. (A to F) Analysis of HL-1 mitochondrial bioenergetics using the Seahorse XFe96 Analyzer. OCR measurements were taken continuously from baseline and after the sequential addition of 2 mM oligomycin, 1 mM FCCP, and 0.5 mM R/A to measure basal respiration, maximal respiration, spare respiratory capacity, proton leak, and ATP-production levels. (G to J) Total and individual rates of ATP production as mediated by glycolysis or mitochondrial metabolism in HL-1 cells transduced with control and LV-Akap1. (K) Ratio between ATP produced by OXPHOS and that by glycolysis in HL-1 cells transduced with control and LV-Akap1. (L and M) ELISA analysis of mitochondrial respiration complex I/III activities. N = 8 independent cell samples per group. *P < 0.05, **P < 0.01, ***P < 0.001. + + + +Fig. 6. AKAP1 down-regulation in impaired mitochondrial biogenesis, oxidative stress, and inflammation. (A to C) qPCR analysis of mitochondrial biogenesis parameters (mtDNA copy number, PGC-1α, and NRF1). (D and E) ELISA analysis of redox balance biomarkers, including MDA and GSH contents. (F and G) MitoSOX staining of mitochondrial ROS in HL-1 cells. (H) Visual GSEA of inflammation response pathway in ibrutinib-treated myocytes. (I to K) ELISA of atrial inflammatory biomarkers, including TNF-α, IL-6, and IL-18. N = 8 independent cell samples per group. *P < 0.05, **P < 0.01, ***P < 0.001. + + + +Fig. 7. AKAP1 overexpression prevents ibrutinib-induced AF by improving MQS and restoring mitochondrial function. (A) Simultaneous recordings of surface ECG following intraesophageal burst pacing. (B) Quantification of AF time. (C) AF inducibility in control and ibrutinib-treated mice with and without AAV-Akap1 transfection. (D and E) Myocardial fibrosis was assessed in each group through Sirius Red staining. The proportion of fibrotic tissue to myocardial tissue was quantified for each group. (F to I) Western blot analysis of total DRP1 (t-DRP1), phosphorylated DRP1, MFN1, and NRF1 in atrial tissues. (J and K) Images and quantification of isolated atrial myocytes loaded with the mitochondrial ROS indicator MitoSox Red. (L to P) ELISA of MQS/redox/inflammation biomarkers, including complex I/III, MDA, GSH, and IL-18. N = 8 mice per group. *P < 0.05, **P < 0.01, ***P < 0.001. + + + +Fig. 8. This schematic illustrates the proposed mechanism by which ibrutinib promotes atrial fibrillation (AF). Ibrutinib treatment leads to the downregulation of A-kinase anchoring protein 1 (AKAP1), triggering mitochondrial quality surveillance (MQS) impairment. This results in enhanced translocation of dynamin-related protein 1 (DRP1) to the mitochondria, driving mitochondrial fission. Concurrently, metabolic reprogramming is characterized by increased glycolysis and decreased oxidative phosphorylation (OXPHOS), alongside reduced mitochondrial biogenesis. These mitochondrial dysfunctions elevate oxidative stress and inflammatory responses, contributing to atrial metabolic and structural remodeling, ultimately leading to ibrutinib-induced AF. + + + +## References + +- AR Lyon; T López-Fernández; LS Couch; R Asteggiano; MC Aznar; J Bergler-Klein; G Boriani; D Cardinale; R Cordoba; B Cosyns; . ESC scientific document group, 2022 ESC guidelines on cardio-oncology developed in collaboration with the European Hematology Association (EHA), the European Society for Therapeutic Radiology and Oncology (ESTRO) and the International Cardio-Oncology Society (IC-OS).. Eur Heart J (2022) +- JJ Moslehi. Cardio-oncology: A new clinical frontier and novel platform for cardiovascular investigation.. Circulation (2024) +- B Zhou; Z Wang; Q Dou; W Li; Y Li; Z Yan; P Sun; B Zhao; X Li; F Shen; . Long-term outcomes of esophageal and gastric cancer patients with cardiovascular and metabolic diseases: A two-center propensity score-matched cohort study.. J Transl Int Med (2023) +- JA Burger; A Tedeschi; PM Barr; T Robak; C Owen; P Ghia; O Bairey; P Hillmen; NL Bartlett; J Li; . Ibrutinib as initial therapy for patients with chronic lymphocytic leukemia.. N Engl J Med (2015) +- S O’Brien; RR Furman; S Coutre; IW Flinn; JA Burger; K Blum; J Sharman; W Wierda; J Jones; W Zhao; . Single-agent ibrutinib in treatment-naïve and relapsed/refractory chronic lymphocytic leukemia: A 5-year experience.. Blood (2018) +- WJ Archibald; KG Rabe; BF Kabat; J Herrmann; W Ding; NE Kay; SS Kenderian; E Muchtar; JF Leis; Y Wang; . Atrial fibrillation in patients with chronic lymphocytic leukemia (CLL) treated with ibrutinib: Risk prediction, management, and clinical outcomes.. Ann Hematol (2021) +- F Caron; DP Leong; C Hillis; G Fraser; D Siegal. Current understanding of bleeding with ibrutinib use: A systematic review and meta-analysis.. Blood Adv (2017) +- S Gorini; A De Angelis; L Berrino; N Malara; G Rosano; E Ferraro. Chemotherapeutic drugs and mitochondrial dysfunction: Focus on doxorubicin, trastuzumab, and sunitinib.. Oxidative Med Cell Longev (2018) +- J Wu; N Liu; J Chen; Q Tao; Q Li; J Li; X Chen; C Peng. The tricarboxylic acid cycle metabolites for cancer: Friend or enemy.. Research (2024) +- JC Bikomeye; JD Terwoord; JH Santos; AM Beyer. Emerging mitochondrial signaling mechanisms in cardio-oncology: Beyond oxidative stress.. Am J Physiol Heart Circ Physiol (2022) +- FE Mason; JRD Pronto; K Alhussini; C Maack; N Voigt. Cellular and mitochondrial mechanisms of atrial fibrillation.. Basic Res Cardiol (2020) +- Y Yang; MB Muisha; J Zhang; Y Sun; Z Li. Research progress on N6-adenosylate methylation RNA modification in heart failure remodeling.. J Transl Int Med (2022) +- Y Li; R Lin; X Peng; X Wang; X Liu; L Li; R Bai; S Wen; Y Ruan; X Chang; . The role of mitochondrial quality control in anthracycline-induced cardiotoxicity: From bench to bedside.. Oxidative Med Cell Longev (2022) +- S Helling; S Vogt; A Rhiel; R Ramzan; L Wen; K Marcus; B Kadenbach. Phosphorylation and kinetics of mammalian cytochrome c oxidase.. Mol Cell Proteomics (2008) +- B Ludwig; E Bender; S Arnold; M Hüttemann; I Lee; B Kadenbach. Cytochrome C oxidase and the regulation of oxidative phosphorylation.. Chembiochem (2001) +- S Papa; D De Rasmo; S Scacco; A Signorile; Z Technikova-Dobrova; G Palmisano; AM Sardanelli; F Papa; D Panelli; R Scaringi; . Mammalian complex I: A regulable and vulnerable pacemaker in mitochondrial respiratory function.. Biochim Biophys Acta (2008) +- JT Cribbs; S Strack. Reversible phosphorylation of Drp1 by cyclic AMP-dependent protein kinase and calcineurin regulates mitochondrial fission and cell death.. EMBO Rep (2007) +- JR McMullen; EJH Boey; JYY Ooi; JF Seymour; MJ Keating; CS Tam. Ibrutinib increases the risk of atrial fibrillation, potentially through inhibition of cardiac PI3K-Akt signaling.. Blood (2014) +- L Xiao; J-E Salem; S Clauss; A Hanley; A Bapat; M Hulsmans; Y Iwamoto; G Wojtkiewicz; M Cetinbas; MJ Schloss; . Ibrutinib-mediated atrial fibrillation due to inhibition of CSK.. Circulation (2020) +- L Jiang; L Li; Y Ruan; S Zuo; X Wu; Q Zhao; Y Xing; X Zhao; S Xia; R Bai; . Ibrutinib promotes atrial fibrillation by inducing structural remodeling and calcium dysregulation in the atrium.. Heart Rhythm (2019) +- X Yang; N An; C Zhong; M Guan; Y Jiang; X Li; H Zhang; L Wang; Y Ruan; Y Gao; . Enhanced cardiomyocyte reactive oxygen species signaling promotes ibrutinib-induced atrial fibrillation.. Redox Biol (2020) +- W Marin. A-kinase anchoring protein 1 (AKAP1) and its role in some cardiovascular diseases.. J Mol Cell Cardiol (2020) +- Y Liu; RA Merrill; S Strack. A-kinase anchoring protein 1: Emerging roles in regulating mitochondrial form and function in health and disease.. Cells (2020) +- G Edwards; GA Perkins; K-Y Kim; Y Kong; Y Lee; S-H Choi; Y Liu; D Skowronska-Krawczyk; RN Weinreb; L Zangwill; . Loss of AKAP1 triggers Drp1 dephosphorylation-mediated mitochondrial fission and loss in retinal ganglion cells.. Cell Death Dis (2020) +- B Qi; L He; Y Zhao; L Zhang; Y He; J Li; C Li; B Zhang; Q Huang; J Xing; . Akap1 deficiency exacerbates diabetic cardiomyopathy in mice by NDUFS1-mediated mitochondrial dysfunction and apoptosis.. Diabetologia (2020) +- KH Flippo; A Gnanasekaran; GA Perkins; A Ajmal; RA Merrill; AS Dickey; SS Taylor; GS McKnight; AK Chauhan; YM Usachev; . AKAP1 protects from cerebral ischemic stroke by inhibiting Drp1-dependent mitochondrial fission.. J Neurosci (2018) +- MP Catanzaro; A Weiner; A Kaminaris; C Li; F Cai; F Zhao; S Kobayashi; T Kobayashi; Y Huang; H Sesaki; . Doxorubicin-induced cardiomyocyte death is mediated by unchecked mitochondrial fission and mitophagy.. FASEB J (2019) +- L Chen; Q Tian; Z Shi; Y Qiu; Q Lu; C Liu. Melatonin alleviates cardiac function in sepsis-caused myocarditis via maintenance of mitochondrial function.. Front Nutr (2021) +- H Zhang; J Liu; M Cui; H Chai; L Chen; T Zhang; J Mi; H Guan; L Zhao. Moderate-intensity continuous training has time-specific effects on the lipid metabolism of adolescents.. J Transl Int Med (2023) +- L Dou; E Lu; D Tian; F Li; L Deng; Y Zhang. Adrenomedullin induces cisplatin chemoresistance in ovarian cancer through reprogramming of glucose metabolism.. J Transl Int Med (2023) +- Y Peng; Y Wang; C Zhou; W Mei; C Zeng. PI3K/Akt/mTOR pathway and its role in cancer therapeutics: Are we making headway?. Front Oncol (2022) +- VL Damaraju; M Kuzma; CE Cass; CT Putman; MB Sawyer. Multitargeted kinase inhibitors imatinib, sorafenib and sunitinib perturb energy metabolism and cause cytotoxicity to cultured C2C12 skeletal muscle derived myotubes.. Biochem Pharmacol (2018) +- Y Xu; W Wan; H Zeng; Z Xiang; M Li; Y Yao; Y Li; M Bortolanza; J Wu. Exosomes and their derivatives as biomarkers and therapeutic delivery agents for cardiovascular diseases: Situations and challenges.. J Transl Int Med (2023) +- W Yu; X Qin; Y Zhang; P Qiu; L Wang; W Zha; J Ren. Curcumin suppresses doxorubicin-induced cardiomyocyte pyroptosis via a PI3K/Akt/mTOR-dependent manner.. Cardiovasc Diagn Ther (2020) +- W Fakih; A Mroueh; D-S Gong; S Kikuchi; MP Pieper; M Kindo; J-P Mazzucottelli; A Mommerot; M Kanso; P Ohlmann; . Activated factor X stimulates atrial endothelial cells and tissues to promote remodelling responses through AT1R/NADPH oxidases/SGLT1/2.. Cardiovasc Res (2024) +- Y Li; D Huang; L Jia; F Shangguan; S Gong; L Lan; Z Song; J Xu; C Yan; T Chen; . LonP1 links mitochondria–ER interaction to regulate heart function.. Research (2023) +- Y Li; X Peng; R Lin; X Wang; X Liu; F Meng; Y Ruan; R Bai; R Tang; N Liu. Tyrosine kinase inhibitor antitumor therapy and atrial fibrillation: Potential off-target effects on mitochondrial function and cardiac substrate utilization.. Cardiovasc Innov Appl (2023) +- TF Chu; MA Rupnick; R Kerkela; SM Dallabrida; D Zurakowski; L Nguyen; K Woulfe; E Pravda; F Cassiola; J Desai; . Cardiotoxicity associated with tyrosine kinase inhibitor sunitinib.. Lancet (2007) +- E Tolstik; MB Gongalsky; J Dierks; T Brand; M Pernecker; NV Pervushin; DE Maksutova; KA Gonchar; JV Samsonova; G Kopeina; . Raman and fluorescence micro-spectroscopy applied for the monitoring of sunitinib-loaded porous silicon nanocontainers in cardiac cells.. Front Pharmacol (2023) +- Y Will; JA Dykens; S Nadanaciva; B Hirakawa; J Jamieson; LD Marroquin; J Hynes; S Patyna; BA Jessen. Effect of the multitargeted tyrosine kinase inhibitors imatinib, dasatinib, sunitinib, and sorafenib on mitochondrial function in isolated rat heart mitochondria and H9c2 cells.. Toxicol Sci (2008) +- Y Li; J Yan; Q Zhao; Y Zhang; Y Zhang. ATF3 promotes ferroptosis in sorafenib-induced cardiotoxicity by suppressing Slc7a11 expression.. Front Pharmacol (2022) +- Y Yu; Y Yan; F Niu; Y Wang; X Chen; G Su; Y Liu; X Zhao; L Qian; P Liu; . Ferroptosis: A cell death connecting oxidative stress, inflammation and cardiovascular diseases.. Cell Death Discov (2023) +- Y-T Chen; AN Masbuchin; Y-H Fang; L-W Hsu; S-N Wu; C-J Yen; Y-W Liu; Y-W Hsiao; J-M Wang; MS Rohman; . Pentraxin 3 regulates tyrosine kinase inhibitor-associated cardiomyocyte contraction and mitochondrial dysfunction via ERK/JNK signalling pathways.. Biomed Pharmacother (2023) +- J Bouitbir; MV Panajatovic; S Krähenbühl. Mitochondrial toxicity associated with imatinib and sorafenib in isolated rat heart fibers and the cardiomyoblast H9c2 cell line.. Int J Mol Sci (2022) +- X Zhang; Z Zhang; Y Zhao; N Jiang; J Qiu; Y Yang; J Li; X Liang; X Wang; G Tse; . Alogliptin, a dipeptidyl peptidase-4 inhibitor, alleviates atrial remodeling and improves mitochondrial function and biogenesis in diabetic rabbits.. J Am Heart Assoc (2017) +- W Peng; D Rao; M Zhang; Y Shi; J Wu; G Nie; Q Xia. Teneligliptin prevents doxorubicin-induced inflammation and apoptosis in H9c2 cells.. Arch Biochem Biophys (2020) +- V Okunrintemi; BM Mishriky; JR Powell; DM Cummings. Sodium-glucose co-transporter-2 inhibitors and atrial fibrillation in the cardiovascular and renal outcome trials.. Diabetes Obes Metab (2021) +- H Zhou; S Wang; P Zhu; S Hu; Y Chen; J Ren. Empagliflozin rescues diabetic myocardial microvascular injury via AMPK-mediated inhibition of mitochondrial fission.. Redox Biol (2018) +- V Avula; G Sharma; MN Kosiborod; M Vaduganathan; TG Neilan; T Lopez; S Dent; L Baldassarre; M Scherrer-Crosbie; A Barac; . SGLT2 inhibitor use and risk of clinical events in patients with cancer therapy-related cardiac dysfunction.. JACC Heart Fail (2024) +- M Chen. Empagliflozin attenuates doxorubicin-induced cardiotoxicity by activating AMPK/SIRT-1/PGC-1α-mediated mitochondrial biogenesis.. Toxicol Res (2023) +- R Lin; X Peng; Y Li; X Wang; X Liu; X Jia; C Zhang; N Liu; J Dong. Empagliflozin attenuates doxorubicin-impaired cardiac contractility by suppressing reactive oxygen species in isolated myocytes.. Mol Cell Biochem (2023) +- J Feng; Z Chen; Y Ma; X Yang; Z Zhu; Z Zhang; J Hu; W Liang; G Ding. AKAP1 contributes to impaired mtDNA replication and mitochondrial dysfunction in podocytes of diabetic kidney disease.. Int J Biol Sci (2022) +- S Shafaattalab; E Lin; E Christidi; H Huang; Y Nartiss; A Garcia; J Lee; S Protze; G Keller; L Brunham; . Ibrutinib displays atrial-specific toxicity in human stem cell-derived cardiomyocytes.. Stem Cell Rep (2019) +- H Lahm; M Jia; M Dreßen; F Wirth; N Puluca; R Gilsbach; BD Keavney; J Cleuziou; N Beck; O Bondareva; . Congenital heart disease risk loci identified by genome-wide association study in European patients.. J Clin Invest (2021) +- J Yang; H Tan; M Sun; R Chen; Z Jian; Y Song; J Zhang; S Bian; B Zhang; Y Zhang; . Single-cell RNA sequencing reveals a mechanism underlying the susceptibility of the left atrial appendage to intracardiac thrombogenesis during atrial fibrillation.. Clin Transl Med (2023) +- A Chaudhry; R Shi; DS Luciani. A pipeline for multidimensional confocal analysis of mitochondrial morphology, function, and dynamics in pancreatic β-cells.. Am J Physiol Endocrinol Metab (2020) +- K Wu; L-L Li; Y-K Li; X-D Peng; M-X Zhang; K-S Liu; X-S Wang; J-X Yang; S-N Wen; Y-F Ruan; . Modifications of the Langendorff method for simultaneous isolation of atrial and ventricular myocytes from adult mice.. J Vis Exp (2021) \ No newline at end of file diff --git a/tests/data/xml/10-1055-a-2308-2290.nxml b/tests/data/xml/10-1055-a-2308-2290.nxml new file mode 100644 index 00000000..d9c9aa10 --- /dev/null +++ b/tests/data/xml/10-1055-a-2308-2290.nxml @@ -0,0 +1,512 @@ + +
pmcThromb HaemostThromb Haemost10.1055/s-00035024Thrombosis and Haemostasis0340-62452567-689XGeorg Thieme Verlag KGRüdigerstraße 14, 70469 Stuttgart, Germany +3863138511518617 +10.1055/a-2308-2290TH-23-11-0519Stroke, Systemic or Venous ThromboembolismThe Association between Obstructive Sleep Apnea and Venous Thromboembolism: A Bidirectional Two-Sample Mendelian Randomization StudyHuangZhihai1*ZhengZhenzhen2*PangLingpin1*FuKaili2ChengJunfen2ZhongMing1SongLingyue1GuoDingyu1ChenQiaoyun1LiYanxi1LvYongting1ChenRiken2SunXishi1Emergency Medicine Center, Affiliated Hospital of Guangdong Medical University, Zhanjiang, Guangdong, ChinaRespiratory and Critical Care Medicine, The Second Affiliated Hospital of Guangdong Medical University, Zhanjiang, Guangdong, ChinaAddress for correspondence Riken Chen, MD Respiratory and Critical Care Medicine, The Second Affiliated Hospital of Guangdong Medical UniversityZhanjiang, 524003, GuangdongChinachenriken@126.comXishi Sun, MM Emergency Medicine Center, Affiliated Hospital of Guangdong Medical UniversityZhanjiang, 524000, GuangdongChina109721368@qq.com23520241120241520241241110611074271120231142024 +The Author(s). This is an open access article published by Thieme under the terms of the Creative Commons Attribution-NonDerivative-NonCommercial License, permitting copying and reproduction so long as the original work is given appropriate credit. Contents may not be used for commercial purposes, or adapted, remixed, transformed or built upon. ( +https://creativecommons.org/licenses/by-nc-nd/4.0/ +) +2024The Author(s).https://creativecommons.org/licenses/by-nc-nd/4.0/This is an open-access article distributed under the terms of the Creative Commons Attribution-NonCommercial-NoDerivatives License, which permits unrestricted reproduction and distribution, for non-commercial purposes only; and use and reproduction, but not distribution, of adapted material for non-commercial purposes only, provided the original work is properly cited.

Background + Despite previous observational studies linking obstructive sleep apnea (OSA) to venous thromboembolism (VTE), these findings remain controversial. This study aimed to explore the association between OSA and VTE, including pulmonary embolism (PE) and deep vein thrombosis (DVT), at a genetic level using a bidirectional two-sample Mendelian randomization (MR) analysis. +

Methods + Utilizing summary-level data from large-scale genome-wide association studies in European individuals, we designed a bidirectional two-sample MR analysis to comprehensively assess the genetic association between OSA and VTE. The inverse variance weighted was used as the primary method for MR analysis. In addition, MR–Egger, weighted median, and MR pleiotropy residual sum and outlier (MR-PRESSO) were used for complementary analyses. Furthermore, a series of sensitivity analyses were performed to ensure the validity and robustness of the results. +

Results + The initial and validation MR analyses indicated that genetically predicted OSA had no effects on the risk of VTE (including PE and DVT). Likewise, the reverse MR analysis did not find substantial support for a significant association between VTE (including PE and DVT) and OSA. Supplementary MR methods and sensitivity analyses provided additional confirmation of the reliability of the MR results. +

Conclusion + Our bidirectional two-sample MR analysis did not find genetic evidence supporting a significant association between OSA and VTE in either direction. +

Keywordsobstructive sleep apneavenous thromboembolismMendelian randomizationassociationFunding +This study was supported by the High-level Talents Scientific Research Start-up Funds of the Affiliated Hospital of Guangdong Medical University (GCC2022028), the Health Development Promotion Project-Anesthesia and Critical Care Research Project (KM-20231120-01), Guangdong Medical Research Fund Project (A2024728, A2024723), Zhanjiang Science and Technology Research Project in 2022 (No: 2022A01197), and the Science and Technology Development Special Fund Competitive Allocation Project of Zhanjiang City (No: 2021A05086). +
Introduction

+Obstructive sleep apnea (OSA) is a prevalent sleep disorder characterized by the recurrent partial or complete obstruction and collapse of the upper airway during sleep, leading to episodes of apneas and hypoventilation. +1 +2 +Research studies have reported that the prevalence of OSA in the adult population ranges from 9 to 38%, with a higher prevalence observed in males (13–33%) compared to females (6–19%). Moreover, the prevalence of OSA tends to increase with age and is closely associated with the prevalence of obesity. +3 +4 +

+There is mounting evidence indicating that OSA serves as an independent risk factor for several cardiovascular diseases, including hypertension, +5 +stroke, +6 +pulmonary hypertension, +7 +and heart failure. +8 +Venous thromboembolism (VTE), including deep vein thrombosis (DVT) and pulmonary embolism (PE), is recognized as the third most common cardiovascular disease worldwide. +9 +There is evidence suggesting that OSA may also be linked to an increased risk of VTE. +10 +For instance, a prospective study involving 15,664 subjects (1,424 subjects with OSA) observed a twofold higher incidence of VTE in patients with OSA compared to non-OSA patients. +11 +Similarly, findings from a national retrospective cohort study conducted by Peng and his colleagues indicated that patients with OSA had a 3.50-fold higher risk of DVT and a 3.97-fold higher risk of PE compared to the general population. +12 +However, the results of observational studies remain somewhat controversial. A 5-year prospective study involving 2,109 subjects concluded that OSA did not increase the risk of VTE recurrence. +13 +Another retrospective analysis involving 1,584 patients, of which 848 were women, revealed an intriguing discovery suggesting that OSA may serve as an independent risk factor for VTE solely in women, rather than in men. +14 +Moreover, patients with VTE were found to have a higher prevalence of OSA, +15 +suggesting a potential bidirectional relationship. +

+Although previous observational studies have investigated the potential association between OSA and VTE, elucidating aspects of the association from these studies is challenging due to the limitations of potential confounders and reverse causality bias. Mendelian randomization (MR) is a genetic epidemiological methodology that utilizes genetic variants, such as single-nucleotide polymorphisms (SNPs), as instrumental variables (IVs) to infer the genetic association between exposure and outcome. +16 +The advantage of MR analysis lies in the random assignment of genetic variants during meiosis, which effectively circumvents the effects of potential confounders and reverse causality encountered in classical epidemiologic studies. +17 +

At present, the nature of the association between OSA and VTE remains inconclusive, and there is a dearth of pertinent studies comprehensively exploring the genetic association between OSA and VTE. Therefore, this study aimed to conduct a bidirectional two-sample MR analysis using publicly available summary statistics from large-scale genome-wide association studies (GWAS) to genetically assess the exact association between OSA and VTE, including PE and DVT.

MethodsStudy Design

MR utilizes genetic variants, primarily SNPs, as IVs to investigate the genetic association between exposure and outcome. MR is based on three fundamental assumptions: (1) genetic variants exhibit a high correlation with exposure; (2) genetic variants are independent of potential confounders; (3) genetic variants solely affect outcomes through exposure. IVs are deemed valid only when these assumptions are met.

This study employed a bidirectional two-sample MR analysis to evaluate the genetic association between OSA and VTE. Initially, SNPs associated with OSA were utilized to examine their effects on VTE. Subsequently, to investigate the possibility of reverse association, eligible IVs were employed to quantify the implications of VTE on OSA.

Data Source and Selection of Instrumental Variables

OSA was defined based on subjective symptoms, clinical examination, and sleep registration applying apnea–hypopnea index ≥5/hour or respiratory event index ≥5/hour.

+Summary-level data for OSA were obtained from the GWAS study conducted by Jiang et al on European individuals, which included 2,827 cases and 453,521 controls, covering 11,831,932 SNPs. +18 +To ensure the robustness of the findings, additional datasets for OSA were acquired from a GWAS meta-analysis conducted by Campos and colleagues, comprising 25,008 cases of European ancestry and 337,630 controls, involving 9,031,949 SNPs for validation analysis. +19 +The study conducted a meta-analysis of GWAS datasets from five cohorts in the United Kingdom, Canada, Australia, the United States, and Finland. These summary-level GWAS statistics for OSA can be accessed from the GWAS Catalog ( +https://www.ebi.ac.uk/gwas/downloads +). VTE was defined as a condition comprising PE (blockage of the pulmonary artery or its branches by an embolus) and DVT (formation of a blood clot in a deep vein). The GWAS datasets for VTE (19,372 cases and 357,905 controls), PE (9,243 cases and 367,108 controls), and DVT (9,109 cases and 324,121 controls) were derived from the FinnGen consortium (Release 9, +https://r9.finngen.fi/ +). Detailed information regarding the data sources is provided in +Table 1 +. +

Information on data sources
TraitSample sizeCaseControlNo. of SNPsParticipatesPMID/Link
OSA (Jiang et al)456,3482,827453,52111,831,932European ancestry34737426
OSA (Campos et al)362,63825,008337,6309,031,949European ancestry36525587
VTE377,27719,372357,90520,170,236European ancestry +FinnGen consortium ( +https://www.finngen.fi/fi +) +
PE376,3519,243367,10820,170,202European ancestry +FinnGen consortium ( +https://www.finngen.fi/fi +) +
DVT333,2309,109324,12120,169,198European ancestry +FinnGen consortium ( +https://www.finngen.fi/fi +) +

Abbreviations: DVT, deep vein thrombosis; OSA, obstructive sleep apnea; PE, pulmonary embolism; SNPs, single-nucleotide polymorphisms; VTE, venous thromboembolism.

+The selection criteria for IVs were as follows: (1) the threshold for genome-wide significant SNPs for VTE (including PE and DVT) was set at +p + < 5.0 × 10 +−8 +, while the threshold for OSA was adjusted to +p + < 1 × 10 +−5 +due to the inability to detect OSA-associated SNPs using a significance level of +p + < 5.0 × 10 +−8 +. (2) SNPs with linkage disequilibrium effects ( +r +2 + < 0.001 within a 10,000-kb window) were excluded to ensure the independence of the selected IVs. (3) The strength of the association between IVs and exposure was measured using the F-statistic [F-statistic = (Beta/SE) +2 +]. +20 +SNPs with F-statistics >10 were retained to avoid the effects of weak instrumental bias. (4) During the harmonization process, SNPs that did not match the results were removed, along with palindromic SNPs with ambiguous allele frequencies (0.42–0.58). +21 +(5) Previous studies have demonstrated obesity as an established risk factor for OSA and VTE. +22 +23 +SNPs associated with body mass index were queried and excluded by Phenoscanner (http://www.phenoscanner.medschl.cam.ac.uk/). The flowchart of IV selection is shown in +Fig. 1 +. +

+The flowchart of instrumental variables selection. LD, linkage disequilibrium; SNPs, single-nucleotide polymorphisms; BMI, body mass index; VTE, venous thromboembolism; PE, pulmonary embolism; DVT, deep vein thrombosis; OSA, obstructive sleep apnea; ①, represents OSA (Jiang et al) as the outcome; ②, represents OSA (Campos et al) as the outcome. +

Statistical Analysis

+This study employed the multiplicative random-effects inverse variance weighted (IVW) method as the primary approach for conducting MR analysis to evaluate the genetic association between OSA and VTE. The IVW method meta-analyzes the Wald ratio estimates for each SNP on the outcome, providing precise estimates of causal effects when all selected SNPs are valid IVs. +24 +However, the estimates of causal effects from the IVW method may be biased by the influence of pleiotropic IVs. To ensure the validity and robustness of the results, sensitivity analyses were implemented using three additional MR methods, namely MR–Egger, weighted median, and MR pleiotropy residual sum and outlier (MR-PRESSO). The MR–Egger method is able to generate reliable causal estimates even in situations where all IVs are invalid. Additionally, MR–Egger offers an intercept test to detect horizontal pleiotropy, with a significance threshold of +p +<0.05 indicating the presence of horizontal pleiotropy. +25 +In comparison to the IVW and MR–Egger methods, the weighted median method demonstrates greater robustness and provides consistent estimates of causal effects, even when up to 50% of the IVs are invalid instruments. +26 +The MR-PRESSO method identifies outliers with potential horizontal pleiotropy and provides estimates after removing the outliers, where +p +<0.05 for the global test indicates the presence of outliers with horizontal pleiotropy. +27 +Furthermore, the Cochran Q test was utilized to examine heterogeneity, with a significance threshold of +p +<0.05 indicating significant heterogeneity. +

All statistical analyses were carried out using the “TwoSampleMR” and “MRPRESSO” packages in R software (version 4.2.1).

ResultsInstrumental Variable Selection

+As previously outlined, a total of 13 and 28 SNPs were identified through a rigorous screening process to evaluate the effects of OSA on VTE, PE, and DVT. In the reverse MR analysis, 23, 14, 18, 19, 11, and 13 SNPs were identified to assess the implications of reverse association, respectively. Additional details regarding these genetic variants utilized for MR analysis are provided in +Tables 2 +and +3 +. +

Genetic variants used in the MR analysis
+Genetic instruments for OSA (Jiang et al) and their associations with VTE, PE, and DVT +
+Exposure: OSA (Jiang et al) + +Outcome: VTE + +Outcome: PE + +Outcome: DVT +
+SNP + +EA + +OA + +Beta + +SE + +p +-Value + +F-statistic + +Beta + +SE + +p +-Value + +Beta + +SE + +p +-Value + +Beta + +SE + +p +-Value +
1rs114417992CG0.487980.107936.15E-0620.44090.007020.043780.87253−0.05420.062110.3832−0.00520.063340.93511
2rs115071002TC−0.37750.08072.90E-0621.8836−0.05210.050450.301460.03590.071850.61729−0.06330.072470.38241
3rs117025138CG0.427950.095717.78E-0619.9915−0.01490.054770.786110.00870.078090.91129−0.03380.078360.66637
4rs117474005TC0.641760.141385.64E-0620.6051−0.00950.041080.81724−0.00090.058620.98772−0.03010.058910.60971
5rs139183760CG0.829730.169289.50E-0724.02620.065140.076810.396430.044410.109290.684480.047610.110240.66585
6rs148047757AG0.474810.106999.08E-0619.6952−0.05220.03520.13769−0.0440.049990.37895−0.02940.050780.562
7rs150798389CA0.78750.173915.95E-0620.505−0.28840.14350.04447−0.24360.200530.22438−0.13290.206790.52056
8rs16850412AG0.195140.043537.36E-0620.09770.026740.015840.091450.047850.022530.033680.01730.022770.44739
9rs1911999CT−0.13120.029659.59E-0619.59170.017590.011110.113490.03760.015770.017140.002230.015960.88889
10rs2302012AG0.128290.028717.88E-0619.9669−0.01040.010760.33549−0.02720.01530.075410.007670.015450.61949
11rs35963104TC0.165720.034521.59E-0623.0393−0.00760.013540.57685−0.020.019240.29896−0.0070.019420.71778
12rs60445800TC0.291910.064997.06E-0620.1758−0.02680.023610.25672−0.06490.033490.052770.01120.033880.74095
13rs9587442TC0.443080.095843.78E-0621.3735−0.03850.033460.24969−0.01010.047810.833220.001820.047830.96962
+Genetic instruments for OSA (Campos et al) and their associations with VTE, PE, and DVT +
+Exposure: OSA (Campos et al) + +Outcome: VTE + +Outcome: PE + +Outcome: DVT +
+SNP + +EA + +OA + +Beta + +SE + +p +-Value + +F-statistic + +Beta + +SE + +p +-Value + +Beta + +SE + +p +-Value + +Beta + +SE + +p +-Value +
1rs10777826TC−0.03190.006641.58E-0623.04960.006840.010970.532960.010490.015570.500530.017630.015760.26318
2rs10878269TC0.033080.00691.61E-0623.0112−0.02080.011910.08097−0.02620.016930.12108−0.0150.017110.37964
3rs111909157TC−0.13550.026583.40E-0726.010.026640.042220.528080.039950.059990.50540.03640.060890.55
4rs116114601AG−0.08730.019699.20E-0619.6692−0.04010.040980.32779−0.06760.058140.24516−0.01820.058730.75679
5rs11989172CG−0.03780.008396.73E-0620.268−0.02170.012830.09−0.0390.018230.032220.010580.018420.56561
6rs12265404AG0.049310.010412.17E-0622.43920.052330.01660.001620.056870.02330.014670.042780.023580.06956
7rs12306339AC−0.04880.010836.64E-0620.295−0.00510.018040.77914−0.0230.025610.370060.014620.025930.57292
8rs13098300TC0.037150.007121.84E-0727.19620.002510.012020.834340.01010.017080.554325.55E-050.017270.99744
9rs140548601CG−0.11580.024281.85E-0622.75290.055030.047110.242770.092060.066920.168950.046130.067620.49515
10rs143417867AG−0.36660.070882.30E-0726.7599−0.14870.22160.50210.156640.315820.61991−0.08680.315940.78353
11rs1942263AG0.045690.010166.93E-0620.214−0.01560.017130.36361−0.01360.024360.57584−0.03180.024680.19751
12rs2876633AT−0.03550.006953.43E-0725.9896−0.01040.011580.36765−0.01040.016450.528450.00320.016640.84772
13rs35847366AG0.05450.011723.31E-0621.6318−0.03650.018310.04596−0.03830.026030.14125−0.05110.026290.0517
14rs36051007TC0.034810.007161.14E-0623.6682−0.00370.010950.73452−0.01450.015570.351990.007230.015730.64597
15rs3774800AG−0.03090.00697.79E-0619.98980.003950.011510.73124−0.01070.016340.512180.00930.016540.57396
16rs4542364AG0.030280.006736.69E-0620.277−0.00530.010840.6236−0.01990.015410.197370.001630.015590.91663
17rs4675933TC−0.03290.007093.44E-0621.54820.008220.010930.451870.003960.015540.798630.015930.015680.30957
18rs533143TC0.032370.007329.73E-0619.56290.028920.014290.043040.027570.020310.17470.01110.020540.58881
19rs60653979AG0.033840.00686.43E-0724.78050.010980.010830.31063−0.01540.015390.318440.028870.015570.06364
20rs62559379CG0.07060.014551.22E-0623.5419−0.01630.027260.54934−0.0280.038710.46867−0.01130.039150.77255
21rs7106583TC0.038680.008394.09E-0621.2244−0.04340.0140.00194−0.02050.020060.30655−0.04140.02030.04114
22rs72904209TC−0.04460.009835.67E-0620.5934−0.01530.016170.34449−0.03550.022920.1215−0.00660.023270.77599
23rs73141516TC0.064960.014154.40E-0621.08650.00840.021840.70062−0.02410.031050.437970.034050.031330.27717
24rs73164714TC−0.06950.012856.43E-0829.2248−0.0280.037210.452560.005620.052760.91513−0.01390.053190.79352
25rs7800775AG0.034870.007858.98E-0619.71360.003510.013570.795980.007580.019290.69414−0.01660.019480.39528
26rs794999AG0.034210.007647.64E-0620.02560.001080.012580.931710.01390.017860.436490.003740.018070.83582
27rs9464135AG−0.03090.006633.11E-0621.7436−0.00760.010550.471510.011640.0150.43786−0.03750.015160.01337
28rs9567762AT0.036350.008239.92E-0619.52760.012230.010840.259340.004030.01540.79340.015520.015570.31884

Abbreviations: DVT, deep vein thrombosis; EA, effect allele; MR, Mendelian randomization; OA, other allele; OSA, obstructive sleep apnea; PE, pulmonary embolism; SE, standard error; SNP, single-nucleotide polymorphism; VTE, venous thromboembolism.

+Note: F-statistic = (Beta/SE) +2 +, represents the strength of each instrumental variable +

Genetic variants used in the reverse MR analysis
+Genetic instruments for VTE/PE/DVT and their associations with OSA (Jiang et al) +
+Exposure: VTE + +Outcome: OSA (Jiang et al) +
+SNP + +EA + +OA + +Beta + +SE + +p +-Value + +F-statistic + +Beta + +SE + +p +-Value +
1rs10896706AG0.07021420.01210066.53E-0933.669456−0.05978450.0293450.0416207
2rs113079063TG0.3781070.05077699.59E-1455.4494280.00503640.08761340.954159
3rs114026832AC0.7739250.0999159.50E-1559.9979440.05787730.1805430.748533
4rs114767153TA−0.208880.03481731.98E-0935.991798−0.07121890.09099720.433833
5rs116997538TC0.4032880.03830666.42E-26110.83665−0.0677350.1238970.584581
6rs12054563GA−0.1266770.01764316.97E-1351.5520270.06026950.06636010.363763
7rs1560711TC0.1223790.01414655.11E-1874.8369010.03100440.03210240.334145
8rs174529CT−0.06863420.01072111.54E-1040.982878−0.00534170.02766730.846904
9rs188337046TC0.160480.02504241.47E-1041.0667120.1783110.2066210.388145
10rs2066865AG0.1861120.01123691.30E-61274.318890.00831540.03136910.790945
11rs2519785GA−0.07029910.01188823.35E-0934.9677210.00743190.02971830.802526
12rs3756011AC0.1927120.01055251.65E-74333.50841−0.00263860.02728310.922956
13rs57328376GA0.06975840.01091981.68E-1040.809724−0.01018060.02905330.726031
14rs576123TC−0.2373960.01049733.09E-113511.436330.008190.02877790.775956
15rs5896TC0.1092910.01258523.82E-1875.4134060.06147730.03881910.113265
16rs6025TC0.8734150.02983882.42E-188856.798280.05022170.08997960.576745
17rs6060308AG0.1015870.01123591.55E-1981.7448760.05219360.03087370.0909227
18rs60681578CA−0.1183920.01500292.99E-1562.2722110.01691030.03907730.665204
19rs62350309GA−0.1735090.01814481.15E-2191.440721−0.0719560.06346850.256909
20rs628094AG0.08187810.01143898.19E-1351.2350290.00270280.03021680.928726
21rs72708961CT0.08919130.01594452.22E-0831.291269−0.07653070.03677980.0374539
22rs7772305GA−0.07269640.01115867.28E-1142.4430310.05857780.03071640.0565137
23rs78807356TG0.5410940.05636167.96E-2292.1677130.1016170.07961390.201825
+Exposure: PE + +Outcome: OSA (Jiang et al) +
+SNP + +EA + +OA + +Beta + +SE + +p +-Value + +F-statistic + +Beta + +SE + +p +-Value +
1rs117210485AG0.1507870.02286994.30E-1143.4709640.02146180.1141770.8509
2rs11758950TC0.2039470.03679072.97E-0830.7297160.04185210.08219530.610627
3rs143620474AG0.2812430.05122634.01E-0830.1423750.5468190.1552260.0004271
4rs1481808CT−0.4809290.08757593.98E-0830.157318−0.1649330.1054590.117828
5rs1560711TC0.1447040.02020738.01E-1351.2795840.03100440.03210240.334145
6rs1894692AG−0.5478080.04577645.29E-33143.210040.00023650.09515330.998017
7rs2066865AG0.2274840.01580675.85E-47207.118690.00831540.03136910.790945
8rs28584824AC−0.1552640.02792342.69E-0830.917541−0.02687560.07821080.731124
9rs3756011AC0.2347840.01491437.77E-56247.81709−0.00263860.02728310.922956
10rs62350309GA−0.2025340.02603727.33E-1560.507237−0.0719560.06346850.256909
11rs635634CT−0.2396360.01779352.43E-41181.376640.00645960.03471970.852404
12rs665082CG−0.1755810.0304848.42E-0933.175015−0.3432670.2164050.112688
13rs77165492CT0.2092690.02754623.03E-1457.714695−0.04456180.04577690.330327
14rs78807356TG0.5157840.07950968.75E-1142.0820220.1016170.07961390.201825
+Exposure: DVT + +Outcome: OSA (Jiang et al) +
+SNP + +EA + +OA + +Beta + +SE + +p +-Value + +F-statistic + +Beta + +SE + +p +-Value +
1rs113079063TG0.4362840.07175631.20E-0936.9673650.00503640.08761340.954159
2rs116997538TC0.4662450.05345832.74E-1876.067315−0.0677350.1238970.584581
3rs13377102AT−0.2332550.02550946.02E-2083.610619−0.02501860.03895180.520681
4rs2066865AG0.1845070.01611452.36E-30131.096780.00831540.03136910.790945
5rs2289252TC0.1979720.0151354.26E-39171.09712−0.00184110.02725710.946148
6rs2519785GA−0.09824670.01699737.46E-0933.4099680.00743190.02971830.802526
7rs576123TC−0.2976820.0149837.70E-88394.736780.008190.02877790.775956
8rs5896TC0.1410240.0179453.88E-1561.758840.06147730.03881910.113265
9rs6025TC1.104390.03939035.71E-173786.079290.05022170.08997960.576745
10rs6060237GA0.1684530.01982141.92E-1772.2252160.03184320.04140730.441879
11rs60681578CA−0.1376150.0216271.98E-1040.4891810.01691030.03907730.665204
12rs62350309GA−0.1627040.02599983.90E-1039.161241−0.0719560.06346850.256909
13rs666870AG0.09248320.01590696.10E-0933.8029490.01279680.02715580.637472
14rs7308002AG0.09781740.015765.41E-1038.522974−0.00279340.02757460.919309
15rs76151810AC0.1530730.02731122.09E-0831.413449−0.00184930.05072560.970918
16rs7772305GA−0.1002510.0160574.28E-1038.9806080.05857780.03071640.0565137
17rs78807356TG0.6214470.07924144.42E-1561.5040780.1016170.07961390.201825
18rs9865118TC0.08638040.01518141.27E-0832.3747760.03635830.02683380.175436
+Genetic instruments for VTE/PE/DVT and their associations with OSA (Campos et al) +
+Exposure: VTE + +Outcome: OSA (Campos et al) +
+SNP + +EA + +OA + +Beta + +SE + +p +-Value + +F-statistic + +Beta + +SE + +p +-Value +
1rs10896706AG0.07021420.01210066.53E-0933.6694560.00733760.00727940.3136
2rs114767153TA−0.208880.03481731.98E-0935.991798−0.02404770.02202170.2749
3rs116997538TC0.4032880.03830666.42E-26110.83665−0.02029030.03462510.558
4rs12054563GA−0.1266770.01764316.97E-1351.552027−0.01645250.01595780.3025
5rs1560711TC0.1223790.01414655.11E-1874.836901−0.00334050.00900410.7104
6rs174529CT−0.06863420.01072111.54E-1040.982878−0.00162350.00685030.8124
7rs2066865AG0.1861120.01123691.30E-61274.31889−0.00339990.00776230.6612
8rs3756011AC0.1927120.01055251.65E-74333.508410.0005750.00676450.9326
9rs57328376GA0.06975840.01091981.68E-1040.809724−0.00100620.00718730.8885
10rs576123TC−0.2373960.01049733.09E-113511.436330.01835510.00867860.03441
11rs5896TC0.1092910.01258523.82E-1875.4134060.0209850.00965270.02974
12rs6025TC0.8734150.02983882.42E-188856.798280.03801180.02188360.08241
13rs6060308AG0.1015870.01123591.55E-1981.744876−0.00092880.00749010.9013
14rs60681578CA−0.1183920.01500292.99E-1562.2722110.00850670.01171720.4678
15rs62350309GA−0.1735090.01814481.15E-2191.4407210.00751140.01529820.6233
16rs628094AG0.08187810.01143898.19E-1351.235029−0.00223540.00740210.7627
17rs72708961CT0.08919130.01594452.22E-0831.291269−0.01706360.00909570.06059
18rs7772305GA−0.07269640.01115867.28E-1142.4430310.0167090.00863960.05311
19rs80137017TC−0.2089020.01779968.30E-32137.741470.01520220.00994260.1262
+Exposure: PE + +Outcome: OSA (Campos et al) +
+SNP + +EA + +OA + +Beta + +SE + +p +-Value + +F-statistic + +Beta + +SE + +p +-Value +
1rs117210485AG0.1507870.02286994.30E-1143.470964−0.03465230.02391460.1473
2rs143620474AG0.2812430.05122634.01E-0830.1423750.01249880.08927690.8889
3rs1481808CT−0.4809290.08757593.98E-0830.157318−0.02812430.02696480.297
4rs1560711TC0.1447040.02020738.01E-1351.279584−0.00334050.00900410.7104
5rs2066865AG0.2274840.01580675.85E-47207.11869−0.00339990.00776230.6612
6rs28584824AC−0.1552640.02792342.69E-0830.9175410.03241350.01915690.09056
7rs3756011AC0.2347840.01491437.77E-56247.817090.0005750.00676450.9326
8rs62350309GA−0.2025340.02603727.33E-1560.5072370.00751140.01529820.6233
9rs635634CT−0.2396360.01779352.43E-41181.376640.01399750.00969350.1488
10rs77165492CT0.2092690.02754623.03E-1457.7146950.00139460.01143110.9026
11rs80137017TC−0.2300140.025431.50E-1981.8117760.01520220.00994260.1262
+Exposure: DVT + +Outcome: OSA (Campos et al) +
+SNP + +EA + +OA + +Beta + +SE + +p +-Value + +F-statistic + +Beta + +SE + +p +-Value +
1rs116997538TC0.4662450.05345832.74E-1876.067315−0.02029030.03462510.558
2rs13377102AT−0.2332550.02550946.02E-2083.6106190.00855790.00965910.3759
3rs2066865AG0.1845070.01611452.36E-30131.09678−0.00339990.00776230.6612
4rs576123TC−0.2976820.0149837.70E-88394.736780.01835510.00867860.03441
5rs5896TC0.1410240.0179453.88E-1561.758840.0209850.00965270.02974
6rs6025TC1.104390.03939035.71E-173786.079290.03801180.02188360.08241
7rs6060237GA0.1684530.01982141.92E-1772.2252160.00605260.01017240.5518
8rs60681578CA−0.1376150.0216271.98E-1040.4891810.00850670.01171720.4678
9rs62350309GA−0.1627040.02599983.90E-1039.1612410.00751140.01529820.6233
10rs666870AG0.09248320.01590696.10E-0933.8029490.00746160.00672210.2669
11rs7308002AG0.09781740.015765.41E-1038.522974−0.00236440.00685330.7298
12rs7772305GA−0.1002510.0160574.28E-1038.9806080.0167090.00863960.05311
13rs9865118TC0.08638040.01518141.27E-0832.374776−0.00056480.00664420.9323

Abbreviations: DVT, deep vein thrombosis; EA, effect allele; MR, Mendelian randomization; OA, other allele; OSA, obstructive sleep apnea; PE, pulmonary embolism; SE, standard error; SNP, single-nucleotide polymorphism; VTE, venous thromboembolism.

+Note: F-statistic = (Beta/SE) +2 +, represents the strength of each instrumental variable. +

Effects of OSA on VTE

Fig. 2 +shows the estimates of the effects for OSA on VTE, PE, and DVT. In the initial MR analysis using the OSA (Jiang et al) dataset, the random-effects IVW method revealed no significant association between OSA and the risk of VTE (odds ratio [OR]: 0.964, 95% confidence interval [CI]: 0.914-1.016, +p + = 0.172), PE (OR: 0.929, 95% CI: 0.857–1.006, +p + = 0.069), PE (OR: 0.929, 95% CI: 0.857–1.006, +p + = 0.069), and DVT (OR: 1.001, 95% CI: 0.936–1.071, +p + = 0.973). No heterogeneity was observed using the Cochran Q test (all +p +* > 0.05). The MR–Egger intercept test (all +p +** > 0.05) and the MR-PRESSO global test (all +p +*** > 0.05) failed to detect any evidence of pleiotropy. +

+The genetic association of OSA with VTE/PE/DVT. OSA, obstructive sleep apnea; VTE, venous thromboembolism; PE, pulmonary embolism; DVT, deep vein thrombosis; MR, mendelian randomization; IVW, inverse variance weighted; PRESSO, pleiotropy residual sum and outlier; P*, represents P for heterogeneity test; P**, represents P for MR-Egger intercept; P***, represents P for MR-PRESSO global test. +

+The validation analysis using genetic variants of OSA (Campos et al) yielded similar results. Notably, heterogeneity was observed in the sensitivity analysis for OSA (Campos et al) and VTE ( +p +* = 0.018). However, considering the random-effects IVW model employed, the level of heterogeneity was deemed acceptable. +28 +Despite the presence of outliers suggested by the MR-PRESSO global test ( +p + = 0.015), no significant association between OSA and VTE (OR: 1.071, 95% CI: 0.917–1.251, +p + = 0.396) was found after excluding an outlier (rs7106583). In addition, none of the three complementary MR methods supported a genetic association between OSA and VTE. +

Effects of VTE on OSA

+We conducted reverse MR analysis to further evaluate the effects of VTE (including PE and DVT) on OSA. Both MR analyses yielded consistent results, indicating no significant effects of VTE, PE, and DVT on OSA (see +Fig. 3 +). Moreover, the Cochran Q test revealed no heterogeneity (all +p +* > 0.05), and both the MR–Egger intercept test and the MR-PRESSO global test found no evidence of pleiotropy (all +p +** > 0.05 and +p +*** > 0.05, respectively) (see +Fig. 3 +). In summary, a range of sensitivities confirmed the reliability of the MR results. +

+The genetic association of VTE/PE/DVT with OSA. OSA, obstructive sleep apnea; VTE, venous thromboembolism; PE, pulmonary embolism; DVT, deep vein thrombosis; MR, mendelian randomization; IVW, inverse variance weighted; PRESSO, pleiotropy residual sum and outlier; P*, represents P for heterogeneity test; P**, represents P for MR-Egger intercept; P***, represents P for MR-PRESSO global test. +

Discussion

In this study, we conducted a comprehensive two-sample MR analysis to explore the genetic association between OSA and VTE. Our MR findings did not yield evidence of a significant association between OSA and VTE from a genetic standpoint.

+Our findings contradict some previous observational studies suggesting a link between susceptibility to OSA and an increased risk of VTE. +29 +30 +31 +32 +

+However, these studies were hindered by inadequate consideration of confounding factors, particularly obesity, along with methodological flaws and small sample sizes. Obesity is widely recognized as a significant risk factor for both OSA +33 +and VTE. +34 +Therefore, it is crucial not to overlook the impact of obesity in striving for a deeper understanding of the potential association between OSA and VTE. Notably, a cohort study involving 31,309 subjects indicated a higher likelihood of VTE development among patients with more severe OSA. Yet, this association disappeared upon adjusting for confounders, notably obesity levels. +35 +Thus, it is plausible that the observed association between OSA and VTE could be attributed to obesity confounding. Additionally, Aman and his colleagues' report yielded consistent results, suggesting that OSA does not elevate the risk of VTE after adjusting for obesity confounding. +36 +

MR is a robust analytical method that employs genetic variation as IVs to deduce the genetic association between exposure and outcome. Consequently, it effectively controls for confounders induced by environmental factors and mitigates reverse causality bias. In this study, we meticulously screened genetic variants and thoroughly accounted for the effects of obesity levels to procure reliable IVs for inferring the genetic association between OSA and VTE. To mitigate bias and enhance the reliability of our MR findings, we devised initial and validation MR analyses supplemented by a series of sensitivity analyses, drawing upon datasets sourced from various origins. Notably, neither MR analysis provided evidence supporting a genetic association between OSA and VTE. Moreover, a succession of sensitivity analyses served to bolster the robustness of our MR results. These findings indicate that, although diverging from some previous observational studies, our results are reliable and corroborate the conclusions drawn from the MR study.

+While our MR study did not find evidence supporting a genetic association between OSA and VTE, it remains possible that OSA could influence the onset or progression of VTE. Virchow's triad depicts three major factors inducing VTE: endothelial injury, venous stasis, and hypercoagulability. +37 +The pathophysiologic mechanism linking OSA and VTE remains unknown but may be associated with OSA's capacity to affect the three classical mechanistic pathways of Virchow's triad. +38 +Intermittent hypoxia, a signature feature of OSA, can induce oxidative stress and activate inflammatory markers, further damaging the vascular endothelium. +39 +40 +OSA-associated hemodynamic alterations and reduced physical activities may result in venous stasis. +41 +A growing number of studies have demonstrated a strong correlation between OSA and hypercoagulability. A retrospective cohort study aimed at assessing coagulation in patients with OSA suggested that patients with moderate to severe OSA experienced elevated markers of blood coagulability, primarily evidenced by shortened prothrombin time, compared to healthy individuals. +42 +Two additional studies of thrombotic parameters found that patients with OSA possessed higher levels of the thrombin–antithrombin complex. +43 +44 +Furthermore, several coagulation factors, such as fibrinogen, coagulation factor VII, coagulation factor XII, and vascular hemophilic factor, which play a crucial role in the coagulation process, are elevated in patients with OSA. +45 +Collectively, this evidence supports that patients with OSA are in a state of hypercoagulability, facilitating our understanding of the underlying pathophysiologic mechanisms between OSA and VTE. Considering these potential mechanisms, future large-scale studies are necessary to thoroughly explore the potential association between OSA and VTE, delving into greater depth. +

The greatest strength of this study is that the bidirectional two-sample MR analysis designed based on summary data from large-scale GWAS was used for the first time to investigate the genetic association between OSA and VTE. Furthermore, to bolster the robustness of the findings and mitigate bias, we conducted initial and validated MR analyses using two independent OSA GWAS datasets. Subsequently, a series of sensitivity analyses provided further validation and affirmed the robustness of the results. However, our study also has several limitations. First, it was exclusively centered on European individuals, thereby constraining the generalizability of our findings to other ethnicities or ancestries. Second, the lack of individual-level data in the summary-level statistics prevented us from stratifying the study population by important factors such as age or sex. Lastly, there is a possibility of sample overlap between the exposure and outcome datasets, but the F-statistics of the IVs selected in the MR analysis were sufficiently strong to mitigate the potential effects of weak instrumental bias.

Conclusion

In conclusion, our MR study did not uncover genetic evidence supporting an association between OSA and VTE, including DVT and PE. This implies that the association between OSA and VTE reported in some previous observational studies may rely on alternative pathways to function, rather than being directly linked to the diseases themselves.

+What is known about this topic? +

Previous studies have linked obstructive sleep apnea (OSA) and venous thromboembolism (VTE).

Existing studies regarding the association between OSA and VTE are somewhat controversial.

The various aspects of the association between OSA and VTE remain to be evaluated.

+What does this paper add? +

There were no significant effects of OSA on VTE.

Similarly, VTE also had no significant effects on OSA.

The association between OSA and VTE may arise through pathways other than the diseases themselves.

Acknowledgment

We would also like to thank Yao Xiaoxia from Lianjiang No.3 Middle School for correcting the grammar in this article.

Conflict of Interest None declared.

Data Availability Statement

The raw data supporting the conclusions of this article will be made available by the authors, without undue reservation.

Authors' Contribution

All authors listed have made a substantial, direct, and intellectual contribution to the work, and approved it for publication.

+These authors contributed equally to this study. +

ReferencesWangS HChenW STangS EBenzodiazepines associated with acute respiratory failure in patients with obstructive sleep apneaFront Pharmacol20199151330666205 +InnesC RKellyP THlavacMMelzerT RJonesR DDecreased regional cerebral perfusion in moderate-severe obstructive sleep apnoea during wakefulnessSleep2015380569970625669185 +SenaratnaC VPerretJ LLodgeC JPrevalence of obstructive sleep apnea in the general population: a systematic reviewSleep Med Rev201734708127568340 +BaiJWenHTaiJAltered spontaneous brain activity related to neurologic and sleep dysfunction in children with obstructive sleep apnea syndromeFront Neurosci20211559541234867137 +MarinJ MAgustiAVillarIAssociation between treated and untreated obstructive sleep apnea and risk of hypertensionJAMA2012307202169217622618924 +RedlineSYenokyanGGottliebD JObstructive sleep apnea-hypopnea and incident stroke: the sleep heart health studyAm J Respir Crit Care Med20101820226927720339144 +MesarwiOMalhotraAObstructive sleep apnea and pulmonary hypertension: a bidirectional relationshipJ Clin Sleep Med2020161223122432807290 +PiccirilloFCrispinoS PBuzzelliLSegretiAIncalziR AGrigioniFA state-of-the-art review on sleep apnea syndrome and heart failureAm J Cardiol2023195576937011555 +Glise SandbladKRosengrenASörboJJernSHanssonP OPulmonary embolism and deep vein thrombosis-comorbidities and temporary provoking factors in a register-based study of 1.48 million peopleRes Pract Thromb Haemost2022604e1271435677029 +RajRPaturiAAhmedM AThomasS EGorantlaV RObstructive sleep apnea as a risk factor for venous thromboembolism: a systematic reviewCureus20221402e2272935371730 +LinC CKellerJ JKangJ HHsuT CLinH CObstructive sleep apnea is associated with an increased risk of venous thromboembolismJ Vasc Surg Venous Lymphat Disord201310213914526992334 +PengY HLiaoW CChungW SAssociation between obstructive sleep apnea and deep vein thrombosis / pulmonary embolism: a population-based retrospective cohort studyThromb Res20141340234034524972845 +NepveuOOrioneCTromeurCAssociation between obstructive sleep apnea and venous thromboembolism recurrence: results from a French cohortThromb J20222001134983561 +DabbaghOSabharwalMHassanOObstructive sleep apnea is an independent risk factor for venous thromboembolism among females not malesChest2010138937A937A20522573 +BosanquetJ PBadeB CZiaM FPatients with venous thromboembolism appear to have higher prevalence of obstructive sleep apnea than the general populationClin Appl Thromb Hemost20111706E119E12421159707 +XueAJiangLZhuZGenome-wide analyses of behavioural traits are subject to bias by misreports and longitudinal changesNat Commun202112012021133436567 +PuBGuPZhengCMaLZhengXZengZSelf-reported and genetically predicted effects of coffee intake on rheumatoid arthritis: epidemiological studies and Mendelian randomization analysisFront Nutr2022992619036172525 +JiangLZhengZFangHYangJA generalized linear mixed model association tool for biobank-scale dataNat Genet202153111616162134737426 +23andMe Research Team CamposA IIngoldNHuangYDiscovery of genomic loci associated with sleep apnea risk through multi-trait GWAS analysis with snoringSleep2023460346FengRLuMXuJPulmonary embolism and 529 human blood metabolites: genetic correlation and two-sample Mendelian randomization studyBMC Genom Data202223016936038828 +ISGC Intracranial Aneurysm Working Group* MolenbergRThioC HLAalbersM WSex hormones and risk of aneurysmal subarachnoid hemorrhage: a Mendelian randomization studyStroke202253092870287535652345 +WangS HKeenanB TWiemkenAEffect of weight loss on upper airway anatomy and the apnea-hypopnea index. the importance of tongue fatAm J Respir Crit Care Med20202010671872731918559 +HotoleanuCAssociation between obesity and venous thromboembolismMed Pharm Rep2020930216216832478322 +ZhaoHJinXCausal associations between dietary antioxidant vitamin intake and lung cancer: a Mendelian randomization studyFront Nutr2022996591136118777 +TangBWangYJiangXGenetic variation in targets of antidiabetic drugs and Alzheimer disease risk: a Mendelian randomization studyNeurology20229907e650e65935654594 +DongS SZhangKGuoYPhenome-wide investigation of the causal associations between childhood BMI and adult trait outcomes: a two-sample Mendelian randomization studyGenome Med202113014833771188 +HuangWXiaoJJiJChenLAssociation of lipid-lowering drugs with COVID-19 outcomes from a Mendelian randomization studyeLife20211010ChenXKongJPanJKidney damage causally affects the brain cortical structure: a Mendelian randomization studyEBioMedicine20217210359234619639 +ArnulfIMerino-AndreuMPerrierABirolleauSSimilowskiTDerenneJ PObstructive sleep apnea and venous thromboembolismJAMA20022872026552656ChouK THuangC CChenY MSleep apnea and risk of deep vein thrombosis: a non-randomized, pair-matched cohort studyAm J Med20121250437438022444103 +Alonso-FernándezAde la PeñaMRomeroDAssociation between obstructive sleep apnea and pulmonary embolismMayo Clin Proc2013880657958723578813 +AmbrosettiMLucioniAAgenoWContiSNeriMIs venous thromboembolism more frequent in patients with obstructive sleep apnea syndrome?J Thromb Haemost20042101858186015456508 +ReutrakulSMokhlesiBObstructive sleep apnea and diabetes: a state of the art reviewChest2017152051070108628527878 +INVENT Consortium LindströmSGermainMCrous-BouMAssessing the causal relationship between obesity and venous thromboembolism through a Mendelian Randomization studyHum Genet20171360789790228528403 +GenuardiM VRathoreAOgilvieR PIncidence of VTE in patients with OSA: a cohort studyChest2022161041073108234914977 +AmanRMichaelV GRachelP OObstructive sleep apnea does not increase risk of venous thromboembolismAmerican Thoracic Society2019A4459A4459EsmonC TBasic mechanisms and pathogenesis of venous thrombosisBlood Rev2009230522522919683659 +García-OrtegaAMañasELópez-ReyesRObstructive sleep apnoea and venous thromboembolism: pathophysiological links and clinical implicationsEur Respir J2019530253XiongHLaoMWangLThe incidence of cancer is increased in hospitalized adult patients with obstructive sleep apnea in China: a retrospective cohort studyFront Oncol20221285612135433429 +HoltABjerreJZareiniBSleep apnea, the risk of developing heart failure, and potential benefits of continuous positive airway pressure (CPAP) therapyJ Am Heart Assoc2018713e00868429934418 +Alonso-FernándezAToledo-PonsNGarcía-RíoFObstructive sleep apnea and venous thromboembolism: overview of an emerging relationshipSleep Med Rev20205010123331838272 +HongS NYunH CYooJ HLeeS HAssociation between hypercoagulability and severe obstructive sleep apneaJAMA Otolaryngol Head Neck Surg201714310996100228817760 +RobinsonG VPepperellJ CSegalH CDaviesR JStradlingJ RCirculating cardiovascular risk factors in obstructive sleep apnoea: data from randomised controlled trialsThorax2004590977778215333855 +von KänelRLoredoJ SPowellF LAdlerK ADimsdaleJ EShort-term isocapnic hypoxia and coagulation activation in patients with sleep apneaClin Hemorheol Microcirc2005330436937716317246 +ZolotoffCBertolettiLGozalDObstructive sleep apnea, hypercoagulability, and the blood-brain barrierJ Clin Med20211014309934300265 +
\ No newline at end of file diff --git a/tests/data/xml/10-1055-a-2313-0311.nxml b/tests/data/xml/10-1055-a-2313-0311.nxml new file mode 100644 index 00000000..f138b1ea --- /dev/null +++ b/tests/data/xml/10-1055-a-2313-0311.nxml @@ -0,0 +1,297 @@ + +
pmcThromb HaemostThromb Haemost10.1055/s-00035024Thrombosis and Haemostasis0340-62452567-689XGeorg Thieme Verlag KGRüdigerstraße 14, 70469 Stuttgart, Germany +3865764911518614 +10.1055/a-2313-0311TH-23-06-0235Stroke, Systemic or Venous ThromboembolismExploring the Two-Way Link between Migraines and Venous Thromboembolism: A Bidirectional Two-Sample Mendelian Randomization Studyhttp://orcid.org/0000-0003-4357-7451WangYang1HuXiaofang2WangXiaoqing3LiLili3LouPeng1LiuZhaoxuan4Vascular Surgery, Shandong Public Health Clinical Center, Shandong University, Jinan, ChinaDepartment of Neurology, Shandong Public Health Clinical Center, Shandong University, Jinan, ChinaInterventional Department, Shandong Public Health Clinical Center, Shandong University, Jinan, ChinaVascular Surgery, Shandong First Medical University affiliated Central Hospital, Jinan, ChinaAddress for correspondence Zhaoxuan Liu, MD Vascular Surgery, Shandong first Medical University affiliated Central HospitalNo. 105 Jiefang Road, Jinan cityChinaliuxin2014@hotmail.com2052024112024152024124111053106010620231042024 +The Author(s). This is an open access article published by Thieme under the terms of the Creative Commons Attribution-NonDerivative-NonCommercial License, permitting copying and reproduction so long as the original work is given appropriate credit. Contents may not be used for commercial purposes, or adapted, remixed, transformed or built upon. ( +https://creativecommons.org/licenses/by-nc-nd/4.0/ +) +2024The Author(s).https://creativecommons.org/licenses/by-nc-nd/4.0/This is an open-access article distributed under the terms of the Creative Commons Attribution-NonCommercial-NoDerivatives License, which permits unrestricted reproduction and distribution, for non-commercial purposes only; and use and reproduction, but not distribution, of adapted material for non-commercial purposes only, provided the original work is properly cited.

Background + The objective of this study is to utilize Mendelian randomization to scrutinize the mutual causality between migraine and venous thromboembolism (VTE) thereby addressing the heterogeneity and inconsistency that were observed in prior observational studies concerning the potential interrelation of the two conditions. +

Methods + Employing a bidirectional Mendelian randomization approach, the study explored the link between migraine and VTE, incorporating participants of European descent from a large-scale meta-analysis. An inverse-variance weighted (IVW) regression model, with random-effects, leveraging single nucleotide polymorphisms (SNPs) as instrumental variables was utilized to endorse the mutual causality between migraine and VTE. SNP heterogeneity was evaluated using Cochran's Q-test and to account for multiple testing, correction was implemented using the intercept of the MR-Egger method, and a leave-one-out analysis. +

Results + The IVW model unveiled a statistically considerable causal link between migraine and the development of VTE (odds ratio [OR] = 96.155, 95% confidence interval [CI]: 4.342–2129.458, +p + = 0.004), implying that migraine poses a strong risk factor for VTE development. Conversely, both IVW and simple model outcomes indicated that VTE poses as a weaker risk factor for migraine (IVW OR = 1.002, 95% CI: 1.000–1.004, +p + = 0.016). The MR-Egger regression analysis denoted absence of evidence for genetic pleiotropy among the SNPs while the durability of our Mendelian randomization results was vouched by the leave-one-out sensitivity analysis. +

Conclusion + The findings of this Mendelian randomization assessment provide substantiation for a reciprocal causative association between migraine and VTE within the European population. +

KeywordMendelian randomizationmigrainevenous thromboembolismbidirectionalcausality
Introduction

+Venous thromboembolism (VTE) encompasses both deep vein thrombosis and pulmonary embolism, +1 +ranking third globally as a prevalent vascular disorder associated with mortality. +2 +This increases the mortality risk for patients and compounds the financial burden on health care services. Hence, the ongoing evaluation and assessment of VTE risk in clinical settings are crucial. +

+Migraine, characterized by recurrent episodes of severe unilateral headaches accompanied by pulsating sensations and autonomic symptoms, affects approximately one billion individuals worldwide. +3 +Several research studies indicate an increase in VTE incidence among migraine sufferers. +4 +5 +6 +7 +8 +Hence, there is a significant need for further investigation to elucidate the causal relationship between VTE and migraines. +

+Mendelian randomization (MR) is a methodology that utilizes genetic variants as instrumental variables (IVs) to explore the causal association between a modifiable exposure and a disease outcome. +9 +By leveraging the random allocation and fixed nature of an individual's alleles at conception, this approach helps alleviate concerns regarding reverse causality and environmental confounders commonly encountered in traditional epidemiological methods. +

In order to mitigate confounding factors and ensure robust outcomes, this investigation adopts a pioneering approach by utilizing MR to explore the genetic-level causal correlation between migraine and VTE. To the best of our knowledge, no previous study has employed this method to examine the association between these two pathological conditions, thereby lending an innovative and cutting-edge aspect to this research.

Materials and MethodsResearch Methodology

+A rigorous bidirectional two-sample MR examination was implemented to probe the causal link between migraine and VTE risk, subsequent to a meticulous screening mechanism. For achieving credible estimations of MR causality, efficacious genetic variances serving as IVs must meet three central postulates: (I) relevance assumption, asserting that variations must demonstrate intimate association with the exposure element; (II) independence/exchangeability assumption, demanding no correlations be exhibited with any measured, unmeasured, or inconspicuous confounding elements germane to the researched correlation of interest; and (III) exclusion restriction assumption, maintaining that the variation affects the outcome exclusively through the exposure, devoid of alternative routes. +10 +11 +A single nucleotide polymorphism (SNP) refers to a genomic variant where a single nucleotide undergoes alteration at a specific locus within the DNA sequence. SNPs were employed as IVs in this study for estimating causal effects. The study's design is graphically portrayed in +Fig. 1 +, emphasizing the three fundamental postulates of MR. These postulates are of the utmost importance in affirming the validity of the MR examination and ensuring the reliability of the resultant causal inferences. +12 +

+This figure illustrates the research methodology for the bidirectional Mendelian randomization analysis concerning migraine and VTE. Assumption I: relevance assumption; Assumption II: independence/exchangeability assumption; Assumption III: exclusion restriction assumption. +

Data Sources

+Our SNPs are obtained from large-scale genome-wide association studies (GWAS) public databases. The exposure variable for this study was obtained from the largest migraine GWAS meta-analysis conducted by the IEU Open GWAS project, which can be accessed at +https://gwas.mrcieu.ac.uk/datasets +. +13 +14 +The outcome variable was derived from the largest VTE GWAS conducted by FinnGen, available at +https://www.finngen.fi +. +15 +A comprehensive overview of the data sources used in our study can be found in +Table 1 +. +

Description of GWAS used for each phenotype
VariableSample sizeIDPopulationDatabaseYear
Migraine337159ukb-a-87EuropeanIEU Open GWAS project2017
VTE218792finn-b-I9_VTEEuropeanFinnGen2021

Abbreviations: GWAS, genome-wide association studies; VTE, venous thromboembolism.

Note: Basic information of GWAS for migraine and VTE is displayed in this table.

+The variances in genetic variations and exposure distributions across diverse ethnicities could potentially result in spurious correlations between genetic variants and exposures. +16 +Consequently, the migraine and VTE GWAS for this study were sourced from a homogeneous European populace to circumvent such inaccurate associations. It is crucial to highlight that the data harvested from public databases were current up to March 31, 2023. Given the public nature of all data utilized in our study, there was no necessity for further ethical approval. +

Filtering Criteria of IVs

+To select appropriate SNPs as IVs, we followed standard assumptions of MR. First, we performed a screening process using the migraine GWAS summary data, applying a significance threshold of +p + < 5 × 10 +−8 +(Assumption I). To ensure the independence of SNPs and mitigate the effects of linkage disequilibrium, we set the linkage disequilibrium coefficient ( +r +2 +) to 0.001 and restricted the width of the linkage disequilibrium region to 10,000 kb. PhenoScanner ( +http://www.phenoscanner.medschl.cam.ac.uk/ +) serves as a versatile tool, enabling users to explore genetic variants, genes, and traits linked to a wide spectrum of phenotypes. +17 +18 +Utilizing PhenoScanner v2, we ruled out SNPs linked with potential confounding constituents and outcomes, thereby addressing assumptions II and III. Subsequently, we extracted the relevant SNPs from the VTE GWAS summary data, ensuring a minimum +r +2 + > 0.8 and replacing missing SNPs with highly linked SNPs. We excluded SNPs without replacement sites and palindromic SNPs and combined the information from both datasets. Finally, we excluded SNPs directly associated with VTE at a significance level of +p + < 5 × 10 +−8 +and prioritized IVs with an F-statistic [F-statistic = (β/SE)2] > 10 to minimize weak instrument bias. +19 +

Statistical Analysis

For our analysis, we employed the inverse-variance weighted (IVW) random-effects regression model to assess the causal relationship between migraine and VTE, utilizing SNPs as IVs. This approach allowed us to directly calculate the causal effect using summary data, eliminating the need for individual-level data. To assess SNP heterogeneity, we conducted Cochran's Q test and, in the presence of heterogeneity, relied on the results of the IVW model. To examine the presence of pleiotropy, we utilized the MR-Egger method and conducted leave-one-out analysis. All statistical analyses were performed using the TwoSampleMR package in R 4.2.2 software, with a significance level set at α = 0.05.

Results

+In the present investigation, we capitalized on a bidirectional two-sample MR analysis in individuals of European descent to scrutinize the potential causative correlation between migraines and VTE risk. Our investigation implies a potential bidirectional pathogenic relationship between migraines and the risk of VTE, as supported by the specific analysis results detailed in +Table 2 +. +

Mendelian randomization regression causal association results
ExposuresSNPs (no.)MethodsβSEOR (95% CI) +p +
Migraine11IVW4.5661.58096.155 (4.342–2129.458)0.004
VTE12IVW0.0020.0011.002 (1.000–1.004);0.016
Simple mode0.0030.0011.003 (1.000–1.006)0.047

Abbreviations: CI: confidence interval; IVW, inverse variance weighting; OR, odds ratio; SE, standard error; SNPs, single nucleotide polymorphisms; VTE, venous thromboembolism.

Note: This table displays the causal relationship between migraine leading to VTE and VTE leading to migraine.

Mendelian Randomization Analysis

+During the IV screening process, it was identified that SNP r10908505 was associated with body mass index (BMI) in VTE. Considering the established association between BMI and VTE, +1 +15 +this violated Assumption III and the SNP was subsequently excluded. The VTE dataset ultimately consisted of 11 SNPs, with individual SNP F-statistics ranging from 29.76 to 96.77 (all >10), indicating a minimal potential for causal associations to be confounded by weak IV bias ( +Supplementary Table S1 +, available in the online version). The IVW model revealed that migraine was a statistically significant risk factor for the onset of VTE (odds ratio [OR] = 96.155, 95% confidence interval [CI]: 4.3422–129.458, +p + = 0.004) ( +Table 2 +, +Fig. 2A +). The scatter plot ( +Fig. 2B +) and funnel plot ( +Fig. 2C +) of migraine demonstrated a symmetrical distribution of all included SNPs, suggesting a limited possibility of bias affecting the causal association. The Cochran's Q test, conducted on the MR-Egger regression and the IVW method, yielded statistics of 5.610 and 5.973 ( +p + > 0.05), indicating the absence of heterogeneity among the SNPs ( +Supplementary Table S2 +, available in the online version). These findings suggest a positive correlation between the strength of association between the IVs and migraine, satisfying the assumptions of IV analysis. The MR-Egger regression analysis showed no statistically significant difference from zero for the intercept term ( +p + = 0.5617), indicating the absence of genetic pleiotropy among the SNPs ( +Supplementary Table S3 +, available in the online version). Additionally, the leave-one-out analysis revealed that the inclusion or exclusion of individual SNPs did not substantially impact the estimated causal effects, demonstrating the robustness of the MR results obtained in our investigation ( +Fig. 2D +). +

+This figure explores the correlation between migraine risk and VTE, validating the presence of heterogeneity and pleiotropy. ( +A +) The forest plot displays individual IVs, with each point flanked by lines that depict the 95% confidence interval. The effect of SNPs on the exposure (migraine) is shown along the +x +-axis, whereas their impact on the outcome (VTE) is presented on the +y +-axis. A fitted line reflects the Mendelian randomization analysis results. ( +B +) A scatter plot visualizes each IV, with the SNP effects on both exposure and outcome similar to that of the forest plot. Again, a fitted line represents the Mendelian randomization results. ( +C +) The funnel plot positions the coefficient β +IV +from the instrumental variable regression on the +x +-axis to demonstrate the association's strength, while the inverse of its standard error (1/SE +IV + +) on the +y +-axis indicates the precision of this estimate. ( +D +) A leave-one-out sensitivity analysis is shown on the +x +-axis, charting the estimated effects from the Mendelian randomization analysis. With each SNP associated with migraine successively excluded, the analysis recalculates the Mendelian randomization effect estimates, culminating with the “all” category that encompasses all considered SNPs. IV, instrumental variable; SNP, single nucleotide polymorphisms; VTE, venous thromboembolism; SE, standard error. + +SE is the standard error of β. +

Reverse Mendelian Randomization Analysis

+Upon screening for IVs in migraine patients, SNP rs6060308 was excluded due to its association with education +20 +21 +and violation of Assumption III. The final migraine dataset comprised 13 SNPs, with individual SNP F-statistics ranging from 30.60 to 354.34, all surpassing the threshold of 10 ( +Supplementary Table S4 +, available in the online version). Both the IVW and simple models supported VTE as a risk factor for migraine. The IVW analysis yielded an OR of 1.002 (95% CI: 1.000–1.004, +p + = 0.016), while the simple model yielded an OR of 1.003 (95% CI: 1.000–1.006, +p + = 0.047) ( +Table 2 +, +Fig. 3A +). The scatter plot ( +Fig. 3B +) and funnel plot ( +Fig. 3C +) exhibited symmetrical distributions across all included SNPs, indicating minimal potential for biases affecting the causal association. Heterogeneity among SNPs was observed through the Cochran's Q test of the IVW method and MR-Egger regression, with Q statistics of 18.697 and 20.377, respectively, both with +p + < 0.05 ( +Supplementary Table S2 +, available in the online version). Therefore, careful consideration is necessary for the results obtained from the random-effects IVW method. MR-Egger regression analysis revealed a nonsignificant difference between the intercept term and zero ( +p + = 0.3655), suggesting the absence of genetic pleiotropy among the SNPs ( +Supplementary Table S3 +, available in the online version). Additionally, the leave-one-out analysis demonstrated that the inclusion or exclusion of individual SNPs had no substantial impact on the estimated causal effect ( +Fig. 3D +). +

+( +A–D +) This figure presents the relationship between VTE risk and migraine, also verifying heterogeneity and pleiotropy through similar graphic representations as detailed for +Fig. 2 +, but with the exposure and outcome reversed—SNPs' effect on VTE and outcome on migraine. SNP, single nucleotide polymorphisms; VTE, venous thromboembolism. +

Discussion

+VTE constitutes a grave health hazard to patients, necessitating rigorous clinical surveillance. Distinct from common VTE risk factors such as cancer, +22 +diabetes, +23 +lupus, +24 +and antiphospholipid syndrome, +25 +migraines remain absent from prevalent VTE guidelines or advisories. The MR findings from our research provide first-of-its-kind evidence of a causal nexus between migraines and VTE in individuals of European descent, signaling that migraines potently predispose individuals to VTE (IVW OR = 96.155, 95% CI: 4.342–2129.458), while VTE presents a weak risk factor for migraines (IVW OR = 1.002, 95% CI: 1.000–1.004). Given the robustness of the IVW analysis, the MR analysis is considered reliable. +

+Our MR analysis discloses a potential causal association between individuals suffering from migraines and VTE incidence, with a risk rate 96.155 times higher in comparison to nonmigraine sufferers. Previous observational endeavors investigating VTE risk amidst migraine patients have been scant and have yielded discordant outcomes, complicating the provision of clinical directives. +26 +27 +In a longitudinal inquiry with a 19-year follow-up, Adelborg et al discerned a heightened VTE risk in individuals afflicted with migraines. +4 +Peng et al's prospective clinical study unveiled a more than double VTE risk increase in migraine patients during a 4-year follow-up. +5 +Schwaiger et al's cohort study, incorporating 574 patients aged 55 to 94, observed a significant escalation in VTE risk among elderly individuals with migraines. +6 +28 +Bushnell et al uncovered a tripled VTE risk during pregnancy in migraine-affected women. +29 +Although these studies validate a potential correlation between migraines and VTE, their persuasiveness is restricted due to other prominent VTE risk factors (such as advanced age and pregnancy) and contradicting findings in existing observational studies. For instance, Folsom et al observed no significant correlation between migraines and VTE risk in elderly individuals, contradicting Schwaiger's conclusion. +7 +However, he clarified that the cohort incorporated in his study did not undergo rigorous neurological migraine diagnosis, possibly leading to confounding biases and generating findings that contradict other scholarly endeavors. +7 +These contradictions originate from observational studies examining associations rather than causal relationships, invariably involving a confluence of various confounding factors. MR, leveraging SNPs as IVs to ascertain the causal link between migraines and VTE risk, can eliminate other confounding elements resulting in more reliable outcomes. Based on this finding, monitoring VTE risk among migraine patients in clinical practice is recommended. +

The reverse MR analysis reveals that compared to non-VTE patients, those with VTE among individuals of European ancestry exhibit a marginally heightened susceptibility to migraines, with a relative risk of 1.02 (as per the IVW method). This discovery concurs with the existing void in research on migraines among VTE patients. Thus, even with slightly increased risks of migraines in VTE patients, we do not advocate for heightened concern regarding the emergence of migraines among this patient group.

+Our endeavor seeks to offer a preliminary examination of the potential mechanisms underlying the interplay between migraines and VTE. The incidence of VTE habitually involves Virchow's triad, encompassing endothelial damage, venous stasis, and hypercoagulability. +30 +On the genetic association front, the SNPs rs9349379 and rs11172113, acting as IVs for migraines, display relevance to the mechanisms underpinning VTE. Prior research earmarks the gene corresponding to rs9349379, +PHACTR1 +( +Supplementary Table S1 +, available in the online version), as a catalyst for the upregulation of +EDN1 +. +31 +Elevated +EDN1 +expression is associated with increased VTE susceptibility, +32 +and +EDN1 +inhibition can diminish VTE incidence, +33 +potentially through Endothelin 1-mediated vascular endothelial inflammation leading to thrombus formation. +34 +The SNP rs11172113 corresponds to the gene +LRP1 +( +Supplementary Table S1 +, available in the online version). +35 +LRP1 +can facilitate the upregulation of +FVIII +, culminating in an increase in plasma coagulation factor VIII, +36 +thereby leading to heightened blood coagulability and an associated elevated VTE risk. +37 +While various studies propose divergent mechanisms, they collectively signal that migraines can instigate a hypercoagulable state, thereby promoting the onset of VTE. The SNPs serving as IVs for VTE did not unveil any association with the onset of migraines. This corroborates our MR analysis outcomes, indicating that VTE is merely a weak risk factor for migraines. +

Strengths and Limitations

This study possesses several notable strengths. First, it fulfills all three assumptions of MR, minimizing the influence of confounding factors and addressing the limitations inherent in observational studies, thus yielding more robust findings. We carefully excluded two SNPs (rs10908505 and rs6060308) that could potentially impact the results. In addition, we employed PhenoScanner v2 to comprehensively probe confounding variables related to VTE, as described earlier, and factors associated with migraines, such as acute migraine medication overuse, obesity, depression, stress, and alcohol, leading to the subsequent exclusion of relevant SNPs. This ensured that the selected SNPs specifically captured the causal effects and eliminated potential confounding effects from polygenic associations with disease susceptibility. Second, the study sample was restricted to individuals of European descent, minimizing the potential bias introduced by population heterogeneity and enhancing the internal validity of the findings. Third, the use of strongly correlated SNPs (F >> 10) in both migraine → VTE and VTE → migraine analyses enhances the validity of the IVs. Finally, this study pioneers the hypothesis of a plausible causal association between VTE and an elevated susceptibility to migraines, offering novel insights into their potential relationship.

+Nonetheless, it is essential to acknowledge the presence of several limitations in this study that warrant consideration. First, the study participants were predominantly of European ancestry, which, although it avoids the influence of ethnicity on the results, limits the generalizability of the findings to other ethnic groups. Second, our study solely establishes the causal relationship between migraine and VTE risk without elucidating the underlying mechanisms. Third, we only selected SNPs that met the stringent genome-wide significance level ( +p + < 5 × 10 +−8 +), potentially excluding truly relevant variations that did not reach this threshold. Lastly, as our MR analysis relies on publicly available summary statistics data, the lack of detailed clinical information hinders subgroup analysis. +

Conclusion

In essence, the bidirectional Mendelian randomization analysis, conducted within the European populace, indicates the presence of a relatively strong causal correlation between migraines and VTE, while the causative relationship between VTE and migraines appears exceedingly faint. These deductions imply the need for rigorous monitoring of VTE in individuals of European descent suffering from migraines, thus requiring synergistic effort between general physicians and neurologists. Nevertheless, VTE patients should refrain from undue worries concerning the incidence of migraines. Further, we stress the importance of harnessing information gleaned from a wide array of observational studies and controlled experiments to strengthen the credibility of drawn causal inferences. This is pivotal in establishing a mutual corroboration with the results obtained through MR analysis. Hence, the exigency for additional stringent observational studies and comprehensive laboratory research prevails to corroborate the conclusions made in this study.

+What is known about this topic? +

Previous research has not definitively established whether migraine is a risk factor for VTE, and observational studies have contradictory findings.

Previous studies do not provide evidence for the prevention of VTE occurrence in patients with migraines.

+What does this paper add? +

Migraine has been identified as a strong-risk factor for VTE.

VTE has been identified as a weak-risk factor for migraine.

For the first time, genetic evidence has been presented to emphasize the importance of preventing VTE occurrence in individuals with migraines.

Conflict of Interest None declared.

Supplementary Material

Supplementary Material

Supplementary Material

ReferencesKhanFTritschlerTKahnS RRodgerM AVenous thromboembolismLancet2021398(10294):647733984268 +HeitJ AEpidemiology of venous thromboembolismNat Rev Cardiol2015120846447426076949 +Headache Classification Committee of the International Headache Society (IHS) Headache Classification Committee of the International Headache Society (IHS) The International Classification of Headache Disorders, 3rd editionCephalalgia201838011211AdelborgKSzépligetiS KHolland-BillLMigraine and risk of cardiovascular diseases: Danish population based matched cohort studyBMJ2018360k9629386181 +PengK PChenY TFuhJ LTangC HWangS JAssociation between migraine and risk of venous thromboembolism: a nationwide cohort studyHeadache201656081290129927411732 +SaccoSCaroleiABurden of atherosclerosis and risk of venous thromboembolism in patients with migraineNeurology2009722320562057, author reply 2057FolsomA RLutseyP LMisialekJ RCushmanMA prospective study of migraine history and venous thromboembolism in older adultsRes Pract Thromb Haemost201930335736331294322 + +American College of Cardiology Cardiovascular Disease in Women Committee + + +American College of Cardiology Cardiovascular Disease in Women Committee + +ElgendyI YNadeauS EBairey MerzC NPepineC JMigraine headache: an under-appreciated risk factor for cardiovascular disease in womenJ Am Heart Assoc2019822e01454631707945 +EmdinC AKheraA VKathiresanSMendelian randomizationJAMA2017318191925192629164242 +KarlssonTHadizadehFRask-AndersenMJohanssonÅEkW EBody mass index and the risk of rheumatic disease: linear and nonlinear Mendelian randomization analysesArthritis Rheumatol202375112027203537219954 +LawlerTWarren AndersenSSerum 25-hydroxyvitamin D and cancer risk: a systematic review of mendelian randomization studiesNutrients2023150242236678292 +BurgessSButterworthA SThompsonJ RBeyond Mendelian randomization: how to interpret evidence of shared genetic predictorsJ Clin Epidemiol20166920821626291580 +SudlowCGallacherJAllenNUK biobank: an open access resource for identifying the causes of a wide range of complex diseases of middle and old agePLoS Med20151203e100177925826379 +LyonM SAndrewsS JElsworthBGauntT RHemaniGMarcoraEThe variant call format provides efficient and robust storage of GWAS summary statisticsGenome Biol202122013233441155 +FinnGen KurkiM IKarjalainenJPaltaPFinnGen provides genetic insights from a well-phenotyped isolated populationNature2023613794450851836653562 +SandersonEGlymourM MHolmesM VMendelian randomizationNat Rev Methods Primers20222637325194 +StaleyJ RBlackshawJKamatM APhenoScanner: a database of human genotype-phenotype associationsBioinformatics201632203207320927318201 +KamatM ABlackshawJ AYoungRPhenoScanner V2: an expanded tool for searching human genotype-phenotype associationsBioinformatics201935224851485331233103 +BurgessSThompsonS GMendelian Randomization: Methods for Causal Inference Using Genetic VariantsNew York, NYCRC Press2021MayASchulteL HChronic migraine: risk factors, mechanisms and treatmentNat Rev Neurol2016120845546427389092 +DodickD WMigraineLancet2018391(10127):1315133029523342 +KhoranaA AMackmanNFalangaACancer-associated venous thromboembolismNat Rev Dis Primers20228011135177631 +BellE JFolsomA RLutseyP LDiabetes mellitus and venous thromboembolism: a systematic review and meta-analysisDiabetes Res Clin Pract2016111101826612139 +BhoelanSBorjas HowardJTichelaarVRecurrence risk of venous thromboembolism associated with systemic lupus erythematosus: a retrospective cohort studyRes Pract Thromb Haemost2022608e1283936397932 +PengoVDenasGAntiphospholipid syndrome in patients with venous thromboembolismSemin Thromb Hemost2023490883383935728601 +Maitrot-ManteletLHorellouM HMassiouHConardJGompelAPlu-BureauGShould women suffering from migraine with aura be screened for biological thrombophilia?: results from a cross-sectional French studyThromb Res20141330571471824530211 +TietjenG ECollinsS AHypercoagulability and migraineHeadache2018580117318328181217 +SchwaigerJKiechlSStocknerHBurden of atherosclerosis and risk of venous thromboembolism in patients with migraineNeurology2008711293794318794497 +BushnellC DJamisonMJamesA HMigraines during pregnancy linked to stroke and vascular diseases: US population based case-control studyBMJ2009338b66419278973 +DingW YProttyM BDaviesI GLipG YHRelationship between lipoproteins, thrombosis, and atrial fibrillationCardiovasc Res20221180371673133483737 +GuptaR MHadayaJTrehanAA genetic variant associated with five vascular diseases is a distal regulator of endothelin-1 gene expressionCell2017170035225.33E1728753427 +KumariBPrabhakarASahuAEndothelin-1 gene polymorphism and its level predict the risk of venous thromboembolism in male indian populationClin Appl Thromb Hemost2017230542943727481876 +ZhangYLiuJJiaWAGEs/RAGE blockade downregulates Endothenin-1 (ET-1), mitigating Human Umbilical Vein Endothelial Cells (HUVEC) injury in deep vein thrombosis (DVT)Bioengineered202112011360136833896376 +PadillaJCarpenterA JDasN ATRAF3IP2 mediates high glucose-induced endothelin-1 production as well as endothelin-1-induced inflammation in endothelial cellsAm J Physiol Heart Circ Physiol201831401H52H6428971844 +LiuLJouveCSebastien HulotJGeorgesABouatia-NajiNEpigenetic regulation at LRP1 risk locus for cardiovascular diseases and assessment of cellular function in hiPSC derived smooth muscle cellsCardiovasc Res202211801cvac066.193VormittagRBencurPAyCLow-density lipoprotein receptor-related protein 1 polymorphism 663 C > T affects clotting factor VIII activity and increases the risk of venous thromboembolismJ Thromb Haemost200750349750217155964 +ChunHKurasawaJ HOlivaresPCharacterization of interaction between blood coagulation factor VIII and LRP1 suggests dynamic binding by alternating complex contactsJ Thromb Haemost202220102255226935810466 +
\ No newline at end of file diff --git a/tests/data/xml/10-1055-s-0043-1775965.nxml b/tests/data/xml/10-1055-s-0043-1775965.nxml new file mode 100644 index 00000000..585082e2 --- /dev/null +++ b/tests/data/xml/10-1055-s-0043-1775965.nxml @@ -0,0 +1,586 @@ + +
pmcThromb HaemostThromb Haemost10.1055/s-00035024Thrombosis and Haemostasis0340-62452567-689XGeorg Thieme Verlag KGRüdigerstraße 14, 70469 Stuttgart, Germany +3784646511518618 +10.1055/s-0043-1775965TH-22-08-0374Stroke, Systemic or Venous ThromboembolismDifferential Effects of Erythropoietin Administration and Overexpression on Venous Thrombosis in Micehttp://orcid.org/0000-0001-6555-6622StockhausenSven123KilaniBadr123SchubertIrene123SteinsiekAnna-Lena4ChandraratneSue123WendlerFranziska123EiversLuke123von BrühlMarie-Luise123MassbergSteffen123OttIlka4StarkKonstantin123Medizinische Klinik und Poliklinik I, Klinikum der Universität München, Ludwig-Maximilians-Universität, Munich, GermanyGerman Center for Cardiovascular Research (DZHK), partner site Munich Heart Alliance, Munich, GermanyWalter-Brendel Center of Experimental Medicine, Ludwig-Maximilians-Universität, Munich, GermanyDepartment of cardiology, German Heart Center, Munich, Germany.Address for correspondence Konstantin Stark Medizinische Klinik und Poliklinik I, Ludwig-Maximilians-UniversityMarchioninistr. 15, 81377 MunichGermanyKonstantin.stark@med.uni-muenchen.de161020231120241102023124111027103917920220682023 +The Author(s). This is an open access article published by Thieme under the terms of the Creative Commons Attribution-NonDerivative-NonCommercial License, permitting copying and reproduction so long as the original work is given appropriate credit. Contents may not be used for commercial purposes, or adapted, remixed, transformed or built upon. ( +https://creativecommons.org/licenses/by-nc-nd/4.0/ +) +2023The Author(s).https://creativecommons.org/licenses/by-nc-nd/4.0/This is an open-access article distributed under the terms of the Creative Commons Attribution-NonCommercial-NoDerivatives License, which permits unrestricted reproduction and distribution, for non-commercial purposes only; and use and reproduction, but not distribution, of adapted material for non-commercial purposes only, provided the original work is properly cited.

Background + Deep vein thrombosis (DVT) is a common condition associated with significant mortality due to pulmonary embolism. Despite advanced prevention and anticoagulation therapy, the incidence of venous thromboembolism remains unchanged. Individuals with elevated hematocrit and/or excessively high erythropoietin (EPO) serum levels are particularly susceptible to DVT formation. We investigated the influence of short-term EPO administration compared to chronic EPO overproduction on DVT development. Additionally, we examined the role of the spleen in this context and assessed its impact on thrombus composition. +

Methods + We induced ligation of the caudal vena cava (VCC) in EPO-overproducing Tg(EPO) mice as well as wildtype mice treated with EPO for two weeks, both with and without splenectomy. The effect on platelet circulation time was evaluated through FACS analysis, and thrombus composition was analyzed using immunohistology. +

Results + We present evidence for an elevated thrombogenic phenotype resulting from chronic EPO overproduction, achieved by combining an EPO-overexpressing mouse model with experimental DVT induction. This increased thrombotic state is largely independent of traditional contributors to DVT, such as neutrophils and platelets. Notably, the pronounced prothrombotic effect of red blood cells (RBCs) only manifests during chronic EPO overproduction and is not influenced by splenic RBC clearance, as demonstrated by splenectomy. In contrast, short-term EPO treatment does not induce thrombogenesis in mice. Consequently, our findings support the existence of a differential thrombogenic effect between chronic enhanced erythropoiesis and exogenous EPO administration. +

Conclusion + Chronic EPO overproduction significantly increases the risk of DVT, while short-term EPO treatment does not. These findings underscore the importance of considering EPO-related factors in DVT risk assessment and potential therapeutic strategies. +

Keywordsdeep vein thrombosisred blood cellsspleenerythropoietinsterile inflammationfibrinDeutsche Forschungsgemeinschaft1123Deutsche Forschungsgemeinschaft914Deutsche Gesellschaft für Kardiologie-Herz und KreislaufforschungDGK09/2020ERC starting grant947611Förderprogramm für Forschung und Lehre1123Funding +This project is supported by the ERC starting grant T-MEMORE project 947611 (K.S.). This study was supported by the Deutsche Forschungsgemeinschaft through the collaborative research center 1123 project A07 (K.S., S.M.) and the collaborative research center 914 project B02 (K.S., S.M.). We thank for the support by the grant from the Deutsche Gesellschaft für Kardiologie project DGK09/2020 and the Förderprogramm für Forschung und Lehre (FöFoLe) project 1123 (S.S). +
Introduction

+Red blood cells (RBCs) are the primary carriers oxygen and carbon dioxide in all mammals. Low hemoglobin concentrations in the blood can cause severe oxygen deficiency, leading to ischemia in organs and tissues. At the same time, numerous clinical observations identified elevated hemoglobin levels as an independent risk factor for deep vein thrombosis (DVT) formation. This applies to overproduction of RBCs due to erythropoietin (EPO) administration, as well as foreign blood transfusions. +1 +2 +3 +4 +5 +6 +7 +This is also evident in illnesses which exhibit an excessive RBC production such as polycythemia vera or Chuvash polycythemia where a significant increase in thromboembolic complications has been reported. +8 +9 +In such cases, oral or parenteral anticoagulants are effective preventive measures. However, their use entails significant drawbacks in the form of elevated bleeding risks, which can lead to severe complications. +10 +Therefore, it is crucial to identify patients at risk and to expand our understanding of the pathophysiology to enable a more targeted prevention and treatment of DVT. +

+The mechanism of RBC-mediated DVT formation so far is not fully understood. Essentially, DVT formation is triggered by sterile inflammation. +11 +Neutrophils and monocytes deliver tissue factor (TF) to the site of thrombus formation creating a procoagulant environment. +11 +However, the contribution of leukocytes to DVT formation may vary depending on the underlying disease and a leukocyte-recruiting property of RBCs in DVT has not been conclusively proven. +

+In this project we used a transgenic mouse model overexpressing the human EPO gene in an oxygen-independent manner. In these mice the hematocrit is chronically elevated, which leads to several changes. RBCs represent, volumetrically, the largest cellular component in the peripheral blood, thus influencing the viscosity of the blood, fostering cardiovascular events like stroke or ischemic heart disease. +12 +RBCs from Tg(EPO) mice show increased flexibility which in turn reduces the viscosity, and protects from thrombus formation. +13 +Additionally, excessive NO production has been described. In Tg(EPO) mice, the vasodilative effect of extensive NO release is partly compensated by endothelin. +14 +A reduced lifespan of RBCs was also identified in this mouse strain. +15 +

+The spleen is responsible for RBC clearance, which acts as gatekeeper of the state, age, and number of RBCs. +16 +The loss of function of the spleen, due to removal, leads to changes in the blood count, the most striking of which is the transient thrombocytosis observed after splenectomy. +17 +Even though the platelet count normalizes within weeks, the risk of thromboembolism remains persistently high; however, the mechanism behind this prothrombotic state is unclear. +18 +19 +20 +Previous studies reveal an increase in platelet- and (to a lesser extent) RBC-derived microvesicles in splenectomized patients, which could indicate changes in their life cycle or activation state. +21 +At the same time, the levels of negatively charged prothrombotic phospholipids, like phosphatidylserine, in pulmonary embolism increase after splenectomy. +22 +23 +24 +Among others, RBCs can contribute to phosphatidylserine exposure. +25 +Old, rigid RBCs with modified phospholipid exposure promote thrombus formation; however, their relevance for DVT in vivo remains unclear. +20 +25 +26 +

+In this study, we investigated the effect +s +of short-term EPO administration compared to chronic intrinsic EPO overproduction and the interference with RBC clearance on experimental venous thrombosis. We found that chronic intrinsic EPO overproduction resulted in excessive venous thrombosis. In this setting, platelets and leukocytes were reduced in thrombi, while RBC accumulation was markedly increased. In contrast, short-term EPO administration had no effect on DVT. Interference with RBC clearance by splenectomy had no effect on DVT, either in cases of chronic EPO overproduction or in wild-type (WT) mice. In summary, our data indicate that only long-term and excessively increased EPO levels affect DVT formation in mice, independent of splenic clearance of RBCs. +

MethodsMouse Model

+C57BL/6 mice were obtained from Jackson Laboratory. Human EPO-overexpressing mice were generated as previously described. +14 +TgN(PDGFBEPO)321Zbz consists of a transgenic mouse line, TgN(PDGFBEPO)321Zbz, expresses human EPO cDNA, and was initially reported by Ruschitzka et al, +14 +subsequently named Tg(EPO). The expression is regulated by the platelet-derived growth factor promotor. We used the corresponding WT littermate controls named as WT. +27 +Sex- and age-matched groups were used for the experiments with an age limit ranging between 12 and 29 weeks. The mice were housed in a specific-pathogen-free environment in our animal facility. General anesthesia was induced using a mixture of inhaled isoflurane, intravenous fentanyl, medetomidine, and midazolam. All procedures performed on mice were conducted in accordance with local legislation for the protection of animals (Regierung von Oberbayern, Munich) and were authorized accordingly. +

Stenosis of the Inferior Vena Cava

The operation was carried out under general anesthesia. The procedure involved median laparotomy to access the inferior vena cava (IVC). A suture was placed around the IVC and ligated below the renal vein. To prevent complete stasis, a placeholder with a diameter of about 0.5 mm was inserted into the loop and subsequently removed after tightening. Side branches of the IVC were not ligated. As result, intravascular flow reduction occurred, ultimately leading to thrombus formation. Thrombus quantification was conducted by removing the IVC (segment between the renal vein and the confluence of the common iliac veins). The incidence and weight of the thrombus were documented.

Acute and Chronic EPO Experiments

To analyze the effect of short-term EPO administration on DVT formation, we subcutaneously (s.c.) injected 300 IU (10 IU/µL) EPO (Epoetin alfa HEXAL) three times a week into the gluteal region of C57Bl/6J mice purchased from the Jackson Laboratory. The injections were carried out for a duration of 2 weeks resulting in a total of six EPO treatments. After the completion of the 2-week EPO administration, there was a gap of 2 days before ligating the IVC. The ligation procedure was performed when the mice were 18 weeks old. The control group consisted of age- and sex-matched mice that received the same volume (30 µL) of a 0.9% NaCl solution per dosage.

Ultrasound Analysis of Myocardial Performance

The cardiac ultrasound analysis was conducted using a Vevo 2100 Imaging System (Visualsonics). To ensure sufficient tolerance during the investigation, short-term inhalation anesthesia (Isofluran CP, cp pharma) was administered during the investigation. Subsequently, the mice were then positioned on their back, and transthoracic echocardiography was performed.

Intracardial Blood Withdrawal

Blood was collected from adequately anesthesized mice through cardiac puncture using a syringe containing citrate as an anticoagulant.

Blood Cell Counts

Blood cell counts were determined in citrated blood using an automated cell counter (ABX Micros ES60, Horiba ABX).

Splenectomy

To remove the spleen, the mice were anesthetized as previously described. A lateral subcostal incision was made, followed by ligation and cutting of the splenic vessels. Subsequently, the spleen was removed and the surgical wound was closed with sutures. The organ removal procedure was performed 5 weeks prior to subsequent experiments, such as ligation of the IVC.

Immunofluorescence Staining of Frozen Sections

After harvesting thrombi, the organic material was embedded in OCT, rapidly frozen in liquid nitrogen, and stored at −80°C. Subsequently, 5 µm slides were sectioned using a cryotome (CryoStar NX70 Kryostat, Thermo Fisher Scientific). The staining procedure began with a fixation step using 4% ethanol-free formaldehyde (Thermo Fisher; #28908), followed by blocking with goat serum (Thermo Fisher; #50062Z). The following antibodies were used: CD41 (clone: MWReg30, BD Bioscience; #12-0411-83; isotype: rat IgG1), Fibrin(-ogen) (clone: polyclonal; DAKO; #A0080; isotype: rabbit IgG), Ly6G (clone: 1A8, Thermo Fisher; #12-9668-82; isotype: rat IgG2a), MPO (polyclonal, Dako; #A0398; isotype: rabbit IgG), TER119 (clone: TER-119; Thermo Fisher; #12-5921-83; isotype: rat IgG2b). Alexa-labeled secondary antibodies were used to induce fluorescence (Invitrogen; #A11007; #A11034). Nuclei were marked using Hoechst (ThermoFisher; #H3570). Image acquisition was performed on an AxioImager M2 (Carl Zeiss Microscopy) using corresponding AxioVision SE65 software. Near-field analysis of fibrin fibers was captured on an inverted Zeiss LSM 880 confocal microscope in AiryScan Super Resolution (SR) Mode (magnification, ×63 objective, with 5 to 6 random images acquired per thrombus). Further structural analysis of the fibrin fibers was conducted using Imaris (Oxford instruments). To quantify neutrophil extracellular traps, we identified DNA protrusions (Hoechst-positive) originating from Ly6G-positive cells and covered by MPO.

Statistics

+Statistical analysis was conducted using GraphPad Prism 5, employing a +t +-test. Based on clinical observations strongly suggesting an increase in thrombus formation in EPO overproducing mice, a one-sided +t +-test was performed. +8 +9 +The normal distribution of the data was confirmed using D'Agostino and Pearson omnibus normality testing. Thrombus incidences between groups were compared using the chi-square test. +

ResultsChronic EPO Overproduction Leads to Increased DVT in Mice

+To investigate the impact of chronic erythrocyte overproduction on DVT in mice, we analyzed EPO-overexpressing transgenic Tg(EPO) mice. As expected, this mouse strain exhibited a substantial increase in RBC count ( +Fig. 1A +). Additionally, the RBC width coefficient and reticulocyte count were elevated, indicating enhanced RBC production ( +Supplementary Fig. S1A, B +[available in the online version]). In addition to influencing the RBC lineage, our analyses revealed a significant increase in white blood cell (WBC) count, primarily driven by elevated lymphocyte count ( +Supplementary Fig. S1C, E +[available in the online version]). However, neutrophils known as major contributors to venous thrombosis showed no significant changes in EPO transgenic mice, while platelet counts were significantly reduced ( +Fig. 1B +and +Supplementary Fig. S1D +[available in the online version]). Furthermore, autopsies of the animals confirmed the presence of splenomegaly ( +Supplementary Fig. S1F +[available in the online version]). +28 +29 +

+EPO-overexpressing mice experience an increased incidence of DVT formation. ( +A +) Comparison of RBC count between EPO-overexpressing Tg(EPO) mice ( +n + = 12) and control (WT) mice ( +n + = 13). ( +B +) Comparison of platelet count between EPO-overexpressing Tg(EPO) ( +n + = 7) mice and control (WT) mice ( +n + = 5). ( +C +) Comparison of thrombus weight between Tg(EPO) mice ( +n + = 9) and WT ( +n + = 10); mean age in the Tg(EPO) group: 19.8 weeks; mean age in the WT group: 20.1 weeks. ( +D +) Comparison of thrombus incidence between Tg(EPO) mice ( +n + = 9) and WT mice ( +n + = 10); NS = nonsignificant, * +p + < 0.05, ** +p + < 0.01, *** +p + < 0.001. DVT, deep vein thrombosis; EPO, erythropoietin; RBC, red blood cell; WT, wild type. +

+Based on clinical observations indicating a correlation between high EPO levels and increased incidence of DVT, we utilized an IVC stenosis model to evaluate venous thrombosis in EPO-overexpressing mice. +6 +7 +Our findings revealed a significant elevation in both the incidence and thrombus weight in Tg(EPO) mice compared to their WT littermates ( +Fig. 1C, D +). To determine whether chronic EPO overproduction in transgenic mice affected cardiac function, we assessed parameters such as the left ventricular ejection fraction, fractional shortening, and heart rate, ruling out any alternations ( +Supplementary Fig. S1G, H, J +[available in the online version]), which aligns with previous publications. +30 +Additionally, morphological parameters including left ventricular mass, left ventricular internal diameter end diastole, and inner ventricular end diastolic septum diameter were similar between Tg(EPO) and WT mice ( +Supplementary Fig. S1I, K, L +[available in the online version]). +

High RBC Count Leads to a Decrease in Platelet Accumulation in Venous Thrombosis

+Having observed a correlation between high EPO and hematocrit levels with increased thrombus formation, our aim was to investigate the factors involved in triggering thrombus development through histologic analysis of thrombus composition. In Tg(EPO) mice, the elevated hematocrit levels led to enhanced RBC accumulation within the thrombus, as indicated by the Ter119-covered area measurement ( +Fig. 2A +). Given the interaction between RBCs and platelets, which can initiate coagulation activation, we examined the distribution of fibrinogen in relation to RBCs and platelets within the thrombi. +31 +Our findings revealed a close association between the fibrinogen signal and RBCs, as well as between the platelet signal and RBCs, indicating interactions among these three factors ( +Fig. 2E, F +). However, we observed significantly lower fibrinogen coverage in thrombi from EPO transgenic mice ( +Fig. 2B +). Furthermore, the structure of the fibrin meshwork exhibited an overall “looser” morphology with significantly thinner fibrin fibers ( +Fig. 3A-C +). +

+Chronic overproduction of EPO in mice leads to a decrease in the accumulation of classical drivers of DVT formation, including platelets, neutrophils, and fibrinogen. ( +A +) The proportion of RBC-covered area in the thrombi of EPO-overexpressing Tg(EPO) mice ( +n + = 4) was compared to control (WT) ( +n + = 3) by immunofluorescence staining of cross-sections of the IVC 48 hours after flow reduction. ( +B +) The proportion of fibrinogen-covered area in the thrombi of EPO- overexpressing Tg(EPO) mice ( +n + = 3) was compared to control (WT) ( +n + = 3) using immunofluorescence staining of cross-sections of the IVC 48 hours after flow reduction. ( +C +) The proportion of platelet-covered area in the thrombi of EPO-overexpressing Tg(EPO) mice ( +n + = 3) was compared to control (WT) ( +n + = 3) by immunofluorescence staining of cross-sections of the IVC 48 hours after flow reduction. ( +D +) Quantification of neutrophils was performed by immunofluorescence staining of cross-sections of the IVC 48 hours after flow reduction in EPO-overexpressing Tg(EPO) mice ( +n + = 3) compared to control (WT) ( +n + = 3). ( +E +) Immunofluorescence staining of cross-sections of the IVC 48 hours after flow reduction from EPO-overexpressing Tg(EPO) mice (top) was compared to control (WT) (bottom) for TER119 in red (RBC), CD42b in green (platelets), and Hoechst in blue (DNA). The merged image is on the left, and the single channel image is on the right. Scale bar: 50 µm. ( +F +) Immunofluorescence staining of cross-sections of the IVC 48 hours after flow reduction from EPO-overexpressing Tg(EPO) mice (top) was compared to control (WT) (bottom) for TER119 in red (RBC), fibrinogen in green, and Hoechst in blue (DNA); the merged image is on the left, and single-channel images are on the right. Scale bar: 50 µm.; NS = nonsignificant, * +p + < 0.05, ** +p + < 0.01, *** +p + < 0.001. DVT, deep vein thrombosis; EPO, erythropoietin; IVC, inferior vena cava; RBC, red blood cell; WT, wild type. +

+The interaction of RBC with fibrinogen leads to the formation of a branched fibrin structure. ( +A +) Immunofluorescence staining of cross-sections of the IVC 48 hours after flow reduction from EPO-overexpressing Tg(EPO) mice (left) was compared to control (WT) for fibrinogen (green). Scare bar: 50 µm. ( +B +) High-resolution confocal images of immunofluorescence staining of cross-sections of the IVC 48 hours after flow reduction from EPO-overexpressing Tg(EPO) mice (left) compared to control (WT) for fibrinogen (green), RBC (red), and DNA (blue). Scale bar: 2 µm. ( +C +) The mean diameter of 2,141 fibrin fibers was measured in cross-sections of thrombi from Tg(EPO) mice (left), and compared to 5,238 fibrin fibers of WT thrombi. ( +D +) The mean diameter of 3,797 fibrin fibers was measured in two cross-sections of thrombi from 2-week EPO-injected mice (left), and compared to 10,920 fibrin fibers of three cross-sections from control (2-week NaCl-injected mice). ( +E +) High +- +resolution confocal images of immunofluorescence staining of two cross-sections of the IVC 48 hours after flow reduction from 2-week EPO-injected mice (left) were compared to control (2 week NaCl-injected mice) for fibrinogen (green), RBC (red), and DNA (blue). Scale bar: 2 µm. EPO, erythropoietin; IVC, inferior vena cava; RBC, red blood cell; WT, wild type. +

+To quantify platelet accumulation in thrombi, we analyzed the CD41-covered area in thrombi of both mouse strains. Consistent with the reduced platelet count in peripheral blood, platelet accumulation was also decreased in thrombi from EPO transgenic mice ( +Fig. 2C +). +

+As mentioned previously, inflammation plays a fundamental role in DVT formation. Therefore, we conducted an analysis to quantify the presence of leukocytes in the thrombus material. Our investigation focused specifically on neutrophils, as they represent the predominant leukocyte population in peripheral blood. Despite observing normal neutrophil counts, we identified a significant reduction in neutrophil recruitment within thrombi from EPO transgenic mice ( +Fig. 2D +). In summary, our findings indicate an isolated increase in the number of RBCs within venous thrombi of EPO transgenic mice, while the levels of fibrinogen and platelets were decreased. +

Short-Term Administration of EPO Does Not Foster DVT

+Due to the significant impact of chronic EPO overproduction in Tg(EPO) mice on peripheral blood count and its detrimental consequences on DVT formation, we proceeded to analyze the effects of 2-week periodic EPO injections on blood count and subsequent DVT formation in WT mice. Within just 2 weeks, a significant increase of RBC and reticulocyte count in peripheral blood was observed ( +Fig. 4A +and +Supplementary Fig. S2A +[available in the online version]). Conversely, platelet count exhibited a notable decrease in EPO-treated mice ( +Fig. 4B +). Unlike EPO-overexpressing mice, the leukocyte counts and their differentiation into granulocytes, lymphocytes, and monocytes showed no differences between EPO-treated and nontreated mice ( +Supplementary Fig. S2B–E +[available in the online version]). Autopsy analyses further revealed a significant enlargement and weight increase of the spleen in EPO-treated mice ( +Supplementary Fig. S2F, G +[available in the online version]). +

+Two-week EPO injection leads to thrombocytopenia without an impact on the bone marrow. ( +A +) RBC count in peripheral blood after 6 × 300 IU EPO treatment of C57Bl/6J mice ( +n + = 10) was compared to control (6 × 30 µL NaCl injection) ( +n + = 9). ( +B +) Platelet count in peripheral blood after 6 × 300 IU EPO treatment of C57Bl/6J mice ( +n + = 10) was compared to control (6 × 30 µL NaCl injection) ( +n + = 10). ( +C +) Area of RBC-positive area in the bone marrow of 6 × 300 IU EPO +- +treated C57Bl/6J mice ( +n + = 4) was compared to control (6 × 30 µL NaCl injection) ( +n + = 4). ( +D +) Immunofluorescence staining of cross-sections of the bone marrow after 2-week EPO injection (top) was compared to NaCl injection (bottom) stained for TER119 (violet) and Hoechst (white). Scale bar: 100 µm. ( +E +) Number of megakaryocyte count in the bone marrow of 6 × 300 IU EPO-treated C57Bl/6J mice ( +n + = 4) was compared to control (6 × 30 µL NaCl injection) ( +n + = 4). ( +F +) Immunofluorescence staining of cross-sections of the bone marrow after 2-week EPO injection (top) compared to NaCl injection (bottom) stained for CD41 (violet) and Hoechst (white). Scale bar: 100 µm. ( +G +) Platelet large cell ratio in peripheral blood of 6 × 300 IU EPO +- +treated C57Bl/6J mice ( +n + = 10) compared to control (6 × 30 µL NaCl injection) ( +n + = 9). ( +H +) Thrombus weight of 6 × 300 IU EPO +- +treated C57Bl/6J mice ( +n + = 10) and NaCl-injected control mice ( +n + = 10). ( +I +) Thrombus incidence of 6 × 300 IU EPO-treated C57Bl/6J mice ( +n + = 10) and NaCl-injected control mice ( +n + = 10). NS = nonsignificant, * +p + < 0.05, ** +p + < 0.01, *** +p + < 0.001. EPO, erythropoietin; RBC, red blood cell. +

+To further investigate the underlying cause of thrombocytopenia in EPO-treated mice, we examined the bone marrow composition. Previous studies by Shibata et al demonstrated a reduction in megakaryocytes in Tg(EPO) mice. +32 +Therefore, we analyzed the bone marrow composition after 2 weeks of EPO treatment. However, we found no difference in the TER119-covered area, indicating no significant alternation ( +Fig. 4C, D +). Similarly, the megakaryocyte count in the bone marrow showed no changes compared to the control group ( +Fig. 4E, F +,). In terms of platelet morphology, we observed an increased platelet large cell ratio in the EPO-treated group ( +Fig. 4G +). This suggests an elevated production potential of megakaryocytes, as immature platelets tend to have larger cell volumes compared to mature platelets. +33 +These findings indicate that our EPO administration protocol enhanced the synthesis capacity of bone marrow stem cells, resulting in augmented erythropoiesis. However, the cellular composition of the bone marrow remained unchanged after 2 weeks of treatment. +

+To analyze the impact of 2-week EPO treatment on DVT formation, we utilized the IVC stenosis model. Despite similar changes in blood count in Tg(EPO) mice or WT mice after EPO administration, we observed comparable venous thrombus formation between mice treated with EPO for 2 weeks and the control group treated with NaCl ( +Fig. 4H, I +). Since we previously observed that only long-term elevation of EPO levels with supraphysiologic hematocrit leads to increased thrombus formation, our focus shifted toward identifying the factors triggering thrombus formation. Therefore, we conducted a histological analysis of thrombus composition. Given the significantly thinner fibrin fibers observed in thrombi from Tg(EPO) mice, we investigated whether similar morphological changes occurred in mice treated with EPO for 2 weeks. Interestingly, the histological examination of the thrombi revealed a comparable thinning of fibrin fibers following EPO treatment ( +Fig. 3D, E +). +

In contrast to chronic EPO overproduction in Tg(EPO) mice, short-term administration of EPO does not increase the incidence of DVT, despite similar changes in blood cell counts. Therefore, the quantitative changes in blood count alone cannot explain the increased thrombosis observed in the presence of EPO overexpression in Tg(EPO) mice.

Splenectomy Does Not Affect Venous Thrombus Formation

+As the data suggested a qualitative change in RBCs in the context of EPO overproduction, we investigated whether splenic clearance of aged RBCs plays a critical role in the increased formation of DVT. In the spleen, aged and damaged RBCs are eliminated, ensuring the presence of young and flexible RBCs. +16 +We examined the immediate impact of EPO on spleen morphology. Even a single injection of 300 IU EPO s.c. in mice resulted in a significant increase in spleen weight, despite no difference in blood count compared to the control group ( +Supplementary Fig. S2F–H +[available in the online version]). This striking phenotype was also observed in mice with chronic EPO overexpression ( +Supplementary Fig. S1F +[available in the online version]). +13 +

+To investigate the role of splenic RBC clearance in DVT, we performed splenectomy 5 weeks prior to conducting the IVC stenosis model. Firstly, we analyzed the impact of splenectomy on blood cell counts in WT mice 5 weeks postsurgery. We observed an increase in granulocytes and lymphocytes after splenectomy ( +Fig. 5A +and +Supplementary Fig. S3A, B +[available in the online version]). Next, we examined the distribution of blood cells in response to DVT development. Similar to nonsplenectomized mice, we observed an increase in WBC count in the peripheral blood ( +Fig. 5A +). Additionally, we noted a significant decrease in platelet count in splenectomized mice in response to thrombus development ( +Fig. 5B +), which is consistent with the results obtained from nonsplenectomized mice. +

+Splenectomy does not affect the blood count as well as DVT formation. ( +A +) WBC count in C57Bl/6J mice without treatment ( +n + = 5), 48 hours after induction of DVT ( +n + = 7), 5 weeks after splenectomy ( +n + = 3), and 5 weeks after splenectomy with an additional 48-hour induction of DVT ( +n + = 9). ( +B +) Platelet count in C57Bl/6J mice without treatment ( +n + = 6), 48 hours after induction of DVT ( +n + = 6), 5 weeks after splenectomy ( +n + = 3), and 5 weeks after splenectomy with an additional 48-hour induction of DVT ( +n + = 9). ( +C +) RBC count in C57Bl/6J mice without treatment ( +n + = 6), 48 hours after induction of DVT ( +n + = 6), 5 weeks after splenectomy ( +n + = 3), and 5 weeks after splenectomy with an additional 48-hour induction of DVT ( +n + = 9). ( +D +) Thrombus weight in C57Bl6 wild-type mice without splenectomy ( +n + = 6) and with splenectomy ( +n + = 6) ( +E +) Thrombus incidence in C57Bl/6J wild-type mice without splenectomy ( +n + = 6) and with splenectomy ( +n + = 6). ( +F +) Thrombus weight in EPO-overexpressing Tg(EPO) mice without splenectomy ( +n + = 9) and with splenectomy ( +n + = 6) compared to control WT mice without splenectomy ( +n + = 10) and with splenectomy ( +n + = 11). ( +G +) Thrombus incidence in EPO-overexpressing Tg(EPO) mice without splenectomy ( +n + = 9) and with splenectomy ( +n + = 6) compared to control WT mice without splenectomy ( +n + = 10) and with splenectomy ( +n + = 11). NS = nonsignificant, * +p + < 0.05, ** +p + < 0.01, *** +p + < 0.001. DVT, deep vein thrombosis; RBC, red blood cell; WT, wild type. +

+Finally, we analyzed the impact of splenectomy on DVT formation in both WT mice and Tg(EPO) mice. Despite changes in blood cell counts and the effects on platelet removal, there was no difference in the incidence and thrombus weight in C57Bl/6 mice ( +Fig. 5D, E +). Next, we examined EPO-overexpressing mice, which have been shown to have an increased risk of DVT formation. Despite significant splenomegaly, the incidence of DVT formation remained statistically unchanged after spleen removal ( +Fig. 5F, G +). Therefore, splenectomy does not affect thrombus formation in the context of enhanced or normal erythropoiesis. +

Discussion

+Here, we present evidence for a differential thrombotic effect of chronic EPO overproduction and short-term external EPO administration. Consistent with clinical observations, chronic overproduction of EPO is associated with an increased risk of DVT formation. This is similar to Chuvash polycythemia where the von-Hippel–Lindau mutation leads to chronic overproduction of hypoxia-induced factors and high EPO levels. +34 +In addition to genetically altered EPO production, factors such as residence at high altitudes and naturally increasing EPO secretion also represent risk factors for venous thrombosis and pulmonary thromboembolism. +35 +36 +These conditions can be mimicked in a mouse model through chronic hypoxia. +37 +

Therefore, it is highly probable that EPO and RBC play significant roles in DVT formation. In fact, our data suggest that qualitative changes in RBC, rather than solely quantitative changes, are responsible for the increased occurrence of venous thrombus formation.

+In our analyses, we observed that short-term administration of EPO does not increase the risk of DVT, in contrast to chronic overproduction of EPO. However, changes in peripheral blood count in response to EPO occur relatively quickly, within 2 weeks of initiating therapy in mice. These changes include elevated levels of hemoglobin and thrombocytopenia, which are consistent with previous studies. +17 +22 +38 +39 +40 +41 +42 +43 +44 +45 +In the model of transgenic overexpressing EPO mice, there was an age-dependent progressive decrease in megakaryocyte count in the bone marrow. +32 +A similar phenomenon can be observed in mice exposed to chronic hypoxia. +46 +It is believed that competition between erythroid and platelet precursors in the stem cell population is responsible for this phenomenon. +38 +Despite a similar decrease of peripheral platelet counts, we observed normal megakaryocyte counts in the bone marrow of mice injected with EPO for 2 weeks. We speculate that morphological changes in the bone marrow are long-term consequences of EPO administration. In peripheral blood, we observed a significant increase in the platelet large cell ratio in mice treated with EPO for 2 weeks. This is likely due to an elevated count of reticulated platelets, which has been previously observed in response to EPO treatment. +47 +The presence of high levels of reticulated platelets indicates a high synthetic potential of megakaryocytes. Indeed, megakaryocytes possess high-affinity binding sites for EPO resulting in an increase in size, ploidy, and number of megakaryocytes in vitro. +48 +49 +Young, reticulated platelets are known risk factors for thrombosis, which may counterbalance the overall low platelet count in terms of thrombogenicity. +50 +51 +52 +However, the significant increase in DVT observed in chronic EPO-overexpressing mice is likely attributed to qualitative changes in RBCs. There are several ways in which RBCs can interact with platelets and fibrin. The FAS-L-FAS-R interplay between RBCs and platelets has been shown to enhance DVT formation. +31 +Additionally, interactions such as ICAM-4–α1bβ3 integrin and adhesion between RBCs and platelets mediated by GPIb and CD36 have been described. +53 +54 +As demonstrated in this study, the pronounced prothrombotic effect of RBCs only manifests after several weeks to months of EPO overproduction. Thus, we propose that RBC aging plays a role in this phenomenon. This is supported by the finding that RBCs in our Tg(EPO) mouse model exhibit characteristics of accelerated aging including decreased CD47 expression, leading to a 70% reduction in lifespan. +15 +

+During the ageing process, RBCs not only display increasing amounts of procoagulant phosphatidylserine on their surface but also exhibit heightened osmotic and mechanical fragility, which is also observed in Tg(EPO) mice. +32 +55 +Fragile RBCs are prone to hemolysis, resulting in the release of ADP and free hemoglobin. Furthermore, hemoglobin directly or indirectly contributes to increased platelet activity, for instance, by forming complexes with nitric oxide (NO). +56 +57 +58 +NO is essential for the survival of Tg(EPO) mice but dispensable for WT mice. +14 +Consistent with this, patients with polycythemia vera exhibit platelet hypersensitivity despite normal platelet counts, while plasma haptoglobin concentration, a marker for hemolysis, is decreased. +59 +60 +61 +62 +63 +64 +65 +Similarly, chronic subcutaneous EPO administration in hemodialysis patients leads to a prothrombotic phenotype similar to that of polycythemia vera patients. +66 +67 +68 +69 +70 +Notably, concentrated RBC transfusions result in the rapid clearance of up to 30% of transfused erythrocytes within 24 hours due to their age, thus increasing the risk of DVT formation. +5 +71 +

+Clearance of RBCs primarily occurs in the spleen, where tissue-resident macrophages screen for surface markers such as CD47. +72 +Subsequently, RBCs are phagocytosed before reaching day 120 of their lifespan. +73 +The spleen plays a crucial role in maintaining the shape and membrane resilience of RBCs, acting as a guardian in this regard. +74 +However, shortly after splenectomy, the loss of the organ significantly increases the risk of DVT formation. +20 +In the long-term basis, we observed no difference in DVT formation after splenectomy, neither in WT mice nor in chronic EPO-overexpressing mice, despite the dramatic increase in macrophage-mediated RBC clearance in these mice. +15 +Since RBC clearance occurs primarily in the spleen and liver in mice, we hypothesize that the liver is capable of adequately compensating for the absence of the spleen after removal. +15 +

+Besides their activating effect on platelets, RBCs also directly impact the coagulation system. Previous data demonstrate that following TF activation, RBCs contribute to thrombin generation to a similar extent to platelets. +75 +Furthermore, RBCs expose phosphatidylserine, which activates the contact pathway. +31 +Notably, the coagulation system in Tg(EPO) mice exhibits normal activity in whole blood adjusted to a physiological hematocrit. +32 +Additionally, RBCs express a receptor with properties similar to the α +IIb +β +3 +integrin enabling their interaction with fibrin. +76 +This interaction contributes to the formation of a dense fibrin meshwork consisting of thin fibers. +77 +Such a structure hinders clot dissolution, leading to slower lysis. +77 +In our histological analysis of thrombi, we confirm morphological changes in the fibrin meshwork, resulting in a thinner appearance in both EPO-overexpressing mice and mice subjected to short-term EPO injection. +

In summary, our data suggest that chronic EPO overproduction, leading to elevated hematocrit levels, is associated with an increased incidence of venous thrombosis. This is likely attributed to qualitative changes in RBCs that promote a thrombogenic environment. On the other hand, short-term EPO administration does not pose an increased risk of venous thrombosis. Furthermore, splenic clearance of altered RBCs does not play a significant role in DVT formation. Therefore, conditions involving chronically elevated RBC production should be closely monitored due to the heightened risk of venous thrombosis.

+What is known about this topic? +

Patients with high hematocrit and/or excessively increased erythropoietin (EPO) serum concentrations are particularly prone to deep vein thrombus (DVT) formation.

The spleen is an important organ in RBC and platelet clearance. Splenectomy leads to an increased risk of thromboembolic events.

+What does this paper add? +

Chronic but not short-term EPO administration/overproduction drives DVT formation in mice.

EPO-mediated DVT is mostly independent of conventional players of DVT (neutrophils, platelets) and splenic erythrocyte clearance.

Acknowledgment

Finally, we thank Philipp Lange for the technical support in performing ultrasound analysis of myocardial performance and on mice and Dominic van den Heuvel for the support in confocal microscopy as well as Analysis with Imaris.

Conflict of Interest None declared.

Authors' Contribution

K.S., S.M., and S.S. conceived and designed the experiments. S.S., I.S., A.-L.S., and S.C. planned and performed histological and immunohistochemical analysis. B.K., I.S., A.-L.S., F.W., and M.v.B. did surgery for IVC flow reduction in mice. F.W. injected EPO into C57Bl/6J mice. I.S. performed splenectomy on mice. I.S. determined platelet circulation time. B.K. performed platelet clearance essay in liver and spleen FACS experiments. I.O. provided Tg(EPO) mice. S.S. and K.S. wrote the manuscript. All the authors reviewed and edited the manuscript.

Supplementary Material

Supplementary Material

Supplementary Material

ReferencesRamseyGLindholmP FThrombosis risk in cancer patients receiving red blood cell transfusionsSemin Thromb Hemost2019450664865631430787 +KumarM ABolandT ABaiouMRed blood cell transfusion increases the risk of thrombotic events in patients with subarachnoid hemorrhageNeurocrit Care20142001849023423719 +GoelRPatelE UCushingM MAssociation of perioperative red blood cell transfusions with venous thromboembolism in a North American RegistryJAMA Surg20181530982683329898202 +WangCLe RayILeeBWikmanAReillyMAssociation of blood group and red blood cell transfusion with the incidence of antepartum, peripartum and postpartum venous thromboembolismSci Rep20199011353531537816 +DonahueB SRed cell transfusion and thrombotic risk in childrenPediatrics202014504e2019395532198294 +DicatoMVenous thromboembolic events and erythropoiesis-stimulating agents: an updateOncologist20081303111518458119 +BennettC LSilverS MDjulbegovicBVenous thromboembolism and mortality associated with recombinant erythropoietin and darbepoetin administration for the treatment of cancer-associated anemiaJAMA20082990891492418314434 +ChievitzEThiedeTComplications and causes of death in polycythaemia veraActa Med Scand196217251352314020816 +GordeukV RPrchalJ TVascular complications in Chuvash polycythemiaSemin Thromb Hemost2006320328929416673284 +BallestriSRomagnoliEArioliDRisk and management of bleeding complications with direct oral anticoagulants in patients with atrial fibrillation and venous thromboembolism: a narrative reviewAdv Ther20234001416636244055 +von BrühlM LStarkKSteinhartAMonocytes, neutrophils, and platelets cooperate to initiate and propagate venous thrombosis in mice in vivoJ Exp Med20122090481983522451716 +LoweG DLeeA JRumleyAPriceJ FFowkesF GBlood viscosity and risk of cardiovascular events: the Edinburgh Artery StudyBr J Haematol199796011681739012704 +VogelJKiesslingIHeinickeKTransgenic mice overexpressing erythropoietin adapt to excessive erythrocytosis by regulating blood viscosityBlood2003102062278228412750170 +RuschitzkaF TWengerR HStallmachTNitric oxide prevents cardiovascular disease and determines survival in polyglobulic mice overexpressing erythropoietinProc Natl Acad Sci U S A20009721116091161311027359 +BogdanovaAMihovDLutzHSaamBGassmannMVogelJEnhanced erythro-phagocytosis in polycythemic mice overexpressing erythropoietinBlood20071100276276917395782 +MebiusR EKraalGStructure and function of the spleenNat Rev Immunol200550860661616056254 +BoxerM ABraunJEllmanLThromboembolic risk of postsplenectomy thrombocytosisArch Surg197811307808809678089 +KhanP NNairR JOlivaresJTingleL ELiZPostsplenectomy reactive thrombocytosisProc Bayl Univ Med Cent2009220191219169391 +ThomsenR WSchoonenW MFarkasD KRiisAFryzekJ PSørensenH TRisk of venous thromboembolism in splenectomized patients compared with the general population and appendectomized patients: a 10-year nationwide cohort studyJ Thromb Haemost20108061413141620218983 +KatoG JVascular complications after splenectomy for hematologic disordersBlood2009114265404SewifyE MSayedDAbdel AalR FAhmadH MAbdouM AIncreased circulating red cell microparticles (RMP) and platelet microparticles (PMP) in immune thrombocytopenic purpuraThromb Res201313102e59e6323245653 +FreyM KAliasSWinterM PSplenectomy is modifying the vascular remodeling of thrombosisJ Am Heart Assoc2014301e00077224584745 +BratosinDMazurierJTissierJ PCellular and molecular mechanisms of senescent erythrocyte phagocytosis by macrophages. A reviewBiochimie199880021731959587675 +TaherA TMusallamK MKarimiMSplenectomy and thrombosis: the case of thalassemia intermediaJ Thromb Haemost20108102152215820546125 +SekiMArashikiNTakakuwaYNittaKNakamuraFReduction in flippase activity contributes to surface presentation of phosphatidylserine in human senescent erythrocytesJ Cell Mol Med20202423139911400033103382 +WhelihanM FMannK GThe role of the red cell membrane in thrombin generationThromb Res20131310537738223402970 +FrietschTMaurerM HVogelJGassmannMKuschinskyWWaschkeK FReduced cerebral blood flow but elevated cerebral glucose metabolic rate in erythropoietin overexpressing transgenic mice with excessive erythrocytosisJ Cereb Blood Flow Metab2007270346947616804549 +MitchellOFeldmanD MDiakowMSigalS HThe pathophysiology of thrombocytopenia in chronic liver diseaseHepat Med20168395027186144 +LvYLauW YLiYHypersplenism: history and current statusExp Ther Med201612042377238227703501 +WagnerK FKatschinskiD MHasegawaJChronic inborn erythrocytosis leads to cardiac dysfunction and premature death in mice overexpressing erythropoietinBlood2001970253654211154234 +KlattCKrügerIZeySPlatelet-RBC interaction mediated by FasL/FasR induces procoagulant activity important for thrombosisJ Clin Invest2018128093906392529952767 +ShibataJHasegawaJSiemensH JHemostasis and coagulation at a hematocrit level of 0.85: functional consequences of erythrocytosisBlood2003101114416442212576335 +BabuEBasuDPlatelet large cell ratio in the differential diagnosis of abnormal platelet countsIndian J Pathol Microbiol2004470220220516295468 +FormentiFBeerP ACroftQ PCardiopulmonary function in two human disorders of the hypoxia-inducible factor (HIF) pathway: von Hippel-Lindau disease and HIF-2alpha gain-of-function mutationFASEB J201125062001201121389259 +AshrafH MJavedAAshrafSPulmonary embolism at high altitude and hyperhomocysteinemiaJ Coll Physicians Surg Pak20061601717316441997 +SmallmanD PMcBratneyC MOlsenC HSlogicK MHendersonC JQuantification of the 5-year incidence of thromboembolic events in U.S. Air Force Academy cadets in comparison to the U.S. Naval and Military AcademiesMil Med20111760220921321366086 +LiMTangXLiaoZHypoxia and low temperature upregulate transferrin to induce hypercoagulability at high altitudeBlood2022140192063207536040436 +McDonaldT PCliftR ECottrellM BLarge, chronic doses of erythropoietin cause thrombocytopenia in miceBlood199280023523581627797 +JaïsXIoosVJardimCSplenectomy and chronic thromboembolic pulmonary hypertensionThorax200560121031103416085731 +WattersJ MSambasivanC NZinkKSplenectomy leads to a persistent hypercoagulable state after traumaAm J Surg20101990564665120466110 +VisudhiphanSKetsa-ArdKPiankijagumATumliangSBlood coagulation and platelet profiles in persistent post-splenectomy thrombocytosis. The relationship to thromboembolismBiomed Pharmacother198539062642714084660 +McDonaldT PCottrellM BCliftR ECullenW CLinF KHigh doses of recombinant erythropoietin stimulate platelet production in miceExp Hematol198715067197213595770 +ShikamaYIshibashiTKimuraHKawaguchiMUchidaTMaruyamaYTransient effect of erythropoietin on thrombocytopoiesis in vivo in miceExp Hematol199220022162221544390 +JacksonC WEdwardsC CBiphasic thrombopoietic response to severe hypobaric hypoxiaBr J Haematol19773502233244869999 +McDonaldT PPlatelet production in hypoxic and RBC-transfused miceScand J Haematol19782003213220644251 +RolovićZBasaraNBiljanović-PaunovićLStojanovićNSuvajdzićNPavlović-KenteraVMegakaryocytopoiesis in experimentally induced chronic normobaric hypoxiaExp Hematol199018031901942303112 +WolfR FPengJFriesePGilmoreL SBursteinS ADaleG LErythropoietin administration increases production and reactivity of platelets in dogsThromb Haemost19977806150515099423803 +FraserJ KTanA SLinF KBerridgeM VExpression of specific high-affinity binding sites for erythropoietin on rat and mouse megakaryocytesExp Hematol1989170110162535696 +SasakiHHirabayashiYIshibashiTEffects of erythropoietin, IL-3, IL-6 and LIF on a murine megakaryoblastic cell line: growth enhancement and expression of receptor mRNAsLeuk Res19951902951027869746 +McBaneR DIIGonzalezCHodgeD OWysokinskiW EPropensity for young reticulated platelet recruitment into arterial thrombiJ Thromb Thrombolysis2014370214815423645473 +ButtarelloMMezzapelleGFregugliaFPlebaniMReticulated platelets and immature platelet fraction: clinical applications and method limitationsInt J Lab Hematol2020420436337032157813 +GuthikondaSAlviarC LVaduganathanMRole of reticulated platelets and platelet size heterogeneity on platelet activity after dual antiplatelet therapy with aspirin and clopidogrel in patients with stable coronary artery diseaseJ Am Coll Cardiol2008520974374918718422 +GoelM SDiamondS LAdhesion of normal erythrocytes at depressed venous shear rates to activated neutrophils, activated platelets, and fibrin polymerized from plasmaBlood2002100103797380312393714 +HermandPGanePHuetMRed cell ICAM-4 is a novel ligand for platelet-activated alpha IIbbeta 3 integrinJ Biol Chem2003278074892489812477717 +OrbachAZeligOYedgarSBarshteinGBiophysical and biochemical markers of red blood cell fragilityTransfus Med Hemother2017440318318728626369 +HelmsC CMarvelMZhaoWMechanisms of hemolysis-associated platelet activationJ Thromb Haemost201311122148215424119131 +VillagraJShivaSHunterL AMachadoR FGladwinM TKatoG JPlatelet activation in patients with sickle disease, hemolysis-associated pulmonary hypertension, and nitric oxide scavenging by cell-free hemoglobinBlood2007110062166217217536019 +GambaryanSSubramanianHKehrerLErythrocytes do not activate purified and platelet soluble guanylate cyclases even in conditions favourable for NO synthesisCell Commun Signal201614011627515066 +KraussSHaptoglobin metabolism in polycythemia veraBlood196933068658765795764 +VignoliAGambaSvan der MeijdenP EJIncreased platelet thrombus formation under flow conditions in whole blood from polycythaemia vera patientsBlood Transfus2022200214315133819141 +LawrenceJ HThe control of polycythemia by marrow inhibition; a 10-year study of 172 patientsJ Am Med Assoc194914101131818138511 +PearsonT CWetherley-MeinGVascular occlusive episodes and venous haematocrit in primary proliferative polycythaemiaLancet1978281021219122282733 +FazekasJ FNelsonDCerebral blood flow in polycythemia veraAMA Arch Intern Med1956980332833113354026 +ThomasD JMarshallJRussellR WEffect of haematocrit on cerebral blood-flow in manLancet19772804594194372286 +D'EmilioABattistaRDiniETreatment of primary proliferative polycythaemia by venesection and busulphanBr J Haematol198765011211223814522 +TaylorJ EHendersonI SStewartW KBelchJ JErythropoietin and spontaneous platelet aggregation in haemodialysis patientsLancet19913388779136113621682739 +ZwagingaJ JIJsseldijkM Jde GrootP GTreatment of uremic anemia with recombinant erythropoietin also reduces the defects in platelet adhesion and aggregation caused by uremic plasmaThromb Haemost199166066386471665596 +FabrisFCordianoIRandiM LEffect of human recombinant erythropoietin on bleeding time, platelet number and function in children with end-stage renal disease maintained by haemodialysisPediatr Nephrol19915022252282031840 +AkizawaTKinugasaEKitaokaTKoshikawaSEffects of recombinant human erythropoietin and correction of anemia on platelet function in hemodialysis patientsNephron J19915804400406ViganòGBenigniAMendogniDMingardiGMeccaGRemuzziGRecombinant human erythropoietin to correct uremic bleedingAm J Kidney Dis1991180144492063854 +RiosJ AHambletonJVieleMViability of red cells prepared with S-303 pathogen inactivation treatmentTransfusion200646101778178617002635 +KhandelwalSvan RooijenNSaxenaR KReduced expression of CD47 during murine red blood cell (RBC) senescence and its role in RBC clearance from the circulationTransfusion200747091725173217725740 +BosmanG JWerreJ MWillekensF LNovotnýV MErythrocyte ageing in vivo and in vitro: structural aspects and implications for transfusionTransfus Med2008180633534719140816 +CrosbyW HNormal functions of the spleen relative to red blood cells: a reviewBlood1959140439940813638340 +VarinRMirshahiSMirshahiPWhole blood clots are more resistant to lysis than plasma clots–greater efficacy of rivaroxabanThromb Res201313103e100e10923313382 +CarvalhoF AConnellSMiltenberger-MiltenyiGAtomic force microscopy-based molecular recognition of a fibrinogen receptor on human erythrocytesACS Nano20104084609462020731444 +WohnerNSótonyiPMachovichRLytic resistance of fibrin containing red blood cellsArterioscler Thromb Vasc Biol201131102306231321737785 +
\ No newline at end of file diff --git a/tests/data/xml/10-1055-s-0044-1786808.nxml b/tests/data/xml/10-1055-s-0044-1786808.nxml new file mode 100644 index 00000000..9f91f0bb --- /dev/null +++ b/tests/data/xml/10-1055-s-0044-1786808.nxml @@ -0,0 +1,221 @@ + +
pmcThromb HaemostThromb Haemost10.1055/s-00035024Thrombosis and Haemostasis0340-62452567-689XGeorg Thieme Verlag KGRüdigerstraße 14, 70469 Stuttgart, Germany +3872918911518615 +10.1055/s-0044-1786808TH-23-10-0449Coagulation and FibrinolysisProposal and Validation of a Clinically Relevant Modification of the Japanese Association for Acute Medicine Disseminated Intravascular Coagulation Diagnostic Criteria for Sepsishttp://orcid.org/0000-0003-2999-4021YamakawaKazuma1UmemuraYutaka2MochizukiKatsunori13MatsuokaTadashi4http://orcid.org/0000-0001-5220-3342WadaTakeshi5HayakawaMineji5http://orcid.org/0000-0002-0255-4088IbaToshiaki6OhtomoYasuhiro7OkamotoKohji8MayumiToshihiko9IkedaToshiaki10IshikuraHiroyasu11OguraHiroshi12KushimotoShigeki13SaitohDaizoh14GandoSatoshi515Department of Emergency and Critical Care Medicine, Osaka Medical and Pharmaceutical University, Takatsuki, JapanDivision of Trauma and Surgical Critical Care, Osaka General Medical Center, Osaka, JapanDepartment of Emergency and Critical Care Medicine, Azumino Red Cross Hospital, Nagano, JapanDepartment of Emergency and Critical Care Medicine, Keio University, Tokyo, JapanDivision of Acute and Critical Care Medicine, Department of Anesthesiology and Critical Care Medicine, Hokkaido University Faculty of Medicine, Sapporo, JapanDepartment of Emergency and Disaster Medicine, Juntendo University Graduate School of Medicine, Tokyo, JapanNational Disaster Medical Center, Tokyo, JapanDepartment of Surgery, Kitakyushu City Yahata Hospital, Kitakyushu, JapanDepartment of Intensive Care Unit, Japan Community Healthcare Organization Chukyo Hospital, Nagoya, JapanDivision of Critical Care and Emergency Medicine, Tokyo Medical University Hachioji Medical Center, Tokyo, JapanDepartment of Emergency and Critical Care Medicine, Fukuoka University, Fukuoka, JapanDepartment of Traumatology and Acute Critical Medicine, Osaka University Graduate School of Medicine, Suita, JapanDivision of Emergency and Critical Care Medicine, Tohoku University Graduate School of Medicine, Sendai, JapanGraduate School of Emergency Medical System, Kokushikan University, Tama, JapanDepartment of Acute and Critical Care Medicine, Sapporo Higashi Tokushukai Hospital, Sapporo, JapanAddress for correspondence Kazuma Yamakawa, MD, PhD Department of Emergency and Critical Care Medicine, Osaka Medical and Pharmaceutical University2-7 Daigakumachi, Takatsuki, Osaka 569-8686Japankazuma.yamakawa@ompu.ac.jp10520241120241520241241110031012121020230242024 +The Author(s). This is an open access article published by Thieme under the terms of the Creative Commons Attribution-NonDerivative-NonCommercial License, permitting copying and reproduction so long as the original work is given appropriate credit. Contents may not be used for commercial purposes, or adapted, remixed, transformed or built upon. ( +https://creativecommons.org/licenses/by-nc-nd/4.0/ +) +2024The Author(s).https://creativecommons.org/licenses/by-nc-nd/4.0/This is an open-access article distributed under the terms of the Creative Commons Attribution-NonCommercial-NoDerivatives License, which permits unrestricted reproduction and distribution, for non-commercial purposes only; and use and reproduction, but not distribution, of adapted material for non-commercial purposes only, provided the original work is properly cited.

Background + Japanese Association for Acute Medicine (JAAM) disseminated intravascular coagulation (DIC) criteria were launched nearly 20 years ago. Following the revised conceptual definition of sepsis and subsequent omission of systemic inflammatory response syndrome (SIRS) score from the latest sepsis diagnostic criteria, we omitted the SIRS score and proposed a modified version of JAAM DIC criteria, the JAAM-2 DIC criteria. +

Objectives + To validate and compare performance between new JAAM-2 DIC criteria and conventional JAAM DIC criteria for sepsis. +

Methods + We used three datasets containing adult sepsis patients from a multicenter nationwide Japanese cohort study (J-septic DIC, FORECAST, and SPICE-ICU registries). JAAM-2 DIC criteria omitted the SIRS score and set the cutoff value at ≥3 points. Receiver operating characteristic (ROC) analyses were performed between the two DIC criteria to evaluate prognostic value. Associations between in-hospital mortality and anticoagulant therapy according to DIC status were analyzed using propensity score weighting to compare significance of the criteria in determining introduction of anticoagulants against sepsis. +

Results + Final study cohorts of the datasets included 2,154, 1,065, and 608 sepsis patients, respectively. ROC analysis revealed that curves for both JAAM and JAAM-2 DIC criteria as predictors of in-hospital mortality were almost consistent. Survival curves for the anticoagulant and control groups in the propensity score-weighted prediction model diagnosed using the two criteria were also almost entirely consistent. +

Conclusion + JAAM-2 DIC criteria were equivalent to JAAM DIC criteria regarding prognostic and diagnostic values for initiating anticoagulation. The newly proposed JAAM-2 DIC criteria could be potentially alternative criteria for sepsis management. +

Keywordsanticoagulantcoagulopathydiagnostic criteriaDICsepsis
Introduction

+Disseminated intravascular coagulation (DIC) is a disorder frequently seen in critically ill patients, especially those with sepsis, that may lead to severe bleeding and organ dysfunction. +1 +Because mortality is higher in patients with than without DIC, +2 +3 +several organizations have put forward DIC scoring systems with the aim of improving the outcome of patients with DIC. The Japanese Ministry of Health and Welfare (JMHW) proposed a criteria for the diagnosis of DIC in 1976. +4 +Their criteria involved the evaluation of global coagulation tests, underlying diseases, and clinical symptoms. Thereafter, the subcommittee of the International Society on Thrombosis and Haemostasis (ISTH) proposed a scoring system for overt and non-overt DIC in 2001. +5 +However, patients diagnosed according to the JMHW or ISTH DIC criteria are often at high risk of death at the time of diagnosis because of the delay from the onset of coagulopathy. It has been reported that these patients are missing out on the initiation of interventions in the setting of critical illness. +6 +7 +Thus, the Japanese Association for Acute Medicine (JAAM) proposed another DIC scoring system that aimed to make early diagnosis of DIC in acute diseases possible. +8 +9 +Now, both the ISTH overt- and JAAM DIC criteria are widely used in clinical settings. +

+The JAAM DIC criteria have several unique features compared with other DIC criteria, one of which is the inclusion of the systemic inflammatory response syndrome (SIRS) score. Based on the pathophysiological concept, as sepsis-induced DIC is caused by systemic inflammation and subsequent endothelial injury, inclusion of the SIRS score seemed to be reasonable. +10 +The SIRS score was introduced as one of the criteria to diagnose sepsis in 1992. +11 +In recent years, however, the prognostic relevance of the SIRS score has been questioned, +12 +and SIRS criteria have been omitted from the latest definition of sepsis proposed in 2016 +13 +and are no longer used in clinical practice. Other concerns with including the SIRS score in the DIC criteria were the clinical burden on physicians and inter-observer variability in scoring. To determine the SIRS score, several vital signs need to be assessed and the score calculated. Because the SIRS criteria are now no longer used to diagnose sepsis, this burden should be eliminated. +

Nearly 20 years have passed since the launch of the JAAM DIC criteria. According to the aforementioned concerns, we decided to omit the SIRS score and propose a modified version of the JAAM DIC criteria, the “JAAM-2 DIC” criteria. This proposal will maintain the clinical relevance of DIC criteria to make decisions regarding the application of anticoagulant therapy. Using three multicenter sepsis registry datasets, we validated and compared the performance of our newly proposed JAAM-2 DIC criteria with that of the JAAM DIC criteria for sepsis patients. In this study, we evaluated not only the prognostic value of these criteria but also their utility in terms of patient selection for anticoagulant therapy.

Materials and MethodsStudy Population

+This investigation was performed using three different datasets extracted from a multicenter nationwide cohort study conducted in Japan. The first dataset, the J-septic DIC dataset, was compiled in 42 intensive care units (ICUs) between January 2011 and December 2013. +2 +The second dataset, the FORECAST dataset, was compiled in 59 ICUs between January 2016 and March 2017, +14 +and the third dataset, the SPICE dataset, was compiled in 22 ICUs between December 2017 and May 2018. +15 +In the first two datasets, patients were eligible for the registry if they were diagnosed as having severe sepsis or septic shock according to the conventional criteria proposed by the American College of Chest Physicians/Society of Critical Care Medicine (ACCP/SCCM) consensus conference in 1991 +16 +and were 18 years of age or older. In the present analysis, we included as the underlying diseases targeted by the JAAM-2 DIC criteria only those of sepsis patients diagnosed using the Sepsis-3 criteria (i.e., SOFA score of 2 or more points). +13 +

The exclusion criteria included the use of warfarin/acetylsalicylic acid/thrombolytic therapy before study entry; a history of fulminant hepatitis, decompensated liver cirrhosis, or other serious liver disorder; a history of hematologic malignant disease; other conditions increasing the risk of bleeding; treatment with any chemotherapy at study entry; treatment with warfarin before or after study entry; and patients with missing data for any hemostatic markers used for calculating JAAM DIC criteria.

This study followed the principles of the Declaration of Helsinki. The fundamental study protocol was approved by the Institutional Review Board of Osaka General Medical Center (approval numbers: #25–2050, #30-S11–004, and #S201901009). Due to the anonymous and retrospective nature of this study, the board of each hospital waived the need for informed consent.

Data Collection and Definitions

+A case report form was developed for the three datasets used in this study on which the following information was recorded: age, sex, disease severity scores on the day of ICU admission, the source of ICU admission, pre-existing conditions, new organ dysfunction, primary source of infection, and concomitant therapies against sepsis. The severity of illness was evaluated at study entry according to the Acute Physiology and Chronic Health Evaluation (APACHE) II score and SIRS score. The Sequential Organ Failure Assessment (SOFA) score was used to assess organ dysfunction, which was defined as a SOFA subscore ≥2 for each organ. +17 +The primary outcome measure was all-cause in-hospital mortality. +

Newly Proposed Modified JAAM-2 DIC Criteria

+We proposed novel DIC criteria named the JAAM-2 DIC criteria that were modified from the original JAAM DIC criteria. The underlying diseases targeted by the JAAM-2 DIC criteria, which comply with those of the original JAAM DIC criteria, are shown in +Table 1 +. +9 +The SIRS score component from the JAAM DIC criteria was omitted, and the cutoff value for diagnosing DIC was set at 3 points or more ( +Table 2 +). +

Underlying diseases targeted by the JAAM-2 DIC criteria
1. Sepsis/severe infection (any microorganism)
2. Trauma/burn/surgery
3. Vascular abnormalities
Large vascular aneurysms
Giant hemangioma
Vasculitis
4. Severe toxic or immunological reactions
Snakebite
Recreational drugs
Transfusion reactions
Transplant rejection
5. Malignancy (except bone marrow suppression)
6. Obstetric calamities
7. Conditions that may be associated with systemic inflammatory response syndrome
Organ destruction (e.g., severe pancreatitis)
Severe hepatic failure
Ischemia/hypoxia/shock
Heat stroke/malignant syndrome
Fat embolism
Rhabdomyolysis
Others
8. Others

Abbreviations: DIC, disseminated intravascular coagulation; JAAM, Japanese Association for Acute Medicine.

ISTH overt-DIC, original JAAM DIC, and modified JAAM-2 DIC scoring systems
PointsISTH overt-DICJAAM DICJAAM-2 DIC
Platelet counts3 +<80 × 10 +9 +/L + +<80 × 10 +9 +/L +or >50% decrease/24 hours
or >50% decrease/24 hours
2 +<50 × 10 +9 +/L +
1 +≥50, <100 × 10 +9 +/L + +≥80, <120 × 10 +9 +/L +or 30–50% decrease/24 hours +≥80, <120 × 10 +9 +/L +or 30–50% decrease/24 hours
FDP or D-dimer3Strong increase≥25 μg/mL≥25 μg/mL
2Moderate increase
1≥10, <25 μg/mL≥10, <25 μg/mL
Prothrombin time2≥6 seconds
1≥3, <6 seconds≥1.2≥1.2
Fibrinogen1<100 g/mL
SIRS score1≥3
Required points for criteria-positive5 points4 points3 points

Abbreviations: DIC, disseminated intravascular coagulation; FDP, fibrin degradation products; ISTH, International Society on Thrombosis and Haemostasis; JAAM, Japanese Association for Acute Medicine; SIRS, systemic inflammatory response syndrome; SOFA, Sequential Organ Failure Assessment.

Prognostic Value of the Criteria

To identify the differences between the original JAAM and modified JAAM-2 DIC criteria that distinguished nonsurviving from surviving patients with sepsis, receiver operating characteristic (ROC) analyses were performed. The target condition was set as in-hospital mortality.

Validity of the Criteria in Initiating Anticoagulation

We evaluated associations between in-hospital mortality and anticoagulant therapy according to the status of DIC or not to clarify the significance of the two DIC criteria in determining when to introduce anticoagulant therapy against sepsis. Participants were categorized into two groups: the anticoagulant group, comprising patients who received any anticoagulant therapy such as antithrombin, recombinant human thrombomodulin, heparin/heparinoid, and serine protease inhibitors, and the control group, comprising patients who received no anticoagulant therapy. Due to the retrospective nature of this analysis, there were baseline imbalances between the two groups; therefore, an adjusted mortality analysis was performed using propensity scoring as described below. The SPICE dataset was not used for this analysis due to the lack of data on anticoagulant therapy.

Statistical Analysis

+Descriptive statistics were calculated as medians (interquartile range) or proportions, as appropriate. Univariate differences between the groups were assessed using the Mann–Whitney U test, Kruskal–Wallis test, chi-squared test, or Fisher's exact test. A +p +-value of <0.05 indicated statistical significance. All statistical analyses were performed using STATA software version 15.0 (Stata Corp, College Station, Texas, United States). +

+The overall effectiveness of anticoagulant therapy on mortality was assessed using a Cox regression model with inverse probability-of-treatment weighting using the propensity scores. The propensity score for receiving anticoagulant therapy was calculated using multivariate logistic regression and included 25 independent variables for the J-septic DIC cohort and 30 variables for the FORECAST cohort, including age, sex, disease severity, source of ICU admission, past medical history of severe conditions, new organ dysfunctions, ICU characteristics, primary source of infection, causal microorganisms, anticoagulant therapy not for DIC, and other therapeutic interventions ( +Supplementary Table S1 +[available in the online version]). Hazard ratio and estimated 95% confidence interval were calculated along with estimated survival curves. +

ResultsPatient Characteristics

+The patient flow diagram is shown in +Fig. 1 +. During the study period, 3,195 consecutive patients fulfilling the inclusion criteria were registered in the J-Septic DIC registry database. After excluding 1,040 patients who met at least one exclusion criterion, we analyzed 2,154 patients in the final study cohort. The anticoagulant group comprised 1,089 patients, and the control group comprised 1,065 patients. Similarly, we enrolled 817 patients from the FORECAST registry and 608 patients from the SPICE-ICU registry in the final study cohort. +

+Patient flow for the three datasets used in this study. DIC, disseminated intravascular coagulation; JAAM, Japanese Association for Acute Medicine; ROC, receiver operating characteristic. +

+Baseline characteristics of the study population are shown in +Table 3 +, +Supplementary Table S2 +and +S3 +(available in the online version). Patient characteristics such as age and sex were similar between the three datasets. After applying an inverse probability of treatment weighting with propensity score, patient characteristics, such as illness severity, as indicated by SOFA, APACHE II, and DIC scores and the rate of new organ dysfunction, were well matched between the anticoagulant and control groups. +

Baseline characteristics of included sepsis patients in the three datasets
CharacteristicsJ-septic DIC dataset +( +n + = 2,154) +FORECAST dataset +( +n + = 817) +SPICE dataset +( +n + = 608) +
Age in years72 (62–80)72 (63–82)72 (60–82)
Male sex1,270 (59%)496 (61%)350 (58%)
Illness severity
 SIRS score3 (2–4)3 (2–4)3 (2–3)
 SOFA score9 (7–12)9 (6–11)7 (4.5–10)
 APACHE II score22 (17–28)22 (17–29)20 (14–27)
 ISTH overt-DIC score4 (2–5)3 (2–4)2 (0–3)
 JAAM DIC score4 (3–6)4 (2–5)3 (2–5)
Source of ICU admission
 Emergency department1,018 (47%)465 (57%)350 (58%)
 Ward515 (24%)352 (43%)258 (42%)
 Other hospital621 (29%)
Pre-existing condition
 Liver insufficiency16 (1%)26 (3%)26 (4%)
 Chronic heart failure116 (5%)104 (13%)57 (9%)
 Chronic respiratory disorder85 (4%)58 (7%)52 (9%)
 Chronic hemodialysis167 (8%)52 (6%)52 (9%)
 Immunocompromised228 (11%)96 (12%)38 (6%)
New organ dysfunction (SOFA subscores ≥ 2)
 Respiratory1,489 (69%)575 (70%)370 (61%)
 Cardiovascular1,416 (66%)461 (56%)254 (42%)
 Renal1,071 (50%)413 (51%)268 (44%)
 Hepatic383 (18%)127 (16%)84 (14%)
 Coagulation816 (38%)233 (29%)127 (21%)
Primary source of infection
 Abdomen696 (32%)212 (26%)120 (20%)
 Lung556 (26%)259 (32%)203 (33%)
 Urinary tract385 (18%)159 (19%)102 (17%)
 Bone/soft tissue250 (12%)111 (14%)90 (15%)
 Central nervous system50 (2%)15 (2%)15 (2%)
 Other/unknown217 (10%)61 (7%)78 (13%)
Other therapeutic interventions
 Immunoglobulin685 (32%)158 (19%)
 Low-dose steroids539 (25%)241 (30%)
 Renal replacement therapy599 (28%)231 (28%)
 PMX-DHP465 (22%)78 (10%)
 Surgical intervention906 (42%)145 (18%)

Abbreviations: APACHE, Acute Physiology and Chronic Health Evaluation; DIC, disseminated intravascular coagulation; ICU, intensive care unit; ISTH, International Society on Thrombosis and Hemostasis; JAAM, Japanese Association for Acute Medicine; PMX-DHP, polymyxin B direct hemoperfusion; SIRS, systemic inflammatory response syndrome; SOFA, Sequential Organ Failure Assessment.

Note: Data are expressed as group medians (interquartile range) or number (percent).

Prognostic Value of the Criteria

+ROC curves for the original JAAM and modified JAAM-2 DIC criteria as predictors of in-hospital mortality are shown in +Fig. 2 +. Consistent with the three different datasets, the curves for both the JAAM and JAAM-2 DIC criteria were almost entirely consistent with each other. These data suggested that in predicting short-term mortality, use of the JAAM DIC and JAAM-2 DIC criteria was considered to be equivalent. +

+Receiver operating characteristic curves for original JAAM and modified JAAM-2 DIC criteria as predictors of in-hospital mortality. The solid line represents curves for JAAM-2, and the dotted line represents curves for original JAAM. ( +A +) J-Septic DIC dataset, ( +B +) FORECAST dataset, ( +C +) SPICE dataset. DIC, disseminated intravascular coagulation; JAAM, Japanese Association for Acute Medicine. +

Validity of the Criteria in Initiating Anticoagulation

+Survival curves for the anticoagulant and control groups in the propensity score-weighted prediction model according to DIC status diagnosed using the two criteria are shown in +Fig. 3 +(J-septic DIC dataset) and +Fig. 4 +(FORECAST dataset). Consistent with both criteria and both datasets, favorable effects of anticoagulant therapy were observed only in the patient subsets with DIC, whereas differences in mortality between the anticoagulant and control groups in the subsets without DIC were not significant. These findings were consistent between the two datasets and suggested that to determine the optimal target of anticoagulant therapy for sepsis, use of the JAAM DIC and JAAM-2 DIC criteria for diagnosing DIC was considered to be equivalent. +

+Adjusted estimated survival curves according to the original JAAM and modified JAAM-2 DIC status using the J-septic DIC dataset. ( +A +) JAAM DIC score ≤ 3, ( +B +) JAAM DIC score ≥ 4, ( +C +) JAAM-2 DIC score ≤ 2, and ( +D +) JAAM-2 DIC score ≥ 3. The solid line represents patients in the anticoagulant group, and the dotted line represents patients in the control group. DIC, disseminated intravascular coagulation; JAAM, Japanese Association for Acute Medicine. +

+Adjusted estimated survival curves according to the original JAAM and modified JAAM-2 DIC status using the FORECAST dataset. ( +A +) JAAM DIC score ≤ 3, ( +B +) JAAM DIC score ≥ 4, ( +C +) JAAM-2 DIC score ≤ 2, and ( +D +) JAAM-2 DIC score ≥ 3. The solid line represents patients in the anticoagulant group, and the dotted line represents patients in the control group. DIC, disseminated intravascular coagulation; JAAM, Japanese Association for Acute Medicine. +

DiscussionPrincipal Findings

On the basis of the study results, we proposed modified JAAM DIC criteria that omitted the SIRS criteria but included platelet count, fibrin degradation products (or D-dimer), and prothrombin time, and the cutoff value for diagnosing DIC was set at 3 points or more. We named these new DIC criteria the JAAM-2 DIC criteria.

Using three different datasets constructed in Japan, we verified the prognostic value and diagnostic value of the JAAM-2 compared with the original JAAM DIC criteria for initiating anticoagulation. Consequently, ROC analysis revealed that curves for both the original JAAM and JAAM-2 DIC criteria were almost consistent with each other. Survival analysis revealed that the curves of the anticoagulant and control groups for both the original JAAM and JAAM-2 DIC criteria were also almost entirely consistent with each other. Thus, the newly proposed JAAM-2 DIC criteria could potentially be used as an alternative to the original JAAM DIC criteria in clinical practice.

Clinical Application of the Findings

+Several different clinical practice guidelines for DIC have been developed by societies in Britain, +18 +Japan, +19 +and Italy, +20 +along with the harmonized guidance by the ISTH. +21 +Some distinct discrepancies in the appraisal of diagnostic criteria for DIC exist between these guidelines. The Japanese and Italian clinical practice guidelines recommend the use of either the JMHW, ISTH, or the JAAM criteria, whereas the British guideline recommends the use of the ISTH criteria. The guidelines do not offer consistent recommendations on diagnosing DIC, and thus, there is currently no definitive agreement as to which of these criteria is superior to the other. The present study does not aim to discuss the diagnostic value of the several DIC criteria because we have no gold standard for DIC diagnosis. No meta-analysis has been conducted so far to compare the prognostic performance among the several available DIC criteria. Nonetheless, we showed that the clinical usefulness of the proposed JAAM-2 DIC criteria was nearly equivalent to that of the traditional JAAM DIC criteria. While a discussion on superiority would be worthless, we showed that the performance of the JAAM-2 scoring system is almost identical to that of the JAAM criteria in terms of mortality prediction and determining treatment timing. +

+Modification of the JAAM DIC criteria has been discussed in several studies so far. Umemura et al +22 +proposed unified DIC criteria involving several hemostatic endothelial molecular markers based on the JAAM DIC criteria and showed that the addition of protein C activity and plasminogen activator inhibitor 1 to the original JAAM DIC criteria resulted in greater prognostic value than the original criteria. Iba et al +23 +proposed replacing the SIRS score with antithrombin activity in the JAAM DIC criteria. They validated the proposed criteria using a dataset of 819 sepsis patients and found that using AT-based DIC criteria makes it possible to discriminate a more coagulation disorder-specific population. All of these previous attempts were in addition to or replacements of the other variables instead of the SIRS score, and thus, the burden on clinicians still remained. In the present study, we simply omitted the SIRS score, so this modification of the JAAM DIC criteria should allow a totally clinical-friendly approach. +

+We intended to evaluate the severity of sepsis by adding “SIRS score ≥ 3”; however, the present study showed the prognosis to be not different without this item included. Therefore, we think it is reasonable to omit the SIRS item from the JAAM criteria. In the present analysis, as the JAAM-2 DIC criteria have been shown to increase clinical simplicity without diminishing any diagnostic performance, the educational activities led by our academic society will aid in the replacement of original JAAM with JAAM-2 DIC criteria in Japan. Furthermore, it will be necessary to verify coherence with the sepsis-induced coagulopathy criteria +24 +proposed by the ISTH in the future. +

Strengths and Limitations

This comprehensive analysis was undertaken using different large-scale registry datasets that include patients with all categories of sepsis along with patients with and without DIC. These datasets also include substantial variables indicative of hemostatic abnormality, which enabled us to evaluate the nature of the coagulopathy or DIC in depth. Additionally, almost half of the included population received anticoagulant therapy against sepsis, which is a unique treatment option applied only in Japan. Thus, the treatment effect of anticoagulation can be estimated based on the sub-groups of DIC status.

+We acknowledge several limitations of this study. First, due to its retrospective nature, the anticoagulant intervention was not standardized. The indications for the intervention being examined were dependent on the treatment principles of each hospital or each attending physician. Thus, we used propensity scoring to handle the nonrandomization. Second, this study used sub-group analysis, which might have accidentally generated both false-positive and false-negative results. Finally, this article focused only on patients with sepsis among various underlying diseases of DIC. The original JAAM DIC criteria have been reported to be useful in a variety of underlying diseases. +25 +26 +27 +28 +Further validation studies of these novel JAAM-2 DIC criteria targeting other underlying diseases such as trauma, postcardiac arrest, and pancreatitis should be conducted in the future. +

Conclusion

We validated the JAAM-2 DIC criteria and showed that they may be valuable in detecting appropriate candidates for anticoagulant therapy to treat sepsis. The JAAM-2 DIC criteria may be potentially useful as an alternative tool to the conventional JAAM DIC criteria for coagulopathy in sepsis in terms of their validity and simplicity.

+What is known about this topic? +

The Japanese Association for Acute Medicine (JAAM) disseminated intravascular coagulation (DIC) criteria were launched 20 years ago.

Based on the pathophysiological concept, as sepsis-induced DIC is caused by systemic inflammation, the SIRS score was included as one of the items to diagnose DIC in JAAM criteria.

SIRS score has been omitted from the latest definition of sepsis proposed in 2016.

+What does this paper add? +

We proposed novel DIC criteria named “JAAM-2 DIC” criteria in which the SIRS score component was omitted and the cutoff value for diagnosing DIC was set at ≥3 points.

Using three different Japanese datasets, we showed equivalence of the JAAM-2 with original JAAM DIC criteria for prognostic and diagnostic values to initiate anticoagulation.

The newly proposed JAAM-2 DIC criteria could potentially be used as an alternative to the conventional JAAM DIC criteria for sepsis management.

Acknowledgment

We are grateful to the researchers of the J-septic DIC, FORECAST, and SPICE research groups for their enormous support in this research.

Conflict of Interest K.Y. reported receiving grants from Asahi Kasei Pharma and Japan Blood Products Organization. T.I. participated on advisory boards of Japan Blood Products Organization, Asahi Kasei Pharmaceuticals, and Toray Medical. None of the other authors have any potential conflicts of interest to disclose.

Ethical Approval statement

The study protocol was approved by the Institutional Review Board of the Osaka General Medical Center (approval numbers: #25–2050, #30-S11–004, and #S201901009). Informed consent was waived due to the nature of the registries.

Authors' Contribution

K.Y. and T.I. conceived and designed this study. K.Y. contributed to acquisition, analysis, and interpretation of the data and was responsible for drafting, editing, and submission of the manuscript. Y.U. contributed to acquisition, analysis, interpretation of the data, and drafting of the manuscript. K.M., T.M., T.W., and M.H. played a significant role in the analysis of the data and helped to draft the manuscript. T.I., Y.O., K.O., T.M., T.I., H.I., H.O., S.K., D.S., and S.G. had a significant influence on the interpretation of the data and critical appraisal of the manuscript. All of the authors contributed to the acquisition of data and reviewed, discussed, and approved the final manuscript.

Supplementary Material

Supplementary Material

Supplementary Material

ReferencesLeviMTen CateHDisseminated intravascular coagulationN Engl J Med19993410858659210451465 +HayakawaMSaitoSUchinoSCharacteristics, treatments, and outcomes of severe sepsis of 3195 ICU-treated adult patients throughout Japan during 2011-2013J Intensive Care201644427413534 +Japanese Association for Acute Medicine (JAAM) Focused Outcomes Research in Emergency Care in Acute Respiratory Distress Syndrome, Sepsis and Trauma (FORECAST) Study Group GandoSShiraishiAYamakawaKRole of disseminated intravascular coagulation in severe sepsisThromb Res201917818218831054468 +KobayashiNMaekawaTTakadaMTanakaHGonmoriHCriteria for diagnosis of DIC based on the analysis of clinical and laboratory findings in 345 DIC patients collected by the Research Committee on DIC in JapanBibl Haematol19834949265275Scientific Subcommittee on Disseminated Intravascular Coagulation (DIC) of the International Society on Thrombosis and Haemostasis (ISTH) TaylorF BJrTohC HHootsW KWadaHLeviMTowards definition, clinical and laboratory criteria, and a scoring system for disseminated intravascular coagulationThromb Haemost200186051327133011816725 +Japanese Surviving Sepsis Campaign Guideline Working Group for disseminated intravascular coagulation IbaTUmemuraYWatanabeEWadaTHayashidaKKushimotoSDiagnosis of sepsis-induced disseminated intravascular coagulation and coagulopathyAcute Med Surg201960322323231304023 +YamakawaKYoshimuraJItoTHayakawaMHamasakiTFujimiSExternal validation of the two newly proposed criteria for assessing coagulopathy in sepsisThromb Haemost20191190220321230593085 +Japanese Association for Acute Medicine Disseminated Intravascular Coagulation (JAAM DIC) Study Group GandoSIbaTEguchiYA multicenter, prospective validation of disseminated intravascular coagulation diagnostic criteria for critically ill patients: comparing current criteriaCrit Care Med2006340362563116521260 +Japanese Association for Acute Medicine Disseminated Intravascular Coagulation (JAAM DIC) Study Group GandoSSaitohDOguraHNatural history of disseminated intravascular coagulation diagnosed based on the newly established diagnostic criteria for critically ill patients: results of a multicenter, prospective surveyCrit Care Med2008360114515018090367 +Japanese Association for Acute Medicine Disseminated Intravascular Coagulation Study Group OguraHGandoSIbaTSIRS-associated coagulopathy and organ dysfunction in critically ill patients with thrombocytopeniaShock2007280441141717577138 +American College of Chest Physicians/Society of Critical Care Medicine Consensus Conference: definitions for sepsis and organ failure and guidelines for the use of innovative therapies in sepsisCrit Care Med199220068648741597042 +KaukonenK MBaileyMPilcherDCooperD JBellomoRSystemic inflammatory response syndrome criteria in defining severe sepsisN Engl J Med2015372171629163825776936 +SingerMDeutschmanC SSeymourC WThe Third International Consensus Definitions for Sepsis and Septic Shock (Sepsis-3)JAMA20163150880181026903338 +JAAM FORECAST group AbeTOguraHShiraishiACharacteristics, management, and in-hospital mortality among patients with severe sepsis in intensive care units in Japan: the FORECAST studyCrit Care2018220132230466493 +JAAM SPICE Study Group AbeTYamakawaKOguraHEpidemiology of sepsis and septic shock in intensive care units between sepsis-2 and sepsis-3 populations: sepsis prognostication in intensive care unit and emergency room (SPICE-ICU)J Intensive Care202084432612839 +The ACCP/SCCM Consensus Conference Committee. American College of Chest Physicians/Society of Critical Care Medicine BoneR CBalkR ACerraF BDefinitions for sepsis and organ failure and guidelines for the use of innovative therapies in sepsisChest199210106164416551303622 +VincentJ LMorenoRTakalaJThe SOFA (Sepsis-related Organ Failure Assessment) score to describe organ dysfunction/failure. On behalf of the Working Group on Sepsis-Related Problems of the European Society of Intensive Care MedicineIntensive Care Med199622077077108844239 +British Committee for Standards in Haematology LeviMTohC HThachilJWatsonH GGuidelines for the diagnosis and management of disseminated intravascular coagulationBr J Haematol200914501243319222477 +Japanese Society of Thrombosis Hemostasis/DIC subcommittee WadaHAsakuraHOkamotoKExpert consensus for the treatment of disseminated intravascular coagulation in JapanThromb Res20101250161119782389 +Italian Society for Thrombosis and Haemostasis Di NisioMBaudoFCosmiBDiagnosis and treatment of disseminated intravascular coagulation: guidelines of the Italian Society for Haemostasis and Thrombosis (SISET)Thromb Res201212905e177e18421930293 +The Scientific Standardization Committee on DIC of the International Society on Thrombosis Haemostasis WadaHThachilJDi NisioMGuidance for diagnosis and treatment of DIC from harmonization of the recommendations from three guidelinesJ Thromb Haemost20131104761767UmemuraYYamakawaKKiguchiTDesign and evaluation of new unified criteria for disseminated intravascular coagulation based on the Japanese Association for Acute Medicine CriteriaClin Appl Thromb Hemost2016220215316026072118 +IbaTDi NisioMThachilJRevision of the Japanese Association for Acute Medicine (JAAM) disseminated intravascular coagulation (DIC) diagnostic criteria using antithrombin activityCrit Care20162028727629997 +IbaTNisioM DLevyJ HKitamuraNThachilJNew criteria for sepsis-induced coagulopathy (SIC) following the revised sepsis definition: a retrospective analysis of a nationwide surveyBMJ Open2017709e017046Japanese Association for Acute Medicine Disseminated Intravascular Coagulation (JAAM DIC) Study Group KushimotoSGandoSSaitohDClinical course and outcome of disseminated intravascular coagulation diagnosed by Japanese Association for Acute Medicine criteria. Comparison between sepsis and traumaThromb Haemost2008100061099110519132236 +SawamuraAHayakawaMGandoSApplication of the Japanese Association for Acute Medicine disseminated intravascular coagulation diagnostic criteria for patients at an early phase of traumaThromb Res20091240670671019651430 +IwaiKUchinoSEndoASaitoKKaseYTakinamiMProspective external validation of the new scoring system for disseminated intravascular coagulation by Japanese Association for Acute Medicine (JAAM)Thromb Res20101260321722120591471 +TakemitsuTWadaHHatadaTProspective evaluation of three different diagnostic criteria for disseminated intravascular coagulationThromb Haemost201110501404420941463 +
\ No newline at end of file diff --git a/tests/data/xml/10-1055-s-0044-1786809.nxml b/tests/data/xml/10-1055-s-0044-1786809.nxml new file mode 100644 index 00000000..52a50403 --- /dev/null +++ b/tests/data/xml/10-1055-s-0044-1786809.nxml @@ -0,0 +1,296 @@ + +
pmcThromb HaemostThromb Haemost10.1055/s-00035024Thrombosis and Haemostasis0340-62452567-689XGeorg Thieme Verlag KGRüdigerstraße 14, 70469 Stuttgart, Germany +3878876611518616 +10.1055/s-0044-1786809TH-23-12-0539Atherosclerosis and Ischaemic DiseaseExploring Causal Relationships between Circulating Inflammatory Proteins and Thromboangiitis Obliterans: A Mendelian Randomization Studyhttp://orcid.org/0000-0003-3693-6153ZhangBihui1*HeRui2*YaoZiping1*LiPengyu1NiuGuochen1YanZiguang1ZouYinghua1TongXiaoqiang1YangMin1Department of Interventional Radiology and Vascular Surgery, Peking University First Hospital, Beijing, ChinaDepartment of Plastic Surgery and Burn, Peking University First Hospital, Beijing, ChinaAddress for correspondence Min Yang, MD Department of Interventional Radiology and Vascular Surgery, Peking University First HospitalNo. 8, Xishiku Street, Xicheng-Qu, Beijing, 100000Chinadryangmin@gmail.comBihui Zhang, MD Department of Interventional Radiology and Vascular Surgery, Peking University First HospitalNo. 8, Xishiku Street, Xicheng-Qu, Beijing, 100000Chinadr_zhangbihui@163.com24520241120241520241241110751083071220230542024 +The Author(s). This is an open access article published by Thieme under the terms of the Creative Commons Attribution-NonDerivative-NonCommercial License, permitting copying and reproduction so long as the original work is given appropriate credit. Contents may not be used for commercial purposes, or adapted, remixed, transformed or built upon. ( +https://creativecommons.org/licenses/by-nc-nd/4.0/ +) +2024The Author(s).https://creativecommons.org/licenses/by-nc-nd/4.0/This is an open-access article distributed under the terms of the Creative Commons Attribution-NonCommercial-NoDerivatives License, which permits unrestricted reproduction and distribution, for non-commercial purposes only; and use and reproduction, but not distribution, of adapted material for non-commercial purposes only, provided the original work is properly cited.

Background + Thromboangiitis obliterans (TAO) is a vascular condition characterized by poor prognosis and an unclear etiology. This study employs Mendelian randomization (MR) to investigate the causal impact of circulating inflammatory proteins on TAO. +

Methods + In this MR analysis, summary statistics from a genome-wide association study meta-analysis of 91 inflammation-related proteins were integrated with independently sourced TAO data from the FinnGen consortium's R10 release. Methods such as inverse variance weighting, MR–Egger regression, weighted median approaches, MR-PRESSO, and multivariable MR (MVMR) analysis were utilized. +

Results + The analysis indicated an association between higher levels of C–C motif chemokine 4 and a reduced risk of TAO, with an odds ratio (OR) of 0.44 (95% confidence interval [CI]: 0.29–0.67; +p + = 1.4 × 10 +−4 +; adjusted +p + = 0.013). Similarly, glial cell line-derived neurotrophic factor exhibited a suggestively protective effect against TAO (OR: 0.43, 95% CI: 0.22–0.81; +p + = 0.010; adjusted +p + = 0.218). Conversely, higher levels of C–C motif chemokine 23 were suggestively linked to an increased risk of TAO (OR: 1.88, 95% CI: 1.21–2.93; +p + = 0.005; adjusted +p + = 0.218). The sensitivity analysis and MVMR revealed no evidence of heterogeneity or pleiotropy. +

Conclusion + This study identifies C–C motif chemokine 4 and glial cell line-derived neurotrophic factor as potential protective biomarkers for TAO, whereas C–C motif chemokine 23 emerges as a suggestive risk marker. These findings elucidate potential causal relationships and highlight the significance of these proteins in the pathogenesis and prospective therapeutic strategies for TAO. +

Keywordsthromboangiitis obliteransMendelian randomizationinflammatory proteinsbiomarkerstherapeutic targetFunding +This research was funded by National High Level Hospital Clinical Research Funding (Interdepartmental Research Project of Peking University First Hospital) 2023IR32, the National Natural Science Foundation of China (82200537), and the Interdisciplinary Clinical Research Project of Peking University First Hospital, grant No. 2018CR33. The APC was funded by Peking University First Hospital. +
Introduction

+Thromboangiitis obliterans (TAO), commonly referred to as Buerger's disease, is a distinct nonatherosclerotic, segmental inflammatory disorder that predominantly affects small- and medium-sized arteries and veins in both the upper and lower extremities. +1 +TAO, with an annual incidence of 12.6 per 100,000 in the United States, is observed worldwide but is more prevalent in the Middle East and Far East. +1 +The disease typically presents in patients <45 years of age. Despite over a century of recognition, advancements in comprehending its etiology, pathophysiology, and optimal treatment strategies have been limited. +2 +3 +Vascular event-free survival and amputation-free survival rates at 5, 10, and 15 years are reported at 41 and 85%, 23 and 74%, and 19 and 66%, respectively. +4 +

+An immune-mediated response is implicated in TAO pathogenesis. +5 +Recent studies have identified a balanced presence of CD4+ and CD8+ T cells near the internal lamina. Additionally, macrophages and S100+ dendritic cells are present in thrombi and intimal layers. +5 +6 +Elevated levels of diverse cytokines in TAO patients highlight the critical importance of inflammatory and autoimmune mechanisms. +2 +7 +Nonetheless, the clinical significance of these cytokines is yet to be fully understood, due to the scarcity of comprehensive experimental and clinical studies. Investigating circulating inflammatory proteins could shed light on the biological underpinnings of TAO, offering new diagnostic and therapeutic avenues. +

+Mendelian randomization (MR) is an approach that leverages genetic variants associated with specific exposures to infer causal relationships between risk factors and disease outcomes. +8 +This method, which relies on the random distribution of genetic variants during meiosis, helps minimize confounding factors and biases inherent in environmental or behavioral influences. +9 +It is particularly useful in addressing limitations of conventional observational studies and randomized controlled trials, especially for rare diseases like TAO. +10 +For a robust MR analysis, three critical assumptions must be met: the genetic variants should be strongly associated with the risk factor, not linked to confounding variables, and affect the outcome solely through the risk factor, excluding any direct causal pathways. +10 +In the present study, a MR was employed to evaluate the impact of genetically proxied inflammatory protein levels on the risk of developing TAO. +

Materials and MethodsStudy Design

+The current research represents a MR analysis conducted in accordance with STROBE-MR guidelines. +11 +Genetic variants associated with circulating inflammatory proteins were identified from a comprehensive genome-wide meta-analysis, which analyzed 91 plasma proteins in a sample of 14,824 individuals of European descent, spanning 11 distinct cohorts. +12 +This study utilized the Olink Target-96 Inflammation immunoassay panel to focus on 92 inflammation-related proteins. However, due to assay issues, brain-derived neurotrophic factor was subsequently removed from the panel by Olink, resulting in the inclusion of 91 proteins in the analysis. Protein quantitative trait locus (pQTL) mapping was employed to determine genetic impacts on these inflammation-related proteins. The data on these 91 plasma inflammatory proteins, including the pQTL findings, are accessible in the EBI GWAS Catalog (accession numbers GCST90274758 to GCST90274848). +

+Flowchart of the study is shown in +Fig. 1 +. Summary statistics for TAO in the genome-wide association study (GWAS) were derived from the FinnGen consortium R10 release (finngen_R10_I9_THROMBANG). Launched in 2017, the FinnGen study is a comprehensive nationwide effort combining genetic information from Finnish biobanks with digital health records from national registries. +13 +The GWAS included a substantial cohort of 412,181 Finnish participants, analyzing 21,311,942 variants, with TAO cases (114) and controls (381,977) identified according to International Classification of Diseases (ICD)-8 (44310), ICD-9 (4431A), and ICD-10 (I73.1) classifications. +

+The flowchart of the study. The whole workflow of MR analysis. GWAS, genome-wide association study; TAO, thromboangiitis obliterans; SNP, single nucleotide polymorphism; MR, Mendelian randomization. +

All included studies had received approval from their respective institutional review boards and ethical committees.

Instrumental Variable Selection

+We employed comprehensive GWAS summary statistics for 91 inflammation-related proteins to select genetic instruments. The criteria for eligibility included: (1) single nucleotide polymorphisms (SNPs) must exhibit a genome-wide significant association with each protein ( +p + < 5.0 × 10 +−6 +); (2) SNPs should be independently associated with the exposure, meaning they must not be in linkage disequilibrium (defined as +r +2 + < 0.01, distance > 10,000 kb) with other SNPs for the same exposure; (3) the chosen genetic instruments must account for at least 0.1% of the exposure variance, ensuring sufficient strength for the genetic instrumental variables (IVs) to assess a causal effect. For each exposure, we harmonized IVs to ensure compatibility and consistency between different data sources and variables. Since smoking is a well-accepted risk factor for TAO, SNPs that were associated with smoking or thrombo-associated events were deleted for MR due to the PhenoScanner V2 database (http://www.phenoscanner.medschl.cam.ac.uk/), details are shown in +Supplementary Table S1 +(available in the online version). +14 +

Statistical Analysis

+The random-effects inverse variance weighted (IVW) method was used as the primary MR method to estimate the causal relationships between circulating inflammatory proteins and TAO. The IVW method offers a consistent estimate of the causal effect of exposure on the outcome, under the assumption that each genetic variant meets the IV criteria. +15 +16 +For sensitivity analysis, multiple methods, including MR–Egger regression, MR pleiotropy Residual Sum and Outlier (MR-PRESSO), and weighted median approaches, were employed in this study to examine the robustness of results. An adaptation of MR–Egger regression is capable of identifying certain violations of standard IV assumptions, providing an adjusted estimate that is unaffected by these issues. This method also measures the extent of directional pleiotropy and serves as a robustness check. +17 +The weighted median is consistent even when up to 50% of the information comes from invalid IVs. +18 +For SNPs numbering more than three, MRPRESSO was employed to identify and adjust for horizontal pleiotropy. This method can pinpoint horizontal pleiotropic outliers among SNPs and deliver results matching those from IVW when outliers are absent. +19 +Leave-one-out analysis was conducted to determine if significant findings were driven by a single SNP. To mitigate potential pleiotropic effects attributable to smoking, a multivariable MR (MVMR) analysis incorporating adjustments for genetically predicted smoking behaviors was conducted. The GWAS data pertaining to smoking were sourced from the EBI GWAS Catalog (GCST90029014), ensuring no sample overlap with the FinnGen database. +20 +

+Heterogeneity among individual SNP-based estimates was assessed using Cochran's Q value. In instances with only one SNP for the exposure, the Wald ratio method was applied, dividing the SNP–outcome association estimate by the SNP–exposure association estimate to determine the causal link. The F-statistic was estimated to evaluate the strength of each instrument, with an F-statistic greater than 10 indicating a sufficiently strong instrument. +21 +False discovery rate (FDR) correction was conducted by the Benjamini–Hochberg method, with a FDR of adjusted +p + < 0.1. A suggestive association was considered when +p + < 0.05 but adjusted +p +≥ 0.1. All analyses were two-sided and performed using the TwoSampleMR (version 0.5.8), MendelianRandomization (version 0.9.0), and MRPRESSO (version 1.0) packages in R software version 4.3.2. +

ResultsSelection of Instrumental Variables

+The association between 91 circulating inflammatory proteins and TAO through the IVW method is detailed in +Supplementary Table S2 +(available in the online version). After an extensive quality control review, 173 SNPs associated with six circulating inflammation-related proteins were identified as IVs for TAO. Notably, C–C motif chemokine 23 (CCL23) levels were linked to 30 SNPs, C–C motif chemokine 25 to 37 SNPs, C–C motif chemokine 28 to 21 SNPs, C–C motif chemokine 4 (CCL4) to 27 SNPs, glial cell line-derived neurotrophic factor (GDNF) to 22 SNPs, and stem cell factor to 36 SNPs. +

The Causal Role of Inflammation-Related Proteins in TAO

+Elevated genetically predicted CCL4 levels were linked to a decreased TAO risk, as shown in +Fig. 2 +. Specifically, each unit increase in the genetically predicted level of CCL4 was associated with an odds ratio (OR) of 0.44 (95% confidence interval [CI]: 0.29–0.67; +p + = 1.4 × 10 +−4 +; adjusted +p + = 0.013) for TAO. Similarly, levels of C–C motif chemokine 28 (OR: 0.33; 95% CI: 0.12–0.91; +p + = 0.034; adjusted +p + = 0.579), GDNF (OR: 0.43, 95% CI: 0.22–0.81; +p + = 0.010; adjusted +p + = 0.218), and stem cell factor (OR: 0.49, 95% CI: 0.29–0.84; +p + = 0.009; adjusted +p + = 0.218) also showed a suggestive inverse association with TAO, as depicted in +Fig. 2 +. Conversely, higher levels of genetically predicted CCL23 (OR: 1.88, 95% CI: 1.21–2.93; +p + = 0.005; adjusted +p + = 0.218) and C–C motif chemokine 25 (OR: 1.44, 95% CI: 1.01–2.06; +p + = 0.046; adjusted +p + = 0.579) suggested an increased risk of TAO. +

+Causal relationship between circulating inflammatory proteins and TAO. TAO, thromboangiitis obliterans. +

Sensitivity Analysis

+MR–Egger regression intercepts were not significantly different from zero, suggesting no horizontal pleiotropy (all intercept +p + > 0.05), as depicted in +Fig. 2 +. The MR-PRESSO test also found no pleiotropic outliers among these SNPs ( +p + > 0.05), further corroborating the absence of pleiotropy. Consistency with these findings was confirmed by the weighted median approach. Scatter plots illustrating the genetic associations with circulating inflammatory proteins and TAO are presented in +Fig. 3 +. Cochran's Q test detected no heterogeneity among the genetic IVs for the measured levels (all +p + > 0.1). Additionally, funnel plots showed no significant asymmetry, suggesting negligible publication bias and directional horizontal pleiotropy ( +Fig. 4 +). The robustness of these causal estimates was further validated by a leave-one-out analysis, demonstrating that no single IV disproportionately influenced the observed causal relationships, as shown in +Fig. 5 +. +

+Scatter plots for the causal association between circulating inflammatory proteins and TAO. TAO, thromboangiitis obliterans. +

+Funnel plots of circulating inflammatory proteins. +

+Leave-one-out plots for the causal association between circulating inflammatory proteins and TAO. TAO, thromboangiitis obliterans. +

MVMR Analysis

Fig. 6 +reveals that, even after adjusting for genetically predicted smoking, the level of CCL4 still exerts a direct protective influence against TAO (IVW: OR= 0.54, +p + = 0.009; MR–Egger: +p + = 0.013, intercept +p + = 0.843). The level of CCL23 is suggestively associated with an increased risk of TAO (IVW: OR = 2.24, +p + = 0.011; MR–Egger: +p + = 0.019, intercept +p + = 0.978). GDNF levels show a suggestively protective effect against TAO (IVW: OR = 0.315, +p + = 0.016; MR–Egger: +p + = 0.020, intercept +p + = 0.634). However, no significant direct impacts were observed for the levels of C–C motif chemokine 25 ( +p + = 0.079), C–C motif chemokine 28 ( +p + = 0.179), or stem cell factor ( +p + = 0.159) on TAO. +

+Results from multivariable Mendelian randomization analysis on the impact of circulating inflammatory proteins on TAO, after adjusting for genetically predicted smoking. IVW, inverse variance weighting; TAO, thromboangiitis obliterans. +

Discussion

This study utilized a two-sample and MVMR approach to evaluate the causal relationships between specific circulating inflammation-related proteins and TAO. Utilizing summary statistics from GWAS meta-analyses for these proteins, alongside TAO data from the FinnGen consortium R10 release and GWAS information on smoking, our findings underscore a protective influence of CCL4 and GDNF on TAO. In contrast, elevated levels of CCL23 emerge as potential risk indicators for TAO. These insights position these proteins as potential biomarkers for TAO, offering new avenues for understanding its pathogenesis.

+C–C motif chemokines, a subfamily of small, secreted proteins, engage with G protein-coupled chemokine receptors on the cell surface, which are distinguished by directly juxtaposed cysteines. +22 +Their renowned function is to orchestrate cell migration, particularly of leukocytes, playing crucial roles in both protective and destructive immune and inflammatory responses. +23 +CCL4, also known as the macrophage inflammatory protein, is a significant member of the CC chemokine family. This protein, encoded by the CCL4 gene in humans, interacts with CCR5 and is identified as a pivotal human immunodeficiency virus-suppressive factor secreted by CD8+ T-cells. +24 +Additionally, its involvement has been increasingly recognized in cardiovascular diseases. +23 +While CCL4 exhibits a protective effect in Type 1 diabetes mellitus patients, it is also found to be elevated in conditions such as atherosclerosis and myocardial infarction. +23 +CCL4's ability to activate PI3K and MAPK signaling pathways and inhibit the NF-κB pathway contributes to the enhanced proliferation of porcine uterine luminal epithelial cells. +25 +This mechanism may elucidate CCL4's protective role in TAO, as demonstrated in this study (OR: 0.44; 95% CI: 0.29–0.67; +p + = 1.4 × 10 +−4 +; adjusted +p + = 0.013), highlighting its potential as both a biomarker and a therapeutic target. +

+CCL23, also known as myeloid progenitor inhibitory factor-1, represents another key member of the CC chemokine subfamily. It plays a role in the inflammatory process, capable of inhibiting the release of polymorphonuclear leukocytes from the bone marrow. +26 +As a relatively novel chemokine, CCL23's biological significance remains partially unexplored. +27 +Circulating CCL23 exhibited a continuous increase from baseline to 24 hours in ischemic stroke patients and could predict the clinical outcome after 3 months. +28 +Elevated blood levels of CCL23 have been linked with antineutrophil cytoplasmic antibody-associated vasculitis. +29 +Although its mechanisms are largely uncharted, CCL23 is known to facilitate the chemotaxis of human THP-1 monocytes, increase adhesion molecule CD11c expression, and stimulate MMP-2 release from THP-1 monocytes. +30 +Moreover, CCL23 can enhance leucocyte trafficking and direct the migration of monocytes, macrophages, dendritic cells, and T lymphocytes. +27 +This study posits CCL23 as a suggestive risk factor for TAO (OR: 1.88, 95% CI: 1.21–2.93; +p + = 0.005; adjusted +p + = 0.218), warranting further investigation into its precise role. +

+GDNF was first discovered as a potent survival factor for midbrain dopaminergic neurons and has shown promise in preserving these neurons in animal models of Parkinson's disease. +31 +Recent studies have further elucidated GDNF's significance in neuronal safeguarding and cerebral recuperation. +32 +Additionally, GDNF has been implicated in inflammatory bowel disease (IBD), where it bolsters the integrity of the intestinal epithelial barrier and facilitates wound repair, while also exerting an immunomodulatory influence. +33 +34 +In our study, GDNF is identified as a potential protective agent against TAO, with an OR of 0.43 (95% CI: 0.22–0.81; +p + = 0.010; adjusted +p + = 0.218). It is postulated that GDNF's protective mechanism in TAO may involve the inhibition of apoptosis through the activation of MAPK and AKT pathways, akin to its action in IBD. +34 +

This study utilized MR analysis to ascertain the causal relationship between circulating inflammation-related proteins and TAO. This approach was chosen to mitigate confounding factors and the potential reverse causation in causal inference. Genetic variations linked to these proteins were sourced from a recent GWAS meta-analysis, ensuring robust instrument strength in the MR analysis. MR-PRESSO and MR–Egger regression intercept tests were employed to assess the level of pleiotropy. A two-sample MR design was adopted, using nonoverlapping summary data for exposure and outcomes to minimize bias. An MVMR was finally performed to adjust the possible cofounding of smoking.

Nonetheless, this study is subject to several limitations. First, the absence of additional GWAS cohorts encompassing TAO precluded replication analysis, thereby constraining the validation of the causal relationship and impacting the study's credibility. Second, while the case count in our study is constrained, potentially increasing the likelihood of Type II errors, robust IVs were carefully chosen, and both sensitivity and MVMR analyses were conducted. These measures were taken to mitigate risks, and the outcomes affirm the study's resilience. Third, given that the FinnGen study exclusively comprised Finnish participants and considering the lower prevalence of TAO in Northeastern European countries compared with other regions globally, the findings' applicability may be somewhat restricted.

Conclusion

This two-sample and MVMR analysis reveals a protective effect of CCL4 and GDNF on TAO, and suggests a potential causal relationship between CCL23 and TAO. These findings offer new perspectives on potential biomarkers and therapeutic targets for TAO.

+What is known about this topic? +

Thromboangiitis obliterans (TAO), or Buerger's disease, is a distinct, nonatherosclerotic inflammatory condition.

It primarily impacts small- and medium-sized arteries and veins in the extremities, with uncertain etiology and prognosis.

The disease is thought to involve an immune response, but evidence supporting this is limited.

+What does this paper add? +

Utilizes a two-sample and multivariable Mendelian randomization approach, integrating GWAS data of 91 inflammation-related proteins with TAO data.

Identifies C–C motif chemokine 4 and glial cell line-derived neurotrophic factor as potential protective biomarkers for TAO, offering new insights for diagnosis and treatment.

Suggests that C–C motif chemokine 23 emerges as a suggestive risk marker in TAO, offering new insights for diagnosis and treatment.

Acknowledgment

This manuscript underwent editing and enhancement by ChatGPT-4. We want to acknowledge the participants and investigators of the FinnGen study and the GWAS research for their generous sharing of data.

Conflict of Interest None declared.

Data Availability Statement

+The datasets analyzed during the current study are available in the EBI GWAS Catalog (accession numbers GCST90274758 to GCST90274848 and GCST90029014), +https://www.ebi.ac.uk/gwas/ +, and the FinnGen repository (finngen_R10_I9_THROMBANG), +https://www.finngen.fi/en/access_results +. +

Ethical Approval Statement

This research has been conducted using published studies and consortia providing publicly available summary statistics. All original studies have been approved by the corresponding ethical review board, and the participants have provided informed consent. In addition, no individual-level data were used in this study. Therefore, no new ethical review board approval was required

Authors' Contribution

Conception and design: M.Y. and B.Z. Administrative support: X.T. and Y.Z. Provision of study materials or patients: Z.Y. and G.N. Collection and assembly of data: B.Z., Z.Y., and R.H. Data analysis and interpretation: B.Z., R.H., and Z.Y. Manuscript writing: All authors. Final approval of manuscript: All authors.

+These authors equally contributed to this paper and thus shared the co-first authorship. +

Supplementary Material

Supplementary Material

Supplementary Material

ReferencesOlinJ WThromboangiitis obliterans (Buerger's disease)N Engl J Med20003431286486910995867 +SunX LLawB Yde Seabra Rodrigues DiasI RMokS WFHeY ZWongV KPathogenesis of thromboangiitis obliterans: gene polymorphism and immunoregulation of human vascular endothelial cellsAtherosclerosis201726525826528864202 +OlinJ WThromboangiitis obliterans: 110 years old and little progress madeJ Am Heart Assoc2018723e01121430571606 +French Buerger's Network Le JoncourASoudetSDupontALong-term outcome and prognostic factors of complications in thromboangiitis obliterans (Buerger's Disease): a multicenter study of 224 patientsJ Am Heart Assoc2018723e01067730571594 +KethaS SCooperL TThe role of autoimmunity in thromboangiitis obliterans (Buerger's disease)Ann N Y Acad Sci20131285152523510296 +KobayashiMItoMNakagawaANishikimiNNimuraYImmunohistochemical analysis of arterial wall cellular infiltration in Buerger's disease (endarteritis obliterans)J Vasc Surg1999290345145810069909 +Dellalibera-JovilianoRJovilianoE ESilvaJ SEvoraP RActivation of cytokines corroborate with development of inflammation and autoimmunity in thromboangiitis obliterans patientsClin Exp Immunol201217001283522943198 +Davey SmithGHemaniGMendelian randomization: genetic anchors for causal inference in epidemiological studiesHum Mol Genet201423(R1):R89R9825064373 +EmdinC AKheraA VKathiresanSMendelian randomizationJAMA2017318191925192629164242 +LarssonS CButterworthA SBurgessSMendelian randomization for cardiovascular diseases: principles and applicationsEur Heart J202344474913492437935836 +SkrivankovaV WRichmondR CWoolfB ARStrengthening the reporting of observational studies in epidemiology using mendelian randomisation (STROBE-MR): explanation and elaborationBMJ20213752233n223334702754 +Estonian Biobank Research Team ZhaoJ HStaceyDErikssonNGenetics of circulating inflammatory proteins identifies drivers of immune-mediated disease risk and therapeutic targetsNat Immunol202324091540155137563310 +FinnGen KurkiM IKarjalainenJPaltaPFinnGen provides genetic insights from a well-phenotyped isolated populationNature2023613794450851836653562 +KamatM ABlackshawJ AYoungRPhenoScanner V2: an expanded tool for searching human genotype-phenotype associationsBioinformatics201935224851485331233103 +BurgessSDudbridgeFThompsonS GCombining information on multiple instrumental variables in Mendelian randomization: comparison of allele score and summarized data methodsStat Med201635111880190626661904 +YavorskaO OBurgessSMendelianRandomization: an R package for performing Mendelian randomization analyses using summarized dataInt J Epidemiol201746061734173928398548 +BowdenJDavey SmithGBurgessSMendelian randomization with invalid instruments: effect estimation and bias detection through Egger regressionInt J Epidemiol2015440251252526050253 +BowdenJDavey SmithGHaycockP CBurgessSConsistent estimation in mendelian randomization with some invalid instruments using a weighted median estimatorGenet Epidemiol2016400430431427061298 +VerbanckMChenC YNealeBDoRDetection of widespread horizontal pleiotropy in causal relationships inferred from Mendelian randomization between complex traits and diseasesNat Genet2018500569369829686387 +LohP RKichaevGGazalSSchoechA PPriceA LMixed-model association for biobank-scale datasetsNat Genet2018500790690829892013 +StaigerDJamesHStock. 1997.“instrumental variables with weak instruments.”Econometrica199765557586HughesC ENibbsR JBA guide to chemokines and their receptorsFEBS J2018285162944297129637711 +ChangT TChenJ WEmerging role of chemokine CC motif ligand 4 related mechanisms in diabetes mellitus and cardiovascular disease: friends or foes?Cardiovasc Diabetol2016150111727553774 +IrvingS GZipfelP FBalkeJTwo inflammatory mediator cytokine genes are closely linked and variably amplified on chromosome 17qNucleic Acids Res19901811326132701972563 +LimWBaeHBazerF WSongGCharacterization of C-C motif chemokine ligand 4 in the porcine endometrium during the presence of the maternal-fetal interfaceDev Biol20184410114615830056935 +ShihC Hvan EedenS FGotoYHoggJ CCCL23/myeloid progenitor inhibitory factor-1 inhibits production and release of polymorphonuclear leukocytes and monocytes from the bone marrowExp Hematol200533101101110816219532 +KaranDCCL23 in balancing the act of endoplasmic reticulum stress and antitumor immunity in hepatocellular carcinomaFront Oncol20211172758334671553 +SimatsAGarcía-BerrocosoTPenalbaACCL23: a new CC chemokine involved in human brain damageJ Intern Med20182830546147529415332 +BrinkMBerglinEMohammadA JProtein profiling in presymptomatic individuals separates myeloperoxidase-antineutrophil cytoplasmic antibody and proteinase 3-antineutrophil cytoplasmic antibody vasculitidesArthritis Rheumatol20237506996100636533851 +KimC SKangJ HChoH RPotential involvement of CCL23 in atherosclerotic lesion formation/progression by the enhancement of chemotaxis, adhesion molecule expression, and MMP-2 release from monocytesInflamm Res2011600988989521656154 +SaarmaMSariolaHOther neurotrophic factors: glial cell line-derived neurotrophic factor (GDNF)Microsc Res Tech199945(4–5):29230210383122 +ZhangZSunG YDingSGlial cell line-derived neurotrophic factor and focal ischemic strokeNeurochem Res202146102638265033591443 +ChenHHanTGaoLZhangDThe involvement of glial cell-derived neurotrophic factor in inflammatory bowel diseaseJ Interferon Cytokine Res202242011734846920 +MeirMFlemmingSBurkardNWagnerJGermerC TSchlegelNThe glial cell-line derived neurotrophic factor: a novel regulator of intestinal barrier function in health and diseaseAm J Physiol Gastrointest Liver Physiol201631011G1118G112327151942 +
\ No newline at end of file diff --git a/tests/data/xml/1349-7235-63-2593.nxml b/tests/data/xml/1349-7235-63-2593.nxml new file mode 100644 index 00000000..08012c0a --- /dev/null +++ b/tests/data/xml/1349-7235-63-2593.nxml @@ -0,0 +1,24 @@ + +
pmcIntern MedIntern MedInternal Medicine0918-29181349-7235The Japanese Society of Internal Medicine +3840375511518613 +10.2169/internalmedicine.3281-23EditorialBilateral External Ophthalmoplegia Induced by Herpes Zoster OphthalmicusShimizuFumitaka1 +Department of Neurology and Clinical Neuroscience, Yamaguchi University Graduate School of Medicine, Japan

Correspondence to Dr. Fumitaka Shimizu, fshimizu@yamaguchi-u.ac.jp

26220241102024631925932594301120233122023Copyright © 2024 by The Japanese Society of Internal Medicinehttps://creativecommons.org/licenses/by-nc-nd/4.0/The Internal Medicine is an Open Access journal distributed under the Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International License. To view the details of this license, please visit (https://creativecommons.org/licenses/by-nc-nd/4.0/).bilateral external ophthalmoplegiaherpes zoster ophthalmicusMiller-Fisher syndromeSIADH

Herpes zoster ophthalmicus (HZO) presents as a painful vesicular rash in the trigeminal nerve dermatome. Unilateral ophthalmoplegia appears in approximately 7-31% of patients with HZO and possibly occurs weeks after the onset of HZO symptoms. However, bilateral external ophthalmoplegia after suffering from unilateral HZO is rare.

Shima et al. recently described the case of an 80-year-old female who suffered from right-sided HZO with meningoencephalitis and developed bilateral third, fourth, and sixth cranial nerve palsies and Syndrome of inappropriate antidiuretic hormone secretion (SIADH) almost simultaneously (1). All bilateral cranial palsies spontaneously resolved within a few months. In their discussion, they described three possible mechanisms: Varicella-zoster virus (VZV)-induced vasculopathy, a reactive immunological response to VZV, and a direct cytotoxic effect of VZV. They concluded that a reactive immunological response, such as Miller-Fisher syndrome (MFS), was the most likely mechanism of ophthalmoplegia in their case (1).

MFS is characterized by the acute onset of ophthalmoplegia, ataxia, and areflexia, and it is considered to be a variant of GBS. The most common agents are Campylobacter jejuni, Haemophilus influenzae, and Mycoplasma pneumoniae (2). Infection with VZV may also be a significant antecedent factor that triggers both Guillain-Barré syndrome (GBS) and MFS, but a significant statistical association has not yet been confirmed (2). Rizoo et al. reported the case of a 78-year-old man with MFS who developed right third cranial nerve palsy with hypoflexia and was seropositive for serum GQ1b autoantibodies (3). These two reports, including the report by Shima T et al., suggest that infection with VZV may trigger the development of MFS.

SIADH is a rare complication of VZV. A possible mechanism underlying the association between SIADH and HZO is that VZV infection may involve the regulatory pathway of ADH secretion (4). On the other hand, Shima T et al. noted that SIADH may occur as a complication in patients with MFS. An association between SIADH and GBS has been reported, but SIADH associated with MFS is extremely rare. To our knowledge, there have been 3 case reports that describe MFS complicated by SIADH (5-7). Anti-anglioside GD2 antibodies, which recognize disialosyl residue and react with the myelin sheaths in the peripheral nerves as well as with the pituicyte cytoplasm in the posterior lobe of the pituitary gland, may explain the association between SIADH and MFS, because some patients developed sensorimotor demyelinating polyneuropathy with SIADH after treatment of melanomas with anti-GD2 monoclonal antibodies (5,8).

This case report firstly describes the development of both MFS and SIADH after unilateral HZO. The further accumulation of case reports and research is required to clarify the association between HZO and MFS.

+The author states that he has no Conflict of Interest (COI). +

ShimaT, YamashitaK, FurutaK, et al. Right-sided herpes zoster ophthalmicus complicated by bilateral third, fourth, and sixth cranial nerve palsies and syndrome of inappropriate antidiuretic hormone secretion. Intern Med +63: 2673-2677, 2024.38403774 +YukiN. Infectious origins of, and molecular mimicry in, Guillain-Barré and Fisher syndromes. Lancet Infect Dis +1: 29-37, 2001.11871407 +RizzoAC, UliviM, BrunelliN, et al. A case of Miller Fisher syndrome associated with preceding herpes zoster ophthalmicus. Muscle Nerve +55: E15-E16, 2017.27875624 +WangCC, ShiangJC, ChenJT, LinSH. Syndrome of inappropriate secretion of antidiuretic hormone associated with localized herpes zoster ophthalmicus. J Gen Intern Med +26: 216-220, 2011.20878495 +FujiwaraS, ManabeY, NakanoY, OmoteY, NaraiH, AbeK. A case of Miller-Fisher syndrome with syndrome of inappropriate secretion of antidiuretic hormone. Case Rep Neurol +13: 380-383, 2021.34248573 +BenkiraneA, LondonF. Miller Fisher syndrome complicated by inappropriate secretion of antidiuretic hormone: a case report. Acta Neurol Belg +122: 1403-1404, 2022.35871211 +MurakamiT, YoshiharaA, KikuchiS, YasudaM, HoshiA, UgawaY. A patient with Fisher syndrome and pharyngeal-cervical-brachial variant of Guillain-Barré syndrome having a complication of SIADH. Rinsho Shinkeigaku +53: 299-303, 2013.23603545 +SelehMN, KhazaeliMB, WheelerRH, et al. Phase I trial of the murine monoclonal anti-GD2 antibody 14G2a in metastatic melanoma. Cancer Res +52: 4342-4347, 1992.1643631 +
\ No newline at end of file diff --git a/tests/data/xml/1349-7235-63-2595.nxml b/tests/data/xml/1349-7235-63-2595.nxml new file mode 100644 index 00000000..1c4c2008 --- /dev/null +++ b/tests/data/xml/1349-7235-63-2595.nxml @@ -0,0 +1,219 @@ + +
pmcIntern MedIntern MedInternal Medicine0918-29181349-7235The Japanese Society of Internal Medicine +3840377111518611 +10.2169/internalmedicine.2987-23Original ArticleAn In-depth Single-center Retrospective Assessment of In-hospital Outcomes in Acute Myocardial Infarction Patients with and without DiabetesHitomiSho1KoedaYorihiko1TosakaKengo1KanehamaNozomu1NiiyamaMasanobu2IshidaMasaru1ItohTomonori1MorinoYoshihiro1 +Division of Cardiology, Department of Internal Medicine, Iwate Medical University, Japan +Department of Cardiology, Japanese Red Cross Hachinohe Hospital, Japan

Correspondence to Dr. Yoshihiro Morino, ymorino@iwate-med.ac.jp

26220241102024631925952603210202325122023Copyright © 2024 by The Japanese Society of Internal Medicinehttps://creativecommons.org/licenses/by-nc-nd/4.0/The Internal Medicine is an Open Access journal distributed under the Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International License. To view the details of this license, please visit (https://creativecommons.org/licenses/by-nc-nd/4.0/).Objective

This study examined variations in in-hospital mortality causes and identified independent mortality predictors among patients with acute myocardial infarction (AMI) with and without diabetes mellitus (DM).

Methods

We examined factors influencing in-hospital mortality in a single-center retrospective observational study. Separate multivariate analyses were conducted for both groups to identify independent predictors of in-hospital mortality.

Patients

This study included consecutive patients admitted to Iwate Medical University Hospital between January 2012 and December 2017 with a diagnosis of AMI.

Results

Of 1,140 patients meeting the AMI criteria (average age: 68.2±12.8 years old, 75% men), 408 (35.8%) had diabetes. The DM group had a 1.87-times higher 30-day mortality rate, a lower prevalence of ST-elevated MI (56.6% vs. 65.3% in non-DM, p=0.004), and more frequent non-cardiac causes of death (32% vs. 14% in non-DM, p=0.046) than the non-DM group. Independent predictors of in-hospital mortality in both groups were cardiogenic shock (CS) [DM: hazard ratio (HR) 6.59, 95% confidence interval (CI) 2.90-14.95; non-DM: HR 4.42, 95% CI 1.99-9.77] and renal dysfunction (DM: HR 5.64, 95% CI 1.59-20.04; non-DM: HR 5.92, 95% CI 1.79-19.53). Among patients with DM, a history of stroke was an additional independent predictor of in-hospital mortality (HR 2.59, 95% CI 1.07-6.31).

Conclusion

Notable disparities were identified in the causes of death and predictive factors of mortality between these two groups of patients with AMI. To further improve AMI outcomes, individualized management and prioritizing non-cardiac comorbidities during hospitalization may be crucial, particularly in patients with DM.

diabetes mellitusacute myocardial infarctioncause of deathmortality
Introduction

Diabetes mellitus (DM) is widely recognized as being associated with poor clinical scenarios across various facets of ischemic heart disease. Indeed, it is a significant risk factor for coronary disease. Furthermore, atherosclerotic changes in coronary arteries tend to exhibit a more extensive distribution in individuals with DM than in those without DM. Following revascularization, a higher occurrence of restenosis or major adverse clinical events is expected in patients with DM than in those without DM during the follow-up period. Drug-eluting stents have also been employed in such cases (1).

Acute myocardial infarction (AMI) has remained a significant contributor to mortality worldwide. Based on an observational multicenter registry in Japan, 36.4% of AMI patients were found to have DM as a comorbidity (2).

With the widespread adoption of primary coronary intervention (PCI), AMI mortality has substantially declined. The current nationwide registry database in Japan has indicated that the mortality rate could be reduced to less than 3% if AMI patients were to receive primary PCI (3). However, a German study that compared outcomes between 2005 and 2021 highlighted that the rates of in-hospital death remained significantly higher in myocardial infarction (MI) patients with DM than in those without DM, despite an overall reduction in in-hospital mortality (4). Even with the contemporary utilization of primary PCI, patients with DM still experience higher in-hospital mortality than those without DM (5), and the long-term prognosis has also been observed to be worse within this population (6).

While the overall association between AMI and DM has been confirmed, a comprehensive evaluation, including a precise determination of the direct cause of death, is lacking. Accordingly, the present study aimed to elucidate specific variations in the direct causes of in-hospital mortality between patients with and without DM in order to identify the independent factors that predict mortality, considering each patient group separately.

Our study endeavored to achieve a comprehensive understanding of the differences in the causes of death associated with AMI in patients with and without DM and to identify distinct predictors of mortality within these two patient groups.

Materials and MethodsStudy population

The study population comprised patients admitted to Iwate Medical University Hospital between January 2012 and December 2017 due to AMI, specifically those who met the criteria outlined in the 3rd universal definition of MI (7).

AMI was diagnosed based on the evidence of myocardial necrosis in patients with acute myocardial ischemia in a clinical setting. The criteria for detection included the presence of a rise and/or fall in cardiac biomarker values, with at least one value exceeding the 99th percentile upper reference limit. In addition, at least one of the following conditions had to be met: 1) symptoms of ischemia; 2) new or presumed new significant ST-segment-T wave changes or new left bundle branch block; 3) development of a pathological Q wave on an electrocardiogram (ECG); 4) imaging evidence of new loss of viable myocardium or new regional wall motion abnormality; and 5) identification of an intracoronary thrombus by angiography or autopsy. Furthermore, in accordance with the classification of MI (types 1 to 5) as defined by the 3rd universal definition (7), the patients were classified as either type 1, spontaneous MI; type 2, MI secondary to an ischemia imbalance; or MI resulting in death when biomarker values were unavailable.

The exclusion criteria for the study subjects were as follows: 1) patients with AMI classified into two categories [type 4, including MI related to PCI or stent thrombosis; and type 5, including MI related to coronary artery bypass grafting (CABG)]; 2) patients transported after an unexplained cardiac arrest who died without resuscitation or admission, making the involvement of myocardial ischemia unclear; and 3) patients who declined to participate in the study via an opt-out mechanism.

The study was conducted in accordance with the ethical provisions of the Helsinki Declaration (2013 Brazil revision) and approved by the Ethics Committee of Iwate Medical University (MH2023-013). In this retrospective observational study, eligible patients were provided an opportunity to opt out (https://iwate-heart.jp/public_information/).

Definition

The definition of each parameter used in this study was established by referring to previous studies that are widely regarded as representative in the field. Hypertension was defined (in accordance with the ACC/AHA Stage 2 hypertension guidelines) as a systolic blood pressure of ≥140 mmHg, a diastolic blood pressure of ≥90 mmHg upon admission, or the use of antihypertensive medication (8). Diabetes was defined as a blood sugar level ≥200 mg/dL upon admission, an HbA1c level of ≥6.5%, or the administration of diabetes medication (9). For cases that did not meet this definition, fasting blood sugar, daily blood sugar fluctuation, and glucose tolerance tests were not conducted. Dyslipidemia was defined in line with the guidelines in Japan as low-density lipoprotein (LDL)-cholesterol ≥140 mg/dL or high-density lipoprotein (HDL)-cholesterol <40 mg/dL (10) and included a total cholesterol level of ≥240 mg/dL or the administration of lipid-lowering drugs. A history of ischemic heart disease was defined as a history of AMI or revascularization (PCI or CABG). A current smoking habit was defined as smoking within the year prior to admission. A history of stroke was defined as any past stroke that required hospitalization, including cerebral infarction and intracranial hemorrhaging. Consequently, incidental asymptomatic lacunar infarctions identified on imaging were excluded. Atrial fibrillation was defined as any history of treatment, regardless of whether it was chronic or paroxysmal, or any evidence of atrial fibrillation found on previous Holter monitoring or a 12-lead ECG. Cases of transient paroxysmal atrial fibrillation observed during hospitalization without a previous record were not included. However, those with consistent atrial fibrillation waveforms upon admission, even without prior records, were included. Obesity was defined as a body mass index (BMI) ≥25.0 kg/m2 or higher upon admission (11). Renal dysfunction was defined as an estimated glomerular filtration rate (eGFR) of <60 mL/min/1.73 m2 upon admission (12) or dialysis.

Study endpoints

The primary outcome measure was in-hospital mortality, and a thorough examination of the underlying causes of death was conducted. Secondary outcome measures included acute-phase complications that occurred during hospitalization, such as heart failure, shock, arrhythmias, bleeding, mechanical complications, and infections.

Statistical analyses

All statistical analyses were performed using the SPSS 28.0 software program for Windows (IBM, Chicago, USA). The patients were divided into two groups based on the presence or absence of DM, and the analyses were conducted accordingly. For comparisons between the two groups, the chi-squared and Mann-Whitney U tests were employed. The Kaplan-Meier method was used to calculate the cumulative event occurrence rate. The hazard ratio (HR) for event occurrence was assessed using a Cox proportional hazards model. Statistical significance was set at p<0.05.

ResultsPatient and clinical characteristics

A total of 1,140 patients with AMI met the enrollment criteria, and 408 patients (35.8%) were categorized as having DM. The mean age of the patients was 68.2±12.8 years old, and 75% were men.

The participants were stratified into two groups based on the presence of DM. Table 1 shows a comparison of the baseline clinical characteristics between the DM and non-DM groups. The DM group had a significantly higher BMI and a higher prevalence of hyperlipidemia than the non-DM group. In contrast, a current smoking habit and hypertension were significantly more prevalent in the non-DM group than in the DM group. Regarding the history of major vascular diseases, a history of coronary artery disease or stroke was significantly more frequent in the DM group than in the non-DM group. Importantly, the frequency of cardiac arrest on admission was significantly higher in the DM group than in the non-DM group, despite no apparent differences in systolic and diastolic blood pressure values on admission between the two groups.

A Comparison of Baseline Clinical Characteristics between the DM or Non-DM Groups.

VariablesTotal (n=1140)DM (n=408)Non-DM (n=732)p value
+Age (years) +68.2±12.868.3±12.168.0±13.10.977
+Sex (male) +76.0%74.8%76.6%0.475
+BMI (kg/m2) +24.4±4.025.0±4.224.0±3.8<0.001
+Obesity (BMI≥25) +38.1%45.6%34.6%<0.001
+DM +35.8%100%0
+Hypertension +69.9%78.7%64.9%<0.001
+Dyslipidemia +51.3%62.8%44.8%<0.001
+Current smoker +34.9%34.4%35.2%0.784
+History of CAD +13.5%21.4%9.0%<0.001
+History of stroke +11.5%15.3%9.4%0.005
+History of atrial fibrillation +7.9%9.1%7.2%0.266
+CPA on admission +5.3%7.2%4.2%0.029
+Systolic BP on admission (mmHg) +145±34144±34145±340.517
+Diastolic BP on admission (mmHg) +85±2183±2186±220.027
+HR on admission (bpm) +81±1982±2081±190.105
+STEMI +62.2%56.6%65.3%0.004
+Killip I-IV (%) +71.6/14.3/5.5/8.664.2/16.3/7.9/11.675.8/13.1/4.1/6.9<0.001
+LVEF (%) +51.4±19.749.6±28.952.3±11.6<0.001
+Serum creatinine (mg/dL) +1.24±1.651.57±2.121.06±1.290.008
+eGFR (mL/min/1.73 m2) +68.0±28.564.3±33.070.1±25.50.003
+Renal dysfuncti on (eGFR<60) +36.9%44.4%32.8%<0.001
+Hemodialysis or CAPD +4.4%8.1%2.3%<0.001
+Blood glucose (mg/dL) +163±78207±97140±50<0.001
+Hemoglobin A1c (%) +6.1±1.57.1±1.55.6±0.5<0.001
+Triglyceride (mg/dL) +127±111138±146120±840.002
+Total cholesterol (mg/dL) +186±45179±49189±42<0.001
+LDL-cholesterol (mg/dL) +115±37109±37119±37<0.001
+HDL-cholesterol (mg/dL) +47±1445±1548±14<0.001
+L/H ratio +2.6±1.02.5±1.02.6±1.00.144
+Brain natriuretic peptide (pg/mL) +381±800511±975308±6730.001

DM: diabetes mellitus, BMI: body mass index, CAD: coronary artery disease, CPA: cardiopulmonary arrest, BP: blood pressure, HR: heart rate, STEMI: ST elevation myocardial infarction, LVEF: left ventricular ejection fraction, eGFR: estimated glomerular filtration rate, CAPD: continuous ambulatory peritoneal dialysis, LDL: low density lipoprotein, HDL: high density lipoprotein

The prevalence of ST-elevated MI was significantly lower in the DM group than in the non-DM group. Significant differences were observed between the two groups in terms of the ejection fraction on admission, serum creatinine level, eGFR, serum B-type natriuretic peptide (BNP) level, and Killip status. A blood examination of serum lipid profiles revealed a significantly higher triglyceride level and a significantly lower LDL-cholesterol level in the DM group than in the non-DM group.

Patient management and overall in-hospital outcomes

A detailed comparison of the patient management strategies is presented in Table 2. In the DM group, emergent coronary angiography and PCI were performed significantly less frequently than in the non-DM group. In addition, the prevalence of lesions involving the left main coronary artery was significantly higher in the DM group than in the non-DM group. Furthermore, patients in the DM group underwent CABG significantly more frequently than in the non-DM group.

A Comparison of Patient Management between the Two Groups.

VariablesTotal (n=1,140)DM (n=408)Non-DM (n=732)p value
+Emergency coronary angiography +87.8%84.2%89.7%0.007
+Lesion of left main trunk +9.7%13.9%7.3%0.001
+Multivessel coronary artery disease +59.6%71.4%53.0%<0.001
+Emergency PCI +78.4%73.8%81.0%0.004
+Slow-flow or no-reflow post PCI +14.2%16.1%13.1%0.203
+Coronary artery bypass grafting +9.2%12.3%7.5%0.008
+Respirator +10.5%14.2%8.5%0.004
+Intra-aortic balloon pumping +11.4%16.7%8.4%<0.001
+VA-ECMO +2.0%3.3%1.3%0.023
+Peak creatine kinase (IU/L) +2,198±2,7582,073±2,8502,269±2,7050.003
+Hospitalization days +19±4820±2218±570.002
+In-hospital mortality +6.6%9.3%5.1%0.005

DM: diabetes mellitus, PCI: percutaneous coronary intervention, VA-ECMO: venoarterial extracorporeal membrane oxygenation

Regarding mechanical support, patients in the DM group received significantly more frequent treatments with mechanical ventilation, intra-aortic balloon pump, and veno-atrial extracorporeal membrane oxygenation than in the non-DM group. As a result, in-hospital mortality was significantly higher and the length of hospital stay significantly longer in the DM group than in the non-DM group. The Kaplan-Meier survival curve of in-hospital mortality (within 30 days after admission), illustrated in Fig. 1, shows a significant difference between the two groups. The HR for in-hospital mortality in the DM group was 1.87 (95% confidence interval: 1.19-2.93, p=0.007).

Thirty-day cumulative survival rates in patients with acute myocardial infarction, stratified by DM status. Patients with DM (shown in red) had a significantly lower survival rate than those without DM (shown in blue).

An in-depth analysis of the causes of in-hospital deaths and predictive factors

The in-hospital mortality rate of the 1,140 patients included in this study was 6.6%. A comparison of the causes of in-hospital death between the two groups is shown in Fig. 2. Nearly half of the causes were attributed to cardiogenic shock (CS) in both groups. However, the remaining causes of death appeared to differ between the two groups, particularly in terms of mechanical complications, infection, and malignant disease. When comparing the causes of death, a higher proportion of non-cardiac deaths (including infections, malignancies, strokes, and multiple organ failures) were observed in the DM group than in the non-DM group (32% vs. 14%, p=0.046, respectively). Deaths due to mechanical complications were more frequent in the non-DM group than in the DM group; however, the difference was not statistically significant (DM: 16% vs. non-DM: 32%, p=0.119). When examining the relationship between the timing of death and its causes, it was found that, for both groups, the majority of deaths until the third clinical day were predominantly due to CS or mechanical complications. However, regarding the causes of death after the tenth clinical day, in the DM group, the proportion of deaths attributed to CS or mechanical complications was <30%, with a greater number of patients dying from other causes, such as lethal arrhythmias, cerebral infarction, infections, and malignancies. In contrast, in the non-DM group, the proportion of patients dying from CS or mechanical complications remained high (65%).

Pie charts illustrating the causes of death in each group reveal differences. In the DM group, a higher percentage of non-cardiac deaths, such as infections, malignancies, strokes, and multiple organ failures, was observed than in the non-DM group (32% vs. 14%, respectively), with a statistically significant difference (p=0.046). Among the six cases of mechanical complications in patients who died in the DM group, there were two cases of ventricular septal rupture (VSR) and four cases of free-wall rupture (FWR). In the non-DM group, out of the 12 cases of mechanical complications in deceased patients, there were 4 cases of VSR, 7 of FMR, and 1 of papillary muscle rupture (PMR).

Factors potentially associated with in-hospital mortality were individually compared between those who survived and those who died in both the DM and non-DM groups (Table 3). In the DM group, statistically significant differences were observed in the age, hypertension, current smoking habit, history of stroke, Killip status, ejection fraction on admission, renal dysfunction (eGFR <60 mL/min/1.73 m2), and serum BNP levels between the survival and in-hospital death subgroups. However, these factors showed slight variation in the non-DM group. Interestingly, the sex, history of atrial fibrillation, and ST elevation were also found to be significantly different factors in the non-DM group. Notably, in the non-DM group, a history of stroke no longer had a significant impact on in-hospital death when comparing the surviving and deceased patients.

Comparisons of Clinical Characteristics between AMI Patients Who Survived and Those Who Died from Both the DM and Non-DM Groups.

VariablesDM (n=408)Non-DM (n=732)
Survivors (n=370)In-hospital death (n=38)p valueSurvivors (n=695)In-hospital death (n=37)p value
+Age (years) +67.9±12.372.8±9.60.02567.6±13.075.7±12.7<0.001
+Sex (male) +74.3%78.9%0.53277.6%59.5%0.011
+Obesity (BMI≥25) +46.1%40.5%0.52035.1%24.2%0.199
+Hypertension +80.3%63.2%0.01464.0%82.9%0.022
+Dyslipidemia +63.3%57.9%0.51045.1%40.0%0.556
+Current smoker +35.9%14.3%0.02036.1%14.3%0.018
+History of CAD +21.9%16.2%0.4228.7%14.3%0.263
+History of stroke +13.8%28.6%0.0229.7%3.2%0.227
+History of atrial fibrillation +8.4%15.8%0.1306.1%27.8%<0.001
+Cardiogenic shock (Killip IV) +6.5%62.2%<0.0014.5%52.8%<0.001
+STEMI +55.4%68.4%0.12364.2%86.1%0.007
+LVEF (%) +49.5±12.050.8±89.3<0.00152.7±11.444.2±13.8<0.001
+Blood glucose (mg/dL) +200±88282±1490.001128±27133±470.252
+Renal dysfunction (eGFR<60) +40.5%81.6%<0.00139.6%84.8%<0.001
+Brain natriuretic peptide (pg/mL) +463.6±935.3972.4±1225.5<0.001279.8±625.9834.9±1146.0<0.001
Revascularization +(emergency PCI or CABG)82.7%73.7%0.16986.3%62.2%<0.001
+- Emergency PCI +74.1%71.1%0.68982.4%54.1%<0.001
+- CABG +13.2%2.6%0.0577.3%10.8%0.435

DM: diabetes mellitus, BMI: body mass index, CAD: coronary artery disease, STEMI: ST-elevation myocardial infarction, LVEF: left ventricular ejection fraction, eGFR: estimated glomerular filtration rate, PCI: percutaneous coronary intervention, CABG: coronary artery bypass grafting

The predictors of in-hospital mortality for both the DM and non-DM groups were analyzed separately using univariate analyses, and the results are shown in Table 4. Any factors found to be statistically significant in the univariate analyses in either group were included in the Cox's proportional hazards model to identify independent predictors of in-hospital death, as shown in Table 5. Consequently, CS, renal dysfunction, and a history of stroke independently predicted in-hospital mortality in the DM group. Conversely, CS and renal dysfunction were independent predictors of in-hospital mortality in the non-DM group. Furthermore, in the non-DM group, patients who underwent revascularization (emergency PCI or CABG) had a lower risk of in-hospital mortality than those who did not, but this difference was not statistically significant in the DM group. An interaction test for in-hospital death using a two-way analysis of variance showed that there was an interaction between “DM” and “a history of stroke” (p=0.006).

Univariate Analyses for In-hospital Death.

VariablesDM (n=408)Non-DM (n=732)
HR95%CIp valueHR95%CIp value
+Age (years) +1.03(0.99-1.06)0.0611.05(1.02-1.08)0.002
+Sex (female) +0.77(0.35-1.69)0.5172.10(1.09-4.06)0.028
+Hypertension +0.45(0.23-0.87)0.0172.45(1.02-5.91)0.046
+History of stroke +1.90(0.91-3.97)0.0870.26(0.36-1.93)0.263
+History of atrial fibrillation +1.90(0.79-4.58)0.154.07(1.93-8.55)<0.001
+Cardiogenic shock (Killip IV) +8.84(4.49-17.41)<0.00110.82(5.48-21.38)<0.001
+STEMI +1.79(0.90-3.57)0.0982.96(1.15-7.63)0.025
+LVEF (%) +1.00(0.99-1.01)0.190.96(0.94-0.99)0.002
+Renal dysfunction (eGFR<60) +4.30(1.89-9.86)<0.00111.32(4.39-29.20)<0.001
Revascularization +(emergency PCI or CABG)0.61(0.30-1.25)0.1780.23(0.12-0.45)<0.001

DM: diabetes mellitus, HR: hazard ratio, CI: confidence interval, STEMI: ST-elevation myocardial infarction, LVEF: left ventricular ejection fraction, eGFR: estimated glomerular filtration rate, PCI: percutaneous coronary intervention, CABG: coronary artery bypass grafting

Multivariate Analyses for In-hospital Death.

VariablesDM (n=408)Non-DM (n=732)
HR95%CIp valueHR95%CIp value
+Age (years) +0.99(0.95-1.03)0.4971.01(0.96-1.04)0.980
+Sex (female) +0.78(0.26-2.38)0.6681.40(0.63-3.01)0.406
+Hypertension +0.81(0.34-1.93)0.6341.38(0.53-3.58)0.506
+History of stroke +2.59(1.07-6.31)0.0360.34(0.045-2.61)0.302
+History of atrial fibrillation +1.60(0.54-4.76)0.3962.07(0.83-5.19)0.119
+Cardiogenic shock (Killip IV) +6.59(2.90-14.95)<0.0014.42(1.99-9.77)<0.001
+STEMI +1.85(0.71-4.80)0.2062.46(0.89-6.71)0.080
+LVEF (%) +0.98(0.95-1.01)0.1600.99(0.96-1.02)0.354
+Renal dysfunction (eGFR<60) +5.64(1.59-20.04)0.0085.92(1.79-19.53)0.004
Revascularization +(emergency PCI or CABG)0.66(0.28-1.58)0.3500.24(0.10-0.56)<0.001

DM: diabetes mellitus, HR: hazard ratio, CI: confidence interval, STEMI: ST-elevation myocardial infarction, LVEF: left ventricular ejection fraction, eGFR: estimated glomerular filtration rate, PCI: percutaneous coronary intervention, CABG: coronary artery bypass grafting

In addition, we focused on patients with CS (n=97) and compared in-hospital mortality between patients with DM (n=47) and those without DM (n=50). In-hospital deaths were observed in 23 CS cases in the DM group (48.9%) and 19 CS cases in the non-DM group (38.0%). The DM group had a higher mortality rate; however, these differences were not statistically significant (p=0.277).

Discussion

The results of this study are summarized here. First, the dominant coronary risk factors and proportion of these risk factors varied between individuals with and without DM. Second, the DM group showed a higher prevalence of non-ST-elevation MI than in non-DM group. Third, among patients with AMI, those with DM had a worse short-term prognosis than those without DM. Indeed, the risk of mortality within 30 days after experiencing an AMI was 1.87 times higher in the DM group than in the non-DM group. Fourth, there were distinct differences in the direct causes of mortality between the two groups. Non-cardiac causes were more prevalent in patients with DM than in those without DM, despite CS being a significant factor in almost half of the cases in both groups. Fifth, the presence of CS on admission and renal dysfunction were identified as independent risk factors for in-hospital mortality in both groups. Furthermore, among patients with DM, a history of stroke was also recognized as an independent factor that could worsen the in-hospital prognosis. The effect of revascularization procedures on in-hospital mortality differed between the DM and non-DM groups. Finally, there was no significant difference in the in-hospital mortality of patients with CS between the DM and non-DM groups.

In Japan, there is a limited amount of research regarding predictors of in-hospital mortality for AMI based on the presence or absence of DM or differences in the specific causes of death. Although we have conducted large-scale studies related to AMI in Japan, such as the JROAD registry (13) and the J-PCI Registry (3), these registry surveys are limited in terms of available parameters, and it is speculated that they may not be suitable for in-depth research analyses.

However, our institution (Iwate Medical University) maintains a detailed database of AMI patients that adheres to the latest definitions, encompassing registrations of over 1,000 individuals. Comprehensive retrospective investigations can be conducted with access to the medical records. Utilizing this database, we can explore predictors of in-hospital mortality in AMI patients based on their DM status, delve into the specific causes of death, and thoroughly examine other related factors.

In terms of differences in clinical presentation, there was a higher prevalence of non-ST-elevation myocardial infarction (NSTEMI) in the DM group than in the non-DM group. To some extent, this may be attributed to the presence of pre-existing collateral circulation due to advanced plaque progression in this population.

Although previous studies have documented an adverse prognosis in AMI patients with comorbid diabetes mellitus (5,14,15), our study adds clarity by demonstrating a substantial impact on mortality. Notably, we identified an HR of 1.87 for mortality, even in a cohort in which nearly 85% of the patients underwent invasive strategies. Cardiovascular deaths (including those due to CS, mechanical complications, and lethal arrhythmias) accounted for nearly 85% of in-hospital fatalities in the non-DM group. Conversely, they constituted only 68% of in-hospital deaths in the DM group, signifying a higher prevalence of noncardiovascular causes of mortality in this population. Infections, strokes, and malignancies have emerged as direct causes of death in this subgroup. Considering the systemic nature of disorders in patients with DM, these results are not surprising, but they underscore the importance of comprehensive care or systemic management for this population to further improve survival rates.

The higher prevalence of stroke as the direct cause of death in the DM group than the non-DM group can be explained as follows: Patients with DM typically exhibit a higher prevalence of diseased aortic walls or a prothrombotic state as well as an increased need for mechanical cardiac support during the perioperative period than those without DM. These additional factors may increase the rate of embolic stroke, which can be induced by catheterization procedures or mechanical support devices as well as by thrombi within the aneurysmal left ventricle. Furthermore, the greater requirement for anticoagulant agents to address these problems may be associated with an elevated risk of hemorrhagic stroke.

In the DM group, we observed a higher prevalence of an advanced Killip status upon admission and a greater frequency of mechanical cardiac support devices than in the non-DM group. Consequently, the patients' conditions tended to deteriorate further from the time of admission than in the non-DM group. Nevertheless, the DM group exhibited lower actual rates of both coronary angiography and revascularization than the non-DM group, similar to a previous report (16). The lower frequency of ST-elevation MI and an increased possibility of asymptomatic patients, concerns related to an impaired renal function, as well as the use of contrast agents may partially explain the lower rate of emergent angiography. The higher frequency of left main coronary artery involvement in the DM group than in the non-DM group led to the reduced use of PCI and increased use of CABG. These factors are hypothesized to not only influence the lower frequency of revascularization procedures but also explain the divergent prognostic outcomes of these procedures between the DM and non-DM groups.

CS continues to be a significant factor influencing mortality in patients with AMI, as supported by numerous previous studies (17-19). However, our findings revealed that there was no marked difference in the in-hospital mortality between DM and non-DM patients with CS, consistent with a previous study (20). Because the management of CS remains a paramount concern in both groups, alternative approaches, such as the utilization of left ventricle unloading devices (21,22) or intracoronary supersaturated oxygen therapy (23), should be explored to enhance the outcomes of patients experiencing CS.

While both groups shared common predictors of in-hospital mortality, such as CS and renal dysfunction, a history of stroke was identified as an independent predictor of in-hospital mortality solely within the DM group. The reasons for this cannot be explained easily. One possible explanation may be that systemic atherosclerosis is more advanced in diabetic patients than in those without DM. Another potential explanation may be that patients with a history of stroke may be frailer than those without such a history. We are currently investigating the mechanisms underlying these results. However, it is essential to pay careful attention to patients with AMI with such a history throughout their hospitalization, especially among patients with DM.

Study limitations

Several limitations associated with the present study warrant mention. In this study, diabetes was defined according to criteria established from prior AMI research and existing literature. Intraday glucose variability and oral glucose tolerance tests were not performed, potentially leading to some cases of diabetes or impaired glucose tolerance being categorized as nondiabetic. This limitation was inherent to this study. Furthermore, despite the availability of the latest 4th version of the universal definition (24), we chose to apply the 3rd version of the universal definition (7) in this study. This decision was made because the 3rd definition was used during the recruitment period. However, it is important to acknowledge that the composition of the enrolled patient population may not have substantially differed; therefore, we employed the 3rd universal definition (25). Finally, the door-to-balloon time is a well-established mortality parameter in AMI patients (26). However, our study had a substantial proportion of NSTEMI patients (approximately 40%); therefore, we did not include this parameter in our analysis.

Conclusion

Among patients with AMI, the 30-day mortality rate was 1.87 times higher in the DM group than in the non-DM group. Patients with DM had a higher occurrence of non-cardiac causes of death than those without DM, with CS being responsible for almost half of the mortality cases in both groups. Independent predictors of in-hospital mortality were CS and renal dysfunction in both patient groups, while a history of stroke was identified as an additional predictor in the DM group. To further improve outcomes for patients with AMI, personalized management that prioritizes addressing non-cardiac comorbidities during hospitalization may be crucial, particularly in patients with DM.

+Author's disclosure of potential Conflicts of Interest (COI). +

Yoshihiro Morino: Honoraria, Boston Scientific, Terumo and Medtronic; Research funding, Boston Scientific, Terumo and Japan Lifeline.

Acknowledgement

The original English document was initially drafted by the authors. However, while refining the English language, the authors partially used the ChatGPT 3.5 AI-powered language model. In addition, we sought assistance from a native English speaker to edit the text in the final stage.

IijimaR, NdrepepaG, MehilliJ, et al. Impact of diabetes mellitus on long-term outcomes in the drug-eluting stent era. Am Heart J +154: 688-693, 2007.17892992 +IshiharaM, FujinoM, OgawaH, et al.; the J-MINUET investigators. Clinical presentation, management and outcome of Japanese patients with acute myocardial infarction in the troponin era - Japanese Registry of Acute Myocardial Infarction Diagnosed by Universal Definition (J-MINUET). Circ J +79: 1255-1262, 2015.25912696 +OzakiY, HaraH, OnumaY, et al.; the Task Force on Primary Percutaneous Coronary Intervention (PCI) of the Japanese Cardiovascular Interventional Therapeutics (CVIT). CVIT expert consensus document on primary percutaneous coronary intervention (PCI) for acute myocardial infarction (AMI) update 2022. Cardiovasc Interv Ther +37: 1-34, 2022.35018605 +SchmittVH, HobohmL, MunzelT, WenzelP, GoriT, KellerK. Impact of diabetes mellitus on mortality rates and outcomes in myocardial infarction. Diabetes Metab +47: 101211, 2021.33259948 +KahnMB, CubbonRM, MercerB, et al. Association of diabetes with increased all-cause mortality following primary percutaneous coronary intervention for ST-segment elevation myocardial infarction in the contemporary era. Diab Vasc Dis Res +9: 3-9, 2012.22067723 +SatoT, OnoT, MorimotoY, et al. Five-year clinical outcomes after implantation of sirolimus-eluting stents in patients with and without diabetes mellitus. Cardiovasc Interv Ther +27: 189-195, 2012.22798196 +ThygesenK, AlpertJS, JaffeAS, et al. Third universal definition of myocardial infarction. Circulation +126: 2020-2035, 2012.22923432 +WheltonPK, CareyRM, AronowWS, et al. 2017 ACC/AHA/AAPA/ABC/ACPM/AGS/APhA/ASH/ASPC/NMA/PCNA guideline for the prevention, detection, evaluation, and management of high blood pressure in adults: executive summary: a report of the American College of Cardiology/American Heart Association Task Force on Clinical Practice Guidelines. Hypertension +71: 1269-1324, 2018.29133354 +American Diabetes Association. 2. Classification and diagnosis of diabetes: Standards of Medical Care in Diabetes - 2020. Diabetes Care +43: S14-S31, 2020.31862745 +KinoshitaM, YokoteK, AraiH, et al.; Committee for Epidemiology and Clinical Management of Atherosclerosis. Japan Atherosclerosis Society (JAS) Guidelines for Prevention of Atherosclerotic Cardiovascular Diseases 2017. J Atheroscler Thromb +25: 846-984, 2018.30135334 +WHO Expert Consultation. Appropriate body-mass index for Asian populations and its implications for policy and intervention strategies. Lancet +363: 157-163, 2004.14726171 +StevensPE, LevinA, Kidney Disease: Improving Global Outcomes Chronic Kidney Disease Guideline Development Work Group Members. Evaluation and management of chronic kidney disease: synopsis of the kidney disease: improving global outcomes 2012 clinical practice guideline. Ann Intern Med +158: 825-830, 2013.23732715 +KanaokaK, OkayamaS, YoneyamaK, et al. Number of board-certified cardiologists and acute myocardial infarction-related mortality in Japan - JROAD and JROAD-DPC registry analysis. Circ J +82: 2845-2851, 2018.30210139 +AhmedB, DavisHT, LaskeyWK. In-hospital mortality among patients with type 2 diabetes mellitus and acute myocardial infarction: results from the national inpatient sample, 2000-2010. J Am Heart Assoc +3: e001090, 2014.25158866 +HofstenDE, LogstrupBB, MollerJE, PellikkaPA, EgstrupK. Abnormal glucose metabolism in acute myocardial infarction: influence on left ventricular function and prognosis. JACC Cardiovasc Imaging +2: 592-599, 2009.19442946 +RasoulS, OttervangerJP, TimmerJR, YokotaS, de BoerMJ, van't HofAW, Zwolle myocardial infection study group. Impact of diabetes on outcome in patients with non-ST-elevation myocardial infarction. Eur J Intern Med +22: 89-92, 2011.21238901 +GoldbergRJ, GoreJM, AlpertJS, et al. Cardiogenic shock after acute myocardial infarction. Incidence and mortality from a community-wide perspective, 1975 to 1988. N Engl J Med +325: 1117-1122, 1991.1891019 +VergaraR, ValentiR, MiglioriniA, et al. A new risk score to predict long-term cardiac mortality in patients with acute myocardial infarction complicated by cardiogenic shock and treated with primary percutaneous intervention. Am J Cardiol +119: 351-354, 2017.27884422 +ZeymerU, VogtA, ZahnR, et al.: the Arbeitsgemeinschaft Leitende Kardiologische Krankenhausärzte (ALKK). Predictors of in-hospital mortality in 1333 patients with acute myocardial infarction complicated by cardiogenic shock treated with primary percutaneous coronary intervention (PCI); results of the primary PCI registry of the Arbeitsgemeinschaft Leitende Kardiologische Krankenhausärzte (ALKK). Eur Heart J +25: 322-328, 2004.14984921 +ParcoC, TrostlerJ, BrockmeyerM, et al. Risk-adjusted management in catheterization procedures for non-ST-segment elevation myocardial infarction: a standard operating procedure pilot study. Int J Cardiol +388: 131111, 2023.37302420 +SchrageB, IbrahimK, LoehnT, et al. Impella support for acute myocardial infarction complicated by cardiogenic shock. Circulation +139: 1249-1258, 2019.30586755 +SinghH, MehtaRH, O'NeillW, et al. Clinical features and outcomes in patients with cardiogenic shock complicating acute myocardial infarction: early vs recent experience with impella. Am Heart J +238: 66-74, 2021.33848505 +O'NeillWW, MartinJL, DixonSR, et al.; AMIHOT Investigators. Acute Myocardial Infarction with Hyperoxemic Therapy (AMIHOT): a prospective, randomized trial of intracoronary hyperoxemic reperfusion after percutaneous coronary intervention. J Am Coll Cardiol +50: 397-405, 2007.17662390 +ThygesenK, AlpertJS, JaffeAS, et al.; the Executive Group on behalf of the Joint European Society of Cardiology (ESC)/American College of Cardiology (ACC)/American Heart Association (AHA)/World Heart Federation (WHF) Task Force for the Universal Definition of Myocardial Infarction. Fourth universal definition of myocardial infarction (2018). Circulation +138: e618-e651, 2018.30571511 +ThygesenK. What's new in the Fourth Universal Definition of Myocardial infarction? +Eur Heart J +39: 3757-3758, 2018.30403805 +NakamuraM, YamagishiM, UenoT, et al. Current treatment of ST elevation acute myocardial infarction in Japan: door-to-balloon time and total ischemic time from the J-AMI registry. Cardiovasc Interv Ther +28: 30-36, 2013.22983884 +
\ No newline at end of file diff --git a/tests/data/xml/1349-7235-63-2621.nxml b/tests/data/xml/1349-7235-63-2621.nxml new file mode 100644 index 00000000..1cde7b7e --- /dev/null +++ b/tests/data/xml/1349-7235-63-2621.nxml @@ -0,0 +1,26 @@ + +
pmcIntern MedIntern MedInternal Medicine0918-29181349-7235The Japanese Society of Internal Medicine +3840376811518612 +10.2169/internalmedicine.3047-23Original ArticleThe Diversity of Neurological Complications Associated with Herpes Zoster: A Retrospective Case Series of 26 PatientsNemotoJoe12OgasawaraJun-ichi1KogaMichiaki2 +Department of Neurology, Tokuyama Central Hospital, Japan +Department of Neurology and Clinical Neuroscience, Yamaguchi University Graduate School of Medicine, Japan

Correspondence to Joe Nemoto, nemoto@yamaguchi-u.ac.jp

262202411020246319262126251010202327122023Copyright © 2024 by The Japanese Society of Internal Medicinehttps://creativecommons.org/licenses/by-nc-nd/4.0/The Internal Medicine is an Open Access journal distributed under the Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International License. To view the details of this license, please visit (https://creativecommons.org/licenses/by-nc-nd/4.0/).Objective

This study clarified a variety of neurological phenotypes associated with varicella-zoster virus (VZV) reactivation.

Methods

This retrospective single-center study included consecutive patients with herpes zoster accompanied by neurological disturbances from April 2016 to September 2022. A comparative analysis was performed to examine whether or not the neurological phenotype and severity were associated with the distribution of herpes zoster, clinical and laboratory findings, and treatments.

Results

Twenty-six patients with a median age of 74 years old were enrolled. None of the patients had been vaccinated against herpes zoster. Of the 26 patients, 14 (54%) developed monoparesis, 5 (19%) developed meningitis, 5 (19%) developed encephalitis, 1 (4%) developed paraplegia, and 1 (4%) developed bladder and rectal problems. Monoparesis of the upper limb is associated with herpes zoster involving the cervical and thoracic dermatomes, whereas meningitis and encephalitis often occur in patients with herpes zoster in the trigeminal and thoracic dermatomes. Neurological disability was generally severe [modified Rankin Scale (mRS) score ≥3] on admission [17 of 26 (65%) patients]. Good recovery after admission was associated with a lower mRS value before the onset of neurological disability, clinical meningitis, and elevated cell counts and protein levels in the cerebrospinal fluid. Good recoveries were observed in patients with herpes zoster in the trigeminal or thoracic dermatomes more frequently than in other dermatomes.

Conclusion

This study revealed that VZV-related neurological complications are heterogeneous, commonly leading to severe disability and poor outcomes, and that neurological phenotypes and outcomes are related to the distribution of herpes zoster.

herpes zosterneurological complicationsmonoparesismeningitisencephalitis
Introduction

Varicella zoster virus (VZV) is a common pathogen that causes herpes zoster. Most Japanese people are thought to be in a state of latent VZV infection, and one-third of the Japanese population develops herpes zoster associated with reactivation of the virus by 80 years old (1). In addition to herpes zoster, reactivation of VZV is associated with various neurological disorders, including radiculitis, meningitis, and encephalitis (2). The extent of neurological disability varies from person to person; however, neurological recovery is generally incomplete in patients with neurological complications (3). Why neurological phenotypes and extent of neurological disability vary in relation to a single condition remains unclear.

We conducted a single-center retrospective study of patients with neurological complications associated with herpes zoster to clarify the variety of neurological deficits and the outcomes of these deficits.

Materials and MethodsStudy design

This was a single-center observational retrospective study conducted at Tokuyama Central Hospital.

Ethics

The study was approved by the institutional review board of Tokuyama Central Hospital (number: K446-20220706).

Data collection

Twenty-six consecutive patients with herpes zoster associated with neurological complications were enrolled. All patients were admitted to the Department of Neurology, Tokuyama Central Hospital between April 2016 and September 2022. Clinical data, including patient age, sex, herpes zoster, neurological findings, results of cerebrospinal fluid (CSF) assessments at admission, treatments, and modified Rankin Scale (mRS) values before the onset of neurological manifestations, at the nadir of manifestations, and at discharge, were collected from medical records.

The diagnosis of herpes zoster

The diagnosis of herpes zoster was performed by primary care physicians, dermatologists, or neurologists and was based on visual inspection of the skin rash with or without polymerase chain reaction (PCR) confirmation from swab specimens, although the reactivation of VZV was confirmed by PCR of CSF specimens in previous studies (3,4). Herpes zoster has been observed in the trigeminal, cervical, thoracic, lumbar, and sacral dermatomes. Patients taking immunosuppressant medications and those with a history of diabetes were considered immunocompromised. The following neurological complications were observed: monoparesis, meningitis, encephalitis, paraplegia, and bladder/rectal disturbance. Monoparesis was defined as monoparesis without meningeal irritation, ongoing disturbance of consciousness, or seizures (3). Meningitis was defined as meningeal irritation without ongoing disturbance of consciousness, seizures, or limb paresis (3). Encephalitis was defined as an ongoing disturbance of consciousness or seizures irrespective of meningeal irritation (3). Paraplegia was defined as paraplegia without upper limb paresis, meningeal irritation, ongoing disturbance of consciousness, or seizures. Bladder/rectal disturbances were defined as new-onset subjective bladder or defecation symptoms without paresis, meningeal irritation, ongoing disturbance of consciousness, and seizures. Severe neurological disability was defined as an mRS score ≥3. The nadir period was defined as the period of the most severe neurological symptoms assessed by a neurologist. Good neurological recovery was defined as a decrease in the mRS score of ≥2 from the nadir period to discharge.

Statistical analyses

The EZR software program (Saitama Medical Center, Jichi Medical University, Saitama, Japan) was used to perform statistical analyses. Values of p<0.05 by the Mann-Whitney U-test or Fisher's exact test were considered significant. All tests were two-sided.

ResultsCharacteristics of neurological disturbances in patients with herpes zoster

The study included 14 men and 12 women. The median age of the onset was 74 (range, 23-84) years old. None of the patients had been vaccinated against herpes zoster. Of the 26 patients, 14 (54%) developed monoparesis, 5 (19%) developed meningitis, 5 (19%) developed encephalitis, 1 (4%) developed paraplegia, and 1 (4%) developed bladder and rectal disturbances. None of the patients had any neuroophthalmic manifestations. The median age of patients with meningitis was 31 years old, which was significantly lower than that of other types of patients (p=0.0018). The median number of days from the onset of herpes zoster to the onset of neurological manifestations was 4 (range, -16-64) days. The median number of days from the onset of neurological manifestations to the first visit to our Department of Neurology was 7 (range, 0-54) days. Ten patients (38%) were immunocompromised. A PCR analysis for VZV using CSF samples was positive in 6 of the 20 (30%) patients tested. The median number of days from the onset of herpes zoster to the first visit to our department was significantly shorter in the PCR-positive patients than in the PCR-negative one (2 days vs. 34 days; p=0.0019), but other clinical characteristics did not significantly differ between the groups.

Seventeen (65%) patients received oral antiviral agents before their first visit to the Department of Neurology. Of these patients, eight received amenamevir, an oral antiviral agent that was thought to be unable to cross the blood-brain barrier (5). Every patient received intravenous acyclovir after admission, and intravenous methylprednisolone pulse therapy (1,000 mg/day for 3 days) or oral prednisolone (1 mg/kg body weight/day for 5 days) was administered to 18 (69%) patients. There were no significant differences in the age, sex, CSF findings, or mRS score at each point between the steroid-treated and non-steroid-treated groups.

Relationship between neurological manifestations and herpes zoster

The associations between neurological phenotypes and herpes zoster distribution are shown in Table 1. Of note, herpes zoster was detected in the cervical and thoracic dermatomes of all 12 patients with upper limb monoparesis, whereas it was detected in the lumbar and sacral dermatomes of all patients with lower limb monoparesis, paraplegia, or bladder/rectal disturbances. Furthermore, herpes zoster was confirmed in the trigeminal or thoracic dermatomes of all patients with meningitis and encephalitis.

Association of Location of Herpes Zoster with Neurological Phenotypes.

Neurological phenotypeHerpes zoster
Trigeminal (n=3)Cervical (n=10)Thoracic (n=13)Lumbar (n=6)Sacral (n=2)
MonoparesisU/E (n=12)09610
L/E (n=2)00021
Meningitis(n=5)10400
Encephalitis(n=5)21310
Paraplegia(n=1)00011
Bladder/rectal disturbance(n=1)00010

U/E: upper extremities, L/E: lower extremities

Neurological disability at nadir

Seventeen (65%) patients had severe disability (mRS score ≥3) at the nadir. Patients with severe disabilities had longer hospitalization durations than those without severe disabilities (p=0.023). Other clinical characteristics, including the age, immunocompromised condition, mRS value before onset, CSF findings, and type of therapy, were not significantly associated with severe disability at nadir (Table 2). Extensive distribution of herpes zoster (≥2 areas among 5) was identified in 6 (35%) severely disabled patients but was not significantly related to neurological severity (p=0.36).

Clinical Characteristics of Patients with Severe Neurological Disability Subsequent to Herpes Zoster.

Neurological disability at nadirp value
Severe (n=17)aNot severe (n=9)
Median age (range)79 (23-84)68 (31-83)NS
Herpes zosterTrigeminal, n (%)3 (100%)0 (0%)NS
Cervical, n (%)7 (70%)3 (30%)NS
Thoracic, n (%)7 (54%)6 (46%)NS
Lumbar, n (%)5 (83%)1 (17%)NS
Sacral, n (%)2 (100%)0 (0%)NS
Immunocompromised condition, n (%)6 (60%)4 (40%)NS
Median mRS before onset (range)0 (0-4)0 (0-0)NS
Median days from onset of neurological symptom to first visit (range)9 (0-38)6 (1-54)NS
Neurological phenotypeMonoparesis, n (%)8 (57%)6 (43%)NS
Meningitis, n (%)3 (60%)2 (40%)NS
Encephalitis, n (%)5 (100%)0 (0%)NS
CSFCell count (/μL), median (range)22 (0-371)10 (0-202)NS
Protein (mg/dL), median (range)75 (42-217)56 (38-173)NS
TherapyAcyclovir, n (%)17 (100%)9 (100%)NS
Steroid, n (%)13 (76%)5 (56%)NS
Median hospitalization days (range)27 (6-77)18 (14-70)0.023

NS: not significant (p≥0.05), mRS: modified Rankin Scale. CSF: cerebrospinal fluid

aDefined by mRS of 3 or more at nadir.

Recovery from severe neurological disability

Of the 17 severely disabled patients, 8 (47%) showed a good neurological recovery by discharge (defined as a decrease in the mRS score of ≥2 from nadir to discharge) (Table 3). Elevated CSF cell counts and protein levels were significantly associated with a good recovery (p=0.038 and p=0.027, respectively). Furthermore, all 3 severely disabled patients with meningitis were determined to have obtained a good recovery, but the p value was not significant (p=0.082). More patients with herpes zoster located in the trigeminal or thoracic dermatomes showed a better recovery than those with herpes zoster in other dermatomes (70% vs. 14%; p=0.0498). None of the patients who had been treated with steroids showed a good recovery. The frequency of a good recovery was significantly lower in the steroid-treated group than in the non-steroid-treated group (p=0.029). Other clinical characteristics, including the age, immunocompromised status, and mRS before the onset, were not associated with a good recovery.

Comparison between the Clinical Characteristics of Patients with and without Good Recovery from Severely Disabled Condition at Nadir.

Neurological recoveryp value
Good (n=8)aPoor (n=9)
Median age (range)77 (23-84)79 (69-83)NS
Herpes zosterTrigeminal, n (%)2 (67%)1 (33%)NS
Cervical, n (%)2 (29%)5 (71%)NS
Thoracic, n (%)5 (71%)2 (29%)NS
Lumbar, n (%)1 (20%)4 (80%)NS
Sacral, n (%)0 (0%)2 (100%)NS
Immunocompromised condition, n (%)2 (33%)4 (67%)NS
Median mRS before onset (range)0 (0-1)0 (0-4)NS
Median days from onset of neurological symptom to first visit (range)4 (0-33)11 (0-38)NS
Neurological phenotypeMonoparesis, n (%)2 (25%)6 (75%)NS
Meningitis, n (%)3 (100%)0 (0%)NS
Encephalitis, n (%)3 (60%)2 (40%)NS
CSFCell count (/μL), median (range)51 (8-371)9 (0-328)0.038
Protein (mg/dL), median (range)116 (69-217)62 (42-205)0.027
TherapyAcyclovir, n (%)8 (100%)9 (100%)NS
Steroid, n (%)4 (50%)9 (100%)0.029
Median hospitalization days (range)24 (15-49)39 (6-77)NS

NS: not significant (p≥0.05), mRS: modified Rankin Scale. CSF: cerebrospinal fluid

aDefined by decreased of mRS of 2 or more from nadir to discharge.

This study included three patients who had already been disabled (mRS score of ≥2) before the onset of neurological manifestations, and none of these three patients achieved a good recovery. Among the 6 severely disabled patients with extensive distribution of herpes zoster, 4 (67%) had a poor neurological recovery. The extensive distribution of herpes zoster was not related to the neurological recovery (p=0.62).

Discussion

We found that the neurological complications in 26 patients with herpes zoster included monoparesis, meningitis, and encephalitis, and that they were associated with the distribution of herpes zoster. Among the 17 severely disabled patients, 47% had achieved a good recovery by discharge. None of the patients who received steroids showed a good recovery. The frequency of a good recovery was significantly lower in the steroid-treated patients than in the non-steroid-treated patients.

The proportion of patients with specific neurological phenotypes associated with VZV infections has been investigated in French populations, and investigators found that 23% of patients exhibited monoparesis and cranial nerve palsy, 38% exhibited meningitis, and 39% exhibited encephalitis (3). In contrast, we found that a smaller proportion of VZV-infected patients in the Japanese population had meningitis (19%) or encephalitis (19%). Although this discrepancy might reflect racial or geographic differences between populations, we believe that the discrepancy between the results might be accounted for by the differences between the study inclusion criteria for patients. The French investigators only included patients in whom VZV reactivation had been confirmed by PCR of CSF specimens, whereas our study also included patients in whom CSF specimens were not tested by PCR. The difference between the criteria may have biased the results regarding the proportions of neurological phenotypes. Patients with monoparesis might have been excluded from the French study by not conducting a CSF analysis, leading to a larger proportion of patients with encephalitis or meningitis. It is also possible that the proportions of neurological phenotypes differ depending on the characteristics of the VZV infecting the hosts. Therefore, further investigation is warranted.

Our study found that limb paralysis was closely associated with the distribution of prior herpes zoster episodes in patients, which suggests that reactivation of VZV in the dorsal root ganglia affects the nearby motor neurons. In contrast, all patients with encephalitis and meningitis in our study had herpes zoster within the trigeminal, thoracic, or both dermatomes. This result is compatible with a previous report that herpes zoster is frequently located within the trigeminal or thoracic dermatomes in patients with VZV meningitis [6 of 9 (67%) patients] (6). Why inflammation can spread from the thoracic dorsal root ganglion to the distant cerebrum and meninges remains unclear. There may be a particular mechanism underlying distant spread across the nervous system.

This study showed that increased cell counts and CSF protein levels, decreased mRS values before the onset, and no use of steroids were associated with a good neurological recovery in our study patients, which is partly consistent with previous findings (3,4). We also discovered a novel relationship between the neurological recovery and herpes zoster location, possibly due in part to the fact that patients with a meningitis phenotype often have herpes zoster in the trigeminal or thoracic dermatomes and also often show a good recovery. Further research involving a larger study population is needed to clarify whether or not the distribution of herpes zoster is associated with the neurological outcome.

Whether or not steroids are effective in the treatment of neurological complications associated with VZV reactivation remains unclear. In our study, none of the steroid-treated patients showed a good recovery; however, steroids were often used in severe cases [13 of 18 patients (72%)], indicating that the effectiveness of steroids could not be adequately evaluated in our study. The Association of British Neurologists has recommended corticosteroids be used to treat VZV encephalitis in patients with concomitant vasculitis. However, the French Federation of Neurology does not recommend treatment with corticosteroids, irrespective of vasculitis (7,8). Steroids may have an effect on the treatment of VZV-associated vasculopathy (9). Randomized controlled trials should be conducted to determine the efficacy of steroids for neurological complications associated with VZV.

In conclusion, we found that the diversity of neurological complications manifested by the reactivation of VZV was associated with the distribution of herpes zoster. The limitations of this study are the relatively small number of study patients (n=26) and the retrospective nature of the study. Our findings should be confirmed in larger-scale prospective studies.

+The authors state that they have no Conflict of Interest (COI). +

ShirakiK, ToyamaN, DaikokuT, YajimaM, Miyazaki Dermatologist Society. Herpes zoster and recurrent herpes zoster. Open Forum Infect Dis +4: ofx007, 2017.28480280 +NemotoJ, KandaT. Varicella-zoster virus infection in the central nervous system. Brain Nerve +74: 1171-1178, 2022.36198642 +LenfantT, L'HonneurAS, RanqueB, et al. Neurological complications of varicella zoster virus reactivation: prognosis, diagnosis, and treatment of 72 patients with positive PCR in the cerebrospinal fluid. Brain Behav +12: e2455, 2022.35040287 +MirouseA, SonnevilleR, RazaziK, et al. Neurologic outcome of VZV encephalitis one year after ICU admission: a multicenter cohort study. Ann Intensive Care +12: 32, 2022.35380296 +OhtsuY, SusakiY, NoguchiK. Absorption, distribution, metabolism, and excretion of the novel helicase-primase inhibitor, amenamevir (ASP2151), in rodents. Eur J Drug Metab Pharmacokinet +43: 693-706, 2018.29748821 +TakeshimaS, ShigaY, HimenoT, et al. Clinical, epidemiological and etiological studies of adult aseptic meningitis: report of 11 cases with varicella zoster virus meningitis. Rinsho Shinkeigaku (Clin Neurol) +57: 492-498, 2017(in Japanese).Martinez-AlmoynaL, De BrouckerT, MaillesA, StahlJP. Management of infectious encephalitis in adults: highlights from the French guidelines (short version). Rev Neurol (Paris) +175: 436-441, 2019.31376994 +SolomonT, MichaelBD, SmithPE, et al.; the National Encephalitis Guidelines Development and Stakeholder Groups. Management of suspected viral encephalitis in adults - Association of British Neurologists and British Infection Association National Guidelines. J Infect +64: 347-373, 2012.22120595 +NagelMA, JonesD, WybornyA. Varicella zoster virus vasculopathy: the expanding clinical spectrum and pathogenesis. J Neuroimmunol +308: 112-117, 2017.28335992 +
\ No newline at end of file diff --git a/tests/data/xml/1349-7235-63-2651.nxml b/tests/data/xml/1349-7235-63-2651.nxml new file mode 100644 index 00000000..ad2297fd --- /dev/null +++ b/tests/data/xml/1349-7235-63-2651.nxml @@ -0,0 +1,98 @@ + +
pmcIntern MedIntern MedInternal Medicine0918-29181349-7235The Japanese Society of Internal Medicine +3840376311518610 +10.2169/internalmedicine.3169-23Case ReportAtypical Hemolytic Uremic Syndrome Triggered by Acute Pancreatitis in a Patient with a Membrane Cofactor Protein (CD46) Genetic VariantMochizukiKosuke1TodaNaohiro1FujitaMasaaki2KurahashiSatoshi1HirashimaHisako1YoshiokaKazuki3KitagawaTomoya3IshiiAkira1KomiyaToshiyuki1 +Department of Nephrology, Kansai Electric Power Hospital, Japan +Department of Rheumatology, Kansai Electric Power Hospital, Japan +Department of Hematology, Kansai Electric Power Hospital, Japan

Correspondence to Dr. Naohiro Toda, natoda@kuhp.kyoto-u.ac.jp

26220241102024631926512654811202327122023Copyright © 2024 by The Japanese Society of Internal Medicinehttps://creativecommons.org/licenses/by-nc-nd/4.0/The Internal Medicine is an Open Access journal distributed under the Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International License. To view the details of this license, please visit (https://creativecommons.org/licenses/by-nc-nd/4.0/).

Atypical hemolytic uremic syndrome (aHUS) is a type of HUS. We herein report a case of aHUS triggered by pancreatitis in a patient with a heterozygous variant of membrane cofactor protein (MCP; P165S), a complement-related gene. Plasma exchange therapy and hemodialysis improved thrombocytopenia and anemia without leading to end-stage kidney disease. This MCP heterozygous variant was insufficient to cause aHUS on its own. Pancreatitis, in addition to a genetic background with a MCP heterozygous variant, led to the manifestation of aHUS. This case supports the “multiple hit theory” that several factors are required for the manifestation of aHUS.

atypical HUS +MCP variantmultiple hit theorypancreatitis
Introduction

Atypical hemolytic uremic syndrome (aHUS) is a type of thrombotic microangiopathy (TMA) characterized by acute kidney injury, thrombocytopenia, and microangiopathic hemolytic anemia. However, internationally unified diagnostic criteria for aHUS have not yet been established.

In the Kidney Disease: Improving Global Outcomes (KDIGO) classification, TMA is classified into four categories: STEC-HUS induced by Shiga toxin-producing Escherichia coli (STEC) infection, thrombotic thrombocytopenic purpura (TTP), “primary aHUS,” and “secondary aHUS.” TTP is caused by a marked deficiency in a disintegrin-like and metalloproteinase with thrombospondin type 1 motifs 13 (ADAMTS-13) activity, either because of genetic abnormalities or acquired autoantibodies. Conversely, more than 90% of HUS cases are STEC-HUS, and the remaining 10% are aHUS, which does not involve STEC infection (1,2). The term “primary aHUS” is used when an underlying abnormality of the alternative pathway of complement is strongly suspected, and other causes of “secondary aHUS” have been excluded.

Pathogenic genetic variants in a patient with aHUS include complement factor H (CFH), membrane cofactor protein (MCP; CD46), complement factor I (CFI), complement 3 (C3), complement factor B (CFB), thrombomodulin (THBD), complement factor H related protein 1 (CFHR1), complement factor H related protein 5 (CFHR5), and diacylglycerol kinase epsilon (DGKE) (3-6). Fujisawa et al. reported that, in an analysis of 118 aHUS patients in Japan, the frequencies of C3, CFH, MCP and DGKE genetic abnormalities were 32 (27%), 10 (8%), 5 (4%), and 1 (0.8%), respectively, and the frequency of anti-CFH antibodies was 20 (17%). Unidentified genetic abnormalities were reported in 36 patients (30%) (7). However, even in some patients, a complement abnormality could not be identified.

In such cases, several triggers are considered to be related to the manifestation of aHUS. The triggers include autoimmune conditions, transplants, pregnancy, infections, drugs, and metabolic conditions, which we have collectively classified as “secondary aHUS.”

We herein report a patient with an underlying genetic variant of MCP who developed aHUS triggered by the onset of acute pancreatitis.

Case Report

A 49-year-old man with no medical or family history of TMA presented with pancreatic swelling and an elevated IgG4 level of 139 mg/dL. Endoscopic ultrasound-guided fine-needle aspiration (EUS-FNA) was performed for suspected autoimmune pancreatitis (AIP) on day X. The pathology results of the pancreas submitted after EUS-FNA were negative for AIP, and the pancreas was diagnosed as normal.

The laboratory data are shown in Table 1. After EUS-FNA, the patient complained of left-sided abdominal pain, and the pancreatic amylase level was found to have increased to 1,547 U/L. The patient's vital signs were as follows: body temperature, 37.5°C; and blood pressure, 136/74 mmHg. Contrast-enhanced computed tomography (CT) revealed a contrast-impaired area of the pancreatic tail and increased peripancreatic fatty tissue density (Figure A). The patient was diagnosed with acute pancreatitis after EUS-FNA. Treatment was started with fasting, analgesia with acetaminophen, treatment with nafamostat-mesylate, and large extracellular fluid replacement of 4,000 mL/day. Serum creatinine increased from 0.75 to 1.33 mg/dL, and the estimated glomerular filtration rate (eGFR) decreased from 87 to 46.5, indicating acute kidney injury. The urinary protein excretion was 6.15 g/gCr, and hematuria (3+) was observed. Blood samples showed progression of anemia from Hb 15.5 to 12.4 mg/dL, and platelets decreased from 313,000 to 5,000/μL. Schistocytes were detected at a rate of 50-70/2,000 red blood cells (RBCs), lactate dehydrogenase (LDH) levels were elevated to 2,469 U/L, and haptoglobin was 23 mg/dL.

Progress of Lab-date in This Case.

VariableDAY0DAY2DAY3DAY4DAY7DAY11DAY14
WBC (×103/μL)5411210510721017177
Haemoglobin (g/dL)15.512.410.58.87.27.98.3
Platelets (×104/μL)31.30.52.11.619.663.883
Cr (mg/dL)0.751.331.511.671.3410.98
LDH (U/L)1512,4692,5132,024550447362
T-Bil (mg/dL)0.774.354.574.491.9810.82
P-Amy (U/L)341,6321,080302196134173
CRP (mg/dL)0.4716.7625.9515.2121.225.521.43
Haptoglobin (mg/dL)23<1088

Abdominal computed tomography (CT) findings in this patient. (A) Day X+2 after performing endoscopic ultrasound-guided fine needle aspiration (EUS-FNA). The pancreatic body tail has a mildly reduced contrast effect in the arterial phase, consistent with the findings of acute pancreatitis. (B) Day X+7. CT indicates a low-absorption area suspected of being walled-off necrosis (WON) around the peripancreatic to the gastric body and gastric antrum.

Based on these findings, plasma exchange therapy (PE) was initiated on day X+4. Hemodialysis (HD) was initiated because of oliguria and a tendency toward weight gain. Methylprednisolone (500 mg) was administered. An analysis to evaluate the course of TMA revealed serum levels of C3, C4, and CH50 at 91, 25, and 37.8/mL, respectively. The patient had no diarrhea, and Shiga toxin levels were negative. The ADAMTS-13 activity was 44%, and ADAMTS-13 inhibitor was negative. The Coombs test results were negative. Based on these findings, we diagnosed the patient with secondary TMA secondary to pancreatitis. PE and HD were terminated on day X+7 because the TMA activity had settled and the fluid volume status improved.

The patient was found to have suffered a relapse of inflammation and showed elevated pancreatic enzymes on day X+7. CT showed pancreatic swelling and hypo-absorptive areas in the peripancreatic, gastric fold, and transverse colonic mesentery, suggesting the formation of walled-off necrosis (WON) (Figure B). The WON improved with antibiotic treatment. After confirming no recurrence of postprandial abdominal pain, the patient was discharged on day X+26.

We outsourced next-generation sequencing of complement-related genetic abnormalities to the KAZUSA DNA Research Institute. In the laboratory, CFH, CFI, MCP, C3, CFB, THBD, DGKE, and CFHR5 were analyzed using next-generation sequencing hybridization capture methods for rare single nucleotide substitutions and deletions with an allele frequency of <0.5%. In addition, complement function tests (sheep erythrocyte hemolysis test) and anti-CFH antibody tests were performed. The sheep erythrocyte hemolysis test was performed because it is useful for detecting genetic mutations in CFH and anti-CFH antibodies. The results showed the absence of anti-CFH antibodies (8). Genetic testing revealed a 493-base cytosine (C) to thymine (T) mutation in MCP (MCP P165S), a complement-related gene responsible for atypical HUS, resulting in a missense variant of proline-to-serine substitution and a heterozygous mutation in MCP. Based on the MCP findings, we considered this case to potentially be primary aHUS triggered by acute pancreatitis.

Discussion

We herein report a patient with a genetic mutation in MCP, a gene associated with the complement-related pathway, who developed aHUS following pancreatitis after EUS-FNA.

In the present case, the patient had a missense variant of MCP (MCP P165S). A previous report indicated a 50% reduction in MCP expression in leukocytes in patients with the MCP P165S variant (9). Another study reported that a 50% reduction in MCP expression leads to a decrease in the binding ability of C3b to <50% compared to normal MCP expression (10). The MCP P165S variant is not registered in Clinvar but is categorized as “likely pathogenic” according to the The American College of Medical Genetics and Genomics guidelines (ACMG guidelines) (11). Esparaza-Gordillio et al. reported families with the same genetic variant as this case and found that patients with only the MCP variant did not manifest aHUS, whereas those with coexisting the CFI mutation and MCPggaac single-nucleotide variant haplotype block, another variant of MCP, did manifest aHUS (9,12,13). The clinical characteristics of the patients with the MCP P165S variant are summarized in Table 2. In the present case, only the protein-coding region exons of CFH, CFI, CD46, C3, CFB, THBD, and DGKE and their intron boundaries were searched using the next-generation sequencer, and the multiple ligation-dependent probe amplification (MLPA) method was not used to detect structural variants. The lack of a genetic analysis using MLPA is considered a limitation of this case (14).

Profiles of the Patients with MCP P165S Variant.

patientMCP mutationOther gene variantsexAge at onset (yr)Triggersonset of aHUSoutcome at first episodereference
This caseP165SM49pancreatitis+Remission
HUS68P165SCFI(T538X) MCP ggaacF57n.a.+Remission(9)
HUS84P165SCFI(T538X) MCP ggaacF41No trigger+Remission(9)
III-10P165SM52-(9)
III-11P165SCFI(T538X)M54-(9)
IV-1P165SCFI(T538X)F37-(9)
IV-2P165SCFI(T538X)M35-(9)
IV-3P165SF30-(9)

MCPggaac: one type of MCP risk haplotype of aHUS that has been reported to increase the penetrance of aHUS

Several triggers are thought to be involved in the manifestation of aHUS, in addition to genetic mutations, including infection, pregnancy, transplantation, metabolic diseases, vasculitis, and pancreatitis, called the “multiple hit hypothesis” (13,15-17). Among the reported triggers, cases of aHUS triggered by pancreatitis are rare, accounting for just 3% (4/110) of secondary aHUS cases (18-21). Previously reported cases of aHUS triggered by pancreatitis were not specifically investigated for complement-related gene mutations, so whether or not complement-related gene mutations other than pancreatitis have any effects on the manifestation of aHUS is unclear.

In the present case, aHUS developed in a patient with a genetic variant (MCP P165S) that originally did not meet the threshold for aHUS development due to pancreatitis after EUS-FNA. This shows that several triggers, not just genetic mutations, are involved in the development of aHUS, supporting the “multiple hit hypothesis.” Patients with MCP variants have a better prognosis and lower probability of developing end-stage kidney disease (ESKD) and death than patients with other genetic mutations, such as CFH, CFI, C3, and THBD (13,17,22).

The patient in this case responded well to plasma exchange therapy and PE. He recovered his kidney function, supporting the relatively good prognosis of patients with MCP mutations compared to other aHUS-related gene mutations. Although the efficacy of eculizumab as a treatment for aHUS has been described in recent years, eculizumab was not used in this case, as the patient had a good clinical course with plasma exchange therapy and HD (17,19,21). In addition, infection with WON after pancreatitis was suspected on day X+7; therefore, it was difficult to use eculizumab, which produces immunosuppressive effects. However, the use of eculizumab should be considered in the future if aHUS relapse is triggered by some event.

In conclusion, we encountered a case of aHUS triggered by acute pancreatitis after EUS-FNA in a patient with a heterozygous variant of MCP (MCP P165S), which is considered to not manifest aHUS. We speculate that the heterozygous variant of MCP in this case did not induce aHUS alone, instead representing a second hit by pancreatitis-induced aHUS.

+The authors state that they have no Conflict of Interest (COI). +

Acknowledgement

We thank Dr. Yoshitaka Tatematsu, Department of Nephrology, Nagoya University Hospital, for his valuable comments on the complement-related gene analysis.

+ +GoodshipTH, CookHT, FakhouriF, et al. Atypical hemolytic uremic syndrome and C3 glomerulopathy: conclusions from a “kidney disease: improving global outcomes” (KDIGO) Controversies Conference. Kidney Int +91: 539-551, 2017.27989322 + + +NorisM, RemuzziG. Atypical hemolytic-uremic syndrome. N Engl J Med +361: 1676-1687, 2009.19846853 + + +CaprioliJ, NorisM, BrioschiS, et al. Genetics of HUS: the impact of MCP, CFH, and IF mutations on clinical presentation, response to treatment, and outcome. Blood +108: 1267-1279, 2006.16621965 + + +FangCJ, Fremeaux-BacchiV, LiszewskiMK, et al. Membrane cofactor protein mutations in atypical hemolytic uremic syndrome (aHUS), fatal Stx-HUS, C3 glomerulonephritis, and the HELLP syndrome. Blood +111: 624-632, 2008.17914026 + + +Fremeaux-BacchiV, MoultonEA, KavanaghD, et al. Genetic and functional analyses of membrane cofactor protein (CD46) mutations in atypical hemolytic uremic syndrome. J Am Soc Nephrol +17: 2017-2025, 2006.16762990 + + +Fremeaux-BacchiV, Dragon-DureyMA, BlouinJ, et al. Complement factor I: a susceptibility gene for atypical haemolytic uraemic syndrome. J Med Genet +41: e84, 2004.15173250 + + +FujisawaM, KatoH, YoshidaY, et al. Clinical characteristics and genetic backgrounds of Japanese patients with atypical hemolytic uremic syndrome. Clin Exp Nephrol +22: 1088-1099, 2018.29511899 + + +YoshidaY, MiyataT, MatsumotoM, et al. A novel quantitative hemolytic assay coupled with restriction fragment length polymorphisms analysis enabled early diagnosis of atypical hemolytic uremic syndrome and identified unique predisposing mutations in Japan. PLoS One +10: e0124655, 2015.25951460 + + +Esparza-GordilloJ, JorgeEG, GarridoCA, et al. Insights into hemolytic uremic syndrome: segregation of three independent predisposition factors in a large, multiple affected pedigree. Mol Immunol +43: 1769-1775, 2006.16386793 + + +RichardsA, KempEJ, LiszewskiMK, et al. Mutations in human complement regulator, membrane cofactor protein (CD46), predispose to development of familial hemolytic uremic syndrome. Proc Natl Acad Sci U S A +100: 12966-12971, 2003.14566051 + + +RichardsS, AzizN, BaleS, et al. Standards and guidelines for the interpretation of sequence variants: a joint consensus recommendation of the American College of Medical Genetics and Genomics and the Association for Molecular Pathology. Genet Med +17: 405-424, 2015.25741868 + + +Esparza-GordilloJ, Goicoechea de JorgeE, BuilA, et al. Predisposition to atypical hemolytic uremic syndrome involves the concurrence of different susceptibility alleles in the regulators of complement activation gene cluster in 1q32. Hum Mol Genet +14: 703-712, 2005.15661753 + + +BresinE, RuraliE, CaprioliJ, et al. Combined complement gene mutations in atypical hemolytic uremic syndrome influence clinical phenotype. J Am Soc Nephrol +24: 475-486, 2013.23431077 + + +SugawaraY, KatoH, NagasakiM, et al. CFH-CFHR1 hybrid genes in two cases of atypical hemolytic uremic syndrome. J Hum Genet +68: 427-430, 2023.36755127 + + +RiedlM, FakhouriF, LeQuintrec M, et al. Spectrum of complement-mediated thrombotic microangiopathies: pathogenetic insights identifying novel treatment approaches. Semin Thromb Hemost +40: 444-464, 2014.24911558 + + +FakhouriF, RoumeninaL, ProvotF, et al. Pregnancy-associated hemolytic uremic syndrome revisited in the era of complement gene mutations. J Am Soc Nephrol +21: 859-867, 2010.20203157 + + +CampistolJM, AriasM, AricetaG, et al. An update for atypical haemolytic uraemic syndrome: diagnosis and treatment. A consensus document. Nefrologia +35: 421-447, 2015.26456110 + + +LeClech A, Simon-TillauxN, ProvôtF, et al. Atypical and secondary hemolytic uremic syndromes have a distinct presentation and no common genetic risk factors. Kidney Int +95: 1443-1452, 2019.30982675 + + +BarishJ, KopparthyP, FletcherB. Atypical haemolytic uremic syndrome secondary to acute pancreatitis: a unique presentation. BMJ Case Rep +12: e230822, 2019. + +KajiyamaT, FukudaM, RikitakeY, TakasuO. Atypical hemolytic uremic syndrome secondary to pancreatitis: a case report. Cureus +15: e35434, 2023.36994293 + + +TatonO, DelhayeM, StordeurP, GoodshipT, LeMoine A, MassartA. An unusual case of haemolytic uraemic syndrome following endoscopic retrograde cholangiopancreatography rapidly improved with eculizumab. Acta Gastroenterol Belg +79: 257-261, 2016.27382949 + + +NorisM, CaprioliJ, BresinE, et al. Relative role of genetic complement abnormalities in sporadic and familial aHUS and their impact on clinical phenotype. Clin J Am Soc Nephrol +5: 1844-1859, 2010.20595690 +
\ No newline at end of file diff --git a/tests/data/xml/PMC4031984-elife-02866.nxml b/tests/data/xml/PMC4031984-elife-02866.nxml new file mode 100644 index 00000000..47cfed07 --- /dev/null +++ b/tests/data/xml/PMC4031984-elife-02866.nxml @@ -0,0 +1,39 @@ + +
eLifeeLifeeLifeeLife2050-084XeLife Sciences Publications, Ltd2486764440319840286610.7554/eLife.02866Research ArticleCell BiologyGenomics and Evolutionary BiologyCharacterization of TSET, an ancient and widespread membrane trafficking complexHirstJennifer*SchlachtAlexanderNorcottJohn PTraynorDavidBloomfieldGarethAntrobusRobinKayRobert RDacksJoel B*RobinsonMargaret S*Cambridge Institute for Medical Research, University of Cambridge, Cambridge, United KingdomDepartment of Cell Biology, University of Alberta, Edmonton, CanadaDepartment of Engineering, University of Cambridge, Cambridge, United KingdomCell Biology, MRC Laboratory of Molecular Biology, Cambridge, United KingdomNelsonW JamesReviewing editorStanford University, United StatesFor correspondence: jh228@cam.ac.uk (JH);For correspondence: dacks@ualberta.ca (JBD);For correspondence: msr12@cam.ac.uk (MSR)

These authors contributed equally to this work.

These authors also contributed equally to this work.

275201420143e0286621320141442014© 2014, Hirst et al2014Hirst et alThis article is distributed under the terms of the Creative Commons Attribution License, which permits unrestricted use and redistribution provided that the original author and source are credited.

The heterotetrameric AP and F-COPI complexes help to define the cellular map of modern eukaryotes. To search for related machinery, we developed a structure-based bioinformatics tool, and identified the core subunits of TSET, a 'missing link' between the APs and COPI. Studies in Dictyostelium indicate that TSET is a heterohexamer, with two associated scaffolding proteins. TSET is non-essential in Dictyostelium, but may act in plasma membrane turnover, and is essentially identical to the recently described TPLATE complex, TPC. However, whereas TPC was reported to be plant-specific, we can identify a full or partial complex in every eukaryotic supergroup. An evolutionary path can be deduced from the earliest origins of the heterotetramer/scaffold coat to its multiple manifestations in modern organisms, including the mammalian muniscins, descendants of the TSET medium subunits. Thus, we have uncovered the machinery for an ancient and widespread pathway, which provides new insights into early eukaryotic evolution.

DOI: +http://dx.doi.org/10.7554/eLife.02866.001

eLife digest

Eukaryotes make up almost all of the life on Earth that we can see around us, and include organisms as diverse as animals, fungi, plants, slime moulds, and seaweeds. The defining feature of eukaryotes is that, unlike nearly all bacteria, they have membrane-bound compartments—such as the nucleus—within their cells.

Moving molecules, such as proteins, between these compartments is essential for living eukaryotic cells, and these molecules are usually trafficked inside membrane-bound packages called vesicles. Two similar sets of protein complexes—each containing four different subunits—ensure that the molecules are packaged inside the correct vesicles. However, it is not clear how these two protein complexes (called the AP complexes and the COPI complex) are related to each other, and when and where they originated in the history of life.

Now, Hirst, Schlacht et al. have discovered a new—but very ancient–protein complex that they refer to as the ‘missing link’ between the AP and COPI complexes. The four subunits inside this new complex were found by searching for proteins with shapes that were similar to those of the AP and COPI proteins, rather than just searching for proteins with similar sequences of amino acids. This approach identified related protein subunits in groups as diverse as plants and slime moulds, which suggests that this protein complex evolved in the earliest of the eukaryotes. The four subunits identified in a slime mould were confirmed to interact, and also shown to bind to the plasma membrane of living cells.

One of the subunits had already been named TPLATE, so Hirst, Schlacht et al. decided to call the complex TSET; the other three subunits were named TSAUCER, TCUP and TSPOON, and two other proteins that interacted with the complex were both called TTRAY.

While most of the TSET complex itself has been lost from humans and other animals, one of subunit appears to have evolved into a family of proteins that help molecules get into cells. The discovery of TSET reveals another major player in vesicle-trafficking that is not only important for our understanding of how modern eukaryotes work, but also how ancient eukaryotes evolved.

DOI: +http://dx.doi.org/10.7554/eLife.02866.002

Author keywordsmembrane trafficclathrinTPLATETPCmuniscinFCHoResearch organismDictyosteliumHumanhttp://dx.doi.org/10.13039/100004440The Wellcome Trust086598HirstJenniferAntrobusRobinRobinsonMargaret Shttp://dx.doi.org/10.13039/501100000265Medical Research CouncilMC_U105115237TraynorDavidBloomfieldGarethKayRobert Rhttp://dx.doi.org/10.13039/501100000146Alberta Innovates Technology FuturesNew Faculty Award, 201000076SchlachtAlexanderDacksJoel Bhttp://dx.doi.org/10.13039/501100000038Natural Sciences and Engineering Research Council of CanadaPGSD3-442728-2013SchlachtAlexanderThe funders had no role in study design, data collection and interpretation, or the decision to submit the work for publication.elife-xml-version2Author impact statementA missing link between the AP complexes and COPI sheds light on the evolution of vesicle coat proteins and trafficking pathways in the earliest eukaryotes.
Introduction

The evolution of eukaryotes some 2 billion years ago radically changed the biosphere, giving rise to nearly all visible life on Earth. Key to this transition was the ability to generate intracellular membrane compartments and the trafficking pathways that interconnect them, mediated in part by the heterotetrameric adaptor complexes, APs 1–5 and COPI (Dacks et al., 2008; Field and Dacks, 2009; Hirst et al., 2011; Koumandou et al., 2013). In mammals, APs 1 and 2 and COPI are essential for viability, while mutations in the other APs cause severe genetic disorders (Boehm and Bonifacino, 2002; Hirst et al., 2013). The AP and COPI complexes share a similar architecture, due to common ancestry predating the last eukaryotic common ancestor (LECA). All six complexes consist of two large subunits of ∼100 kD, a medium subunit of ∼50 kD, and a small subunit of ∼20 kD (Figure 1A). Their function is to select cargo for packaging into transport vesicles, and together with membrane-deforming scaffolding proteins such as clathrin and the COPI B-subcomplex, they facilitate the trafficking of proteins and lipids between membrane compartments in the secretory and endocytic pathways. The recent discovery of the evolutionarily ancient AP-5 complex, found on late endosomes and lysosomes, added a new dimension to models of the endomembrane system, and raised the possibility that other undetected membrane-trafficking complexes might exist (Hirst et al., 2011). Therefore, we set out in search of additional members of the AP/COPI subunit families.10.7554/eLife.02866.003Diagrams of APs and F-COPI.

(A) Structures of the assembled complexes. All six complexes are heterotetramers; the individual subunits are called adaptins in the APs (e.g., γ-adaptin) and COPs in COPI (e.g., γ-COP). The two large subunits in each complex are structurally similar to each other. They are arranged with their N-terminal domains in the core of the complex, and these domains are usually (but not always) followed by a flexible linker and an appendage domain. The medium subunits consist of an N-terminal longin-related domain followed by a C-terminal μ homology domain (MHD). The small subunits consist of a longin-related domain only. (B) Jpred secondary structure predictions of some of the known subunits (all from Homo sapiens), together with new family members from Dictyostelium discoideum (Dd) and Arabidopsis thaliana (At). See also Figure 1—figure supplements 1–4, Figure 1—source data 1, 2.

DOI: +http://dx.doi.org/10.7554/eLife.02866.003

10.7554/eLife.02866.004Large subunit homologues found by reverse HHpred in different organisms.

DOI: +http://dx.doi.org/10.7554/eLife.02866.004

10.7554/eLife.02866.005Medium and small subunit homologues found by reverse HHpred in different organisms.

DOI: +http://dx.doi.org/10.7554/eLife.02866.005

10.7554/eLife.02866.006PDB entries used to search for adaptor-related proteins.

DOI: +http://dx.doi.org/10.7554/eLife.02866.006

10.7554/eLife.02866.007Summary table of all subunits identified using reverse HHpred.

The lighter shading indicates where an orthologue was found either below the arbitrary cut-off, by using NCBI BLAST (see Figure 1—figure supplement 3), or by searching a genomic database (e.g., AP-1 μ1 |Naegr1|35900|, JGI). The new complex is called ‘TSET’.

DOI: +http://dx.doi.org/10.7554/eLife.02866.007

10.7554/eLife.02866.008Subunits that failed to be identified using reverse HHpred, but were identified by homology searching using NCBI BLAST.

DOI: +http://dx.doi.org/10.7554/eLife.02866.008

10.7554/eLife.02866.009TSET orthologues in different species.

The orthologues were identified by reverse HHpred, except for those in italics, which were found by BLAST searching (NCBI) using closely related organisms. TTRAY1 and TTRAY2 were initially identified by proteomics in a complex with TSET, but could also have been predicted by reverse HHpred as closely related to β′-COP using the PDB structure, 3mkq_A. In all other organisms TTRAY1 and TTRAY2 were identified by NCBI BLAST (italics). Note that orthologues of TSAUCER in P. patens, and TTRAY 2 in M. pusilla were identified in Phytozome, which is a genomic database hosted by Joint Genome Institute (JGI). Note orthologues of TCUP in D. purpureum and TSPOON in D. discoideum were identified by searching genomic sequences using closely related sequences, and have been manually appended in DictyBase. In these cases corresponding sequences are not at present found at NCBI. Whilst S. moellendorffii and V. vinifera were included in the reverse HHpred database, they were not included in the Coulson plot.

DOI: +http://dx.doi.org/10.7554/eLife.02866.009

10.7554/eLife.02866.010Identification of ENTH/ANTH domain proteins and the AP complexes with which they associate, using reverse HHpred.

Reverse HHpred searches were initiated using the key words ‘epsin’ or ‘ENTH’. The PDB structures used were: 1eyh_A (Chain A, Crystal Structure Of The Epsin N-Terminal Homology (Enth) Domain At 1.56 Angstrom Resolution); 1inz_A (Chain A, Solution Structure Of The Epsin N-Terminal Homology (Enth) Domain Of Human Epsin); 1xgw_A (Chain A, The Crystal Structure Of Human Enthoprotin N-Terminal Domain); 3onk_A (Chain A, Yeast Ent3_enth Domain), and the output was assimilated in Excel as described for the adaptors. The identity of the hits was determined using NCBI BLAST searching. Note that all of the organisms that have lost AP-4 have also lost its binding partner, tepsin.

DOI: +http://dx.doi.org/10.7554/eLife.02866.010

Results and discussionThe search for novel AP-related complexes

Because we were unable to find any promising candidates for new AP/COPI-related machinery using sequence-based searches, we developed a more sensitive tool, designed to search for structural similarity rather than sequence similarity. Using HHpred to analyse every protein in the RefSeq database from 15 organisms, covering a broad span of eukaryotic diversity, we built a ‘reverse HHpred’ database. This database contains potential homologues for >300,000 different proteins (http://reversehhpred.cimr.cam.ac.uk), and can be searched with structures from the Protein Data Bank (PDB). As proof of principle, we used this database to identify all four subunits of the AP-5 complex (Figure 1—figure supplements 1 and 2; Figure 1—source data 1, 2), even though in our previous study only the medium subunit was initially detectable by bioinformatics-based searching (Hirst et al., 2011).

In addition to known proteins, our reverse HHpred database revealed novel candidates for each of the four subunit families, with orthologues present in diverse eukaryotes including plants and Dictyostelium (Figure 1—figure supplements 2–4, Figure 1—source data 1, 2). Secondary structure predictions confirmed that the new family members have similar folds to their counterparts in the AP complexes and COPI (Figure 1B). Only one of these proteins had been characterised functionally: TPLATE (NP_186827.2), an Arabidopsis protein related to the AP β subunits and β-COP, found in a microscopy-based screen for proteins involved in mitosis and localised to the cell plate (Van Damme et al., 2006; Van Damme et al., 2011). There is some variability between orthologous subunits in different organisms: for instance, Arabidopsis has added an SH3 domain to the C-terminal end of its ‘γαδεζ’ large subunit, while Dictyostelium has lost the μ homology domain (MHD) at the end of its medium subunit; and in general there seems to be much less selective pressure on these genes than on those encoding other AP/COPI family members (e.g., the AP-1 β1 subunits are 58.01% identical in Dictyostelium and Arabidopsis, while the new β family members are only 14.63% identical).

TSET: a new trafficking complex

To determine whether the four new candidate subunits identified in our searches actually form a complex, we transformed D. discoideum with a GFP-tagged version of its small (σ-like) subunit (Figure 2A), and then used anti-GFP to immunoprecipitate the construct and any associated proteins from cell extracts (Figure 2B). Precipitates were analysed by mass spectrometry, yielding ten proteins considered to be specifically immunoprecipitated (Figure 2—figure supplement 1a). Two of these were the small subunit itself and its GFP tag. Three others were the remaining candidate subunits: XP_639969.1 (the β-like subunit), XP_640471.1 (the γαδεζ-like subunit), and XP_629998.1 (the μ-like subunit), confirming their presence in a complex. Quantification by iBAQ indicated that these three proteins were present in the immunoprecipitate at approximately equimolar levels (Figure 2C, Figure 2—figure supplement 1A), while the small subunit and GFP tag were in ∼15-fold molar excess, probably due to overexpression.10.7554/eLife.02866.011Characterisation of the TSET complex in <italic>Dictyostelium</italic>.

(A) Western blots of axenic D. discoideum expressing either GFP-tagged small subunit (σ-like) or free GFP, under the control of the Actin15 promoter, labelled with anti-GFP. The Ax2 parental cell strain was included as a control, and an antibody against the AP-2α subunit was used to demonstrate that equivalent amounts of protein were loaded. (B) Coomassie blue-stained gel of GFP-tagged small subunit and associated proteins immunoprecipitated with anti-GFP. The GFP-tagged protein is indicated with a red asterix. (C) iBAQ ratios (an estimate of molar ratios) for the proteins that consistently coprecipitated with the GFP-tagged small subunit. All appear to be equimolar with each other, and the higher ratios for the small (σ-like/TSPOON) subunit and GFP are likely to be a consequence of their overexpression, which we also saw in a repeat experiment in which we used the small subunit's own promoter (Figure 2—figure supplement 1). (D) Predicted structure of the N-terminal portion of D. discoideum TTRAY1, shown as a ribbon diagram. (E) Stills from live cell imaging of cells expressing either TSPOON-GFP or free GFP, using TIRF microscopy. The punctate labelling in the TSPOON-GFP-expressing cells indicates that some of the construct is associated with the plasma membrane. See Videos 1 and 2. (F) Western blots of extracts from cells expressing either TSPOON-GFP or free GFP. The post-nuclear supernatants (PNS) were centrifuged at high speed to generate supernatant (cytosol) and pellet fractions. Equal protein loadings were probed with anti-GFP. Whereas the GFP was exclusively cytosolic, a substantial proportion of TSPOON-GFP fractionated into the membrane-containing pellet. (G) Mean generation time (MGT) for control (Ax2) and TSPOON knockout cells. The knockout cells grew slightly faster than the control. (H) Differentiation of the Ax2 control strain and two TSPOON knockout strains (1725 and 1727). All three strains produced fruiting bodies upon starvation. (I) Assay for fluid phase endocytosis. The control and knockout strains took up FITC-dextran at similar rates. (J) Assay for endocytosis of membrane, labelled with FM1-43, showing the time taken to internalise the entire surface area. The knockout strains took significantly longer than the control (*p<0.05; **p<0.01). See also Figure 2—figure supplements 1 and 2, Figure 2; Videos 1 and 2.

DOI: +http://dx.doi.org/10.7554/eLife.02866.011

10.7554/eLife.02866.012Further characterisation of <italic>Dictyostelium</italic> TSET.

(A) iBAQ ratios for the proteins that coprecipitated with TSPOON-GFP, normalized to the median abundance of all proteins across five experiments. ND = not detected. (B) Fluorescence and phase contrast micrographs of cells expressing GFP-tagged TSPOON under the control of its own promoter (Prom-TSPOON-GFP). The construct appears mainly cytosolic. (C) Homology modeling of TTRAYs from A. thaliana, D. discoideum, and N. gruberi, revealing two β-propeller domains followed by an α-solenoid. (D) Disruption of the TSPOON gene. PCR was used to amplify either the wild-type TSPOON gene (in Ax2) or the disrupted TSPOON gene. The resulting products were either left uncut (U) or digested with SmaI (S), which should not cut the wild-type gene, but should cleave the disrupted gene into three bands. Several clones are shown, including HM1725 (200/1 A1). (E) Spore viability after detergent treatment was used to test for integrity of the cellulosic spore and the ability to hatch in a timely manner. The control (Ax2) strain and the knockout (HM1725) strain both showed good viability. (F) Expansion rate of plaques on bacterial lawns. The rates for control (Ax2) and knockout (HM1725, 1727, and 1728) strains were similar initially, but by 2 days the control plaques were larger. (G) Micrographs of plaques from control and knockout strains.

DOI: +http://dx.doi.org/10.7554/eLife.02866.012

10.7554/eLife.02866.013Distribution of secG.

DOI: +http://dx.doi.org/10.7554/eLife.02866.013

10.7554/eLife.02866.014Distribution of vacuolins.

DOI: +http://dx.doi.org/10.7554/eLife.02866.014

Interestingly, two of the other proteins in the immunoprecipitate, also approximately equimolar to the three coprecipitating subunits, were XP_642289.1 and XP_637150.1. Both proteins are predicted to consist of two N-terminal β-propeller domains followed by an α-solenoid (Figure 2D, Figure 2—figure supplement 1C). This type of architecture is found in several coat components, including clathrin heavy chain, SPG11 (associated with AP-5), the α-COP and β′-COP subunits of the COPI coat (B-COPI), and the Sec31 subunit of the COPII coat (Devos et al., 2004). HHpred analyses show that the closest matches for both XP_642289.1 and XP_637150.1 are β'-COP, followed by α-COP. Probable orthologues of XP_642289.1 and XP_637150.1 can be found in other organisms that have the four core subunits (Figure 1—figure supplement 4). Because proteins with this architecture often act as a coat for transport vesicles, we hypothesize that these proteins may provide a scaffold for the newly identified heterotetramer.

The other three proteins in the immunoprecipitate, secG and vacuolins A and B, appear to be less widespread taxonomically (Figure 2—figure supplement 2 and 3), but are nonetheless suggestive of function. SecG is related to the plasma membrane- and endosome-associated ARNO/cytohesin family of Arf GEFs in animal cells (Shina et al., 2010), and also appears to be equimolar with the core complex. Vacuolins are members of the SPFH (stomatin-prohibitin-flotillin-HflC/K) superfamily. They have been shown to associate with the late vacuole just before exocytosis and also with the plasma membrane (Rauchenberger et al., 1997; Gotthardt et al., 2002), and to contribute to vacuole function (Jenne et al., 1998). However, the amounts of coprecipitating vacuolins were more variable, suggesting that they are less tightly associated with the complex (Figure 2—figure supplement 1A). Thus, like TPLATE, both SecG and the vacuolins have been implicated in membrane traffic, acting at the plasma membrane and/or endosomal compartments.

As the β-like subunit is already named TPLATE, we propose similar nomenclature for the other three subunits of the heterotetramer, relating to their relative sizes: TSAUCER, TCUP, and TSPOON. For the two associated β-propeller/α-solenoid proteins, we propose TTRAY1 and TTRAY2, and for the conserved heterohexamer, we propose the name TSET.

Characterisation of the TSET complex in <italic>Dictyostelium</italic>

One of the key properties of coat proteins is their ability to cycle on and off membranes. Although by widefield fluorescence microscopy TSPOON-GFP looked diffuse and cytosolic (Figure 2—figure supplement 1B), TIRF imaging showed a punctate pattern, especially in the cells with lower expression, indicating that some of the construct is associated with the plasma membrane (Figure 2E, Figure 2; Video 1). In contrast, free GFP appeared to be entirely cytosolic (Figure 2E, Figure 2; Video 2). In addition, high speed centrifugation of a post-nuclear supernatant showed a substantial amount of TSPOON-GFP coming down in the membrane-containing pellet, in contrast to free GFP, which was exclusively in the supernatant (Figure 2F). These findings indicate that like other coat proteins, the complex is transiently recruited onto a membrane (specifically, the plasma membrane) from a cytosolic pool.Related to <xref ref-type="fig" rid="fig2">Figure 2</xref>.

TIRF microscopy of D. discoideum expressing TSPOON-GFP, expressed off its own promoter in TSPOON knockout cells. One frame was collected every second. Dynamic puncta can be seen, indicating that the construct forms patches at the plasma membrane.

DOI: +http://dx.doi.org/10.7554/eLife.02866.015

10.7554/eLife.02866.015Related to <xref ref-type="fig" rid="fig2">Figure 2</xref>.

TIRF microscopy of D. discoideum expressing free GFP, driven by the Actin15 promoter in TSPOON knockout cells. One frame was collected every second. The signal is diffuse and cytosolic.

DOI: +http://dx.doi.org/10.7554/eLife.02866.016

10.7554/eLife.02866.016

Silencing TPLATE in Arabidopsis produces a very severe phenotype, with impaired growth and differentiation, thought to be caused by defects in clathrin-mediated endocytosis (Van Damme et al., 2006; Van Damme et al., 2011). To investigate the function of TSET in Dictyostelium, we disrupted the TSPOON gene by replacing most of the coding sequence with a selectable marker (Figure 2—figure supplement 1D). Surprisingly, the resulting knockout cells grew at least as fast a control axenic strain (Figure 2G shows the mean generation time); and differentiation also appeared normal, with fruiting bodies forming under appropriate stimuli (Figure 2H). Uptake of FITC-dextran, an assay for fluid phase endocytosis, was unimpaired in the TSPOON knockout cells (Figure 2I); however, uptake of FM1-43, a membrane marker, was slower than in the control (Figure 2J shows the time taken to internalise the entire surface area), indicating that TSET plays a role in plasma membrane turnover, consistent with studies on Arabidopsis. Nevertheless, it is clear that in contrast to Arabidopsis, Dictyostelium can thrive without a functional TSET complex.

Very recently, the discoverers of TPLATE used tandem affinity purification to identify TPLATE binding partners, and found the Arabidopsis orthologues of the TSET components that we identified independently in the present study (Gadeyne et al., 2014). The Arabidopsis pulldowns did not contain any proteins resembling secG or the vacuolins, supporting our hypothesis that these proteins are add-ons to the core heterohexamer. However, Arabidopsis TSET is associated with two additional proteins containing EH domains, which we did not find in our Dictyostelium pulldowns. Some of the Arabidopsis pulldowns also brought down components of the machinery for clathrin-mediated endocytosis, including clathrin itself. Although we also found clathrin and associated proteins in our Dictyostelium immunoprecipitates, these proteins were equally abundant in control immunoprecipitates from non-GFP-expressing cells, indicating that they were contaminants. The differences in proteins that coprecipitate with TSET in the two organisms are probably a reflection of functional differences: TSET knockouts in Arabidopsis are lethal and knockdowns profoundly affect clathrin-mediated endocytosis, while TSET knockdowns in Dictyostelium produce a very mild phenotype.

TSET is ancient and widespread in eukaryotes

When TPLATE was discovered in Arabidopsis, it was reported to be unique to plant species (Van Damme et al., 2006; Van Damme et al., 2011). Similarly, in the more recent Arabidopsis study, the authors concluded that the complex was plant-specific (Gadeyne et al., 2014). However, these conclusions were based on analyses of plants, yeast, and humans only. Our identification and characterization of homologues of all six subunits in Dictyostelium discoideum, as well as their presence in the excavate Naegleria gruberi, suggested that the evolutionary distribution was much more extensive. In depth homology searching identified orthologues in genomes from across the broad diversity of eukaryotes (Figure 3, Figure 3—source data 1, Figure 3—figure supplement 1), strongly suggesting that the complex was present prior to the LECA.10.7554/eLife.02866.017Distribution of TSET subunits.

(A) Coulson plot showing the distribution of TSET in a diverse set of representative eukaryotes. Presence of the entire complex in at least four supergroups suggests its presence in the last eukaryotic common ancestor (LECA) with frequent secondary loss. Solid sectors indicate sequences identified and classified using BLAST and HMMer. Empty sectors indicate taxa in which no significant orthologues were identified. Filled sectors in the Holozoa and Fungi represent F-BAR domain-containing FCHo and Syp1, respectively. Taxon name abbreviations are inset. Names in bold indicate taxa with all six components. (B) Deduced evolutionary history of TSET as present in the LECA but independently lost multiple times, either partially or completely. See also Figure 3—source data 1, Figure 3—figure supplement 1.

DOI: +http://dx.doi.org/10.7554/eLife.02866.017

10.7554/eLife.02866.018Sequences used for phylogenetic analyses.

DOI: +http://dx.doi.org/10.7554/eLife.02866.018

10.7554/eLife.02866.019Models used for phylogenetic analyses.

WC = with COPI; WOC = without COPI.

DOI: +http://dx.doi.org/10.7554/eLife.02866.019

Although TSET is clearly ancient, its relationship to the other heterotetrameric complexes was unclear from homology searching alone. Consequently, after analyses of the individual subunits (Figure 4—figure supplements 1–7), we performed a phylogenetic analysis on the concatenated set of the four core subunits for direct comparison of TSET with the other AP and COPI complexes (Figure 4A, Figure 4—figure supplement 8). This provided moderate support for TSET as a clade, but strong resolution excluding it from the APs and COPI, as well as backbone resolution between the heterotetramer clades. Thus, TSET is clearly an ancient component of the eukaryotic membrane-trafficking system, distinct from the known heterotetramers.10.7554/eLife.02866.020Evolution of TSET.

(A) Simplified diagram of the concatenated tree for TSET, APs, and COPI, based on Figure 4—figure supplement 8. Numbers indicate posterior probabilities for MrBayes and PhyloBayes and maxium-likelihood bootstrap values for PhyML and RAxML, in that order. (B) Schematic diagram of TSET. (C) Possible evolution of the three families of heterotetramers: TSET, APs, and COPI. We propose that the earliest ancestral complex was a likely a heterotrimer or a heterohexamer formed from two identical heterotrimers, containing large (red), small (yellow), and scaffolding (blue) subunits. All three of these proteins were composed of known ancient building blocks of the membrane-trafficking system (Vedovato et al., 2009): α-solenoid domains in both the large and scaffolding subunits; two β-propellers in the scaffolding subunit; and a longin domain forming the small subunit. The gene encoding the large subunit then duplicated and mutated to generate the two distinct types of large subunits (red and magenta), and the gene encoding the small subunit also duplicated and mutated (yellow and orange), with one of the two proteins (orange) acquiring a μ homology domain (MHD) to form the ancestral heterotetramer, as proposed by Boehm and Bonifacino (12). However, the scaffolding subunit remained a homodimer. Upon diversification into three separate families, the scaffolding subunit duplicated independently in TSET and COPI, giving rise to TTRAY1 and TTRAY2 in TSET, and to α- and β′-COP in COPI. COPI also acquired a new subunit, ε-COP (purple). The scaffolding subunit may have been lost in the ancestral AP complex, as indicated in the diagram; however, AP-5 is tightly associated with two other proteins, SPG11 and SPG15, and the relationship of SPG11 and SPG15 to TTRAY/B-COPI remains unresolved, so it is possible that SPG11 and SPG15 are highly divergent descendants of the original scaffolding subunits. The other AP complexes are free heterotetramers when in the cytosol, but membrane-associated AP-1 and AP-2 interact with another scaffold, clathrin; and AP-3 has also been proposed to interact transiently with a protein with similar architecture, Vps41 (Rehling et al., 1999; Cabrera et al., 2010; Asensio et al., 2013). So far no scaffold has been proposed for AP-4. Although the order of emergence of TSET and COP relative to adaptins is unresolved, our most recent analyses indicate that, contrary to previous reports (Hirst et al., 2011), AP-5 diverged basally within the adaptin clade, followed by AP-3, AP-4, and APs 1 and 2, all prior to the LECA. This still suggests a primordial bridging of the secretory and phagocytic systems prior to emergence of a trans-Golgi network. The muniscins arose much later, in ancestral opisthokonts, from a translocation of the TSET MHD-encoding sequence to a position immediately downstream from an F-BAR domain-encoding sequence. Another translocation occurred in plants, where an SH3 domain-coding sequence was inserted at the 3′ end of the TSAUCER-coding sequence. See also Figure 4—figure supplements 1–10.

DOI: +http://dx.doi.org/10.7554/eLife.02866.020

10.7554/eLife.02866.021Phylogenetic analysis of TPLATE, β-COP, and β-adaptin, with TPLATE robustly excluded from the β-COP clade.

In this and all other figure supplements to Figure 4, AP subunits are boxed in blue, F-COPI subunits are boxed in red, and subunits of TSET are boxed in yellow. Node support for critical nodes is shown. Numbers indicate Bayesian posterior probabilities (MrBayes) and bootstrap support from Maximum-likelihood analysis (RAxML). Support values for other nodes are denoted by symbols (see inset).

DOI: +http://dx.doi.org/10.7554/eLife.02866.021

10.7554/eLife.02866.022Phylogenetic analysis of TPLATE and β-adaptin subunits (β-COP removed) showing, with weak support, that TPLATE is excluded from the adaptin clade.

DOI: +http://dx.doi.org/10.7554/eLife.02866.022

10.7554/eLife.02866.023Phylogenetic analysis of TSAUCER, γ-COP, and γαδεζ-adaptin subunits, with TCUP robustly excluded from the γ-COP clade, and weakly excluded from the adaptin clade.

DOI: +http://dx.doi.org/10.7554/eLife.02866.023

10.7554/eLife.02866.024Phylogenetic analysis of TSAUCER and γαδεζ-adaptin subunits (γ-COP removed), showing weak support for the exclusion of TSAUCER from the adaptin clade.

DOI: +http://dx.doi.org/10.7554/eLife.02866.024

10.7554/eLife.02866.025Phylogenetic analysis of TCUP, δ-COP, and μ-adaptin subunits, with TSAUCER robustly excluded from the δ-COP clade and weakly excluded from the adaptin clade.

DOI: +http://dx.doi.org/10.7554/eLife.02866.025

10.7554/eLife.02866.026Phylogenetic analysis of TCUP and μ-adaptin subunits (δ-COP removed), showing weak support for the exclusion of TCUP from the adaptin clade.

DOI: +http://dx.doi.org/10.7554/eLife.02866.026

10.7554/eLife.02866.027Phylogenetic analysis of TSPOON with ζ-COP and σ–adaptin subunits with moderate support for the exclusion of TSPOON from both the COPI and adaptin clades, in addition to moderate support for the monophyly of the TSPOON clade.

DOI: +http://dx.doi.org/10.7554/eLife.02866.027

10.7554/eLife.02866.028TSET is a phylogenetically distinct lineage from F-COPI and the AP complexes.

Phylogenetic analysis of the heterotetrameric complexes: F-COPI (orange), TSET (purple), and AP (magenta, blue, red, green, and yellow for 5, 3, 1, 2, and 4, respectively), shows strong, weak, and moderate support for clades of each complex, respectively. Node support for critical nodes is shown. Numbers indicate Bayesian posterior probabilities (MrBayes and PhyloBayes) and bootstrap support from Maximum-likelihood analysis (PhyML and RAXML). Support values for other nodes are denoted by symbols (see inset).

DOI: +http://dx.doi.org/10.7554/eLife.02866.028

10.7554/eLife.02866.029Phylogenetic analysis of TTRAY1, TTRAY2, α-COP, and β′-COP.

TTRAYs 1 and 2, and COPI α and β′, arose from separate gene duplications, indicating that the ancestral complex had only one such protein, although possibly present as two identical copies. Phylogenetic analysis of α- and β′-COPI (red), and TTRAYs 1 and 2 (yellow), shows a well supported COPI clade excluding all of the TTRAY1 and 2 sequences, suggesting that the duplications giving rise to these proteins occurred independently, and the utilization of two different outer coat members occurred through convergent evolution. Node support for critical nodes is shown. Numbers indicate Bayesian posterior probabilities (MrBayes) and bootstrap support from Maximum-likelihood analysis (RAxML). Support values for other nodes are denoted by symbols (see inset).

DOI: +http://dx.doi.org/10.7554/eLife.02866.029

10.7554/eLife.02866.030Muniscin family members identified by reverse HHpred, using the following PDB structures.

2V0O_A (Chain A, Fcho2 F-Bar Domain); 3 G9H_A (Chain A, Crystal Structure Of The C-Terminal Mu Homology Domain Of Syp1); 3G9G_A (Chain A, Crystal Structure Of The N-Terminal EfcF-Bar Domain Of Syp1).

DOI: +http://dx.doi.org/10.7554/eLife.02866.030

Phylogenetic analysis of the TTRAYs and their closest relatives, β′-COP and α-COP (Figure 4—figure supplement 9), showed that the paralogues are due to ancient duplications in the TSET and COPI families respectively, which occurred prior to the divergence of the LECA. Together, these findings imply that the ancestor of the TSET, COPI, and AP complexes was a heterohexamer rather than a heterotetramer, consisting of five different proteins, with the two scaffolding proteins present as two identical copies (Figure 4B,C). These scaffolding subunits then duplicated independently in COPI and TSET. The ancestral AP complex may have lost its original scaffolding subunits, although AP-5, the first AP to branch away, is closely associated with SPG11, a β-propeller + α-solenoid protein whose relationship to the TTRAYs and B-COPI is as yet unclear. None of the other APs has any closely associated proteins with this architecture, but AP-1 and AP-2 transiently interact with clathrin, and there may also be a transient association between AP-3 and another β-propeller + α-solenoid protein, Vps41 (Rehling et al., 1999; Cabrera et al., 2010; Asensio et al., 2013).

Although TSET is deduced to have been present in LECA, the complex appears to have been entirely or partially lost in various lineages (Figure 3B). None of the subunits has a full orthologue in opisthokonts (animals and fungi), indicating secondary loss in the line leading to humans. However, the C-terminal domain of TCUP is homologous to the C-terminal domains of the muniscins, opisthokont-specific proteins (Gadeyne et al., 2014) (Figure 4—figure supplement 10). This suggests that in opisthokonts, the TCUP gene retained its 3′ end, which then combined with a new 5′ end encoding an F-BAR domain to generate the muniscin family (Figure 4C). These include the vertebrate proteins FCHo1/2 and the yeast protein Syp1, important players in the endocytic pathway (Reider et al., 2009; Henne et al., 2010; Cocucci et al., 2012; Umasankar et al., 2012; Mayers et al., 2013). The muniscins constitute one of eight families of MHD proteins in humans, and the only family whose evolutionary origin was unexplained until now. The present study indicates not only that the muniscins are homologous to TCUP, but also that they are the sole surviving remnants of the full TSET complex that existed in our pre-opisthokont ancestors.

Conclusions

TSET is the latest addition to a growing set of trafficking proteins that have ancient distributions, but are frequently lost (Schlacht et al., 2014), or in the case of TSET reduced perhaps with neofunctionalization (Figure 3). This is consistent with the uneven distribution of the individual components (in contrast to the all-or-nothing distribution of AP-5), the additional apparently lineage-specific binding partners in Dictyostelium, and the acquisition of extra domains (e.g., F-BAR in opisthokonts and SH3 in plants) adding lineage-specific function.

Studies on the muniscins may help to explain the different phenotypes of TSET knockouts in Dictyostelium and Arabidopsis. Like Arabidopsis TSET, the muniscins interact with EH domain-containing proteins and participate in clathrin-mediated endocytosis (Reider et al., 2009; Henne et al., 2010; Cocucci et al., 2012; Umasankar et al., 2012; Mayers et al., 2013). Dictyostelium has lost its TCUP MHD, and it seems likely that concomitant with this loss, it also lost some of TSET's binding partners and functions. Nevertheless, we suspect that TSET may predate clathrin-mediated endocytosis, for two reasons. First, AP-1 and AP-2, the two AP complexes that function together with clathrin, are the most recent additions to the AP family (Figure 4A); and second, TSET already has its own β-propeller + α-solenoid scaffold, so it is not clear why it would need clathrin as well. Thus, the interaction between TSET and the clathrin pathway may have evolved considerably later than TSET itself, although still pre-LECA. It is tempting to speculate that TSET was part of the original endocytic machinery, which then became redundant in some organisms as the clathrin pathway took over.

Thus, our bioinformatics tool, reverse HHpred, is able to find novel homologues of known proteins, and could potentially be used to identify new players both in membrane traffic and in other pathways (Figure 1—figure supplement 5). Using this tool, we were able to find the four core subunits of an ancient complex belonging to the same family as the APs and COPI. This ancient complex, TSET, is therefore both the answer to the question of the origin of the last set of MHD proteins in humans, and a major new piece of the puzzle to be incorporated alongside the other membrane-trafficking machinery, as we delve into the history of the eukaryotic cell.

Materials and methodsConstruction of the ‘reverse HHpred’ database

The proteomes of various organisms (detailed in Figure 1—figure supplement 2) were downloaded from the National Center for Biotechnology Information archives at ftp://ftp.ncbi.nih.gov/refseq/release/. The *.protein.faa.gz files obtained were then split into separate files, each containing one protein sequence. These were stored such that each directory contained information from only one species (the total number of protein ‘faa’ files searched for each organism were: Arabidopsis thaliana, 35270; Caenorhabditis elegans, 23903; Dictyostelium discoideum, 13262; Dictyostelium purpureum, 12399; Drosophila melanogaster, 22256; Giardia lamblia, 6502; Homo sapiens, 32977; Micromonas pusilla, 10269; Mus musculus, 29897; Naegleria gruberi , 15756; Physcomitrella patens, 35893; Saccharomyces cerevisiae, 5882; Schizosaccharomyces pombe, 5004; Selaginella moellendorffii, 31312; Vitis vinifera, 23492; Volvox carteri, 14429). The latest protein data bank (pdb70), which contains all publicly available 3D structures of proteins, was downloaded from the Gene Center Munich, Ludwig-Maximilians-Universität (LMU) Munich via their web site at: ftp://toolkit.lmb.uni-muenchen.de/pub/HHsearch/databases/hhsearch_dbs/. The linux rpm version 2.0.11 of the hhsuite software was downloaded from the same website at ftp://toolkit.lmb.uni-muenchen.de/pub/HH-suite/releases/. Each of the faa files was then compared to the pdb70 databank using the hhsearch program from the above suite. The files were tested using the default parameters. Once each protein sequence was tested, the output file was parsed and the hits were extracted and then inserted into a mysql database. The database is searchable by keywords in PDB entries, and therefore is limited to searches where the structure of a given domain structure has been solved. The database is accessible using the link http://reversehhpred.cimr.cam.ac.uk, and searches can be initiated using keywords. Should the link become unavailable, or if you are interested in hosting this yourself please email jpn25@cam.ac.uk for more information. A conceptually similar database, ‘BackPhyre’, has independently been generated, using Phyre (Kelley and Sternberg, 2009) rather than HHpred as a starting point to identify homologues of known proteins based on predicted structural similarities. Like reverse HHpred, BackPhyre is able to find three of the four TSET subunits in Arabidopsis; however, the only eukaryotes represented in BackPhyre are A. thaliana, D. melanogaster, H. sapiens, M. musculus, P. falciparum, and S. cerevisiae; and without additional organisms, such as D. discoideum and N. gruberi, we would not have been able to find the entire TSET complex.

Data assimilation

The large adaptor subunits share sequence and structure homology, as do the medium and small subunits. Therefore, we were able to combine searches for novel large subunits, or for medium/small subunits. Using the key words ‘clathrin’, ‘adaptor’, ‘adapter’, ‘adaptin’, ‘AP1’, ‘AP2’, ‘AP3’, ‘AP4’, we searched in PDB for solved structures of any large or medium/small subunit in a given organism (11 solved structures for the large subunits and six solved structures for the medium/small subunits were used to initiate searches [Figure 1—figure supplement 1]). These structures span different domains found within the subunits. For each search, a list was output of any proteins found to contain structural homology. Included in this information are the precise amino acids encompassing the region of similarity, the probability score, and most importantly the ‘result number’. A protein with a ‘result number’ of ‘1’ means that there was no other structure in the PDB database that it is more like. Since multiple structures for the various subunits were used, we could also factor in the number of times a particular protein was identified in a search (‘repeats’). These parameters were used as key pieces of evidence to determine how likely a hit in these searches would be. Once the primary data were outputted, all other manipulations were performed in Excel. For the large subunits there were 11 data sets (the 11 structures used to search for homologues), and for the medium/small subunits there were six data sets. The data manipulation was standardised at this point, and the following steps performed to assimilate the data. The data sets were sorted by result number to preclude anything with a result number of >50 (this means that there are 49 other structures in the PDB database that this protein is more similar to). Duplicates, where a protein was identified in multiple searches, were removed with the highest ranking (in ‘result’ terms) kept, and the number of times it was identified recorded in a new column (‘repeats’). The results were the ordered with the lowest ‘Result number’ and the highest ‘Probability’ to give a final list of proteins (Figure 1—source data 1, 2). Generally only proteins with a ‘Result number’ <10, ‘Probability’ >50%, at least 100 amino acids of homology (‘thstt’ to ‘thend’), and ‘Repeats’ at least two times were considered to be real hits. For ease of visualisation, only proteins with Result number <10 or ‘Repeats’ >2 are shown, and other proteins of interest (e.g., FCHo1, Syp1) with Result number <10 that did not fit the criteria listed above are greyed out. The ‘IDs’ have been deduced using NCBI BLAST searches, and have not been experimentally verified. Where the identity is ambiguous (such as the identity of a β-adaptin), a shared homology is suggested.

<italic>Dictyostelium</italic>: the search for TSPOON and TCUP

While searching for genes encoding potential components of the complex in four dictyostelid genomes, we could find complete sets in Polysphondylium pallidum and Dictyostelium fasciculatum, but one component each was missing in the databases of predicted proteins of D. discoideum (σ-like subunit) and D. purpureum (μ-like subunit). We identified these genes by tblastn (Camacho et al., 2009), using the most closely related orthologous sequence as query and the chromosomal sequences as target. Gene models were created and refined using the Artemis tool (Carver et al., 2012). These two genes have been given the DictyBase IDs DDB_G0350235 (D. discoideum TSPOON) and DPU0040472 (D. purpureum TCUP) (www.dictybase.org).

<italic>Dictyostelium</italic> expression constructs

The σ-like (TSPOON) coding sequence (CDS) was synthesised (GeneCust) with a BglII restriction site inserted at its 5′ end, its stop codon removed, and a SpeI site inserted at its 3' end, then cloned into pBluescript KSII and sequenced. The CDS was then transferred into a derivative of pDM1005 (Veltman et al., 2009) as a BglII/SpeI fragment, placing GFP at the C terminus, with expression driven from the constitutive actin15 promoter, to generate plasmid pJH101. In addition, the TSPOON promoter and the first 105 bases of the CDS were amplified from Ax2 gemonic DNA by PCR, using primers (5′TATCTCGAGCGTCTTCATCTTCACTATCATTTAATG-3′) and (5′-TAAAAGCTTTTCATATTCACTCTGTTTCTCGTC-3′). The product was cut with XhoI/HindIII, and the 536-bp fragment cloned into the pBluescript KSII plasmid already containing the TSPOON CDS, via the XhoI site in the vector and the silent HindIII site introduced at nucleotide +97 of the TSPOON CDS during its synthesis. The resulting promoter-driven TSPOON CDS was removed by digestion with XhoI/SpeI and inserted into the corresponding sites of pDM323 and pDM450, resulting in expression constructs containing the TSPOON CDS with GFP fused at its C terminus and driven by its own promoter (pDT61 and pDT58 respectively).

<italic>Dictyostelium</italic> cell culture and transformation

All of the methods used for cell biological studies on Dictyostelium are described in detail at Bio-protocol (Hirst et al., 2015).

D. discoideum Ax2-derived strains were grown and maintained in HL5 medium (Formedium) containing 200 µg/ml dihydrostreptomycin on tissue culture treated plastic dishes, or shaken at 180 rpm, at 22°C (Kay, 1987). Cells were transformed with expression constructs (30 µg/4 × 106 cells) by electroporation using previously described methods (Knecht and Pang, 1995). Transformants were selected and maintained in axenic medium supplemented with 60 µg/ml hygromycin (pDT58 and pJH101) and 20 µg/ml G418 (pDT61 and Actin15_GTP; Traynor and Kay, 2007). For the TSPOON knockout, 17.5 µg of the blasticidin disruption cassette, freed from pDT70 by digestion with ApaI and SacII, was added to 4 × 106 Ax2 cells before electroporation. Transformants were selected and maintained in HL5 medium containing 10 µg/ml blasicidin.

<italic>Dictyostelium</italic> microscopy and fractionation

Cells were transformed with GFP driven by the actin 15 promoter (A15_GFP; Traynor and Kay, 2007), or with TSPOON-GFP driven by either the actin 15 promoter (A15_TSPOON -GFP) or its own promoter (promoter_TSPOON-GFP). For microscopy, the cells were washed in KK2 (16.5 mM KH2PO4, 3.8 mM K2HPO4, 2 mM MgSO4) at 2 × 107/ml and then transferred into glass bottom dishes (MatTek, Ashland, MA) at 1 × 106/cm2. They were either imaged immediately (vegetative) or allowed to starve for a further 6–8 hr (developed) before imaging live on a Zeiss Axiovert 200 inverted microscope (Carl Zeiss, Jena, Germany) using a Zeiss Plan Achromat 63 × oil immersion objective (numerical aperture 1.4), an OCRA-ER2 camera (Hamamatsu, Hamamatsu, Japan), and Improvision Openlab software (PerkinElmer, Waltham, MA). Various treatments including with or without starvation, fixation, pre-fixation saponin treatment did not reveal obvious membrane-associated labelling in cells expressing either promoter_TSPOON-GFP and A15_TSPOON expressing cells.

For TIRF microscopy, TSPOON-GFP was expressed in the TSPOON null cell lines HM1725 and HM1727 (see below), using the promoter_TSPOON-GFP plasmids pDT58 or pDT61. Transformants were selected and maintained in 30 µg/ml hygromycin (pDT58) or 10 µg/ml G418 (pDT61). As a control, free GFP was expressed in the null cells using the plasmid A15_GFP. Cells were harvested from tissue culture dishes when they formed a semi-confluent monoloyer and washed in KK2C (KK2 containing 0.1 mM CaCl2). Approximately 3 × 104 cells were added to 35-mm glass bottom (No.1.5 coverglass) microwell dishes (MatTek) containing 2.5 ml of KK2C. They were incubated at 22°C for 2 hr to allow residual fluorescence associated with ingested axenic medium to dissipate, and 20 min before imaging, the KK2C was with fresh KK2C, containing 50 µg/ml L-ascorbic acid as an antioxidant to reduce the effects of phototoxicity. Cells were visualised using a Nikon N-STORM microscope operating in the TIRF mode with a 100x lens (NA 1.49) and a zoom of 1.5x.

For fractionation, cells expressing A15_GFP or promoter_TSPOON-GFP were grown until they reached a density of 2–4 × 106/ml in selective media, and by microscopy >50% of cells were expressing GFP. Starting with a maximum of 8 × 108 cells, the cells were washed in KK2 buffer and then pelleted at 600 × g for 3 min. The cells were resuspended in PBS with a protease inhibitor cocktail (Roche), lysed by 8 strokes of a motorized Potter–Elvehjem homogenizer followed by 5 strokes through a 21-g needle, and centrifuged at 4100 × g for 32 min to get rid of nuclei and unbroken cells. The postnuclear supernatant was then centrifuged at 50,000 rpm (135,700 × g RCFmax) for 30 min in a TLA-110 rotor (Beckman Coulter) to recover the membrane pellet. The cytosolic supernatant and pellet were run on pre-cast NUPAGE 4–12% BisTris Gels (Novex) at equal protein loadings, and Western blots were probed with an antibody against GFP (Seaman et al., 2009).

<italic>Dictyostelium</italic> pulldowns and proteomics

Pulldowns were performed using Dictyostelium discoideum stably expressing TSPOON-GFP under a constitutive (A15_ TSPOON-GFP) and its own promoter (prom_TSPOON-GFP). Similar results were found with both cell lines regardless of the promoter. Non-transformed cells were used as a control. Cells were grown until they reached a density of 2–4 × 106/ml in selective media, and by microscopy >50% of cells were expressing GFP. Starting with a maximum of 8 × 108 cells, they were pelleted by centrifugation (600×g for 2 min) and washed twice in KK2 buffer before being resuspended at 2 × 107 cells/ml in KK2 buffer and starved for 4–6 hr at 22°C by shaking at 180 rpm. The cells were then pelleted at 600×g for 3 min and then lysed in 4 ml PBS 1% TX100 plus protease inhibitor cocktail tablet (Roche) for 10 min on ice, and then spun 20,000×g 15 min to get rid of debris and insoluble material. By protein assay the resulting lysate contained 10–15 mg total protein. The lysates were pre-cleared using PA-sepharose 30 min, and then immunoprecipitated using anti-GFP overnight with rotation at 4°C. PA-sepharose was added for 60 min and then the antibody complexes washed with PBS 1%TX100 followed by PBS before elution from beads with 100 mM Tris, 2% SDS 60°C for 10 min. The eluted proteins were precipitated with acetone overnight at −20°C, recovered by spinning 15,000×g 5 min and then resuspending in sample buffer. The samples were run on pre-cast NUPAGE 4–12% BisTris Gels (Novex), stained with SimplyBlue Safe Stain (Invitrogen) and then cut into 8 gel slices. Each gel slice was processed by filter-aided sample preparation solution digest, and the sample was analyzed by liquid chromatography–tandem mass spectrometry in an Orbitrap mass spectrometer (Thermo Scientific; Waltham, MA) (Antrobus and Borner, 2011).

Proteins that came down in the non-transformed control were eliminated, as were any proteins with less than 5 identified peptides, proteins that did not consistently coimmunoprecipitate in three independent experiments, or proteins of very low abundance compared with the bait (i.e., molar ratios of <0.002). The remaining ten proteins were considered to be specifically immunoprecipitated. Normalized peptide intensities were used to estimate the relative abundance of the specific interactors (iBAQ method; Schwanhäusser et al., 2011). For each protein, the values from all five repeats were plotted, including the bait protein and GFP which are clearly overrepresented by overexpression. The relative abundances of proteins were normalized to the median abundance of all proteins across each experiment (i.e., median set to 1.0) and values were then log-transformed and plotted.

<italic>Dictyostelium</italic> gene disruption

The TSPOON disruption plasmid was constructed by inserting regions amplified by PCR from upstream and downstream of the TSPOON gene into both side of the blasticidin-resistance cassette in pLPBLP (Faix et al., 2004). The primer pair used to amplify the 5′ region was TCP1 (5′-ACTGGGCCCTGATGTTTACCTCTCTTTGGGTCATCCCATTCTATAC-3′) with σ-TCP2 (5′-AAAAAGCTTTATTACCATTGTTATTGGTAATTAACAAACTATTGATC-3′) and for the 3′ homology TCP3 (5′-A CCGCGGCCGCATAATTCAAAGAGGTCATTTAGATCAAGTTCAATTAG-3′) with TCP4 (5′-CCTCCGCGGCTTCAGGCATTGGTTCAACTTCTTGATTATTCTCAAC -3'). The PCR products were inserted as ApaI/HindIII and NotI/SacII fragments into the corresponding sites in pLPBLP, yielding pDT70.

Growth of control vs mutant strains was assayed in HL5 medium, by calculating the mean generation time, and on Klebsiella aerogenes bacterial lawns, by monitoring the expansion of a spot of 104 cells. Spore viability was also assayed, both with and without detergent treatment, by clonally diluting spores on bacterial lawns and counting the resultant plaques (Kay, 1982).

Endocytosis assays

Membrane uptake was measured in real time at 22°C with 2 × 106 cells in 1 ml of KK2C containing 10 µM FM1-43 (Life Technologies). Briefly, a 2-ml fluorimeter cuvette containing 0.9 ml of KK2C plus 11 µM FM1-43 was placed in the fluorimeter (PerkinElmer LS50B) with stirring set on high. The uptake was initiated by the addition of 100 µl cells at 2 × 107/ml in KK2C and data collected every 1.2 s at an excitation of 470 nm (slit width 5 nm) and emission of 570 nm (slit width 10 nm) for up to 360 s. The uptake curves were biphasic and the data were normalized against the initial rise in fluorescence, when the cells were first added to the FM1-43, as this essentially corresponds to the dye incorporation into the plasma membrane only (Aguado-Velasco and Bretscher, 1999). The uptake rate was calculated from linear regression of the initial linear phase of the uptake using GraphPad Prism software. The surface area uptake time is 1/slope of the initial phase.

Fluid phase uptake was measured at 22°C using FITC-dextran 70 kDa (Sigma FD-70) by adding 2 mg/ml (final) to cells (1 × 107/ml) in filtered HL5 medium that was shaken at 180 rpm. Duplicate 0.5 ml samples were taken at each time point and diluted in 1 ml of ice-cold HL5 in a microcentrifuge tube held on iced water. Cells were pelleted, the supernatant aspirated, and the pellet washed twice by centrifugation in 1.5 ml ice-cold wash buffer (KK2C plus 0.5%wt/vol BSA) before being lysed in 1 ml of buffer [100 mM Tris–HCl, 0.2% (vol/vol) Triton X-100, pH 8.6] and fluorescence then determined (excitation 490 nm, slit width 2.5 nm; emission 520 nm, slit width 10 nm). Data were normalized to protein content (Traynor and Kay, 2007).

Comparative genomics

Sequences from Arabidopsis thaliana, Dictyostelium discoideum, and Naegleria gruberi were obtained with our new reverse HHpred tool. These sequences were used to build HMMs for each subunit using HMMer v3.1b1 (http://hmmer.org). HMMs were used to search the protein databases for the organisms in Figure 3A (see Figure 3—source data 1 for the location of each genomic database). Sequences identified as potential homologues were verified through reciprocal BLAST into the genomes of each of the original three sequences. Sequences were considered homologues if they retrieved the correct orthologue as the reciprocal best hit in at least one of the reference genomes, with an e-value at least two orders of magnitude better than the next best hit. New sequences were incorporated into the HMM prior to searching a new genome in order to increase the sensitivity and specificity of the HMM. Genomic protein databases were also searched by BLAST using the closest related organism with an identified sequence as the reference genome. Nucleotide databases (scaffolds or contigs) were also searched using tblastn to ensure that no sequences were missed resulting from incomplete protein databases. The distribution of TSET components is displayed in Coulson plot format using the Coulson plot generator v1.5 (Field et al., 2013).

Phylogenetic analysis

Identified sequences were combined with the adaptin and COPI sequences from Hirst et al. (2011) into subunit-specific data sets with the intention of concatenation. Data sets were aligned using MUSCLE v3.6 (Edgar, 2004) and masked and trimmed using Mesquite v2.75. Phylogenetic analysis was carried out using MrBayes v.3.2.2 (Ronquist and Huelsenbeck, 2003) and RAxML v7.6.3 (Stamatakis, 2006), hosted on the CIPRES web portal (Miller et al., 2010). MrBayes was run using a mixed model with the gamma parameter until convergence (splits frequencey of 0.1). RAxML was run under the LG + F + CAT model (Lartillot et al., 2009) and bootstrapped with 100 pseudoreplicates. The resulting trees were visualized using FigTree v1.4. Initial data sets were run and long branches were removed. Data sets were then re-aligned and re-run as above. Opisthokont adaptin and COPI sequences were also removed from all data sets except from the TCUP alignment. Data sets were realigned and new phylogenetic analyses were carried out. Remaining sequences were used for concatenation. Sequences were aligned and trimmed, as above, and concatenated using Geneious v7.0.6. Subsequent phylogenetic analysis was carried using PhyloBayes v3.3 (Lartillot et al., 2009) under the LG + CAT model until a splits frequency of 0.1 and 100 sampling points was achieved, and PhyML v3.0, with model testing carried out using ProtTest v3.3. MrBayes and RAxML were used as above. Raw phylogenetic trees were converted into figures using Adobe Illustrator CS4. The models of amino acid sequence evolution are provided in Figure 3—figure supplement 1. The database identifiers of all sequences and their abbreviations and figure annotations are provided in Figure 3—source data 1. All alignments are available in Supplementary file 1.

Homology modeling

The Phyre v2.0 web server (Kelley and Sternberg, 2009) was used to predict the 3D structures of each TTRAY from A. thaliana, D. discoideum, and N. gruberi. Default settings were used for structural predictions, and structures were visualized using MacPyMOL (www.pymol.org).

Funding Information

This paper was supported by the following grants:

http://dx.doi.org/10.13039/100004440The Wellcome Trust +086598 to Jennifer Hirst, Robin Antrobus, Margaret S Robinson.

http://dx.doi.org/10.13039/501100000265Medical Research Council +MC_U105115237 to David Traynor, Gareth Bloomfield, Robert R Kay.

http://dx.doi.org/10.13039/501100000146Alberta Innovates Technology Futures +New Faculty Award, 201000076 to Alexander Schlacht, Joel B Dacks.

http://dx.doi.org/10.13039/501100000038Natural Sciences and Engineering Research Council of Canada +PGSD3-442728-2013 to Alexander Schlacht.

Acknowledgements

We thank the members of the Robinson, Dacks, and Kay labs for helpful discussions.

JH and JPN conceived the database, JH collated all the searches and performed some of the functional analysis in Dictyostelium, JBD, and AS performed the in depth evolutionary analysis, DT and RRK conceived and performed the majority of the experiments in Dictyostelium, GB helped to identify Dictyostelium orthologues, and RA performed the mass spectrometry analysis. MSR, JBD and JH prepared the manuscript.

Additional information<bold>Competing interests</bold>

The authors declare that no competing interests exist.

<bold>Author contributions</bold>

JH, Conception and design, Acquisition of data, Analysis and interpretation of data, Drafting or revising the article.

AS, Conception and design, Acquisition of data, Analysis and interpretation of data, Drafting or revising the article.

JBD, Conception and design, Acquisition of data, Analysis and interpretation of data, Drafting or revising the article.

MSR, Conception and design, Acquisition of data, Analysis and interpretation of data, Drafting or revising the article.

JPN, Conception and design, Acquisition of data, Analysis and interpretation of data.

DT, Conception and design, Acquisition of data, Analysis and interpretation of data.

GB, Conception and design, Acquisition of data, Analysis and interpretation of data.

RA, Conception and design, Acquisition of data, Analysis and interpretation of data.

RRK, Conception and design, Acquisition of data, Analysis and interpretation of data.

Additional files10.7554/eLife.02866.031

Untrimmed, masked alignments used in phylogenetic analysis (Figure 4A, and Supplemental Figures. Masks indicated regions of sequences retained for phylogenetic analysis. Text files containing aligned sequences are in FASTA format. Alignment for the concatenated tree is composed of the trimmed TPLATE.R2, TSAUCER.R2, TCUP.R2, and TSPOON.R2 alignments.

DOI: +http://dx.doi.org/10.7554/eLife.02866.031

Major datasets

The following dataset was generated:

HirstJ, SchlachtA, NorcottJP, TraynorD, BloomfieldG, AntrobusR, KayRR, DacksJB, and RobinsonMS, 2014, Reverse HHpred, http://reversehhpred.cimr.cam.ac.uk, Publicly available at the given URL.

The following previously published datasets were used:

PruittKD, BrownGR, HiattSM, Thibaud-NissenF, AstashynA, ErmolaevaO, FarrellCM, HartJ, LandrumMJ, McGarveyKM, MurphyMR, O'LearyNA, PujarS, RajputB, RangwalaSH, RiddickLD, ShkedaA, SunH, TamezP, TullyRE, WallinC, WebbD, WeberJ, WuW, DicuccioM, KittsP, MaglottDR, MurphyTD, OstellJM, 2014, RefSeq, ftp://ftp.ncbi.nih.gov/refseq/release/, Publicly available at the given URL.

BernsteinFC, KoetzleTF, WilliamsGJ, MeyerEEJnr, BriceMD, RodgersJR, KennardO, ShimanouchiT, and TasumiM, 1977, pdb70, ftp://toolkit.lmb.uni-muenchen.de/pub/HHsearch/databases/hhsearch_dbs/, Publicly available at the given URL.

ReferencesAguado-VelascoCBretscherMS1999Circulation of the plasma membrane in DictyosteliumMolecular Biology of the Cell104419442710.1091/mbc.10.12.441910588667AntrobusRBornerGHH2011Improved elution conditions for native co-immunoprecipitationPLOS ONE23e1821810.1371/journal.pone.0018218AsensioCSSirkisDWMaasJWJnrEgamiKToTLBrodskyFMShuXChengYEdwardsRH2013Self-assembly of VPS41 promotes sorting required for biogenesis of the regulated secretory pathwayDevelopmental Cell2742543710.1016/j.devcel.2013.10.00724210660BoehmMBonifacinoJS2002Genetic analyses of adaptin function from yeast to mammalsGene28617518610.1016/S0378-1119(02)00422-511943473CabreraMLangemeyerLMariMRethmeierROrbanIPerzABröckerCGriffithJKloseDSteinhoffHJReggioriFEngelbrecht-VandréSUngermannC2010Phosphorylation of a membrane curvature-sensing motif switches function of the HOPS subunit Vps41 in membrane tetheringThe EMBO Journal191845859CamachoCCoulourisGAvagyanVMaNPapadopoulosJBealerKMaddenTL2009BLAST+: architecture and applicationsBMC Bioinformatics1042110.1186/1471-2105-10-42120003500CarverTHarrisSRBerrimanMParkhillJMcQuillanJA2012Artemis: an integrated platform for visualization and analysis of high-throughput sequence-based experimental dataBioinformatics2846446910.1093/bioinformatics/btr70322199388CocucciEAguetFBoulantSKirchhausenT2012The first five seconds in the life of a clathrin-coated pitCell15049550710.1016/j.cell.2012.05.04722863004DacksJBPoonPPFieldMC2008Phylogeny of endocytic components yields insight into the process of nonendosymbiotic organelle evolutionProceedings of the National Academy of Sciences of the United States of America10558859310.1073/pnas.070731810518182495DevosDDokudovskayaSAlberFWilliamsRChaitBTSaliARoutMP2004Components of coated vesicles and nuclear pore complexes share a common molecular architecturePLOS Biology2e38010.1371/journal.pbio.002038015523559EdgarRC2004MUSCLE: a multiple sequence alignment method with reduced time and space complexityBMC Bioinformatics511310.1186/1471-2105-5-11315318951FaixJKreppelLShaulskyGSchleicherMKimmelAR2004A rapid and efficient method to generate multiple gene disruptions in Dictyostelium discoideum using a single selectable marker and the Cre-loxP systemNucleic Acids Research32e14310.1093/nar/gnh13615507682FieldHICoulsonRMRFieldMC2013An automated graphics tool for comparative genomics: the Coulson plot generatorBMC Bioinformatics1414110.1186/1471-2105-14-14123621955FieldMCDacksJB2009First and last ancestors: reconstructing evolution of the endomembrane system with ESCRTs, vesicle coat proteins, and nuclear pore complexesCurrent Opinion in Cell Biology2141310.1016/j.ceb.2008.12.00419201590GadeyneASanchez-RodriguezCVannesteSDi RubboSZauberHVannesteKVan LeeneJDe WinneNEeckhoutDPersiauGVan De SlijkeECannootBVercruysseLMayersJRAdamowskiMKaniaUEhrlichMSchweighoferAKetelaarTMaereSBednarekSYFrimlJGevaertKWittersERussinovaEPerssonSDe JaegerGVan DammeD2014The TPLATE adaptor complex drives clathrin-mediated endocytosis in plantsCell15669170410.1016/j.cell.2014.01.03924529374GotthardtDWarnatzHJHenschelOBrückertFSchleicherMSoldatiT2002High-resolution dissection of phagosome maturation reveals distinct membrane trafficking phasesMolecular Biology of the Cell133508352010.1091/mbc.E02-04-020612388753HenneWMBoucrotEMeineckeMEvergrenEVallisYMittalRMcMahonHT2010FCHO proteins are nucleators of clathrin-mediated endocytosisScience3281281128410.1126/science.118846220448150HirstJBarlowLDFranciscoGCSahlenderDASeamanMNJDacksJBRobinsonMS2011The fifth adaptor protein complexPLOS Biology9e100117010.1371/journal.pbio.100117022022230HirstJIrvingCBornerGHH2013Adaptor protein complexes AP-4 and AP-5: new players in endosomal trafficking and progressive spastic paraplegiaTraffic1415316410.1111/tra.1202823167973HirstJKayRRTraynorD2015Dictyostelium Cultivation, Transfection, Microscopy and FractionationBio-protocol5e148510.21769/BioProtoc.1485JenneNRauchenbergerRHackerUKastTManiakM1998Targeted gene disruption reveals a role for vacuolin B in the late endocytic pathway and exocytosisJournal of Cell Science11161709394012KayRR1982cAMP and spore differentiation in Dictyostelium discoideumProceedings of the National Academy of Sciences of the United States of America7933283331KayRR1987Cell differentiation in monolayers and the investigation of slime mold morphogensMethods in Cell Biology2843344810.1016/S0091-679X(08)61661-13600415KelleyLASternbergMJE2009Protein structure prediction on the web: a case study using the Phyre serverNature Protocols436337110.1038/nprot.2009.219247286KnechtDPangKM1995Electroporation of Dictyostelium discoideumMethods in Molecular Biology4732133010.1385/0-89603-310-4:3217550749KoumandouVLWicksteadBGingerMLvan der GiezenMDacksJBFieldMC2013Molecular paleontology and complexity in the last eukaryotic common ancestorCritical Reviews in Biochemistry and Molecular Biology4837339610.3109/10409238.2013.82144423895660LartillotNLepageTBlanquartS2009PhyloBayes 3: a Bayesian software package for phylogenetic reconstruction and molecular datingBioinformatics252286228810.1093/bioinformatics/btp36819535536MayersJRWangLPramanikJJohnsonASarkeshikAWangYSaengsawangWYatesJRIIIAudhyaA2013Regulation of ubiquitin-dependent cargo sorting by multiple endocytic adaptors at the plasma membraneProceedings of the National Academy of Sciences of the United States of America110118751186210.1073/pnas.130291811023821745MillerMAPfeifferWSchwartzT2010Creating the CIPRES Science Gateway for inference of large phylogenetic treesin Proceedings of the Gateway Computing Environments Workshop. GCENew Orleans, LA1814RauchenbergerRHackerUMurphyJNiewöhnerJManiakM1997Coronin and vacuolin identify consecutive stages of a late, actin-coated endocytic compartment in DictyosteliumCurrent Biology: CB121521810.1016/S0960-9822(97)70093-9RehlingPDarsowTKatzmannDJEmrSD1999Formation of AP-3 transport intermediates requires Vps41 functionNature Cell Biology134635310.1038/1403710559961ReiderABarkerSLMishraSKImYJMaldonado-BaezLHurleyJHTraubLMWendlandB2009Syp1 is a conserved endocytic adaptor that contains domains involved in cargo selection and membrane tubulationThe EMBO Journal283103311610.1038/emboj.2009.24819713939RonquistFHuelsenbeckJP2003MrBayes 3: Bayesian phylogenetic inference under mixed modelsBioinformatics191572157410.1093/bioinformatics/btg18012912839SchlachtAHermanEKKluteMJFieldMCDacksJB2014Missing pieces of an ancient puzzle: Evolution of the eukaryotic membrane-trafficking systemCold Spring Harbor Perspectives in Biology10.1101/CSHPERSPECT.a016048SchwanhäusserBBusseDLiNDittmarGSchuchhardtJWolfJChenWSelbachM2011Global quantification of mammalian gene expression controlNature47333734221593866SeamanMNJHarbourMETattersallDReadEBrightN2009Membrane recruitment of the cargo-selective retromer subcomplex is catalysed by the small GTPase Rab7 and inhibited by the Rab-GAP TBC1D5Journal of Cell Science1222371238210.1242/jcs.04868619531583ShinaMCMüllerRBlau-WasserRGlöcknerGSchleicherMEichingerLNoegelAAKolanusW2010A cytohesin homolog in Dictyostelium amoebaePLOS ONE5e937810.1371/journal.pone.000937820186335StamatakisA2006RAxML-VI-HPC: maximum likelihood-based phylogenetic analyses with thousands of taxa and mixed modelsBioinformatics222688269010.1093/bioinformatics/btl44616928733TraynorDKayRR2007Possible roles of the endocytic cycle in cell motilityJournal of Cell Science1202318232710.1242/jcs.00773217606987UmasankarPKSankerSThiemanJRChakrabortySWendlandBTsangMTraubLM2012Distinct and separable activities of the endocytic clathrin-coat components Fcho1/2 and AP-2 in developmental patterningNature Cell Biology1448850110.1038/ncb247322484487Van DammeDCoutuerSDe RyckeRBougetFYInzéDGeelenD2006Somatic cytokinesis and pollen maturation in Arabidopsis depend on TPLATE, which has domains similar to coat proteinsThe Plant Cell183502351810.1105/tpc.106.04092317189342Van DammeDGadeyneAVanstraelenMInzéDVan MontaguMCDe JaegerGRussinovaEGeelenD2011Adaptin-like protein TPLATE and clathrin recruitment during plant somatic cytokinesis occurs via two distinct pathwaysProceedings of the National Academy of Sciences of the United States of America10861562010.1073/pnas.101789010821187379VedovatoMRossiVDacksJBFilippiniF2009Comparative analysis of plant genomes allows the definition of the “Phytolongins”: a novel non-SNARE longin domain protein familyBMC Genomics1051010.1186/1471-2164-10-51019889231VeltmanDMAkarGBosgraafLVan HaastertPJ2009A new set of small, extrachromosomal expression vectors for Dictyostelium discoideumPlasmid6111011810.1016/j.plasmid.2008.11.00319063918
10.7554/eLife.02866.032Decision letterNelsonW JamesReviewing editorStanford University, United States

eLife posts the editorial decision letter and author response on a selection of the published articles (subject to the approval of the authors). An edited version of the letter sent to the authors after peer review is shown, indicating the substantive concerns or comments; minor concerns are not usually shown. Reviewers have the opportunity to discuss the decision before the letter is sent (see review process). Similarly, the author response typically shows only responses to the major concerns raised by the reviewers.

Thank you for sending your work entitled “TSET: an ancient and widespread trafficking complex” for consideration at eLife. Your article has been favorably evaluated by a Senior editor and 2 reviewers, one of whom is a member of our Board of Reviewing Editors.

The Reviewing editor and the other reviewer discussed their comments before we reached this decision, and the Reviewing editor has assembled the following comments to help you prepare a revised submission.

This manuscript describes the characterization of new heterohexameric complex (TSET) from the slime mold Dictyostelium, with striking similarity to the AP and F-COPI adaptor complexes. Only using a clever 'reverse HHpred' strategy did the authors find the complex, since its sequence conservation is too weak for identification using more classical methods (Blast or the like). After biochemically characterizing the complex the authors go on with an in-depth phylogenetic analysis, which makes the clearest case yet that all APs, F-COPI, and TSET likely diverged from a common ancestor already present in LECA. This is a significant advance in our understanding of the evolution of eukaryotic life in general, and vesicle-mediated trafficking within the endomembrane system in particular. Importantly, this study also corrects the highly visible recently published misconception of a plant-specific adaptor complex (Gadeyne et al., Cell 2014).

Neither of the reviewers had major concerns and both strongly recommended publication. The conclusions are based on rigorous experimental procedures and skilled phylogenetic and bioinformatic analysis. However, one of the reviewers raised two minor points that you should consider in the revised manuscript:

1) The authors describe the 'reverse HHpred' method as novel; however, it appears to be conceptually very similar to the BackPhyre procedure, except that other proteomes are searched (http://www.sbg.bio.ic.ac.uk/phyre2/html/help.cgi?id=help/backphyre). The authors are encouraged to reword the relevant text passages about the 'novelty' of reverse HHpred accordingly or, better, compare and contrast with BackPhyre.

2) The protocoatomer hypothesis as originally stated in Devos et al., 2004 posited that the NPC and vesicle coats are related because of the use of proteins with common architecture in all systems. Ten years later, with an enormous amount of new data, we know that the story is not quite so simple. The beta-propeller is one of the most common folds in eukaryotes, and alpha-solenoids are also found in many processes, often to generate large protein assemblies. It is still an open question to what extend these different coating systems have a common origin, since the assembly of the only very superficially similar 'protocoatomer' structures are drastically different in clathrin COPI, COPII, and the NPC. To support the main thrust of this paper, we think that invoking the overly simplistic protocoatomer hypothesis is rather misleading, thus we would suggest to take it out or only refer to it in the Discussion.

10.7554/eLife.02866.033Author response

1) The authors describe the 'reverse HHpred' method as novel; however, it appears to be conceptually very similar to the BackPhyre procedure, except that other proteomes are searched (http://www.sbg.bio.ic.ac.uk/phyre2/html/help.cgi?id=help/backphyre). The authors are encouraged to reword the relevant text passages about the 'novelty' of reverse HHpred accordingly or, better, compare and contrast with BackPhyre.

One of the reviewers pointed out that our reverse HHpred tool is conceptually similar to BackPhyre. We hadn’t known about BackPhyre, so thank you for bringing it to our attention. We have now taken out the word “new” when referring to our tool, both in the Introduction and in the Conclusions; and in the Materials and methods section, we now compare and contrast reverse HHpred and BackPhyre. Interestingly, like reverse HHpred, BackPhyre was able to find three of the four core TSET subunits in Arabidopsis, and in both cases the subunit that couldn’t be found was TSAUCER. However, because reverse HHpred contains sequences from many more eukaryotes than BackPhyre, were able to find TSAUCER in both Naegleria and Dictyostelium, neither of which is represented in BackPhyre. So without HHpred, we would never have been able to identify the entire heterotetramer bioinformatically. Because the BackPhyre website encourages users to submit requests for additional genomes to be added, eventually it may be possible to use reverse HHpred and BackPhyre as complementary tools for searching the entire diversity of eukaryotes.

2) The protocoatomer hypothesis as originally stated in +Devos et al., 2004 +posited that the NPC and vesicle coats are related because of the use of proteins with common architecture in all systems. Ten years later, with an enormous amount of new data, we know that the story is not quite so simple. The beta-propeller is one of the most common folds in eukaryotes, and alpha-solenoids are also found in many processes, often to generate large protein assemblies. It is still an open question to what extend these different coating systems have a common origin, since the assembly of the only very superficially similar 'protocoatomer' structures are drastically different in clathrin COPI, COPII, and the NPC. To support the main thrust of this paper, we think that invoking the overly simplistic protocoatomer hypothesis is rather misleading, thus we would suggest to take it out or only refer to it in the Discussion.

The same reviewer made the point that the 10-year-old protocoatomer hypothesis, which we refer to several times in our original manuscript, is an oversimplification, because lots of proteins that are not vesicle coats also have the β-propeller and α-solenoid architecture. Thus, we have removed all mention of protocoatomers per se, while still pointing out that this type of architecture is commonly used when building the scaffolding part of a coat, and still citing the Devos et al. paper that first made this point. We do suspect that at least some of the coat scaffolds have a common origin. For instance, an HHpred analysis of Sec31 pulls out β’-COP immediately after Sec31 itself, although the relationship between clathrin heavy chain, Sec31, and COPI appears to be more distant. An in-depth phylogenetic analysis should shed more light on the evolution of these proteins, but for the time being, we agree that it is best to use the word “scaffold” rather than “protocoatomer”.

In addition to the changes described above, we have added some new TIRF microscopy data showing Dictyostelium expressing TSPOON-GFP. The original version of our manuscript contained only widefield data, which showed a diffuse cytosolic distribution of GFP-tagged TSPOON (which we know is overexpressed). However, by TIRF microscopy, we see discrete puncta, especially in the lower-expressing cells. This provides further evidence for TSPOON acting at the plasma membrane in Dictyostelium as well as in plants.

We have also changed the title, from “TSET: an ancient and widespread trafficking complex” to “TSET: an ancient and widespread membrane trafficking complex” because one of our colleagues pointed out that for those not in the membrane traffic field, it wouldn’t be clear from the title or abstract what the paper was going to be about.

diff --git a/tests/data/xml/pubmed-PMC13900.nxml b/tests/data/xml/pubmed-PMC13900.nxml new file mode 100644 index 00000000..68ab5542 --- /dev/null +++ b/tests/data/xml/pubmed-PMC13900.nxml @@ -0,0 +1,2 @@ + +
Breast Cancer ResBreast Cancer Research1465-54111465-542XBioMed CentralLondon1125074613900BCR-3-1-055Primary ResearchComparison of written reports of mammography, sonography and magnetic resonance mammography for preoperative evaluation of breast lesions, with special emphasis on magnetic resonance mammographyMalurSabine1WurdingerSusanne2MoritzAndreas1MichelsWolfgang1SchneiderAchim1aschneider@med.uni-jena.deDepartment of Gynecology, Friedrich-Schiller University, Jena, Germany.Institute for Diagnostic and Interventional Radiology, Friedrich-Schiller University, Jena, Germany.200121120003155601242000225200024620005102000Copyright © 2000 BioMed Central Ltd on behalf of the copyright holders

Patients with abnormal breast findings (n = 413) were examined by mammography, sonography and magnetic resonance (MR) mammography; 185 invasive cancers, 38 carcinoma in situ and 254 benign tumours were confirmed histologically. Sensitivity for mammography was 83.7%, for sonography it was 89.1% and for MR mammography it was 94.6% for invasive cancers. In 42 patients with multifocal invasive cancers, multifocality had been detected by mammography and sonography in 26.2%, and by MR mammography in 66.7%. In nine patients with multicentric cancers, detection rates were 55.5, 55.5 and 88.8%, respectively. Carcinoma in situ was diagnosed by mammography in 78.9% and by MR mammography in 68.4% of patients. Combination of all three diagnostic methods lead to the best results for detection of invasive cancer and multifocal disease. However, sensitivity of mammography and sonography combined was identical to that of MR mammography (ie 94.6%).

breast lesionsdiagnostic methods
Introduction

Mammography and sonography are the standard imaging techniques for detection and evaluation of breast disease [1]. Mammography is the most established screening modality [2]. Especially in young women and women with dense breasts, sonography appears superior to mammography, and differentiation between solid tumours and cysts is easier. Sensitivity and specificity of sonography or mammography are higher if sonography and mammography are combined [3].

It is generally accepted that MR mammography is the most sensitive technique for diagnosis of breast cancer, whereas the reported specificity of MR mammography varies [4,5,6,7,8,9,10,11,12]. In those studies, MR mammography was performed and evaluated by highly specialized radiologists in a research setting. It was therefore the purpose of the present prospective study to compare the validity of MR mammography with mammography and sonography in clinical routine practice. Findings for the three diagnostic methods documented on routine reports that were available to the surgeon preoperatively formed the basis of this comparison. Special emphasis was placed on the identification of multifocal and multicentric invasive disease.

Patients and methodsPatients

Between September 1995 and September 1998, 413 patients with abnormal breast findings were referred for histological evaluation to the Department of Gynecology of the Friedrich-Schiller University, Jena, Germany. Patients had been selected and referred because of the presence of breast lesions detected by palpation and/or mammography and/or sonography. In addition, MR mammography was performed in all patients. We excluded five patients with invasive cancer who had a history of core-needle or fine-needle biopsy cancer within 2 weeks before referral, because the presence of haematoma may mimic false-positive findings on MR mammography. In addition, five patients who did not keep still during MR mammography were excluded.

Imaging

Analysis of the sonograms taken in patients with histologically confirmed carcinoma in situ were excluded from analysis because the value of sonography for detection of premalignant disease is limited. Mammography was not performed in 32 patients who were younger than 30 years or who had had a mastectomy with suspected local recurrence. For all patients, written reports of mammographic, sonographic and dynamic MR mammographic findings were available preoperatively.

The majority of mammograms (68%) were performed at the Institute for Diagnostic and Interventional Radiology, Friedrich-Schiller-University, using a senograph DMR (GE Medical Systems, Milwaukee, Wisconsin, USA) with standard craniocaudal and mediolateral oblique projections. Mammograms obtained at other institutions that were considered to match the quality standards of our institution were also accepted for evaluation.

All sonography and MR examinations were carried out at the Department of Gynecology and the Institute for Diagnostic Interventional Radiology, Friedrich-Schiller-University, respectively. Sonography was done using a 7.5-MHz linear array probe with a Sonoline Versa Pro (Siemens, Erlangen, Germany). MR mammography was performed exclusively at the Institute for Diagnostic Interventional Radiology, using a Gyroscan ACSII (Philips, Nijmegen, The Netherlands) with a field strength of 1.5 T using a double-breast coil. Dynamic T1-weighted images were aquired using a multislice two-dimensional fast-field-echo (FFE) sequence. We used the following parameters: TR 97, TE 5.0, flip angle 80°, slice thickness 4.0 mm, gap 0.4 mm, field of view 350 mm and transverse orientation. In addition T2-weighted images (4000/300/90°/4.0 mm/0.4/350 mm) were obtained. As contrast medium, 0.1 mmol gadolinium-DTPA/kg body weight (Magnevist; Schering, Berlin, Germany) was used and injected as a bolus. One unenhanced and seven enhanced studies were acquired with an acquisition time of 1 min. Criteria for malignancy were signal enhancement of 90% or more within the first 2 min after bolus injection and signal plateau or washout phenomena afterward. Additional criteria were irregular borders of the lesion and low signal intensity in the T2-weighted images.

Mammograms were read by three different radiologists, sonography was done by three different gynaecologists and MR mammography was interpreted by a total of six different radiologists.

Definition for multifocal carcinoma was a distance of less than 3 cm and for multicentric carcinoma a distance over 3 cm between various lesions.

Statistical analysis

Interpretation of the various diagnostic procedures was compared with the histological examination with regard to sensitivity, specificity, accuracy, and positive and negative predictive value. Criteria for suspected malignancy in the written reports were the terms 'cancer', 'malignant lesion or tumor', or 'suspicious for cancer'. Sensitivity, specificity, negative and positive predicitive value, and accuracy were evaluated as follows:

Sensitivity = patients with suspected breast cancer/patients with histologically confirmed breast cancer

Specificity = patients with suspected benign disease/patients with histologically confirmed benign disease

Positive predictive value = patients with histologically confirmed breast cancer/patients with suspected breast cancer

Negative predictive value = patients with histologically confirmed benign disease/patients with suspected benign disease

Accuracy = patients with true-positive and true-negative detected disease/patients with histologically confirmed breast cancer

A result was classified as false-negative when a diagnostic method classified a histologically confirmed cancer as benign. A result was classified as false-positive when a diagnostic method classified a histologically confirmed benign lesion as cancer. We compared the preformance of all diagnostic methods individually and in combination using the results from all patients. Statistical analysis was performed for all variables with Fisher's exact test and Pearson's χ2 test.

Results

All patients underwent breast surgery and all abnormal lesions identified by mammography, sonography or MR mammography were surgically removed. A total of 477 breast lesions were examined histologically, revealing the presence of 185 invasive cancers, 38 carcinomata in situ and 254 benign lesions (fibroadenoma, papilloma, intraductal or adenoid ductal hyperplasia, cystic mastopathia). There were four patients with malignant lesions in both breasts. In 42 patients multifocal tumours and in nine patients multicentric tumors were found on histological examination. Among the 185 invasive lesions, 178 were primary cancers, five were recurrences, one was metastatic and one was an angiosarcoma. The majority of invasive breast cancers were staged as pT1c (44%). Six per cent of tumors were detected in stage pT1a, 18% in stage pT1b, 25% in stage pT2, 3% in stage pT3 and 4% in stage pT4. The distribution of histopathological tumour types is shown in Table 1. The mean age of patients was 58 years (range 19-85 years).

The sensitivity of MR mammography was significantly higher than those of mammography and sonography (P < 0.005 and P < 0.05; Table 2). The specificity of sonography was significantly higher than those of mammography and MR mammography (P < 0.05 and P < 0.005; Table 2). The negative predictive values for sonography and MR mammography were significantly higher than that of mammography (P < 0.05 and P < 0.005; Table 2). With regard to accuracy, no significant difference between the three modalities was found (Table 2). Combining of all three diagnostic methods yielded the best results for detection of cancer (P < 0.005; Table 3). The sensitivity and negative predictive value for the combination of mammography and MR mammography, and the combination of sonography and MR mammography were significantly higher than those for the combination of mammograpy and sonography (P < 0.05; Table 3). The highest result for accuracy was seen for a combination of all three methods (P < 0.05; Table 3).

Mammography was false-negative in 30 out of 184 invasive cancers, sonography was false-negative in 20 out of 185 cancers, and 10 out of 185 invasive cancers were missed by MR mammography. The majority of false-negative findings was found in stage1 disease, ductal carcinoma and grade 3 tumors (Table 4). Of 10 invasive cancers missed by MR mammography, eight were found by mammography and sonography. By all three techniques, one invasive ductal carcinoma (pT1b) was misinterpreted as fibroadenoma. In another patient, a microinvasive lobular carcinoma of 5 mm diameter was not detected with mammography and MR mammography, whereas sonography detected a solid, benign tumour. MR mammography identified 10 invasive cancers (5.2%) that were missed by mammography and sonography, whereas one invasive cancer was found by mammography alone. By sonography alone, not a single case of invasive disease was detected when MR mammography or mammography were nonsuspected.

The highest detection rate for multifocal invasive disease was seen with MR mammography, which identified 28 out of 42 (66.7%) histologically confirmed multifocal invasive cancers, whereas mammography and sonography both identified 11 (26.2%) of these cancers (P < 0.05). The combination of all three diagnostic methods leads to the best result for detection of multifocality (76.2%; P < 0.05), whereas the detection rate with the combination of mammography and sonography was 35.7%, with the combination of sonography and MR mammography it was 69% (P < 0.05 versus mammography + sonography), and with the combination of mammography and MR mammography it was 73.8% (P < 0.05 versus mammography + sonography). Multifocal invasive disease was suspected in 12 patients by mammography, in 13 patients by sonography, and in 16 patients by MR mammography, but only unifocal disease was confirmed by histology. Out of nine patients with histologically confirmed multicentric invasive cancer, eight (88.8%) of these cancers were detected by MR mammography and five (55.5%) by mammography or sonography. One patient was diagnosed with multicentric invasive-lobular carcinoma stage pT2G2, which had been misinterpreted as benign tumour by sonography and mammography, and as haematoma by MR mammography.

Out of 38 patients with carcinoma in situ, mammography (suspicious microcalcifications, exclusively) identified 30 cases (78.9%) and MR mammography identified 26 cases (68.4%). When combining mammography and MR mammography, sensitivity for detection of carcinoma in situ increased to 87% (not significant).

Discussion

When the validity of individual diagnostic methods for detection of invasive breast cancer was analyzed, the sensitivity and specificity of mammography ranged from 79.9 to 89% and from 64 to 93.5%, respectively [6,7,13]; for sonography from 67.6 to 96% and from 93 to 97.7%, respectively [13,14]; and for MR mammography from 91 to 98.9 and from 20 to 97.4%, respectively [6,7,8,9,10,15,16,17].

The performance of mammography, sonography and MR mammography was compared in three large series (Table 5). The present results are similar with regard to sensitivity and specificity for the detection of malignant breast lesions, with MR mammography reaching the highest sensitivity of all imaging procedures.

When combinations of all three technique were analyzed, mammography and sonography (standard method) had a sensitivity of 83% and a specificity of 92% for detection of malignant disease [3]. A combination of mammography, sonography and MR mammography (combined method) showed a sensitivity of 95% and a specificity of 64% [3]. For nonpalpable lesions, sensitivity increased from 73% by the standard method to 82% for the combined method. Specificity for the standard method (89%) was higher than that for the combined method (71%). For palpable lesions a sensitivity of 85% for the standard and 98% for the combined method was achieved, whereas specificity for the standard method was 100% compared with 45% for the combined methods [3]. The positive predictive value was 94% for the standard and 80% for the combined methods, and the negative predictive values were 78 and 89%, respectively [3]. In the present study, we also found the highest sensitivity, specificity, and positive and negative predictive values for the combination of all three methods. Combination of mammography and sonography was as sensitive as MR mammography alone (94.6% versus 94.6%).

The majority of false-positive results for invasive cancer by MR mammography (80 out of 439) were caused by papillomas, intraductal hyperplasia grade 2 or 3, or fibroadenomas in the present series. These lesions have a good blood supply and may mimic invasive cancer [16,18].

Ten out of 185 (5.4%) malignant lesions were classified as false-negative by MR mammography. On histology, the majority of false-negative invasive cancers were lobular cancers (four out of 10). Bone et al [18] reported false-negative results in 11 out of 155 readings, with the majority being lobular cancers on histology. Lack of tumour-induced neovascularity may explain such findings. In particular, invasive lobular cancers infiltrate the normal tissue with columns of single cells, and receive adequate oxygenation without the requirement for increased vascularization [19]. Buadu et al [11] found that lobular and mucinous carcinomas had a low microvessel density.

Multifocality of breast cancers can be recognized adequately by MR mammography [20,21]. Boetes et al [22] reported that all 61 multifocal cancers were detected by MR mammography, compared with 31% by mammography and 38% by sonography. Esserman et al [20] detected multifocality by MR mammography in 100% (10 out of 10) versus 44% (four out of nine) by mammography. Relevant changes in therapy due to additional multicentric and contralateral tumour findings by MR mammography occur in 18% of patients as compared with conventional imaging [23]. We found a detection rate of multifocality of 66.7% by MR mammography, as compared with 26.2% by mammography and sonography. However, in 16 patients multifocal invasive disease as diagnosed by MR mammography was shown to be unifocal by histology.

Kramer et al [24] reported that MR mammography yielded the highest sensitivity for detection of multicentricity as compared with mammography and sonography (89, 66 and 79%, respectively) in 38 patients. These findings are comparable with the present results, in which eight out of nine multicentric cancers were diagnosed correctly.

Carcinoma in situ is identified by mammography through the presence of suspicious microcalcifications. Suspicious microcalcifications are more frequent in intraductal than in infiltrating cancers [25], which was also observed in the present series. Mammography showed a detection rate for carcinoma in situ of 78.9%, as compared with 65.8% by MR mammography; the combination of mammography and MR mammography lead to a detection rate of 86.4%. Fischer et al [26] reported that carcinoma in situ was identified by MR mammography in 25 out of 35 patients (72%); three ductal carcinomata in situ were detected by MR mammography exclusively. Sittek et al [27] reported that 14 out of 20 carcinomata in situ (70%) were correctly diagnosed by MR mammography on the basis of focal increase of signal intensity. Those authors concluded that carcinoma in situ is not reliably detected by MR mammography because of lack of a uniform pattern of enhancement. Esserman et al [20] reported a detection rate of 43% for ductal carcinoma in situ by MR mammography. Among 36 woman with carcinoma in situ, Gilles et al [28] demonstrated two cases without early contrast enhancement.

The present study showed that, for detection of breast cancer, MR mammography is not superior to a combination of sonography and mammography. For identification of multifocal or multicentric disease, MR mammography proved to be the most accurate technique.

OrelSGTroupinRHNonmammographic imaging of the breast: current issues and future prospects.Semin Roentgenol1993282312418211231KerlikowskeKGradyDRubinSMSandrockCErnsterVLEfficancy of screening mammography.JAMA19952731491547799496Müller-SchimpfleMStollPSternWKutzSDammannFClaussenCDDo mammography, sonography and MR mammography have a diagnostic benefit compared with mammography and sonography?AJR Am J Roentgenol1997168132313299129436HeywangSHHahnDSchmidtHKrischkeIEiermannWBassermannRLissnerJMR imaging of the breast using gadolinium-DTPA.J Comput Assist Tomogr1986101992043950145KaiserWAZeitlerEMR mammography: first clinical results [in German].Röntgenpraxis198538256262KaclGMLiuPDebatinJFGarzoliECaduffRFKrestinGPDetection of breast cancer with conventional mammography and contrast-enhanced MR imaging.Eur Radiol199881942009477265BoneBPentekZPerbeckLVeressBDiagnostic accuracy of mammography and contrast-enhanced MR imaging in 238 histologically verified breast lesions.Acta Radiol1997384894969240665KaiserWAMR Mammographie.Radiologe1993332922998390704Heywang-KöbrunnerSHContrast-enhanced magnetic resonance imaging of the breast.Invest Radiol199429941048144345HarmsSEFlamingDPMR imaging of the breast.J Magn Reson Imaging199332772838428095BuaduLDMurakamiJMurayamaSHashiguchiNSakaiSMasudaKToyoshimaSBreast lesions: correlation of contrast medium enhancement patterns on MR images with histopathologic findings and tumor angiogenesis.Radiology19962006396498756909OrelSGSchnallMDLiVolsiVATroupinRHSuspicious breast lesions: MR imaging with radiologic-pathologic correlation.Radiology19941904854938284404CiattoSRosselli del TurcoMCatarziSMorroneDThe contribution of sonography to the differential diagnosis of breast cancer.Neoplasma1994413413457870218OhKKChoJHYoonCSJungWHLeeHDComparative studies of breast diseases by mammography, ultrasonography and contrast-enhanced dynamic magnetic resonance imaging.Breast Ultrasound Update. Edited by Madjar H, Teubner J, Hackelöer BJ. Basel: Karger;1994332343HeywangSHMRI in breast disease.Book of Abstracts: Society of Magnetic Resonance in Medicine 1. Berkeley, CA.1993abstract 113KaiserWAFalse-positive results in dynamic MR mammography. Causes, frequency and methods to avoid.Magn Reson Imaging Clin North Am19942539555Heywang-KoebrunnerSHViewegPHeinigAKuchlerCContrast-enhanced MRI of the breast: accuracy, value, controversies, solutions.Eur J Radiol199724941089097051BoneBAspelinPBrongeLIsbergBPerbeckLVeressBSensitivity and specificity of MR mammography with histopathological correlation in 250 breasts.Acta Radiol1996372082138600964StellingCBMR imaging of the breast for cancer evaluation: current status and future directions.Radiol Clin North Am199533118712047480665EssermanLHyltonNYassaLBarclayJFrankelSSicklesEUtility of magnetic resonance imaging in the managment of breast cancer: evidence for improved preoperative staging.J Clin Oncol19991711011910458224KaiserWADiedrichKReiserMKrebsDModern diagnostics of the breast [in German].Geburtsh u Frauenheilk199353114BoetesCMusRHollandRBarentszJOStrijkSPWobbesTHendriksJHRuysSHBreast tumors: comparative accuracy of MR imaging relative to mammography and US for demonstration extent.Radiology19951977437477480749FischerUVossheinrichRKopkaLvon HeydenDOestmannJWGrabbeEHPreoperative MR mammography in patients with breast cancer: impact of therapy [abstract].Radiology19941931218090879KramerSSchultz-WendtlandRHagedornKBautzWLangNMagnetic resonace imaging and its role in the diagnosis of multicentric breast cancer.Anticancer Res199818216321649703777CiattoSRosselli del TurcoMBonardiRCataliottaLDistanteVCardonaGBianchiSNon-palpable lesions of the breast detected by mammography: review of 1182 consecutive histologically confirmed cases.Eur J Cancer199430A40448142162FischerUWesterhofJPBrinckUKorabiowskaMSchauerAGrabbeEDuctal carcinoma in situ in dynamic MR mammography at 1.5 T [in German].Fortschr Röntgenstr1996164290294SittekHKesslerMHeuckAFBredlTPerletCKünzerILebeauAUntchMReiserMMorphology and contrast enhancement of ductal carcinoma in situ in dynamic 1.0 T MR mammography [in German].Fortschr Röntgenstr199716722472251GillesRZafraniBGuinebretiereJMMeunierMLucidarmeOTardivonAARochardFVanelDNeuenschwanderSArriagadaRDuctal carcinoma in situ: MR imaging-histopathologic correlation.Radiology19951964154197617854BuchbergerWKapfererMStögerAChemelliAJudmaierWFelberSDignity evaluation of focal mamma lesions: a prospective comparison between mammography, sonography and dynamic MR mammography [in German; abstract].Radiologe19953586HeywangSHWolfAPrussEHilbertzTEiermannWPermanetterWMR imaging of the breast with Gd-DTPA: use and limitations.Radiology1989171951032648479Figures and Tables

Histopathology of 185 invasive cancers

Histopathologic diagnosisNumber of lesions
Ductal carcinoma109
Lobular carcinoma36
Mixed ductal/lobular carcinoma16
Mucinous carcinoma2
Medullary carcinoma3
Tubular carcinoma13
Others (metaplastic carcinoma,6
 angiosarcoma, metastases)

Comparison of mammography, sonography and MR mammography for preoperative prediction of histologically confirmed invasive cancer (n = 185) or benign disease (n = 254)

Diagnostic methodSensitivity (%)Specificity (%)PPV (%)NPV (%)Accuracy (%)
Mammography83.768.567.884.177.1
Sonography89.179.1*†65.790.983.4
MR mammography94.6*†68.568.694.679.5

*P < 0.005, versus MR mammography; P < 0.05, versus mammography; P < 0.05, versus sonography. NPV, negative predictive value; PPV, positive predictive value.

Comparison of various combinations of three diagnostic methods for preoperative prediction of histologically confirmed invasive cancer (n = 185) or benign disease (n = 254)

Diagnostic methodsSensitivity (%)Specificity (%)PPV (%)NPV (%)Accuracy (%)
Mammography + MR mammography98.9*90.588.499.1*94.1
Sonography + MR mammography98.9*93.391.599.2*95.7
Mammography + sonography94.692.189.795.993.2
All three methods combined99.495.393.999.697.0†‡

*P < 0.05, versus mammography and sonography; P < 0.005, versus mammography and sonography; P < 0.05, versus MR mammography and mammography. NPV, negative predictive value; PPV, positive predictive value.

Analysis of false-negative diagnosis of mammography (n = 30), sonography (n = 20) and MR mammography (n = 10) for 185 invasive cancers

CancerMR
characteristicsMammographySonographymammography
Tumour stage
 1a143
 1b852
 1c1163
 2622
 3110
 4 (inflammatory)320
Histological type
 Ductal15132
 Lobular1134
 Others444
Grading
 1231
 21065
 318114

Review of the literature: case series that compared mammography, sonography and MR mammography in patients with benign tumours and invasive cancer

MammographySonographyMR mamography



ReferencenSens (%)Spec (%)Sens (%)Spec (%)Sens (%)Spec (%)
[29]60829679509564
[14]150888896939899
[30]9891-83-98-

-, not indicated; Sens, sensitivity; Spec, specificity.

\ No newline at end of file diff --git a/tests/data/xml/research.0509.nxml b/tests/data/xml/research.0509.nxml new file mode 100644 index 00000000..1555b8a4 --- /dev/null +++ b/tests/data/xml/research.0509.nxml @@ -0,0 +1,634 @@ + +
pmcResearch (Wash D C)Research (Wash D C)RESEARCHResearch2639-5274AAAS +394692201151861910.34133/research.05090509Research ArticleHealth ScienceIbrutinib Promotes Atrial Fibrillation by Disrupting A-Kinase Anchoring Protein 1-Mediated Mitochondrial Quality Surveillance in Cardiomyocyteshttps://orcid.org/0000-0003-0516-5480LiYukun +1 + +2 +LiuXinmeng +1 + +2 +LinRong +1 + +2 +PengXiaodong +1 + +2 +WangXuesi +1 + +2 +MengFanchao +1 + +2 +JinShuqi +1 + +2 +LvWenhe +1 + +2 +LiuXiaoying +1 + +2 +DuZhuohang +1 + +2 +WenSongnan +3 +BaiRong +4 +RuanYanfei +1 + +2 +ZhouHao +5 + +6 +ZouRongjun +7 + +* +TangRibo +1 + +2 + +* +LiuNian +1 + +2 + +* +Department of Cardiology, Beijing Anzhen Hospital, +Capital Medical University, Beijing 100012, China. +National Clinical Research Center for Cardiovascular Diseases, Beijing 100012, China.Department of Cardiovascular Medicine, +Mayo Clinic, Scottsdale, AZ 85259, USA.Banner University Medical Center Phoenix, +College of Medicine University of Arizona, Phoenix, AZ 85123, USA.Department of Cardiology, +Chinese PLA General Hospital, Beijing 100853, China.Xianning Medical College, +Hubei University of Science and Technology, Xianning 437000, China.Department of Cardiovascular Surgery, +the Second Affiliated Hospital of Guangzhou University of Chinese Medicine, Guangzhou 510120, Guangdong, China.Address correspondence to: liunian1973@mail.ccmu.edu.cn (N.L.); tangribo@mail.ccmu.edu.cn (R.T.); zourj3@mail2.sysu.edu.cn (R.Z.)29102024202470509 +2972024 +2092024 +2992024 +29102024 +Copyright © 2024 Yukun Li et al.2024Yukun Li et al.https://creativecommons.org/licenses/by/4.0/Exclusive licensee Science and Technology Review Publishing House. No claim to original U.S. Government Works. Distributed under a Creative Commons Attribution License 4.0 (CC BY 4.0).

Background: Ibrutinib, a potent Bruton’s tyrosine kinase inhibitor with marked efficacy against hematological malignancies, is associated with the heightened risk of atrial fibrillation (AF). Although ibrutinib-induced AF is linked to enhanced oxidative stress, the underlying mechanisms remain unclear. Objective: This research aimed to explore the molecular mechanism and regulatory target in ibrutinib-induced AF. Methods: We performed in vivo electrophysiology studies using ibrutinib-treated mice, and then employed proteomic and single-cell transcriptomic analyses to identify the underlying targets and mechanisms. The effects of A-kinase anchoring protein 1 (AKAP1) depletion on mitochondrial quality surveillance (MQS) were evaluated using both in vivo and ex vivo AKAP1 overexpression models. Results: Atrial AKAP1 expression was significantly reduced in ibrutinib-treated mice, leading to inducible AF, atrial fibrosis, and mitochondrial fragmentation. These pathological changes were effectively mitigated in an overexpression model of ibrutinib-treated mice injected with an adeno-associated virus carrying Akap1. In ibrutinib-treated atrial myocytes, AKAP1 down-regulation promoted dynamin-related protein 1 (DRP1) translocation into mitochondria by facilitating DRP1 dephosphorylation at Ser637, thereby mediating excessive mitochondrial fission. Impaired MQS was also suggested by defective mitochondrial respiration, mitochondrial metabolic reprogramming, and suppressed mitochondrial biogenesis, accompanied by excessive oxidative stress and inflammatory activation. The ibrutinib-mediated MQS disturbance can be markedly improved with the inducible expression of the AKAP1 lentiviral system. Conclusions: Our findings emphasize the key role of AKAP1-mediated MQS disruption in ibrutinib-induced AF, which explains the previously observed reactive oxygen species overproduction. Hence, AKAP1 activation can be employed to prevent and treat ibrutinib-induced AF.

Introduction

Cancer therapeutics have made remarkable progress over time, significantly prolonging the survival period of cancer patients. However, the accompanying increased risk of cardiovascular diseases has emerged as a crucial factor affecting the prognosis of cancer survivors [13]. Anticancer drugs have exhibited considerable cardiotoxicity, which greatly limits their clinical applications. Consequently, cardio-oncology has become a field of common concern for both oncologists and cardiologists. Ibrutinib, an efficacious Bruton’s tyrosine kinase (BTK) inhibitor endorsed by the US Food and Drug Administration for treating chronic lymphocytic leukemia, mantle cell lymphoma, and so on [4,5], is linked to elevated risks of atrial fibrillation (AF) and hemorrhagic complications. A 10-fold increase in the incidence of AF has been reported in the ibrutinib arm [4]. Long-term studies on the use of ibrutinib have revealed AF rates of up to 16% with an average observation period of 28 months [6]. Managing AF associated with ibrutinib use is complex, primarily due to the necessity of balancing the benefits of anticoagulation that it affords against the bleeding risk resulting from its use [7].

Chemotherapy-induced cardiotoxicity involves various mechanisms. Mitochondrial damage is a critical event in cardiotoxicity induced by chemotherapy drugs, such as doxorubicin and sunitinib [8,9]. This damage manifests as imbalanced mitochondrial dynamics, suppressed respiratory function, and so on [10]. Because AF is associated with rapid atrial activation rates that require a high energy supply from mitochondria, metabolic remodeling centered on mitochondrial dysfunction is identified as the chief factor driving the onset and progression of AF [11].

The mitochondrial quality surveillance (MQS) system is closely linked to maintaining mitochondrial homeostasis and restoring any damage to the organelle. The optimal mitochondrial physiological function can be maintained by repairing or removing the damaged mitochondria using regulating MQS factors, such as mitochondrial fission/fusion balance, bioenergetics, and biogenesis. Although studies have explored the role of an impaired MQS system in both cardiovascular diseases and chemotherapy-induced cardiotoxicity like doxorubicin [1113], the role of an altered MQS system and its upstream regulatory mechanisms in ibrutinib-induced AF have remained largely unexplored. A-kinase anchoring protein 1 (AKAP1) is regarded as a crucial regulator of MQS including mitochondrial metabolism and dynamics. By anchoring the related proteins on the mitochondrial outer membrane (MOM), AKAP1 integrates multiple key pathways to influence mitochondrial morphology, function, and cellular fate. On one hand, AKAP1 promotes mitochondrial respiration and increases the adenosine triphosphate (ATP) synthesis rate by facilitating the phosphorylation of essential mitochondrial proteins like NDUFS4 and cytochrome c oxidase [1416]. Furthermore, AKAP1 modulates the phosphorylation and dephosphorylation-mediated activation of dynamin-related protein 1 (DRP1), a key protein in mitochondrial fission, through interactions with various binding partners on the MOM, thereby exerting regulatory effects on the balance of mitochondrial dynamics [17].

A previous study found that PI3K-Akt pathway inhibition could cause ibrutinib-induced AF [18]. Additionally, Xiao et al. [19] proposed that the C-terminal Src kinase may be a regulatory target in ibrutinib-induced AF. We have previously identified the pathological phenotypes of calcium dysregulation and structural remodeling in the atrial tissue of mouse model with ibrutinib-induced AF [20]. We further reported excessive production of reactive oxygen species (ROS) and the resulting oxidative stress in atrial myocytes as a potential mechanism for ibrutinib-induced AF [21]. Damaged mitochondria markedly contribute to the generation of ROS, and the disruption of the MQS system is a common toxicological mechanism underlying the cardiotoxicity of anticancer drugs. We herein explore alterations in the atrial MQS system and the related regulatory targets in the pathogenesis of ibrutinib-mediated AF.

ResultsIbrutinib increases AF susceptibility and promotes mitochondrial fragmentation

To assess the proarrhythmic potential of ibrutinib, we conducted intraesophageal burst pacing and recorded electrocardiograms (ECGs) in both ibrutinib-treated and control groups. The former exhibited a significantly greater incidence of AF than that of the control group. The duration of burst-pacing-induced AF was longer in the ibrutinib-treated mice (Fig. S1A to C). Echocardiographic evaluation demonstrated that ibrutinib changed the atrial structure. The left atrium (LA) diameter and area of the ibrutinib group were larger than those of the control group (Fig. S1D to F). We further assessed pathological changes in the atria and observed a significant increase in atrial fibrosis in ibrutinib-treated mice (Fig. S1G and H). The ultrastructure of atrial myocytes was observed through transmission electron microscopy (TEM). The mitochondria in the atrial myocytes of the ibrutinib-treated group had a fragmented and punctuated appearance, with significantly shorter lengths than those in the control group, indicating that ibrutinib may disrupt the dynamic balance of atrial mitochondria (Fig. S1I).

Ibrutinib induces AF by impairing the mitochondrial function and structure of atrial myocytes

We investigated the molecular mechanisms underlying the ibrutinib-induced increased risk of AF. A proteomic analysis was conducted to compare the atrial protein expressions of both the ibrutinib-treated and control groups. The ibrutinib treatment modified the expression of 378 proteins in the murine atrial tissue (|log2 fold change| > 1; P-adj < 0.05). Of these, 170 proteins were up-regulated and 208 were down-regulated in the ibrutinib group (Fig. 1A and B). A Kyoto Encyclopedia of Genes and Genomes (KEGG) enrichment analysis revealed that mitochondrial metabolic pathways, including oxidative phosphorylation (OXPHOS) and the tricarboxylic acid (TCA) cycle, were significantly altered by the ibrutinib treatment. A Gene Ontology (GO) biological process enrichment analysis showed that the ibrutinib treatment primarily affected proteins involved in the mitochondrial fission, mitochondrial organization, and cellular respiration. Similarly, a GO cellular component enrichment analysis indicated that ibrutinib mainly influenced the proteins located in mitochondrial respiratory chain, mitochondrial membrane, and matrix of mitochondria (Fig. 1C to F). The Gene Set Enrichment Analysis (GSEA) plot demonstrated that ibrutinib up-regulated mitochondrial fission and ROS pathway but impaired OXPHOS and mitochondrial biogenesis (Fig. 1I to L). Hence, ibrutinib intervention appeared to modify the expression of atrial proteins responsible for mitochondrial structure and function.

Ibrutinib induces atrial fibrillation (AF) by impairing mitochondrial function and structures of atrial myocytes. (A and B) Expression heatmap and volcano map of differentially expressed atrial proteins, illustrating that 170 proteins were up-regulated and 208 were down-regulated in ibrutinib-treated mice compared with control mice. N = 3 independent mice per group. (C to H) Gene Ontology and KEGG enrichment analysis of the 378 differentially expressed proteins in atrial tissue. (I to L) GSEA of differentially expressed proteins following ibrutinib treatment.

Ibrutinib disrupts mitochondrial homeostasis by down-regulating atrial AKAP1 expression

As GO and KEGG enrichment analysis revealed that differentially expressed proteins were primarily associated with mitochondrial structural and functional changes, we annotated highly significant mitochondria-related differentially expressed proteins (−(log10 +P) > 3) in the volcano map. AKAP1 and DRP1 had markedly differential expressions in the ibrutinib group. AKAP1 is crucial for regulating the MQS system. It can maintain the mitochondrial dynamic equilibrium by maintaining DRP1 phosphorylation at Ser637. Hence, off-target effects on AKAP1 could be responsible for ibrutinib-induced AF. Next, we investigated the expression and molecular functions of the aforementioned candidate proteins using single-cell transcriptome data from atrial tissue of patients with AF and control patients. Employing uniform manifold approximation and projection, we performed a hierarchical clustering of cardiac cells from the atrial tissues of patients with the AF and control groups. Sorting the data based on the differential expression of established lineage markers revealed that the atrial tissues comprised 10 major cell types (Fig. 2A to C). The featureplots showed that, in contrast to control samples, atrial tissues from AF patients exhibited decreased expression of AKAP1, especially in the cardiomyocyte subset. Conversely, most cell subsets of the atrial tissue from AF patients displayed increased expression of DRP1 (Fig. 2D and E).

Ibrutinib disrupts mitochondrial homeostasis by down-regulating atrial AKAP1 expression. (A) Volcano plot labeled with the top mitochondria-related differentially expressed proteins. (B) Expression of marker genes for cell-type annotation is indicated on the DotPlot. (C) Uniform manifold approximation and projection representation of all single cells color-coded for their assigned major cell type. (D and E) Featureplots showing the expression patterns of AKAP1 and DRP1 in atrial tissues from AF and control groups. (F to H) Analysis of the correlation between AKAP1 expression and activity score of mitochondria-related pathways. (I) Atrial pan-subpopulation correlation analysis of AKAP1 expression and OXPHOS pathway activity. (J) Molecular docking analysis of the interaction between ibrutinib and AKAP1.

We computed the activity score of the mitochondria-related pathways in the cardiomyocyte subset of the AF group using the AUCell method. The AKAP1 expression was extracted from the AF scRNA-seq dataset, and correlation analysis was conducted with activity scores of mitochondria-related pathways (Fig. 2F to H). The AKAP1 expression was positively correlated with the activities of mitochondrial biogenesis and mitochondrial fusion and negatively with mitochondrial fission. Hence, AKAP1 deficiency could be responsible for excessive mitochondrial fission observed in ibrutinib-treated mice. A pan-subpopulation analysis of the correlation between AKAP1 expression and the OXPHOS activity score in the scRNA-seq dataset of AF patients showed that AKAP1 was significantly associated with mitochondrial metabolism in most atrial subpopulations (Fig. 2I). To further investigate this relationship, we stratified the cardiomyocytes in the subset based on AKAP1 expression. Using the median AKAP1 expression value as a threshold, we categorized the cardiomyocytes into high AKAP1 expression (hiAKAP1) and low AKAP1 expression (loAKAP1) groups (Fig. S2A). Differential expression analysis was performed between these groups, followed by GO and KEGG enrichment analyses. The results revealed that differentially expressed genes were predominantly enriched in biological process terms related to mitochondrial function. These included mitochondrial electron transport, OXPHOS, mitochondrial depolarization, and mitochondrial membrane organization. In terms of cellular process, the genes were enriched in categories such as mitochondrial respiratory chain complex and MOM. KEGG pathway analysis highlighted enrichment in OXPHOS and the TCA cycle (Fig. S2B to E). GSEA provided additional insights. Compared to the hiAKAP1 group, the loAKAP1 cardiomyocyte subgroup exhibited enhanced activation of mitochondrial fission events. Conversely, the OXPHOS pathway, representative of mitochondrial metabolism, was significantly suppressed in the loAKAP1 group (Fig. S2F and G). We performed molecular docking (MD) to elucidate the potential off-target binding interactions between AKAP1 and ibrutinib molecules. The results revealed a binding energy of −6.79 kcal/mol for the protein–ligand complex, suggesting a strong binding effect between ibrutinib and AKAP1 (Fig. 2J).

AKAP1 down-regulation mediates DRP1 dephosphorylation in HL-1 myocytes

We investigated the interaction between AKAP1 and DRP1 and its impact on the mitochondrial dynamic to elucidate the mechanism underlying AKAP1-deficiency-mediated mitochondrial fragmentation. Confocal immunofluorescence imaging demonstrated that ibrutinib treatment decreased the AKAP1 expression (red) and increased the DRP1 expression (green) in HL-1 cells (Fig. 3A). DRP1 phosphorylation is a downstream consequence of the presence of AKAP1 on the outer mitochondrial membrane (OMM). DRP1 possesses an N-terminal guanosine triphosphatase (GTPase) domain. It hydrolyzes guanosine triphosphate to generate the energy necessary for fission. AKAP1, when anchored to protein kinase A, phosphorylates DRP1 at Ser637 within the GTPase effector domain, thus inhibiting its GTPase activity and attenuating mitochondrial fission. A reduction in AKAP1 expression enhances the dephosphorylation of DRP1 at Ser637, facilitating mitochondrial fission. Therefore, we wanted to know whether AKAP1 promotes mitochondrial fission by dephosphorylating DRP1. Western blot analysis revealed that ibrutinib dephosphorylated DRP1 at Ser637 in HL-1 cells, without affecting the phosphorylation levels at Ser616, and simultaneously increased the expression of FIS1, a mitochondrial fission marker (Fig. 3B to F).

AKAP1 binding mediates DRP1 phosphorylation in atrial myocytes. (A) Immunofluorescence imaging of AKAP1 and DRP1 in ibrutinib-treated atrial myocytes. (B to F) Proteins were isolated from atrial myocytes. Western blotting was used to assess AKAP1, DRP1, FIS1, and phosphorylated DRP1 expression levels. ***P < 0.001. ns, not significant.

Ibrutinib-induced AKAP1 depletion promotes mitochondrial fission and membrane depolarization via DRP1 dephosphorylation

Mitochondrial dynamic imbalance is regarded as both the initiator and facilitator of mitochondrial dysfunction. We quantitatively assessed ibrutinib-induced changes in mitochondrial morphology by considering the fragmented mitochondria in the atrial tissues of ibrutinib-treated mice and the proteomics enrichment analysis results. To further investigate the mechanism underlying AKAP1-deficiency-mediated mitochondrial fission, the HL-1 cardiomyocytes were infected with LV-Akap1 before ibrutinib treatment. MitoTracker staining demonstrated that ibrutinib exposure formed small, round, and fragmented mitochondria in atrial myocytes, indicating enhanced mitochondrial fission. To quantitatively evaluate alterations in atrial mitochondrial fragmentation, we measured the aspect ratio and form factor of mitochondria in both the ibrutinib and control groups. The former displayed a significant decrease in AR and FF parameters than that in the control group. However, transfection with LV-Akap1 partially restored the mitochondrial morphology to normal (Fig. 4A to E).

Ibrutinib-induced AKAP1 depletion promotes mitochondrial fission and membrane depolarization via DRP1 dephosphorylation. (A to E) MitoTracker staining for labeling mitochondria in atrial myocytes in vitro. Average mitochondrial length, ratio of fragmented/tubular mitochondria, and mitochondrial morphological parameters were determined. (F to N) Western blot analysis of mitochondrial DRP1 (mito-DRP1), total DRP1 (t-DRP1), phosphorylated DRP1, FIS1, MFN1, and OPA1 in HL-1 cells. VDAC1 was used as a loading control for mitochondrial proteins. (O) Red-to-green ratio of JC-1 fluorescence intensity. (P) Atrial myocytes loaded with JC-1 to analyze changes in mitochondrial membrane potential. N = 8 independent cell samples per group. **P < 0.01, ***P < 0.001.

Western blot analysis showed that ibrutinib exposure led to a significant increase in mitochondrial fission-related proteins (DRP1 and FIS1) and a decrease in mitochondrial fusion-associated proteins (MFN1 and OPA1). Importantly, compared to the modest increase in total DRP1 (t-DRP1), the expression of mitochondria-localized DRP1 (mito-DRP1) was remarkably elevated in the ibrutinib-treated group, along with a significant dephosphorylation of DRP1 at Ser637. Transfecting HL-1 cells with LV-Akap1 considerably increased the phosphorylation level of DRP1 at Ser637. Furthermore, without significant changes in total DRP1, LV-Akap1 transfection diminished DRP1 translocation to mitochondria and enhanced the expressions of MFN1 and OPA1 (Fig. 4F to N). The mitochondrial membrane potential determines the mitochondrial function. Excessive mitochondrial fission can depolarize the mitochondrial membrane potential, which was restored to near-normal levels by AKAP1 overexpression (Fig. 4O and P).

AKAP1 deficiency impairs mitochondrial respiratory function and promotes metabolic reprogramming in HL-1 myocytes

Mitochondrial bioenergetics and dynamics are interconnected. A disruption in the balance between fusion and fission can impair mitochondrial bioenergetics, diminishing ATP production. We investigated whether ibrutinib disturbs mitochondrial bioenergetics homeostasis by interfering with AKAP1. We conducted a Seahorse Mito Stress test to assess mitochondrial respiration. The results demonstrated that ibrutinib stimulation significantly impaired basal respiration, maximal respiration, spare respiratory capacity, and ATP production, which were attenuated by transduction with LV-Akap1 or cotreatment with Mdivi-1, a mitochondrial fission inhibitor (Fig. 5A to F).

AKAP1 deficiency impairs mitochondrial respiratory function and promotes metabolic reprogramming in atrial myocytes. (A to F) Analysis of HL-1 mitochondrial bioenergetics using the Seahorse XFe96 Analyzer. OCR measurements were taken continuously from baseline and after the sequential addition of 2 mM oligomycin, 1 mM FCCP, and 0.5 mM R/A to measure basal respiration, maximal respiration, spare respiratory capacity, proton leak, and ATP-production levels. (G to J) Total and individual rates of ATP production as mediated by glycolysis or mitochondrial metabolism in HL-1 cells transduced with control and LV-Akap1. (K) Ratio between ATP produced by OXPHOS and that by glycolysis in HL-1 cells transduced with control and LV-Akap1. (L and M) ELISA analysis of mitochondrial respiration complex I/III activities. N = 8 independent cell samples per group. *P < 0.05, **P < 0.01, ***P < 0.001.

Impaired mitochondrial respiration is linked to metabolic reprogramming. As mitochondrial OXPHOS declines, the real-time ATP rate assay was utilized to assess whether the ibrutinib-treated cells displayed adaptive reprogramming toward the glycolytic pathway. The assay simultaneously measured the basal ATP-production rates from mitochondrial respiration (oxygen consumption rate [OCR]) and glycolysis (extracellular acidification rate). The ibrutinib-treated myocytes had a significantly reduced total ATP-production rate, primarily owing to the inability of the elevated glycoATP rate to compensate for the mitoATP rate deficiency. AKAP1 overexpression or Mdivi-1 cotreatment effectively reversed the metabolic reprogramming phenotype. The degree of this alteration can be determined by the extent of reduction in the ATP index ratio (mitoATP production rate/glycoATP production rate) in ibrutinib-treated myocytes. This reduction was partially restored by AKAP1 overexpression or Mdivi-1 intervention (Fig. 5G to K). These results are consistent with the finding that the activity of mitochondrial ETC complex I/III was compromised in the ibrutinib group but improved to near-normal levels in ibrutinib-treated cells transduced with LV-Akap1 or co-treated with Mdivi-1 (Fig. 5L and M).

AKAP1 down-regulation is involved in impaired mitochondrial biogenesis, oxidative stress, and inflammation

Insufficient energy production could be associated with defective mitochondrial biogenesis, a process crucial for replenishing number of healthy mitochondria. Ibrutinib treatment reduced the levels of PGC-1 and NRF1, 2 essential regulators of mitochondrial biogenesis. It also reduced the mtDNA copy number. However, this inhibitory effect of ibrutinib on mitochondrial biogenesis was ameliorated by AKAP1 overexpression or Mdivi-1 intervention (Fig. 6A to C).

AKAP1 down-regulation in impaired mitochondrial biogenesis, oxidative stress, and inflammation. (A to C) qPCR analysis of mitochondrial biogenesis parameters (mtDNA copy number, PGC-1α, and NRF1). (D and E) ELISA analysis of redox balance biomarkers, including MDA and GSH contents. (F and G) MitoSOX staining of mitochondrial ROS in HL-1 cells. (H) Visual GSEA of inflammation response pathway in ibrutinib-treated myocytes. (I to K) ELISA of atrial inflammatory biomarkers, including TNF-α, IL-6, and IL-18. N = 8 independent cell samples per group. *P < 0.05, **P < 0.01, ***P < 0.001.

We next elucidated the regulatory role of AKAP1 in the mitochondrial redox balance in ibrutinib-treated myocytes. Representative MitoSOX staining images showed that ibrutinib promotes excessive mitochondrial ROS production. AKAP1 overexpression significantly diminished the mitoROS level, also observed in the Mdivi-1 cotreatment group. Ibrutinib-treated myocytes exhibited reduced glutathione (GSH) and elevated malondialdehyde (MDA) levels, which were restored by LV-Akap1 transduction and Mdivi-1 intervention (Fig. 6F and G).

Mitochondrial dysfunction not only disturbs energy metabolism but also triggers inflammatory responses through an intricate immunometabolic crosstalk. Given the observed atrial fibrosis in animal models, GSEA of inflammatory response pathway indicated that inflammation activation is presented in ibrutinib-treated myocytes (Fig. 6H). We performed enzyme-linked immunosorbent assay (ELISA) to assess alterations in the levels of inflammatory factors. The ibrutinib group exhibited elevated levels of tumor necrosis factor-α (TNF-α), interleukin-6 (IL-6), and IL-18. However, the AKAP1 overexpression significantly down-regulated these cytokines. IL-18 was reversed in both AKAP1 overexpression and Mdivi-1 cotreatment groups (Fig. 6I to K).

AKAP1 overexpression prevents ibrutinib-induced AF by improving MQS and restoring mitochondrial function

To verify whether AKAP1 up-regulation could mitigate the AF risk and restore the MQS system in ibrutinib-treated mice models, we established an in vivo AKAP1 overexpression model using adeno-associated virus (AAV), with AAV-GFP as the control group. The ibrutinib-treated mice exhibited a higher AF incidence and prolonged AF duration than those of control mice. ECG measurements revealed that the ibrutinib-treated group with AKAP1 overexpression had diminished AF duration and incidence (Fig. 7A to C). AKAP1 overexpression also ameliorated atrial fibrosis (Fig. 7D and E). We validated the ibrutinib-induced Drp1 Ser637 dephosphorylation and expression levels of mitochondrial fission/fusion markers. The ibrutinib treatment reduced DRP1 phosphorylation at Ser637 and simultaneously decreased the MFN1 (fusion marker) and NRF1 (biogenesis marker) levels. These effects were reversed by AKAP1 overexpression (Fig. 7F to I).

AKAP1 overexpression prevents ibrutinib-induced AF by improving MQS and restoring mitochondrial function. (A) Simultaneous recordings of surface ECG following intraesophageal burst pacing. (B) Quantification of AF time. (C) AF inducibility in control and ibrutinib-treated mice with and without AAV-Akap1 transfection. (D and E) Myocardial fibrosis was assessed in each group through Sirius Red staining. The proportion of fibrotic tissue to myocardial tissue was quantified for each group. (F to I) Western blot analysis of total DRP1 (t-DRP1), phosphorylated DRP1, MFN1, and NRF1 in atrial tissues. (J and K) Images and quantification of isolated atrial myocytes loaded with the mitochondrial ROS indicator MitoSox Red. (L to P) ELISA of MQS/redox/inflammation biomarkers, including complex I/III, MDA, GSH, and IL-18. N = 8 mice per group. *P < 0.05, **P < 0.01, ***P < 0.001.

MitoSOX staining revealed that mitochondrial ROS production was significantly elevated in ibrutinib-treated mice, which normalized following AKAP1 overexpression (Fig. 7J and K). This finding was supported by the ibrutinib-induced reduction in GSH contents and an increase in MDA contents, which were also reversed by AKAP1 overexpression. Similar trends were observed for the activity of mitochondrial complex I/III. These data confirmed the regulatory role of AKAP1 in mitochondrial bioenergetics in ibrutinib-induced AF. Moreover, the IL-18 level was up-regulated in the ibrutinib-treated group. The AKAP1 overexpression could normalize the inflammatory response (Fig. 7L to P).

Discussion

Mitochondrial damage serves as a major determinant in the pathogenesis of chemotherapeutic agents’ cardiotoxic effects. We employed gene-editing technologies in animal models and HL-1 cells and showed that ibrutinib increases the AF risk by disrupting the AKAP1-regulated MQS. Our study has several key findings. First, ibrutinib-treated mice exhibited decreased AKAP1 expression, which was closely associated with an increased risk of AF. Second, down-regulated AKAP1 disturbs the MQS system in atrial myocytes, as evidenced by the increased mitochondrial fission caused by enhanced Drp1 Ser637 dephosphorylation and OMM translocation, which is accompanied by impaired mitochondrial biogenesis and mitochondrial metabolic reprogramming in bioenergetics. Third, AKAP1 deficiency in atrial cardiomyocytes dysregulates the MQS, which further promotes oxidative stress and inflammatory activation, resulting in increased atrial fibrosis. Importantly, the AKAP1 overexpression effectively restores mitochondrial homeostasis and alleviates oxidative stress and inflammation-induced fibrosis in the ibrutinib-treated mouse model (Fig. 8). Our results offer novel perspectives on the molecular mechanisms connecting impaired MQS with electrophysiological alterations in ibrutinib-induced AF, indicating that AKAP1 could be a promising target for exploring preventive approaches.

This schematic illustrates the proposed mechanism by which ibrutinib promotes atrial fibrillation (AF). Ibrutinib treatment leads to the downregulation of A-kinase anchoring protein 1 (AKAP1), triggering mitochondrial quality surveillance (MQS) impairment. This results in enhanced translocation of dynamin-related protein 1 (DRP1) to the mitochondria, driving mitochondrial fission. Concurrently, metabolic reprogramming is characterized by increased glycolysis and decreased oxidative phosphorylation (OXPHOS), alongside reduced mitochondrial biogenesis. These mitochondrial dysfunctions elevate oxidative stress and inflammatory responses, contributing to atrial metabolic and structural remodeling, ultimately leading to ibrutinib-induced AF.

AKAP1, a scaffolding protein, anchors to the OMM with its inserted mitochondrial targeting sequence. By recruiting signaling proteins to the OMM, AKAP1 serves as a mitochondrial signaling hub regulating mitochondrial homeostasis [22,23]. AKAP1 deficiency in retinal ganglion cells causes mitochondrial fragmentation by promoting Drp1 Ser637 dephosphorylation [24]. Previous studies on diabetic cardiomyopathy have revealed that AKAP1 down-regulation can compromise mitochondrial respiration by impeding NDUFS1 translocation into mitochondria and promoting mitochondrial ROS generation [25]. We employed quantitative proteomics to investigate alterations in protein expression following ibrutinib treatment. Enrichment analysis revealed that mitochondria-related pathways were enriched with differentially expressed proteins. The volcano plot showed that AKAP1 was one of the most significantly down-regulated candidates among the mitochondria-related proteins. We validated atrial AKAP1 down-regulation based on AF single-cell transcriptome data. We observed a significant correlation between AKAP1 expression and the activity score of MQS-related pathways, including mitochondrial fission, biogenesis, and OXPHOS in cardiomyocyte subpopulations. Our study is the first to provide a comprehensive understanding of ibrutinib-mediated atrial MQS disturbances through off-target effects.

Recent studies have investigated ROS-related mechanisms in ibrutinib-induced AF. Jiang et al. [20] reported ibrutinib-related atrial calcium handling disorders caused by increased RyR2 Ser2814 phosphorylation. Our recent research has further revealed that enhanced ibrutinib-mediated oxidative stress may increase the Ser2814 phosphorylation of RyR2. This observation is supported by the finding that antioxidant interventions effectively reduced calcium overload and inflammation-induced atrial fibrosis, thereby decreasing the ibrutinib-induced AF risk [21]. During mitochondrial electron transfer, electrons can leak and react with oxygen to create superoxide anions, making mitochondria a major source of ROS. Disruptions in electron transport in damaged mitochondria increase electron leakage, causing ROS bursts. However, as a crucial source of intracellular ROS, the role of mitochondrial damage in ibrutinib-induced AF has not been thoroughly investigated. Through GSEA of proteomics, we found that mitochondrial fission and ROS generation pathways were activated and OXPHOS and mitochondrial biogenesis processes were suppressed in the ibrutinib group. Hence, MQS impairment may be critical for the pathogenesis of ibrutinib-induced AF.

Our study utilized high-throughput sequencing along with genetic editing to investigate the mechanism of ibrutinib-induced mitochondrial damage leading to AF, with a focus on AKAP1-mediated MQS disturbance. The mitochondrial dynamic imbalance is crucial for cardio-oncology. As highly dynamic organelles, mitochondria continuously cycle between fission and fusion events to adapt to environmental demands. During mitochondrial fission, dephosphorylation of DRP1 at Ser637 promotes its recruitment to mitochondria [26]. The recruited DRP1 forms ring-like structures on OMM, constricting the organelle and producing 2 daughter mitochondria. Excessive mitochondrial fission from increased DRP1 Ser616 phosphorylation has also been found to be responsible for the pathogenesis of doxorubicin-induced cardiotoxicity [27].

Excessive fission depletes ATPs by regulating mitochondrial metabolic reprogramming, along with suppressed biogenesis, ultimately disrupting the MQS system. Metabolic reprogramming, a cellular self-regulatory mechanism in response to environmental changes, has been demonstrated to play a crucial role in the pathophysiology of both cardiometabolic and neoplastic diseases [2831]. This adaptive process has gained increasing recognition and understanding in the field of cardio-oncology, highlighting its role in the complex interplay between cancer therapeutics and cardiovascular health. Sunitinib disturbs mitochondrial bioenergetics by reducing the complex I activities, accompanied by an increased generation of mitochondrial ROS and decreased uptake of substrates, such as nucleosides [32]. A down-regulation of mitochondrial biogenesis markers, including Nrf2, PPARα, and PGC-1α expression, has been reported in the animal models of doxorubicin-induced cardiotoxicity and some other cardiovascular disorders [13,33]. In the mechanism of cardiotoxicity induced by anticancer drugs, the suppression of mitochondrial biogenesis is accompanied by an increase in ROS generation [34]. Interestingly, this dual phenomenon has also been observed in the pathophysiology of AF [35]. This imbalance in mitochondrial homeostasis limits the capacity of atrial energy production and increases ROS generation because of a reduction in the electron transfer efficiency owing to excessive mitochondrial fission in naive daughter mitochondria [36]. The increased ROS levels can attack adjacent intact mitochondria, resulting in a self-perpetuating cycle of ROS-induced ROS production [37]. ROS overproduction and inflammation activation exhibit reciprocal stimulation, creating a vicious loop that forms a pathological substrate for AF.

In this study, we discovered that ibrutinib can disrupt the mitochondrial homeostasis in atrial cardiomyocytes. Indeed, the cardiotoxic side effects exhibited by a series of tyrosine kinase inhibitors are closely associated with the mitochondrial homeostasis disturbance. Sunitinib, a widely used vascular endothelial growth factor receptor tyrosine kinase inhibitor for the treatment of metastatic renal cell carcinoma, has been reported to have common cardiotoxicity with an incidence rate of 1% to 10% [1]. Mechanistic studies have revealed that sunitinib can induce myocardial apoptosis [38], which is manifested as the disruption of mitochondrial network structures [39], reduced efficiency of electron transfer, and the accompanying decrease in ATP production [8]. In H9c2 cardiac cell models exposed to sunitinib for 24 h and mouse models treated by gavage for 2 weeks, the collapse of mitochondrial membrane potential and elevated mitochondrial ROS can be observed. Intervention with mito-TEMPO can effectively alleviate mitochondrial dysfunction. Sorafenib, a multitargeted tyrosine kinase inhibitor, has emerged as a first-line treatment for patients with advanced hepatocellular carcinoma and renal cell carcinoma. Evidence suggests that at the therapeutically relevant doses, sorafenib can directly compromise the mitochondrial function of H9c2 cardiomyocytes [40]. The mechanism underlying this cardiotoxicity may be attributed to sorafenib’s role as an effective ferroptosis inducer [41]. Ferroptosis is typically associated with substantial alterations in mitochondrial morphology, characterized by increased mitochondrial membrane density and reduced mitochondrial cristae [42]. Furthermore, sorafenib has been shown to activate the c-Jun N-terminal kinase downstream pathways, leading to disruption of mitochondrial respiration and induction of apoptosis [43]. Imatinib, which functions through inhibiting the activity of BCR-ABL tyrosine kinase, has become the standard treatment for Philadelphia chromosome-positive chronic myeloid leukemia. However, reports from both in vivo and in vitro studies have highlighted its potential cardiotoxicity. Ultrastructural analysis of cardiac tissue from patients undergoing imatinib therapy has revealed the presence of pleomorphic mitochondria with disrupted cristae. In vitro experiments have provided further insights into the mechanisms of this cardiotoxicity. Cardiomyocytes exposed to imatinib for 24 h demonstrate activation of mitochondrial death pathways, triggered by PERK-eIF2α signaling. This process is accompanied by accumulation of mitochondrial superoxide and disruption of mitochondrial membrane potential [44]. These findings suggest that mitochondrial homeostasis dysregulation may represent a shared pathophysiological mechanism underlying the cardiotoxicity associated with tyrosine kinase inhibitors. This insight opens up new avenues for therapeutic strategies aimed at mitigating the cardiac side effects of these drugs. Future research focusing on maintaining mitochondrial homeostasis could potentially yield promising interventions to reduce the cardiotoxicity of tyrosine kinase inhibitors.

Increasing evidence suggests that targeting mitochondrial homeostasis in the heart could help manage both AF and cardio-oncology. Dipeptidyl peptidase-4 (DPP-4) inhibitors demonstrate upstream preventive effects on AF by enhancing mitochondrial biogenesis [45]. A preclinical study showed that DPP-4 inhibitors can alleviate doxorubicin-induced myocyte deaths [46]. A reduced risk of AF can be observed in patients receiving sodium-glucose co-transporter 2 (SGLT2) inhibitors [47]. The electrophysiological protective actions of SGLT2 inhibitors may be associated with metabolic regulation via AMPK activation, resulting in decreased mitochondrial fission and suppressed ROS generation [48]. Recent research emphasizes the therapeutic promise of SGLT2 inhibitors in cardio-oncology. TriNetX data analysis demonstrated that SGLT2 inhibitors significantly lowered the risk of heart failure worsening and AF in patients with cancer treatment-related cardiac dysfunction [49], which is tied to pharmacological actions of attenuating oxidative stress and stimulating mitochondrial biogenesis [50,51]. AKAP1 overexpression in ibrutinib-treated mice can markedly enhance mitochondrial homeostasis and ultimately decrease the AF risk. Indeed, the AKAP1 overexpression strategy has demonstrated therapeutic benefits by restoring mitochondrial homeostasis in several diseases, including diabetic kidney disease, glaucoma, and diabetic cardiomyopathy [24,25,52]. However, specific pharmacological activators for AKAP1 are not yet available.

Study limitations

Firstly, although ibrutinib-induced AF has marked clinical implications, ibrutinib-related ventricular arrhythmias should not be overlooked. Future studies need to explore MQS disruption and its regulatory mechanism in both atrial and ventricular myocytes. Secondly, while our study suggests that AKAP1 overexpression may effectively improve mitochondrial homeostasis and reduce the ibrutinib-induced AF risk, there is currently a lack of targeted AKAP1-activating drugs for clinical use. The development potential and pharmacokinetics of AKAP1 activators need further assessment. Lastly, a well-established mouse model of ibrutinib-induced AF was employed. However, given the substantial differences between murine and human AF phenotypes, this model may not fully capture the complete pathogenesis underlying ibrutinib-induced AF. Despite these shortcomings, our study offers novel insights into the role and regulatory mechanisms of atrial MQS impairment in ibrutinib-induced AF.

Conclusion

This study highlights the crucial role of AKAP1 and its downstream MQS disruption in ibrutinib-induced AF. Ibrutinib disrupts mitochondrial homeostasis in atrial cardiomyocytes by suppressing AKAP1 expression, causing increased mitochondrial fission, down-regulated mitochondrial biogenesis, and mitochondrial metabolic reprogramming in cardiomyocytes. These alterations promote oxidative stress and inflammatory responses, inducing atrial metabolic and structural remodeling and increasing the susceptibility to AF. The AKAP1 overexpression effectively improves mitochondrial homeostasis, alleviating oxidative stress and inflammation responses, thereby lowering the AF risk. Our findings may help in developing BTK inhibitors with reduced electrophysiological side effects and in designing potential metabolic regulation-based strategies for the prevention and management of ibrutinib-induced AF in current clinical practice.

Materials and MethodsAnimal model

C57BL/6J mice (8 to 10 weeks, weighing 20 to 25 g) were acquired from the Animal Centre at Anzhen Hospital in Beijing, China. The protocols were sanctioned by the Committee for Animal Care and Use of Anzhen Hospital. Following a previously described method, the mice were given daily intraperitoneal doses of ibrutinib at a dose of 30 mg·kg−1·day−1 and were assessed after 14 days of treatment [21]. Mice that received intraperitoneal injections of phosphate-buffered saline (PBS) served as the vehicle control. The biological function of AKAP1 was investigated via checking the cardiac-specific overexpression of AKAP1 in mice transfected with adeno-associated virus 9 (AAV-9). Purified AAV-9 encoding Akap1 was provided by BrainVTA (Wuhan, China) Co. Ltd. The mice were allocated into 4 different groups: AAV9-cTNT-EGFP-Con, AAV9-cTNT-Akap1-Con, AAV9-cTNT-EGFP-Ibru, and AAV9-cTNT-Akap1-Ibru. Each mouse was intravenously injected with 100 μl of either 5.0 to 6.0 × 1013 GC/ml AAV9-cTNT-Akap1 or 5.0 to 6.0 × 1013 GC/ml AAV9-cTNT-EGFP in the tail. All mice were maintained in specific pathogen-free environments with a 12-h light/dark cycle, regulated temperature, and humidity. Food and water were available ad libitum throughout the study period.

Cell culture and lentivirus transfection

For stable AKAP1 overexpression, HL-1 cells were transduced with either a negative control lentivirus (LV-NC) or an Akap1 overexpression lentivirus (LV-Akap1). The Akap1 overexpression lentivirus was designed, synthesized, and sequence-verified by Obio Technology Corp. (Shanghai, China). To mimic ibrutinib exposure on the atrial myocytes, the HL-1 cells were treated with 1 μM of ibrutinib for 24 h before experimental determinations, as detailed in the related prior study [53].

In vivo electrophysiology study

Electrophysiological studies on the mice were conducted following previously described methods [21]. To be brief, mice were anesthetized via the intraperitoneal injection of 1% pentobarbital sodium. ECGs were recorded from surface limb leads. The electrode was introduced through the esophagus in close proximity to the LA, to capture ECGs with PowerLab and LabChart 7 software. Rapid pacing (10 ms at 30 Hz) was employed to evaluate susceptibility to pacing-induced AF. The AF phenotype was identified by distinguishing it from sinus rhythm phenotype when the ECGs demonstrated an absence of distinct P waves. We used this characteristic to differentiate AF from sinus rhythm. The restoration of sinus rhythm was confirmed by observing the detectable P waves. Duration of AF episodes of each animal was documented.

Echocardiography

The Vevo 2100 Imaging System (FUJIFILM VisualSonics, Inc.) was employed to assess cardiac structural and functional parameters [21]. Initially, mice from each group were anesthetized using ether. Following effective sedation, the mice were laid in the supine position, their fur was trimmed, and their skin was cleansed before examining the atrial structural indicators. Ultrasound assessments were conducted to measure the LA diameter and area. A technician blinded to the grouping of the mice conducted the echocardiographic examination.

Atrial histopathology

The left atrial tissue samples were preserved in 4% paraformaldehyde and subsequently sectioned. The sections were stained with Sirius red dye and examined under light microscopy. Hearts from the mice of each group were stained and analyzed. Atrial macroscopic changes were assessed using optical microscopy, with samples observed at a magnification of 200×. Longitudinally cut samples were evaluated for each sample. Quantitative analysis of the images was performed using Image-Pro 6.0 software.

Transmission electron microscopy

Retrograde aortic perfusion with 2.5% glutaraldehyde was employed to fix left atrial tissue samples from each group. Subsequently, the myocardial tissues of the mice were processed according to standard protocols and examined using TEM as described in our previous study [21]

Proteomic analysis

The samples were prepared by initially grinding in liquid nitrogen to obtain cell powder, which was then lysed in a buffer of urea and protease inhibitor cocktail. The lysates were sonicated thrice on ice and clarified by centrifugation at 12,000 g for 10 min at 4 °C. The bicinchoninic acid assay kit was employed to quantify the protein concentration in the supernatant. For protein digestion, the specimens were treated with 5 mM dithiothreitol at 56°C for a duration of 30 min, followed by alkylation using 11 mM iodoacetamide in darkness at ambient temperature for 15 min. It is followed by an overnight trypsin digestion at a trypsin-to-protein mass ratio of 1:50, with a subsequent digestion at a 1:100 ratio for an additional 4 h.

The resulting peptides were resuspended in 0.1% formic acid and subjected to liquid chromatography–tandem mass spectrometry analysis. The peptides were loaded onto a reversed-phase analytical column and eluted with a gradient of acetonitrile in 0.1% formic acid at a flow rate of 400 nl/min using a NanoElute UPLC system. The eluted peptides underwent ionization and were subsequently examined using a timsTOF Pro mass spectrometer. Data acquisition was dynamically managed to prevent redundant scanning. Mass spectrometry data were processed using MaxQuant (v1.6.6.0) against the Mus_musculus 10090-SP 20190513 database. A reverse library was incorporated for estimating the false discovery rate (FDR) and a common contamination library was employed to filter out contaminants. The FDR thresholds for identifying proteins and peptide-spectrum matches were established at 1%.

Differential analysis was carried out using the limma package. Protein expression heatmaps and volcano plots were generated using freely accessible web-based bioinformatics tools. Mitochondria-related proteins were selected following the MitoCarta 3.0 database. The FunRich database was employed to conduct functional enrichment analyses for biological processes and pathways to categorize differentially expressed proteins. The GSEA utilized GSEA version 4.1.0 from the Broad Institute. A ranked list of differentially expressed proteins between the ibrutinib-treated and control groups was compiled based on their log2 fold change values. Gene sets were selected from the BioCarta, Hallmark, Reactome, and MSigDB databases to ensure comprehensive coverage of biological functions and pathways. The permutation test was set to 1,000 iterations, using phenotype permutations to assess the statistical significance of gene set enrichment. FDR correction was applied with a threshold of 0.25 to determine significantly enriched gene sets. Results were visualized using enrichment plots.

Single-cell RNA-seq analysis

The single-cell transcriptome dataset (GSE161016, PRJNA815461) from the Gene Expression Omnibus database, which includes data from the atrial tissue of healthy controls and patients with persistent AF, was utilized in this study [54,55]. Single-cell RNA-seq data of the atrial appendage tissue from the patients with AF were acquired from PRJNA815461, while that of the atrial tissue from the control group was obtained from 2 patients who had no prior history of coronary artery disease (GSE16101). The Seurat R package was employed to preprocess the raw data. Single cells were filtered (cells expressing a range of 500 to 4,000 unique genes and less than 10% mitochondrial transcripts were retained) for the subsequent analysis. Uniform manifold approximation and projection was used to group and visualize the cells, allowing for a clear differentiation and visualization of cell clusters. Statistically significant cell marker genes (adjusted P < 0.05) were identified and utilized to classify the clustered cells into their respective cell types. The FeaturePlot function was then used for gene expression distributions. Furthermore, the R package AUCell was utilized to assess the mitochondria-related pathway activities of specific cells.

Molecular docking

MD was performed using the AutoDock vina software (Scripps Research, San Diego, CA, USA) to dock proteins and small molecules. The PLIP tool (https://plip-tool.biotec.tu-dresden.de/plip-web/plip/index) was used to analyze the docking results. The 2-dimensional structures from the MD results were depicted with LIGPLOT software v4.5.3 (European Bioinformatics Institute, Cambridge, UK). PyMOL was used to generate the MD maps.

Confocal imaging

Fluorescent images were obtained with a 40× oil immersion objective on the laser scanning confocal microscope operating in line-scan mode (400 Hz). Cells were plated on gelatin-coated cytospin slides, allowed to air dry, and fixed with paraformaldehyde for 30 min at 20°C. Following a PBS wash, the cells were permeabilized for 15 min with 0.3% Triton X-100 and then blocked at room temperature with 10% bovine serum albumin for 1 h. Then, cells were incubated overnight at 4°C with primary antibodies, followed by the treatment with fluorescence-labeled secondary antibodies for 1 h. The nuclei were stained using 4′,6-diamidino-2-phenylindole. Table S1 lists the antibodies used for immunofluorescence.

MitoTracker Red (0.5 μM, 30 min) was employed to analyze mitochondrial morphology. The form factor and aspect ratio of mitochondria were quantified based on the number of branches, branch junctions, and the total branch length in the mitochondrial skeleton [56]. JC-1 dye (1 μM, 30 min) was employed to evaluate mitochondrial membrane potential, with the ratio of red fluorescence (aggregated) to green fluorescence (monomeric) indicating the mitochondrial membrane potential. Mitochondrial superoxide production was evaluated using the MitoSOX Red (5 μM, 20 min) Reagent.

ELISA and seahorse assay

ELISA was used to measure the activities of mitochondrial ETC complex I/III, TNF-α, IL-6, IL-18, and the levels of GSH and MDA, following the manufacturer’s protocol (Jiancheng, China). The Seahorse XF96 Extracellular Flux Analyzer was employed to assess mitochondrial bioenergetics when the HL-1 cells reached 95% confluence (5 × 103 cells/well) on microplates. Before the assay, the medium was exchanged with the unbuffered XF medium, and the cells were equilibrated for 1 h at 37 °C in a CO2-free environment.

The mitochondria stress test was performed by monitoring the cellular OCR in a seahorse assay medium (catalog no. 103575-100), which was enriched with 1 mM sodium pyruvate, 2 mM glutamine, and 25 mM glucose, with the pH adjusted to 7.4 at 37 °C. Oligomycin at a concentration of 1 μM, carbonyl cyanide 4-(trifluoromethoxy)phenylhydrazone (FCCP) at 1 μM, rotenone at 0.5 μM, and antimycin A (AA) at 0.5 μM were sequentially introduced during the assay. Real-time ATP rate was assessed in the seahorse assay medium containing glutamine (2 mM), glucose (10 mM), and pyruvate (1 mM), with the pH adjusted to 7.4 at 37 °C. The assay was conducted by sequentially adding oligomycin (1.5 μM), rotenone (1 μM), and AA (1 μM).

Isolation of primary atrial myocytes and atrial mitochondria

Atrial myocytes were isolated using the established enzyme digestion protocol utilizing the Langendorff retrograde perfusion technique [57]. To promote adherence, the isolated atrial myocytes were seeded onto a laminin-coated dish. More detailed methodological information of atrial myocytes isolation can be found in the Supplementary Materials. In this study, mitochondria were isolated from atrial myocytes using a mitochondrial isolation kit (Thermo Fisher Scientific, USA). The first step involved collecting the atrial myocytes and centrifuging them at 700 g for 5 min at 4 °C to remove the supernatant. The cell pellet was then washed twice with pre-chilled 1×PBS. Subsequently, the cells were resuspended in mitochondrial isolation buffer and subjected to gentle mechanical disruption on ice to lyse the cells. The lysed suspension underwent differential centrifugation: an initial low-speed spin to remove intact cells and larger debris, followed by a high-speed spin to pellet the mitochondria. The resulting mitochondrial samples were either used immediately or stored at −80 °C until further Western blot analysis. The entire procedure was carried out under cold conditions to ensure the integrity and functionality of the mitochondria. For more detailed information, please refer to the manufacturer’s manual (Thermo Fisher Scientific, USA).

Western blot analysis

Atrial tissues or cultured cell specimens were analyzed using a previously described Western blot protocol. In brief, the samples were lysed in ice-cold RIPA lysis buffer containing 10 mM of Tris-Cl (pH 8.0), 1 mM of EDTA, 1% Triton X-100, 0.1% sodium deoxycholate, 0.1% SDS, 150 mM of NaCl, 1 mM of phenylmethylsulfonyl fluoride, and 0.02 mg/ml each of aprotinin, leupeptin, and pepstatin. The lysates were sonicated and clarified by centrifugation. Protein concentration was determined using a Bradford assay. Then, sodium dodecyl sulfate–polyacrylamide gel electrophoresis was employed to separate 50 to 100 mg of proteins per lane. The resolved proteins were then transferred to a polyvinylidene difluoride membrane and subsequently incubated with the antibodies documented in Table S1.

mtDNA copy number and quantitative PCR

The mitochondrial DNA copy number was determined by comparing the cytochrome c oxidase subunit 3 (Cox3) mtDNA gene with the UCP2 nuclear gene using quantitative polymerase chain reaction (qPCR). To quantify mtDNA mRNA, Trizol reagent (Life Technologies Inc., Carlsbad, CA, USA) was used to extract total RNA, which was then reverse-transcribed using oligo (dT)-primed cDNA. Table S2 provides the primers utilized for qPCR analysis of the respective sequences.

Statistical analysis

Data were shown as mean ± standard deviation. Two groups were compared using either the parametric Student’s t test or the nonparametric Mann–Whitney test. For comparisons among multiple groups, parametric one-way analysis of variance was employed, followed by the Bonferroni test to determine significance. A P value of less than 0.05 was considered statistically significant. R package v4.2 and GraphPad Prism v8.0.2 were used for statistical analysis.

Acknowledgments

We are grateful to our colleagues for valuable discussions related to the study. We also extend our gratitude to Bullet Edits and Home for Researchers Limited for their linguistic support in editing and proofreading the manuscript.

Funding: This study was supported by the National Natural Science Foundation of China (Grant Nos. 82170318, 81870243, 82170310, and 82300315) and the Guangdong Province Basic and Applied Basic Research Fund Project (No. 2024A1515012174).

Author contributions: Y.L. analyzed data and wrote the manuscript. Xinmeng Liu, R.L., X.P., and X.W. were responsible for the establishment of animal models and conducting the related animal experiments. F.M., S.J., W.L., Xiaoying Liu, and Z.D. were responsible for cell culture and the associated experiments. S.W., R.B., Y.R., H.Z., and R.Z. contributed to bioinformatics analysis and manuscript revision. R.T., R.Z., and N.L. designed the study and interpreted results. All authors read and approved of the final manuscript.

Competing interests: The authors declare that they have no competing interests.

Ethical Approval

This study was conducted in strict accordance with the ethical standards and guidelines of our institution. The local ethics committee, following the Basel Declaration principles, approved the study design on March 2021.

Data Availability

The data supporting the findings of this study are provided within the main text and Supplementary Materials and can be requested from the corresponding authors upon reasonable request. AF-related scRNA-seq data are available on the National Center for Biotechnology Information Gene Expression Omnibus database.

Supplementary Materials

Supplementary Text

Figs. S1 to S3

Tables S1 and S2

ReferencesLyon +AR, López-Fernández +T, Couch +LS, Asteggiano +R, Aznar +MC, Bergler-Klein +J, Boriani +G, Cardinale +D, Cordoba +R, Cosyns +B, et al. +ESC scientific document group, 2022 ESC guidelines on cardio-oncology developed in collaboration with the European Hematology Association (EHA), the European Society for Therapeutic Radiology and Oncology (ESTRO) and the International Cardio-Oncology Society (IC-OS). Eur Heart J. 2022;43(41):42294361.36017568 +Moslehi +JJ. +Cardio-oncology: A new clinical frontier and novel platform for cardiovascular investigation. Circulation. 2024;150(7):513515.39133773 +Zhou +B, Wang +Z, Dou +Q, Li +W, Li +Y, Yan +Z, Sun +P, Zhao +B, Li +X, Shen +F, et al. +Long-term outcomes of esophageal and gastric cancer patients with cardiovascular and metabolic diseases: A two-center propensity score-matched cohort study. J Transl Int Med. 2023;11(3):234245.37818156 +Burger +JA, Tedeschi +A, Barr +PM, Robak +T, Owen +C, Ghia +P, Bairey +O, Hillmen +P, Bartlett +NL, Li +J, et al. +Ibrutinib as initial therapy for patients with chronic lymphocytic leukemia. N Engl J Med. 2015;373(25):24252437.26639149 +O’Brien +S, Furman +RR, Coutre +S, Flinn +IW, Burger +JA, Blum +K, Sharman +J, Wierda +W, Jones +J, Zhao +W, et al. +Single-agent ibrutinib in treatment-naïve and relapsed/refractory chronic lymphocytic leukemia: A 5-year experience. Blood. 2018;131(17):19101919.29437592 +Archibald +WJ, Rabe +KG, Kabat +BF, Herrmann +J, Ding +W, Kay +NE, Kenderian +SS, Muchtar +E, Leis +JF, Wang +Y, et al. +Atrial fibrillation in patients with chronic lymphocytic leukemia (CLL) treated with ibrutinib: Risk prediction, management, and clinical outcomes. Ann Hematol. 2021;100(1):143155.32488603 +Caron +F, Leong +DP, Hillis +C, Fraser +G, Siegal +D. +Current understanding of bleeding with ibrutinib use: A systematic review and meta-analysis. Blood Adv. 2017;1(12):772778.29296721 +Gorini +S, De Angelis +A, Berrino +L, Malara +N, Rosano +G, Ferraro +E. +Chemotherapeutic drugs and mitochondrial dysfunction: Focus on doxorubicin, trastuzumab, and sunitinib. Oxidative Med Cell Longev. 2018;2018:7582730.Wu +J, Liu +N, Chen +J, Tao +Q, Li +Q, Li +J, Chen +X, Peng +C. +The tricarboxylic acid cycle metabolites for cancer: Friend or enemy. Research. 2024;7:0351.38867720 +Bikomeye +JC, Terwoord +JD, Santos +JH, Beyer +AM. +Emerging mitochondrial signaling mechanisms in cardio-oncology: Beyond oxidative stress. Am J Physiol Heart Circ Physiol. 2022;323(4):H702H720.35930448 +Mason +FE, Pronto +JRD, Alhussini +K, Maack +C, Voigt +N. +Cellular and mitochondrial mechanisms of atrial fibrillation. Basic Res Cardiol. 2020;115(6):72.33258071 +Yang +Y, Muisha +MB, Zhang +J, Sun +Y, Li +Z. +Research progress on N6-adenosylate methylation RNA modification in heart failure remodeling. J Transl Int Med. 2022;10(4):340348.36860637 +Li +Y, Lin +R, Peng +X, Wang +X, Liu +X, Li +L, Bai +R, Wen +S, Ruan +Y, Chang +X, et al. +The role of mitochondrial quality control in anthracycline-induced cardiotoxicity: From bench to bedside. Oxidative Med Cell Longev. 2022;2022:3659278.Helling +S, Vogt +S, Rhiel +A, Ramzan +R, Wen +L, Marcus +K, Kadenbach +B. +Phosphorylation and kinetics of mammalian cytochrome c oxidase. Mol Cell Proteomics. 2008;7(9):17141724.18541608 +Ludwig +B, Bender +E, Arnold +S, Hüttemann +M, Lee +I, Kadenbach +B. +Cytochrome C oxidase and the regulation of oxidative phosphorylation. Chembiochem. 2001;2(6):392403.11828469 +Papa +S, De Rasmo +D, Scacco +S, Signorile +A, Technikova-Dobrova +Z, Palmisano +G, Sardanelli +AM, Papa +F, Panelli +D, Scaringi +R, et al. +Mammalian complex I: A regulable and vulnerable pacemaker in mitochondrial respiratory function. Biochim Biophys Acta. 2008;1777(7–8):719728.18455500 +Cribbs +JT, Strack +S. +Reversible phosphorylation of Drp1 by cyclic AMP-dependent protein kinase and calcineurin regulates mitochondrial fission and cell death. EMBO Rep. 2007;8(10):939944.17721437 +McMullen +JR, Boey +EJH, Ooi +JYY, Seymour +JF, Keating +MJ, Tam +CS. +Ibrutinib increases the risk of atrial fibrillation, potentially through inhibition of cardiac PI3K-Akt signaling. Blood. 2014;124(25):38293830.25498454 +Xiao +L, Salem +J-E, Clauss +S, Hanley +A, Bapat +A, Hulsmans +M, Iwamoto +Y, Wojtkiewicz +G, Cetinbas +M, Schloss +MJ, et al. +Ibrutinib-mediated atrial fibrillation due to inhibition of CSK. Circulation. 2020;142(25):24432455.33092403 +Jiang +L, Li +L, Ruan +Y, Zuo +S, Wu +X, Zhao +Q, Xing +Y, Zhao +X, Xia +S, Bai +R, et al. +Ibrutinib promotes atrial fibrillation by inducing structural remodeling and calcium dysregulation in the atrium. Heart Rhythm. 2019;16(9):13741382.30959203 +Yang +X, An +N, Zhong +C, Guan +M, Jiang +Y, Li +X, Zhang +H, Wang +L, Ruan +Y, Gao +Y, et al. +Enhanced cardiomyocyte reactive oxygen species signaling promotes ibrutinib-induced atrial fibrillation. Redox Biol. 2020;30: +Article 101432.31986467 +Marin +W. +A-kinase anchoring protein 1 (AKAP1) and its role in some cardiovascular diseases. J Mol Cell Cardiol. 2020;138:99109.31783032 +Liu +Y, Merrill +RA, Strack +S. +A-kinase anchoring protein 1: Emerging roles in regulating mitochondrial form and function in health and disease. Cells. 2020;9(2):298.31991888 +Edwards +G, Perkins +GA, Kim +K-Y, Kong +Y, Lee +Y, Choi +S-H, Liu +Y, Skowronska-Krawczyk +D, Weinreb +RN, Zangwill +L, et al. +Loss of AKAP1 triggers Drp1 dephosphorylation-mediated mitochondrial fission and loss in retinal ganglion cells. Cell Death Dis. 2020;11(4):254.32312949 +Qi +B, He +L, Zhao +Y, Zhang +L, He +Y, Li +J, Li +C, Zhang +B, Huang +Q, Xing +J, et al. +Akap1 deficiency exacerbates diabetic cardiomyopathy in mice by NDUFS1-mediated mitochondrial dysfunction and apoptosis. Diabetologia. 2020;63(5):10721087.32072193 +Flippo +KH, Gnanasekaran +A, Perkins +GA, Ajmal +A, Merrill +RA, Dickey +AS, Taylor +SS, McKnight +GS, Chauhan +AK, Usachev +YM, et al. +AKAP1 protects from cerebral ischemic stroke by inhibiting Drp1-dependent mitochondrial fission. J Neurosci. 2018;38(38):82338242.30093535 +Catanzaro +MP, Weiner +A, Kaminaris +A, Li +C, Cai +F, Zhao +F, Kobayashi +S, Kobayashi +T, Huang +Y, Sesaki +H, et al. +Doxorubicin-induced cardiomyocyte death is mediated by unchecked mitochondrial fission and mitophagy. FASEB J. 2019;33(10):1109611108.31291545 +Chen +L, Tian +Q, Shi +Z, Qiu +Y, Lu +Q, Liu +C. +Melatonin alleviates cardiac function in sepsis-caused myocarditis via maintenance of mitochondrial function. Front Nutr. 2021;8: +Article 754235.34708067 +Zhang +H, Liu +J, Cui +M, Chai +H, Chen +L, Zhang +T, Mi +J, Guan +H, Zhao +L. +Moderate-intensity continuous training has time-specific effects on the lipid metabolism of adolescents. J Transl Int Med. 2023;11(1):5769.37223612 +Dou +L, Lu +E, Tian +D, Li +F, Deng +L, Zhang +Y. +Adrenomedullin induces cisplatin chemoresistance in ovarian cancer through reprogramming of glucose metabolism. J Transl Int Med. 2023;11(2):169177.37408575 +Peng +Y, Wang +Y, Zhou +C, Mei +W, Zeng +C. +PI3K/Akt/mTOR pathway and its role in cancer therapeutics: Are we making headway? +Front Oncol. 2022;12: +Article 819128.35402264 +Damaraju +VL, Kuzma +M, Cass +CE, Putman +CT, Sawyer +MB. +Multitargeted kinase inhibitors imatinib, sorafenib and sunitinib perturb energy metabolism and cause cytotoxicity to cultured C2C12 skeletal muscle derived myotubes. Biochem Pharmacol. 2018;155:162171.29983397 +Xu +Y, Wan +W, Zeng +H, Xiang +Z, Li +M, Yao +Y, Li +Y, Bortolanza +M, Wu +J. +Exosomes and their derivatives as biomarkers and therapeutic delivery agents for cardiovascular diseases: Situations and challenges. J Transl Int Med. 2023;11(4):341354.38130647 +Yu +W, Qin +X, Zhang +Y, Qiu +P, Wang +L, Zha +W, Ren +J. +Curcumin suppresses doxorubicin-induced cardiomyocyte pyroptosis via a PI3K/Akt/mTOR-dependent manner. Cardiovasc Diagn Ther. 2020;10(4):752769.32968631 +Fakih +W, Mroueh +A, Gong +D-S, Kikuchi +S, Pieper +MP, Kindo +M, Mazzucottelli +J-P, Mommerot +A, Kanso +M, Ohlmann +P, et al. +Activated factor X stimulates atrial endothelial cells and tissues to promote remodelling responses through AT1R/NADPH oxidases/SGLT1/2. Cardiovasc Res. 2024;120(10):11381154.38742661 +Li +Y, Huang +D, Jia +L, Shangguan +F, Gong +S, Lan +L, Song +Z, Xu +J, Yan +C, Chen +T, et al. +LonP1 links mitochondria–ER interaction to regulate heart function. Research. 2023;6:0175.37333972 +Li +Y, Peng +X, Lin +R, Wang +X, Liu +X, Meng +F, Ruan +Y, Bai +R, Tang +R, Liu +N. +Tyrosine kinase inhibitor antitumor therapy and atrial fibrillation: Potential off-target effects on mitochondrial function and cardiac substrate utilization. Cardiovasc Innov Appl. 2023;8(1):20230070.Chu +TF, Rupnick +MA, Kerkela +R, Dallabrida +SM, Zurakowski +D, Nguyen +L, Woulfe +K, Pravda +E, Cassiola +F, Desai +J, et al. +Cardiotoxicity associated with tyrosine kinase inhibitor sunitinib. Lancet. 2007;370(9604):20112019.18083403 +Tolstik +E, Gongalsky +MB, Dierks +J, Brand +T, Pernecker +M, Pervushin +NV, Maksutova +DE, Gonchar +KA, Samsonova +JV, Kopeina +G, et al. +Raman and fluorescence micro-spectroscopy applied for the monitoring of sunitinib-loaded porous silicon nanocontainers in cardiac cells. Front Pharmacol. 2023;13: +Article 962763.Will +Y, Dykens +JA, Nadanaciva +S, Hirakawa +B, Jamieson +J, Marroquin +LD, Hynes +J, Patyna +S, Jessen +BA. +Effect of the multitargeted tyrosine kinase inhibitors imatinib, dasatinib, sunitinib, and sorafenib on mitochondrial function in isolated rat heart mitochondria and H9c2 cells. Toxicol Sci. 2008;106(1):153161.18664550 +Li +Y, Yan +J, Zhao +Q, Zhang +Y, Zhang +Y. +ATF3 promotes ferroptosis in sorafenib-induced cardiotoxicity by suppressing Slc7a11 expression. Front Pharmacol. 2022;13: +Article 904314.36210815 +Yu +Y, Yan +Y, Niu +F, Wang +Y, Chen +X, Su +G, Liu +Y, Zhao +X, Qian +L, Liu +P, et al. +Ferroptosis: A cell death connecting oxidative stress, inflammation and cardiovascular diseases. Cell Death Discov. 2023;7(1):193.Chen +Y-T, Masbuchin +AN, Fang +Y-H, Hsu +L-W, Wu +S-N, Yen +C-J, Liu +Y-W, Hsiao +Y-W, Wang +J-M, Rohman +MS, et al. +Pentraxin 3 regulates tyrosine kinase inhibitor-associated cardiomyocyte contraction and mitochondrial dysfunction via ERK/JNK signalling pathways. Biomed Pharmacother. 2023;157: +Article 113962.36370523 +Bouitbir +J, Panajatovic +MV, Krähenbühl +S. +Mitochondrial toxicity associated with imatinib and sorafenib in isolated rat heart fibers and the cardiomyoblast H9c2 cell line. Int J Mol Sci. 2022;23(4):2282.35216404 +Zhang +X, Zhang +Z, Zhao +Y, Jiang +N, Qiu +J, Yang +Y, Li +J, Liang +X, Wang +X, Tse +G, et al. +Alogliptin, a dipeptidyl peptidase-4 inhibitor, alleviates atrial remodeling and improves mitochondrial function and biogenesis in diabetic rabbits. J Am Heart Assoc. 2017;6(5): +Article e005945.28507060 +Peng +W, Rao +D, Zhang +M, Shi +Y, Wu +J, Nie +G, Xia +Q. +Teneligliptin prevents doxorubicin-induced inflammation and apoptosis in H9c2 cells. Arch Biochem Biophys. 2020;683: +Article 108238.31881187 +Okunrintemi +V, Mishriky +BM, Powell +JR, Cummings +DM. +Sodium-glucose co-transporter-2 inhibitors and atrial fibrillation in the cardiovascular and renal outcome trials. Diabetes Obes Metab. 2021;23(1):276280.33001548 +Zhou +H, Wang +S, Zhu +P, Hu +S, Chen +Y, Ren +J. +Empagliflozin rescues diabetic myocardial microvascular injury via AMPK-mediated inhibition of mitochondrial fission. Redox Biol. 2018;15:335346.29306791 +Avula +V, Sharma +G, Kosiborod +MN, Vaduganathan +M, Neilan +TG, Lopez +T, Dent +S, Baldassarre +L, Scherrer-Crosbie +M, Barac +A, et al. +SGLT2 inhibitor use and risk of clinical events in patients with cancer therapy-related cardiac dysfunction. JACC Heart Fail. 2024;12(1):6778.37897456 +Chen +M. +Empagliflozin attenuates doxorubicin-induced cardiotoxicity by activating AMPK/SIRT-1/PGC-1α-mediated mitochondrial biogenesis. Toxicol Res. 2023;12(2):216223.Lin +R, Peng +X, Li +Y, Wang +X, Liu +X, Jia +X, Zhang +C, Liu +N, Dong +J. +Empagliflozin attenuates doxorubicin-impaired cardiac contractility by suppressing reactive oxygen species in isolated myocytes. Mol Cell Biochem. 2023;479(8):21052118.37648958 +Feng +J, Chen +Z, Ma +Y, Yang +X, Zhu +Z, Zhang +Z, Hu +J, Liang +W, Ding +G. +AKAP1 contributes to impaired mtDNA replication and mitochondrial dysfunction in podocytes of diabetic kidney disease. Int J Biol Sci. 2022;18(10):40264042.35844803 +Shafaattalab +S, Lin +E, Christidi +E, Huang +H, Nartiss +Y, Garcia +A, Lee +J, Protze +S, Keller +G, Brunham +L, et al. +Ibrutinib displays atrial-specific toxicity in human stem cell-derived cardiomyocytes. Stem Cell Rep. 2019;12(5):9961006.Lahm +H, Jia +M, Dreßen +M, Wirth +F, Puluca +N, Gilsbach +R, Keavney +BD, Cleuziou +J, Beck +N, Bondareva +O, et al. +Congenital heart disease risk loci identified by genome-wide association study in European patients. J Clin Invest. 2021;131(2): +Article e141837.33201861 +Yang +J, Tan +H, Sun +M, Chen +R, Jian +Z, Song +Y, Zhang +J, Bian +S, Zhang +B, Zhang +Y, et al. +Single-cell RNA sequencing reveals a mechanism underlying the susceptibility of the left atrial appendage to intracardiac thrombogenesis during atrial fibrillation. Clin Transl Med. 2023;13(6): +Article e1297.37278111 +Chaudhry +A, Shi +R, Luciani +DS. +A pipeline for multidimensional confocal analysis of mitochondrial morphology, function, and dynamics in pancreatic β-cells. Am J Physiol Endocrinol Metab. 2020;318(2):E87E101.31846372 +Wu +K, Li +L-L, Li +Y-K, Peng +X-D, Zhang +M-X, Liu +K-S, Wang +X-S, Yang +J-X, Wen +S-N, Ruan +Y-F, et al. +Modifications of the Langendorff method for simultaneous isolation of atrial and ventricular myocytes from adult mice. J Vis Exp. 2021; 10.3791/62514.
\ No newline at end of file diff --git a/tests/test_backend_xml.py b/tests/test_backend_xml.py new file mode 100644 index 00000000..b6b80dc3 --- /dev/null +++ b/tests/test_backend_xml.py @@ -0,0 +1,66 @@ +import json +import os +from pathlib import Path + +from docling_core.types.doc import DoclingDocument + +from docling.datamodel.base_models import InputFormat +from docling.datamodel.document import ConversionResult +from docling.document_converter import DocumentConverter + +GENERATE = False + + +def get_xml_paths(): + directory = Path(os.path.dirname(__file__) + f"/data/xml/") + xml_files = sorted(directory.rglob("*.nxml")) + return xml_files + + +def get_converter(): + converter = DocumentConverter(allowed_formats=[InputFormat.XML]) + return converter + + +def verify_export(pred_text: str, gtfile: str): + if not os.path.exists(gtfile) or GENERATE: + with open(gtfile, "w") as fw: + fw.write(pred_text) + print(gtfile) + return True + else: + with open(gtfile, "r") as fr: + true_text = fr.read() + assert pred_text == true_text, f"pred_text!=true_text for {gtfile}" + return pred_text == true_text + + +def test_e2e_xml_conversions(): + xml_paths = get_xml_paths() + converter = get_converter() + + for xml_path in xml_paths: + gt_path = xml_path.parent.parent / "groundtruth" / "docling_v2" / xml_path.name + conv_result: ConversionResult = converter.convert(xml_path) + doc: DoclingDocument = conv_result.document + + pred_md: str = doc.export_to_markdown() + assert verify_export(pred_md, str(gt_path) + ".md"), "export to md" + + pred_itxt: str = doc._export_to_indented_text( + max_text_len=70, explicit_tables=False + ) + assert verify_export( + pred_itxt, str(gt_path) + ".itxt" + ), "export to indented-text" + + pred_json: str = json.dumps(doc.export_to_dict(), indent=2) + assert verify_export(pred_json, str(gt_path) + ".json"), "export to json" + + +def main(): + test_e2e_xml_conversions() + + +if __name__ == "__main__": + main()