mirror of
https://github.com/chanzuckerberg/cellxgene.git
synced 2026-09-16 21:37:59 +08:00
8 lines
122 B
Python
8 lines
122 B
Python
import json
|
|
|
|
|
|
def parse_schema(filename):
|
|
with open(filename) as fh:
|
|
schema = json.load(fh)
|
|
return schema
|