Crates.io | three-edge-connected |
lib.rs | three-edge-connected |
version | 0.2.2 |
source | src |
created_at | 2020-10-04 03:07:48.890768 |
updated_at | 2021-06-29 14:43:25.909366 |
description | Library and CLI tool for finding 3-edge-connected components of graphs, especially graphs in the GFA format. |
homepage | |
repository | https://github.com/chfi/rs-3-edge |
max_upload_size | |
id | 295941 |
size | 31,342 |
Finds the 3-edge-connected components of a bridgeless graph in defined in GFA. Output is one component per line, as a space-delimited list of GFA segment names.
$ ./three-edge-connected --help
three-edge-connected 0.1.0
Finds the 3-edge-connected components in a graph. Input must be a bridgeless graph in the GFA format. Output is a list
of 3-edge-connected components, one per line, as space-delimited lists of segment names
USAGE:
three-edge-connected [FLAGS] [OPTIONS] --in-file <in-file> -s
FLAGS:
-h, --help Prints help information
-s If true, read input GFA on stdin
-V, --version Prints version information
OPTIONS:
-i, --in-file <in-file> GFA file to use, must be present if not reading from stdin
-o, --out-file <out-file> Output file. If empty, writes on stdout
$ ./three-edge-connected -i some.gfa -o output
$ ./three-edge-connected -i some.gfa -s > output