_(api:trs)=
# TRS API reference

```{tip} Click the arrow (![arrow](../images/arrow.png)) to collapse the navigation pane or click **Fullscreen mode** (![fullscreen](../images/fullscreen.png)) to display the columns correctly.

```

<head>
  <meta charset="utf-8">
  <!-- Important: rapi-doc uses utf8 charecters -->
  <script type="module" src="https://unpkg.com/rapidoc/dist/rapidoc-min.js"></script>
</head>
<body>
  <div id="version">
    <ul id="versionTable" class="version-tabs" role="tablist">
    </ul>
  </div>
<rapi-doc
  id="reference"
  spec-url = "https://raw.githubusercontent.com/atgenomix/seqslab-api-reference/main/latest/trs_latest.yml"
  theme = "light"
  show-header = "false"
  show-info = "false"
  allow-authentication = "false"
  allow-server-selection = "false"
  allow-schema-description-expand-toggle = "true"
  allow-try	= "false"
  render-style = "view"
  layout = "column"
  schema-style = "table"
  schema-description-expanded = "false"
  primary-color = "#1e7e34"
>
</rapi-doc>
  <script>
    // define the api schema
    const api = "trs"
    // 
    const setSpecUrl = (version) => {
      const url = `https://raw.githubusercontent.com/atgenomix/seqslab-api-reference/main/${version}/${api}_${version}.yml`;
      const referenceElement = document.getElementById("reference");
      referenceElement.setAttribute("spec-url", url);
    };
    // Define variables using JupyterBook's metadata
    $('.version-tabs li a').on('click', function(e) {
      version = $(this).text();
      setSpecUrl(version);
    })
    setSpecUrl("2023-December");
  </script>
</body>