npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

sbgn-renderer

v1.1.1

Published

A library that renders SBGN

Downloads

5

Readme

SBGN Renderer

A JavaSript library that renders biological networks using cytoscape.js and the System Biology Graphical Notation language

Purpose

To render SBGN(Systems Biology Graphical Notation) graphs -- a visual language for representing biological processes.

Requirements

Input needs to be formatted Cytoscape.js graph JSON.

The following graph JSON structure is required:

{
  nodes: [],  // array of nodes
  edges: []   // array of edges
}

The following node JSON structure is required:

      "data": {
        "id": "glyph23",                   // id of the node
        "class": "simple chemical",        // class of the node (see classes section for a list of supported sbgn glyphs
        "label": "Ca2+",                   // label to be displayed on the node
        "parent": "glyph2",                // parent node id if any
        "clonemarker": false,              // whether the node has a clonemarker or not
        "stateVariables": [],              // an array of state variables
        "unitsOfInformation": [],          // an array of units of information
      }

The following edge JSON structure is required:

      "data": {
        "id": "glyph19-glyph5",            // id
        "class": "production",             // sbgn class
        "cardinality": 0,                  // cardinality
        "source": "glyph19",               // source node id
        "target": "glyph5",                // target node id
        "portSource": "glyph19",           // port of the source
        "portTarget": "glyph5"             // port of the target
      }

To get Cytoscape.js graph JSON, you need the following:

Installation

SBGN Renderer can be installed via npm

npm install sbgn-renderer

Usage

SBGNRenderer provides Cytoscape.js's API, as well as SBGN specific functions for SBGN graph analysis. Learn how to use SBGNRenderer by learning how to use Cytoscape.js Learn how to use the [SBGN API] ()

CommonJS Usage

var SBGNRenderer = require('sbgn-renderer');

var renderer = new SBGNRenderer(/* opts */);
renderer.nodes();    // get cytoscape graph nodes
renderer.edges();    // get cytoscape graph edges
// renderer.<cytoscape-api-method-here>
Demo

For a detailed example, refer to the code in the demo:

Running the Demo

Clone this repository

git clone https://github.com/PathwayCommons/sbgn-renderer

Change directory to the newly cloned folder

cd sbgn-renderer

Run a local server

node http-server -p <PORT>

Open your browser and type the following address:

localhost:<PORT>/demo/

Building the Library

The following npm scripts are available. To run a script, type:

npm run <command>
  • build: Builds the sbgn-renderer library; Places it in the dist folder
  • build-demo: Builds the browserify version of the demo app in the demo folder
  • clean: Removes the browserify demo bundle and the contents of the dist folder
  • watch: Watches for changes in the src directory and builds the library in response
  • watch-demo: Watches for changes in demo/browserify-entry.js and builds the demo in response