Skip to content

Commit

Permalink
fix: missing ) in gene-essentiality.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
edkerk committed Oct 19, 2024
1 parent 61f9b12 commit ff716cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/gene-essentiality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
output = evaluateHart2015Essentiality(eGenes);
fid = fopen('data/testResults/gene-essential.csv','w');
fprintf(fid,[repmat('%s,',1,13) '%s\n'],transpose(output{1,:}));
fprintf(fid,['%s,%d,%d,%d,%d' repmat(',%.4g',1,9) '\n'],transpose(output{2:end,:});
fprintf(fid,['%s,%d,%d,%d,%d' repmat(',%.4g',1,9) '\n'],transpose(output{2:end,:}));
fclose(fid);
disp(output);" | awk 'NR>9 && !/^\.+/') &&
PARSED_RESULTS="${TEST_RESULTS//'%'/'%25'}" &&
Expand Down

0 comments on commit ff716cb

Please sign in to comment.