Skip to content

Commit

Permalink
Merge pull request #787 from alexcraven/patch-1
Browse files Browse the repository at this point in the history
Fix mICheckBox, sICheckBox in osp_create_job_file
  • Loading branch information
HJZollner authored Oct 2, 2024
2 parents 6bfe5bf + 24746b1 commit 101ed7a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions job/osp_create_job_file.m
Original file line number Diff line number Diff line change
Expand Up @@ -82,14 +82,14 @@
if app.GluCheckBox.Value, fprintf(fid,'%s',',"Glu"'); end
if app.GlyCheckBox.Value, fprintf(fid,'%s',',"Gly"'); end
if app.H2OCheckBox.Value, fprintf(fid,'%s',',"H2O"'); end
if app.InsCheckBox.Value, fprintf(fid,'%s',',"mI"'); end
if app.mICheckBox.Value, fprintf(fid,'%s',',"mI"'); end
if app.LacCheckBox.Value, fprintf(fid,'%s',',"Lac"'); end
if app.NAACheckBox.Value, fprintf(fid,'%s',',"NAA"'); end
if app.NAAGCheckBox.Value, fprintf(fid,'%s',',"NAAG"'); end
if app.PChCheckBox.Value, fprintf(fid,'%s',',"PCh"'); end
if app.PCrCheckBox.Value, fprintf(fid,'%s',',"PCr"'); end
if app.PECheckBox.Value, fprintf(fid,'%s',',"PE"'); end
if app.ScylloCheckBox.Value, fprintf(fid,'%s',',"sI"'); end
if app.sICheckBox.Value, fprintf(fid,'%s',',"sI"'); end
if app.SerCheckBox.Value, fprintf(fid,'%s',',"Ser"'); end
if app.TauCheckBox.Value, fprintf(fid,'%s',',"Tau"'); end
if app.TyrosCheckBox.Value, fprintf(fid,'%s',',"Tyros",'); end
Expand Down Expand Up @@ -180,4 +180,4 @@
fprintf(fid,'\n%s','}');
fclose(fid);

jobm = mfile;
jobm = mfile;

0 comments on commit 101ed7a

Please sign in to comment.