statistics.add_option("--reciprocity",action="callback",callback=push_option,type="string",metavar="FILE",help="get the edge reciprocity")
statistics.add_option("--minimum-spanning-tree",action="callback",callback=push_option,type="string",metavar="[WEIGHT|]PROPERTY",help="mark the minimum spanning tree edges in PROPERTY")
statistics.add_option("--line-graph",action="callback",callback=push_option,type="string",metavar="FILE[|FORMAT]",help="save the corresponding line graph to FILE")
statistics.add_option("--betweenness-centrality",action="callback",callback=push_option,type="string",metavar="VERTEX_BETWEENESS[|EDGE_BETWEENESS[|WEIGHT]]",help="calculate and store the vertex and/or edge betweenness centrality")
statistics.add_option("--central-point-dominance",action="callback",callback=push_option,type="string",metavar="VERTEX_BETWEENESS|FILE",help="calculate central point dominance, given the VERTEX_BETWEENESS vertex property")
correlations.add_option("--average-combined-vertex-correlation",action="callback",callback=push_option,type="string",metavar="DEGREE1|DEGREE2|FILE",help="get the average of DEGREE2 in function of DEGREE1. Scalar properties are also accepted as DEGREE1 or DEGREE2")
correlations.add_option("--scalar-assortativity-coefficient",action="callback",callback=push_option,type="string",metavar="DEGREE|FILE",help="get the scalar assortativity coefficient. Scalar properties are also accepted in place of DEGREE")
clustering=parser.add_option_group("Clustering")
clustering.add_option("--set-local-clustering-to-property",action="callback",callback=push_option,type="string",metavar="PROPERTY",help="set the local clustering coefficient to vertex property")
clustering.add_option("--local-clustering-coefficient",action="callback",callback=push_option,type="string",metavar="PROPERTY",help="set the local clustering coefficient to vertex property")
clustering.add_option("--global-clustering-coefficient",action="callback",callback=push_option,type="string",metavar="FILE",help="get the global clustering coefficient")
clustering.add_option("--set-extended-clustering-to-property",action="callback",callback=push_option,type="string",metavar="PREFIX|MAX",help="set the extended clustering coefficients c1 to cMAX to vertex properties PREFIX1 to PREFIXMAX")
clustering.add_option("--extended-clustering-coefficient",action="callback",callback=push_option,type="string",metavar="PREFIX|MAX",help="set the extended clustering coefficients c1 to cMAX to vertex properties PREFIX1 to PREFIXMAX")
layout=parser.add_option_group("Layout")
layout.add_option("--compute-spring-block-layout",action="callback",callback=push_option,type="string",metavar="ITERATIONS[|SEED]",help="compute the spring block layout")