How to use the phovea_core/src/plugin.register function in phovea_core

To help you get started, we’ve selected a few phovea_core examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github Caleydo / ordino / phovea_registry.js View on Github external
/* *****************************************************************************
 * Caleydo - Visualization for Molecular Biology - http://caleydo.org
 * Copyright (c) The Caleydo Team. All rights reserved.
 * Licensed under the new BSD license, available at http://caleydo.org/license
 **************************************************************************** */

import {register} from 'phovea_core/src/plugin';
import reg from './src/phovea';

/**
 * build a registry by registering all phovea modules
 */
//other modules
import 'tdp_core/phovea_registry.js';
//self
register('ordino', reg);
github Caleydo / lineage / phovea_registry.js View on Github external
* Caleydo - Visualization for Molecular Biology - http://caleydo.org
 * Copyright (c) The Caleydo Team. All rights reserved.
 * Licensed under the new BSD license, available at http://caleydo.org/license
 **************************************************************************** */

import {register} from 'phovea_core/src/plugin';

/**
 * build a registry by registering all phovea modules
 */
//other modules
import 'phovea_core/phovea_registry.js';
import 'phovea_ui/phovea_registry.js';
import 'phovea_clue/phovea_registry.js';
//self
register('lineage',require('./phovea.js'));
github ConfusionFlow / confusionflow / phovea_registry.js View on Github external
* Copyright (c) The Caleydo Team. All rights reserved.
 * Licensed under the new BSD license, available at http://caleydo.org/license
 **************************************************************************** */

import {
  register
} from 'phovea_core/src/plugin';

/**
 * build a registry by registering all phovea modules
 */
//other modules
import 'phovea_core/phovea_registry.js';
import 'phovea_ui/phovea_registry.js';
//self
register('confusionflow-ui', require('./phovea.js'));
github Caleydo / pathfinder / phovea_registry.js View on Github external
* Licensed under the new BSD license, available at http://caleydo.org/license
 **************************************************************************** */

import {register} from 'phovea_core/src/plugin';

/**
 * build a registry by registering all phovea modules
 */
//other modules
import 'phovea_core/phovea_registry.js';
import 'phovea_ui/phovea_registry.js';
import 'phovea_d3/phovea_registry.js';
import 'pathfinder_graph/phovea_registry.js';
import 'pathfinder_ccle/phovea_registry.js';
//self
register('pathfinder',require('./phovea.js'));
github Caleydo / taco / phovea_registry.js View on Github external
* Copyright (c) The Caleydo Team. All rights reserved.
 * Licensed under the new BSD license, available at http://caleydo.org/license
 **************************************************************************** */

import {register} from 'phovea_core/src/plugin';

/**
 * build a registry by registering all phovea modules
 */
//other modules
import 'phovea_core/phovea_registry.js';
import 'phovea_vis/phovea_registry.js';
import 'phovea_d3/phovea_registry.js';
import 'phovea_ui/phovea_registry.js';
//self
register('taco',require('./phovea.js'));