Massive Tools¶
Configuration File: massive_tools.json
Tool Type: Local
Tools Count: 2
This page contains all tools defined in the massive_tools.json configuration file.
Available Tools¶
MassIVE_get_dataset (Type: MassIVETool)¶
Get detailed information about a specific MassIVE proteomics dataset by its accession number (MSV…
MassIVE_get_dataset tool specification
Tool Information:
Name:
MassIVE_get_datasetType:
MassIVEToolDescription: Get detailed information about a specific MassIVE proteomics dataset by its accession number (MSV or PXD format). Returns title, summary, species, instruments, keywords, contacts, publications, and post-translational modifications.
Parameters:
accession(string) (required) MassIVE dataset accession (e.g., ‘MSV000079514’) or ProteomeXchange accession (e.g., ‘PXD003971’)
Example Usage:
query = {
"name": "MassIVE_get_dataset",
"arguments": {
"accession": "example_value"
}
}
result = tu.run(query)
MassIVE_search_datasets (Type: MassIVETool)¶
Search the MassIVE proteomics repository for mass spectrometry datasets. MassIVE hosts thousands …
MassIVE_search_datasets tool specification
Tool Information:
Name:
MassIVE_search_datasetsType:
MassIVEToolDescription: Search the MassIVE proteomics repository for mass spectrometry datasets. MassIVE hosts thousands of proteomics datasets accessible via the ProXI standard API. Returns dataset accessions, titles, species, instruments, and keywords. Optionally filter by NCBI taxonomy ID for species.
Parameters:
page_size(integer) (optional) Number of results to return (max 100)species([‘string’, ‘null’]) (optional) NCBI taxonomy ID to filter by species (e.g., ‘9606’ for human, ‘10090’ for mouse)
Example Usage:
query = {
"name": "MassIVE_search_datasets",
"arguments": {
}
}
result = tu.run(query)