Skip to content

Commit

Permalink
Don't require inputs are ASCII
Browse files Browse the repository at this point in the history
  • Loading branch information
benmwebb committed Oct 24, 2024
1 parent 75f6402 commit 2550324
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/itcell/submit_page.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def handle_new_job():
# write parameters
with open(job.get_path('input.txt'), 'w') as fh:
fh.write("%s TCR.pdb antigen_seq.txt\n" % pmhc_file_name)
with open(job.get_path('data.txt'), 'w') as fh:
with open(job.get_path('data.txt'), 'w', encoding='latin1') as fh:
fh.write("%s %s %s %s %s\n"
% (mhctype, mhcpdbfile, tcrfile, email, jobname))

Expand Down

0 comments on commit 2550324

Please sign in to comment.