Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kwonoh/gephi-cli
A Command-Line Interface of Gephi
https://github.com/kwonoh/gephi-cli
gephi graph-visualization network-visualization
Last synced: 9 days ago
JSON representation
A Command-Line Interface of Gephi
- Host: GitHub
- URL: https://github.com/kwonoh/gephi-cli
- Owner: kwonoh
- License: gpl-3.0
- Created: 2018-05-12T01:35:05.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-05-14T12:38:32.000Z (over 4 years ago)
- Last Synced: 2024-08-02T14:08:11.668Z (3 months ago)
- Topics: gephi, graph-visualization, network-visualization
- Language: Java
- Homepage:
- Size: 322 KB
- Stars: 7
- Watchers: 2
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Gephi CLI
A command-line interface of [Gephi](https://gephi.org/).## Download
[gephi-cli (2018-05-12)](https://github.com/kwonoh/gephi-cli/releases/download/2018-05-12/gephi-cli.jar)## Usage
```sh
java -jar gephi-cli.jar force-atlas-2 -i data/karate.graphml -o data/karate.out.graphml
```## Commands and Parameters
### `force-atlas-2`
```
-h, --help Show this help message and exit.
-i, --in=FILE The input file path.
-o, --out=FILE The output file path.
--max-iters=INT The number of maximum iterations for layout computation.
--thread-count=INT The number of threads for layout computation.
--log-perf Log layout performance measures. Currently, only wall clock seconds will be logged.
--scaling-ratio=NUM Scaling ratio parameter (default: 2.0 if |V| >= 100 else 10.0).
--strong-gravity=BOOL Use strong gravity mode (default: false).
--gravity=NUM Gravity parameter (default: 1.0).
--outbound-attr-dist=BOOL
Outbound attraction distribution parameter (default: false)
--linlog=BOOL Use LinLog mode (default: false).
--adjust-sizes=BOOL Adjust sizes parameter (default: false).
--edge-weight-influence=NUM
Edge weight influence parameter (default: 1.0).
--jitter-tol=NUM Jitter tolerance parameter (default: 1.0).
--barnes-hut=BOOL Use Barnes-Hut optimization (default: true if |V| >= 1000 else false).
--barnes-hut-theta=NUM
Barnes-Hut theta parameter (default: 1.2).
```