Files
cellxgene/server/app/util/schema_parse.py
2018-06-26 11:41:32 -07:00

8 lines
122 B
Python

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