Enzyme Class Ref Data
Data Type: enzyme_class_ref
Primary Key: ec_number
Attributes
-
_version_
(number)
-
date_inserted
(date)
- ISO-8601 UTC datetime when the enzyme-class reference was first loaded into BV-BRC, enabling incremental update workflows. "2023-05-04T12:27:41Z"
-
date_modified
(date)
- Updated whenever ec_description or go mappings are revised; clients compare this to cached copies to refresh only changed rows. "2025-04-12T08:13:05Z"
-
ec_description
(string)
- Human-readable description associated with the Enzyme Commission (EC) number, imported from IUBMB/NC-IUBMB lists; displayed in pathway viewers and tool-tips. "L-lactate dehydrogenase"
-
ec_number
*
(string)
- Primary key. Hierarchical Enzyme Commission identifier defining the biochemical reaction a catalyst performs (e.g. 1.1.1.27). Serves as the main join key between genomes, pathways and external databases. "1.1.1.27"
-
go
(array of case insensitive strings)
- Array of GO accessions that cross-reference the EC activity (molecular-function nodes); used for functional-enrichment analyses and GO term look-ups. [ "GO:0004459", "GO:0005737" ]
API
GET :ec_number
Retrieve a enzyme_class_ref data object by ec_number
EXAMPLE
https://www.bv-brc.org/api/enzyme_class_ref/1.1.1.100
Try It!
QUERY :query
Query for enzyme_class_ref data objects with an RQL Query
Return Formats
Requests may include an HTTP ACCEPT header from this list to transform the data into the requested type.
-
application/json - Returns results as an array of JSON objects
-
application/solr+json - Results results in SOLR JSON response format
-
text/csv - Returns results in Comma Separated values (CSV) format. Columns are separated by ','. Multi-value columns are separated by ';'. Rows are separated by new line
-
text/tsv - Returns results in Tab Separated values (TSV) format. Columns are separated by a tab. Multi-value columns are separated by ';'. Rows are separated by new line
-
application/vnd.openxmlformats - Returns objects as an MS Excel document
EXAMPLE
- Query for enzyme_class_ref data objects with a ec_number equal to 1.1.1.100. Return results as a JSON Array.
https://www.bv-brc.org/api/enzyme_class_ref/?eq(ec_number,1.1.1.100)
Try It!