"</tr>");
int graphNum = 0;
for (Map.Entry<Multigraph<String,TypedEdge<String>>,Fanmod.Result> e :
motifToZScore.entrySet()) {
File dotFile = new File(baseDir, "graph-" + (graphNum++) + ".dot");
dio.writeUndirectedMultigraph(e.getKey(), dotFile, edgeColors);
String imgFile = dotFile.getName();
imgFile = imgFile.substring(0, imgFile.length() - 3) + "gif";
imgScript.printf("dot -Tgif %s -o %s%n", dotFile.getName(), imgFile);
int count = e.getValue().count;
double zScore = e.getValue().statistic;