Skip to content

Commit

Permalink
Fix passing of command-line options in slices-to-precomputed
Browse files Browse the repository at this point in the history
Fixes #7
  • Loading branch information
ylep committed May 18, 2018
1 parent 8fe83c1 commit f0e1e79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/neuroglancer_scripts/scripts/slices_to_precomputed.py
Expand Up @@ -226,7 +226,7 @@ def convert_slices_in_directory(slice_dirs, dest_url, input_orientation="RAS",
"""Load slices from a directory and convert them to Neuroglancer chunks"""
slice_filename_lists = [sorted(d.iterdir()) for d in slice_dirs]
slices_to_raw_chunks(slice_filename_lists, dest_url, input_orientation,
options={})
options=options)


def parse_command_line(argv):
Expand Down

0 comments on commit f0e1e79

Please sign in to comment.