Skip to content

Commit

Permalink
use sort_order instead of order in CSV
Browse files Browse the repository at this point in the history
  • Loading branch information
ctb committed Sep 29, 2023
1 parent a6fba2a commit 7ffcb7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sourmash/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ def compare(args):
notify(f'saving labels to: {labeloutname}')
with sourmash_args.FileOutputCSV(labeloutname) as fp:
w = csv.writer(fp)
w.writerow(['order', 'md5', 'label', 'name', 'filename',
w.writerow(['sort_order', 'md5', 'label', 'name', 'filename',
'signature_file'])

for n, (ss, location) in enumerate(siglist):
Expand Down

0 comments on commit 7ffcb7b

Please sign in to comment.