Implement read count for vertices

This commit is contained in:
eugenefischer
2022-09-26 19:42:19 -05:00
parent 19a2a35f07
commit 199c81f983
6 changed files with 93 additions and 15 deletions

View File

@@ -23,6 +23,7 @@ public class Vertex implements Serializable, Comparable<Vertex> {
this.vertexLabel = vertexLabel;
this.sequence = sequence;
this.occupancy = occupancy;
this.readCount = 1;
}
public Vertex(SequenceType type, String sequence, Integer occupancy, Integer vertexLabel, Integer readCount) {