add a "worst case" I/O cost per process graph to job-summary
The current darshan-job-summary pdf includes a graph that looks like the attachment . It shows the average I/O cost per process, which means summing up read, write, and metadata time across all ranks and dividing by the number of ranks.
This is helpful in many cases, but it fails to highlight cases where the application is held back by one rank (or a few ranks) spending more time in I/O than the others. The worst case would be a job that does "rank 0 I/O" (i.e., all I/O from a single process of the job). On average this would look fine in this graph if there are enough ranks not doing I/O to amortize the cost.
We should add an additional graph that at least shows the worst case rank in terms of I/O percentage in addition to the average percentage.