list_all_attributes
Retrieve a filtered list of all attributes for a specified dataset in Biomart MCP, excluding less common attributes like homologs and microarray probes, returned in CSV format. Use to explore dataset characteristics efficiently.
Instructions
Lists all available attributes for a given dataset with some filtering.
This function returns a filtered list of all attributes available for the specified
dataset. Some less commonly used attributes (homologs, microarray probes) are
filtered out to reduce the response size.
CAUTION: This function can return a large number of attributes and may be unstable
for certain datasets. Consider using list_common_attributes first.
Args:
mart (str): The mart identifier (e.g., "ENSEMBL_MART_ENSEMBL")
dataset (str): The dataset identifier (e.g., "hsapiens_gene_ensembl")
Returns:
str: CSV-formatted table of all filtered attributes.
Example:
list_all_attributes("ENSEMBL_MART_ENSEMBL", "hsapiens_gene_ensembl")
Input Schema
Name | Required | Description | Default |
---|---|---|---|
dataset | Yes | ||
mart | Yes |
Input Schema (JSON Schema)
{
"properties": {
"dataset": {
"title": "Dataset",
"type": "string"
},
"mart": {
"title": "Mart",
"type": "string"
}
},
"required": [
"mart",
"dataset"
],
"title": "list_all_attributesArguments",
"type": "object"
}