Skip to main content

Python library to load JGF files

Project description

JGF(Z) format implementation

This package implements export and import functions for the JSON Graph Format (gZipped) JGF(Z) (https://jsongraphformat.info). Supported input formats/libraries are networkx, igraph, numpy matrices and JXNF files. All network, node and edges attributes are saved as well.

This project is being developed to support the new network datatype for (brainlife.io).

Authors

Funding

NIH-1R01EB029272-01

Installation

You can install this package using pip:

pip install jgf

or install it from this git repository:

git clone <repository URL>
cd <repository PATH>
pip install -e ./

API Reference

API reference can be found in (https://jgf.readthedocs.io/).

Example of use

To use the library in igraph environment simply import the correct module and run save or load functions:

import igraph as ig
import jgf.igraph as jig

g = ig.Graph.Famous("Zachary")

# will save a compressed file
jig.save(g,"zachary.jgfz")

g, = jig.load("zachary.jgfz")

You can also use it to save and load connectivity matrices as square numpy matrices:

import numpy as np
import jgf.conmat as jcm

A = np.array([
  [  0, 0.1, 0.2,   0,   0],
  [  0,   0,   0, 0.5,   0],
  [  0,   0,   0,   0, 1.0],
  [1.0, 1.0,   0,   0,   0],
  [  0,   0, 0.5,   0,   0],
  ])

nodeProperties = {
  "name" : [
    "Node 1",
    "Node 2",
    "Node 3",
    "Node 4",
    "Node 5",
  ]
}
# will save a compressed file
jcm.save(A,"example.jgfz",label= "Example", nodeProperties=nodeProperties)

B,properties = jcm.load("example.jgfz",getExtraData=True)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

jgf-0.2.2.tar.gz (9.6 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page