Usage: cartoGraphAddAttributeFromCsv.py [options]

Add an attritute to some nodes of a graph. The attribute stem from a csv file
with an header. Each line of this file is a pair of node-name value

Options:
  -h, --help     show this help message and exit
  -i FILE        Input graph
  -o FILE        Output graph (default=out.arg)
  -j FILE        Input csv file
  -k STRING      graph key attribute: the attribute name which identifies the
                 graph nodes (default=name)
  -l STRING      graph value attribute: the attribute name of the graph nodes
                 that will be used to store the value,
                 (default=custom_num_val)
  -m STRING|INT  table (csv) column name|number which contains keys to be
                 matched with attribute name of the graph (default=0, first
                 column)
  -n STRING|INT  csv column name|number which contains values to be set with
                 attribute name of the graph (default=1, second column)
  -q, --quiet    don't print status messages to stdout

cartoGraphAddAttributeFromCsv.py -i input_fold_graph.arg -j stats-values.csv
