Clingen Allele Tools¶
Configuration File: clingen_allele_tools.json
Tool Type: Local
Tools Count: 2
This page contains all tools defined in the clingen_allele_tools.json configuration file.
Available Tools¶
ClinGenAllele_get_allele (Type: ClinGenAlleleTool)¶
Get detailed information for a canonical allele by its ClinGen Allele Registry CA ID. Returns cro…
ClinGenAllele_get_allele tool specification
Tool Information:
Name:
ClinGenAllele_get_alleleType:
ClinGenAlleleToolDescription: Get detailed information for a canonical allele by its ClinGen Allele Registry CA ID. Returns cross-references to ClinVar, dbSNP, COSMIC, gnomAD, genomic coordinates, and transcript-level HGVS expressions.
Parameters:
ca_id([‘string’, ‘null’]) (optional) ClinGen canonical allele identifier (e.g., ‘CA000387’). Obtain from ClinGenAllele_lookup_hgvs or ClinVar.allele_id([‘string’, ‘null’]) (optional) Alias for ca_id. ClinGen canonical allele identifier (e.g., ‘CA000387’).
Example Usage:
query = {
"name": "ClinGenAllele_get_allele",
"arguments": {
}
}
result = tu.run(query)
ClinGenAllele_lookup_hgvs (Type: ClinGenAlleleTool)¶
Look up a genetic variant by HGVS expression in the ClinGen Allele Registry to get its canonical …
ClinGenAllele_lookup_hgvs tool specification
Tool Information:
Name:
ClinGenAllele_lookup_hgvsType:
ClinGenAlleleToolDescription: Look up a genetic variant by HGVS expression in the ClinGen Allele Registry to get its canonical allele identifier (CA ID) and cross-references to ClinVar, dbSNP, COSMIC, gnomAD, and other databases. Accepts genomic (NC_*), coding (NM_*), or protein (NP_*) HGVS expressions.
Parameters:
hgvs(string) (required) HGVS expression for the variant. Examples: ‘NC_000017.11:g.7674220C>T’ (genomic), ‘NM_000546.6:c.743G>A’ (coding). Must use a valid reference sequence accession.
Example Usage:
query = {
"name": "ClinGenAllele_lookup_hgvs",
"arguments": {
"hgvs": "example_value"
}
}
result = tu.run(query)