Fix GraphML writer

This commit is contained in:
2022-02-26 10:36:00 -06:00
parent e4d094d796
commit 9fcc20343d
2 changed files with 54 additions and 5 deletions

View File

@@ -315,7 +315,7 @@ public class InteractiveInterface {
System.out.println("Serialized binary graph/data file written to: " + filename);
}
if(BiGpairSEQ.outputGraphML()) {
GraphMLFileWriter graphMLWriter = new GraphMLFileWriter(filename, data.getGraph());
GraphMLFileWriter graphMLWriter = new GraphMLFileWriter(filename, data);
graphMLWriter.writeGraphToFile();
System.out.println("GraphML file written to: " + filename);
}