Open adamnovak opened 7 years ago
In the original protobuf objects (like Graph), repeated fields are singular (node and edge).
Graph
node
edge
In some of the newer messages like Pileup and SnarlTraversal, some repeated fields are plural (node_pileups, base_pileups, visits).
Pileup
SnarlTraversal
node_pileups
base_pileups
visits
We should change them all to be singular, so we don't say things like snarl.visits_size() and *pileup.add_node_pileups() = one_node_pileup.
snarl.visits_size()
*pileup.add_node_pileups() = one_node_pileup
@jeizenga @glennhickey @ekg Do you have opinions on this?
Sure. Don't really care either way.
In the original protobuf objects (like
Graph
), repeated fields are singular (node
andedge
).In some of the newer messages like
Pileup
andSnarlTraversal
, some repeated fields are plural (node_pileups
,base_pileups
,visits
).We should change them all to be singular, so we don't say things like
snarl.visits_size()
and*pileup.add_node_pileups() = one_node_pileup
.@jeizenga @glennhickey @ekg Do you have opinions on this?