Comment: need to update this when read count is implemented

This commit is contained in:
eugenefischer
2022-09-26 13:46:53 -05:00
parent 02c8e6aacb
commit d81ab25a68

View File

@@ -69,6 +69,7 @@ public class GraphMLFileWriter {
//Set graph attributes //Set graph attributes
exporter.setGraphAttributeProvider( () -> graphAttributes); exporter.setGraphAttributeProvider( () -> graphAttributes);
//set type, sequence, and occupancy attributes for each vertex //set type, sequence, and occupancy attributes for each vertex
//NEED TO ADD NEW FIELD FOR READ COUNT
exporter.setVertexAttributeProvider( v -> { exporter.setVertexAttributeProvider( v -> {
Map<String, Attribute> attributes = new HashMap<>(); Map<String, Attribute> attributes = new HashMap<>();
attributes.put("type", DefaultAttribute.createAttribute(v.getType().name())); attributes.put("type", DefaultAttribute.createAttribute(v.getType().name()));