-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserve_default_dir.py
More file actions
22 lines (21 loc) · 948 Bytes
/
serve_default_dir.py
File metadata and controls
22 lines (21 loc) · 948 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from neuroglancer_utils.create_datasets.create_full_cube import create_cube
from neuroglancer_utils.create_datasets.create_float_cube import create_float_cube
from neuroglancer_utils.create_datasets.create_full_cube_16 import (
create_cube as create_cube_16,
)
from neuroglancer_utils.create_datasets.create_sphere import create_sphere
from neuroglancer_utils.create_datasets.create_allen_multi import create_allen_multi
from neuroglancer_utils.create_datasets.create_cdf_example import create_cdf_example
from neuroglancer_utils.create_datasets.create_border_data import create_border_example
from neuroglancer_utils.create_datasets.create_multic import create_multi
from neuroglancer_utils.local_server import create_server
create_cube()
create_float_cube()
create_cube_16()
create_sphere()
create_allen_multi()
create_cdf_example()
create_border_example()
create_multi()
create_server(directory="datasets")
input("Press enter to continue")