Skip to content

ionicf/graph-make-undirected

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Convert a directed graph to an undirected graph.

# Convert the web-Stanford directed graph to an undirected graph.
$ graph-make-undirected -i web-Stanford.mtx -o web-Stanford-undirected.mtx

# Convert the web-Stanford directed graph to an undirected graph in CSV format.
$ graph-make-undirected -i web-Stanford.mtx -o web-Stanford-undirected.tsv -f mtx -g csv

# Convert the weighted vt2010 directed graph to an undirected graph.
$ graph-make-undirected -i vt2010.mtx -o vt2010-undirected.mtx -w

Usage

$ graph-make-undirected [options]

Options:
  -h, --help                    Show this help message.
  -i, --input <file>            Input file name.
  -o, --output <file>           Output file name.
  -f, --input-format <format>   Input file format.
  -g, --output-format <format>  Output file format.
  -w, --weighted                Input graph is weighted.
  -s, --symmetric               Input graph is symmetric.

Supported formats:
  mtx       Matrix Market format (default).
  coo       Coordinate format.
  edgelist  Edgelist format.
  csv       Comma-separated values format.
  tsv       Tab-separated values format.

Installation

$ git clone https://github.com/ionicf/graph-make-undirected
$ cd graph-make-undirected
$ ./install.sh --prefix /usr/local



ORG DOI

About

Convert a directed graph to an undirected graph.

Resources

License

Stars

Watchers

Forks