From d81ab25a6845d5fbc1480e260389f70ffd465c08 Mon Sep 17 00:00:00 2001 From: eugenefischer <66030419+eugenefischer@users.noreply.github.com> Date: Mon, 26 Sep 2022 13:46:53 -0500 Subject: [PATCH] Comment: need to update this when read count is implemented --- src/main/java/GraphMLFileWriter.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/java/GraphMLFileWriter.java b/src/main/java/GraphMLFileWriter.java index 8411502..4b4b0ff 100644 --- a/src/main/java/GraphMLFileWriter.java +++ b/src/main/java/GraphMLFileWriter.java @@ -69,6 +69,7 @@ public class GraphMLFileWriter { //Set graph attributes exporter.setGraphAttributeProvider( () -> graphAttributes); //set type, sequence, and occupancy attributes for each vertex + //NEED TO ADD NEW FIELD FOR READ COUNT exporter.setVertexAttributeProvider( v -> { Map attributes = new HashMap<>(); attributes.put("type", DefaultAttribute.createAttribute(v.getType().name()));