Skip to content

Commit

Permalink
Fix issue with reversed function in py34
Browse files Browse the repository at this point in the history
  • Loading branch information
nvictus committed May 25, 2017
1 parent 286a936 commit 0a495f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cooler/cli/aggregate.py
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ def zoomify(ctx, cool_uri, nproc, chunksize, balance, balance_args, out):
balance_args = shlex.split(balance_args)
logger.debug('Balancing args: {}'.format(balance_args))

for level, res in reversed(zoom_levels.items()):
for level, res in reversed(list(zoom_levels.items())):
uri = outfile + '::' + str(level)
if level == str(n_zooms):
if 'weight' in api.Cooler(uri).bins():
Expand Down

0 comments on commit 0a495f1

Please sign in to comment.