Files
cellxgene/backend/app/util/schema_parse.py
2018-06-01 11:16:23 -07:00

8 lines
122 B
Python

import json
def parse_schema(filename):
with open(filename) as fh:
schema = json.load(fh)
return schema