Skip to content

Commit

Permalink
Fix TSV output in web UI
Browse files Browse the repository at this point in the history
  • Loading branch information
billzt committed Feb 9, 2021
1 parent 82309ed commit 842dd5c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion primerserver2/core/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
def get():
return '2.0.0b16'
return '2.0.0b17'
2 changes: 1 addition & 1 deletion primerserver2/web/download.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@
def download_tsv():
json_data = json.loads(request.form['json'])
dbs = request.form['dbs'].split(',')
print_lines = output.tsv(json_data['primers'], dbs)
print_lines = output.tsv(json_data['primers'], dbs, json_data['meta']['mode'])
return print_lines

0 comments on commit 842dd5c

Please sign in to comment.