# Example Question

Suppose you are managing a dataset focused on Parkinson's disease. Researchers may be interested in analyzing the relationship between certain genetic pathways and patient demographics. You can set up a question that allows them to filter by sex, age, or other participant characteristics.

## SQL Query Example

```sql
Unset
SELECT *
FROM subject_metadata s
INNER JOIN enterotypes e
ON s.sample_name = e.sample_name
WHERE s.sex = {{sex}}
```

## Variable Configuration

* `ID`: sex
* `Name`: Sex
* `Type`: Dropdown (values: M, F)
* `Description`: Select the sex of the participants you want to include in your analysis.

This setup will enable researchers to easily filter data by participant sex, tailoring their analysis to their specific research needs.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.omics.ai/products/publisher/questions/example-question.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
