Skip to content

Commit

Permalink
Merge pull request #86 from jordansafer/master
Browse files Browse the repository at this point in the history
Fix header typo for easier parsing
  • Loading branch information
pschmidtke authored Feb 22, 2023
2 parents f05cdb7 + 5ef1907 commit 9c7be61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/writepocket.c
Original file line number Diff line number Diff line change
Expand Up @@ -607,7 +607,7 @@ void write_pocket_pdb(const char out[], s_pocket *pocket) {
fprintf(f, "HEADER 7 - Polarity Score : %5d\n", pocket->pdesc->polarity_score);
fprintf(f, "HEADER 8 - Amino Acid based volume Score : %.4f\n", pocket->pdesc->volume_score);
fprintf(f, "HEADER 9 - Pocket volume (Monte Carlo) : %.4f\n", pocket->pdesc->volume);
fprintf(f, "HEADER 10 -Pocket volume (convex hull) : %.4f\n", pocket->pdesc->convex_hull_volume);
fprintf(f, "HEADER 10 - Pocket volume (convex hull) : %.4f\n", pocket->pdesc->convex_hull_volume);
fprintf(f, "HEADER 11 - Charge Score : %5d\n", pocket->pdesc->charge_score);
fprintf(f, "HEADER 12 - Local hydrophobic density Score : %.4f\n", pocket->pdesc->mean_loc_hyd_dens);
fprintf(f, "HEADER 13 - Number of apolar alpha sphere : %5d\n", pocket->nAlphaApol);
Expand Down

0 comments on commit 9c7be61

Please sign in to comment.